From cfcccb6344037467d73aa15cca0550b9a5bcfd73 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sat, 2 Mar 2019 20:55:34 +0530 Subject: [PATCH 0001/2173] Update python version on heroku --- runtime.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime.txt b/runtime.txt index 4255f73a..a01373a3 100644 --- a/runtime.txt +++ b/runtime.txt @@ -1 +1 @@ -python-3.7.1 +python-3.7.2 From adca1945cfd87f8555586bfb5416185a6598de56 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sat, 2 Mar 2019 21:19:44 +0530 Subject: [PATCH 0002/2173] Fix bug in handling installation --- pep8speaks/handlers.py | 4 ++-- pep8speaks/utils.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pep8speaks/handlers.py b/pep8speaks/handlers.py index cae0427d..a5c5086e 100644 --- a/pep8speaks/handlers.py +++ b/pep8speaks/handlers.py @@ -182,13 +182,13 @@ def handle_integration_installation_repo(request): """ Update the database of repositories the integration is working upon. """ - repositories = request.json["repositories_added"], + repositories = request.json["repositories_added"] for repo in repositories: helpers.update_users(repo["full_name"]) response_object = { - "message", f"Added the following repositories : {str(repositories)}" + "message": f"Added the following repositories : {str(repositories)}" } return utils.Response(response_object) diff --git a/pep8speaks/utils.py b/pep8speaks/utils.py index 0765e4d6..00e9ad3a 100644 --- a/pep8speaks/utils.py +++ b/pep8speaks/utils.py @@ -31,6 +31,7 @@ def query_request(query=None, method="GET", **kwargs): def Response(data=None, status=200, mimetype='application/json'): if data is None: data = {} + response_object = json.dumps(data, default=lambda obj: obj.__dict__) return FResponse(response_object, status=status, mimetype=mimetype) From f20157b97ec638106496a9210445226e77600062 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sun, 3 Mar 2019 01:23:16 +0530 Subject: [PATCH 0003/2173] Use the head branch of a Pull Request as a fallback for config file A lot of times, maintainers try to open a Pull Request containing the .pep8speaks.yml to check if the configurations are working or not. In those situations, there will not be any configurations on the master branch. Hence it makes sense to use the head branch of the Pull Request as a source for the config file. Closes #55 --- pep8speaks/handlers.py | 4 ++-- pep8speaks/helpers.py | 18 +++++++++++++++--- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/pep8speaks/handlers.py b/pep8speaks/handlers.py index a5c5086e..592e5cff 100644 --- a/pep8speaks/handlers.py +++ b/pep8speaks/handlers.py @@ -17,7 +17,7 @@ def handle_pull_request(request): helpers.update_users(ghrequest.repository) # Get the config from .pep8speaks.yml file of the repository - config = helpers.get_config(ghrequest.repository, ghrequest.base_branch) + config = helpers.get_config(ghrequest.repository, ghrequest.base_branch, ghrequest.after_commit_hash) # Personalising the messages obtained from the config file # Replace {name} with name of the author @@ -76,7 +76,7 @@ def handle_issue_comment(request): return utils.Response(ghrequest) # Get the .pep8speaks.yml config file from the repository - config = helpers.get_config(ghrequest.repository, ghrequest.base_branch) + config = helpers.get_config(ghrequest.repository, ghrequest.base_branch, ghrequest.after_commit_hash) splitted_comment = ghrequest.comment.lower().split() diff --git a/pep8speaks/helpers.py b/pep8speaks/helpers.py index dd3ac102..228ba684 100644 --- a/pep8speaks/helpers.py +++ b/pep8speaks/helpers.py @@ -37,10 +37,13 @@ def follow_user(user): return utils.query_request(query=query, method='PUT', headers=headers) -def get_config(repo, base_branch): +def get_config(repo, base_branch, after_commit_hash): """ Get .pep8speaks.yml config file from the repository and return the config dictionary + + First look in the base branch of the Pull Request (general master branch). + If no file is found, then look for a file in the head branch of the Pull Request. """ # Default configuration parameters @@ -48,14 +51,23 @@ def get_config(repo, base_branch): with open(default_config_path) as config_file: config = json.loads(config_file.read()) + new_config_text = "" + # Configuration file query = f"https://raw.githubusercontent.com/{repo}/{base_branch}/.pep8speaks.yml" - r = utils.query_request(query) if r.status_code == 200: + new_config_text = r.text + else: # Try to look for a config in the head branch of the Pull Request + new_query = f"https://raw.githubusercontent.com/{repo}/{after_commit_hash}/.pep8speaks.yml" + r_new = utils.query_request(new_query) + if r_new.status_code == 200: + new_config_text = r_new.text + + if len(new_config_text) > 0: try: - new_config = yaml.load(r.text) + new_config = yaml.load(new_config_text) # overloading the default configuration with the one specified config = utils.update_dict(config, new_config) except yaml.YAMLError: # Bad YAML file From 1822b5d82653884665a1677129e012809f245a9b Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sun, 3 Mar 2019 01:30:18 +0530 Subject: [PATCH 0004/2173] Change the default behavior of scanning Currently the default config is to check the entire file for PEP 8 issues when a new Pull Request is created. This confuses new members of the community. Hence, the default behavior should be to scan the lines they have touched. --- data/default_config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/default_config.json b/data/default_config.json index 5ad7977c..ddd67ed5 100644 --- a/data/default_config.json +++ b/data/default_config.json @@ -10,7 +10,7 @@ }, "no_errors": "There are currently no PEP 8 issues detected in this Pull Request. Cheers! :beers: " }, - "scanner": {"diff_only": false}, + "scanner": {"diff_only": true}, "pycodestyle": { "ignore": [], "max-line-length": 79, From a69699889daac1b5317b59ceea2518c1f817a0b6 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sun, 3 Mar 2019 01:55:36 +0530 Subject: [PATCH 0005/2173] Remove broken landscape badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5dc98b01..8493210b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# PEP8 Speaks [![Build Status](https://travis-ci.org/OrkoHunter/pep8speaks.svg?branch=master)](https://travis-ci.org/OrkoHunter/pep8speaks) [![Code Health](https://landscape.io/github/OrkoHunter/pep8speaks/master/landscape.svg?style=flat)](https://landscape.io/github/OrkoHunter/pep8speaks/master) +# PEP8 Speaks [![Build Status](https://travis-ci.org/OrkoHunter/pep8speaks.svg?branch=master)](https://travis-ci.org/OrkoHunter/pep8speaks) A GitHub :octocat: integration to automatically review Python code style over Pull Requests From d2e1e84dc1c857b9d9b78c46995cef8db7205d3b Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sun, 3 Mar 2019 21:08:42 +0530 Subject: [PATCH 0006/2173] Look for pycodestyle configurations inside setup.cfg --- pep8speaks/helpers.py | 68 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) diff --git a/pep8speaks/helpers.py b/pep8speaks/helpers.py index 228ba684..463422e6 100644 --- a/pep8speaks/helpers.py +++ b/pep8speaks/helpers.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- import base64 +import configparser import datetime import json import os @@ -37,6 +38,54 @@ def follow_user(user): return utils.query_request(query=query, method='PUT', headers=headers) +def read_setup_cfg_file(setup_config_file): + """Return a dictionary for pycodestyle section""" + setup_config = configparser.ConfigParser() + setup_config.read_string(setup_config_file) + + setup_config_found = False + if setup_config.has_section("pycodestyle"): + setup_config_section = setup_config["pycodestyle"] + setup_config_found = True + elif setup_config.has_section("flake8"): + setup_config_section = setup_config["flake8"] + setup_config_found = True + + new_config = {"pycodestyle": {}} + + if not setup_config_found: + return new_config + + print(setup_config_section) + # These ones are of type string + keys = ["max-line-length", "count", "first", "show-pep8", "show-source", "statistics", "hang-closing"] + for key in keys: + try: + value = setup_config_section[key] + value = value.split(" ")[0].strip(",#") # In case there are comments on the line + if key == "max-line-length": + value = int(value) + new_config["pycodestyle"][key] = value + except KeyError: + pass + + list_keys = ["ignore", "exclude", "filename", "select"] + for key in list_keys: + try: + value = setup_config_section[key] + items = [] + for line in value.split("\n"): + item = line.split(" ")[0].strip(",#") + if len(item) > 0: + items.append(item) + new_config["pycodestyle"][key] = items + except KeyError: + pass + + print("new_config", new_config) + return new_config + + def get_config(repo, base_branch, after_commit_hash): """ Get .pep8speaks.yml config file from the repository and return @@ -51,6 +100,25 @@ def get_config(repo, base_branch, after_commit_hash): with open(default_config_path) as config_file: config = json.loads(config_file.read()) + + # Read setup.cfg for [pycodestyle] or [flake8] + setup_config_file = "" + query = f"https://raw.githubusercontent.com/{repo}/{base_branch}/setup.cfg" + r = utils.query_request(query) + if r.status_code == 200: + setup_config_file = r.text + else: # Try to look for a config in the head branch of the Pull Request + new_query = f"https://raw.githubusercontent.com/{repo}/{after_commit_hash}/setup.cfg" + r_new = utils.query_request(new_query) + if r_new.status_code == 200: + setup_config_file = r_new.text + + if len(setup_config_file) > 0: + new_setup_config = read_setup_cfg_file(setup_config_file) + config = utils.update_dict(config, new_setup_config) + + print("config after updating", config) + # Read .pep8speaks.yml new_config_text = "" # Configuration file From 97d84541b75f637749d35afc5ed9b574f247dd74 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Fri, 8 Mar 2019 16:00:21 +0530 Subject: [PATCH 0007/2173] Update README with latest instructions --- README.md | 98 +++++++++++++++++---------------- data/{my_logo.png => logo.png} | Bin data/pep8speaks.commits.png | Bin 3444171 -> 0 bytes data/readme.png | Bin 85176 -> 0 bytes 4 files changed, 52 insertions(+), 46 deletions(-) rename data/{my_logo.png => logo.png} (100%) delete mode 100644 data/pep8speaks.commits.png delete mode 100644 data/readme.png diff --git a/README.md b/README.md index 8493210b..c447c382 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -# PEP8 Speaks [![Build Status](https://travis-ci.org/OrkoHunter/pep8speaks.svg?branch=master)](https://travis-ci.org/OrkoHunter/pep8speaks) +# PEP 8 Speaks [![Build Status](https://travis-ci.org/OrkoHunter/pep8speaks.svg?branch=master)](https://travis-ci.org/OrkoHunter/pep8speaks) ![GitHub contributors](https://img.shields.io/github/contributors/OrkoHunter/pep8speaks.svg) [![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/OrkoHunter) -A GitHub :octocat: integration to automatically review Python code style over Pull Requests +A GitHub :octocat: app to automatically review Python code style over Pull Requests -

+

-> "PEP8 unto thyself, not unto others" - Raymond Hettinger +> "PEP 8 unto thyself, not unto others" - Raymond Hettinger # Example @@ -12,29 +12,37 @@ A GitHub :octocat: integration to automatically review Python code style over Pu # How to Use? - - Go to the homepage of the [Integration](https://github.com/integration/pep8-speaks) - - Click on Install button - - Add the repositories you want this service for + - Go to the homepage of the app - https://github.com/apps/pep8-speaks + - Click on the Configure button + - Add repositories or organizations to activate PEP8Speaks -# Features - - - The bot makes **a single comment on the PR and keeps updating it** on new commits. No hustle on emails ! - - The bot comments only if Python files are involved. So, install the integration on all of your repositories. The bot won't speak where it should not - - Comment `@pep8speaks suggest diff` in a comment of the PR, and it will comment a gist of diff suggesting fixes for the PR. [Example](https://github.com/OrkoHunter/test-pep8speaks/pull/22#issuecomment-270826241) - - You can also comment `@pep8speaks suggest the diff` or anything you wish, as long as you mention the bot and have `suggest` and `diff` keywords. - - Comment `@pep8speaks pep8ify` on the PR and it will create a Pull Request with changes suggested by [`autopep8`](https://github.com/hhatto/autopep8) against the branch of the author of the PR. `autopep8` fixes most of the errors reported by [`pycodestyle`](https://github.com/PyCQA/pycodestyle). - - Add `[skip pep8]` anywhere in the commit message, PR title or PR description to prohibit pep8speaks to comment on the Pull Request. - - To pause the bot on a PR, comment `@pep8speaks Keep Quiet.` - - Comment `@pep8speaks Resume now.` to resume. - - The keywords are `quiet` and `resume` and the mention of the bot. +# Main features +- The bot makes **a single comment on the Pull Request and keeps updating it** on new commits. No hustle on emails ! +- The bot **comments only if Python files are involved**. So, install the integration on all of your repositories. The bot would not comment where it should not. +- By default, the bot does not comment if there are no PEP 8 issues. You can change this in configuration. +- The bot can read `setup.cfg` for `[flake8]` or `[pycodestyle]` section for PEP 8 customization. Check out the `Configuration` section below. # Configuration -A config file is *not required* for the integration to work. However it can be configured additionally by adding a `.pep8speaks.yml` file to the base directory of the repo. Here are the available options of the config file : +**A config file is not required for the integration to work**. However it can be configured additionally by adding a `.pep8speaks.yml` file in the root of the project. Here is an example : ```yaml # File : .pep8speaks.yml +pycodestyle: + max-line-length: 100 # Default is 79 in PEP 8 + ignore: # Errors and warnings to ignore + - W391 + - E203 + - W504 + +scanner: + diff_only: True # If False, the entire file touched by the Pull Request is scanned for errors. If True, only the diff is scanned. + +no_blank_comment: True # If True, no comment is made on PR without any errors. +descending_issues_order: False # If True, PEP 8 issues in message will be displayed in descending order of line numbers in the file +only_mention_files_with_errors: True # If False, a separate status section for each file is made in the comment. + message: # Customize the comment made by the bot opened: # Messages when a new PR is submitted header: "Hello @{name}! Thanks for opening this PR. " @@ -45,29 +53,15 @@ message: # Customize the comment made by the bot header: "Hello @{name}! Thanks for updating this PR. " footer: "" # Why to comment the link to the style guide everytime? :) no_errors: "There are currently no PEP 8 issues detected in this Pull Request. Cheers! :beers: " - -scanner: - diff_only: False # If True, errors caused by only the patch are shown - -pycodestyle: - max-line-length: 100 # Default is 79 in PEP 8 - ignore: # Errors and warnings to ignore - - W391 - - E203 - - W504 - -only_mention_files_with_errors: True # If False, a separate status comment for each file is made. -descending_issues_order: False # If True, PEP 8 issues in message will be displayed in descending order of line numbers in the file ``` -Check out the [default configuration options](https://github.com/OrkoHunter/pep8speaks/blob/master/data/default_config.json). - -Note : See more [pycodestyle options](https://pycodestyle.readthedocs.io/en/latest/intro.html#example-usage-and-output) - -# How to fix? - - - Check the errors locally by the command line tool [pycodestyle](https://github.com/PyCQA/pycodestyle) (previously known as `pep8`). - - [autopep8](https://github.com/hhatto/autopep8) is another command line tool to fix the issues. +**Notes:** +- Default settings are in [data/default_config.json](data/default_config.json). Your `.pep8speaks.yml` will override these values. +- For every Pull Request, the bot looks for `.pep8speaks.yml` in the `base` branch (the existing one). If the file is not found, it then searches the `head` branch (the incoming changes). +- For pycodestyle/flake8 configurations (like `ignore` or `max-line-length`), PEP8Speaks will look and prioritize configurations in the following order : + - `pycodestyle:` section of `.pep8speaks.yml` + - `[pycodestyle]` or `[flake8]` section of `setup.cfg` file in the root of the project. +- Read more about the [pycodestyle options](https://pycodestyle.readthedocs.io/en/latest/intro.html#example-usage-and-output) # Popular Users @@ -108,20 +102,32 @@ Note : See more [pycodestyle options](https://pycodestyle.readthedocs.io/en/late +# Miscellaneous features + + - Comment `@pep8speaks suggest diff` in a comment of the PR, and it will comment a gist of diff suggesting fixes for the PR. [Example](https://github.com/OrkoHunter/test-pep8speaks/pull/22#issuecomment-270826241) + - Comment `@pep8speaks pep8ify` on the PR and it will create a Pull Request with changes suggested by [`autopep8`](https://github.com/hhatto/autopep8) against the branch of the author of the PR. `autopep8` fixes most of the errors reported by [`pycodestyle`](https://github.com/PyCQA/pycodestyle). +- Add `[skip pep8]` anywhere in the commit message, PR title or PR description to prohibit pep8speaks from commenting on the Pull Request. # Private repos -[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://github.com/OrkoHunter/pep8speaks/wiki/Instructions-to-deploy-a-fork) -The integration only works for publicly hosted repositories. So if you are looking to deploy a fork of it or **use the integration for private repositories**, [here are the instructions](https://github.com/OrkoHunter/pep8speaks/wiki/Instructions-to-deploy-a-fork). +This app will only work for publicly hosted repositories. So if you are looking to deploy a fork or **use the app for private repositories**, [here are the instructions](https://github.com/OrkoHunter/pep8speaks/wiki/Instructions-to-deploy-a-fork). + +# How to fix PEP 8 issues? + + - Check the errors locally by the command line tool [pycodestyle](https://github.com/PyCQA/pycodestyle) (previously known as `pep8`). + - [autopep8](https://github.com/hhatto/autopep8) is another command line tool to fix the issues. + - Also, see [black](https://github.com/ambv/black) + +# Release announcements +Updates to the app are announced using the GitHub Release feature over [here](https://github.com/OrkoHunter/pep8speaks/releases). A lot of major changes are made as the community grows bigger. Click on `Watch` -> `Releases only` on top of the page, to get notified about new configurations or feature updates. # Contribute -This is a very young project. If you have got any suggestions for new features or improvements, please comment over [here](https://github.com/OrkoHunter/pep8speaks/issues/1). Pull Requests are most welcome ! +If you have any suggestions for new features or improvements, please [create an issue](https://github.com/OrkoHunter/pep8speaks/issues/new). Pull Requests are most welcome ! Also, if you use this project and you like it, [please let me know](https://saythanks.io/to/OrkoHunter) :) :heart: -
-###### Created using [commits.io](https://commits.io) +This project does not endorse all of the rules of the original PEP 8 and thus believes in customizing pycodestyle. -This project does not endorse all of the rules of the original PEP 8 and thus believes in customizing the pycodestyle. +[.](https://github.com/OrkoHunter/python-easter-eggs) diff --git a/data/my_logo.png b/data/logo.png similarity index 100% rename from data/my_logo.png rename to data/logo.png diff --git a/data/pep8speaks.commits.png b/data/pep8speaks.commits.png deleted file mode 100644 index 70ee8885564390cb8dc3fef621ebd702452e800e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3444171 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%0DO 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

d}(IBb(!G{Xi?ZZ_*v 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�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%0DRpvZ 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

9%cuboki1;ViTMmr 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 *j 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

I|by?i7#y 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

  • < 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

    e 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 MK%go)=1NCZbl)eQFd|B|x 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∈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 z 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

    x{M*EASj<+EfiWA8!CD{R_^i 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 z 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�<^Y_v@-}BYCX*Phgo**%0#$7us`aj0`Ws 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 pu54E~Hdau&rkd)T;Gm%G-uoa! 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

    4kQfw9{`Xd~S4!HuqC3Hv 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

    2!lc^G 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%0A%dj};OY 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�g?IF}5 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 YU;Vj2 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

    `x5%mE43boRRQIjHLD4E91ibw{zeU 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 M^|g9Y^dwIP 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

    e?Zg4d>jOvI1II4V14w-Zeu%`*!cU6A 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


    Ntstiu$p&EwHVCQe=8!axV2Ro2Xah)} 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≫ri7 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�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∈Qc`13%mWJbVQq*q7a};I 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%0A<_LYOOG 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 FBpl&dl2W#w$u&iz$ivMY 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
    eAy-fK~|iey6K*Y1{@ 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

      eKUr=?&<97_cUHfCORB@m#U@x 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Π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

      k2^+9H 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

      Cc**lh^!XG5#+zaiDUieDSO^O0Jj!zk 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

      F96+kCs^TKPVtH%BYO-OTjk>OLPvyL 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 MbI_2DUqm6aFbEUgPMao;>v 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%0DHZ%Up6`#iMmrsh?TrF_l%{VqS^B zJS}n%p&cMXgzl%So|XqT2I zveS!R#wY)?GA@=XTjq}aB#=AIj=0mh*_iPtf@jSoo zl=rh<7Hh*!I^7$J9e%=71h&e`$!Yd=W_03%;x|K?%(=4{LL+Ds>i2`Aa)MNmiAj=; z0F6BZGdU}oac!@wSn`o`dDH{R&88_h5_4~4mMU+50F>Lg^SJ`!!A!fi+|UC3HNx14&yWJ7FM~B_wd(dWmrVs z1TJ6`*dwFUkEOR?kG{vQ@v|Qn#;=6V&Ck!j9!?*a$8dPYy~Jq|6EU$3#P@CB@Jn{@ zWgi-G>ap?g=xx)0QBw;8=?8s|I@c|}zfZk>vlo5j9|l7SN8vJxWbW8{!otF6FDNa| zj%k)cAxftXx7mNewtPPK!ZRghCn1{Q3{|nQ+2!Kmg14KP4{BCpvB4M_F`no@w(*1e zvd^Pe+VeCvTf@lnZBEF$VAj{gqpVbOwu0YI%vbWUuol}cVBqqzo37e$B|wi$PZm8H zYf`jN85662zVuj^Lefcv243^GQJFk%-IHNwc3MDrblDzi>brjIJ~7{_PpiMehlQMl zcS+97PD7$KKiaB8CJgRKeajZ z=&7Bn7WuAXtun;x|DB$p=%4O1B;)sknVMNlrSjkzFh;3~MEl;r;Ip>2?r~`xy7|C6 zlcjrb)?(t2(pdW*>yAqg^ixJPwBM^;+3#%^>U`U2VmN`uZ7j)|(cZa!oVSiYFjGzB z%j-LA`G!ZHB>(=f-~Z`TK{--W;MVt8#ySWW)i2m@Efcg~C{n5(E)Mq%r{Bxzcr`IH zau7R!2a93FGn21D^hj{2o>@reS8m~&cKw5^^`yIkK8tF?>hc}R{e?~gky_e6E6WdO z+lS5v)lP;;D{UmcY`7YmGOuivlnjO^&66g1qGY=V*`(LXzy2b|ZU1!e0=Lpdb6)BC zAT;zImQBE_PyL*Rq1q7xgQ%0|9EQFN!R(78ii3kA1Z(IgSXW!+lhp$-d+j_oAnBzz zrmUtMVP$Vq`1rP_q!AY;s{ukShc@+IjOF$UWx)N9bEJY|0}^i;pJW> zq0?_QFSm2&U3M<6`wQcZi7zLd^E2 z(>Nq7OuHcI?QezEiS`Bc8=9sPi!Gn!NR-7k8jf^T@QPZwzMbJV$d_}(S1f!{r8 zRp>%or32(uWaok=?-Xro-~SxR64^$^pR>~EG^TCzW^ZD}ejk>N+9_A02L11*ZQ8ke z_dP_JpQ)b>^4yb*_u!PC-qGbNRy;J9`;gjVTza2%#woS^RWGmjP+ac^Hm6Uw%_LR3 zOQrWS282aLU)_sLY57@jPK_A#S9`sFznVKPFHuIGUYLL46&W0<7euoi}?% zy&CBe@2ie1JwcnXY>=a|Y%o346cU zTZPrqeelvMhy8=@H!U4x{cT*|!N{z$eJs#)pPn+8XmNh$ZfofngDcAVk6F=;SEC!} zSz9Yt=HnW(N~AA7D9*aREBRes%!22*8_IYize)?|LF?RHIOW`n`krOyA6`g4%<-dR z5kXDKQWu)`-&z$KnKt37+ORgGE3kV|UxV7Dx$*2|eY)Y!3yURwk{NT~ANK84ZPW4Q2xz|+=<`h%rYEWncIf)d7>o2#VkTL~zH6l1(RRN-VZdgd=J57irC)j-%byT8 zkKk~d?a0z47dI|)7280i%>q4bTzi(AC)B51YqmXAJL`OjZly;r`ZO^AxP-bZO5mE8 zYfRM4tKZYFU&6>y}+m~~$At}-_ zzwlD=F*#^I-sj)CFp4W{021`aaesKUsJFKZ6X;MD2iC4h`W@X#wH$ivHvJ2 zD5$Ni{+INN&~LD^vwP;`$bl8I0+zeLq;AG~n=uPJ-Gdtwt^p!SStnvkC0aXd3hR69 znS~ni|0>3dbo{QrXz5e-t#NkGhNy)W%=EO;x@wPKtVs-Ti;nh z2$e*;huOkG12N_`|Wl7Z}YPkLG+J< za8!PN>~wZ_ZBmB9^`3}>r$XxLP8|dNdvds=7&cd1Cgs>SC01wbJKUO?^-s?HTZ=h6 zj{PMzk6B3lEzc>}QJ#OLX=mwskxgIHLEq3JQv2-f%wgM?SvNoD>CoxB-LI{C<20Z0 zrl3r!GA~+iux@Y&Du4PU=K5~>_J+;tt&Xaz+c0{LPtDB4U;ql@5Bhwhw5;s< z_W7Ncd;spm7xzv?qesG2;7}8Hxwvug!PZ6a14-QK!6Qd}d+g8auT%Y*bp2X0 zZT~-^3ewA|6XM&H`aU=dHirbqxdfDTnB@J`+qYf8Vchj*!0=FDc)!(Vvzb!Rg#_W$ z18Zlf>2|(g@tuVo)zjbAK({tgH|f{Rd5l%Bw=&7QB!68%sMasGscj&q_AJOX5tg|+ zZeO@N^Wx;+rzzZcVaKM@v|;m*r{=i1REWLM>+O&DCiV9x$N80v-+Od3ev13`BHo=- zchaYo%z1;A1%mX7k$XqbatOWOI(H-mJm3}BCg2-SvLXqU6;ScDv6J8b>SfxTbSF;W zu3MpFz$ou^_pW`<^&hb?Zg0SD{tnLbFBw7p{{F|US|iy)&Rx5f@^jvyzp3)i-ayYS z(V!P_fTydfsHo^g2mfFh@o?zwCqybx+{>E5N(SF+dwM?3a$-+X)=cnaFibyOWPfN3 zTUBDYNMiRMe)-jBf9YR$3NtgaBB)#=iwhl#_21X2uluinkPY)A<~`rmJF;K>O~lv5h5lr ztT?Hs_eQSyV!m`mikf+`{-E~CUhhVm3A^vukAa*^1iDaFXwS&2%fIWfzO?UjUco26 zxppkAZX!Sp9fqzU^?LTTpUX)!$CDY3BF&L`IH7;WLMj!Gm zTsKiP>Rojw+-4`ZPiPOOFvxHJ+JKe9E^zz6U|xlnsTsw^!C{O^5z8n8FX{sH6ztiA zE$orzn%^DX-GPat>iaNkj}knClSBHtLR#sn$*D+b$Q;JBJR3i5TTW{&S69#g{$a?~^Tk ziN4$H;sa_+OJ42uovrR^Prrr84m2xQGevTwU;eIn{Thd>RBN?Pid}Sxo?80kK~*Dr zgMtH0#*rc^?dC-eP5Zqp@)f&nH&CWPJbt(+06YhFNk}y&<*g!~aFun}<`mx9`Ktt~O;Cnp8rlO@=g6hSgvwl2qnQ z4Jeh6%!`W1n1oV>Xpl%53Yjv`Lqa4nF7vQVE#vR}^gQ41`+JY~ulG3)d-v>Zv(~-t z`*U5_d7XpK^uWY3{`+~Gs4JbisJJJ}Hnw9~ls?iQ9FV}g7qaU)9}z-)?nHs@UucT+^=g40=%0}` z4epB6ejYV>pykByg>%iCGks3-^75DtGa0scExX{L^|E&sH-9wVNW}ty7D4P2HIl^K z3-W2VzlOp+;zIO5;AqWzlcO-CWdl4GH(Jj9?)vKn#wSj>V1-}rHZ)yc}%#rXMt$$jMakfRD6$PzML>eQd)^$0vD)X&l8I3Ur@ z9V$-HAjl47aZ{re z9K*f?3+r!4P?h_~w6wTkPHm-GnUqf2-8LL`PZ{i)AGaiB3t9`g6Kd%Oj51`w@ZS@I z7$`}hRY zalerKqyMV2NhE}NSlan){> z5EYFZorE*psk3L7;vBi)vWpl<0a6&9ob>SYWQ8mxdM)?mA*{vMEi$WJe|2`=#hF6T z{L7JlCmN1{WJ2ulz<^RDZ*E|Ko${MbUA&L`CK_l)8f`wqn#Br28We{5=B zg=eZE#eiSDI>EMBw`R4FJuSC(p{Zf6L8G_wZEDd?r|zMKPOH>;uk{W|gJB*TOo2or zvu0&DX&gABnZI#RL%mfbTG+o#bx1?f`s3tz=EmgC?53GtSFFl5DaZTBN}eiiojl!2 zD~K?!Uzx?cCqZXSx$TqWqQ(>kJPBUpG2zafPb{(7l$o)D!|XuL7WXY!_W}!3!X+hq z=rgqRfO|s2Ut`0|ANz4lnJdgHm46wW-^3oqo1RZo>vFDnva7s^cN?pAtyJ>7@3LB# z=za0FduLk;*eWW-C{qX61~%WGk{8P!uiCCK`!f6~B^L}m#3(E~S3GCh)RKyVkO zbqrznIjl$6){E=px@adlU#*n-*7d7wcAt>drNygT--X!ec3ySVgzu<|?Vk0~R&^2P zfdPS?cHHT~)jZ*9@>RDM8$_5JfyRw_K!Oor>;+Bt?FY<>GX9J zJ9x5>^|#jyi`gX4RKeAp=Pz9n5SOs=40?(k1A!+)_(vyd@P(z zfUK6~gY02~*lxnP7R@BWUBV6TZOxL2aGBDbgLVf&x)DyR;Lx<6=%1eKF%uoh!TGcS zPUS!zNoXr2mpM-7!V!U83fPRswb6=Yv)$D07juikCmy>2(p(FVm!o((h?6fR7bxp4 zm|Om{ad*KZ^#aZzJ212f(uP$a9E9E;l+=;|26uZhW3;O%8ikkmnJM{h&@eI3ng80r z{%4~Opel1TkA2q}qe$ku8yh9FK;ygsckFWEPr9M!`ogk_KWxoJ`K;=s-@8CDRg>LLtSAaj9 z#xN-*j}vC6H0$mau&i-Mrc(W_XO)IJ?*~hGCvN|3VHmxz718177~V}d<9(Cl2sj#x z&F#|-aklS-pXr~~*r31*0n}VcP zUzVrTtWZ-Q+;uY0*%~i3&4#{exHZcM@E&}Bh?I!(eW3g+f3573OCu>`{ID+qolc__ z(E{%Tg|s$bEEKAheFhSy1n1_>zJ$O74i=?MzT_oq&xcS2Em-J|+Xm$0H=JAc2pcY^V$Ipd$ylvFh z9oQE3$*0FQx|8c?zy<-Shy|~HDtm~*({TPc<{GCFA)N)!f6Zd5xCR3y@BdbBwbz+F z(;)5FEGZKtr&n~;hdX-ceb-ToHayq*B{nHkAKWUj2Rb z^rY_@1%92OCBtW=*64C;zY~`3&pdR|!1tV8po@qlH4miqfJ*{N0X0FE8*Fz}AGz74 zpwHc!sWAVK>f%uF;*WkQ9cElFInli}W^(TYH+~rOn4&>JNer%WqQi}33sPU1h5Ks9 zSJjShC)6L33-BmswZ!Q}8L-bmDz zhO#oN<*1hg!WQ2T9!c3D;V3Wikp6zqgSDKd%XBm6&0ojZ=+ygE?Dxh)&XLESa;ryx z{8z24(9h#Im{*aR_t((orLpH0&9bV!N3PJ<3eG20sZoC6(IXrWa=N&=QR-<4CgCFh zOt(l&ZvgPA45b~>4CCHb+x?Q*Z(TAZtA&U)AB=w{t~o&6ePzzg-XMHkfWn*(HvYs$ zgm8dh8;-6Z&f%b{eDv(T24`KX+xJLk+!@tNs}xzR$cuGM<(hW3x86CskdxdO97uKv z@QG@i*dcMfKRvPVA$8z@YMa79Yi63{>0-*&P@dcd{#uu;-uW9^t-V+Or%^4*JZmwF z6y2{!Yi;!H9?-GJN^^~B2pN0NUxeEXs^lSrSd^>SIC*m~)OEU#wh&bl4uRv>&Nk9_e)Z+wRS;voV% z*aW&j41FOBqRvI|{K^_}G;G1CDu`C93)_kp=s(M*aReMaedY{MVy??jk8Iz*UBI1_ zM0wyphqd%Yw0rBCIsW-)Yr`W~t%XIPGF!K7af>&~i2w^Ch{%>+An}5v&2QbaCkTg1 z;ICiCV5FRRQ^~-i6bKLHKVMk(4u6iGH#IX0Lc{tHI`)TH1Te7Jxj`@FaYbobZed_< zeZfRG6i5>Ta&)9+tiGO;GMRz+LL^x8ro(p5!(puXd8yhp!-n@0YS(^VW-RC65XP|( z)~yBn7ZNSPh(Ft=2A(`@;{~9L`j>o>KjSh47oA>MTv%8jTwV;wL0C^&UD7yx`iP-@ z`?9ZKFeV{<(i#Vq%KYc2;d;kTp8OYKs$s3EAxA;ZXX3pc2c4!A45AVYnVLUt>~}(Z znvh*R>wv?XQb-Y?EZT~)CJ5J5A^0$W`y5CR|5dyP3F?ola+ElNUXtC*jP-NHRMQ3Z zh*mgzaBg_NgkVmZlLG=()Ry z$K&XUkqn&+FIv!p9S2>hC)?ma_H=LUT}%}BadtcaWDv+14Q>yk_PnHcR!1rQzHr1A zn8I#xf5cSV=j$aowc+(Kd1fBFJwzZ{cxS^0;%8pma^b;%r5d z4mjT6c^`fmIg6XA6g5K2L_TGn=IorAB=63-8fL4DTUy?1Xc$M_)#$j z8*+0Goj!Y3flc5do{x)YrI1MjcCI4%JcwH&1Bi;~$Ra)_bQpKYeGZMAST)@E#kzN* z#}R~XF`Y4qU;3)|K*Br_l+_zIzR9G*LY)ET*UsXqx7uKiJ;W^d5WT+Wm=#_FA^bo8 zSdX&zFf2@EYWSz>ojZ3*fHgcB(s^$vDS<)|*TWrs>oD6->idav>e+E2-1ocoU}r5* z89B<(4{^QKJtJz7CGN5&TF#QYazLT@sMplImxlF)zJS<;HG+I?yifR7ccf)pa#+mw zdF}q4=5HL}e7wMwQIy{tnN)PSfY#JB7|3}mlk=KqD*y9T%j!%$i>zKW-rGn{1@hrU zn;_E`C`kQ(6{By>cAgneN;1-{<-TapmpL{RHrNWgCs@jw&vI$aMmvbFtaWiW&o=2w zmt_x3Q)m19F7IimSLE})9Jz5<{rP)HXcATGU&0PQ?}5-@R^;Nt;oaDr?n$xJ^t1Ys>-Wm6uJqLPD$)%z=uJ?ykmFxlX`?fhclT1xUODX_${PgC z!Zyc8J_)XV{KoR#FEfSd`|%FC#)XFmZcRK3@M@4!7|Oe z7>^wTBqBKUKIkyITn5YXji|2^>-W=xUl z2zES7V|H_2I+V*fEM1%a%-bgb+O(m)3!z70_KFb zM{Ldvj<8brN0;Cto^8AI+>BQj=HRdU0$OJ{*aHvVNq=+qgE5mogwH$TM}`l4L|TrckuHTq#LWJO9*v{?{D@M$?MpzaQLQ8=bKUb3!p_MGladpJ+YYtQ8XX26n@Gj*W*2dP07T2GuaPU^+|&z z&UfNdgQNW~3J7V%*QW6e6=ONbPOQn;AzPN{1I7+^1nHQ41|YNQ#ZC{eOvA)5^Om{w zk}Z2BL$cpYS}Y~&5#Yn5b%PFhyTuGRKOLx}6gTXc2_=={hSr6oO;ASR)%fOP8@T$! zG@DX``U6$kb5M%DP07j0eK4;TJckHmV!DdCl-Qm3ye>_<8@}oGr%zHOUSe*xZLtWS zCSeWMM_Qp6nYi=nRyVGjJp4_4{knDSWNZNjNb+DPhoG**estYD4E-eFvrv<4rXJ_~ zt-%Uxrm*7bhkGiixJx|`oIG^G)f_uV?wo}gG2Ed6!1eBO{zVblzWp{}j_YmNE29P_ zcZFc}OPvNwO9=Qbp(Vk~bX$vLuAy?6Tz{>)hMXl>)}XBtA6I)Pr>Ib#= zjy$A&KhPMsuZ^(~hl83JeuLa$TxWmnuzG~0m?LAQ-IP;nYwPIL)VtA&SleCt*JaP` z%U+TT)vdkObQ4ZjhkLv>U%pVHoK=K5ggSiWinc#gzt#V3 zIXap&+ky2cBM;zt4+L-bkDl%if>z#U7fxjT44N=PlQ-^fQo{UK}8R%N0!A`6^1%+an3I0CjB8-Fyo%Q z|8Gf%aJ^NJlHkhnzEhrEh_R;C-n{osqIa3!D{Ax%hgY$ka*yZ7^ALv31h9EVqrhAj1Hel0V{ zt8FKbo$5~+L{Q&fLQwDF(A(4Bq|r%Qo_1@KEBE@Cw_99`xa5r z6@M}Ykeb|`e$07dYDy`GHb06o^`)_q8!W@K{loE@s!O#$D9g?MyD6G>BEcxZ_GIqk z$-fH5P51<@LQJ`Fz3+W{sT(_FlTbX;-u@+pd%gJV%f9qp`Mf(~^gT+wPqAUDovcre zd?_Hxn(Fd^>y`Aky`1E6#@lVn z`s$Q;ypkhMAOnf;$q{uE#l15D5eM%{{O_q=4eFuo5c{A6f3EFt+h0|htTA60)J&Tb zftW}F&2R{g^F7e58I%(iE`E^lZeqz-jz`KfEZ2Z(?V0~uLb9VC`ZIT2x(r%Q1>Zny zp`}*?#u3S|NS@T{j_{|WoWZYS`d6DaFO#@F1#bjV^;(x_5l-)w!b9($l7QhRmOh6U z7v`;|26bQUk{``oLPA)^h_c1d(6B<4BP5cF`I2BOfTKGAQGq$l&3DcLgjWj1TYwlu z6Ypr8>l6x_;L{Q+#RzLgU7)z(=)TfCdSysz`}X5DV@lWN2s49h=hOzyBbSAhkB=|b z;Pc0KG~EGB;KKcx-?}U%q*5Jp10r8qIyT7d+{uYpzQZ6hrj6*@Ba(}_7?9JA;5R7d zltav@r4~el0N6)lk-HtQ&O69Bm4gD%F&~&EIbLw|p9jqKZMx;lNeN=raQpV{{eHz- zn=ea>E6m-M>ASnnaqc1*{eLK}&>vFDXm7TYX&cr?+2;egKcrZE`<+_W)WQF)XnQnu zud6-cUPvYl@qYur*WTB6A3V!H#%{ntq5h*#@FX7hFfvAn*O61FI1$0fa^%=DrbVhz zplymKb+SLbIYYmpsJdF+_8-kk+GLkO!!hdBHrp57L3%w;Lqk1L?|$snvQQY8%9=49 zan9$R-SO2HHNhE@#=SaMwf;p6`<0XPJPF1AuB%dO?$GWa+Ah9YeDDdnDL{^ z4HD(E{1Ri|%zev3L5?1!{)9a_f+WNmrC1ART-AoCX z`{@2_5uqKbC&?~OyuYY$G$j5bOZx=?$HYXIP^O zg*2!iVNDc|5H>9KH zaqsM6L)t^b`!jD}M>wv4D4Sru%OWo=b?mQBp~I{qsz0DF1?&eAC8?)m*+hcGXw_z|B7@@3rqU8M{^Je@b8^_U6p%Q>RW*DALwlY{Xax6x~?b zj5*e8!)-YM;26fkUu9f1Qr2P`FMvJ5qZ}>576F2O9$ULK$H_Rxb+8)b*(>>w@sbb(j0mg<#3Lq`DnfQh@^M_}uhJ(y{Pvw)eF0jo-?7Idm7gq4 z5g~tom>9vPl6?~*ci;pkW|fTN#{63>*U4wnw+W^S`)VDi(lCw~ZP%?mpA$V0`zlh8 z>zeYlpAwOOy;jmpF{;h?_p$rCkfkS#AV|RY_BM7b5m6R{)oZ&- zJ@-il&aJFTw4ADtYAGD~Kr~js|HNeXAIY=8V#|!rLmGZW9y!m789{qp)>q~$-uL#-!)W^c zIwYnDB>}puolP>j$s9xy20$9Wnc4=f1qLNzicLanNP3^*dNOyBL^`Tni0yHFnE+Rv7;5KZ4!SbhhfRorP z|3dnO5>&JIIQXju1GEz-AS-i_ zy7XDh^*8I)Q{RP(C?QFGA&B*w>uzx-%v%4G5rFnwsGkq*d5Zn>*Srlhg^Q8Hv6&fo zc8NI%S-BJDkA2S*GcbSpcMoXtg+zYXHvBY!W7tq?322X+1IzsnN*enaRj0o%$>3T3 z)+JCj#3RDRT|_Coyl&_2;bcy@&Ch?*Uf}rNBUN!vQ+t;Rzj#fDyhLK>q^eU6o=|8g zIRR=SC)f+f=Px`NYve~b=W zdJnQ_#f}~Ka^e=&0ULe|9lAoM&5kI>{J}$mb8I_%WVI_T^^0A!WLHmK048_T*mw)^ zc*NsC){t@hVTXbO%yTlCNgaQwty+K1A?M%Ktdrk-d`GKgfw}OYR_Lu#YFqqNv~kkg zgU>Y>ypfjVU8`$n_6!_Qcb)j=s^itL>uN9$aL$3{dv!(znz$*zS=h}!yIOo1Joq>P ze)sPuPEE8lphiR^3F@0{JsUHb!4meL6~Uny7KvljQ(PhZoGxwgPS@izzs1fn{SB29 zXh*AEmJ8K9U96i*ckDO#*zA#oR=ns;!^mt+*X1cW9l2>u-&h+*2S>;3AlOhs!KlL= zaKMdAx+S!Yx53qkLAQ(U`ftp-#3K!;3ppx@T`o6;b=nK!zk5;XD7Pka9yH8cZa?f-yiA(7N46 z={S!N**`-8Y)$%B|HU3i%gV~CMf*YAIx+Gt!vueinDbL0?0m~>WMo7rv;YP@Co|r6 z{r$-0j`EEgJE0nVk*TWBjrsjb4$&{!W?{Z0KPDa|5d2PM1RX%Fo)=72yMARn+7B~8 zrtRy}*LYKC6#vMb0N4zN@gtBC$h#6!34V2Vdq6hSjzilXK+Y5D8Q?AuuxSL^;2h9M zHdT8iFNL0j(0Rym9hL2R)D`HffSLH=t!{yrBw4O5Fg#>_Tt*=TSSdCae0;t50iBr< z;7Pb^&;GFb_kVT@&6xyOF!BI~gTE3pm#H<|-IvTa|3aYoBsL!!pv;iv7eaXs6BZ9bbcQoVethBphLn#V zdb7F_#KN_Gp1e8!4a^Oe*+hJdfr?l}6YL9SyU)L##0Naqwz$AeHq{v0e_{CcYXs-e z@q=A<`wm(F>Er*rWj+UmNdqq5M?ZiwdXjsS&3aWWj6rvxC*`ZBn@L$s5Ob_ii+lOPBWWRkiHA+2m93 z14tRck_^|mYvvp%NQAI}vhw|tB|q?_0BF4PphH6obuToO8(N+l80hhgB<58k5N$Kw zl4ka+p=tbs0L0&rrvfWB;{CUp)doCrd^0p49SAp71ea@HpP55=4ifL~t>TUQJqukR zSWwAFWUpd#hbyA>JRIb^a|odz4!$_KNRI)QKnEdef`2;-=`c~Yw@g|7%rcH-#hD1iyl^!pG4R7}L=gT=)oYIb7$>&}UHC+3>40~=RJ3yJOx{u#bt zU+ny0lECc)A_u0!4p1YJDjmzXT;;aw*5Ppu%=TyHrpLy(sAADO36>=3iWl1{^;WE%6#r_I=2s=8E7mi5H8}(g&$GLo&9NSL+z} zr8i6s{aK^C4JYb-yn6g+BxCTKSBB@FW+4f~-pg2Bm=p?`mA$R|`n3k|DlFlillUWw ztE(#rb|u^Xv%J_u=#_SfPw&5D{}nd5)MC)qFn3co}9?7*vDeR+g+>Cz}5 zz&hE^2S{TF#!d$qVC&>Zj3>+MSbbV=Ay*S#m`C78iFRDbS-l8&AR+1l)_Al@Ah*hs zWhVU}cC%zU154n*=+t4Q?;dhd;dgZ+>iQQ`rgg^*hMpa< z$N~4Q!e$L_brQlvUK^fNG8Ezt+C8fY`S3|di5^-rAPlve5;%Ms)iZJXWpq@o}bW}jZy7O*@-g?_@0Gi1h{s zl3+4&0^z8${Ung|2kRQ2P*$J!^gPC!ua!PFWfVQRG%&L-FuYO%?l1r*ufYRp+hPt=@bfreR!JZrYt?Mqb-8OZBZRuWsnhJrPN?HqUM9dq%#1 zB5?j#c#wG)&|e{}358*bvK3NA81widYfgV4K>GlYd0x4tp+)8{Vxppg7?!qSuK3&k zEAs}cOl3vIR@d1dZPjba8BCCP># z?fkt@VndA|j#17Wo{H!v)P!Ro-+% zacZYmTH?KgnO`baD%BZjE0Q9%2oy*=-TXKo)10}PtMP@wC|BixZ`qRYYa}aPRXC_rwZaj&H0oBlwC1BxRSWQYpYoQZhCuw!*H6PS0y zWiXbPrEZzYJ}2oS?bG&NIV;a#z`*p!GO_C!-m-ohUb70go6or|BhA6`<;y|oRJ?d` zD|kkeE_z4T8Dp0RI?lZq&-SEaE_I%do;uy=so03Q=T%-ZrpwC$&Efo*}(EB3f} z#B-cgJ9jOs!du9+^NMxIv6hW7gSAal0bi@r_@W)cH5{UnhvbL>IHvNBKxICwiBta^ zZH^gezj_Ni{UOC@jy|&m&lL7zlUwqGSD7Cb&a)2>elpk=V6EJuo9LSx-YqnA^1R>M zh^J}nre#LWpB2Qua-^-d&N|2A^i3@8d{#NzXX8RO?ZDSuo!{oZEdQfB`Twgmfv%?N zUL)vz>=?OlS-jdBQGIq@U^k3mihG)t@a z-aznzUu<`@M_}r3S(DBSS)!!r_y-cf4&1c%!06N*azq6OJXhbh$uG;_R+QJ=SRySL z_}vprV0%Z$E3_Sfk8h`D*D@|jSbb^w5qRv`x+l~9`Stzd1SQ1Mu)VwcCDSbB_Xh~H z5pyNDWlPjo8%(bCUE1h&Em`rZI=g+z9g}0$v%{pn)2sfT`V|s7B4Pt z|L$Sci7n%-_Y0(-{p3(}3dQTS%EVncbrSN>y}W!xe2kuuC_&f+VvTaLhyAq^^gK|4 zqm6QCqzxLTL7TjYK&Ulf%YBtwAG1?M9$fK|*?|7CDY+UaL$pe+T( zIsqke6jdqz6 zZ=liro)1dK6Z1hB%YPw^jhk#nyScqm<1HPiMUGTSNe<%E4g^Y!g~ zN0aXs?QFd8THLk!-9nRLN!VkB4#&s3!k<_j2UZWee{RsIyk5-9a89lc44-$_l01Dq z%3oRX<8aR4?L9v}$1uzi=9@F9)+rImH@?YjR_-#WdYrS-BTQCts9ekG=458`rfT?c zb2>OUgc-^s_ZZ5;+t|JeZQow{%3snj(+d)UcFa=AZ`uIgSX{~H+ps;7xOHHWTnNFAWqmILlGw%GyqRVnpIuRM|)%-<^ksm z9l|O!kEbGdE-9a0=or7$^f{T3vI&kSB)AuWn&9mEN;Y!;wN21nYm>GHmvbi?bZ=ah^Pu{-FyGHCbHg_3 zZ|tX$G)as<-p!rBluC<!YDyq_$EhP|QJkpwZC?NS@Re5@G|=8pRFJEdh(qrGJ=0 z)7J%94;CA{DaLcZ$KpnWg@rGWT;#??ei93U3FS(^=e?%M6B-p0Z)Kll4POkv%BMbl za`jKMK4L_TTLbZ%v9IX4^e$Q66#t$?C)y)pS-V9t|;QV zRWMH16yR?VwbA&zzSN2L{;_jASJcWjuuZg5pO=y!M;wKWmCeWwX{rhi5TLP^=N;wwe^sZD=Xe;ZCqg7NKeEQ#KFgHn3 zxu;smSV4B5%A(>3f70L`?trbAq*W{@i~c_k;t6Iz;K&bl<;DVR#qOav3W7O;y_zD7 z0U24Kgu`)b3p`hVSH@K<_Teg#F^_!k{ENR?p)6sksg|)Hsq5eA&Pn35k!TOY|3Z>@ zhvHx`|JQ_#NwdRBIE)anA2IKB&N9jW+Zk1e0L`da9)L+eCM3>s-w`I_mXsU;TEpd# zJp&6%hBkZKE)*WLJc#>-F#iZa8m24Xb6j(JtS;ZS^Y1xU5g+u_uQkJ6x8&fJjZs%TZe$dxbKK#7UJ~}SFBrs0Z(d* zo`i(_9VPx|7`_Vxi3jH*ADnIQIi;;SNU?K+{UItk=+FG1Kpu{iccD#vwuI9h9pwDu|0r zG|Up6kNlSo3d$>4zobO03`xI;Z3YCQd*$eT>fj2%7kkwaHULMjovkCiXpCQ#)2RGp z$0)kBM_lGSb64~4mvf7(7TNJMmW-^r!47D=$h%zUz;%R(J75WX_W-%Co@0Cm>xR11 zIG0k-{Mw3rWG=8FcZ>`yBC6&@E&>U2*`x%H+TFXeYr67%%7-6&Qf{Wd>E>w|^ZK+S z-u~wFumMQ}0Thxjn*F&_rNI!gF!B%ilU~Dzup?vI{O9-Qzo3NuYSHUDJ>Xg zRNGVN6d62nf2#aSF+*;^)~xi*yV=F4CYftd7>Xp??9qIEE*i6FG*fw#f*SKChl9om5(37*2^^=07bJMB>kiDJ>mWE9 z<&nYqC2j<}M%Q!@Y#R>9_D_T#Tz9BRzKL<0opNKKK?1Ct7%0?X&{sB&Jppv6Zk&JN z`v?mS|6}{-p8`V5A}oXNy7O3QtS2@^$fUqe?_h_e7;rJ-iABjJQW#VqA;?51qzeYk z?>P<G-$z|Pi%$P3tD$hTC5dx*k_UTtsziLxtj?Z z8=x012(JDDH)Ys{OYYkl)?eXHdIJFwvYs!6DI|&jv#a(4;Q^OgXZ@5N0_Ou{4|o;m z?sG`0IY=|){r;C4hc10EGws)kp_-ku&hDQi*Y|~{E{du%=d`v`GjS_mOUt!k16!1M z+glU}tQ|R`k`_ki(#^949F6X5LkpQB@qQ{jn&}o|E6$-BVOp++YHntv#6uNukMqPc zy!&e8HYjDM)$Of`^#a%rqNy+UOIlEioO1ABKpr}`tK3h zW6uxF>fh)92s5U1#TBXo6sp4~zk3{${hGW((5v|;U;`YItB4$w4+xByjI9*ZqqdtrK<1li@RpS6l=Y(IK|y@}CAZ6{=?68RhuH4t5#9wa3sz z!C}H1s>L(aGCCvb&!hwOJYn)ecDQ7*MWNtGikVY1BSFAl{Q{PkEKg-<%#+vfthgw%oc)U8OUtxjoXuQ#9O*P)+^A5R23t;eD6 zD2JRoFwAxcyGc46CqIAUGoj`c1DjVG&#tMpSG%jNEfsgN>W()2y!F3U1y3|=ix0Ft zTil?bThm-?bMoTZpU10d?j8wr>Gi(S$~`7i%=lh8v+Ys`Wj}MKhrWEh;|n8S&>_h@ zC%!EJ*SM=lGGS_mBh@|Fl5&-5d3Ii9Z(Bpqr@9H<7Yn6dZP0p4j5Pn?kQN=;om6%8 zo196=f=|omI-5lGv(>sIbvHaS^_E^yoCDLEP|iutGljz6X|ARgE?9zmiUWMGcnCt%}iYWTv~j>yc01l`$#@nJhtax z{>$DPY4yWF^%n)J?IjelJjSbAMFBKXNX~nl-Q@iGjarcIv6L^xcIo$l!iPB`@wd$9 zlP2Pb=?CC-tYmkbOLIf(^>QALRL-E*;JiJmpy1AEF_+U#yYc+AJyBHgIra)rE)^zY zN_@$=b%n(PVr3L}>O>YQCObh-`O8=$9nBhTn=)Ph}N4 zw?HP?^>30o-7hDuZ~3WP4w6u2J(|{?DcVF;lXqnB2fAzvK;_s3{{I1amDB6BOnvV~?B{M||!&_8*8wCFGrlzLU^08r~WBK(wvtaQ!S&NP<%Nca@#I zJTzKVz3H_FgaRFCO0`#oD@^MOcAmX}pye>vU5ek@k~p7OqQxMUzuOGFjdzgU`Ap17VXQ0|bZ74-nN_gG6%mp+; zfspiLB9HsH4#Gc>tawpT6GqSdsX(Bqkj4oO<83_qU(mAQ6T6fh`QU*YCK*vr100xT zg-5yMxDq~%GFH^O_{GeLu5|hquH#jvwzl^7j)&UG4L+az;}42fb0l{d;N`=F>*(P(em`UF+4??URUK;&#(#U3~| z-k(d+C)FoD?U(3(s?W<$(erUb>IviefphQiG+;vXWgzDz(+zFC=KOOw^?S93qFIqx z{De5_(LZGe9&p>#le_;tU0s_j8ABQtlsLgF0pbeXBtZ?WtJW1yDakPYGeJjnbRI`v zh{g`d7$crN5;1J&ogJP@Q1{x%X3CyZz~FM`e*e=wGrP28{Ns{0cAM!)i?-InWC3?u zgzUL*t$rn+9BxT$Qr7W`;J+UsGmy%jFm~*wfx>)_*H5k^WDFHRY#{WDO88Y@S0PS! zLT%!l=2lDkP}}9s+G}e?!6E+-7a%C|F>kSMS{ZY#Du=r8?lm>ORpq#~e3@c!7BKk}e5%2tnw^)0fH78KAsi_C2#q z*W4vi)02q9K&v6yZlwJI&oDEj97Kp zqF~;k!a5h;jxopO^-jrnMt?bInFRJHhcOz*GX5(UpVK!-{#_pFRb;U#Gb2O8)_Q%s ztWgTBJ~Goeue1F`-IG2SULw@xa2jx7GgBy4I-G7jUy~lDv7o&S~%K4MmT5YC%05>?TKe&>(e4FW!>;SjZ@40(x$$uOG9Ex;aLz*@8mg}RJ%zz?Co4kBOp zvsQ1hUYod1qL9GEWJjsd3nN1r1nfCpa;OgTFcyQS zq1Yd>;G=}&=zB`h#g^hcKSA__*IUw_r_1fbe{l?2C>YPtJm|7AqLNP;i?2(cOhv3$ z=-LkeW%cIGCx{-qce85s^5+BBu+S-m@9r@es4z|>x^iw45s5vLv)=rc0y3J$^dB(H z@*nb4w(8#6Wz%zlXt#<2_|?fi0F}H1)(mU{SE*Cz+`rXfK$R%M{7dHO?-W5O8ZFN zgr5{G%o(1Hj#I&VVJuyW4~l#p2a~pcHhMB29mxYM!Gnks9_)TpY*H4eLl#F0I-~`z zGCA{Fm5KI}1gn5KrQ%?!aPF61khZ6ZfZpr#CUUgY%x*D#+A;ttUoYGp6LI;8}}el_w|Rrue3AELzyLIdkYo&@rwU|$gD@5wont+dsjWM5yz?WHpGm@p6> z;J+j$*EnF7(x7ke;8Bu&kCQ&}*0h1tC%*z znd7=gdS{BtgLJLFtZOzwf6G=*g=)-OCS@+9QPKxw@&_ca1_!-p#*0@}!G&iYy)Mhc zTI{FFk8I7xJml_0UlKp9$S^!o5&G0z&U3$!-0Zn9zAJ|R<6YZxB|D)6tNp(rEzV&ggW^j!2^Z^d;dRMvWH}Uif?Tg8F zt?im?XBS-~-Pb>CoO;{+d=U{#W>5@AgrvN@IqWgFRM>tP zeVE&`Qp4%fOgdX2N*@vn#+kc9_`=@A91K6X8{xA_@N&XA3utT`fa`5*{ynjUe33t6 z{JCIgCt%$QXDUTR{~RSy_*djmFn|dV=^k(9tgh{2%uoLbF}nKwLFRO;Q{fdWqEYwI zrSFTU=|cJu1WYs#yFp^liC=|Sloh%du>0C_sF=&PqKU1mx{utnQjiv}A1iXNiF7p% zKl-66M~ALPg16vn(L7HiHV(+UOzYeg6FE#bcYi;B-#qixb8YQV4dK^c%EuK4JmY7Q zpJXgusi`cHr)_(d%YH_j;ha~wp^{%=T4?XZ$j%ZnR82DDYo*_InYLCxb=aZ$g3MH= z{b%utOXJg`N6Vb=GAs? zEZP4A?HakxuTz(se3Wa!H}S?ON1kE~>I0b6(l{hu%p;i0y7`k1>e1dw%pWn}05!`2 z3?X=b>Mh{Qo*>8!tvmuH@%wY~*#+D98yA7Td4oPHfH4a;?V|e|5pe}iY(Z>&Fab1A z0I~$WhMg>SkqAe2vDcXzRr{#+MC^5S}eE2Nl1NsS*AlRVn0h?x#(H7Fn-R-PqK?!GP0AV$`AF`2LYFAPi-{J2L$@EO}$R4;kPbh*VDz4 z@7l1hIpd^%oyq97ZQCt&npy#_IU1T;#Ks|o22yEa(6D#!qglJX3LVmKX|ct`v4ao> zQT$l8NbVRdy8LR@1x@)P9$|r{1C5EwC_AZH3BB^F|H2zN7egi&CJ-z{A4i0GWj%f} zA`~Ed2d_s!M1+kjuAZl-4-BFEc-bEygS&;W$0)>kitI=*{2Iq4kY!n$e;p_XLkH9Q zD!)oC&O(D-fFb8F+ZUYMA7Fb0%1hnE@7sc(vxYwYpsZzjqn;Tf(Uc%<$kB`bDTSb( z76*EGVY8q+$qT{4C9;RL;{0BJ5dGQUlyeyBDUxH4sa^=`5tUEU}M)ZTiNwPX<&8IU~PZqk%`Tf9!|U)j0bom)n64ZbG_{8QBM~V zU)=H)@Ldf<|By3v5)4WZzG#OaH-b&exk0R3GT_}lt2qDI2UM}OKg8ZYn9TIsIQWRaY!k=I zWLv&K`Wu~^iOTD=6R)TfO5tkjv%T#0s=Sqd{DxZh;ECnfRB@vDzVtMm>mnH#*tbQ4Sw(RJ)F&h+#*U_ll>#!&KR7x57I1g`>Cx-ZMwS%_ z#1eoq0jAeA@9L^#%%{iuccOtOR)i12!~FnNz=B=N>F-?dd2LJ@{%mq8^B6s!f0i%xrntEr<^&vocVN>xuugIz!JbgWSRIO@~;vwP3-rm`6|X!zyTnFZ30?A^>{_K zQ$}06pC{cjVK8*k;e?#;_s_lK0u-6HC?*r|^7ctF4Y|O{bdDzaVWlx{>aVw%swup+ z^ofeW5qtU>!Rnv)WgCU#=<&0q+I=pXk9!j1tcAWkxQO>%g;KLOFNWs!>YAp26LxeUo=` zqO5zTZ2e^}IaoOm6E>__8qPNkAOYn6O8gi*e}QpU9qgO-n+HkI79teXf_SR^&-rf$ z?;fc8y&10H*RQ7v>ulWKeL?~dc@=-KO!A6QFKe~5lquIX==Z*1;#*_ z?s73J*#!x$Vqf<}! zQnzekby)aPG2`tUseHLU2+tx;yOL2^g%LZ?eG4#*INg0=|035XTLY8-f}R!Uu(^3+$xiTAV6peqbL>+_7d4J%7Sng?tEX zL>}#vAFnd6^sc#W6 znjr!wA_&EqQ1jW&@|}7*Y|6-vvjfNlF&|?SfZuXhw_{$pn8MV)Ta$02OQdtw1oFH! z;xp~|ED}E%ZScBYktLh|RpDn~kb=8*eJD7}9zWn_B?p731Ieo>k9^rp(bl_cQ&qnn zLPt3wlJ?emEQy}n zEEoUi=@Uo)60mG(xzG5LqWaRkuYTAN0fhJk1Rn`|Ztc$}YU%kX0DJ5i_u3Puu>x zud7)ZUE4b|i`bMpxwe=FnD#GG8iKp~G5xldmX`DUr(ZI+MP%QPc$S$B;CQTkw`BJ6O|QLvGLLf(rd7g2dd%?sC%wSTH~*kjql$r>7ct1q^{YqsPMT85)Fpyk_!PE(+>>x+tI*N;%70-)MVQ zeOx3$-bXg_#vUaGtL`jU6J1(qmy_YY-o5{6sI|^rAD((krz_5<9W%H?M`Y4PY*-?T zU!>aXQ3CM91tJ@MR@${j#z$)CI@0CprJfK8RREa%g_EpGP%g}hDZ4}=N*~hv?VB> z$}d%dW3Q1gV`9MfM^Oxnp|RC?4Buu#v<*W_D$0!6tE*$EG@2cS!NV;(}=PH@^i_XYdNpD7`l_>20PN6^%#|JD@ zJDW9#(JHb;NVwYhLht{n4qt5=pMGwc6vj3fCseFq)GEH1g zF8m;kTV>(qL|4zM@*P;;yr<1Ol2}^M^72TqCk{-jSrX@o8O0qt6abb>NS+vFCtdY3 z6|ET=Zpao4xH7y`Ei8q4G_)E*StU<8Y%yV^*vaWux21rzz=A^GIE1>r3}ZN*XpTRzLc}|2f_AXLmk>LpEz&(`z69 zHbvABltvRkvG?c#j{k?UHxH+B?cax2wcFaMP@xGS5u&IhQ;Ae|q`{C_l_8~)$}$fP zB0>nsR3yqgWwwgUWu**JC^O4E&))OudA`5lJ>Gxb=Q!+VRnl7beP7r0`JA6~pv%P% zr?nexU)-IR^ooc$eot>q;3MgoxR7Xqc_`~SPj`I^zK@CZE#}%Iqw8>Tynh!31d6mE zpkS#&3YBuLLF$U-OW-%3ET13JR_s)C3YWhdX>ns3MJK^_Um)ufQ?=YT@+w?_ly={V z*yzkkLFX$*dvSI9;M?=rQn=n|yIkNWe>PX*l;l@^ZcXB)Lv$0kVv*R~h)7d$x*ehw z6zZ15=2F$-mm#t-Zq8yJTu5?CaaUc~?_pZSO^#{o4rEV3DT6bejQw#!2Hl(`3>1hW zzCb&;f6E&AsbBXYxztLrCu|^SbABacHWvclSxK?!ODWycGE%2+!D-(;2xO{;w@=!$ zdjBarap)`wfAg7~wFLUT*N*CIy-@8NA%6xl+k<#NH{l&gY(H!e)BLLEQTH_V?UF>N zvnp#`LT|6;$j*LIdsg?^qru4J*1i1)5+vSsxiz&Jz#N36^cG{RN_&?k@ zA9K;P<R4yZZCy<;?j+{UXX9hiEHwwN;Mp z;7~|!n_9A4j#GhQf~+UsJf0_`=N}wxdgN-B7ke(_Z90;f?L;CYoacsFh;77AsE!ER z@Ooy`Ly%?#A$cKOH*7u>3VDG7Cd2t#;$p`Gc)Ajh{bh?$2MI-dC|Ft;$H)P*xlpF06JL9StBf{X&Cl-YXg zb|y94z+EwDxqIz@1}L

      D1;fL9_m>)*vl=Zb!uj<9Vy!PmD_S>VTjT&v1N};GEj( zTJ2Co{d10Sht~yvb~1eUH$0yH2OQFyOcVKRyO&dW#W77yVKRk~@sEhm1PAN*W8zRq zVl7*g5Gel#lmj`e$l2%t&}ctQx34H^KHGH{p|3|L2Qg1L1oFu0Nuy{76t&0BoLNr* zXkxcTb3}P*3?}3@QBe<+hTO9u7+JW(oABF^jS2_@+t510ybU&QkG}Pc#VR~6cqAa| ztW7`iV|Szu{%o6!jE>pA1Mc1U<844?gc7L*4#C++Qpeg&!?HF$=aI!>3~EW)>6*na zU%uUbzJOWeNvq&!9qq<98+F@+Rmvk+G;i!tX=C+*l>o_A$ML8>=e>{GJde3iV2Smn zg+EP$kJP%$>gK!xaMqO056S7;d`8b9mdDwS^N(kxZs{!*I|M zg$C%(h@UEPa21*yec=@$%%?Z)6EhR#_IT!{;gO@*v+A$3cZ|12=eU$ zvV0I;8JrVge|}ep#kx!98Mb!H{=$P!(pJKo1iDVzeQCci5n7$kqrGMF&Ya!MkxKt7 zmLFQ+`uJ^gm*Ad!&i?wx`JSC_gd?GsXOnUxSH>t>i93K^JN)z=gYz?s?qo>0yaRu%SHRX@vq1)Y{cJ~L^R|aH|EAgp| zX$g5piNb&X>_Sg63bg&<5vdS!!63-CS$JvO8vo$nV?h5p$A_ohQlV8osU6|0_bAwA z=ems%gD<96<6ve(8^Zn8``m-1-dNgT0xC=!(^4bQ zwu;z7dV<{S<(j`sei>OE9ucHP7f?B`C^bUU?2Xt%-O(o7|FxAx{&TL%4-N&jb=B+g zM|b!Ry9*F}!K9VVHbV|fMh@qudtHF{%Y|jC)O6C;-TLIMKu^Dz!qZO`pPuMT9at!68Jiqt@<$32 z7g&%92C}<&4`26ergEjcb&5SH(*C}pX#OtRyGx)!6(=gpbVm_Vr_Yg(4>OW>cv-$m z@8Vp^^gYWh^x!1@gqu~<@uvn)4Q$A>hpA0Ois2aT?HuQc|7+PjaoMVKfK%J@>u2aJmsnksBA3e#VSMDA&LlbIaF zr#;1{&4eK6t509($8TA<-KsWG-dAJf-xituy!}610PzmCc!yaGE6y$i-uDZ!%ri(@ zSFAH}Lq;iyT}{E_0&nzU^M~WIvwg+?Xtx4iffF)r;V;xXT>4s~#@)D%gu(lX)pNPV1CrPkM}NnBY99Bip< zhq-ghKU0Uev!{=<&8sS|bdBtLG3TfJTfgtx{i}$jxU8CTge z1=rUI$+!xC|I85k^m5Kc_UVE>i&)2bQEKQ5^6mfmSO5R~U*t9R_cN*}tS}<>!2sR< zw){#ZA|FCBgFNsOM}_sO8-D{ptPno-k#8<GhQ*z|t;+g3@**;@6+Bf~+@7EXOhIWebJ@E{i+u%cAT-Xe^ zyOchs7e|HR7`3WNtT(7{+vVJ1)F zwA34QzgV8sK?)MgKcdgvjR;cYve+lIU|M36AjwV43Sq-csM~nSH5(>A?fI@KM+r9U zaE~fnoONDgjOiL1?Rhb^$$4W;k}iDGd2N0zA;=?qV5<`u=pRu(Ww5E4t_e4&%xV!C zQ1t5TvYk@4P@RALt>+_niWCa)==57=IX31z3GY}Nb22Sj4DFPT7)ewrZBVr^aOjBW z@0`@VHB@V(J74it)1oJvUg$@^mOoA#xGs|`?WvVrK4B4FB3NgmGP+Ldcx8^h>#FJR zmJwxzKP;(xl+I_~;K65)o_9bw52s_pSxlZkliGITHWXc^jPQhcd34>lF-s}L90FXn z!0tAzxndxo>5Iml3DHY@=aB`aNMa?3@&j*J1+<2fRJ(=HOgw%QPL6K>aJbB8QLR|eD>7ZhHL9TTRp`~B- zgJ-f~T5xF;?KV4wNcti37u#14Lij}}#v5Az1#*(WO`zkuj7nC4)OdJv5q^=*BqTo^ zE(cfamQPH5a6oM+;`U#0%xe$W2?r4(zBNc{bq53R?#7KpExoUA(BQ?>JRj!mH(1AD(5u138 zm~{ldZ5-iNSkDvF)at!T)?RQhx?j?`ZnH_>q=~>+$x5o80qeu_jvotm5=B|%YK4pkW(mI# ztg*C?c5?XmagUews`Gwf?bkAGK8!F5#(wmk z5AiV>c0EZr`bRMcR6kDzQP~!-S2@fw%JB4>Ig9edd^?7INCg_1V;}$>1z_Ti;`De6 z&I!XFwkJfc7L-0=gW$>yT*jBd7f_=Orn zGv*Cdhdqt2^%j4vF*k6C?xKy_FRYC*?up49%S-34K%MvH)@OCd|5zYBgPzIe9QDtlZN0!3;Y#FpQjNQDn8 zePzsskAZ>8cM8XZl=Z-Q%*CN^YKP~MWVITo>%qWw^uS3WU*%O*6L;*QS7I5Vg?gix zww>5-mjgIGI*>nU_;My7oI3tcafp4KEp_q`?U2eELd^mJX&c75+X$})y_nF0!WttINbDGXYMU$ zEkjjwwZX=rgROrm&ux|5DJxaQ3a11Mwdo~}eSs{25A({n7rxzKmMM3PPSomi7#CYp z`<=&6PPge=U~FQj62kdU7%VME3oc{G~w48VQ&puVE$w`(f0^Y zB&WUq^8N+XWw^~RQLPaG0V-s)qDv?wf|rQsAR9wMS@9h@u~H%s9olyi!XngZi4%cD z`pmwQhRTSzjsYV)Jv)t(kMPNN;Yo)~aPbf#s7QDXmYZ42&l2S`3z7Xq`$dd$N$db< z370@edN_kMA`X#B(ho`XDuEH>rbR3UBkWc%##&E;UT`^>Rq85yV|7eC`tQLNdnHG! zwoDyUOQ%wZKW|oOxfIAJ0WpX=)G_KicnsAT zlK>>Y(z5maCL&EDhO$^PzcA1{a_W>HZE>?j-dzBHtq?&;)D2>=w;K-1SQlI{rYOXC zYgKvC3i;`f>UA5F+sjjva36@z#Rh59e^X>cQs(k_`dN2%UIs8f)E(v13MR!t6a>Wg z$((PGEtY@8GvtHQ7_h}oPf6`8_Pc+SEJ0M8S1Poyy4`tmm28wwY|iD8J^xzlMkNYD}L@4UTx8x9qXX-BPf6^ zZ7g`Zv$S1hZ%_w|?)T3F#vf9tbq7-0w_mMKo!f`3n(mn{36;Oj&;e)OpO8>cHXZGY7B@B~Y_@L?$? z+T9b(HR={7Ju#j*J3~+#KZ@ZBXKXdr5i9N zhqFocgq&~AmP$>J-k76254nAeYY*4RDqGHVZ291E;0HSG`(Qy3c$6$eLQuam*v#V+ zI`i_AV%N2Nk4lH26mILtSfGhoyraKalZ&ev&)G9K;%!sL zsILl2{e{g#5i!(vbPsPp#GTs=cistTAZ*HC4zW)bWXrw#w8keKQh$^GRY6cjVP2q5Bo zZq+7XW)5$7qq^SDm_fJ#f}^zSjwGud!)Vz-2p=)Uc3oRfB;24f8qC-j_s5_ir#Uni zxe7CchmhREs=3Qt>3;kv8Kr)iA<6f<05&3Hg#zm^SqfIt+JK)YP0= z%fWF7p^M5yg$;fUfU(Do#!u`#aTe-OIg@*e5{tlleMU;TsJ zR{`v!uTac957lcU^Ngc7>&a244nfKJcpvD#{ISB!l(5C#g9VuH{xA(pJ2=0B{a_$V zIN8|wpO7ycB?I|?woA;e=@G)3jW!a7c}F+xyLJ=;E)8sxWdN98XB3Z&($XcBAI}B@ zOz{Qd&7Ztos6hhkCDp?TQ5F-UZAwZJ)Z4Hu-4`2_7BZ1lk`sO{E({VD`U{`c`&83@~dXxPn%me`Fy$^^ty|A zo`y1=w|)q@Q_vjso7 z=MeiuxVhvCp{O;hZ^0aR1S9?@=&*col=`zPm%%OnPiO+DC*?TD$}rhcBhHP=D`q$U zi~`*oF32i6b~9{ctS!;aoA_Z38DBl6aB3c%MyiD~7i@ z6KPt`g`@tFGdoVX!PF{voZZU%=D+q&||9qhxL6s@5ZDhss{_6Di1aJPC)gstd=U=i4w)_Q+b+Fan7Tud!qby5<+PE{U z&ox)d)f@GIO_4vpe5VhmqsHM9rxqP%;fPK%GRqD0&t5j_|7H@V?lBPc4@aCdb6USS zPoY-xoZN$PPBv;CAB-iSmFds|VPrb8JI^k?kLTtka%3nj_z#iyfTuvp zHB5`B6xEh(#2SgvY-(o3wBy~0F)N|KVD}|J3l>e3vg=A>=}8Q-#mIfMCdYy?elCt5!ob+hW}wMv&e@%`-L;Bl-us?-}3J~ zNB<-|Q{8g&`4sG)inM+Ah-{*iN&M9gNy2>GLuQszG-g4`a;UjQ+HVp!++=@# zsIUHUxXnt<@buw61pN{_R@arB6bjnUy8a^X386x$*1Sk1i;d*DQ_8P$X%GttHvuN; zuztJ;`Vju%C$f^yw|p8CGv~Q7VNzoFIGu0p+QM;RiRrAO=iEs=5VZFM1Wft2-1cG^ zD4CRe|pcr(2Jg!;5qGw;hq(0>5eY_nW`hi81nRZuq!srPAkBw{EMBMG%UuU z7YRlS2r;z7FPlL-HnFIAe$*O8(@bispR*%hvlqsGwc3wh3B?tR+PND!qC9{RdFz|ZE zPR8Uz#Vo;IKHX>k-7CQj9e5T1V|RI28tG?B5RH?;<%Y1?`G$suPdVLKc|^@BuA5B3 zz4(BgF(cF8b4>jkALZu$EyP8Il$Rh~QjncZ$)s-DlOGTrA>qxZv ziO4$^@?U;)Yuxr>w3wH`Xc5s#+%g^xiUkhZ{>xDd54eL8;)^I_HrsM}1(sQPUtrw+ z%Xhyn9uoYl&OwtJwku^Gk~l(NRX{ITRaVBHXkGqw-Nq4)Fv<6InsrunGhZimn2rc( z8P{I6v12BZV6(#69na-$+t$CST+%vyN-rcS{(#S_JS~>wQ;G|QrIa&Ue1ln1>wII_ zT!s(aPa5-bbEl_9<$oJ73=fAkuSBuQHHLA;Ju#`NuDIUrhDn&$JIx>~iSn=dE@7n} zHNmR$J6VGl)M^HFN1g`Ad~KwIn09kM;$iCPY4^?_@_GH4wj#MFX%`=a%sb=2At{|_ z-ky1+C;Yo3CDQ%7y55f%rSY26-*c?QmM&XHbms&cbjh2aC2l3~JXu14N2@pXy9oQH z;?G?y5-`orvO1ks)~K0akgJ{LEqt%3&!FzMo)jZ0V16cOzSryY^j*L2pV?yb%C@BT zJ|J6MUiI+QN^0%Svx?a0(oknkIvxHi-|FRWM%VF$f`Q)iKj>8%dS;q;n;l}eaB{kW zDinq7`Qhe@PoEwX{XPiY?)W602oY+5JZ6I@qmOg0+OnUWvI}k?y>4dbCt(i5MOq06 zw>WrsyxQB13ET*R$OrNqJu}mNEdcsCMa1rC%Q{S=mK^MMAqF4r9v-dD zMgD2NR(Tt%XRnM(MX@!zYZMG-uWhgR%( z$3+;zHD*iaRV-cf{=~*~|<`LE18VaFn-C3vee9naVD17nG z2R~tRd9*~A|2`HNks0T>aabC&iBbp(ExW%EmEa37FNr%h*eJ*IBVrmGJTyZe!TTirDk8w zfaxUFWCxp!AANXi2s}!dzYq|PNIQU9?&=adcX`)+$;std<~t@vQOuBxl0T6~#I6({ z;}`a%6|Ag>!Pq2k9R#P}_??{jlG4&PFz>}J!vb1zsP*4uqHI&+bM6M)96x*qTM=lU zHP zIF%#Q6NV35y+P4RpoOwfNUSVG7A$Z_c$>hJMCBT=6Vq2>0hJ5D_f@6(I2|?stMyJa z&iTW5WWvG{3>Z~a5?qzJR?LTl!(sL_Yj;KjF50h`ZoF%G`52lWb-_#8tTyOq@JsPl z+qo0?E~1KqV%~cV;8P(8>Xn}s6W;Pwct}zV79yuKC)B=n>lhwr5vLSBdid5`<9houIkF*q7O#nI7Ci7pE@^I_Za* zAI=?M>uMB_H5@=^R)PoAbyF|Ys5!)uzY&O83REY=trphEW_UzVbD=O0{e?6k97Nx< zZ^vx6X`Bal<|8;}#7YmJ#t2Y7`CbBBLBd0_0^sf-KB3L)>x3qNY&*aUFQSb{cOg2l z+88cQ&vsp0ih;MUzkgAGkdPZ{K|VQJ-+NSRmcV&8`dx-<0PSLYzLz#z{SPPk-&4bF zAR}+W?2doT8uOWA^s0sVZbFw8Y;&Tl=@@RIT1md$rNOTJY*Z?aO`KRpJ>InU_@rXB z%Z!yovDoIF1GYsaZJ(2lUSms9$X1A^tEhB(|+3ALEq4?`LiQx9>CKM{NPc$O%u2B6in8D3OQ_HQs~U zZ1QqVB`h)@2%0d)T-GS_dZ?9~;e0OJTRisy|5ZtfW7CzP_QSyWs%bWMXF+p=Nc0l< z(U`HN(2W|Rs;3*P(YLCjN40-des>?Q-e^ZLPk8ud14+`fYE8SplN94K?UCL(aM^4! zZKh*dW)m%4jw^Ed?@FgDOmIPB4Jt=|h-VLvdFjG6aWvL6XX7 zbm~6p!MrLXA?+V;YDZFT^Aw>ceP+)ey&|=DRr41aE~$wC?2FoA6$*nLJ^!3&v6=7f zmo&4Dht?_jqCuVluR?tM|Llyn`IflP>TgQz)k??HCiFGQ>?g*dVS9& zCkJuA55qk9`1vGA@p^7&h3vNTzBZnnz$&LO_`A@*Yu)**A3M~QOv2Q}X6O0Pd*-3{ z{H3pSVNXF^UhFpQDb0f&qb?O){ZAOnO2)tao8RPG(FN4+HIHeD*nW-MGQyh2w&V-=8c5sb zt0KUlG00K_RFiIw_E{N02PuxTG-CAvDx@gn8N?nDozx`^lg(gZKaj(e=$uC@LOweN z;9jsJYQ@uc7()S=bKS!P{LhL7j7Xv<&b&FLn$<%1<(#5t-eW_t1QhB>9 zEcmBukh^mbm)ojkPb%!%&Lp1S2t|QZy5Sx&xJIe+3)|2`KD%%wXGN64Lzv0l25LAB zu1iP7H=gF4W#n%YGXYFdmjJU@MQ3PbXgYQ`(~$Bd%hCubI`5zSeC+*gulDl=_X+0L z%k^|r=AK}qzTJYvBob2vbq(Pi6OmoUUdXIYTNZ|c7$^ZH=p{)UBmvq{jx43T{ZnU-OD7h<-|H?q=qPmY=UXI^^WgTakS(b3ay-?(U z?0y6f3t^|?E&63kNEp2Q9OT+G$7^1&XTH7MONgb>20NnJ)q;Vc)-~#D1ZLg@sp&;` z**TSbn=t7pq8LQ*tYOhvI5IvFsDI<-MCHgbd7z7_7aAn5^XT1@HmaAJdl&xG%&vG7 zn>pXrQY-ET=YV4QpJodsBkDNNp>N%UgWemxz%mN9TdnL{CcO@}3;w2R5-P0)s7eo3 zXXe(!_mpxI$!TK)P5Nnr_-4VKJ6D6C{dMjGYHJU){-ogq!i|am#I#~Et8iYJX2B2{ z=RW!vqC2$&8nZ>gZasc87G!m4dbB}TvD|<5ZbQX?-20=v1|(e~+3w@qUj=3Zh#uQ} z>k`aG8TCb?j$iy;wH7H~#?NmXpxl||tX-GyD6zVF&P|wDMhAS^9N1JnaJiPa`V)EO z1vEWG3B4T#KKX~vy=np6{&ryx5(2P($z&6M4pRyiP+X%x|M=uIo~36oIyxHN6N9D; zx5U%&mjKWcViSfb;R7<#0}P-BfdvQF=d))U#Ls83ldyDrO;jJ;`A|v`B%lueGjZUn50yXq^xraDq(_CEwcB{ zTJ3uwBAJgk0)pAID-)FoC|2rmd`rUz%_%geGC%s!f}Q6ErB3^F{DC4PXIU|~OKiab zmqTkm=LxqUfoL`tA zA1e;H1kW{Sw6T0-Za~Yfn@ihiH`aX@E3)Z4wV1<+jMWdLS%J_<4Os=ufxTClB5_q) zMV;$)RmQwryQjk>ODrJ6th7ho#piLxz)T4K1jasJdDJ_96d{5~MfX!-giIwGBhA={@KF%D`>i;PRFu|gB{CEB>8^vH?A4XZXq-s>?B7(+|OnToC`WV9JxZ;*1PQXY4rXDU5yX< zSD_Uq$ox_0{h3?_i02f~Z|S8Or+^MhCLp(ZYj#x5bRz*u7MXis45MNY#6!6UqR*kL zbQ6qeeY9YSsR4tm(MyZhTMC*kw;{-!b>qHk8)V@>B#VVWcG89{%cvT~zHQD8WkaLd zQFD*w^DauRWNI;EcR}8E(YYju*5zq6W>s)GXimkVDL;R4WIQLU$ls@FL`IKx=K19E zm97R_(~lP~ScRtQZ#lDGEljYisMn$BhVApD3kkXOcKZb>jpZS!+AU({qi4Ub3+D}2 zbbO8}@H6s-lIld}PENHc^1{Ch?`UVw;onNns%1dn>qt>`pApj&$(2yPv)C3UAnI>5W7zJS1m7<8a5aI>0g6Q}&9#uE>F33=fnD z!f-G~u-2>O7uhzp-C2gl1r{@qP7o8ww*~Hj+uYD3d0A^36tgC=vbG+x?6DMxlWP`wtN&>;E4X=^yGV=&;9^f|4^{@2KGZ zRT&jOY_Nzs8WLTJ;;#PiDg4wOB=-bBGbxVIhyj0cP}oL)$SHX|E;Pa0CtCFexF*EZ z4&}g-^`DvO1tAX^8ZN8&dtfAUbF?a>|K3Q^Vu<8tMy#WkGCx~xDR=J65x)OWUro0@ zxB#6)mcz6Z_K;5IZ~Tig$IbJLZzT81f?QOJXA{h7YuFuoglN&U9=tsqxaO&1$l)G( zVTg#_&L$D(R-WT=JUiyKMB>%LxW)4B9=I&&ohm0Ql7H%{P~U*eQw33SX)Y?z7%b~s z|AO<$=s3oVQ}Nxh;I!bZ|7t$pgrFtD83a1R&cX3g$cNCGh;J{7O6I#^LS2C+Avwi> z5Tj_Lkd_Pp(N|~ChzzX4a@USG2>R>oT)XN!90+Yd@iE@SEfl~ zE-UqOWj&0)Fvj5&_#8Ah~v&=AhJt$5?`xnS?DG|MyX@Yk*t%L@xS_xrYd3aj(^pszy? zu1f8}N0LJn?Ke~7qh!YD>2+=<@j>xFbJHn6(R1F#qgx(KR$Kb#O7Y4*zH_)>m_5oTe=&HC`d! zJmF7MkkPsIqD_*)R{4I-MEAXn0UCo({=??B9bUAq&+--Dx-^fg&o7$xnX0)Ig!bns zN!^$17!;G8^5ir6P{GoSBvw*nz`91cUoVRW0WC=WO6oIPdf8FQ>n$@pQZ0>2BkU{Q= zw9gOXD}2O?vRH zw;d3*iB2Yi=GF1%X{!D=k3E1qO+mxH+hv^j#l%=i#4ee|aB;mhU}I%10xrAT^wS1o z6O)ZsJxvA+3Qy11q{&rJT$!lyqyPJquQO^cS^m#6)jae=YJ#;uCD4F*v8JG}b1~mF zY~IIr>e8LLg-eoBeTDxn9KPSdrka#SxI*xiaK&=So1gfx^}#dVxTKUc9@}Lbr(emu z7?%U6eWibM1~oS^iZzb;sd?gub`l=9V!=r#lZL3Uk=tC_r8}s-kCKQo683WEuJzmA z+KeeMuYKR{qJI7BKB;4M$8(>Yb^eth*m^m>?wDMSex6tD!s%Dd#P*iZuAkC1z=L$C0lD-u{bn2y59MNM%RARD$n_g&cYt_`Z!pV zq*gU7Ny#g_F-@r)kbhLK{r!zhZ@*Nd?;9P{;dc?~%SYWCkwYx-qJ_Dm#V(&;;L>O`q zsFIlYL-)LaH`acZg7{b$eD{Z*JFRzFcn_XD`GjVHKAl9gzQFVea`eEuD%||tR=qWs zJn~?e2_q2I+3f<{pnMbjQ6oap3m8)?psrF_8MDLf6^>5q%6M_ZW=%L;4IiU@AqM_H zS1|*mP{?D2C9MK?p%irZDCmhR)TiM^R8pkAq?j#sCUC3sncb>_AOWD;5EN!Fv73-K z5%|;JFS<`$h7jRz{=ZPtb`~`3f-w|E>qPg3-s2(c@JPc$Vhl$u$VI_OfoSHHaoB2M zaz$_fVnz$Wp-W_@k{g1=FrjH|*-$GM*qqvaI7AY=j3t-`n;|=XxJu5XC%Y`?=g+|0 zpSm;USE+aABKwo)C~-W`9c*U)&0WNXLar(@#Mxe$@mOSca3R^-z=OKnp=(k%dG2Lu z>4iiGmEYxh#yomu3Nz}-M zI@?nfY&sap6jKiupKqTQv$mlLudTOP2o-kja0}quCve$$vMAE&;lr~1wi9I|Me!4= zbB|b^lg+heFL}Aaz#?zIh`{9zXO9_^V(z-BE3-So^OGm2rpX}&$#bVL%g09jQsz_Y z+{P7TD!L)9oCt} z$STy1=aC*~iJCAsQon(_MWS|a#1KU0=dH?} zlvW!B27|6dVtu)a}2^+iaE8!)ZmCQqB(tv!S9wvrig4*30np!;;Y8^Pg;NgL%COrMui z{(ZJ<35?|4v+y~P={Q!9*Xp zxiavclLZd8#5Nx6vGpwuqpRQDXj=KA`(+4p952xWlC)#WFYu_;u&6oKty@Mx$yo#| zotscZU+t&n*>IeFd*%bC@mPmv@WIX5`kqxYKnuLd(6uP}H_x43{P?VM0 zp`JI@!C(qhCVAAU>)95>@^LAsah0=tYWI))ej=i>@j%5_=kU3v{>D!WXU2Yh5jrh6 zE>bso6vbDRA=~QJoQ9IT>3MLv;L?^$O%4eYbxeyX(CgQ9$dC+lrGNKLY8OB3{7Ihi zrs}kVefXt}rbnGt5CRiV{+sm%*8EtH#A1drQE>QSsNUr0g)k!z#l@|5hJBK=a?(@w z`Hj>Pi?L}kfqQ|?=bS?E5??y8>SiR9dtaK z^udB`Eg`ue(v`UC&AzT@gR47M-##plVN!77lCyG& zzsITUjf1ugn)CM{kne^d1LTU2B_*x!fc^j+#}aLP)1j}8EFJ}SNnua&rNIn}ZQ|R! z*^_WZurn4fW0NPYdAit$2#!YFdbp_$TDgn(jKpf{KSnPg*rRtONG3oRekkcNE2I#w z=vEwT@8Qb)tNO=t`b@7F$vXJsAzZ6N?P;dN0-y3e)ueK$kX6#G9`C^ut#lh$PaiST zA~@;5l!a4U5VIwIeChX@gZ{UXrbyBj5y=8d=Tf}E+L_*lw3t9M;6a$PcXoBPVRUmB z_#QsMW30VU1^d8R8Ppv_u|zbf1UUtkhxNEY_SP#JJV=bvWk%e)Il-VC0oEzR*SsHF z@{SV>y|(rbew)>m^!h!$sp&k=okk#1c8g)8&q6Cr+}``UFdH|wIOz9VXGzPn0++aR zY@hGV4#AZO2q1KKb(lsKZw7)7gXw;6F1{r>ild2XGbZJ?0s0`zz|=bqY@X*nu;;U` z9yj3^8-RcFdf%*)(Jt|6F{Svqq0digO4mLzhS)a>GkEo!p4Aq_Dh;#ba%D(1+vtLx z??;af4OraK8^lGmX^ZKPv6(1rbbfS6C-=p4GyqN`2&5i%7LT|^){o=71$X1wb{P}3 z<~J6}6XW8t$#cA75ys^aCU}2+?#q)}P@j;9^n z`t)V4hRO1=9|Fuv<2kdUyu&jlJ)1xO@16YfltNtF)7bDYo#xvOljjm*`F5S=zI7lB zrHLfXODGf48E`wmYvM%;sUIz@lkd~_sO|;t=u8NJKfrA*1qNiqUZc@UOD@2KTV7#o zk7k=!#9j^V2*-(y1yil8{S^JNyo1J}c8E44y{gO|$^Wm-d;ulMZonYuNS9JjQFPQ= z6jEFup}-6wcqVd<0x5imuOtvv5&;D)iiA7$Ph#O5#7RS_$W8AE)1Nq_sx^@l}y9C?!3efdprD6bklHSjF&(AJ%qmrf{6!AR}Bj%gQh#P^>7tD;)ber zt427pD@aZR&4-CBoJun7q0=9?xcYWE6Uho@udSprhch@4yFdrC+{MOl+jHTx)}Zb` z8?D`%liSwV6=@_mgnMNcQ1ZPKWO$<(0gpQK_c(M2=Ud)bvq4F7NB^yxZZVkxUFN0} zG2(RowS20xtN;1u15_;T7>-=T6Fvp%D`rQR%=oT;=161D7q{z!jtlGf>jD) zz}Zc?3Yl${@`twhtR44n-ml56&}Gu06lt}pPO-kiZu{1Pq?q!Cpjkm~faGYRzs$Tl zwSao@BX)@th*ojnz5qAroE$7IH^It1bau2i_W#~c&s*e=b3Na41)On6U^(2M(j(vra18te5cbz|aruE|c)QeA8bqgUva))U1w?R$&q}`V z7GBwdN3ac*ydW$ocf30SlyRH9d?@tXPjGztf~0@D)H&^w!J=sbwt=9?WxE1Bd zGK(FF8Ad{_FFGC}hB-5s^28OT9h+}EMr+Tj+Y zJ@*o|=RZF^_UGdJ=OR4>lGv7g(i)99X>+?OsgI`C$u;g>Ej>}ZnQe8T zyxs`+_>YRk_2cTEl6iJ3%$15a!K)(bdxM0T(-knSj8TO}eoKFVksgwWY#$J72}nf4 zai`WQKjq0zKH&YWq$o~jXvFZGV!59Z#$=xwIatrpt(&ZZCI;c2I#%nt&bpcGdgy9cz^pR}NV#tIv z{~g(ogrelR>)6w?K^-Y4Rx{?2wBzPfTBu(@Otw#iOcl7gQjj7`UHiU^_?xWQZEd*K z6VtATgvSra&6m8km$Wbxn7CwGkUq-Fy+`3yPr}A|jyIWkIJ=F(;DiSYaKj^nH1C9I zQU4@r=iSp7$*Rva5gPTMS-|KcclWIb;`{T3dfb@s;r}bI%(Z~^7WoD67+>&to}kKp zf*F=O*4eQTR<=neq~Vy1pm4aN9F2viDKZhOQWaS*cJAiNok@Bw zS&=BqJY7}5pUJBlrWTo~_A9*Q34i4e*I!{4S{a8q?#S((IpU-4sx!mIZ|L0Gk)wOW zHbanJE_=^l{&#rSp4lC(PZ>ca{qyT(`n|74^mc)Yr)&E7>6$G5%NqHvjiq;PE!@qe zimOcPwiK^@YPUCf@lcQRUvgcm24T370&Oj+dccPgM8cuO!rTMk4O#s`aMHU)S|0%w5H%K`i#XX^yV}C{>v`6w7m7MuuWvQo7>Rk5ad6ort`|` zFP*BK-YXn^PIU3`!SSHir}{kCllec;hD(62C@wWMHQgcR##>}>{YA`)&z*ZdHt0)T z@@UQ)v>0&7Qs*zRyq(8Ph$uI!onbqB>AzGo(X(&YI~qnGk6BgCg_M=$6jJ$+(IG&; z-dG+^khMG(o~uJO_|#$;Lgih=pbl>1IFv@8%Ju*qL1Dw`SX2%U&X#c{TEUr__W`2- zYe<345oAEyC_$gQ_0y`}pgn){zH5J)R;Udwfbl`Vd;E`ZcSocl3#(pC0^u7LN=qnE zB<%$%NO)w#a+g9)f;GE%t$u*R{+#_Jl&bJpT@mD_jO%m&iK#7MV2Y2A5#%G@ARb%yFRDJjXUK{o}Oxu zFm@`hl4KR~0L`bB=qgQu3`qQqz>XcqZ0RY2n}iom)bYj5Y%3kq8tMA=j;GkEPJ@SW z;!clG1--nzBtbgv$!B{frvff|g1rLghn_rpPMoXp9@_T9BNg2 zQD6>y(Xdc|Gx*RXB6&)f`~)jJQmgB$5K_wMCHn|xbd z!aINe#-wYDg&w;31}T?Z<7_odO-=VKJ_j#mfWGL2iR$YH=C^LFGAm8xp?&>Zn!1X)FiXCV)jm_&Vk=En%LP|Gso?1!?}4FXKVRQY!?74 zXG~pO`9C|G+OE;E!$EUl?W0mzTx7zIgxZ;tE>TB2hR)fS_t=x%&Y-K`X(Ci<(=tT-ZXZSaLx2Ur|Hdu%h())czWY zx6>UpDe6XQNulleQuidB#d6=}Mx1KyVD}85ddO&4GOUGKvw`x!Y5gF69MTuAXI?4g zeUk^2v_Ia#u&Y3n+o0>>e&+HU&TB0t-0vsOHN?r^4N=SP7Y_R*X&t6qn=d>5S8ett z8D_BP{+U6mJbmySH01jCAj;$~+*(cdxe&1Hh!g~QgTw=vP@*1#xe_{=mOIGz!$PJv zRw}EDFTT@rbiUgo-TPOCo{qu^*S_qW0-dt}5&l6WXf-S0klNWDAcQW!!4HZqntVtF zy>W$G5oz{8%Mu?{>I%J`O#1MHcp5SI58!##Xo0y6X2)w4zJPaC7kly!VbKEEAZeLI z&LrCv8kNw$f;>nCzh2z=;y(;){H@Z`>(E@3VC1(OggPl_A1jr&3u@~dz2~xL*!lfL z0tR%z(AkA~HSuL8iXm`7ji%N%v$psatBH_ zAKFJ<4+N7~03e8*M6*%8bm`o0pM0!vAWe@v`q)X$99DjDAIHxMKmDmtX)_9y6 z_WgRfVH|MqjtH?)L1+{{64EQC&ON#$ix2SKe!pebPCN4IMs;&ff5@;7p7Y|{=d_>q zUbkD@urx>3{L|05SHsp?{1y_Sok$3>V&wiC9%>c2vdvjTQHP5fJDqWEuyo>E??TxD zV;Ig?WRIj7l+Ar51Txh87?+&Tr-q{BC$6MK2|~tKcncgWT_5wzFJ|$Sn#`xX)x6cZ zLdf}Qp46QmzD-@*MI~E53C653>S($28$9;r9ORc#JzMJZr~x0YD`^dv4cy)l-`BX) zzP;}El8ly7)~Dg(`tSZd@ZXKgF5W-qWY38`oMcZRDlvE-zyjySPj?J|`E<@(x=ML7 zzshLH+l|-iSfWijk21H~{Jfl1qozd8Nc#7MxS5SBU5U>$Nms^P0NaXt%=leYKm=j} zgrtf!5-|C;Bsw+dyWMO5;fe{#c=uZ2%z9QrZ363L7sgFGYy9`Z7Yvyxf8QJ_{tJh; zN5LmKWs&vDXwDJp+t5FWAqK#^%_J3iDTQoY^7CWgs_E!tHW6OG<>$Tizc8)J2u%ai z3Pe8&OjM00qxX<;1AJXN95qJ74EDcawd^gyHg&e(W51@rO?$)8_iqkYjLhK%s5w2m zw~lT+&oVV_{A67AUa%UkMhC+nqVcm%_INBxr)RR4nzOQQGBWquYCP#j8Swuw_U7SG z@8RFLPMbEAq_Tx%D^5BcyUCV9cBwEbIa=*Y#7vunkdPF{l58O)yQ%ENWSxZU24iW) z&Md$C?VRuPd#>mC=Q-EuoU3BY^7-8F`+nW8#n;AWPm*)#>Tr>#>w4oA`zUfQ?jKCe zn)`02ZlO+%PEu4Y$v@($s%2}fdvWir z+~@nlnc?zI~i`1KT`8jtV-$F+)+}1K<@NRT9mhP_0RZdyP;K~mQ{;U#dJzz3&EYR2EZHI z0Kzi%5D>qW0n!e;o%Wa4R77J>$x8W6JHEuZO-}wln&gID3`uT zCd`EOJ%ixkjw|sLj>WlA_xH}uWe((Q^?Xm|<(riv`h#>Px;xy*wn^*6&VNl1N!{&eG8Vscd5d?Dhcg=_r=nwoJGWb{m%B{@l~v4YF19^ zcEDW_I}%kgXnU>z2?Ti#w5U*zBHli19j|RnGT{W*mi2w-+q1lg*ax8a;aO)WAeVp} z33CjRW;QCeWd6j!wQ?M$9nijSv(1LbBT$R?4?crsu_=;wg^ zgi~}=i_-AUZ*j`Ja0z+L?>qpS-^%HGi1`jD`c*&zS_kfeDJnqn_CwV{h-Hm<5ump` zjnQ5p0y(xAShmlBSOT<6Swd51ASbNI>l+$0!JiqKJn!Y>69xZ!kmw`M_n)wtcG&YB zUJ1WKGN*TRa!C;2gNdBe?Xv?S z9J~mKrQZfyuk(}JtXeeb_iBY5Rb%)4tukhsYLyQY3(ajvJirn|X@29~sP!N?JW9iy zoIx?80b8%N7$9C(aQGn5$G#&~0GtlhAnG1F!_~Wz`kl{P3>R(izAr#aRL}L?KeGxe z0+`#354MeuM8e1?H^0 z$5K2JYcw?#9KFBNDJMnz3ly{ed(g&vv)qVo7VB4x<8V38zY4Y|cbF<|$Xf->j`?6b*y7?A=>&F! z#Y4feQLZ+DY)WkkEH0Dam_s{Y;JxI$uQK<_Y?6EbJvyysv0o+uK*mhLSYhPxuYreWlv1`+SU!!qi(6ZG{a2=HS5lf|jp< zqM{8l2M2POLF=o}4R)U|e7L-!j0w79{ump#Z2+8biEffB9T!9NQv|&toeTtKxF|hC z?jVr5HMQ6SdI31eQ((2n8K6}>mEYt7u8S{AC{T%Nkl!!p<~U%eQsfv2$206Ziqyao z+JS4L*Q5Ph>!TnefVjTGnc?h1h`gJTz`)`c5TqJBb5pLungKt@lG7ntJ&yf<~k0zL-`YKxQb#wmM-PLy~7;tn=$PSTi z%o18T*CH4fM|pO6(Y#!lfAC$O>9jfXc1QYd*ny}a);6%>pW;NfKF?M4Xy~5o&7WfI zFAQ%`XMgUN-}11qvY<@l++dyWNj*062mUi_g#fuV0wVtNyM-Yv6^YzxAi@<{Mt|-r zKf^~Xru->w0l%&?@5gv;uXeV}T-iKD&J+L9DQoMKOQy#p+4rkG>|;jJy0uaELMfV?aKPF4}0cxgpm)BjU(E&ra~-80q| z*!SPeJG_WHFwneSa-D=nJB&*U2{R)$j}0+d78zePxD!>ZsveXHkK|At+>9*BQy5-H zjauwoM%eAfn892;Qx@7&q!R+t0g81`x5(IYucF}q|Do_(nl$^p9e$=t4O=ZXc?u0K zE?H;z9{e2h=;f^CHqmNmxvD{gs&fOLZ8bFR0k%lk1O?^V8VgM0c5?*|JF$Tgmz89CRpD}nb?18-a=;~TJnWWn#|5NrdFKo^l-VVvq=DOA8B&u}e-)Gt#B+LZC316e?w8Gf!u-M7N2Dm^~>zvelL>{ zu{K<2zI~>=e&k)7ai+f$yU$54;C5y4I6VuyTmgM=FnXA6yhonGYOE{&n0@%o^t)f8 z3wBD<3^*&X6Z>=JEZkC7FPfORG~UfvJ~L6EPbyhtL8W>MH9z`>th~H2v@rd7a#5#a z`k`jU9V$@Wo>S2@BLA3HwfmXK*zUs^!<7T^IO|T*4)r@33T<+t?h1xAo(ao@8y<`?Uilm|v?~Iz^oP z&7SD9w0=)+RGEG{*Q+x!9p^LBaYbo?#2Ke@!n;qekhIXFHJ+7g=F;P>D(sq&rR6|& z>Q0Gt&0r)Do=*hbEH9;-DK2e(%ySh=&sCuF3<37$-TTB+aH)}9H&o3w8J|pRQ9IX# zS0p!KwL(Mk`7f%QbI#T_#qvuoyoAhWt6Q7E90t(u{=&r_+qdgnxsr5ix+!r|88#sm z$W;{??M;6wrd`@C&imO_le%<;9a_A@9m%2 z79&Bh0~%=Q|oF6Az8CLh;ck_?xvVln zE@)|SUZHH>0i#q6pz@72YgHnw`?qo{UM{`c68@7y2M3`mzX!e`Ar4?PA3*eojxrcG zM;t-qf^up(P64DZRFSI3Z?r1nfp}bSsKmQ5OQ|{909k{V#Qfv(_#SD^iL@j}GFAHz_s<)-SM#Ksb6?WIS?mrX@H5-$-2*yj7>hnk?FqqP~xceA1i zI`(|ChAjJ`V)A&)+^#R5zmduV%klzQew> z8Dd62?P+3T^9*K%d)?|BV0YiM+#pvT$6rK!uGuj6D8bmb(3qlFJh%U`ik}I?%Vc#z z0vD{hS2I=*vv`7&^;V5%ld7B6_l3Htv`zfPvAa%FvyyH^B~#bN*|k=_h{V}~GJmcU zXO;cn5Paja1iW#mqiAw|nQ2%gSMXN#A%G$eHY%1fp5*B{XIy9X z-;wfvmm{!~cA4?}?87$W?Zbh)QZufvUS@=U;o@tSE8ee4-xo=-GW=F9FeEyTBVGP; z|IRIslFIi)sr8RU-u$L^5PtjRa^jzB(qC#w$_d?df9>BBPVj&D1-|m3!FTeGC-l$; zJbaO6XxQpAAJ_H2SpS~&M?zor|MI&hpI_)O2hm;-?y^1I{1W*rl*f(8E&wm8O-B18 zPY>wjmfs2G{?24;#t85eL&@LDFvsb%mx=XwnCcLM1jhQ&M zRLVCwB>3-N!B4_gm|#2iC%7&mL`k#xbwZ`;qZ5p{fCcZgY2`RUJHRCFZrm135%#k54)>%{RXhTg0 zRpxKR+Xu7P%WJ;L$Gt8cf7+>-MiFFmg^BKWA!j?;GZHWv*XNS$%QY`KA2b?L#9wzI z9GYG$4wYkamkP=pES)UU%qTm^G~9W*B}g+S?$LAhaw}o~o<}svEtp}iijHyO29t87 zK?0j02}k1PvLra;404GOM^y|~E)mdw0b4`12U^-H#2*3G8U)YP=cA5i9MsP&dJOT$ zq`i`0Enol}IDqG$kWE6Q*X5}K((OL$*TAy)@Qvu${5k*zlV6Jz=$dd6 zxEsKDhAgQ~r=RWLUGX>2Inn0^rK_+n%x+5TkGfy+)#5^=&E*B=xg*-4e8V2fAA)h$P*;E5#Zshz2y~D9tA}o$*@Z7}&xy0eLIZyETVvAqN z_LtKP58qo$828VyVqJqpCnBfb$`X=iKH>MOUZ^s1akp_I@k@wEk~~kaTSxJ6c-Ltd~>I%yF`(Aj<3MLu7TvzIf%n+z-juCWLwDpThRAyri#y8*@ zG3;W^_i^^jAoAiZ22sPKHXu^Ran~iJ}vgZ^z>nAzD%2N{4%|DR4YAxor zt!T~|)6i}p<69xOdk!THBG420PXB^s=eTF*YD^>Vp6DWkyrZH0i^+~nRVy;fh_qM7H0d^Kk1p! zH}qZTei*a%RWphxP+8Ngl3+U|6qDo5Y17L}cpa2BYR?vP+VlmKWMcoc#GPfX?1i~n zwBi?-73DdSgqui#RaaW!EvEq-69lG(PvMd@0Tj=gIRRmcNVIy4Km!wy5TGVu;m?t5 z(%OHrEj0wVo++ahd4JvNdd7@xGoc^Nt*@o(Jn>pMrUh3(4YZ;^NEz3wvq*bO$85=J zlliJS!lmb)FZ3SkGdQfdWMHgDd%O%@QT~k!P)05q5;Xd}RB;76!YZg8Rf*N!aB&WP zVr|kD@t~4mwyuWBrVv9uM=SzU9b|uLy#z}K69m8S1ExuA@o<=GHMn~_l^H`2>|Q{Q zKKc{6imCF%LXyNdE#m7kZw2YxN6fassv+14?*?dn5A64@E_Ci74h9IhGCr8^foe6@ zq^}W2DUD^1(=nQtayQpt%!}i>w@S1${x%~#+GAYtsz0}KRo@1;GCI;f-8C0)f}Jx= zGbwHE^dT<$MY7|njaR}2qPi5LF|Z5^&6)8F=$ z-@swqi$^^rI%4$oYtyh|=CD)CEXeRAA*fBDG5IFi3WFv!=~~UCE;g@zRvG$~nY6|+t4$tDK+H6Vk$=fddfqKWp55>f+c2gp z;V2j7r^Iwskh>^o+HC+L6ALy0vU8ePCcbiSy!jN$hF7a}mL+D2<4`yl?6fFRRG`n* zOr#NRJsxrAN?mTC7ScWSi-M+g% zv|#Yyt$@-c;0ar5D2}gW8?kSb35T^rqUb_*@ z=rSNqj``Mw(`qJI7Pl*p-LgB0m8X;Feq0ZleN_O~cnZz0SpOsL|%&Aev zynC^+&Q7_(N||Z3Qo*U9?%~$*MSj`@cmJz1?prf!yiwB9wlamswN9$iIn z12j>~FWIR!Y?Ufro3g-Uc!~W`5B!{+<~nzWFK@vtYheoRrw>kjDotMc_KI9?a~lqv z#tZ}K(kb8&#jjkKoUbaA<2uacjSq~ZxDc$tx(ujlqQDPdSy=(<>0vN#yOS;7yZTFF za}n2(s{%F6y$iA zv0d{qqhm`QhHB>wvBy&0zTE^?z+Vs&2y@$|##3bXvp~ubN58<+_x8%mfHvpXPyMMn zQ^b&vkeX!O5FIF0HBdU7X>bQ!`hGw^Y@jNOE*^wEl&%kr4OH$jA0SB$*(e)R3W`!2U68Xym=!F>&%Y|cs2}m)s|Ma zmSaD4`E3uQ+9~>&2Yhs-<`gHhh4ZF?j2#51V-T>UP+n+@`jQR$|6`tH0C29t?gN$K zIG?dtz|?uQo<_QhKjr}_!ar8=6bOrLp}h+MK8H3ckwf5Wv$v)Oy|{fta0j99NCtqk zmDIE!Y(FoQxTPY)u4A%srCYcy_PFjgR zI3K7gCpzN#IGjIV&e5yvEyL9 z26RZeISZDy3UGknX+SuT=}8<(47Te~GgG2PD%?vOQW%Z7MlZ_epRq2R`kApkcLd%^ z@zc+EfUn`DhLyw>s!<&6AfQXHfl{ptv3egDp(>IZwj1VN4n^lEy;!<8Zqp?xF z4;6AaX{$clvy>btB|-HBX|{GJ(}G$C+tsIlT=%d79vz|-sW1!rmfvvt^L%|%x*^S< z4?9`VKYU}8A|)o6A66#%c*!ivy*%9BuXd}X?78~+&`hcsIle2fX;|g!2!>cBQJsN% z7EFv1R9ZVK<8Qvgn>$5b#vi<>nprOKFy0?)scOS+=$21eluu{D(j^E!(vTM~_PBz7 zax0`Inj(NQ&9e97MsLDvI>u-?gJ*H973yPCDQ{9>GJ>19jol!}CLY=S#U*JQh+&HKBl+@L)=`i?sNjbBqtB2RhYBZ;wsL zs;$W=qN)+~C$5;RihK!+_w{VCf$G>%6fn@aRGwq!O5d=(MWZZ}V4>RUZyiq=AF9zO zu|cX71h`S&&yNCIOIA2KpR^iNU`+K*2~KQM-WT1MLEly8TGzk|i*#3wqd-B(x(f5t z(5D_JUSMCFd@?_%Sm|AIt>J|N&gs7{P>a)%@?L6cY@^Xn?|bTJRvc$4OSa1|1xz;* ztR<74H}gy2CFvcOB+8hipt{EkihEb|d7r4TyCYB_#a`W=yn|%|SuhCZoM7N^>cA5A z@Ki~j#U)TMvhVEp8+=*TD<^x2%@RRdZ&=Xju@Ul&SiJx07@*AuqWF4_BZE1MuLF0i zP~Z<;1*8sz3x0xp)^=mG>w(1U^FWFEL1)2sgdch~9aGcYauxGty)Ye)R3MZ=4mgwG zaM+QNa$6O|8W7i`2`4HC2UwO}dp6Lrrvv{@#z`rO8(+{#J5MTvr9-w1sEv7*qj1upW z3>U8W+uixdX@c?)k zu#ZF*umHPQeKL-Sjt+nMTjE_%GQc(2!P!qQhM-f+IOv8H;8!c$4u<}zNVvgyA) zrhoDw|JQSheIx0+qWfGIOx{^VC5%TEgt5}+U*_{~kFDTvSRev;bb*Ld2S!>nGpN)3 zK4w;-j0&37CXpjwZFBilPkI?L+YyH~}&ZsxbS z4<``}kV4?S7J?18!fg1NtFln!)w(-P%w>cpYWd8Uc>ZByT$O@`54Kj zcafs7Cj#S6?z3P?KmH8DcvqBQ3BycSonRE>d>Z}})p$=5w~a^VE~V+7PGihCaF{Z9 zi|4XZTK0VjSrF$hS|G?8$5xuI?d|Z)WS?Icq!)+%xk5TCg*jbgx6VY#TfA7jcFV}6 z2PgZQP5EdaUGzh@Gc5A%HE-h1=d*U{tL<4<@<;6|1%UtrbV^k)GROmyYAZ_2ExjnV zt7<}NeE(`|?&O8p<>Qqu(?&0yvwo)4QgvAu6G);ilft-<@~4a|i~_`d=LU1mTdcBjxTAM@M`;RBrp(xJz-#vu+PlNb zsn`9j%r&>MF##L)*`#*)3`R6pI&^8rQYBUB+lga=f|%iIVs{}G78S@s2{zdqFIO0m zOISm_#-pY|ndTBVF|x^&Ojp;*X(I;rN%<(@Evan5auvs%U~iSl9?c~}@9HscLj0s7 z@E{w!iq}4=kXma(^hrQ*{s#&5fc*oFf&@C^vq@uP8x@}6Y5^C`RCMEf9cP~xEKeH~ zFdCg2a|gk47(d=JgR8-BI4=7p;5x4O6M6JR-8)E&S-W- zLw}H(XXh8Cm2Fns?(Xj0J{pQ510$xiAB6(_=EGNqCT7RKWvO~jK875-WMHbH2zR&s z>Sn*nHkkT2IN-G!{CM!Y&F)$-%94u1txh0f7!ni1x@!oOS=HcOcC2R&1iP(Zt~siX zBA!rG64aH;U;_ti)UR+|qKx$kCQxf?K?oa+xD_0~0g$;0Ux76G^DH2ye)zi|h>6dj zL~x1@$t)x1E$}02#q;mmr*HT7Zl7A{ebIbm4XCwc-@^w==be`zihN|@KlV+J$okSb=O)P9m_Q*J9 zv0QqBVh~XcI3h2Z5i5Cj$JDQSbC5(PwN7GZioy6V2)dm=KJYJro1gw(ett9}11noE zmdJ#cvtQl!FX)!1uG^gVI{ZdYRcRs8Xei&1MfqU=Ujt@+Nc z4p_#~-TmG^b;LfyWGJx?M=W=THQr)<(@n#K^B2(_G!AmZ=Wp9S^Z$kh?BIaW=NjLOxL!z4M*EjW(v|5$?q9KydFKyy7TNfuc@iDA3-}Z zy(|_Dnp66i`Sl4q(=Z5S!1_)|z*=Ysmj9NYxRu)Hez>|WW%M0NSe}Vt{Qc05ZjGtq z&*^KR-?3clxcev$ze*E)$nVKbtX3@>|BbTD9+5Jt zg6+!N$ho_jYSlBP;xC`#xdODpx-`99#S|^E2XACSQbQv}MSW?1NaUQog2$?ayh%fQ zP{NORJ=-67JB&0)v=c^*H@0P1IAU(a=M*?KT+E$#Z?2r->@uuXzIrw^#M+tcgNsfH z#7zPH-D|Q_*}aU_d&6JAB`xeuK+eKR#b2&V-5EG=Ifi~BP zK@NY;<+Lq02n`zV2N`rQ3hD-Xq6?7E7YrOZAcjKAHUtx7Ezs?r!UBDr)k>-#k-n7% z!`Y9Ddy3F^nWGaAL3hBIug4{TE)+21Do|I^fbDq*gAsv~9;^m>KJEIC>(b~q_QF8! z3wQz00R2H2&-um@SfMV1eB%*Zn`mZ)7o+(Rlh4Yk&DzoF-rnAhrsUK8ERU{>j;Okz z_Cza*2PRhub&ma-62=F57dN1gCA6MF+O*sKl|n%IIIj_NF!wet1KOL5Psnq^s^J|_ z{N0a(+-3?sd06YFmB-gR;fuZM0$%e+$65Y}<}Sh*nbhn)02u8K4aRS6KVT1_w*=nX zL^KCxkJ&!?Hp7vCu}G?tS3W?7;>~5$yVa;tNlI3h8bt-xz*vAZ~304yMMaa^8|^0~KCc z05X>aXe<0zmbtTZ@3%TButErd{AEs<%d5aj~S%zP1b2pqqh9z)5*h5F{ zu$`!2Sh-ZzA3`RKcWsrQ+)_IKKr2mSt9nA|Nn++*MDDx{m*2HF`M#C>RK3ss%$SMr z$Wn)+QI)2iwv(mpt1dp)dKMk1+F9bB9n76lDZ;Feg7Q=Rf3gT6@yxxdYvmTI=NDz) z=(XTtBV9egHwCWiDmaspiM@$8`(>OOp9=AN6MpWR`X;U`)}`vSW~oS4y-yqp;Vs)} z)Ldlg_A->*#E29dr|@`msz1c$rgVkNu*E|P_6DWPoBBMQD*Z;f&|PTQ0t)RzGv#wF z=Brw^F%6Mz?pf};6)@sWxg7rg4S|U>&_KOt2+h2utX{WAc59kXVxRx^cxKxCu7P;> z-`1)&jIlb8#lS|{tF6(-Zq#oa@qsR6AqDo-HKA(SJ)@C#jRt``5A0z^ETQV<;D>*B!p(xvD?gxHqa0rrY)^DC;&YKk zWV^i8;cFG|vW#?BwBubxvCOx%HQ8toY;4uWEMgu4Og0%;(nz4DJ8x{6yr-}yPyTbm z)@v@PB3>%2>MrWMXdFT&UC4GsKHR{jfl<)ju5=wB%U)=oU8v>MjB$T2V$v-H1M5&& zBvZ&T!QPu4;p+t3P0(Yn2aAEwtp=`QyV_5duI-_-wm|z1KsVj`9RdDd%QI!O-+_%? z_wQubyV!^2b|VveXKA{>n=1cQBz2s$+iNtEk(EGdFfR73Z=Q?y3pb0_n+Vo(>M}T| zwjh_Q0ZvwOWm5`>?3EI(p|#FTruxe1(xKVCm)rLSy0Fmh0>>06fvDwxRbTmdKU^SB zP$@!V8wl>6zj*P-z(|iY40T#y-YDB+WNfSle~uWP$Q~HEA0SYxNuwEP8~`gplG?M; z3LvWji=YZxk5)iZM+KC^;W6Z-6dd54pX-Xf>Q1BKOsY5+4XNWikjK?~X=WegAMp8)muOXIGzS zi6Tn_s4~D~%r&b;oMdS*%^L(_Phj<{7jRy8!k( z1q5vvPF*@Jtp?#;u0o9eFPr%XU=i$fn1p^H_+TItC78hj(Y**EP1n};A`@G{!q8S@ z7>(lK?}FI4^pcLd4s!;fR;eUhoOiccV}do1SEu^Q_|d@v@KZpY@V%XIRD^!gUdg)v z={#r3LgstI`a^mJRDS{cb)r0d z&2uy9-pv;-RgBy7yhoKU#$gpaa~v`lmaAvgV;yX}`a-aP%#tn51 z?tR|?rauXKh6Ok~l3*}_rbZ78+v+J>l!>0=>>>fYIMc;Igu@vXbkW_bg7bGLyBL{6 zy0A)HKZ+sXE3Kp5a)F_fE7BKbyeXEYlwn<~wNe2xjI-2IiweaAsO*>ir?S(cP-XWf zNI;BP2ilT;#cdd7Th{-CB>VF-X+QcXsdSMnm6F@Sun4*D$4&+UZX>fBQ6Zs?X|POFx z5)h#}A>{cAbi8ez*nl?PZl5iua;&1_N+=>?!=c%?GU#$SEEh&}w6NJ+%>?n=tPlnl z*P-~CrMxxzmv3tr@4x53rI?9&Ne5rgR$czQbv)44yPi=H>B&I>y%Qp~Bl!-zvU;vUPXaGSj#m(ZR*j8udJ{Y?jNGzKWpscR!+t04uyJo0fP zpYy077($j^u%VVganB$dA2!CX@^X|AJW5%?odmc+3&^)hCoQ5d9S8W8RvR+BU8&Q( zjOGSq(xHX^oOQS`T5>$yIS`263+nQdRti3u|3QW=w>yDiVI9Blmy_VLn#njkAX_FC zzMehP-G%a*c>lodd+wrhM{1FU#=tdvd-FnKX3OV3MXSLW z|0|ZNy(-%rE47lITd<%5^gL`V2W!NlHkd zHFELD3xnrTQP-sPY)Pq{L3eRuef9`agVB^5I@RLoM*>?kB9i-n)%OIzv3BZ=h0=dC zJ)gc^kCL=ByW_u!w)n$7-Huq zl;6WWb`KxYNKfcmK2OtRP>c_eF)CjSCnNZbbA9fZiyt7bjPgXOJpj;MGO6~>)8eCZ zlA1@xS#}inb2iKIho~j7dKH@_DvLuSRni(TkHW1MN`V8$xC79dl(e++DEUP?)hR`m zsIX~=tbf7!jJN+`P?(>Fl&7<0LKjd;keE76@b1zM%?3inOd4S7R40VnQDU@B=$p0!P2}-GXR)FDZ-h;; ziEH?H(n;4oRmS!I;Q|bLKYUO5M|fdR)bh~ZMw4+z*gG|_om82FD)b^~0rGOnLUS06 zJV)QpH_s?4;Fz`d@cN0HV#YdtBZPGm*K zTf&pbO?^h5Ki}C+-YXq?N~S%1)Z*@eqo2?$l0U#_imCWqubj7B!_JZlXH{SRt%{AG zBkPK-PAvJ}(0!Jsxs2N$^PERZiS_aSm8FQNkpDZMG4L>QnqKnl+xAFwH-fE!@_!2Q zkjb{Ry~HNO=ztEc270Lo7$pIY$}PJlwG|eQD8ljw5f766^as%2Y*5N@hJi*KBDrJN zGN^of#I;?IzHrs%biP`q9?Mj+6s80m%>5#Cb-0)oxJBDVI@k5V*XkYktMlJSZqQCO zH2=7_BG&5pmVPr_^ULyC&-m^EE|oi;RZbXr*cit$uUG8%Irvb=q-8path8sZp`Rj6U6?Uu{2zx? zM&=)pZrg9A4O2ZolgcMI>gpEku#Ji-eQdRyDm-MhM_Qy#-ssf{M=oep)tdX1qY*L) z{DrSjtkG(#|KJ;uwG~)WUjda7x<()Kq+1u|kZtMDpamL)@2Z9sa)v}=cPATQv@0ye z$}-?$aKq2|&{M6s@=S*PK~ayQF96o+$`3`N2H=YzB@!I;h?v2_`c4TRTiSE-7pKa6 zU|S^gmBYvc3e3vG0RV)Qrj6@PgGdVl?VU-X-gQsR6Upu0tOUPrOz`(a-S{y;ZBLU9uf z$niXvy!3(DT3!<0&8b%~n z&+1gzD(3mlEGq9KK9^z+&dhGT$d-Qif`4MZN;5%E5kC2)yOWBBeq>{w;d@7M!Lxk8 z4=m^X=&w?yl)cv7$DR7qJL}iD9`T@u#mb%UB*}ZBedWimQ!L{?<@Vqz8tY`*aN930 zMp!Q25OVA~x0>;E?b9f8&6k$gBsW!`q&7O}6xZ{t#@S0JBKJ9cip_gIWm(>fpB%q-uz;c?ka$CrlhU&-@6t@Df-Ba3QV%FmTXv;XJ6JWVaqb zqy|MNK{TfTGJ1VH+Mg)`lt{p3zr%G0GsZE}r$>fPPW7VuZk7Yiqk}M{BKN@neiZ*! zJn(QwGMSM`;%lC*QN_xwUpYJEiaFrSs)MWN!Wau4^)e!(!ViJQ^;oXzgGr*H2sj$; zAs2XPuk5l9XQil7M0>r`*F1lo z!rV<|V|#2(nAv=#Qxc{=cTI*1ZOg;L&sR4RvM?6xzWE-f%cwBe?1@Ng7#SNW!BXx8 z9l^3wROLM{;kh#Hw%^1#Fy7*dJ^zt3S-cRz5RN9eQ#(N{g>kA_IFAHWDEqJR<7l*S z>4dRI_N_e?ikmo)Iu-?O0J{RTt7~I1i}pbak+!8CnxL!%`$o_PaB!>}ydsJ&EYx+t z@da@CJfLN8xDnspDmSXD`NF++jy6zRsckYRQTB?Vg9*A&H}URcg5;23h~1gTET!&# zMW5ZFJw6de7{P0pvD%XO#9DK6{GT*+Ew~zQF!uF(PKUcMHNOG68ze|3f}#jrHlmMR zl>X3uoH*UyU2~(4G=r1sth8P@oy(ZC4_AMJbYuXjL0Y8{igrL5z1w^~$q_Y^8l9EB z28-qzaG#xi?f*C@W7I>wL&T2S^WDH~{&TJV{HxOOvodX^8EUgVFPCPiK%g!AARb7M z3M_MVIZySI9=_R!PukTUh>IvPjZ>jZwMU6J;En+&^iB>X81WHe0Blnm-wBk! zv4I15b-<}13>_KvT?AC+0T_&Qfc*woK>oPA7vjXhEgi`72YCNz!!O{Y1j3YyfXLJE z;ArKERvM%PbtSOnfTmyz007qLFo7uzb~RhT*m_YqJ}tq32D_MHxQ%pRq4D8r&32S; z4};}<*2d33dVc_-y{Hv@CZXf5bov^^P@!Ne8?eZ0rC?pYY(~Vuo?OeUeQ+;s7TpB@ zO^w=hili#Bb$d6ngYl1pL*D$R=Oj4GdN#!U1rvYi091BeB93VSGv>E=Reli8#7vsJ zXJ!3NnzyR~+X#qBex|VHT*Jk8gosB{`7C61i2z+t=Au0k48*CuN^T|#?r=QRgX1c= zfdqgjjf90@T%zCjqKyI{LJEA>Izj_U z(gyy+VT$88vEh#A%>569m`KIU15xf5YK zH`v)j$U+=U1MT9(L=MO(*Ztglii*~H{eLc|tl~&%H!X?c4H~yy6)chTvalIZxb?L>2-tb#u z2M;^9Zg%iiC|=c`Nc(1FNl&8->a%S8&yTXbm{(w226neC^bUhSV6Hc)$=#)dX+Z+rW@+B&aVXR3`=mCo&nN8O@z4Kcj(%$;{jiP z0&jZ6>JfolULP}G-O!lQmWvc{?#LgOCS$KDHB^=0zB$uMlWX+!Sy3z<)_Gs`<)Fw!Qvg!#fE_4UjuY$>^pzSwez@}gaXz% zfE&On7=iw%4I^o+9R;82R5pQBm9L&ve)dkiRKOpHXV1F}y(w0`!#5fno zUb3#dMvsh)3S{U!$^0eNW7kzUYdE3I*U$VUH~cfe&`E}A+MRn8Yfc)Snca9qKL4iV zLjj)%nmw@z^UGcJK6@x51M_M*p?H|%s+#wzOHLvWowH-lN=gfp#ixJHlZZ`~V=e--Lr47bwpCUdn=>D?X^>ZzJR3*dA zhldhkyy(o`To$UMC%L`F6y>L$w(-XL#l@wJRhvuFTAWulI*@z)cg-wG#826|%%3~m zhK!&gOjT|EyEar2@KE62aXuFt3c~fv>-$zv`a&-@1V#xWzkDb{u!)fUSr6D+I9Q*e z`ng}l1N_$uZE1jiY=`&%*o+#v^z<{`K9ePT zp_bHu6vw6goFdZXBPD$qo8vcdkWE+F3h6YrS)iFz0oED}fY}gq8eh=)0G+wR8mu=y z3wifGfKaKbE^F+yxttdpH=msCV7Q?oM~1uY8T9)6u(MWiDyNL>z4>j>TiIZz0nW1LdZ9^OHI73OBCrrqB;Ea}rceU+o4) zwHhR^qH2zqI!!bdjL^%V|961|1l?Rd;DY1XETHyP!`+M4Qb3E7bmVZ2K8 z6tU3=@+Yj2g9X}tgUamK8Wib&_&KsM`92%26R%8}GHtd;1}Z(e8TcZt(|!8K$wT1< z9P;vJD~iY@e?RDRu5|N9v)t!4+_c#nrRLyE)iF-@8Ch(1Ueqnjt&%HtHQ%f#S3jm3 zo$JOtTmx*$Kwvc-M5!&v_hGc+yqDyoER2G(QbS7mO7aM)(@`c&@53-RED%3HATxAu z$j?3+p# zELff9zM?D_ndTFdHlbzJXBhyw5L$YI9&H*$PV!9{=6K9E->&7eip;mS;~k1v8|z1( zKV2_waSQpG7z_VbjU?p-2#&lpTtZ3E2Ja9vvpujy*xUhb_@cg2+78|p<%t80p_7uG zMvuXDWe>a=ALn^=ZWOQmalaSk9|ysNuVc5D;{w?leIw{F*-;uRss8tiSa-l82SN7G zG>QSI7jy>Z^E|x#w!@vrIl&Q1*7hnji>EE({;=WbF%QFWLWF*J2ol_vss_ zGaZE1T4dDIhRVoZLOaNEQYEgGfM9ZmyYkA5hLCbn$TJbyEJ<2i56xcfZ!}ZB-UNEwXw5j&w?w{6NNCzt5_+R0FIxk^Pf>Zo)hOlAM9cl zuO(Tm8BK;_ym8M1+G#VKT5HcN(22@!2rjeQ_y~36_${l6vzI3v7uHTPGPqbvm63v|~d~(Q3HmWx!KYutMYR@5{(09tgznU3*~&*$rcd z*voo~fjhJaA#k6C0G}v&;t`LQ$J7r~(9cP&I(NEDLl%)7v`-SiC#wNhJ}K0+=rQH{ zmVUTaFPfjk^5w6AIgKm;h=-v;m4k+g-)b$-WKQm}udsv3lKET{G!B(8Ylyu(dQlAB zFErSShOl92b`@9}TAZSAkW0Wi#_U}@B9cOad+-Igl#}NBgP~P;c_2o=MS*D%DhoVg zn3#iMADH;eFrDQ(k~m3$!}HkJL6>=DaBLd6E6(^`#XXdnl@rXm2P)qoC`9~PoUTLF z+ghQ#Dc~UqVnq6mNgU9XTfy0|AZ-~WeE~oeUGK3-chr|sSQn6_3G%{g&2yZ)^L4>y zpl5NR4KbvVqz3uciAhT8!PeY{(a&azbh9}XR-lY^x3V#?t!k>*>r#a0TV^r=jg|s2 z>FbY_2JJmTh6!FD?8#c+U0=T8-=?`%1TW&0A2{f}givWmCyi5mq#&Y9#pvX=li``J z4Zq*`E4T8B8ikr?`s4{Hin}oO^YLGs(;DUTVjSj+vA>vqE$A*Vt(CJyiFRUabH zN55+>3wlSkW~l|YiFCuXJgY;<9xArQFaNL)4}t;7t{l)uWZza$P6Wci5FB$nxfP4A zueZMoMcrmH*`S|y?SQIM^9cvKRgM1v8}$fvD^E7Gk4MpGP6KUq^aS@Px8-o5tg$6t zihZ=K#g?*t@SE|^LVnq)vB6$Hk~8hnQ@VhN!-bW>3(TZ0@eWFcSKKnxBxzWk%ccZ6 z9QS$6rvD|&%v-Y&9m*{;yL&*yayO2eJY>eL_GI7YrjrYs~Zx%{9wdf**{G)v~$eVu0-*SzVfy z2l|DSFrMKmT78x|+nN$M-cQ7PfJVVM*9LHkK`xcaK+i~qV;fx+rgqsIF(b~j zWjt}zK^hEz^?a)_xXvEqm^r4a_k3xLNhHovMT?EUk00%Ks{`y;1f~g z6Cno%E+LfOuzu8gMb%V$FAb|YBIX0*!)=jBfp7*-|8SoOW#$c}_nAKvR=)(oB4e=B z*90r?ukAh&rmc%1maYVMqi3>?S!#7oec@#yH#;l)D84>MRSiB#h`Ni8X@?wBU#XB= zMs#Z-oVF*|MbDg91>7ylgrl2se`Qfo2?Ks~o_SjTR@#~mUk>ZSii9myBe&}fU}sa} zdVhMhMp|@uMv5%nVJ`d2=GfNHe?KdjR$HSkKV5CS{Yyc}1(~bDuwt~s#^Ilbl4S^k zIAV~1@pP>!W{lgyZ*b-o=a;q0w~@>pIh8eL(#MWve+$`*&hl&j{BxQe9~&D4y}%H3 zNI1dyoinrViaM47g{_O)`jCU-&=djgl7%FV4D(DbLU?ZBE5@(uoYP8IMj*Ic^i zMD_9cPT)jFPcSgwv6DXsfGVohz_HWjd;n!V1=cHJtEQKZq%vRajE-~g0w1$8%%m~h zF-430_x|!Zlbkg4Zo8^ic5s0TrDo=hjWqjP^VYZ#ZUu|gSsml6l-3&<<~2K9f!%>j zpQxJ6Sw2C{vT>_t4*-!Nn5Cix6ZY+jg}4w~X3|LFtqP9%(b>blF4nlJvRq(;iBb_= zpopT_XoychRBo`MN@nyzd*BL2hbZY7twkyx^qg``Xb4){t%N)MhF zGug&{7e`^=M15BFR8(+59vK#FU$B%(dZfw-&)UT_G^?p-=>~MeTiRfmXBR{f3nuNmLlmueSa6%ASpa#OXP6# zPaLUgc8Ald!S7jSB!ELs$+8KTYH}}F_#Ab#O}VM}zZ@Z@%;(YurgrEgP7NXVhj3wa z33DHF?Z2UnKIa5P zFjufllwuH zr6iAO-kRj~e#X6p4-mcWP8BiMc(1GBdj(ZJ*ZgAIy~LE7d5c%877R+~_LUvJS#e`A zVkN51e}wa&zUnFx^$2FF=Vjomb;JKE2D`>-k%CYOa=wPlap%(}VSpxNea&5Xej$DN zYd6{DVI(u;?m~7OSmZqiLgLB0Y9ih~0fw6GB0 z%7F}1LDc_B{odd3<|a>boch0Q5mUDFp8aMZUk;E;FfvhvC`{nL@Hcw=^`EsPJ}V(h z%qxlVmc4uPv13~^3A?WiZ@z!v#6O3Cj|`I4qH;FM6awvz%kKeA6eWlxP!4NeNn^GW zTQk`mfFQZeS2vU+BR%9rigu7>Xp+zif!;+4Y$4ySiadC&7Z$gHs-^Q7_|aPcx`J>D zGysGG$uDZ9%uqzh?Zc#FIS^llq1Q**XaG67wkT7SoU(wZFzB)$h%Uf24*Mk0t~hh| z(ae$uwWM$H(Ob;!|4bBrRAOI4by*J^hN^~W#~>ZQ3~kj*l1IC9(^N8$2`(|xw%dmv z;m*q7-u2&y%>a^!cu!glbmL zdg)ME(BY@89-k=(TCW1iKL+TJ<9_y|8!}Qv$iM|M#gXVomcqId;kI$(1(t$E!`$ZP z<}?63l3~16)@R+GuDZ5f!4 zvc_2~b3%B<%(ZxGDxpJyaDlNeSKK0MIsKM;)+BLfj$Qt1yY4w9R^#}Ui-rkD>T-Q9 zm5*nZ`5qAA-5@DH+GTldC9R+F;v(r~&GK1g+Va0Gg`Q&XLP#G|W5zdjlG~g8#{fCY zGdW8`@RoP4-wRpAOoA4ervgbC7A#3HxgzHGb5ZT&>4y2o1@b%(@%@<05j)3G{yqo=z4!;g?!J}ySPG#Z(f%m1MM2w>A@0N3_;Wr6<*&Fo%)(@KFIzJ z6V%Y&?KAjE+*#aN1(yic;`;5{PKTX zujD}AWYj5g6PsR~>+2+jYDK(`6;>zd7AF2{IPPeIyDBau?H$WxA8-HYc<}7*V$b^* zEN~Y-As`1^=Y6P>=_Oy&&ZIX<~A@BIQjM8GI4EH zBIH)@O6RCzT!MC3&DlQ7E#7w4`kDd?%%)hDHWwcg%D$@R77c^3{%$b6sgEaq^wC&kr}&) zETM&LBU&gUdz59e?}mg_DBH-`$I>unp6lKH{XXY+{>wSfbD!hf+GjrV`CRYodR?#O zf0PRP&o6x+b# zYLNAcxUqoMO2Wyc4HyFEClIT3fzt%gDw0s5BN?!o@UrQ5Kzw<2&~X!_k3T^CFQ@~k zZh&AJu>?@65tPhI=nfm!ABLboa7jd4V&swt@S-d@vcj>bg>*8`iWe@q2?OSea<7}n z8VQho0BY?k&~&0l`n6%wXb~5tsw!};2!^`@1y^;`>g-WffxGA*{#5aF&#wUVf_)8I1*r!mYcIZ*Kd-)x`ZC_CVFFd8l=}97#I))# za1yyNZ5-61=Af#a3Gwm8?_>df8U8Q)vb~@s_aZmv5f86CL$r9w`^TKhQ~H@X>u%)~ z-JhKqABx@t3tbt1SlluMSWB9TIwA~$ME53Sd#1vg0N^oI4DnJB6sF_0qM+rKLl~Te z=XgQPTnv0(Cu_%J=OGE3;4=qPZ#irjk#Z3&alm?0AD*BWzFZI>|KaA`?fqpU%;NgW z%LHvQ-xW5ydXvb@^n<#``2_i7@B8gf|9ZxZx=ulJY)?$Gl8^3c<1>U+uU1(^<)(i+ zyH{FT_ld~IK)%3@yH74A^di3jK{ALxk*L=Bpz!sEwBlH*uSY0W<*j5aP& zxl2@Z-sLIB4G2q$o;JDx0;1Cd?>5hem)+RIS<8hNORB`PLX8r|lK)KTlgZg*AHr|j zlb2IicQY0WsC2#(BF~;t0hdb-ocIMx!t|riu$7{sIZ>|UiS6pclckcytaB#5XE+*B z9LasAyi-B;!H)E2shqlN+=)q65uQE_AxkKP5lMW~$fSl`w-n>h?uK6I zf=~xG(|fPNldzOx?+@u%(ejYeLysG_ z1~aq!IXoLOSwbwY$3jQu7S%Hbc%y0FVTn!--W#peW_kAT#;KY3w1Y|heH zXYlR^i!Vn8>VMx@kaU5)ryH3-V+wkc*EsbM7Fz=2~n7!9Af+*{0h_{2E?7Ew@@m05^q+Q*|Lvl-Wvu%p&^4q+O5&4RSOH+Ind1 zvsMSCE(24}ckTYyT+*D5lZC8V0aa%@TXH zGpoPK*jJx9;2(P1t1XW@yC@{*y3?6M^s!pitC@SH??Ye4T}|8S1F4V#mn>f1#L7va z+WoTO)@hq+8iWwt>+8xy3ND-!DE)4ds8<`R7IDZ$rB5M4%J!-6`c<;7ZyYWKnds*x zTsq65+%3+1d`D+&yE1K4CimF}r(PY}k`B{WB$X~IJ9n+S?yW%kd{R19FiABgF?G3h zwyN%fUuT&I(E97)xz*r`L@>uY@y^)#+{dK;UB0!Aqx!QPzg?+xKGP}}m2qlM{|=Eo zn$t1uEz@gdW|!+o%8lek++DkFY>aQ=9_7cb4?iWSYQa-ugf-*DAHw^G#Gbd!L zD1>>Z`0M_-1^2OGBa`Lw;!CW%M^)Ix4qTkhcy>BI_u`Km!ls#F6goj|sN~u3Ld1{F z2RtPSTbmin)i)Ln+I(U<<<1A0gwzz8d;b~enl002l$OkG>Pa&lm(!wrpj8GGW;K^6 zH&-?-yuEGX{N;#>#8Xvbqa(ef{vrLn`(nvcA@9q-QyeVzhOYNixNUX*wOZnZ*zE7i zyqO*~eKf|j;PhR0^~vYsPHne0?9~~Du%|^401j))ZXMTz?cuI#os-(;H7bIrRwZ1WhoXKas=uNjQ+vJi}m0Ud_{tuPIu zL{ZO>lapgf%lnqJ(#dM8ZdT8kr8b|X>UW^!+XTeD1MCZp5kF_Woe!sSy4D2{eW%$^ zdb+ClDARkI%DW;JJk9Q(>)#xdiYp%#HQVKDe7|Sx>1S=>G!~Cj?-w5drInX_-79>~ zvnU$yhf>|_f{uLsl^7O8S)SNlY+dsKBUAO|Dj}u9p94nm3w)v zQSrRj6~*K$-M72xEsA4feG!7`#H-f9tn;pI*sTx35`XgA{(9o6Za5`p_)R%=7k8qG z^hS~`bQ$lNdgklXV}FE-lRQxnwrqC#ZJXQ1#K%Vq-Q<`|l40%IrHY5H9@$@ZP%4z> z1dRixadoCviBaI33Z0bs-uo5Xzbx))7`XKTB|So}SSpOy_m}EhT3&O?&doOOzV&Sb zVR17h8*ZXWw@|XWuHnDY-kcX~pqJiU*I>CD1#m+|`B->6Z8iGdcugbuqT9sSoi8OO zhUYC_{+nK2u3xSDpAd8ZEiDf`&a$@m;UG1|1bV0q~#a^ae38X zuztqee6+&{0#fP~z@%5NR>g87e3rzNSUb>kxe5Bvp;v5(1x>kbTUN%AGkWOugR z*cykGuQV6Un60{=m>P@&<@vrFKh!QZ6$q(QqQW-MCp}GP<)}ijtcFp*t#E167=xjX za=yVeR1F~Be#eWsHfv#1<&T)CCCSHrWwG^YGj6VN4-E_Ozg&=!I-v6Q0%`0e<>=b5 z%XN1tvSxG1LE+Qi_F~s}9=$KQ|90;a$voxUex-s*O63jr?|X7>tCB|D)rOmaYJv zw6SwSNA4Z6w3T7r-fVa*;sT10e=13sPB_Uz~MhgP>;a8WOE*a{gQ`vQUEF(Q%%3 z6)1JcLACDdDO+e;N4m1Gn>KAiggT?*tVB5dbZ*^J`8P{(pi7;|ba{=VxXtofu?Qhs zTFsbwq`7OYvp-Jd4-;%G6j=num8axq5n`mR4mFY3NPr?_ckZmYW*j)4-8fVMP%s7q z2Wi)Jd)MJ6v8MP#{HT2g!;%soJH2uXf&2v+<$ET53g)9jtlFIpG|D+?HpgRC-3tx; zJ(L?;n8R@eW&Ypvl}l$gA;aq89?=+1W2>s%lJ4O$CbBaB^5r~$O{8z2G)H+a`T6;N z^V$j67t<*soCf8YlDKJdPrvMone4I5?(DHgl%l%p_@OO2V{eo8i7P)Cc`CJZrq?ou zta?`7TIMW1dTryzua}JSqf)rJV^BtH&8fjZ`xPYIJ#UeS@o*#?@MAm+oC`T^bRO-qvK=6sNwb%K+RtEXfO@jv(f&gL5J!7CGZkLs{zF0D3k({1r+H=A6 zBi6M6mq4&Oq@Bz|6d9%!Q;z2G-$~r5ZDhj|ic=eBSHD?kZA!E!xZ$Ebj{}&J**Xs^ z2ZyrCvD->%zw@XeO$jFMmNgoX$NY{+UhM~h?4Qu6-?zPWHCSEV|5NDg{F$%TWZOkT zjAX|3Y206ywwh~y;2i>GrqM4ESAB!-LFuHbqS@{N9Fr-K zE~Nmq%5uEy*2b;-P>9Vj*x4QDn_em{V`BM;9t?*qrE5`Fxq zRsKw(h?uB>Pwz*w6nVR=_odc60vC*5Kwi*=9Egro55b&DIxV>tq>TH(YYnZKwyNEf zE=;O{PH-Qr9818Wgb$((0SI~su$MICSNr|(iCsNj3b47)LPkNP4m&GK$mwq~BdC(Y{kF)og<~b} z>g)$9`?tGxi*khd?lG_S6Wh+l?Gv9|z0%iBJBy=UT~?37M$eUqEg4LHy!bRypqDFYR40n4KxS>q7Y76{=K_2ZSg|Jwc6FWuz$D^b- znek^dVVB{8oPWH%@BX~9YxgyIXB3-~?-JbXL`T$4-zV42$f>w~V}+fYOo=-}%N_NQ zT?jx4v+E^~ZUGA&Js{~xdHh^~LMu_8?}DUV^6ew1lb3aEdMUX~m5CHvTU+blrnnO) zPGB%7ssSl*MmsZ|%#=PY!jo3<|9a9;;KMKFos*BA`>c27zp_K;;U%Qfw*wmKt{nywaAR+h?I&A^@SBu;?T;~tnN zJh!6ypjZbjt(D;Seh=Ww?z8x$sJqNzXP8#OI%5wgc|VQI;c(lGjg3)GL`7v~bX1fd zG#V?j>7`rLhvf8Xc9<(alB6*-`u3mWqToA_kE)|^afEH4fD=SKT zisjeqgd3^zXhQyyWral=Mc`;0>f61Dldg3+I;45(`5BJ+#uQkU!)ikVG11oHx52>% zV(_MM>FwKB75=!zkK*0fw=|Y{{)Px6+6|llk1i~MQv%XdduWDaRBtxI`Gee93TWRI z`dIH(7|3qJa=<~8L?(hOVzx`4rX3b=4>X|yQWOk2qIGD2_2h9i9I5*qTBX-Z;l45? zOgLbtGXRdEx`5uoioIf7PH<+*tl*k(8F*A)qWOS@O-N*9Enr+Fhg*Ss7YTc)D-el* z5{xiE!TRwyL?MIQ`8^OUAz*6>hum}gU(;XcMIgv&3i1hfkcAFt$%~ku%tiaC0ZsQ* zl}x#cEM2}pa`wEOb14Gkzzb~>Zk$g~cArCqfDOd=9~@mFf)yEu+%k~huBu9hR#-RQ zoyQCM!u#|~=U$(h4v*NuMS%$5l|M>0ieXdS;}c8hJtH}lNP{#Ot)C5)9{|YZG&CgP zgWQpqRQ%@}lwh;N7NMv89AK(GE`N$ZXUWbJyo0ND^-$SV->VY#SifR9)#fR9)j z;=Z7}P&ug7=@mLJch!e7Yo%D6Szy%^U`uyoHkpfpKCB<>hjp1^FTs15f>rUg_p}66 zBuP?(T*gp&vImmJ^Bl9Xl3T1XuT4#rrFr20{Nx$k+Hf0M7I=|Y;ld(OKmFcf{&EFV zw1njdi3%u({Z|i~E|NL3@^3Bd=H!mz6^m0kBGc-ZH*jZWebUT;S@)8`)!<3}}Sq5WzY%LYC%5W7^vJqcyP0 zya^f6muL;?{3~W=&JboouDG*zj`|YRUPiFirDBfR$AV$t&`^a_d^!ov2!zw@nwQNLmeB_Ppbax8>89Y zX&jTpJDAj7AJ5z7b<&{EDTW8o7DDA z@)8eR2+U94?owFR5&z8o2<%kKE89~Uxi!uxEs>g?{axc=adTeyQSwOXb0|$RFz>+z zwE`aHhZKq;a^O`+OP75Ay;M4F$x30YgyQLd8ymJydM9rfX>V3HlXpAJADfR*v|s^1>Uh*0FQm}2Ah{K z$OO0#4D_hZ%!`lV#Ye+K`Wckquqi~p=O1`}|A96kFA{z}7wF*hMBQFTBt*M*{g#Z164graOf{_(@&Gi;(B#m4HR^|uvgM)Xlaf&p-c{{aMJ zH!$LXCG`?WUN5t=qZE9#w6s=#Akx|g?F;e-2j>R#vLwl{(jvUSF4hg^AYev+;ox`2 zCowUPfcYK;2f!ovP)xr{l%ZNnnhjp#jQ=>-J#;G?o`mSnpU+k<=Z*P=ScL(UC#r0@ zT?3M8VRio5OWxU{gtg^&T1g_O$w+!x)aBF=H=)qVjBx@|k{+zzy3Y@NZQrru_oAeD zKJj(^B`I_Dy&Rdq$-8EpWguFnE}Hkv!`S;6Sf}@37`!$9?a-}S$-5pJG;^!c#o?vv zEUps17Z#z{7QX;XDG4O@?Q*IzW6KpYP=pC^973osAJ{D!1l@&1tGMkucRu2>>3GX= zyZOoltd$16dxIrjWl&YcQt01mZ0n-C{BJcjx2R$Si@GohBsf(DB%uf+hxs^pdD;y| zL55zxLbMnBpb;x1E27+1qswdAUDTSQdYlo+mX z+h!4p$35FvGg3=f-|QwR$VQqDCK~e3Mzpv&PLXv!dy09JYo%3TKGYeg1k?KEJ1%?UA=UX?c_*bFAzAgq0}HM0I~VS*S} z;sJwCs1d6>3}ITqRn^teV7Zs6m3ZpAXztj(UH&0-U7@zkS|bbv@j{1=jI}A>SCrC! z=7JmgY9f2ORv|yEML-4$aA*d>oh+=Jvq-ldK9WQsO6&M)zS8e&s5G~d^QqeH{)|^) za;n;)S7y;tY~iTRT%4UtL{)O`Xm37KTFy1sL8@v-{h;>%OWm|jmcG-R^(Jo41h7Z8 z?n_IXT2BYVID1tR1NFBM25<~4|BT=XuLFCoda%YZ02T1d-D#HU*K0kG8!k{yyNO~8 zt*CZDXr(r!ik(7V=zI7%2Ln9gj)v<=oE)PpM#u{wVh>HT(M_;5+5uj?bL@mpYBcUb zjMd>sw8eK>Lac(R1+UZhIgC1F zzMR1Y`K&JHhqWSx?YDhvFIpNFFS&Ml5S}>-6bR9x0cb!y@cOhto_zwS+3O=B1ffP7zICbl=zHjD&3YC4mTf&WBcMKefq2N$Idwrm zchc#>mshqu5_B1oub-)Jl(+JE7o1T@B2%*0)3zh&%GIm?Kwl&i7zG|n_felGsC5F+ zj5Y!HsEsS<{uU{uZ72Xb%tFA=e7c@q7$fZ}m6HM_9R_c9L%$d8T=c5-*Hm(>( zN_O-2*Vke~9zML^IHcv^u#3rp!kh{VT8tm^g9h(dWCPy{j(W%iG9)})2O8$0zAam% zq#h!nH+Pb|j9)LNvI>^p`?fEE%P@*rLgFS&14pX`e(VZF0c-HK9DxKmD3Q}(sQC1| zk@VoNY2bYR9`%KN>ImRN(DtuEikOFVd&qPzuZfT_h6xdpew)j5lIf_GM~W`ADn4<7 z52f+iUJAc#$MtW8l4_HA0qh%)1RNNsGB8mH=F z9$X)^RL--fq1CB2w1U~r-wzL4{X=iYLv37EI7#$=2=SziLyz7in@{egM)Jvk2So*# zwza~vukG#BoMwC^q9w9}6BZP{oC_LjZ7QALnM`!u$ZyU*NA>Z3*JsUIfGF*s1zncy z*RxDB#ev~wY;GP3ZofTW3q6;ysmwDzCGZ+`A<`5bW8Q~>c@1@12M+rcPcreJdX+If zRz=p$0+=F;ck7&C`rzZ|&uG12hnHnm=1G+J*wniW62-pOZ>)<7M)h$Fwi0oR$_kpX z9RkfaLLPSQlAT`LtQma&zRJ*(XyuR=xa1*c%GPHy#bfZfo5-azv9OQohczW_cZI498W@cLv ze+KBQV&VykO-g0 z3zz?7re|o2k%L3}7Ah@3^lrUY=aHm1=1+w*Pmbgdpf-7Hm~n~a~Fa4A6FfVOpX}*klH$X##B>+k44CywfI}}hTo}n zf|*_&Cwq1Zcnn(8B@(`j!>LPO9NqScr}_liV$H_$p&#vgThi-DQsPPb<7(WLA8bBS zfXbcawq5a7A<`u7FQoZJekuTG4Lp!1e}bnX4Aey8;;|zdJJPgzD?viSMhu|zMfO5qEfWIF zachK4!(tw6A8ssKiy29YozFCXI(iUB_h10X1kgYXs8&=|)TeR%S>j$m?szd$l~*8h zK4&6zq+@g8k5q>3d1Q1cv}seo$cRIhdnuzB45zM90rUWs%M`m9g5w5O0TLDj1QQtm z>tJC2`~-jaun0gCb4LZgh-YQNG)+z{@xgezdw}{7@nT`OfY|WJq6e-VLYm%;!+kJ3 z-vv>b$cg+DJfVnthy3op&~<8U-%B1S_O)u5^L_O4J1@4}=v|0PSgFMacx_rYI0ky71O*QOC4@vo?t?K@ z+yUtgkn-^B6}^ljyJycjD7Mmp9uYltKGw}NxJ!efQ3vBB+PO2gZ-Xca2mF30jO)zs zL(@rEtJxN97E~qW#gbFdwdo95SL>Gj*^GZud&0{wEX<~sRkl?!Yw2!kYU-WRS_iNG z_cR$9nNvq>2l@4e{bQBeXHQ2a4gm)4K&sY`OnRA8_)vx!wrO@Wh2m{<&}drsb#lSV zUN7aQmS>HgtyC`ajFf4OLD|&UCKsxD zft2mx+?hMZzU4FOskiP21?^w@HO`-@W>G^7lq$}gje7`FRLx#sHJ<10VtO6dF$$kh zS5Jz>EHVigwcEq%p=n10G*C^cj3`c(u3d+&H*=>i^K_87ipHx^QC+mNFs_L>{m^ZLZvgReX0_2^PNq^sp_7r z5mtzz`tR-P*H`ta9XF7QF4Ec}<|<_16H|IfJh<+yXR&KC?}M6pKQph4E~5|hq(k`B z?3$rl9|Gs2DT{9v$4DG4ZD_~}KfZcAOjy09J+}Cu%^<6Qw6<#WMBZM2+=#! zdL~w{PT+2Mk`zl6$OO#_a_7|GZZMm)_g;Hgqm7hh!d(A#sVv4a@ocQ%gF?sUgiE}z z6Q+1|US|>iEkKg7#l5?(LC*ze|HYFym&5MwoLKjSmX0|AJsO1 z@;!H(_F(OPMdHkpt@sY=(eCQ(zh(sEP0${b5pQppu{?S-L3j5PjGRC&_oaiX3<09m&{$`kTVCT#^Ft_r7SKpM=Z_p@*M>qjgj~2FSNu5iJL$f* zs!=lz({*x@KcV=xdQE_PcqQmfQM%Ao*36Ka=e(j{E;SJ<*#^qBW-WBh%8+|ZB z66>feo-C69>W!tdETgd>-j5#GZ2i~05pvjUyuAZw?xC09UWHcEb9 zo1DODA5(QBLsR^X*{{FA_Es9o9k8&E0ZN+#1T)a4C3Lr3fs5b)S^y-s}$}lL`9!XZx&Ig0Wf2%6+8+{mp47@QUFr0vqy{MH_E0 z=lL7S?Pf3yBi}}-lJTZ@u4eLQCW&wzSd#I+z7Qj`-|_Ryb-CH!e35^wWBVGwf5T$O z>6uxU-aKC!9(jq)DMB<)vyJg*zq`8tu?vmgx#eluL@OWPFp6*U8O?*)kxvy zjXkKtA<`q_g~Pth4^rO-U>P;X-so&qmoMPQVauMGF0mw1nl=;WuBjeWf4;EILIiq2 zd^)_N}3lzgYWIFHnl&U(?K|AEiqkW^6k-j0+h)XTE4EMOd8NuHF=& zN-J{>h{2HgNt^0bSm|V8zEt=BQ5M@gkArHh z2JobNMMY}J&lsS~0{WE#A-qB^)#I74%c^_af{K>LkHIw+*YFI3eIpO*JTv3%rS~lq zIMjXYn|S$gm2$7r-o0~PmjgPeO-C^XYvQHE>+KyGPVd<`Gm?@vmpG8xA)z}iz#zVu zE;-SoSEE^Q`%)uTXPhS^NmQVHFqUvZwA_(&L&SY{AQcUutxmq@w{6|#`n(gD*P^XE zakU+}3cRx{4Q-57M&*pUJTGzO%9Ztz+LO?db*S3(P|d+c6^v|0?&8a~W~#G#4WdnA zV-9ikCIqH5smChoO3#!|;{@bfV}+9oZykU{6l4SstatKZ%QBP)P{JBc__!qMZ7GoI z{`8fL`SLE`@$0^ONdi&2U%~8aUVNMvNy?3lqq_^2~(!pB*TydNPt4Rzr#si53Hq|5+Nn^dM7(18yVRxm|VC^C13sV^MSZGjC8o5*R4 zbpEw#(PHOApX`2Lju-k!0H>-zflSYj^Ux;2L?9K?W&n?VK2KThn}qDI>I1yEBP*Um zYlTvJT>;kb9s3^3cg**dC92j9&L`muC>ZU*)9{KX-amw84 zV^5LGB7%>R@&KR_)WhpTpR3^w6FeU{rp&Tei(7J`twpP%o6C!CNJPpc#>7NBK)*ge_j%Ni0zcEBDJALu1y>jECz;2!XZ-nDlx3S16_^E3sfhaYnt z87}b2Ho0AIeZB&GK?1>Y`6|Fgme`UsRv4T*KLKb$;(Q>QpwBW8n!5%5W-FK^_t95i z5Z@Zwa+5z9!zf!5AX5~m-pqQ^A>iWUHJ7L=kdG$mSt3FjZ5p)OZ$D2hJ+ukmI?Dxb z1kq4>Wo6|XS0QEPpVi+<<7z zpDHhnO2DzGxiO^LK$cXk)o7U`_y$(mXYp+r!RD+(dnZz8hli@=x@gB{ z5n0xCFj0*|K%~ytTBlN*ntBrRcn0H$;k&C-fb77VICL=iK&UV=-E_ItswuoL{EyYA z4|BWrQtH}Q9C2G8-?ux9HZkqku|Iz?e9S9lR>9UV-Lmv!D_cibcP&F$;hkMK(X^y$G&z_+KchD<>LjJZ+)XZH zRb;e(T*!}z%aj0}}*1}ltecB$~r3@)s5T4!RluD(7hw1{<&+BTpa zf}}H2AaUHP4SwQ7kbXD)x*7$dlH{G`D z5kN&r!J$8DU$?>Nh{Og^=|Kj$^P!YRD8d3kIdi|}^#b|P<53COfzSP5Q3h>LUsuqOwq|LMUpQ_x@rGCoiEESIVpR@N=A=%kC<^zwH|&>D~Sxn8yFsqcw& zF+{U4AO>g}M;mGI7H)feS^~rN$^_3TWa&$q9YLm@4#Uc+G{$j;S8bP1Zi~j;5BoD{ z){l>+GIj)>DRb|K`P2j2GL*DQT-{D@NvZ_f4Gacl6@rOI`8cBU!NzN6I`9iIDBbv%}8fuwvTp z!}dV_jXvJ3JuTV8<)=a3wG-fl!9g3~jIG>dum!Rm9v~ML7^7E=*DC(4DM5MJ=PasT zzyk&}xf?;sQ&Ilwm$vaauyTb~?gxuq+bY9`w~w=b4yoIXrmP<`!>3pmB)XgH7Z2Sl zH?Q5dIb$wPZ{HW^0O8`QOS!Y14;N`#gSdd;p0W2&Lq_r_tip9-w~jhe&4PO7V<{!| zO>70T*^}>m*WY>QlEz+{os27+8trh;<5@>P*WIGOrKM_J@%R%piWuCrs z>@|J#w(NXXU{?c0|WgUp2P1@L6`{=9LIew6rS(q%lGQ$GZf2`+<#8M_UDtu2OYP* zc}ohnR9y2m-4!lv;F9!`D@zwz$5Qj=*w+1ixtzL7+qBolj`M0Z)bROj%ib}Nw4!|lh-MlVZho)IwMe~V-I3~ns{6-cxYmm zXlZ}*5&I-f_^GfkFVJ#z#SB9)Zh0y&loet8rcCYlzi$X}X8%K-{XhDj?oFY2&{LI) zjKl(=xgS=JMX&{hiA4~&s18CaPl7^7MMdT2P=l}z6fjUbV*>69H*YI%#&nS5JP`~)`f+%|9lmDEEOf(>*$-ZOMZaGs+^K&dyzseSNo-~p ze&Y1=fs4h)-TlrPXIu-kguK#=QrFwo{#oT@kr`!R+p$?VI71C5n68E^dUJiLZZ};& z^r!Bhu+4x~`J<5oCSKiBr^0JTfCorNW|&9a$I`oNVTRv-XXK2Hz5NS-s2za(@t0#$ z4omSs=$ZTl13+OJ8d;}hHj|c?HUJ!ea+LLgjH%(_#3UXO0IG@(6r>f;@V)TwFh0w_ zm4hh-t@#PwK2_-N2Q1;j%{_|6<+%sSn-HLi z`Wg5-yHxPGCFIX)5tW6c^~5o|!shJ9WzRl5G@ZN3%brft%T6dYncgm;Ui+9+Wt_U4 zp>|-O>+5u!VV_lQb^@oaqUn#7f^wAqx!D7P(+PZbv;@j@!w)(4X4PfM7vV*hwy6KU zo&DvXE!P7&xD7f(gzM+YuVxfYXod3ScEP$+_GA8us&R8G@&;~}`kZmc4ZCc+F}v;b z6VUJr0hCw)7@vNr$Cdk*-MimKeVE8)8%WQqIQM{JX+H=OVF5|JByL|IQQpVo>s~tl zo9ebmi|74hQQZ7U|20{m%Jn3>Quf&-&#rK5U5!pYyN2CwlkFy692;sg9hAiRl3-EH zhOKHf{4?}9bzuK%nVXBFMjCh*Hef18?Bjn8?yZH=*OK|x(O&BWptyJ+PUwb!cT~UZ5YUU5c&aIdE7X1w+HDTr8pTHP!!gHe6lp0(bNm3#yOYESEA^~P`e|FEEmv} zLfS14m>IsAQa4NphDo!X*=HAdcV@8ub%Szf^mK#YeD9w>9>`Fi%H%IW$CeYPPU(OjAY!({mRbtR$SGFl{nr=#L;7@nHh<^EdZAbphxz^9 zi+8|}MFP0wIw(aI`f4`Ain~(Ur9@>RulBvlf?n=sHpzfE;uyj)fL&WMDrF@oO)ioco7W;9}q00m6eV1 zdiXeG{kk7%C%KtjzTa?|;cw0{IF&hzKzQZInSP`_O#l#9(d>ma0hhyl&7OVmVMTW4-R?|F=k4z{t}^{`!I-#1B7>=%XY8tm6%LLC4%3e@ zZyQzhofoCte9jYFB6Xr&`_>2+V;d_*+21DSsSVI={=D^}HOmSQr#}w{qP^q~I<#US zHv#Q7!TIMLO?j-3ip6@*M#oli;T_zB=WAWxj~D=`0h>Vw1OT$Nm+tli3CZd03wrY( z+ej@w7{pg&Kp~Ae^Zvm^(ZEK8Cjw_v>-_mG0EZ&i{TGmj4aTARK*;vXb@|*~jI;ILgcc5UxHgza-m%fc4c$0G zo?(!0K42G9+TXn*rss7zyc5k^)ByluP!0!h2I?i1L18!)TQF%h6Vf8VACs8xR^l-& z3lc^_2?_q^W8ZUAU%Y68yo`6aGUnucJ9%IN-r*3K@4<=Hg6boAEKXw-9saHjPo=@q2ymUYxziVO$1;nRtuzi^i9L^Vyo9TtxvRKr|9h`<36A=_|CDDdPuBW|c&L3)45_`~x@%$aB=)eH3SOD+}N#qZtxwrIB`rA45q1B3b ztpTv4L4tqr!`Jz=_@E-+gT>&0Kd;n2Z){FywB3b*+0fT`3NiaiPtV9+!_&|9t=PQt z6jIg;3JV7T?V^T3&!5g6K4;`r1_2lOH+sbP@85rl+H_AOxGvr|gH3TLliOq^)@C0g zdDV5gUl*m6!vek%y3qYDy*T9E1Bp^_-EV%dKm`*KkimNI8n*n5y!Gz`E}BodZe`rn z=gHMh7l<(pc?|xiE`!(YkQOdvbym425lltAM;OiPZ0 z`s<*{Me7cPFarS^^W@TqSN{X~5)NtmX`fP8@vKWV8apzH^Qx9l3E0E8vC}gSBDpj1 z$Nngbz+wd@b}8h;_EL#Qbo^4@Vp@3^-g`(U@F!?FP_{fc{q?V-YHw!iiGeuMc*OGhB$%LX0V#fUNf=;id5#`6}Jr1BW^ zR$kMqdm)(_^Qn(BuWD3mGA$rb+^rydVXL-FqBKLZ114WrpoWviBxP11W;#T{yzG$> zipXeg!e*9arOq_qr{?nfi(Gip)qe2p*$5L@|IJT7n1qb6XX&`qWYKeU{ih4;6E2p! z8D$$V!^>utmcKm(B2)!rlLZbPb+LOF8&31Q&jE1?BBR4rd%|%WP;xba;tYi!@$xYZ zWplFNkOKdCjHCo3jx>pk2Xncyr3v*C&LV^S9(*%_TnC(A3@TtSHUJB>O87NMcaQ_i zR0Y4XM_K6rw5Mnsz7LS%FLd!Bj}_S_U_Jr-{}4f`P%uz}BR$~|G-`wYjDb_Vh7p%C z55I=Nputzv(&P9!pH5H5843RmBUlMLFrI=40La=~VebT#_u$5%{)T@pLM2s-<>%qu zh>Y+;VQd_Lbb@#&sFOgnn}(AQDL>(t2OHM5c16qMGm@d0U;R&a$iZaz|Yh&2Ht+4uWy=0`34b z&>&>JHI&kf|MdPb1@>QD3K0tWR+L7gNXT6UfX71q#UZTj7{)~^anJ}Dt3CiOjFL=a zN^O6qgjl}u_`K-xXlT-5k=A|@9$cT})p7n04$zz8?!od!5EAWDx~yoI3-T`4S3W*h zrS#zI=1$I`+$=};`V(wB)n#iL(3OYO0OafwSc5bV@IJ3Xj2%i?n+9iRk1GyxODDD~ zU#+e`SlrOA5W~qHK7OZ1x3)T=FeHSpIqZ#jb`4z6%s*bBOZfw>qDJ+B7^~OiVcIs$ zR1+W5?R`QKS>Ypj#!G_#BFn_))tJEh_hpYB{WhR%rdDcL@!8%I-@rZE$9;?A|Ka}B z{td2iBT+=qYmN;&H`EdX*868PBMX&j;Bea&OTDwAJ_H!aqhCK>@@l4XmSsc5Z=b!O z^hL()aND4u_blpVo8gkxshU5-pzlk^4$2H9@<-jB_%v!Y>op2X&Wx$mHY&?P3e>AI z87;I>teH>T8dL;r7e$|6Asa|2yHN86UuJp|`v(RzoYFdOR1;V6w=uu9Iih`)%ghoR-Ir+ltlHRv}c%RoY?Yd~TGV%5gzHJs!T-ur8 z3rc|_%DV(I-lfx7Q&TqqpSFgP5*(>@0B1a;92i>VSmG|W@Fcu$_ol1{ia>(*!^(yi zgt`W&l|xhqbYs9Ul-W9Q>jQ|b##n_h_>ZmwYutLxmfL?;Czs6t7;+i56X1!5pCiWL z{Cw~mTWKFCb@oJ5>|QqK_53Y%qr@mTO@#ns^+|BGf2u!;2Btmllp;-B3!u1d$QT#q z7rqc;z1>hSsFMbC<|ybtfjYMdc0h;=xepddn3;))keUv=;YjzQtW-Mda*M)>kI9Fa z+s;-0+OzQjbch-p1;K^wnYmX}XF{s{N7;Pw1M7yFa;3yqVhhe*leM{n_TIe_L3MO( z;^Zr#khw>BYEM9$^$#q(r-uOOw*jP| z?2A2eD-c;g0tFoL$N{b_@i}~Jux_1qD*|Q+uo(lOe`6eY>au`OZh#o3Ey;KzKqP+= zm4M}(h$B7%&L!-b>R^CVsH?vQn9d-4kT&p{kTnT2%-)P@s4VrMepugJ2`n7M{lsyV zsFpBz%;YcpZV!fP?57~_>`g%YhXe>KYi*a3kjOBw^sQyYv^OKV_q)VEC}TVDS;;^w zKMU~mqokzMWt>H)Tk~TC?Ezbq!}tgY4=Pux_-5ey(b0rz=zi-#gEZJt^PLK~sjib1 zBo{?MuT@$x$@;cIRZ(60-g`?$A^^Li1(6Mm1LM?)uVQ^=vnpUfuHrU&o>f8#V30Zwl8J~h zC-S9DZTPg2$Z$72Sh7EO@IVHL`G}k^4L#W)eCqcHeEZzV*pwU)38+AN#SCclqF^T& z4Nf|@;1m`YPjIlT$@Nq$KDneSb7%P%h#EdNHmO2-oOX&P_yL_n$7a@H(~^dGqfX5T zpu_{+Ru)`8A;e_&G>+ETX!fT@MupzD4$shYDXR?2nthn*#RXo2wq+mOUb4x)oFl(m zQ+QY);{>_E7YgAqVn5kHUWg4GPhfL!{+ywF*FO%6l#a+5YRf!z4{ed>sr}QG8AZ=w zLb(|Yd_drIc?=u5N5H~)4BtDwZ-+&x9E6a`!6_&2%WAZ$gIf@MM6P_>Pxi?jeRVLP zJnLzp09+9pC>gJ55;Fe(c6(`allM(T=OSvu7lp*=8xImamcz(KbK~D*k^f}IX*o#-tAAQDgWUHqLk z_^xy`$=>r~3rRP0`VR^fJI|6Ig(T|rn;c+NDuxdZo9$E3d-_V+JZqv5~t; zR?2s#-z#J0iWTKyVdgX5xH)YRSvQ_Grs-bxgNzPhTxiB}^$Ck**hfSIWYuUmY$+A@m)}h zifw$H>@Lu}!C6vQ6ML<;L{HDcxO#c@I+UgeP(my0S%(1& z!Td)OzYprk)xNPQ-=ZN`E*E6FsF(w8BY3P^wdx~vHv&wnfy5gM!|(uD0GAsmmsVY; z)z_E9V~*6Du+1hdUaqHkX2n?)-CP0xE>IlVB;dypzd`#Q1{5YZcJ>Xu%v5%=h*h@I zgW>Zu78^11F|A;N;$~ByRqzn5jy4p_BHsshQl_V^UfSf=Z7L>+EueVFmn~e>!6Uz|zhox*SARIs)&$|_ z=*myU{9gszO*#o1t=Sk4gXNI%T+AU$kv%QzEfQJK`=VwPgWN`Gg}d{<*`{_W!J)2N zwiMgZlHg150U@fK6D*u2A0qB91|(M$1H;lOHs6MYLQ7y~Y=uW5Bs5g(#*KGVo-1-n zPJNk}e*QbM6Bj}$Zt}{5MNxd8-@Db$B_%AI@pD>yWvpQd#09q0G|;o$d7DFc_S>G= zI(*K~YsVFV0t9Q1c4b8(=n1G`n14_8|Io-uQi{?9;^B#TQ@6bnxvkM=(oT& z81AS65g+G-9cSf87L%tlvAsSphCVYJRnSMc^|`YY2V@TvMe?`k1Oy2!QD*zL+AS#a z_>LVm;Ce?JyC4rR$bdnyqnJ;~{~z^#K9+Gaq>O&7DbB^+;tTLF@~?Mq!XV~rk4K_u2ZUb2;ADG< zZE4E>=dnIN8An=HlcodhyUnY!i!1&>zM$XBH|kZgdqm;f6&op=P61nKQt!1b8cW7W zv2TjLS=rQd7>4-joN?8?Jg}~GYqQhrd^==>KwGj2upa5apRkFH{}2}KDMuO@JvJCw z;`(9#K-s$IGbdFQ@lKsbcJd1cGmTw~LM!J4LzslT@n^fBl)PIyk%WC)^XCj@2`0d z_&r^Qcg`mu08`tH#q);`AJ%|3LI`w0so+|GEc^f!Paj8PFQ9K|?nK5ruqzpCKotXl zDKKGSoJ%1w37|kU3&3pi0*rsb{5K{lk>dKnLJ5T0O-yo039h}i;oc59P-fmRzCygx zTedl4I#yUS+0jG|)L#$6k zC|wE^Wv7y|XM3rV*1zjRgyfL+Uk3KtXv!=U$Yk07Dwa~A`~Lp?3SBWN?^$D`1Y>TI zP5mZhg8Wv7@MENa2l(g5e;H9>_J)Zk6##Faxfh}_Qt_o(Cb-?$coGEp&iLWS8Zr9pbupPbL;ivX55 zQd7Wbi}r7b8t<1J`&)OIeesvQ?tXEr-`-iq>Np?vpLNyEP(sk-4GnN5PylnRE7#DL z2&{s~jO_=#J4f|dR`yF)XkLS|(o&ZfkVD1_3HdYWG-QVSHP@COXgpHrQ20Lgld}vk z*K5gQpXHyuT(}!yEox5 zVO$fK{a=*530Tbg|2I6@B1@6VS}KGhgwQgyqC>K@p`=uVgkstzOWGw=M5RJeDix(| zC~0p*i=xsxv^O=?w9GuOkMsN8_y2yb=enNjKG$_N=a`wk^I6{S*Y>8}TDlm-6kp2t zIX~s@ne>0l7Z==FL?yq2cE^<_~Kl@oiexV`Ou%$Q8w zXeu04Ev6koh3p##Zr@9Nd}?WV`O+^-d~r-T{eUSVbyJr5KlyvqFBnRmhdJ;LJJeU; zJe^oXfO(H|4wy~+kq;DCr45Za?3#F@*O#Mi!c7PoT=9Cl`80#cDi=m+;=s1q_@vg8 z2a}%YoD5H2qRsrbBO8`bYCXF?!JB?9F5||AK=Eh?PsYfjw=L7?eTTOKM<;S&vji4e}@k2U#XKs>5S8eFgvsdEc{g7K0X#D`YuUz6MyvSc_4j+>z&&%`UDZV zMHLl9eMmCE1UzttaQ*%KG=a1ehL@D%Zo*C-6YwB$4kS*L99%GBJ=}Z; zQn5Wrz&UD;RrV*Su&D@g!ZAX`1bIh!shc z05n*`3%e;#VcNQe@&$4@AIx#PIBroVs!V7eK&NCf7RW%7Mome!t(37o6&fDi!>!qG zNJ^Ng5o!~^V*>9&z(8dA5Zx6*Vy)(>Sbxo=%kIU5s@0#zGgZ~jK<9=$?X#& z*J^7o9%FvheB`vZ;Qs7q{(EPKF{XYW)Bkp?@!ECYzvz*llKuO3@uN}9cBx4qftRJ2?|ziZ_iRTsTk zn!+wOGNVn$`SeiTE%O2Ir!9BBI7tP8;dhMF<%LU}h%(zdPCEzf;2VybnDGko_P9Pb ziVUc?ko-RbAcZJYhSRC=l`1NaUojy~<#(Oq$Fmjw;zf)9#f$I^V?fgrI_>M%uO!zS zmKEQ+idOJ$;M_dmgv0_Mj3b_f=h;HgF(0b*7jq8Dao=LF1&}o|>;!edaNAbv{~k!J z-CM3Xq}Z!kTQ!`HQ2DK{k6E7!3zax`-!;(&cOAQ`jBQasg#S+7&jPKSC$U)XvM~DMEThf@L6dS^-Tfe&uJbcFPunza5p?j)1Y#@tyfP zYzHN_t>pE7^Jrq7?@Bsm&K+J==Sf zoN9hodk;$fd#p98e!KfJ(z)+y-KNHQpVWg*sL!OkcqfwVglhO$MbsfADO|FA;i3|WIX)AJt3!vQ<@Gj(=vI?AA zI(M}P8n(->OH#PWvN_#mPEaRO1j&X;jLQtV)(EMrUKeP)yzCCCgo5YKbct3@dO&OX z9MCsuj5HG$+ccWUq^s?hj;;Sm?$p`_RjAzGR@No&)+{Sr@c@9W(1xuIe;YC``C~p={ zmDBSEWiGKJnC0cGHiYUKNo_8amytWa{B4^=xYUw_ff@JE;XKCh*Sa(o zC+{&6cE`gb&mJYW;k~6dg!+B@{Motw_=Zqj`p|HGiqfqI0qM!fU*gvTq&aKP1i*y> z$r{LAcH}6YN(cO7FBQyxqzIntZu8ZI`l~wKi|m%8GTVcA@E79^*<6W_3XDFTszh~^ zRaTAJG=b2LcO~^>@leSaDS%c;ALXSc)^F#;1$f_*!~xKdcz- zRD90mloe0AWpU7m>2vD!4|^u`?P{}nQN&u|+_wVZ+Xi;wFTO#n>(X`F7O!O$16Qo< zcS!lC%wIWe!h2?R_CM1W586MEtoAc>&C_hlvHr2i(7osLOUDHv>Zx!BhEAHvaZ!7` z`Eit}S=1)IPkE`9Zg4L-XYAzvHWxt2fdM;(@sq>Zb#vthSD30=pH|;+>CS3r^|#3M z-fa8jsnAZje5p4P>FW}|+>cG|6w4i4eb1gf;fJj{+b%m{vf|$TcfB}5S8m$$CNC_x ze%6~_)f*x^h{Pp*;(8SwCee_?f$GU^&41q4kwgoO5f$nQUY}$%5O~}w-2B_dLyTZC zT@x`WYa1KAAoFLv(&G{L>b}2JPw)(9+tOPX%kr)OX-BGpCvd|L@!=hT7_z+!{+vCg zreTS>GzUfb-c!YzH&+GDr*7!9(Qb8GJY2Fz?e12lj!30`<@kvMKIsj8Zx6e9Xg}?1 zD)A>c#kO^c@8q2P=tquQxF479Qdfe`&>?c)!kiJEp-O|kfqJ20N$M!N`)Q})nTJ;HWBV`%oMye|r40u5b=oWf7Y zKUz0whOp$7Xcl6}f25UtI{WyS-|`8+>bPrc;dRGUi!}-!1vBRvYlFi?3exZDVbF}E zk`dpFK*}fn;S&jEqn|3`cKRq8@RT>ksdfn;i8y+@B=v||)4XYxIa@^B*Dqr2w~+i# zIB7O-%9BUa;-xGs-qAN@Ho4X2U=9F;wcY^%9OpaLk_u}kl_jzY?yJ&nm@s=heCZI= zotXJTwceYGusXoP#A%N%GlMCqdQAkIBC{{yOhHashTd(}l0X;H-=pHmwUdb_{nLA{ zsYkb*?SlF(PvOXMgBi>_b;V7Od>RL9PWr}+br?Jv(jpkU@HG5+;f90Mz{L`7(BX?E zYFkt+>LuhTr=^5)A)kUi(jd#}e5#q{k^@0h6_p<~?6nJ>3g)@Q!k;Sc<1dp;#8s%k z4gI3}KhE2>+hBg|CrgDVGK{bEziFIh`4`-4)(-e+L~Rs~{UH!rWUoA)bnyG)ql#N^ zhbenTv!4!ULBseUsyphxQpRTLxa>cIa}Q&KiBE8O;&O1!vDl{He8PFs9R)M_5%dsCY-j&M42&^qxyiiX5mM# zqvNJ^_doo4Kobu>yoERa;~k#S$HHPKWRP6O#8i^6<<$K>iaP-mM3ot-ai8v|@{CEAaS;3xPxLl0XN|+!hr#A=WE(zK`<6 zZl>8xt7QvpAJEe)7^%audIxshS^g`)?=8c&Z@R}feq_$zoxoSWd3>Ae3lFZiayL;V zY+=yq9NPsNa|L7!{_N}j$o`PuYNQY-6gc3u=0`G429)wr2-?cqMpd$?Zb zu{2-d0LQqF_eEm#>+REjbU(kB6Sj{OHEBq6rI}gl9N~ost{1jw-;wREHUE9moQb#Y zc4CaS^Zb}`nExiTN&dq4{zr~-@)jW(F@pALjGbuQaEqSFG(190>H6IG zSz)*}AX}Szow4b@RPqAei!J`4hyJSturbfIv3NH!(|CM(Ow;3&4Yi$phab)l;@EL) z(yVGcs|NLGajyEy+LhBR4H*s?&(Ms4L0^7){pKW$JKs1RX*zkkd!q0@y}yHY_aDA} z^~i12@}!~+EvApFi^bi&?&UYqOJfX@& zG&UkAHLyp)>d(jDq1-Zm14{|cptZ&pGx;IQ5Z4cfUFYW{1^1Y*wti%8FjPPFe0IWw zuCpz5BI zP}XVdXBjN}Y}H$#46&{0-&~raTaq}(;zw86k4wGYbfii+`CL^~#Id_)j1u0TEN+dT zl$B?kZhw;!(e>0K*s;g%$g+|Bs*b~bemmy~FXo6Zc9b-8^H<&w}!a;=$iQhLXIn(;l+aYWV)+VS#&gaQYhRU9U$I9>M*}YU6CR*{M0Y zzaA8;v9^un%&KvF%~SVWJl}+&LybATC4qK@H+9i`EcJCwq94`V*D@?7Y)ZVXX0PELUuCXvAe1^C#a1+U5`B zN7JS#N`2YqBQSLay34%w?L$+T*p6I~|3<_-0&eo&v8c8K_;`)a|4~rurh1i~^<2 zi^S{flL2<4{mmru!Hm`}2HaW*8>jglcHLs|ecD!5&$=Fer`4ts!zX0ZfdI;C1*Ygz z2@g5LgGAtAlkWmRCG`6;4BccdSpB>6e$f09)ZMwN_|__6a5BRaO{+urHuJ})eRsCx z5cLjmRRJ#ej8r?-VJaN78A*yO`hH|XG>j1Y>v-kN1#UHNq3e&`&dA7^;)W3rmIN}s z@@GLVpXUM>`A3d&NQ8-Z=UfW$pTjO-oB0l^J3>q$M%4pnfyC$!Y@B{5W76X#y&+WN?psd5* zq${YJk04-@`sBYCoQkDM+pW*aHEr3|fJl7uOSH=*z$KqrD% zsyB49&Rmk*d1Yo__TZhaFcOl2Dz>G>a@%;Cv-*k!Bed3go?%U@TCC7^eXT*6%8AGj zKBZ;ggwDit|3Hb9gH91%ViU#)T0*CJ8zR9LP@|u589Elv9Ia3{88EFnVD-_oFKy!1 zR`YDA`_;^Hb$|42_dzx)Oo5$m!nc|$AinOSk4xi)EBpk`ny@C{?>mwbwZC2VS+FV@ zbs6*)BJdxgq;oh?SYl+7+^zMjg3K<1@EQ^u62XE(J^4pZ#%0z#BFz2u>!gBlG6lN) zk6@IFhUCEfZ-$UJmSiX$tbvLFjV!;YE(cxfuo(3RBoLQg8Bwt;cybGq1J8rTE@^- zs!p%-hR29B}Gh*-FyAvKNG_BsYMs!{F`?-N zq@8#p!qL--VW+Dm+-1;8G_{(m1^hFUf;-clD?H!!KGym?y$Dm$;{)HYH&kXnaJ;Z5 zzjk0x&E?rLMI}vE#Zwoa5O!uCQ)BxT73ckSeBE+QvS8C4zh9+0=g2qRHL-WleOA%> zQhoIymVhts_@m%XszQ~zyl{NG<13zhA}i!H)uyE)n>Hx2e0cy0WJ{!iCOXw*dv|)Z zD?gZQv#7znD{z@B@SLTp#W~kLqCgqU(fyET)VDu5Id6QS#}k(KP`0w}x0?~HNE4R1 z4C}RX#Qm%8iE*68^{VwfPK25uTEO?0SzAV)N0=YtMu_GN=yB(Ejm@Qy%!rq)5d{~K z95Wq^`&%0A{e9MlVd32E!c)GFJqwUW*e5Y-LY07VLGza`^+V9b33tsS2P#z!hbB)i zA#shNK@9HLlX+h{ytD_W>2p1-XG*t0c_;(!3os86hQO|^p^k!Qfs~X!*`?&~h>0u) z;P(&d&f)VrgYCIjPfu0>0$ttV-UdD1Kp_1t(#S5MV_-vv^q%LAeI7zCiZW)^a#t~K14KD!8aJi*$E;lOHs6Ye=jP2^ts42Z7w;bh!}f;&GacJbu; z^J*z$3^ayker9ZX?=rH12vINtb71?12&zqUFAJ>D?kq+910jr4f9}6f*7(!{QB3+? zSm}#!^$7j`c0$l}LbWs!@ZUqoXz!AYP7Eol-G1g_rTXi8!Xg@hHxtHv@A!G{k&Nyz z;!mWsEiCtgiu1ExDcygU-Ne?NX2}PgdZpYIHf;(59=EwK2T>=RPnSH<=)tU!u$t>h z-S@?lW;HWq^_W|Rx|PrLvqcSmM!ij)kYq|4kB5WsJ9IuT2Pa(b<_`X&;MhvGQ_Q%{ zYh5+&Ywz&XPE!RnmA(7+$>8Iz27WDjtAFrlh}+k0E&Xr{M6|6`Q1DkB?@s+6NF`1% zebRw!1`~o6Clnyfpw>Yx@Hb>L?Tlz0{#*>7&5nz|D3I9U;tzt}JP1~cO!d;N2oa5K z_Kp7lIVgq+CqG$ligxCj-p0Aj>lv?B2^$RLjDEgq;&69W>^bT$^$j&+ z(G9i5z=Za|DKz`-U~l}^$k?cfdpzeCjJC*vD9J9ZPf{hXyawB@woE)qzr$wfLHV>A z0e4kmQk<$Y+8v%=HJ9}b)W*l26iGN0Xnazn-HW{aiaAQ>eJ;_Qx%LUGe{8>sh}F9OzVyrmgLA4x1d`DOv1%;kvd#kFSUucd2y!Bt`nt(1#Lx z?Fa_@R@{?Dv)Xlc#_7v!ES~S2vp%9EF})~mP(&js(5HsxJNEa$yR|UMO)OBRC z$(6a@>5K_+8__8WNR^C(353Pxut1u*EZi`x%IYt1_0_P+JZajdNZ==De< z`uB6&YFR&jU~<(>Fv~=kLm@#7&@2fo-+ATNux9J?P%{nq#-Qf$!3Au$#A^?q%Q1O( z&Sd+tc@Ut^aLQVaUMB;kP85I1UQ09$VOE3F?6PH?Mc(Sm^*XB{tS2=RU{(~=KNJs? z7YMK=6LBquCvkkAL<=>&#t2X#$x%T^k=2`|%k%J{kkSD%Q#!FIg*Ny^>)M0gR0S$@ z{oX3QQ$X!TA-Z>LSXwk5BAcptOwqY#{|tOi4L)zuf!($@^mw+D39|U`L!()NOd0ed zAq9V`|1G*UNlRa^r{h*aM#W8>3lz$_BXPeRjyq4hS5crnX?_0pdxSH;?zS)Ip7ncgdb(nc{h<`m@#J4 z9&?%fKc}#FE}K`&j7Y>qql1YhFI#J-#NTNymi#$MMr=JAEd5by zTX4?(Xu(L!;wAx_!xz!Up{Z!iH9Fh|VT{}XhhLm|OLetL+?YR~WuNl2S^(l;e{h-@ z9EFR3Z2d!hXP%F}epKO^lgHHc#0`tPY~wOo$5|l(T1@BpFICo# z4+Lgwm&aV4@c4SUvc~UdQ|euxx<=W4G3&24%UIr8O^@$89?(+ZV|wh9FEqPdyF9*J zW>d1rQF0cQ2!7m^S zVMV?@h$h~IG~kFKe=mWfKpdpqCv0v33a+pX{dcof@KqLqGo(;He*Cx{mkUwlSO^4s z{+5ByK8NDD?2e1e#fuw3NS&ZF%gV0okT#=kA&(m?bUw7XQ_I1f`#SFupc2ckbK*v}t5)=pAv6bY`N! zFTyaA<-2T|KeXQaLVdh02TT_fbm8P4cyjrLu6@LII5adgHQ(1Jm@_1a7#>kaWH=?x z9cehVKpn=u^SX6w;ojBa-1D{8spOJ=xcRgY8BzcMM~P~)jb3URn7~U-Nr`*BzAs|N>P>KTvQI{JA6GFPvNTFO{*h>RuKYQ4VO~Lg z=y0)SpK6D0jr+Hm>~S>%7Z}y1Nl$}bhx6Sm^U9ehSD(=TRetEZe^!(9soxaR zKEWs{qU)+z?yCaza3>j4oA22)C35Pcmy1T61zzYAmIOILVc-!&BZl?1ifH3d;!dzj z6_3yl!AALnN|!`KPw~J|xS5WfRRVv{UW}3;adMeg`+5hQS14Mmqb`I_vZeF;toV7Y zcM>vM&zNi846(oVE$M7AdMw3=f#n<3=OK^En5){88}X~bsC4J0=!peQk+!e1#t!pL zmUX^K={;7(y~jE95gq!$7ym3iLAE|Kuv_uZ#+IKS{YR?L8tHIXsbSkYB|Ky-4k%OH zcaU?;a%1O2?GMf-!*Ja#iq-cEOFo=suD_P|nEQB+S~A=05%;w+3nOC;9kNG1JH*#o zSk)f;Isf%wf2Ua7NDSz!c>n0mo7mcb!nx?+RN~-Azf+p^tMY)^Sc+JvZJe=SCrKH96trE~ON< zd{)C9^3*^97s8Ll8qgE{7p_d&C_}r!URpD}l=20w0x<#Of=9T4K@=maYyXgQ>eIpl zw!Dw$Si7?wPC&d10~WEkIyHC;=l zUSX3X1tfgDd^SX_I*&G=Ml31?8x0Ee%gS5Gjt52Uhx-aSS>j~g3#7s`DBEf5mB{V8 zI6izH{MIOvUwBm2N2!rOzFI-mr}ruV^1z7F=7BH9Rs?64Uz5~-OI6GN@>Gh zQtpdDbbo($ekq9{L?d5&&1CWmfjmI{T|}R9B=PwBFX@}V4dr)6#@Z}FGB%l+N}>~O z$HebIU)WqIMgIiXS=`#9$~KFD&{!`x1fHl|okzA5<~vZB!^qOVinOqJ57jL>17q)D zc7^QKoA{2gk`wuzGbupD^3cj0Z`u(2_^}@l)sJp&(`U?xh7AY8mYqaC3z#PZ2fD5R2k=SH*)IKQ5e(3tHGGHBg|RyOuNEN@Dwk&WjQE>sYa zd9V^+C-ym{kNtF@u~`Z~CspmUxBO33XCK7iWPH>F95DG1Q6RmLR@$Dq z(0Ne%;@DV&_58AU3C9R+JJ8d)wyy3 zJ>ZUn>Vt4rbD(=S&=C-vpGdj|p6@BtM`3MO3PXqY`qfgJ4%j+dOJ_D!O|{Fl?b*U$ z6-(NVhhrs6V9w0imB?+}YEC)9k6>>Z$!_?~6M!WAK~rX-tbq#a<5wyL&_JBWc{cms z)+eok9NFCsSrSk(l0kO7i9vm$_umfJ5Gh2!&#jP^or+3z7pzc^c+U_j5oi1+TCW1x zg3(Bt+hC$-o_qY)RsC9{c*B5W=9j$;y`rS$d;5pCdJMbfKXyN=CmG!`-n1}wblx?& zc}xBXUgKtuy9toJ1u+ql#di|O4!Gt1k?NE?Pu4I#jp&(nCGsB7#l4&pL@V7gRW^4u zC(x`2eRi%cWjb`>pK+snd3XL;^JrY`fp{A;W7`1P&7AIl%Q7)NC3uDVk)E%ZZOwt) zr5~7@TJv{|R9!ZYueH}^dJ4R8Wl9WG{DYIJaaCBTbEeredA0Np(Q!`gT3hI%&*Pl? zA2gkHHkDZ#vwWw76cv$^u@I6cjw^tkfZfRTnN(>l;9~OBG@(l3B z%bcx>yAE|8Wga!v0NqrnT6;?e3|!QQg9JMj}JW z#fNl(M0=sA6QxUPu?R_$A2D%#xb>x8@4=eu=)g%Z_I9_iEu;{8Aa8W%hj75trz=SI z9(EJ)-1Wl{8;zeJk@5G$du|h=K8_;;I2TCB76g(I2O;766SHN$w7onSHN`PoRgLTm zV~k-!s=Pm*Mih?4pR{T0ZnP7_P&lG0e4%VcC5eR4alU~-hSa>6 zLn1y=XR1}G>_4FIY-xb5j< zDkwZW0RQ#uJq8TPX#X|<0s6)EOmLFroJ_4d-UGflAJWi3=!rYhM{zPvd74;=*6q-^ z@SHhXq;Ud1jPTi|B+e07Y~Hd^IeJB215i?FQcnvcf-;y(L+4aY zoPBIQ;_4$8yT|NPil7;fSxUD8e-_|RK=2D@)DT>$xHJ);G-uVm2fOe{95|gv(QlIx zf|y941w8_OJPHN!RvjENxs$`khPvzSzYle6ksp6nVCP{kw?%E~Tt%uy!E#fT^1d_0 zBkaDbBsT!|U`aAHW%lv>vo_@tA8Ht}s_W^EjR?)u948J6M>U{$p^uxs4)@78&GRs= z#V(ENtlLW(`7LK!OfP4<22U?Ppw%@8H=YKhv?R250tUBh$T}b~auZ-@yrHtiky?pT zgQN_Tpf-oTMzt4I@S4Kp(-J{1MAeG@<}=AfN;Vz7;lyo?9D*cZ6@NjFOyaz2gEJQ< zTK@LIj2^e{H-!(!m+Vq#>c4GX9p)7`YUbLSrC@t$XHc`CacfKaVA{AlJ^~5jMZSYK zWJ6J8C1A4R!;$Hq*tA{TRr>CGpY?VMb8Q@67P5yH0e)PQFEFPLmt60wz?^`uH||(*@S1y9)yw?s2pc}H|L2r|==$J@iTzBT!EMQF zw4@qVl2z%S9>DAw{6dGAO_}prZ;4~Rei|HSvu_196Bu76X4=cP zG$F%B=4#vsWwwm$pp+QB-9k)d~AMyn@on8(JsKq@&p}=!5jYj!Q zhQC7DHb$=2?Isn6mTBEiE>ZTYtlu76o?5-w_m$21Z7a^o`whU95=%7yoT3A_2*@`dKT~wMQ}c)zrt& zdpqayTbaW#2S-J%2lNbgx7$Yq1v7kxWqlK}4XW+iE#7h3_59z_%};*jZawT~+`PQZ z+KacWFyQlVu+B$WZ^R2;^DILq!(XYiTLfoV2D3tDNt2W!SfL%jAu3=(-f!*QuOGH^ zE#kiiDw4Y3)0<4GlLpH;35}`0Vqz0zWCK(7sTB(G4llGH6_8hz>qE53AxY~2OG96P zn!oeQ+zB^{KS%;y8*E#%`6oRmKAz+4Tb;WzRy?>+$lVxn^+3{Hqo6i?`Wl`#+n*V4 z^xKg3hhvh6cYrPua1frJ$f8q*M9PC~>4w@<3+>+7H{C%L*Qn_nPYnx-&ggfXMwam6 zf`YkT<$n59uz7F5-K6`r1M8tNUq0N_5Q=^@tyZ2cb zmUZxtx*DzVFH~?edYdRFCwYKr3?eJGGx7v-*o%J={+<9GR-%8xwIQ8{@YT?d6(Hjb_UB@LmwS<*Npmdr*0xR?@65Ef&aT;!2hL|voP7mHKmY$UAP*0 zc1*9^((UZ2Apj%r6pWeBgige$Hx$GuA7|EFDTUjTb7bt)Y^j#*RR^Wb>Sn<}jO^q8>WZm!L?by5e5K1cwGEh{I!d*Ey2e3Q*m^L1UEe9oj_lIkgS&$RUycO^Z@fRbDBu)cP>0OMas9!*T}q)Cs%YuT}WF`cymBq(+qYjhcEyZ-&08ycS4!R%YMf2h5Td zXnu^-Z0D1arZ6e~nS^$*1$_D6ixLp?xgYQLn>LXwGo0m~fTf9}HH<2^nX!4G+Re{b zPOWr_5r*yIDj{GAIEl4x9bT(hh;M#Wt9-tGA#zhL2KALL33cH+_n63&iV^UEH=4I4 zSPj|Kff*(I@kFUg9;b1HOlQarnm;i0&!0bwlrJnJN#DR94<%LZ?2C4P3s{YaQjnAm#61jCZLdC6(AZ;DjIpb_qvh{ixy1tEO*$zptHc@3H=xTIPB)n7SyZY10z5 z!BzLJ`n1GP=zdl=&^NPKY28@Z9$31$eanxX)nQW35CAmKwrX#-uDL0$61u}oslXwA zR8#4PzJUR4#ZuXxkH2>&S08lxz5Gb-N1gVi5XNaP)93v>H$D$o`7TN8c;TX*wcGCh zAL}K~L3d#)_gL`NH<)LCx@w2|YkF{CdsHX2QL`tjE^aJvGTIMukk(D@-IoXSk z|1t1MRDZ?Bjb9v@Ag513AWMWgnDZR~nx23WD0_8D2Zo?Ek_jI(5vw2h8R+vDKuopD zzrM5ydO!~P3sy88)Go&(8P1$_7n*X3S(`#@`U*R;3EGPN_j$e=;8hGj#*1hi#9v>! z{pfLmyr&ht7@4&l1ou9OYRaj>rGTk{zDJ|lLNQJ~?wp8o2Um~gWZ%Lx8mn9p-SU@2 zVC|pa>?ccy@&T3b7c4`Bpepr^!}m|fGL$=82;W7}Tx=YI=At|H0XImpiqX{Z-Bu>J z8@HA~2aN-4*G!Vnf5IsXNok0YfAfKGIxcwj`p)5hxq7 z?AqB=cSX=MXoJ>K>Zb$zY8Y{9E_n^Y&{8j8s*fwE^CvF<^JM#*4{x{7*Ep*^Wk#;y z+i&38r~e>!zHCI^hRx2``8?l@A3dUm5&=Vdy}_mZ0xOibwKz;MMCxQ6AA5*sC2i+^ z>sU^yW)5~A+_E8g2vkV!=&ElOZekK3-aL@>hU@J+U&^Tez!p|?4pvC4AMM|hGrXTX2c>rDm^*wv<*ixle(c2$&g>8-Sf zTt)kCuzfOH&?8Y-L9cHyFxqmqF}e0Q(j4yu|r5`VCBS| z*)^^MY|#-;5kffJwcC|<(#1Vj3ELm<oM_X|RL$|Jl0N1h_#K(%${t_FF zmZkerAGFgc!Gd9%gsr6Ism}uZ(wl6!N6nV+s*B>+OFw1LHOnedK9bv9?y6Z88IOJb zO8r;(n8$Bg$Qp$mX9kPn;|JTK3RFDY?=VdzqQ`9h^nf%ZoxVr5vokX9D9N>cmF`EY zghw@h8aPS@U!~os7M5>((`{a}Be$gR$YkO2w|(y_a*tKhA1n|1I8PwhtH1uJWHehu zsZCmDd~?Kvf{Fzv$;RB?k*^;=HMzHxEvzs;a+{x?$txeueqPNvvzlI{aV01Db3uN| z;2Kl?m_JQi;ZoziLZ9rUPiI4qCW(jZ?kck%9CJtkmO+vx$*teuvN(EdQ%rbjqpV1s zy>D;KnV#&Ce*`Rhe7y|%l%}+>uBJJzA9OPgnM|FSYS-{)BYSd%+W0~7XjW9T`|Yia z=)UJADVjB^zTGxBUB1=4Oqf&@4s!OJ`TX|0<-X`SEKplXDn_79AsLKN+P7fLQa(-> z{|_H_!9ky4Ru9~H1Bqf&IQDK10HurDml10oIX?jEw*ow^8fHbf%p-1CGnf~`n5aC+;8 z*8&bPgEDQ#j7*-MydTyZar|Snkn^nLx4>~n;UjI3El<)9;<~}_ErRip&`pxr%VZD$ z-u}b>1Ga+|kIh5Ey@#Y0F1&?^9SW{BZO~cj+&0k!vz#TkJ9diPU4!{h@sM=P2s)2D#rY{$Q?1r-OthU}&f-sLoR$`598&Dv5Pz^|*>>=OCuy~SZyDMzTx zRL#na4_^a)&Bt0o{auS|9Rw&O33;)S^|gtXY3-5atjN=+Ubud^klu<_bqm-c%9}u_ z7|Hncl`C)6SB$qz6IYd&1xJ3Vk+siGxVC;BLxIXnxok4bTp|&# zF55ztnD(+cRGX}bgOCK;%obDA!+(iYs)|uea-UH(y|Qa3W#+Yt8IF+KETJCMix|DQo@Y z{z&T~uPs`&rC5}6UZ+1iFDWqKyktKgQGO>&6vuKG#Gf$CF})(GJ-IDjN)A&-i4P|k z&>E$~MN#tz)%xw_dY5T3iFjG*q@DkJWbrKNy#IYFee3p3?=@b;b-x?o zwgy3T2MwtCVdg<2hXi&w6+PAk1mCB2!BF+o>%)u3%^N3tYmVI_*G~}&7jHRerb%XQ zaaozdmxu=sv_M67j^*ISXhV>r70LxGux4#=#;*WkvWknnUqlMx9t8QUhBoISM^sEq z`#^;1UZ^EWzR^4{Xb<;5&HLs@PhuCyaJ7=&wkR*jOOwkMFW!suulxa-|GH8}=7w`5 zbl>;URbE0_r!uj2bpASHGPs3+BJeRE(rMjdv{j3inJ%I_8X_SKk=^?5LMZK zCWSj+XI6H1g2;R3%4M(Ix-}R~jOTF#goJZS}tM0`NnD%NQvKL@8R#5KJftq8;fzMJ`41#rAoI9 zm)&Uhg5pLGX^4lP2C#&+lWKk0{ElHho*1$WLy%CDa#vA)odP$f0GnhlNfgzX*~Apl zFppIj|ASGwQ2MRAxZb{z<{n|~mCz+BD!TXFxr7&Q;zy5)m<;%d5F0XtmeE~T8?&#; zZpbKYU5WTQ@Rxon;y5F^BGCcbsz`Sf3*x(i&}JnGD?_88#3kvB?@}=cb34(m`uO`_ zdA+J8+l9@S8J`}MT_sf`AzeS{Wd7%oNb5*}sxj|LJO7OLr$XEhVqcWxSMQ|Ph}txa zf8EE+#v@@KFm{r^#~0CH>Kk`e&a%ty9gNp?*H3QAP*G3`wcuwvRCX#w^Sm6@6gLch zG4;A~sLF9&Cv#TwkDE0U8=;gOLNpoH5Nx4mAY8f5ICDb6xn*W474v|)?yO=oW(rE5 zqGhNUrVd8msr3FrqQK; z&kCO;_FOgI6Op4*MS-t`7afy&S{%d5jUKbAn-!mU;J#NZy=I5{`4hjZsdnMkR#tZl zC0+bMQr{9el(zlQ5v>Ui>Zj!zN5Tua%E4EC##b43$J8-!z>wBg-@PjLhw1nQbU=YA znn(HQeWlk47YB;fB#FMJdH)^^*uri2!RD9UGq*DD6Xr!43jS&ceP?DoY=3LAtx#&H zFP^pj%;-(^S(_Nts#G)E)>F;G{}wTkBks$jPxZ+UbPnrO$7^?`D@^u}&6+!R6_i_R zX&8)%Jc&E;4Mu&Zy-#YZ#OCO(Fb!P4E@9-KS(_RYuPx%J$Nc7oiyAg$#r5Sc$a_Z* zJMpK^{O@_e$5WoE1D<)P&;)FT(yQ%2)xRp0>ujo`Z(|090;|~2=-m1eDnFoZLP=g&;=Ewlec@%8g@RLRHdNydz`Gx8II#q%2I*Me zHXQ!Pxi4qrZ-d#VkhSX8OfFr&>wukEr*N0w?Yf~kix`T-GfZ1s@%`P(?TLuBG5=&@ zroKA=f(dt)otp2dG)$;-+K|s96Y6ZvZF_u|Z&4>LPanQjv-6pP*5rEymy2Uegj_5n zt?XTC%`10S2nTJ?V+*G_)nr;0n?IO%x5l`kf@kfNAUF7s!Oy`Bl3T|0_4Pw9-AQ6^I?68&tiO89u4(;jY)GfL zP81W(QEZXRiRNnFs!eNR=)202#%}Uss|BEjcr6h!x%51h_mpm~X1_OIYG`l%Io`oO z=Sp8{S&XgP+>>3ATQ@9`;VzhM!hL2t8M0L|+kK`q3B;|$^{%l~dE8~OVH&xx8xspt z8kMH|r_0Z`%3-c?c9-*wYwD<@mM0GND*C%q_gLj5i@Z-#U`RWgn>fYUNNP8>T7NW+ zO&MlHk5muxRs1SfcZPPMckDPO z(Z)xT32C_DiJ%PKGixB1w5AB-nZIa}H`F9m)s2Yq0iQg@FXVoKP#8r#e&xrP<{*EWfYNM z8v$>1xP@o%bM2edkzg*ClsmQ#@B0S1I4=~k-LG9DnnLo6L=i{;7Mw$XZ#EP*Ux?gg zp*HxrpwoO>NH{V}X9YQyYkba7l|IWvbn*5zYi8=Jb61kFV`ykxx^;(~Ujsfkz}KJo z5w8PBpVUdb78w|r=zcA^EwmWC3(*rokm`^$*k+?edL=?u;)i=*FX{YSx)T@UV6Ri0 z@`j9<7Ngz%zUC=GViJ^-V92MNt%I;Vb;qRAhl+gd9|D7IQ{jjtu3y4ULN^qROiO(3 zGA9FLr>=|JGkE4#7*CIGqZ^xVDSKh_Vbtx7@|Pu2=pBwbSCo`s;z?MSQrc*oT*Z`g zDwSbZVN!V%Sa}leNzQMruFQ?5?vnreN(CkrdI-U~%gQp!H0_oj5|8E`7YD@u35%0N z*8v%nhzls*6-a;jHnnEC9xu8rUHju%rwa?M{ad3K{Sj6(cv7+3_F<*FtK$U?Le6o7 z!pu2UxXt)!n&kS_Y+u?@tPD-!qqs4TWfSk!f5{s=$s95oc}5rS9h5%Imp4iz@3s-+ zq>UaoZcjnJHswRIMgEoI7Oi-xHOJm1n15P+loh1uP?|+?&c4j+y}(C{cc^0EsQQae zD%W8Af?ZG6X@G(y^Nvo&Zd@m9K-=S9mf_A>!FHA1@9uG4E{&%>V8mx;_F?I~?DFJf zCz_2{W+sgYPP(+xN?V@kFR>o`-V~hL-{Z2F*PUbwk~B-Q)R{?Yv8t}q^}#b!8f{RVz5Buqm-8J{hr~oZ!I3p9 zrb+mcE)=>ugvB^Y6c_i?aIAlJi+Cc_=a71myVqpgymGw6H}E;oAy4$!v@1{Wo^VZ* z_as{vknt(#K}aw(fe1iaQAmb>qg#FngsWbNxk95a8FwOU8@gE14g^NdhGh~|AZ}7m z!n*$RXmgp}6 z++;v}GW%!#31$T|BT!ym-mi`^QUvjzon zFja*JPbf{y{+hJ`m<2HdN`cRy-}~6Lz!jn^vgD|J7rdNXrpy&%WQ#I}eg$NZU=lI{ zf(&gK*@?>gPh`M{Iow^yKRo#U(rLm15pD2ceKk+C=+;?lRI}RaQj6SouT+D23KceuRM-)tM~@^}vve#zZ{Oe>#QP#z@Mqbr+a{P)H@;bauqC%ifB*jHV@LHT z*QgBXs~q9pCa|DI1c3#AoZEI(>Y`?~pucuVj?afw(V)zo@{N@|%?G0OnO`ia3OTU$ z%tNI^rmplNv>v<5@M=UVP#i2{u|IyID6$#kkT9Tyni;bS6vjgx{y(nr-*;Z|K@GM` zPv6uvCbrwk{PR5q_QXFbLDCGy7@Y(Xc%BALquZ6+h|)TMwchW(`k9C2Qk^D>GNbvb zzBS)a!4!?}%XUr(;+(AbHPpVe8EBP zQ8SzYjPOiR+JA3&!TzpBZ8s^yAvYPX zqnB7P+zR`hKk_?>pj$MXP!@!V(!1^mCg0s{7%IwjDA7`J?7X~vS=HO$w_e!TWQ}LoPIm1Mky@d3 z?nLU{ts5kxhyTgHF9k%Zj~|3@&8}Df?*$s^g@gehaba@Y2{vbpe?YjSDox9jM#eEYy;RK)oN!*JMyZ4`euDtDf z1lg7XPyHnP>8!d`|H&z{P7NFUNL`Ahh5f&cFp4Z5@%(yz4awj$Kvd(ng+3D+#CH2zRk;vUsumf)2eXIwKtF zuKSY@=j*c;_NqTQC7D9bnRIoQ6m+bP)oTCQ39(sM&?OQR8Ncf@U1wV+juO-^cu zL0V$PH^xkz0$sUi9t+3pN@QY=WU3n8QMnbjQ&@Uk-zAw>f`-|xbqxQ@t{O+wUkD!M zSE7V{EP9kb;Gd$oZJn@1dOTV8)=+^q9_}Ab?9&e4 zuzuQn0%wlwA@#uT0JdYny3}D zH87fWRn>Qi#87sh?3k+D>_>fqK0{=bB)Y`@wvk|JYWZ+X)jZqNYFYyu>5oyjA*H9?U((}TTmK)*-aMYlwe1^UrP8cIG$2ZpN}?!ZWoSl7Dpn=5sVzz7sUjt8 zQX)gBj3Kg>vB{XR3{lo9bH-Q}7HfFFXV3lop6C7j_kKQm-`U-UWnI^GoX7E<4twL` z_^~Bvopx)Cn6o%jRT@^ma#R|da*^s52(WRziptlPgsJZ`uZ`BSvt*2EOy$z8Bj@AC zUUu~Id-%0E%T@bi@24k>{ZoQgN1QY~0eM+bJmoLN7W0a|XvcpUozrz;TzsIijZg7g zP9FUeg1h(0{LUV=V9(6(xlAN?OP!-Kn%xduINI)eUf6` zyrTWq*3YSz&q9YWD$BzP)AWE<6SbR1#_X%lT9&Q?)rsSFy{v3S7~`xk>p={*GWsQ` zSUzy6dB1rq&13&LCF?8&6A9VaWsVZPf7>pWZh-s z^~(yCE-?`~J|(z07~f{S0bZjpUZWv3nrJ)lg8m=3TKc`u4*#7?fr4c6d!ef!WZS=U zMW1)!`Ve{Akt2)In0MPbynghTxHCTb{0-R$9$SMqfofcgnC*L*tfx*1nTuYwx6Zcl zb5;0!EWL~OVzHbB*~qxxfAKr4zw(rc-Z#HHPuQA78bV5#+;ja!MYf|iRbHnl=hFA? z`0k&lI)dFbtz+~O%hC*7?!zfih{5H#nWeS)i0;otoHUMzM04>kxV~Lb&O#qQKK;Y( zM8Q5oyWx{Zf48+ zlEpKIbqw-W(qgyOJ!6vO@(;{!N%#z?wn@=)#2OZa? zuY=I-*`dD*YTy(Y1>ZZHGCeUA2spXl*5)PFDSR*XTqC^MSPM5dN#~@zC7UM!zP32w zP1p-gnZU1Db4iF@G@r86Vl|@N!_acRt0I)*L%L3MnIwLN__U)2i2)K$60&NQsIs(z z(d|kqD@U|(VE{MmhJ~*bCgGcCag_f0JO|$gnrF-42TpW=YKw7)lFSX@I_8$$d*{C+ zD}Hcr!~+r{`>VkY!AhRxEq=T^fDPN;VhX*st| zr#W-g#V^m7KzTDVx+m1(SyIx6pI69|O>J0H&I~1R%hybu7dLYwpF~JyVvUB|W%8>& zNEjk+PRaf&m!JC5W%N7=c|}HZ#;#a%=(U%idq);TL!;(pnpJ0ipph;wyLnTl zL@3kh)zPR1`Bgz%RG&)r^MiYP<{g7Q8*@Y4(q;PokPvb!fcBfjE_R5Nw8%d zSPP}%JRF@?2OZ-R{NiLBKn0ou2MuJ>3AhOJ7cM*>d{EyDdt48ZRCtgzuRMW% zWFPA^6i$AfrI@dlL6b~&n?mM2u0lm{4uOQ=#T!MVikQ$F?&@+S54vTT>66eP&cZUi z<;XI)L!5O`RBy^&n|*=L2jB81KD``1gezx1AT& zeQ2i#7`do#xl*5Mb;hn6mR#^(`#Ra}VNikEE44F+zdMYSSExOe72Ro(Bbi8(<+GnU zXJ66zLhYkivsy9o`uf^(Bz(Ffx9#_D!-K5rVRJP}IG)LgaGR!C!JP!ac*cB&eseW^~j(2Mmi z`@Ph(TQUuq9<8j@CQeRfKT9{Zr7zSdO+1_<^ic$<5@YA=M@C+?-C1RO!fjcMb53*M zy)sX)ntwBGB%uVFG~1%OsegKF@Ib>Q=9~u4B5{^FE0WES8*mjjBP1ZEB0cbVh>HC& zyG~sk8h1!^bf5*Ibk$5k6uHR53nw2uxPNRn1n)yWemTmDVS+Y|w`BdTvmiSlqR@76 zQ30Mam-0uP2GEb9g_vU$ti=?p`}qi&>?{h{#raE@_Rvg)8a(-j-rRs2YN5J(|AH4@ z{>yF<#WIdK0)&#KmkC~SYg*>bn@19LQ4!}aUfkGT+W{0!4`e(E z{K0_ogOGC+61YUP?s#Ls^q!HAF2bU+WaE?-0FQ6rHIjv9xWSHvpI+{zr}55l_Z@aC&?6ZvI90GQ6vH$k3;kaERJDAnk%7!N=HYIwS4TQIZR7~$^+gQ^VaZmT5 zSay9sPi!eaRxgrJLTHQDVmXf)PmFqi(0X7F96ryEV^XUt*RA>*}TNuN&$+QY@%gVCD~KSql8Kt&MK^+%(I^*J?F^ zi%$+j**I}m<+XKvt=mRiCcfPN3*R8-JCV)#DQ=N!2>RzG&dN5c6c z2TfStyNc1MC99aat6V+^xbGLY@0J{{?{R>kM8%t{hK!NIjkjgeEtCaAjRLuW?wlb1 z^rp~@1Te}^Tdcp@fOJ)Iv7yIs7)j%AVA!=e&P}KbblaB} zM;7!TR3-?@E%Idu<|@ak?rZcGv3>JNKq&BJ(tINW$09BB({JC+`r88Xx=lxG9Sdcv zzUF$IIN_n-7Cb&~ZyeiWSDk+>H-Y^WrKE_L5QOfR=%lu};w5SHREf2Jg&B}KNK(LxK^QyVjo?}Z+StVkg)N}=~KZ`{N?ok;8r004)ti{mTb zA$ImR;>|4~=*gJCj)}$MYN9xjb>Up6JOTbdR=A)V?QtHy2L+5ImTF=?Ee9h0lE~p; zJHVhq@d1gI2uJKitWiPen83P`5*;?M0l4Z{+Q=Kto`<#-5WsomA=FS1(z}s8!9d!#*VSwR^5r zByQ6tn^XuI2py5|0gBAgs9XP)2R9pC7ei%R8xw?b((9T;am^#}$#%v#)7~Mwe<8cv z=ppSSqcofUgl0PH{4cYO{|Vb#^y=lf>v*3bk#E5#{tku9d`OA+;j#0>Se?OHPrj|8 zKrXl(NAf-t2BOP+jb!@uSgsfSO6^vXKIJ4yJ1YaL<`MZo4i=4MYLFj9Bt=@Rn6x!o-Ig&wBx8B_M;8?BRBs z91bF67)Hr?>mEw<$Des~6}Q8C$S52bJx9M6xktFZps{~rM8JN`IUqDn{5ak5s>gmy zk!#0)WryXL4?uFGfQ3whsEp`8VYK*>VSmDFQ9yYjI!dfYT#XAUs(SrWyogbIi)s); z!M2#^3&EuG9*Q5T)?@-Va;}_4_Snf2Uhi+@iknR@4_cJqx^tjd$rI!f?W;)6*_yz< z!cRAHz5W{T+i4LiesTf}TMAXgB_u*{!Zlf{%Eeu%{E+Rq5@%gGz|;nqQeml{2lb52 zM52thW$VG~*Z)1t1u6VBF?vVyVXyDZ!8FeD!{R=%xB1wwJ81%+#7~Z8wdo8jC|;du z!cM(d6zbQ?&I%o?sM_zskXt?ZpVYg3*(>wh0%et0u2_6o`MIRE-#(osY%Y?{S$Da8 zbTC@jTW7$~ZQzoFg9C*6DLvPn(}#PlB>QcM2LFF2(5)~2)W|0%|Ew~xTytjg-=~UV zFYRRIPTwboG2SxZUuEEf&kUt=bq1Was0xJ|y$b%AHghLq{c5*~n+Z-UR&FU+!92Vr zeFgPoeMiAXZch-)s#{V?eV~DFk(K7v&{4H}%Kg=`wI$!rm2O&jBF_0l(Sh-`hc?J} z$0Sx(@t@>m^+X6~zSvRXHYOG7XcHClyIFowt~e`;En~-%vgKt@GEa5euvRs*tHSi= z0jv7+OiT>^QA43Gxy~7asD`vU04&m8T&N5KA+-)|9ehOCd1jbuyosRDBvcQ11$o$eU*p@LB1GUz6-X=98anN358YyL5)OX2s3HR zqAN()bEE1z9hh|VFmsZ5AoEG5R8?b(rhK;kgH?91_2SFj3}>w2RZ9Ezpg~rX zr7SfwUkhgf&AUMt82_0u6`rAgA1l3&8!%5!qWQi|&Y+%>{@Es*3r&VEy1Xw|xD}ro zcQrPvlMHC?KG~bJs9zws@dtW2qDVmY**~G7zWAHIFzWbs z?T_N)YNqSMO!)?#-i@tEV4hr=P}daD9H&E{T>j!yLp>wK~hRe z;rJ}Xrek};I_!3qzP0Rgj*UKXHW2PC`|`J4ElkunNiggiVY*z8^;GL{2dsx=aXpqb zY}mFf7}=P*@JdapRzM?P38D;oqb<8( zsW-LXf>ZJUXd%SXuE*MrD2@FCJR+q6+jRklV;3gT4G8+=&6k{e`8!L|z9{Pnvu+>> zN~*gq7=K`0!$VGkeb61Qo7Y~Juv35_G*kBkp&oMe6)h?DjP zy?PM%H(&*6@-844!F;USEJfW^3jHk8{G zE%8k04RyU4r}KglGIQ(C`F1^ucaC#xzIk23#E)B6_6WVhfhQbbm@p99tf_y@Li|0+ z-06z6i5+!`0Xt<1eESU){bVg9dOiWkTlR5oWztpulX_R=RVmgmYK`5R2)` z4j`4`z=;zN(=?;RJ`bJ<;RHZinaewJ|g^_n~b2E6j9*Ca9QQzi36Ou<#!C z)fn%xSGzcR9tZ!19XrAZpCztYf`v8N2n#0h9AiLcu4Gzu=iS2LM08R(vmP(o$JKQ2 z6_YS|IWbD#__TiR`DLNc|5GTan+*K}ETYJkr*?Y3Os zYqR$5S$KT*!Hb{m7D{{ea&FcQAAK0v%7~81k&YapUb(u%rdCluu5}64nTI>BjV%hS zsH!?o(oEB!!k_7RY#%+QG!SPV+I=`d<^3o9wMv)U!lh+o=*+dT>UX>L-&tfmW=nI_ z853$Mp(O|E1T^dXJDlM3^W1Zdj(0gCv_i)Ff^DCb%{-QuI@}&nxN83N_6|-&x2EfE zgnrtgP0RTu)7{n#zKE?nyP>*U-D;EULjJ@O`yBMw#-LOu=80 zPO;${VaX#lWx*FjU+~wA9~ABU79+dOh!Yl|bw^%Gd$j!s*SdRptY=e>eCk@!FVmLR z+|+4%q4Z(Jf-iEW>Y+``rDl7!uj*_GY2;`eve?|FXY@cIpe*!7rmO{j)pS&4VDe0D zhMQD2b$OdOk3TnVT`E;}y6#bae(WCavf*Y4#R0jfkoksZ6xWQP_5Nhx&2j4GVU4=Z z1Z0U>Fp5Ni26uLDr=$0P<>HM;3x0_YxB%rO+)>nW5PeBH#+ggtr_Y zNV>}!><3zd^urmfUiymp#SFZbs3p62ZLa>OuQ3*<(Pw>CtW*0y_Cv zGc#p9A#yGDNStP=eV@yurrNK#f;2%Zj&xdG;N6Mbl$pK8?h!x#iY+_&qwm4|2M*Mk zgDmzYS3fR05dSPMz!o#n$5=&t8vXkW8u#cHtC=@ys?VDBq_kPvrEx7o3eyDXB z81hx}UZ1xv(Vf$+mRjXF|K6&RPj6IPWcKOAp4AmFSNM|oBsR@-lof@hI0q#$2hjxY zel5}qT8)^)R!;@nxaPh$t8FcY_FSiVGuZx-Ug`6z@E1I@4K|S$hSOJ|44~_bZ5PF?O!L`^>!Y@8qj6f zy|-?|hB-iVC_ZS;5L?hy5R14vR2vTnwkSSeHHjGomyNjd4Pb<#kcJs z5*!2)Ko>v|5sY;+x@yXqz1It3)c!UwFeuJluyElD4L%BZQcPBtT-Jtqh*}Qkpax%Rn!TJm*;z zVbr{h$sqCM%kvZ;xR+GC{{`ktmbT%bBf-V0E16!a+{Au$1+B+04sQ6kYR8L+0}|g` z*VkpFT-`Nbb8mVSv&VV%)F{~(ju67%SfCZ@Cazy=?0JRQfwJ%hd(a;}e_woo@w7+s zZH#?U_Uu-*RhDG3BhMhJrjXAW&6+|HKe7@H4aa^Aw#2i7BO=mG{%(;0T^S}5=)T`# zej&RW@omw?G!7NK=^w%X72Xe-N=6tiJ6K^$#2bkMesGP35+xqF3{jnj5^a}uL3*o&Sp=WUTcr=`ZlT&4&{`I=f@lo#SyvxIu1tf$Os6B{I?cB zP^JUpslqj!51YqJaIHwoj_v{AeK-5WaYcjfXlL%xD5ZDMejC0#uQObR9Q_yf7+Lx1=GCopqO$T(uu_{JJyF?e?R`N=mEQCSCW7 z`%5Z2c9w2S_R@XYTR8O?-2Sj0>&A`2-kPb?iC!DAM-vNf_lyz>OI&Pw}4AZ&x9!(sJh2a`2-j2+uPxmE0{I=XgKRKWyd!gt2r&Ch< zjHzi=bmJHD_OSrp!+M@=uAg47XVq>alr~d6T;|}{7O`#qz_$0*Q{mGQc_G(tj*TC+u`V=q`v%8N6USbt-up3Jm|U%Cz^*16jAde7 zW|Ke|vb8g>gtG+YeD>RsPY<@4M>QsGg{%^%%T1C~Ng^BY+8a=Pgyc>f>ARg$C)}Nu z;OSxF^s@GTw*lKf*tsXZ@eX3a&%E)wb?c;;h4H_cM=NiqOdRu#N)nz^bbQsM>qSkL zX0p?*|CD(G_kjxop7#Vq7o~3|$GU&Lc!I~*`)aN6nvH6+eoWd_-}|t>o*g1b`JK+jsqi0Jk; zHXi>==c-_Lla#jCeiO}=Ph!&IC*pJ-jiw0|9XCmO^paYolG+h?ac!t)W!7hjyJe=* z{QZtP*TwoqPt7sWFKn8eaFS^9{duVnlPFYsTL?-;0odbREKs7dT`HWIc))Iz0y!b@ z0Lr?{Wx<~XBgLI7$sTPTK;aB?IecO9RL3I9TjW;|Ng%f9CEy#9Jx6GViINT2H>u7t z@+1HYUWtlMV3A^Y_pfp_QBKk4FQd_sQNzY0F%LJ)>N{nvS?BmnHSQ^-eAgcNR_y7{ z?v&tZ!4g+7(tj4+00BuUPh3Vj#CKkSW{UFm#mybI^224ydyXM7=kCg_3sHh`67@3i zKQ>pNz8}V&sx=YNYHKM?E&+qQ|Ia(U}c#UMjC7cL45Cg<7K4S?#KoLHNHO>U1 zMPvVLvWj-tS{^qEuwhwbbW$8yUEl)A+6|1GWd87{)tK17XpVzo4{U`P<#)AWor=Jc zNAZw165x+Pe;ac%2LjAmcM^*(F20mP#KoYJ=KQFg6-*dG_}JH}e=+wWEL8$rK_G44 zI1W+l7|Ik9xfAQsu>f`rQ#U$clL_Jr={&g=fu)kC2P232_Zc15i}|6ndHnqAv7%9R zX&o&kd8{sB>Y|XI*FI@AwP-mB+cQskni6_fGx>&pKcmmP=wNoMYWl!VS7uODNNIWb zO@-?bBR|cRQ*Y}s={srd?juEHM=f_EuS62e4)Uq4sQL?o;Z}`{EvPkmRus@BF!fwx zMUCFW+l-Fj!6KJ{p8X9rkscnS#lBspMGf}j%9=-FLeeCb#cvi+FcQ$!(fNs8r)|40_2=fnMyk_r0S*JXA&*Hf#gDjk`TUg2gW?F&|=4=s%2|8NRd zdD}JCA@Ayuu}$Qi5h+(|I2{9KbjPI2l%-~5!fmdKH@}+qd8N!{LH5t7 zy~hNCrqpdE4mM6I76|lhN{y8Z{FFMDfF4}8;xzU28*0z5={-Fuhiau>abK6mP1~pT ztERG3Jb&HD8rI#uN8=f{dnhrbieI}Equ1%z#mJ^QFkrV)er#8pI4Q;an+M$Ve_xZR zpP%qrH^>=z+8>c%8U!ML&*U-eW7QXecPT`DLX;RrktRlh&2TPLC;+nOBHMb*+!C>Y z0wfp&WW+nsKS5d`CRIy*{06w7M=}ysW^{3A?1M3ilw*=y0Rxr@L9Tw(ijWM(*4@Q@ zZ*=3E#dIB)t#@?1YsxiyUOTsHEi*`oXE;r<(?OIo-6n^{V?~)14{is@L{C@ScB-*Ez&s1$$_y zs-CXgJttA6XGFety1GBU)oU*EOi@x?X3FWj3`WQm|J%0-?b1imxw$8X$|HxqL{+A_ z2K;HFmw*3LVy#AWnC{lKzAiJ4myM0fL}=)pcie5_8aPEi(=gS3QfjAP=bAe9!6(Xb zwN!e4;-2l_i!#Ay0-f{+MDqcOuplk`HMEGT0WBC|tj^w(MEn=%t1{%p0fjr)f4VdM ztwK3aO{uM0x6DB+yTOg5{%vj3UV3JUG_ZfJ@+i-kMtgqXR0Z6joxPDclDo6T>EB zLT)v6V;rugC88FP{}aKu`DBOeKohnG4}QxN@Me$llb;CCeD-U`(a=15dKvCzBJDtn zv7Vl{JHI%hU}jUFlQH0*1m=ogH;-@&CwB@aRZm3{D+7S4zei5LJU^EZ8A&Ccok7Z3 zM9uEO>wN3fuJfpYKeTwah6`TvCL704+mM7&D~8esplNpyFZqb;*}!hE$-({nCk6_I z5aZCJ+Dv1z<>uNzbIp*aHG2i+m0inHXg{uT>D4p4(8Chi0T02LC*SJ>0$3~#-{)4>`Pd+Z}IlR#%IT4Bk`QDM_ zyCc?JXO-lg^0o=_(svwN#dMcqzl=N5u-`kngfCVzv|AYQ^tD0P8m6q-_YMeHF|PTw z>8)ULs=tOVPMmzqOv|_~^I1;Ob#4gC{|;?tZX{=iTuX$qzVp@R{YlLdZR}Yim-hg13&s>FWIYl&u2qiP+?In(yXslbU_b)jDWC!ea$tMh|rqv5x4k_yp5wPIw zYx36eG`AOuzLpDK{5wunNgND}fvhH0q1Tp;j?p+;T7-F*hX zBVD5$#_&IOcCcB0f(e>Z=b}l$oDW6QpSl5nJQz1$JhCd0+X?DyF6svPMrbkl zedrO16MxxZQ5bst^%@%DB;*ON==-q1@z{Y3fnWI{_Se1l_Ex@P@hO$WcgC<>^il+^ zuI5Y^CMOR+@A?4zC0%*&jTD*71q?MV zZPf4i6|%YDM3deUC0^&PYr9 zC&NOGQhFOxZzA-FU986q-iiZO<7a{*3!`jAq)N^`myo-0HN(Hndu65BbJOtRXg=DT z*|ss~pKw!VfJ)Q zLYxco_GVW-+!{zC(9uSd4t>l5?y${3$ZkVWaTev1^he?zzxPs{!`yH4y=uKgHiI$N zY$uxr@Ej9no+KO)iy8DHmcV?8toHel$PTt${)x^#eOgbsG(3_>JP z@79Z2lDtVENN+k}a&zn!6cgJT{A}YG}JF^HG`CAHkxWmxZ^I>uG4YX^B z;uvsJ$_mE7@fsn9WFgVDzWR5p7yG4L95%?x2FNKlOyiqHr3vg{F=(b6Z5{yOUkMH9 zm6@OfFiN_}WQm?W4Ux&2A~#{Qd7aY|{22q{$d!KJ2;j#|LVNl;)Ypg&Ux#HGL@R+C zt8zjVpCDF(e8~5%Rb$Im5e(wmwO0+&o%>$Om#g7a4}#%Og%{=<$vz|uvJ9Uo{hel0 zCO^x$I0mm#t*eV8|MFFIIY7y#T1vQn z@I<{a*Kg^q8rzSbh|VMtFNsJe&}phy(a(gI1|l$wD0K0IoMtp2_Y6@Rn-5gS51(9+ zD{SF4FeUdi-8fp(>-GWH4^y|B*NJ2QLKO;?V%Ff*H+UZy`3d=Yr5-F4vnPHS3(b4-%G z?%2yhxOqoAr*K$}g4a{0t0xR(v$db{vOT`-q|I_3-wv5NP864!p*+L16IM?Se9ZQH4%h5Zddk zvBUHExS$8C*!PF2$;28?jX+woK%D@^c5E4K8kxh1U9YLYvykGw2&wBxNse`7zyE6A ziuiRR&4rTnu+vBL?_HHn7mp znbPZOOpr=sxOL(w28j6{?Pvpft%Bh+L{KArit?k@ED}9y&rF~Vj*)Wcd0$>?-9Z9( zuwrK)5EIHe?0Z0kcnhH-X=4&`Od@{Kul?_Gu!1+CBOtceV~+>G;gM>9qx+B6mmnN< zHGziiNyF5@T496Qz)E~lE{uLwC5Bc%Ym=@n>d!sV&r5SI2#bSHbZ5!4nUpht)% zB4I&9D~JfZtXCS()J&W6x`sMik_|r?(+~DmHuqHSp+$x`hwm|b*ka~sVQlPdGW;)w+(XkPdHEASw>?EIV=(Ui_K@IyxBdq3jgn$v_ zLM-?7CqZpSd~_WD!hd;{fsvfm%m3>b4$yF3H}L7sguYI4m0)$Br2S&sk{fOr7NuSn z@g2wm3%?xEd;lXSI%8L^H9I6y<3)qxPB4I>=D*qg7vm1>D*pdSkJesKS&hi1s(}G+wyN zdctngPOo>k{a?bj<zzrfm-KxBpA|y*%TbW=YK^+&)E!H_eXHM_g=qNfynG@%a?|WO508j z@m_5BXKasQ;Ys*xPNbjoC00?CH;w3XKQ|bR2_Ai?B3B>I$=452k)SY5^RR-(NJ#ozArGr`ulB5q+WHzD1AT@y$ur!QdP{|ucNfGYDs+{s(n3{T{mwxBb*`D+-akBGWqx^#{ zCg1zY_a92z6u{Emn^msWS|{AZERHJCs7s6|%^}&Xg5g&em_w!dG81({@1dfTd-wjX z<7)5yCn>YTPeVR+)O6tubGz|gs#4T@f6Z=&-_V)3=f6AjuP3c2(ob4CB(PIxHZ$6v z+i{E1i$()b*2Q8wB1Of4@3{k4uMm4INwl@6`jR|CxA(PVN?@nS@IcCxw42z@)j_(6 zt7BUJQj`AkroW|+A1wuoL|S7KH;YwzSk#4sNw;C~qFvnQ0;_{IURfaIEj5sb!CDwz zh>3UUY>BGr{^LaxBhTBGV4yo@>M3TkSQoo;M_GjYOpE@BPb9uxNO7 z5bw#5VPeB0-!?wOCdJVfTA=VnUi!+d`i#D5)6UF`1=~c?&R$gVTjX8U%XgV)oTw0} z*&1``T1*1@h5cr6N*9pVjT`Cz^^e&P*HQJg{_~ZBD!_Z!$;o|U@gNAo$5U5y|K}U- z|B#!p;Mz6w=MADV5Tvq10-%cVP#2Q~P+9A0ZEZd6wr6#a8g zN67b{d*?>8>8sUZlRN$9mWh(IXB@WEZktyJ`R{+yIO7|fOm#qtE9U#U+lpTvz5C{x z`R^CiIj88ES&0KN>^?WMC8si#{1$jmu4xnJi+e&W#Mu7o%ptffWQ zMiX}IzdUOyTEDQ;CM=^=PhNJOtKh{-jBA+aUgNPf5BDY^;aIUT(A?q+273N28~L4E zWRR7=jc72#92V~5?2FHWG9b~msQPQ*UG|Av^7O#F^8I@Hv`=exjF#r8mG(OspA!+f z*Td)gN;me0zNff-M}Bc({>FMkvxtb zMZ42yhkn=Q5Hub~49S-(ew0x*r?|ph9nBQWV5aOu)6Q)6U0Xfl+3FID!ddQ}(enhn z)mo|;Yhpi|$qlyA#|}2Aa1Hd_zh$l-(sU{CPV0WFXF?O7-#f{ECobmF$q3=Dq#9St z^Z~gd4&LGEcVznr_-N$)t5OxqA0QO6lX#$?9=!igZ0ztvz8OlXABF-Kwct#$&&;tU z7dZUX*^TF|>tac8Ujh-tqR7Y7NAsMP|H_%)zz*uyq(JF9A7t(an5l^fe=NGa;rY=u zNM2fmfwi2+q4Ol+&Z2C;@Z{2r2HdYPEl4o91GLO?ysrV>zyGh%l+g^R zZ2NHblWkHYOYfcnN#Q36_fVY?jU3_*I>3X?rVyS2)0hrqWJDoNd5eu3Wcdh@dXvtV z3_}2bkGq&F#lZ~Lfgn4gCMMgq;lesPosm6iQyYB;b6`Bw>u3-%PQL+6p9t!XG;)Zw z4TAH<4!<1MqSUqsQMLuaoGUCZaZp3m2jlvDDG6A4l!bJKHG zO}w=H@f<0R=y1%1U7yP^#&4)pr>$`S9()^(s>W(u}Nj#^VHbS zUe&4>HLca%s0T;netAmooH{RY=3B(S@`(;r{a%^!vW2@yCiJsUsLmSA5sm60uDXtwe;QLZ6Ez* z{w>Essgj=uH7xzi-Pgw%D+C`Z+7Xz?Np0ZX%$vzOwbVnFd+1gb!##COmZoCtF2u}C z_T2hoxY)P9PILOS$4grc9WM^k6asoqh6LQ^6e29rm|KmtGq^C2n-GmGp<&VA64eN1 zf>@6d`TT9GZAfe{uHjvwO|vOy@128ufJAx|ogLP(h=qn4?ajUa-&%lBRvC-fHjrtE zj+tZ;5oeN*>b!9P*d4Hn5%mXo5}S4fITRe zU@|0sk9-iwQV9D2NFxz6Ir@9y;24;qP)PpF0VMqsvXjOar(0MI0P2=d(X)E=SJ5SJ zlh9ir!CJVcBrD>VO5qGxl2J?woq&!h!z$Ti_0g6sN2brv@<}TQz8DAz3PCL^AOp!X zVjx^!56}}>fn~EOp&CX#0>7D5?f<}ckl_G$@aSZW-%sN0Km__NoHBC(ExSy#+9-f@ zyoZ=g2sBDDM;kz1m^Y~j$KtG#VyWFmz4E6-#CK?J99vV!Dq!$sI}@Y?zdlJrrg(51 zJQ9D9C}iwZBpZQ9qUN?UuiqAli;Hh#3S^8qDD$AU#mJDvyFPjBL|e?oXsr;c^*BA5 zr;r%eR$OR96?$XHG*Z$xdxF!lCe^IIZsu5VI-#A}^uer8qCe-UzxlaHpTa_pz-84LxL} zb5J*Ru!Rs;+pjaAt5ape+xx(-fUg81y}lE9i&~)9paFe4W~_sc2n_+cU>n^jmi|v` zpe+4K*G~XHWRo8HtKSHJ`UymeKxvy#q*oMaf)xeC3&6jSsJ2OrSw%&~6>ju#5d-#% zn;>Y;Vgnbef3Bi~ud@Cs-+p_mkxyUph=UGq%CQ1{1Y$#1Vh9(Z5i{oQ9taP0T6F4! z+vU?*&cwHcR*Y0OAKvI4>(yfgKQS>I0jHJm;1|XcyyGr^NdX(U>bL zd+|-l{x_J^+N%z46TL*Vz!;qqj^+Mnwq@H4He7a zL7VlC+=O^cwwG;3YfnOT5x$aLSh6*24f9Qc%7chPFN=RIGR8vVtGsgKu1O?m51dyD zSy4HJ+kph$0PFNofAqI;O>|E2ky^Jv1-jan&OlzBniyUld=MTZkTncAZVlr(m3 zyEwBsdP4f{$PV?SF7t%K(4;!+X~v1k2yKU>8} zh-+e~vRzu&Xe2L51)KLk^gE!23&~rorL;@T_SkJS*{*%P2;OA4A^BcA(w_ZMr*Mxd zX*9`K*6JVcpHEYX9bUAimG^9VRllp@=7hhZCbhLXLgQ$LY&`w>3^ z_7q>(6jXrPSPF>k>0-a1OL>hQ+_;m8pa)|4UMBwMg0=Mx1%KoorJs4TA~G_PsOC^@ z4N(e*zt?oV#E3YDLX_4d77)HZO8wZ8(C^>LzO=svYZo!2DZ;kA`)xAD%QJN*KP~IF zY;^lVAG0u1>#iw3LVt9;#h~B8%*!e_j(@f$=^g|7#Y~gqlnq^jO|8Ug0&}EF_BJ`D z4V`+>J_^~YywzHMUFO2ygN0TW9^IxolZ;rqfB$~gxM;4~(u|7nhsQOm*bgph;EO8x zQtE0DbdEl{A=N~V;@sha?6uGb52TrSxnN7BM9TSsRybsxpSfWqfih90Tm^wFMrbt?*M)$8jU@1 zIPfVHf*KH`k1JW}3oFr+1mQ9^}#6?#;-7iO$nSs*0)&6%x@P`6T@Bla=zP@pkK?4v3 znEQ>%g@$~>fTq;Pd5qopHsD$^OB((+hDZ<}C1d(XOvw?R4#^83{#Of6W|Iefxa^Dm z+d{F{OS{w%TSZt37WYQhe;+HGrAppCE~yp>fFE*)#?%i!0>n?bl6p??$huFsr zB{mjh>kl?huZ1>xH$Fb+wl5sO42PH{cQE5O8D!C4m^!p%7xC7tfO-NcI0>{-7V4n zNtJ*>7o~oD){|~uR|j+XSPujok&%S#P1fX$-~V=I|3>~CreCOQRYu^nrkbc_AJ&7d z5ELARI)%_6wQ+a)uQlu$>)GEVsK|_}s0(D7ivs(j zw9Kf^-1;y1M@;DRC^RJIVzm3l;-Sy^0Z9SbsY3W!Vqe3_%6Hb&`}79oe#iDEv5fz# z{tMWf%esai_!~Dn@ms}MVoX_$|M=Wn^;@K1Uf;~caL+l4)9a#SbToYa&3u1}Dm1%D zLM}|RDI;ana87P*?&lI#KAQR?GYUiHo(;nm(vej4!mL zW>3|A(N}bhs2FyczVuwv-pTupNXvz*okf|0Maf{krq;W2&jMi;$yde^U#Rixg}tL|Qd#CNCxSs8a~ zXI`Kq!Kg_TE0EO<6&_>WMlXhP@6-)lG$Gl^wgU_~juuJN$_-OOB^&O`Xr--p>2%4K zzjTck(QlL7t265?ZbdNN@$v3DBRaVvRWnr+OLW}!sh210tL1S#WFa)lB*gWXB(FsP5D$k zzQE+8T?0qz0!uWPHl9})kz}9EGMFy2?q6-Ie#}+=!JI=H8?)(JktKWQ48RntDBG^ZrLN?Q~G{qPgb(zhZtT zsj=7J&+jL~Qp$+z#g$=Aluv+;{U??LeN9aEwtAi^-M=RJt!bR22s6>ROm*84E%-{m zLWmH}(?4?L0+zKna1o-}yhT#-9gBwnDI08AL779*w$;6$39Yf6(Hd$2D|i?$;T9Z( zFX|f287LOoo)QmB&8Z(ZtC2ZSCK`D6?s;6eEgBlJ%)W-33S}puX-zXs^zRdnfk*6N zc=$(rNgd?m!-Zs*&_1WB0#iZ2TS_-v4}yyy}JlDV>=O7F_B(T`HPM%R{_jm9n=f+#wYf*h^lJ5m>goQg5Sj!wi;XhI1fdwMK7r0eL&;pkN5EI{Fbs zx)oFVN3ZE$GXEl^CvQ?<&8~X@qVJWKmGv<8;&2m1^dS3Aq?!k~9e~G9mvD|;!pEQ8 z>8N-ALeYe+rXeq}OZ#64l#(=#56n(2sd>yRFDuK&U>bFIQK9Qy+4YiCk z9t-lduh5aULJ?3$Oh3f#gf?rHW%Fd7&ecQ>Q=uenEWKjx&W&SBzy?WdK%XZo7fFYN zRldMsJBSl*5CaLzt3`~w+4vMz1}o59Q8#4KpF)0i-eqcA@jZiOGcVOxfjx;kG{&yj zv?O@0O=CYUX*QC2CGo|pdj8yo5Fj%}nL+_GhpcPkN7)Z##qSJ;w(%M!Or{183nhL3 zB_ll&)*V#n&EU#^I-Nc&KiUzsrT7zjab1Shrc=b{Q~lti5Y>b+@HoKg>}beIMfe%dieBB`P$nr`}=pVgnpjM zCHFJTFtwtVm!Qjpc;NaVjH1`L-!F>0<5|E8_ub7{tVRAMA797ck(+pzZKG_jCq$m- zN%ccu*IA4qmbe$KK_6}>HGyG%!C>qw+CcXp_^DTydKt-{}wc{+bz` zAMSDFLJ5E*{zA8MVZ}J*O4X4ptU5m=h+l-A%D|K!s<;YeCkiiCN$^y82Udjp16za#cRgEFuy11|ar*)vjNGV*`A z{e+2JZBM?kd*0jzF&Z~o)pE=$JZbcp_VPq(7FoUnEy5li){NbO#D+K*p32)U3o^>I zP=_2w5=8ht1<)rdC4Oewp;9{0^bXUf6)~m`)iz+XRgg-E-f^ASdgvYr-Gv4lZHLW%511*~VI?KwX%X)C8oF<%Ix?{ji30`r${HaO2`ET+JwB?k zbc9Q!Yd~~J(kYn@(6J_fHvPNBryPgZZ;0^->O{~znoH-BUrypXb{mw9N~>{{?DViQ z<}DW21fo(W5=3`^C}be@Z>MFpOnU!r_PbkcpZtgipNC=kNd>54x>4ID_=6{}a;_V- z4D4V%4i)H@Uomy##_E#f&a^N-<{RTzo{=|GZ}Yy z4xcpb0ivI=2YfGazQeLQXYO3mZj&f8biU{<@u1sOQnxKHrScPr3UoM?ow~ZZ_?=5x zJU9%#LoNP!hS8r=-~dkK_1L+42fNGMsb!*M2Mh)|_wkktkWB;ZiQm|&zIuAsYuu*G zpz-)L>6Psf%U>5~!1xWx0ts#+`@YaS5y%d6Mj~W$-)C@>2cw}`zhlP=aQ4J#RZo^_ zjpzIH>yP#D@aU589lX}v+kW?KN?12_8Uz0L5RRj_P=kzV4)ZvARVF2oyIowNP$)UhLGY%|f2r@AHo}AKnlL z)6}E8bs3K;(>5`}U&v?1t?z(Vo7MBzO2uj2cQI-@+`D^%<%~UL=Q|v|6*; z;i89vK;ZS?xA z7Ou8==S~yZyuCN)5!1(h5)bS?s1VZAC4YU$XN5@h*SR_p#_>aGzuO`V7w*%1DB}$~ z?DfkVHO7AXn;Xp!cRS=iVc8b)CUM=Af)>HQpS^7}y?VBLw-Rm2XSa9qP}-H&2-)Ja zDx2!BVghEg^MATz?W>8!nVVS#j0^y6vXv3{P*XSj2NDVUS;=*$aaLPc=$VTc(vrst zrKNdF1@xh}=Co~}y>q-Ozi{k)V(rPGi!=BmW~qDVfh^qYQ83B-N)*WV6o^0y!!w}1 z2(Gw5Y_!Qx!EO@hH%gonoq@{iH<~fj2Q~Mzd5ca`<21-T3X~UHPDU%%hdlCY9Q`|~m;TKT<{KUqgi_`kfnArh>yMgR_iHCQt;*F; z-eF-hEQ0#j;j*r)D7BWC?7!OP1ylhFp`3YDY_Z?KK&m}x+H<)PvC1lgi^bPuv zdHu3b>-6!lSB0Vtawc&F3$C#Wa_kbB`}RiMlpAJ;B{>}3B@s!_8he8q8GE9%Fjtc& z&gIDZ3E6&XjGAj$W6SYYtw1a3qCLz_av2}y_ndmo?zf(W9=4Sw`Ul+X;HXC`6Ef}V*iUmzJzn8YJS zdNXdk04{`=aT}qtL~MAyp#8F?u+Nv!*QaF_J8dpp0C@x{AB07-1k}fup;~TTd)v9h z^1~y#Zzd^;zdY*bQ{)2{H?hOBffqITbRS zPZMy7NOI6_tcHzmInBN~?svswo&+?d5NFDsdX@alL9(9x!tlcMuCs3`h}9ZRJy5Nr0z%&e{W&&|e@4#h3 znc%lvd`|%z5fWfIqoj}62X^VY4ue9wf^pix1b z%63Gqd|}LDmuH9>bj${no|5>~q2#6jnq>CbF=Ll09E@5;er&+Edug-sl3 zi!*|iH8F7xp7PFKI>R{^xY+*frkj?Gg4}oMn+DAv+$160+cuvJPr&xS98Z9X`M{xRvUu zOd(6@9A+jiFP6~w?i$ojudcm+H`QyC^svE%chO$7L07nJSBQiY-~=a~r*w`;i`$p# znX!o_?R(YBJ2qi%`-l!i!Hey3xVS3;G#%u}lqEzZGf1=gGURVcD1sX{>87Sl{7KD<6QeM>eWt78+W6_3M*0<9@(;q) zHxb)9&_g*MyQm<1PZ@-UsuW#@YA)9RRnE=omLGU}UQ-}^MFbZj5@A~W1ixUwz+lxA z_26a8riz!@PMB>xcCu<2N7+NOCoKO~Z?#xi#&I>daJ`T`+f@H1Ln>_p*g#mqoH2*4ZMPcSkdxEXCiXIA{| zh(bjML@IWneP9-;h87YDnWxIZ@S|;N`VX|KLspTXChD##NAT&4M%Beq=AnJ7+L@)pd*#Lt=7c93k zES~+=*Np|L0Lu3jSjCMz{UC5uai5U(lXtR4b||39P~;Jqj6cID2#S*Dv9UkOH(}uS z{sJ8H7Vv38&ry8|3&Xwr+`+6~qV zDiI_qU8{S|IItXVOMOH%593iWTMS1x@=8oEqol*!J_?Vc@X@jR^|VSA?)&qqQn+8Q z^nD44QFhx8ES+(Z?s}S15f)<6yq>2Jd0fP>-&gHbD+gbd{hW+x$~xq=hxkhrLJh;W z4%F%z^dpLbE?EzVUbqaXw^V~jyDuzQd>srs7ZAq@wvDgQd!iF+!}g<3RG*#E07tqQ1Kw7s>=VVp|EIRsG_VYO=PQ1T`xcN_H?U+ey|zL9 zTT)5ax8Ak&UD;isJ8Nyh+4o-cg8Io(DhNGZh_>pwy3ri0dh5D5$ZrE%V>$($&&PQv z57yM->}hdoPgzZzuVsUb(@=dS8Q5!2=AZummHJRy(|5#;F?C7+D&8I;SIYx;3Wv8A zfPpKzn1_%(46QX$wiAHNSmfP{e)1QOq*)cx+g>7F>Xif}b|sE=qTC}IIn_kqdI8NeVP zA95~k>^_}yJDu>xG}?sapV?nf>UY_Orym(+GJe)}xco#oLn^07^oUtlh(?-b)eY-i zU$AqBgE`9s>=iEM1GNC7-WZ$Pe=fc*spXgCH9xy8xr86l?i)QFZSxsxLTNWQg^oqF z&%H!Qg4#7|YD>Xwc-x^)uQEhrT=km-8ElwswO! z!`L6NyX@{r$(@}>a6;OF-v7-UPoaGN9~K-7OD2G)$VNFhN(e2bDTxe zyi^DTpXycU+`yFX=h2Oo=6>!4F3|x7ugBAckhBDa z`GAsAYqHBqF%PC1)kc^5HI#EPD3kewPRtt6PFT9c-;;^;IzLIXP;VXcwHaL0eKNS~ zw-IRfd+#6aWv&R;hyi@^$za6Gm)E~L&V7k^)JzENpl*SFxfT!uz}j7HBAQ2=ycFM_ zFfy-+xVUJ-NZj@9Sd=l%sGRhg64VlH*?MT}@$tF{on1}#&}Q5Lo6sE?+U|hrI2%s8 zJ5ZiO4^Ph*dI28UdPZWz$q*(8R8&DlqrpB8Fpix=u zb1yq)c$2qn&@3T5qqd3Stm2T4hUD!}n;zzhC;m`a*%X2xixP@6OoGd=G%Np#2I(iWur z!WUn^Gdn^fs#V?5xcPx{aGYf_zH-Zh_%LQ8+n({vAX_C`FDKa^o}G0jHhlu6*U!ZH zW!%rSl%-x;HsD@QXv%2<$gWoFBQeEQ0~)TQa5Fwywi3%7@T{YnCHiuIbsq;{uC$a8 zIp*iK<7#LIlYcGm4+uX|<_+9ufglG(UKvon0EgvIPP;CKf_vO2V(b@hAKiXC21nHR zJ9Bm*Z!cu3F>jpMZfm-2AUf&>EB_gslxSTUOhK6YptC`h3*LT>_*c9{1Hl3fcm)t# zuTUGOjo3Ute6PpC(>dq%$~aAOoo{n*OGUV$)=UJPK}eT@`2&rZ2bZCfB?fCap{)u4 zKfw0o(~6**MuRUV0n)-DH0Zr|@OEtSWS!cY?uvW3mc^0S&)Yh}Ug@(AKV4N$PWg2{ z@FV$QSmE;NiV?X@Vv4K50sWGDOvP4Gb=ur`pyDJk-7Ai~F4Al5KcR<_QySQ=bTGJ+ z(?Ef3HDggueyCZC)8hogoPex4&=Asx<|F@*{j}xkNj|F63@KGcYIn^tfomfwd}3vJ zkI7`?O6JaIxOU5gagi|1T8C`ix;{sCx0A50&-_|$laidXZ7c=@lNj`JS^yOx500%- zwJS7)C#O%9+al?APhwt`!vEH$U)^c6tXv|R^6Lg$%$8AD;MC+90q+yU6*RRrHr(Lf z+fi}!T(aBRr_DETZ~w~KX(MwH6{&e~9{-FQB@E&pC>s5JG4@7c{ceFv8t_SK)g-^y zNc_H1lsNWAZ=1DcorIMMt5+8)t#4C*hxqjCf37s;Blt0aAo z@ie1%h!A~j%cr*?`FPVX*q%lssxIBd;Uqa5C?U(B$WhtC6_EX3(S zGdy5KU!USN*|7z6g?PCKorBO(WBs;g_&IN_jdk(83EZYVcb21}2H z@$hJ!cjhk1%;_KBl{ZgZoUd4;%-i6PpWVmZkImxb;mVz~KC0UG8I6yJ-C(Bc)tNoZ zWle3Co=dsHAf!HdC~G9U>}%O~9ct)t*TE-!<2~Ox-7_abgn)SnLh0Aw0z^qFHY5=G zqhxY656&7i^FS8~vXxBlvddPqf%~n}pg4X-r$L!&Yrxm4*)OtooY?W={xSNZu!rlv zCC?;%wpi1U^9q>+klPB}q8onN2C%7slb{He|G;^FI&I}q<@CMA?3gD2uAtyDX}G~F z#!&+GVfTsibkB36@7tM6{K>AyYb-P*SxIds5LpI%$}>>-?NL^4pY%lt7IXpq(?nir zqH@QiJHj6^c>n?GQ072JdId)7$5TH;(#AzbT+aD7GmR2hMi%KULMA;ogtJ<@yHzst zRb?w`u~sGrAw4`}in;2+R5VoEFzC~-&iwgYe;c0TZ@?2B23cg~0Q98CXDrlDGLBT_ zo7vU`zNTeK8qaH4#3m(WK0DX9=-5@X0yeCJ_NLZ26ts;vWHTE;Q_X~XX(tOdwS~gJ z@x!wWm+#O~DU0*gq~%MT9V4?Q{tHsKNaJ!uS5OJD0bhFjZ8o)cCP3VTlP8w#3$nq} zd$C8T1&TbAA>xk_&C7L8oO0@)@rnn*vwj&=u7r_ac?H~Yw{W(P(-_I*p@D9ocl zBf^<|=Bmf!_>#xd4eEPT_{L>2hwivT6qd7v*J-T}rO;unhxD-n@vssORA{D5&L*Ut zhNOw@CDF1DCfo#m5%=AhX+LVs_QiiYX2Dbz4ENP##EB`hBCO4NTe0KoCY`FDw6um| z^GdKM^#%h4k~F{z0$oguy3fDJFaQxlr{fcY9~M<)8jJO=($eVp?!f=1;)0(>gC+hI zrKXouf7>g$^%~sZAnk}2UYN7)Id5yy70zhab@_UUW#v>hyEa%S7_Ovtl6QoyZ++GJ2fB}sRYHz z&+ST%Kj6kmWCEc56cH+uN03w@p0IrLdST}U`0g8iW`H~-8y+jiX?#^9gMa?`X*~7A^oX~9%xi%C>BQyCtgKzaD!`b=FJv>zVE{OK|6K_(oP>&&nlI| zoxM$Zw!3%CK8qm*w{-z`TaG|>Zn6wP0aO(m#T36bltbNifOuocPM8#YKo#45TA}=! zr{Vvw#E+*fA2c&ED9w}y5?H+(#H5Ado&_mL4uoKgAjHb!M;aa+wX|K@Xxp}>O7Kn9 zj%oX5@8Sr-q2hDHxJ#D{%%=PI){y1LOXA&JN_dUx=k=QTCYUbLipZgY|nUD}m&bvk7g5uB4NSz_<0}Gzp zfRg%DUY#y}Q?1gLzT*Ar%=q+NzVh;Ce{byTLwC%{z7}bow`~cFXT6G3rLTr^Lcr*tguzN-8Iz(74Nm{dp_JAW2wxX5Wj3ue*NXcK_`pl z6|e{R6;}THvR%^@9AjGBJ^p-pa0klX-w%LmuBXwqbo8iKznSgE4h}qBJa}jMI)jkj zgDZK2tNA>}y|1(&$2k>Wp-Y-Bc@#A+7p$tN`cKssr?1ff$>f2!x?=|K^ygGX+85h3 zAa+>=qd>jW%eD6br0UNp?9qlkdln{`(-cocl0s|t6>y>%C`VTSkgF$^v!+T>Xboa0 zb!_|pD()cM6Ra;j6;Ayq=>$!vAbAu8xGM75;p;!Pp-msq#-V&1;CmoaZci)~tXYSF zSb_Sn7TVpfaBs)q>gwyiQMe2RFi~~p?8MjsM20kbNWP}-vv8cO0CK|rfhXtubb?1z z@bUk7DIyuE-^DN>n|lB+n+!h<0+~`=pa0~+VU6%Q5J?<{3^Wi6u1KgO1&`Z0;di|V zJ6Ruz7j6&v@$4FmvEu06jwf=xkY4$I0UZZ(E^=1`!m%3(*@u53rVUfUsg1AG*&hha z=w-O|J%^$!jREgM-fWC56>Zk#u_!!*86xc{R0}&u5qb+*EMYcgD91# z?-l7>$Z!?{xxXGf#SNf8g@79{onBJG@}Z&%te3Pn4p?VU(d>l;*C2rNP?Q9YJ@aVZ z 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 diff --git a/data/readme.png b/data/readme.png deleted file mode 100644 index 73fabd284ce3a1d1c969f98c2aa1549273a55941..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 85176 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 From b25c540fbc2de8157251f29878be0e735bf13d96 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Fri, 8 Mar 2019 16:05:31 +0530 Subject: [PATCH 0008/2173] Comment out some print statements --- pep8speaks/helpers.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pep8speaks/helpers.py b/pep8speaks/helpers.py index 463422e6..a652e566 100644 --- a/pep8speaks/helpers.py +++ b/pep8speaks/helpers.py @@ -56,7 +56,7 @@ def read_setup_cfg_file(setup_config_file): if not setup_config_found: return new_config - print(setup_config_section) + # print(setup_config_section) # These ones are of type string keys = ["max-line-length", "count", "first", "show-pep8", "show-source", "statistics", "hang-closing"] for key in keys: @@ -82,7 +82,7 @@ def read_setup_cfg_file(setup_config_file): except KeyError: pass - print("new_config", new_config) + # print("new_config", new_config) return new_config @@ -117,7 +117,7 @@ def get_config(repo, base_branch, after_commit_hash): new_setup_config = read_setup_cfg_file(setup_config_file) config = utils.update_dict(config, new_setup_config) - print("config after updating", config) + # print("config after updating", config) # Read .pep8speaks.yml new_config_text = "" From 1cf24268e3f5f3e6fefe37d63a7aff6b24659b4a Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Fri, 8 Mar 2019 19:43:47 +0530 Subject: [PATCH 0009/2173] Add complete list of orgs and users --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c447c382..582e07f5 100644 --- a/README.md +++ b/README.md @@ -102,6 +102,8 @@ message: # Customize the comment made by the bot +See the [complete list of organizations and users](https://github.com/OrkoHunter/pep8speaks/wiki/List-of-users-and-orgs). + # Miscellaneous features - Comment `@pep8speaks suggest diff` in a comment of the PR, and it will comment a gist of diff suggesting fixes for the PR. [Example](https://github.com/OrkoHunter/test-pep8speaks/pull/22#issuecomment-270826241) From edc1549ffb6c3edd27ef250b99e030d8f4258b0d Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sun, 10 Mar 2019 10:46:23 +0530 Subject: [PATCH 0010/2173] Fix bug in handling unsupported requests --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 95af9b50..d95f441b 100644 --- a/app.py +++ b/app.py @@ -53,7 +53,7 @@ def main(): try: return event_to_action[event](request) except KeyError: - handlers.handle_unsupported_requests(request) + return handlers.handle_unsupported_requests(request) else: return render_template('index.html') From d91f236291e24707336143a532aff19105db574d Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Mon, 11 Mar 2019 18:44:07 +0530 Subject: [PATCH 0011/2173] Update logo --- app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.json b/app.json index aee66413..de4f5243 100644 --- a/app.json +++ b/app.json @@ -2,7 +2,7 @@ "name": "PEP8Speaks", "description": "A GitHub integration to automatically review Python code style over Pull Requests", "repository": "https://github.com/OrkoHunter/pep8speaks", - "logo": "https://pep8speaks.com/img/my_logo.png", + "logo": "https://avatars1.githubusercontent.com/u/24736507?s=460&v=4", "website": "https://pep8speaks.com", "keywords": ["python"], "env" : { From 4fa5d8e17108bd817e000f144a91fccc8ee50651 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Mon, 11 Mar 2019 18:44:24 +0530 Subject: [PATCH 0012/2173] Add setup.cfg for flake8 --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000..4196a4ba --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +[flake8] +max-line-length = 120 +ignore = E266,E303,E128,E701,W504 From d6acbf1d3c386eb3944e5c11e2525342fa6a204d Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Mon, 11 Mar 2019 18:44:43 +0530 Subject: [PATCH 0013/2173] Remove psycopg2 as dependency --- requirements/base.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements/base.txt b/requirements/base.txt index 4970a3e7..886a9645 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -3,7 +3,6 @@ Flask-Session==0.3.0 flask==1.0.2 gunicorn==19.6.0 pycodestyle>=2.3.0 -psycopg2==2.7.3.1 PyYAML>=3.13 unidiff==0.5.3 autopep8>=1.3.1 From 121a045843fae3c895e91fddaf5393f33ef6d985 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Mon, 11 Mar 2019 18:46:47 +0530 Subject: [PATCH 0014/2173] Remove database for listing users, use GitHub star feature --- app.py | 22 ---------------------- pep8speaks/handlers.py | 2 +- pep8speaks/helpers.py | 18 ++++++------------ 3 files changed, 7 insertions(+), 35 deletions(-) diff --git a/app.py b/app.py index d95f441b..53a20292 100644 --- a/app.py +++ b/app.py @@ -1,9 +1,6 @@ # -*- coding: utf-8 -*- -import builtins import os -import urllib.parse as urlparse -import psycopg2 from flask import Flask, render_template, redirect, request from flask_session import Session @@ -11,25 +8,6 @@ def create_app(): - # For running locally without connecting to the database - if os.environ.get("OVER_HEROKU", False) is not False: - urlparse.uses_netloc.append("postgres") - url = urlparse.urlparse(os.environ["DATABASE_URL"]) - - conn = psycopg2.connect( - database=url.path[1:], - user=url.username, - password=url.password, - host=url.hostname, - port=url.port - ) - - cursor = conn.cursor() - - # Make the objects available across all the modules - builtins.conn = conn - builtins.cursor = cursor - app = Flask(__name__) sess = Session() diff --git a/pep8speaks/handlers.py b/pep8speaks/handlers.py index 592e5cff..c828af54 100644 --- a/pep8speaks/handlers.py +++ b/pep8speaks/handlers.py @@ -188,7 +188,7 @@ def handle_integration_installation_repo(request): helpers.update_users(repo["full_name"]) response_object = { - "message": f"Added the following repositories : {str(repositories)}" + "message": f"Starred the following repositories : {str(repositories)}" } return utils.Response(response_object) diff --git a/pep8speaks/helpers.py b/pep8speaks/helpers.py index a652e566..4713a7e0 100644 --- a/pep8speaks/helpers.py +++ b/pep8speaks/helpers.py @@ -9,24 +9,18 @@ import subprocess import time -import psycopg2 import unidiff import yaml from pep8speaks import utils def update_users(repository): - """Update users of the integration in the database""" - if os.environ.get("OVER_HEROKU", False) is not False: - # Check if repository exists in database - query = f"INSERT INTO Users (repository, created_at) VALUES ('{repository}', now());" - - # cursor and conn are bultins, defined in app.py - try: - cursor.execute(query) - conn.commit() - except psycopg2.IntegrityError: # If already exists - conn.rollback() + """Star the repository from the bot account""" + headers = { + "Content-Length": "0", + } + query = f"/user/starred/{repository}" + return utils.query_request(query=query, method='PUT', headers=headers) def follow_user(user): From fee4dec84bcd7157f30065eae518afd017eb0468 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Mon, 11 Mar 2019 21:52:36 +0530 Subject: [PATCH 0015/2173] Return back api query response --- pep8speaks/handlers.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pep8speaks/handlers.py b/pep8speaks/handlers.py index c828af54..f3a26582 100644 --- a/pep8speaks/handlers.py +++ b/pep8speaks/handlers.py @@ -171,9 +171,10 @@ def handle_integration_installation(request): Follow the user from the account of @pep8speaks on GitHub """ user = request.json["sender"]["login"] - helpers.follow_user(user) + query_response = helpers.follow_user(user).content.decode("utf-8") response_object = { - "message": f"Followed @{user}" + "message": f"Followed @{user}", + "query_response": query_response } return utils.Response(response_object) @@ -184,12 +185,17 @@ def handle_integration_installation_repo(request): """ repositories = request.json["repositories_added"] + responses = [] for repo in repositories: - helpers.update_users(repo["full_name"]) + responses.append(helpers.update_users(repo["full_name"]).content.decode("utf-8")) + + responses_str = "\n".join(responses) response_object = { - "message": f"Starred the following repositories : {str(repositories)}" + "message": f"Starred the following repositories : {str(repositories)}", + "responses": responses_str } + return utils.Response(response_object) From b5584b80e034e8bd964937440e34cc2da7ae6160 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Fri, 28 Dec 2018 21:53:49 +0530 Subject: [PATCH 0016/2173] Update Python version --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 24b2647b..cc3e63a7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ sudo: false language: python python: - - 3.6.4 + - 3.6 cache: directories: From a9a02a33db8b030fe8bf0b3c8b4fcd10bded1a8e Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Fri, 28 Dec 2018 22:51:43 +0530 Subject: [PATCH 0017/2173] Create auto-comment.yml --- .github/auto-comment.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .github/auto-comment.yml diff --git a/.github/auto-comment.yml b/.github/auto-comment.yml new file mode 100644 index 00000000..fb92fb7c --- /dev/null +++ b/.github/auto-comment.yml @@ -0,0 +1,5 @@ +# Comment to a new PR. +pullRequestOpened: > + Thank you for raising your pull request. + + The testing process of this repository are not traditional and are as follows - From 2825c0a0af2fe0277d018671eadbb1c40f0535f7 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 5 Feb 2019 15:33:44 +0530 Subject: [PATCH 0018/2173] WIP --- tests/pep8speaks/test_workflow.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tests/pep8speaks/test_workflow.py diff --git a/tests/pep8speaks/test_workflow.py b/tests/pep8speaks/test_workflow.py new file mode 100644 index 00000000..c7f22f06 --- /dev/null +++ b/tests/pep8speaks/test_workflow.py @@ -0,0 +1,21 @@ +""" +[ ] Create a new PR involving Python files with errors without .pep8speaks.yml +[ ] Create a new PR involving Python files with errors with .pep8speaks.yml +[ ] Create a new PR involving Python files without errors without .pep8speaks.yml +[ ] Create a new PR involving Python files without errors with .pep8speaks.yml +[ ] Create a new PR not involving Python files with errors +[ ] Add a new commit to an opened PR with fixing the issues with .pep8speaks.yml +[ ] Add a new commit to an opened PR with fixing the issues without .pep8speaks.yml +[ ] Add a new commit to an opened PR with maintaining the issues with .pep8speaks.yml +[ ] Add a new commit to an opened PR with maintaining the issues without .pep8speaks.yml +[ ] Add a new commit to an opened PR with creating new issues with .pep8speaks.yml +[ ] Add a new commit to an opened PR with creating new issues without .pep8speaks.yml +""" + +class TestFlow1(object): + + def setUp(self): + pass + + def test_one(self): + assert 1 == 1 From f3f4ed85c2446b91def7a27c58b4bd4f9e0e6269 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 01:40:43 +0530 Subject: [PATCH 0019/2173] Test workflow for PR 81 on test-pep8speaks --- tests/pep8speaks/test_workflow.py | 61 ++++++++++++++++++++++++++++--- 1 file changed, 56 insertions(+), 5 deletions(-) diff --git a/tests/pep8speaks/test_workflow.py b/tests/pep8speaks/test_workflow.py index c7f22f06..5b5cce9a 100644 --- a/tests/pep8speaks/test_workflow.py +++ b/tests/pep8speaks/test_workflow.py @@ -11,11 +11,62 @@ [ ] Add a new commit to an opened PR with creating new issues with .pep8speaks.yml [ ] Add a new commit to an opened PR with creating new issues without .pep8speaks.yml """ +import time +from pep8speaks.utils import query_request -class TestFlow1(object): +class TestFlow(object): - def setUp(self): - pass + def test_errors_without_pep8speaks_yml(self): + """See https://github.com/OrkoHunter/test-pep8speaks/pull/81""" + repo = "OrkoHunter/test-pep8speaks" + pr_number = 81 + expected_comment = ( + "Hello @OrkoHunter! Thanks for updating this PR. We checked the lines you've touched for [PEP 8](https://" + "www.python.org/dev/peps/pep-0008) issues, and found:\n\n* In the file [`modules/good_module.py`](https:/" + "/github.com/OrkoHunter/test-pep8speaks/blob/7bd64e782f605d3a4f7388c0c993ebb344a952c4/modules/good_module" + ".py):\n\n> [Line 14:80](https://github.com/OrkoHunter/test-pep8speaks/blob/7bd64e782f605d3a4f7388c0c993e" + "bb344a952c4/modules/good_module.py#L14): [E501](https://duckduckgo.com/?q=pep8%20E501) line too long (14" + "7 > 79 characters)\n> [Line 16:5](https://github.com/OrkoHunter/test-pep8speaks/blob/7bd64e782f605d3a4f7" + "388c0c993ebb344a952c4/modules/good_module.py#L16): [E266](https://duckduckgo.com/?q=pep8%20E266) too man" + "y leading '#' for block comment\n\n") - def test_one(self): - assert 1 == 1 + print(f"Testing https://github.com/{repo}/pull/{pr_number}") + + # Assuming only one comment is made and that too by @pep8speaks + query = f"/repos/{repo}/issues/{pr_number}/comments" + r = query_request(query=query) + assert r.ok == True + response_data = r.json() + assert len(response_data) == 1 + assert response_data[0]['user']['login'] == 'pep8speaks' + comment_id = response_data[0]['id'] + + # Delete the existing comment by @pep8speaks + query = f"/repos/{repo}/issues/comments/{comment_id}" + print(query) + r = query_request(query=query, method="DELETE") + print(r.content) + assert r.ok == True + + # Close the pull request + query = f"/repos/{repo}/pulls/{pr_number}" + r = query_request(query=query, method="PATCH", json={'state': 'closed'}) + assert r.ok == True + + # Reopen the pull request + query = f"/repos/{repo}/pulls/{pr_number}" + r = query_request(query=query, method="PATCH", json={'state': 'open'}) + assert r.ok == True + + # Now wait for 10 seconds for pep8speaks to comment + time.sleep(10) + # Verify the comment + query = f"/repos/{repo}/issues/{pr_number}/comments" + r = query_request(query=query) + assert r.ok == True + print(r.content) + print(r.reason) + response_data = r.json() + assert len(response_data) == 1 + assert response_data[0]['user']['login'] == 'pep8speaks' + assert response_data[0]["body"] == expected_comment From 2145d9d8e30bc8b6b8b2726a25ca764ede6a236a Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 02:12:51 +0530 Subject: [PATCH 0020/2173] Add testing for PR 82 and 83 --- tests/pep8speaks/test_workflow.py | 177 ++++++++++++++++++++---------- 1 file changed, 121 insertions(+), 56 deletions(-) diff --git a/tests/pep8speaks/test_workflow.py b/tests/pep8speaks/test_workflow.py index 5b5cce9a..54925ff0 100644 --- a/tests/pep8speaks/test_workflow.py +++ b/tests/pep8speaks/test_workflow.py @@ -14,59 +14,124 @@ import time from pep8speaks.utils import query_request -class TestFlow(object): - - def test_errors_without_pep8speaks_yml(self): - """See https://github.com/OrkoHunter/test-pep8speaks/pull/81""" - repo = "OrkoHunter/test-pep8speaks" - pr_number = 81 - expected_comment = ( - "Hello @OrkoHunter! Thanks for updating this PR. We checked the lines you've touched for [PEP 8](https://" - "www.python.org/dev/peps/pep-0008) issues, and found:\n\n* In the file [`modules/good_module.py`](https:/" - "/github.com/OrkoHunter/test-pep8speaks/blob/7bd64e782f605d3a4f7388c0c993ebb344a952c4/modules/good_module" - ".py):\n\n> [Line 14:80](https://github.com/OrkoHunter/test-pep8speaks/blob/7bd64e782f605d3a4f7388c0c993e" - "bb344a952c4/modules/good_module.py#L14): [E501](https://duckduckgo.com/?q=pep8%20E501) line too long (14" - "7 > 79 characters)\n> [Line 16:5](https://github.com/OrkoHunter/test-pep8speaks/blob/7bd64e782f605d3a4f7" - "388c0c993ebb344a952c4/modules/good_module.py#L16): [E266](https://duckduckgo.com/?q=pep8%20E266) too man" - "y leading '#' for block comment\n\n") - - print(f"Testing https://github.com/{repo}/pull/{pr_number}") - - # Assuming only one comment is made and that too by @pep8speaks - query = f"/repos/{repo}/issues/{pr_number}/comments" - r = query_request(query=query) - assert r.ok == True - response_data = r.json() - assert len(response_data) == 1 - assert response_data[0]['user']['login'] == 'pep8speaks' - comment_id = response_data[0]['id'] - - # Delete the existing comment by @pep8speaks - query = f"/repos/{repo}/issues/comments/{comment_id}" - print(query) - r = query_request(query=query, method="DELETE") - print(r.content) - assert r.ok == True - - # Close the pull request - query = f"/repos/{repo}/pulls/{pr_number}" - r = query_request(query=query, method="PATCH", json={'state': 'closed'}) - assert r.ok == True - - # Reopen the pull request - query = f"/repos/{repo}/pulls/{pr_number}" - r = query_request(query=query, method="PATCH", json={'state': 'open'}) - assert r.ok == True - - # Now wait for 10 seconds for pep8speaks to comment - time.sleep(10) - # Verify the comment - query = f"/repos/{repo}/issues/{pr_number}/comments" - r = query_request(query=query) - assert r.ok == True - print(r.content) - print(r.reason) - response_data = r.json() - assert len(response_data) == 1 - assert response_data[0]['user']['login'] == 'pep8speaks' - assert response_data[0]["body"] == expected_comment + +def _util_general_flow(repo, pr_number, expected_comment): + print(f"Testing https://github.com/{repo}/pull/{pr_number}") + + responses = [] + + # Assuming only one comment is made and that too by @pep8speaks + query = f"/repos/{repo}/issues/{pr_number}/comments" + r = query_request(query=query) + # assert r.ok == True + responses.append(r.ok) + response_data = r.json() + # assert len(response_data) == 1 + # assert response_data[0]['user']['login'] == 'pep8speaks' + comment_id = response_data[0]['id'] + + # Delete the existing comment by @pep8speaks + query = f"/repos/{repo}/issues/comments/{comment_id}" + r = query_request(query=query, method="DELETE") + # assert r.ok == True + responses.append(r.ok) + + # Close the pull request + query = f"/repos/{repo}/pulls/{pr_number}" + r = query_request(query=query, method="PATCH", json={'state': 'closed'}) + # assert r.ok == True + responses.append(r.ok) + + # Reopen the pull request + query = f"/repos/{repo}/pulls/{pr_number}" + r = query_request(query=query, method="PATCH", json={'state': 'open'}) + # assert r.ok == True + responses.append(r.ok) + + # Now wait for 10 seconds for pep8speaks to comment + time.sleep(10) + # Verify the comment + query = f"/repos/{repo}/issues/{pr_number}/comments" + r = query_request(query=query) + # assert r.ok == True + responses.append(r.ok) + response_data = r.json() + # assert len(response_data) == 1 + # assert response_data[0]['user']['login'] == 'pep8speaks' + + comment = response_data[0]["body"] + return responses, comment + + +def test_errors_without_pep8speaks_yml(): + """See https://github.com/OrkoHunter/test-pep8speaks/pull/81""" + repo = "OrkoHunter/test-pep8speaks" + pr_number = 81 + expected_comment = ( + "Hello @OrkoHunter! Thanks for updating this PR. We checked the lines you've touched for [PEP 8](https://" + "www.python.org/dev/peps/pep-0008) issues, and found:\n\n* In the file [`modules/good_module.py`](https:/" + "/github.com/OrkoHunter/test-pep8speaks/blob/7bd64e782f605d3a4f7388c0c993ebb344a952c4/modules/good_module" + ".py):\n\n> [Line 14:80](https://github.com/OrkoHunter/test-pep8speaks/blob/7bd64e782f605d3a4f7388c0c993e" + "bb344a952c4/modules/good_module.py#L14): [E501](https://duckduckgo.com/?q=pep8%20E501) line too long (14" + "7 > 79 characters)\n> [Line 16:5](https://github.com/OrkoHunter/test-pep8speaks/blob/7bd64e782f605d3a4f7" + "388c0c993ebb344a952c4/modules/good_module.py#L16): [E266](https://duckduckgo.com/?q=pep8%20E266) too man" + "y leading '#' for block comment\n\n") + + responses, comment = _util_general_flow(repo, pr_number, expected_comment) + assert all(responses) == True + assert comment == expected_comment + + +def test_errors_with_pep8speaks_yml(): + """See https://github.com/OrkoHunter/test-pep8speaks/pull/82""" + repo = "OrkoHunter/test-pep8speaks" + pr_number = 82 + expected_comment = ( + "Hello @OrkoHunter! Thanks for updating this PR. We checked the lines you've touched for [PEP 8](https://" + "www.python.org/dev/peps/pep-0008) issues, and found:\n\n* In the file [`modules/good_module.py`](https:/" + "/github.com/OrkoHunter/test-pep8speaks/blob/076c6c107250b61f9bec84230e5c2aa63c337901/modules/good_module" + ".py):\n\n> [Line 14:82](https://github.com/OrkoHunter/test-pep8speaks/blob/076c6c107250b61f9bec84230e5c2" + "aa63c337901/modules/good_module.py#L14): [E501](https://duckduckgo.com/?q=pep8%20E501) line too long (16" + "7 > 81 characters)\n> [Line 18:1](https://github.com/OrkoHunter/test-pep8speaks/blob/076c6c107250b61f9be" + "c84230e5c2aa63c337901/modules/good_module.py#L18): [W293](https://duckduckgo.com/?q=pep8%20W293) blank l" + "ine contains whitespace\n\n" + ) + + responses, comment = _util_general_flow(repo, pr_number, expected_comment) + assert all(responses) == True + assert comment == expected_comment + + +def test_errors_with_setup_cfg_and_pep8speaks_yml(): + """See https://github.com/OrkoHunter/test-pep8speaks/pull/83""" + repo = "OrkoHunter/test-pep8speaks" + pr_number = 83 + expected_comment = ( + "Hello @OrkoHunter! Thanks for updating this PR. We checked the lines you've touched for [PEP 8](https://" + "www.python.org/dev/peps/pep-0008) issues, and found:\n\n* In the file [`modules/good_module.py`](https:/" + "/github.com/OrkoHunter/test-pep8speaks/blob/d2dfbb72f2e72758bad016b682e5f9a5a38d5599/modules/good_module" + ".py):\n\n> [Line 2:1](https://github.com/OrkoHunter/test-pep8speaks/blob/d2dfbb72f2e72758bad016b682e5f9a" + "5a38d5599/modules/good_module.py#L2): [E265](https://duckduckgo.com/?q=pep8%20E265) block comment should" + " start with '# '\n> [Line 13:1](https://github.com/OrkoHunter/test-pep8speaks/blob/d2dfbb72f2e72758bad01" + "6b682e5f9a5a38d5599/modules/good_module.py#L13): [E302](https://duckduckgo.com/?q=pep8%20E302) expected " + "2 blank lines, found 1\n> [Line 13:11](https://github.com/OrkoHunter/test-pep8speaks/blob/d2dfbb72f2e727" + "58bad016b682e5f9a5a38d5599/modules/good_module.py#L13): [E203](https://duckduckgo.com/?q=pep8%20E203) wh" + "itespace before ':'\n> [Line 14:82](https://github.com/OrkoHunter/test-pep8speaks/blob/d2dfbb72f2e72758b" + "ad016b682e5f9a5a38d5599/modules/good_module.py#L14): [E501](https://duckduckgo.com/?q=pep8%20E501) line " + "too long (159 > 81 characters)\n> [Line 16:1](https://github.com/OrkoHunter/test-pep8speaks/blob/d2dfbb7" + "2f2e72758bad016b682e5f9a5a38d5599/modules/good_module.py#L16): [W293](https://duckduckgo.com/?q=pep8%20W" + "293) blank line contains whitespace\n> [Line 17:5](https://github.com/OrkoHunter/test-pep8speaks/blob/d2" + "dfbb72f2e72758bad016b682e5f9a5a38d5599/modules/good_module.py#L17): [E266](https://duckduckgo.com/?q=pep" + "8%20E266) too many leading '#' for block comment\n> [Line 18:1](https://github.com/OrkoHunter/test-pep8s" + "peaks/blob/d2dfbb72f2e72758bad016b682e5f9a5a38d5599/modules/good_module.py#L18): [W293](https://duckduck" + "go.com/?q=pep8%20W293) blank line contains whitespace\n> [Line 19:11](https://github.com/OrkoHunter/test" + "-pep8speaks/blob/d2dfbb72f2e72758bad016b682e5f9a5a38d5599/modules/good_module.py#L19): [E225](https://du" + "ckduckgo.com/?q=pep8%20E225) missing whitespace around operator\n> [Line 40:1](https://github.com/OrkoHu" + "nter/test-pep8speaks/blob/d2dfbb72f2e72758bad016b682e5f9a5a38d5599/modules/good_module.py#L40): [E305](h" + "ttps://duckduckgo.com/?q=pep8%20E305) expected 2 blank lines after class or function definition, found 1" + "\n\n" + ) + + responses, comment = _util_general_flow(repo, pr_number, expected_comment) + assert all(responses) == True + assert comment == expected_comment From cdc8447cc1d1a7ecbdf2cba75a6859085816e579 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 02:20:22 +0530 Subject: [PATCH 0021/2173] Fix environment variables test in test_util.py --- tests/pep8speaks/test_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/pep8speaks/test_utils.py b/tests/pep8speaks/test_utils.py index 082a03fb..37e14e95 100644 --- a/tests/pep8speaks/test_utils.py +++ b/tests/pep8speaks/test_utils.py @@ -1,4 +1,5 @@ import hmac +import os import pytest import werkzeug import mock @@ -19,7 +20,7 @@ def test_request(self, mocker, query, method, json, data, headers, params): assert mock_func.call_count == 1 assert mock_func.call_args[0][0] == method assert mock_func.call_args[1]['headers'] == headers - assert mock_func.call_args[1]['auth'] == ('', '') + assert mock_func.call_args[1]['auth'] == (os.environ['BOT_USERNAME'], os.environ['GITHUB_TOKEN']) assert mock_func.call_args[1]['params'] == params assert mock_func.call_args[1]['json'] == json if query[0] == "/": From 1fa27c8825767db4a62700c773d06f502f18a1b5 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 02:33:23 +0530 Subject: [PATCH 0022/2173] Update auto-comment bot's comment --- .github/auto-comment.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/auto-comment.yml b/.github/auto-comment.yml index fb92fb7c..3a95b276 100644 --- a/.github/auto-comment.yml +++ b/.github/auto-comment.yml @@ -1,5 +1,7 @@ # Comment to a new PR. pullRequestOpened: > - Thank you for raising your pull request. + :sparkling_heart: Thank you so much for raising the pull request! :sparkling_heart: - The testing process of this repository are not traditional and are as follows - + This pull request is going to be deployed on Heroku with payload URL https://pep8speaks-pr-xxx.herokuapp.com - The repository https://github.com/OrkoHunter/test-pep8speaks is configured to test review deployments like this. + + @OrkoHunter please update the `Webhook URL` of the [test-pep8speaks app](https://github.com/settings/apps/test-pep8speaks) and restart CI to test this branch. From 1b2e3da1b97812e744ef7396eae366345680276b Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 02:35:41 +0530 Subject: [PATCH 0023/2173] [skip ci] Fix pep8 issues --- tests/pep8speaks/test_workflow.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/pep8speaks/test_workflow.py b/tests/pep8speaks/test_workflow.py index 54925ff0..3fd3dd92 100644 --- a/tests/pep8speaks/test_workflow.py +++ b/tests/pep8speaks/test_workflow.py @@ -28,7 +28,7 @@ def _util_general_flow(repo, pr_number, expected_comment): response_data = r.json() # assert len(response_data) == 1 # assert response_data[0]['user']['login'] == 'pep8speaks' - comment_id = response_data[0]['id'] + comment_id = response_data[0]['id'] # Delete the existing comment by @pep8speaks query = f"/repos/{repo}/issues/comments/{comment_id}" @@ -78,7 +78,7 @@ def test_errors_without_pep8speaks_yml(): "y leading '#' for block comment\n\n") responses, comment = _util_general_flow(repo, pr_number, expected_comment) - assert all(responses) == True + assert all(responses) is True assert comment == expected_comment @@ -98,7 +98,7 @@ def test_errors_with_pep8speaks_yml(): ) responses, comment = _util_general_flow(repo, pr_number, expected_comment) - assert all(responses) == True + assert all(responses) is True assert comment == expected_comment @@ -133,5 +133,5 @@ def test_errors_with_setup_cfg_and_pep8speaks_yml(): ) responses, comment = _util_general_flow(repo, pr_number, expected_comment) - assert all(responses) == True + assert all(responses) is True assert comment == expected_comment From 7682ff6676189e3d7bf71ebbfc7283780757860e Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 02:57:41 +0530 Subject: [PATCH 0024/2173] Add logging --- app.py | 12 ++++++++---- pep8speaks/handlers.py | 7 +++++++ 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/app.py b/app.py index 53a20292..d17db61e 100644 --- a/app.py +++ b/app.py @@ -13,12 +13,13 @@ def create_app(): @app.route("/", methods=['GET', 'POST']) def main(): - if request.method == "GET": - return redirect("https://pep8speaks.com") - elif request.method == "POST": + """Main function to handle all requests.""" + if request.method == "POST": # GitHub sends the secret key in the payload header if utils.match_webhook_secret(request): event = request.headers["X-GitHub-Event"] + app.logger.debug(f"Request Headers:\n{request.headers}") + app.logger.debug(f"Request body:\n{request.json}") event_to_action = { "pull_request": handlers.handle_pull_request, "integration_installation": handlers.handle_integration_installation, @@ -32,8 +33,11 @@ def main(): return event_to_action[event](request) except KeyError: return handlers.handle_unsupported_requests(request) + else: + app.logger.info("Received an unauthorized request") + return handlers.handle_unauthorized_requests() else: - return render_template('index.html') + return redirect("https://pep8speaks.com") app.secret_key = os.environ.setdefault("APP_SECRET_KEY", "") app.config['SESSION_TYPE'] = 'filesystem' diff --git a/pep8speaks/handlers.py b/pep8speaks/handlers.py index f3a26582..655e281f 100644 --- a/pep8speaks/handlers.py +++ b/pep8speaks/handlers.py @@ -211,3 +211,10 @@ def handle_unsupported_requests(request): "unsupported github event": request.headers["X-GitHub-Event"], } return utils.Response(response_object, 400) + + +def handle_unauthorized_requests(): + response_object = { + "message": "Unauthorized request" + } + return utils.Response(response_object, 401) From 7132b97612bcf35e7cf339ad3c4879f973634ea4 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 03:13:05 +0530 Subject: [PATCH 0025/2173] Update to view logs on Heroku --- Procfile | 2 +- app.py | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Procfile b/Procfile index 8001d1a5..ca6e941c 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: gunicorn app:app \ No newline at end of file +web: gunicorn app:app diff --git a/app.py b/app.py index d17db61e..363ddb25 100644 --- a/app.py +++ b/app.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +import logging import os +import sys from flask import Flask, render_template, redirect, request from flask_session import Session @@ -11,6 +13,8 @@ def create_app(): app = Flask(__name__) sess = Session() + logging.basicConfig(stream=sys.stdout, level=logging.DEBUG) + @app.route("/", methods=['GET', 'POST']) def main(): """Main function to handle all requests.""" From a4f9168dd7e4b74bc069c56854bca81d24b88489 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 04:05:20 +0530 Subject: [PATCH 0026/2173] Update example of .pep8speaks.yml in README --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 582e07f5..22f5a6a5 100644 --- a/README.md +++ b/README.md @@ -32,9 +32,11 @@ A GitHub :octocat: app to automatically review Python code style over Pull Reque pycodestyle: max-line-length: 100 # Default is 79 in PEP 8 ignore: # Errors and warnings to ignore - - W391 - - E203 - - W504 + - W504 # line break after binary operator + - E402 # module level import not at top of file + - E731 # do not assign a lambda expression, use a def + - C406 # Unnecessary list literal - rewrite as a dict literal. + - E741 # ambiguous variable name scanner: diff_only: True # If False, the entire file touched by the Pull Request is scanned for errors. If True, only the diff is scanned. From 8441ef5619dafacc79191ee2357e1079de82e634 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 14:55:29 +0530 Subject: [PATCH 0027/2173] Changed default config format from json to yaml --- README.md | 2 +- data/default_config.json | 30 ---------------------------- data/default_pep8speaks.yml | 40 +++++++++++++++++++++++++++++++++++++ 3 files changed, 41 insertions(+), 31 deletions(-) delete mode 100644 data/default_config.json create mode 100644 data/default_pep8speaks.yml diff --git a/README.md b/README.md index 22f5a6a5..cb865464 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ message: # Customize the comment made by the bot ``` **Notes:** -- Default settings are in [data/default_config.json](data/default_config.json). Your `.pep8speaks.yml` will override these values. +- Default settings are in [data/default_pep8speaks.yml](data/default_pep8speaks.yml). Your `.pep8speaks.yml` will override these values. - For every Pull Request, the bot looks for `.pep8speaks.yml` in the `base` branch (the existing one). If the file is not found, it then searches the `head` branch (the incoming changes). - For pycodestyle/flake8 configurations (like `ignore` or `max-line-length`), PEP8Speaks will look and prioritize configurations in the following order : - `pycodestyle:` section of `.pep8speaks.yml` diff --git a/data/default_config.json b/data/default_config.json deleted file mode 100644 index ddd67ed5..00000000 --- a/data/default_config.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "message": { - "opened": { - "header": "", - "footer": "" - }, - "updated": { - "header": "", - "footer": "" - }, - "no_errors": "There are currently no PEP 8 issues detected in this Pull Request. Cheers! :beers: " - }, - "scanner": {"diff_only": true}, - "pycodestyle": { - "ignore": [], - "max-line-length": 79, - "count": false, - "first": false, - "show-pep8": false, - "filename": [], - "exclude": [], - "select": [], - "show-source": false, - "statistics": false, - "hang-closing": false - }, - "no_blank_comment": true, - "only_mention_files_with_errors": true, - "descending_issues_order": false -} diff --git a/data/default_pep8speaks.yml b/data/default_pep8speaks.yml new file mode 100644 index 00000000..5326ffd9 --- /dev/null +++ b/data/default_pep8speaks.yml @@ -0,0 +1,40 @@ +scanner: + diff_only: True # If False, the entire file touched by the Pull Request is scanned for errors. If True, only the diff is scanned. + linter: pycodestyle # Alternative option - flake8 + +pycodestyle: # Valid if scanner.linter is pycodestyle + max-line-length: 79 + ignore: [] # Errors and warnings to ignore + exclude: [] # File path patterns to exclude + count: False + first: False + show-pep8: False + show-source: False + statistics: False + hang-closing: False + filename: [] + select: [] + +flake8: # Valid if scanner.linter is flake8 + max-line-length: 79 + ignore: [] + exclude: [] + count: False + show-source: False + statistics: False + hang-closing: False + filename: [] + select: [] + +no_blank_comment: True # If True, no comment is made on PR without any errors. +descending_issues_order: False # If True, PEP 8 issues in message will be displayed in descending order of line numbers in the file +only_mention_files_with_errors: True # If False, a separate status section for each file is made in the comment. + +message: # Customize the comment made by the bot + opened: # Messages when a new PR is submitted + header: "" + footer: "" + updated: # Messages when a PR is updated + header: "" + footer: "" + no_errors: "There are currently no PEP 8 issues detected in this Pull Request. Cheers! :beers: " From 49e4a55a6c01397c299eb3760bc29982434de5a2 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 15:11:28 +0530 Subject: [PATCH 0028/2173] Update README about flake8 addition --- README.md | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index cb865464..68c1709a 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,8 @@ A GitHub :octocat: app to automatically review Python code style over Pull Reque - The bot makes **a single comment on the Pull Request and keeps updating it** on new commits. No hustle on emails ! - The bot **comments only if Python files are involved**. So, install the integration on all of your repositories. The bot would not comment where it should not. - By default, the bot does not comment if there are no PEP 8 issues. You can change this in configuration. -- The bot can read `setup.cfg` for `[flake8]` or `[pycodestyle]` section for PEP 8 customization. Check out the `Configuration` section below. +- **You can use choose between `pycodestyle` or `flake8` as your linter.** The bot can read configurations for both. +- The bot can read your `setup.cfg` for `[flake8]` and `[pycodestyle]` sections. Check out the `Configuration` section below. # Configuration **A config file is not required for the integration to work**. However it can be configured additionally by adding a `.pep8speaks.yml` file in the root of the project. Here is an example : @@ -29,7 +30,11 @@ A GitHub :octocat: app to automatically review Python code style over Pull Reque ```yaml # File : .pep8speaks.yml -pycodestyle: +scanner: + diff_only: True # If False, the entire file touched by the Pull Request is scanned for errors. If True, only the diff is scanned. + linter: pycodestyle # Other option is flake8 + +pycodestyle: # Same as scanner.linter value. Other option is flake8 max-line-length: 100 # Default is 79 in PEP 8 ignore: # Errors and warnings to ignore - W504 # line break after binary operator @@ -38,12 +43,8 @@ pycodestyle: - C406 # Unnecessary list literal - rewrite as a dict literal. - E741 # ambiguous variable name -scanner: - diff_only: True # If False, the entire file touched by the Pull Request is scanned for errors. If True, only the diff is scanned. - no_blank_comment: True # If True, no comment is made on PR without any errors. descending_issues_order: False # If True, PEP 8 issues in message will be displayed in descending order of line numbers in the file -only_mention_files_with_errors: True # If False, a separate status section for each file is made in the comment. message: # Customize the comment made by the bot opened: # Messages when a new PR is submitted @@ -60,10 +61,14 @@ message: # Customize the comment made by the bot **Notes:** - Default settings are in [data/default_pep8speaks.yml](data/default_pep8speaks.yml). Your `.pep8speaks.yml` will override these values. - For every Pull Request, the bot looks for `.pep8speaks.yml` in the `base` branch (the existing one). If the file is not found, it then searches the `head` branch (the incoming changes). -- For pycodestyle/flake8 configurations (like `ignore` or `max-line-length`), PEP8Speaks will look and prioritize configurations in the following order : - - `pycodestyle:` section of `.pep8speaks.yml` +- Set the value of `scanner.linter` to either `pycodestyle` or `flake8` + - flake8 is a wrapper around pycodestyle with additional enforcements. +- For linter configurations (like `ignore` or `max-line-length`), PEP8Speaks will look and prioritize configurations in the following order : + - `pycodestyle:` or `flake8:` section of `.pep8speaks.yml`. + - This depends upon the `scanner.linter` value. - `[pycodestyle]` or `[flake8]` section of `setup.cfg` file in the root of the project. -- Read more about the [pycodestyle options](https://pycodestyle.readthedocs.io/en/latest/intro.html#example-usage-and-output) + - This is independent of `scanner.linter`. So, `[flake8]` section of `setup.cfg` will also work for pycodestyle. +- Read more on [pycodestyle](http://pycodestyle.pycqa.org/en/latest/) and [flake8](http://flake8.pycqa.org/en/latest/) documentation. # Popular Users From 7396f3c8ae177bbad91b839d3ff178b1dd5919ad Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 15:11:51 +0530 Subject: [PATCH 0029/2173] Allow users to choose between pycodestyle and flake8 --- pep8speaks/helpers.py | 91 ++++++++++++++++++++++++++----------------- 1 file changed, 55 insertions(+), 36 deletions(-) diff --git a/pep8speaks/helpers.py b/pep8speaks/helpers.py index 4713a7e0..d94311a0 100644 --- a/pep8speaks/helpers.py +++ b/pep8speaks/helpers.py @@ -4,7 +4,9 @@ import configparser import datetime import json +import logging import os +from pathlib import Path import re import subprocess import time @@ -33,7 +35,7 @@ def follow_user(user): def read_setup_cfg_file(setup_config_file): - """Return a dictionary for pycodestyle section""" + """Return a dictionary for pycodestyle/flake8 section""" setup_config = configparser.ConfigParser() setup_config.read_string(setup_config_file) @@ -45,12 +47,11 @@ def read_setup_cfg_file(setup_config_file): setup_config_section = setup_config["flake8"] setup_config_found = True - new_config = {"pycodestyle": {}} + linter_cfg_config = {} if not setup_config_found: - return new_config + return linter_cfg_config - # print(setup_config_section) # These ones are of type string keys = ["max-line-length", "count", "first", "show-pep8", "show-source", "statistics", "hang-closing"] for key in keys: @@ -59,7 +60,7 @@ def read_setup_cfg_file(setup_config_file): value = value.split(" ")[0].strip(",#") # In case there are comments on the line if key == "max-line-length": value = int(value) - new_config["pycodestyle"][key] = value + linter_cfg_config[key] = value except KeyError: pass @@ -72,12 +73,11 @@ def read_setup_cfg_file(setup_config_file): item = line.split(" ")[0].strip(",#") if len(item) > 0: items.append(item) - new_config["pycodestyle"][key] = items + linter_cfg_config[key] = items except KeyError: pass - # print("new_config", new_config) - return new_config + return linter_cfg_config def get_config(repo, base_branch, after_commit_hash): @@ -90,12 +90,13 @@ def get_config(repo, base_branch, after_commit_hash): """ # Default configuration parameters - default_config_path = os.path.join(os.path.dirname(__file__), '..', 'data', 'default_config.json') - with open(default_config_path) as config_file: - config = json.loads(config_file.read()) + default_config = Path(__file__).absolute().parent.parent.joinpath("data", "default_pep8speaks.yml") + with open(default_config, "r") as config_file: + config = yaml.safe_load(config_file) + linters = ["pycodestyle", "flake8"] - # Read setup.cfg for [pycodestyle] or [flake8] + # Read setup.cfg for [pycodestyle] or [flake8] section setup_config_file = "" query = f"https://raw.githubusercontent.com/{repo}/{base_branch}/setup.cfg" r = utils.query_request(query) @@ -108,10 +109,13 @@ def get_config(repo, base_branch, after_commit_hash): setup_config_file = r_new.text if len(setup_config_file) > 0: - new_setup_config = read_setup_cfg_file(setup_config_file) + linter_cfg_config = read_setup_cfg_file(setup_config_file) + # Copy the cfg config for all linters + new_setup_config = {} + for linter in linters: + new_setup_config[linter] = linter_cfg_config config = utils.update_dict(config, new_setup_config) - # print("config after updating", config) # Read .pep8speaks.yml new_config_text = "" @@ -135,22 +139,24 @@ def get_config(repo, base_branch, after_commit_hash): except yaml.YAMLError: # Bad YAML file pass - # Create pycodestyle command line arguments - arguments = [] - confs = config["pycodestyle"] - for key, value in confs.items(): - if value: # Non empty - if isinstance(value, int): - if isinstance(value, bool): - arguments.append(f"--{key}") - else: - arguments.append(f"--{key}={value}") - elif isinstance(value, list): - arguments.append(f"--{key}={','.join(value)}") - config["pycodestyle_cmd_config"] = f' {" ".join(arguments)}' - - # pycodestyle is case-sensitive - config["pycodestyle"]["ignore"] = [e.upper() for e in list(config["pycodestyle"]["ignore"])] + # Create pycodestyle and flake8 command line arguments + for linter in linters: + confs = config.get(linter, dict()) + arguments = [] + for key, value in confs.items(): + if value: # Non empty + if isinstance(value, int): + if isinstance(value, bool): + arguments.append(f"--{key}") + else: + arguments.append(f"--{key}={value}") + elif isinstance(value, list): + arguments.append(f"--{key}={','.join(value)}") + config[f"{linter}_cmd_config"] = f' {" ".join(arguments)}' + + # linters are case-sensitive with error codes + for linter in linters: + config[linter]["ignore"] = [e.upper() for e in list(config[linter]["ignore"])] return config @@ -219,7 +225,10 @@ def run_pycodestyle(ghrequest, config): file_to_check.write(r.text) # Use the command line here - cmd = f'pycodestyle {config["pycodestyle_cmd_config"]} file_to_check.py' + if config["scanner"]["linter"] == "flake8": + cmd = f'flake8 {config["flake8_cmd_config"]} file_to_check.py' + else: + cmd = f'pycodestyle {config["pycodestyle_cmd_config"]} file_to_check.py' proc = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE) stdout, _ = proc.communicate() ghrequest.extra_results[filename] = stdout.decode(r.encoding).splitlines() @@ -227,10 +236,16 @@ def run_pycodestyle(ghrequest, config): # Put only relevant errors in the ghrequest.results dictionary ghrequest.results[filename] = [] for error in list(ghrequest.extra_results[filename]): - if re.search(r"^file_to_check.py:\d+:\d+:\s[WE]\d+\s.*", error): + relevant_error_pattern = r"^file_to_check.py:\d+:\d+:\s[WEF]\d+\s.*" + # Other error codes are B C D T + if re.search(relevant_error_pattern, error): ghrequest.results[filename].append(error.replace("file_to_check.py", filename)) ghrequest.extra_results[filename].remove(error) + # Replace file_to_check.py with filename in all additional errors + extras = ghrequest.extra_results[filename] + ghrequest.extra_results[filename] = [e.replace("file_to_check.py", filename) for e in extras] + ## Remove errors in case of diff_only = True ## which are caused in the whole file for error in list(ghrequest.results[filename]): @@ -301,10 +316,14 @@ def prepare_comment(ghrequest, config): comment_body.append("\n\n") if ghrequest.extra_results[gh_file]: - comment_body.append("* Additional results for this file:\n\n") - comment_body.append( - "> " + "".join(ghrequest.extra_results[gh_file])) - comment_body.append("---\n\n") + logging.debug("There are extra results which are not being printed.") + logging.debug(ghrequest.extra_results[gh_file]) + # comment_body.append("* Additional results for this file:\n\n> ") + # comment_body.append( + # "\n> ".join(ghrequest.extra_results[gh_file])) + # comment_body.append("\n---\n\n") + # Extra results are disabled now because flake8 generates a lot of error codes + # The acceptable ones are listed in relevant_error_pattern in run_pycodestyle if config["only_mention_files_with_errors"] and not ERROR: comment_body.append(config["message"]["no_errors"]) From 44b8444a684843a02b18e74b0f2e56ce1cfc9676 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 15:21:03 +0530 Subject: [PATCH 0030/2173] Add flake8 to requirements.txt --- requirements/base.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements/base.txt b/requirements/base.txt index 886a9645..84bf37d7 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -3,6 +3,7 @@ Flask-Session==0.3.0 flask==1.0.2 gunicorn==19.6.0 pycodestyle>=2.3.0 +flake8>=3.7.7 PyYAML>=3.13 unidiff==0.5.3 autopep8>=1.3.1 From b0e448add9ad836c42c8e6e07023792f40135dd9 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 15:47:56 +0530 Subject: [PATCH 0031/2173] Fix linter config for excluding files --- pep8speaks/helpers.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pep8speaks/helpers.py b/pep8speaks/helpers.py index d94311a0..b2471d5b 100644 --- a/pep8speaks/helpers.py +++ b/pep8speaks/helpers.py @@ -110,7 +110,7 @@ def get_config(repo, base_branch, after_commit_hash): if len(setup_config_file) > 0: linter_cfg_config = read_setup_cfg_file(setup_config_file) - # Copy the cfg config for all linters + # Copy the setup.cfg config for all linters new_setup_config = {} for linter in linters: new_setup_config[linter] = linter_cfg_config @@ -204,16 +204,17 @@ def check_pythonic_pr(repo, pr_number): def run_pycodestyle(ghrequest, config): """ - Runs the pycodestyle cli tool on the files and update ghrequest + Runs the linter cli tool on the files and update ghrequest """ + linter = config["scanner"]["linter"] # Either pycodestyle or flake8 repo = ghrequest.repository pr_number = ghrequest.pr_number commit = ghrequest.after_commit_hash - # Run pycodestyle + # Run linter ## All the python files with additions # A dictionary with filename paired with list of new line numbers - files_to_exclude = config["pycodestyle"]["exclude"] + files_to_exclude = config["linter"]["exclude"] py_files = get_py_files_in_pr(repo, pr_number, files_to_exclude) ghrequest.links = {} # UI Link of each updated file in the PR From 736e82eb00db28a3841af2618420639983e19bef Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 18:01:28 +0530 Subject: [PATCH 0032/2173] Allow pep8speaks to review self created PRs This is needed for testing. --- pep8speaks/handlers.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pep8speaks/handlers.py b/pep8speaks/handlers.py index 655e281f..dff45717 100644 --- a/pep8speaks/handlers.py +++ b/pep8speaks/handlers.py @@ -58,11 +58,6 @@ def handle_pull_request(request): if not helpers.comment_permission_check(ghrequest): return utils.Response(ghrequest) - # Do not run on PR's created by pep8speaks which use autopep8 - # Too much noisy - if ghrequest.author == "pep8speaks": - return utils.Response(ghrequest) - # NOW, Interact with the PR and make/update the comment helpers.create_or_update_comment(ghrequest, comment, ONLY_UPDATE_COMMENT_BUT_NOT_CREATE) From 3939f4032c353e519227cbc778888f7d2a6e61c0 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 18:16:47 +0530 Subject: [PATCH 0033/2173] Remove try/except to find out error --- app.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 363ddb25..1bdbd370 100644 --- a/app.py +++ b/app.py @@ -33,9 +33,10 @@ def main(): "issue_comment": handlers.handle_issue_comment, "installation": handlers.handle_installation, } - try: + supported_event = event in event_to_action + if supported_event: return event_to_action[event](request) - except KeyError: + else: return handlers.handle_unsupported_requests(request) else: app.logger.info("Received an unauthorized request") From 4f2b31d8563f4275e8d5fea0b066088b7d7ddfea Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 18:24:54 +0530 Subject: [PATCH 0034/2173] Fix linter bug in pep8speaks/helpers.py --- pep8speaks/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep8speaks/helpers.py b/pep8speaks/helpers.py index b2471d5b..0978cfe5 100644 --- a/pep8speaks/helpers.py +++ b/pep8speaks/helpers.py @@ -214,7 +214,7 @@ def run_pycodestyle(ghrequest, config): # Run linter ## All the python files with additions # A dictionary with filename paired with list of new line numbers - files_to_exclude = config["linter"]["exclude"] + files_to_exclude = config[linter]["exclude"] py_files = get_py_files_in_pr(repo, pr_number, files_to_exclude) ghrequest.links = {} # UI Link of each updated file in the PR From 81c2f1ecd89c73bbe900a0d587f7a45e5e1ab838 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 21:52:44 +0530 Subject: [PATCH 0035/2173] Change testing workflow Create a New branch from the existing branches per test Create a Pull Request Wait for pep8speaks to comment Verify the comment Close the PR and delete the branch This flow is safe so that new builds can be restarted even if the last ones errored. --- tests/pep8speaks/test_workflow.py | 131 +++++++++++++++++++----------- 1 file changed, 84 insertions(+), 47 deletions(-) diff --git a/tests/pep8speaks/test_workflow.py b/tests/pep8speaks/test_workflow.py index 3fd3dd92..5646c324 100644 --- a/tests/pep8speaks/test_workflow.py +++ b/tests/pep8speaks/test_workflow.py @@ -11,64 +11,94 @@ [ ] Add a new commit to an opened PR with creating new issues with .pep8speaks.yml [ ] Add a new commit to an opened PR with creating new issues without .pep8speaks.yml """ +import os import time +import uuid from pep8speaks.utils import query_request -def _util_general_flow(repo, pr_number, expected_comment): - print(f"Testing https://github.com/{repo}/pull/{pr_number}") +def create_a_new_pr(repo, expected_comment, head, sha, base="master"): + # Get the list of sha of the repo at + # https://api.github.com/repos/OrkoHunter/test-pep8speaks/git/refs/heads/ + + print(f"Testing https://github.com/{repo}/tree/{head}") + print("Waiting is required to to avoid triggering GitHub API abuse") + + responses_ok = [] # Store all GitHub requests r.ok variable and assert at the end. This + # will enable debugging the requests + + # Create a new branch from the head branch for a new PR + new_branch = f"{head}-{uuid.uuid4().hex}" + request_json = { + "ref": f"refs/heads/{new_branch}", + "sha": sha, + } + query = f"/repos/{repo}/git/refs" + r = query_request(query, method="POST", json=request_json) + responses_ok.append(r.ok) + if r.ok: + print("New branch created!") + + # Create a pull request with the newly created branch and base branch on repo + if os.environ.get("TRAVIS_PULL_REQUEST", False): + pr_number = os.environ.get("TRAVIS_PULL_REQUEST") + pr_title = f"Testing PR #{os.environ} on OrkoHunter/PEP8Speaks" + pr_body = f"Testing https://github.com/OrkoHunter/pep8speaks/pull/{pr_number}\n\n" + else: + pr_title = "Testing new changes" + pr_body = "Not triggered by Travis.\n\n" + + pr_body += f"---\n*Expected Result -*\n\n---\n{expected_comment}\n---" + + request_body = { + 'title': pr_title, + 'body': pr_body, + 'base': base, + 'head': new_branch + } + + query = f"/repos/{repo}/pulls" + r = query_request(query=query, method="POST", json=request_body) + responses_ok.append(r.ok) + response_data = r.json() + print(response_data) + test_pr_number = response_data['number'] + print(f"Test PR Number #{test_pr_number}") - responses = [] + # Wait for @pep8speaks to comment + time.sleep(20) - # Assuming only one comment is made and that too by @pep8speaks - query = f"/repos/{repo}/issues/{pr_number}/comments" + # Get the comment by @pep8speaks + query = f"/repos/{repo}/issues/{test_pr_number}/comments" r = query_request(query=query) - # assert r.ok == True - responses.append(r.ok) + responses_ok.append(r.ok) response_data = r.json() - # assert len(response_data) == 1 - # assert response_data[0]['user']['login'] == 'pep8speaks' - comment_id = response_data[0]['id'] - - # Delete the existing comment by @pep8speaks - query = f"/repos/{repo}/issues/comments/{comment_id}" - r = query_request(query=query, method="DELETE") - # assert r.ok == True - responses.append(r.ok) + print("response_data for comments check ", response_data) + comment = response_data[0]["body"] # Close the pull request - query = f"/repos/{repo}/pulls/{pr_number}" + query = f"/repos/{repo}/pulls/{test_pr_number}" r = query_request(query=query, method="PATCH", json={'state': 'closed'}) - # assert r.ok == True - responses.append(r.ok) - - # Reopen the pull request - query = f"/repos/{repo}/pulls/{pr_number}" - r = query_request(query=query, method="PATCH", json={'state': 'open'}) - # assert r.ok == True - responses.append(r.ok) - - # Now wait for 10 seconds for pep8speaks to comment - time.sleep(10) - # Verify the comment - query = f"/repos/{repo}/issues/{pr_number}/comments" - r = query_request(query=query) - # assert r.ok == True - responses.append(r.ok) - response_data = r.json() - # assert len(response_data) == 1 - # assert response_data[0]['user']['login'] == 'pep8speaks' + responses_ok.append(r.ok) + print("For closing the PR") + print(r.content.decode("utf-8")) - comment = response_data[0]["body"] - return responses, comment + # Delete the branch + query = f"/repos/{repo}/git/refs/heads/{new_branch}" + r = query_request(query=query, method="DELETE") + responses_ok.append(r.ok) + + return responses_ok, comment def test_errors_without_pep8speaks_yml(): - """See https://github.com/OrkoHunter/test-pep8speaks/pull/81""" + """See https://github.com/{repo}/tree/{head}""" repo = "OrkoHunter/test-pep8speaks" + head = "test-errors-without-pep8speaks.yml" + sha = "7bd64e782f605d3a4f7388c0c993ebb344a952c4" pr_number = 81 expected_comment = ( - "Hello @OrkoHunter! Thanks for updating this PR. We checked the lines you've touched for [PEP 8](https://" + "Hello @pep8speaks! Thanks for opening this PR. We checked the lines you've touched for [PEP 8](https://" "www.python.org/dev/peps/pep-0008) issues, and found:\n\n* In the file [`modules/good_module.py`](https:/" "/github.com/OrkoHunter/test-pep8speaks/blob/7bd64e782f605d3a4f7388c0c993ebb344a952c4/modules/good_module" ".py):\n\n> [Line 14:80](https://github.com/OrkoHunter/test-pep8speaks/blob/7bd64e782f605d3a4f7388c0c993e" @@ -77,17 +107,19 @@ def test_errors_without_pep8speaks_yml(): "388c0c993ebb344a952c4/modules/good_module.py#L16): [E266](https://duckduckgo.com/?q=pep8%20E266) too man" "y leading '#' for block comment\n\n") - responses, comment = _util_general_flow(repo, pr_number, expected_comment) + responses, comment = create_a_new_pr(repo, expected_comment, head, sha) assert all(responses) is True assert comment == expected_comment def test_errors_with_pep8speaks_yml(): - """See https://github.com/OrkoHunter/test-pep8speaks/pull/82""" + """See https://github.com/{repo}/tree/{head}""" repo = "OrkoHunter/test-pep8speaks" + head = "test-errors-with-pep8speaks.yml" + sha = "076c6c107250b61f9bec84230e5c2aa63c337901" pr_number = 82 expected_comment = ( - "Hello @OrkoHunter! Thanks for updating this PR. We checked the lines you've touched for [PEP 8](https://" + "Hello @pep8speaks! Thanks for opening this PR. We checked the lines you've touched for [PEP 8](https://" "www.python.org/dev/peps/pep-0008) issues, and found:\n\n* In the file [`modules/good_module.py`](https:/" "/github.com/OrkoHunter/test-pep8speaks/blob/076c6c107250b61f9bec84230e5c2aa63c337901/modules/good_module" ".py):\n\n> [Line 14:82](https://github.com/OrkoHunter/test-pep8speaks/blob/076c6c107250b61f9bec84230e5c2" @@ -97,17 +129,19 @@ def test_errors_with_pep8speaks_yml(): "ine contains whitespace\n\n" ) - responses, comment = _util_general_flow(repo, pr_number, expected_comment) + responses, comment = create_a_new_pr(repo, expected_comment, head, sha) assert all(responses) is True assert comment == expected_comment def test_errors_with_setup_cfg_and_pep8speaks_yml(): - """See https://github.com/OrkoHunter/test-pep8speaks/pull/83""" + """See https://github.com/{repo}/tree/{head}""" repo = "OrkoHunter/test-pep8speaks" + head = "test-errors-with-setup.cfg-and-pep8speaks.yml" + sha = "d2dfbb72f2e72758bad016b682e5f9a5a38d5599" pr_number = 83 expected_comment = ( - "Hello @OrkoHunter! Thanks for updating this PR. We checked the lines you've touched for [PEP 8](https://" + "Hello @pep8speaks! Thanks for opening this PR. We checked the lines you've touched for [PEP 8](https://" "www.python.org/dev/peps/pep-0008) issues, and found:\n\n* In the file [`modules/good_module.py`](https:/" "/github.com/OrkoHunter/test-pep8speaks/blob/d2dfbb72f2e72758bad016b682e5f9a5a38d5599/modules/good_module" ".py):\n\n> [Line 2:1](https://github.com/OrkoHunter/test-pep8speaks/blob/d2dfbb72f2e72758bad016b682e5f9a" @@ -132,6 +166,9 @@ def test_errors_with_setup_cfg_and_pep8speaks_yml(): "\n\n" ) - responses, comment = _util_general_flow(repo, pr_number, expected_comment) + responses, comment = create_a_new_pr(repo, expected_comment, head, sha) assert all(responses) is True assert comment == expected_comment + +if __name__ == "__main__": + test_errors_with_pep8speaks_yml() From 933c6208b478d56f71bd8d2d18e1803989aba8ae Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 21:59:06 +0530 Subject: [PATCH 0036/2173] Fix pep8 issues --- tests/pep8speaks/test_workflow.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/pep8speaks/test_workflow.py b/tests/pep8speaks/test_workflow.py index 5646c324..22fea11d 100644 --- a/tests/pep8speaks/test_workflow.py +++ b/tests/pep8speaks/test_workflow.py @@ -25,7 +25,7 @@ def create_a_new_pr(repo, expected_comment, head, sha, base="master"): print("Waiting is required to to avoid triggering GitHub API abuse") responses_ok = [] # Store all GitHub requests r.ok variable and assert at the end. This - # will enable debugging the requests + # will enable debugging the requests # Create a new branch from the head branch for a new PR new_branch = f"{head}-{uuid.uuid4().hex}" @@ -169,6 +169,3 @@ def test_errors_with_setup_cfg_and_pep8speaks_yml(): responses, comment = create_a_new_pr(repo, expected_comment, head, sha) assert all(responses) is True assert comment == expected_comment - -if __name__ == "__main__": - test_errors_with_pep8speaks_yml() From 29127c21ab9230018b6b8bbc6488652faa6dfb7f Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 21:59:22 +0530 Subject: [PATCH 0037/2173] Wait for 60 seconds before starting the build --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index cc3e63a7..8d2529dd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,10 @@ cache: install: - pip install -r requirements/test.txt +before_script: + - echo "Waiting 60 seconds for new deployment of the branch" + - sleep 60s + script: - pytest From f0397ed33bf5409d15c2e642a8b956e536177c6d Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 22:30:00 +0530 Subject: [PATCH 0038/2173] Fix bug in Test PR title --- tests/pep8speaks/test_workflow.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/pep8speaks/test_workflow.py b/tests/pep8speaks/test_workflow.py index 22fea11d..e601b7ba 100644 --- a/tests/pep8speaks/test_workflow.py +++ b/tests/pep8speaks/test_workflow.py @@ -40,10 +40,10 @@ def create_a_new_pr(repo, expected_comment, head, sha, base="master"): print("New branch created!") # Create a pull request with the newly created branch and base branch on repo - if os.environ.get("TRAVIS_PULL_REQUEST", False): - pr_number = os.environ.get("TRAVIS_PULL_REQUEST") - pr_title = f"Testing PR #{os.environ} on OrkoHunter/PEP8Speaks" - pr_body = f"Testing https://github.com/OrkoHunter/pep8speaks/pull/{pr_number}\n\n" + TRAVIS_PR_NUMBER = os.environ.get("TRAVIS_PULL_REQUEST", False) + if TRAVIS_PR_NUMBER: + pr_title = f"Testing PR #{TRAVIS_PR_NUMBER} on OrkoHunter/PEP8Speaks" + pr_body = f"Testing https://github.com/OrkoHunter/pep8speaks/pull/{TRAVIS_PR_NUMBER}\n\n" else: pr_title = "Testing new changes" pr_body = "Not triggered by Travis.\n\n" From d8fe611d20cc15d3aea62d2dc767e08a35142b15 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 Mar 2019 22:54:22 +0530 Subject: [PATCH 0039/2173] Add branch protection rule to avoid deleting them accidently --- tests/pep8speaks/test_workflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pep8speaks/test_workflow.py b/tests/pep8speaks/test_workflow.py index e601b7ba..5bf1a6b1 100644 --- a/tests/pep8speaks/test_workflow.py +++ b/tests/pep8speaks/test_workflow.py @@ -28,7 +28,7 @@ def create_a_new_pr(repo, expected_comment, head, sha, base="master"): # will enable debugging the requests # Create a new branch from the head branch for a new PR - new_branch = f"{head}-{uuid.uuid4().hex}" + new_branch = f"{uuid.uuid4().hex}-{head}" request_json = { "ref": f"refs/heads/{new_branch}", "sha": sha, From 50943fb62878c6f374b213acde8ed2532622974d Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Wed, 13 Mar 2019 00:44:21 +0530 Subject: [PATCH 0040/2173] Add test for flake8 configuration --- tests/pep8speaks/test_workflow.py | 91 ++++++++++++++++++++++++------- 1 file changed, 70 insertions(+), 21 deletions(-) diff --git a/tests/pep8speaks/test_workflow.py b/tests/pep8speaks/test_workflow.py index 5bf1a6b1..11256fed 100644 --- a/tests/pep8speaks/test_workflow.py +++ b/tests/pep8speaks/test_workflow.py @@ -1,25 +1,31 @@ -""" -[ ] Create a new PR involving Python files with errors without .pep8speaks.yml -[ ] Create a new PR involving Python files with errors with .pep8speaks.yml -[ ] Create a new PR involving Python files without errors without .pep8speaks.yml -[ ] Create a new PR involving Python files without errors with .pep8speaks.yml -[ ] Create a new PR not involving Python files with errors -[ ] Add a new commit to an opened PR with fixing the issues with .pep8speaks.yml -[ ] Add a new commit to an opened PR with fixing the issues without .pep8speaks.yml -[ ] Add a new commit to an opened PR with maintaining the issues with .pep8speaks.yml -[ ] Add a new commit to an opened PR with maintaining the issues without .pep8speaks.yml -[ ] Add a new commit to an opened PR with creating new issues with .pep8speaks.yml -[ ] Add a new commit to an opened PR with creating new issues without .pep8speaks.yml -""" import os import time import uuid from pep8speaks.utils import query_request +""" +**Testing workflow is as follows** +* Each branch on https://github.com/OrkoHunter/test-pep8speaks correspond to a type of test. +* The test functions create a new branch from the existing branches. +* The new branches are then used to create a Pull Request on the master branch of the test repository. +* Meanwhile, the PR responsible to run the tests gets deployed on a test Heroku app. +* @OrkoHunter has to manually update Webhook URL of the test-PEP8Speaks app installed on the test repo. (This can be automated) +* We then expect @pep8speaks to make the comment. +* If the comment is not what we expected for if the bot does not comment at all, the test fails. +* Finally, the test closes the PR and deletes the branch. + +**Keywords** +head: The new branch which is used to create the Pull Request. +base: The existing branch where the changes are supposed to pulled into. +sha: sha of the latest commit in the corresponding test branches. + Get the list of sha of the repo at + https://api.github.com/repos/OrkoHunter/test-pep8speaks/git/refs/heads/ + +""" + def create_a_new_pr(repo, expected_comment, head, sha, base="master"): - # Get the list of sha of the repo at - # https://api.github.com/repos/OrkoHunter/test-pep8speaks/git/refs/heads/ + """Create a new Pull Request on a test repository and verify the comment by pep8speaks.""" print(f"Testing https://github.com/{repo}/tree/{head}") print("Waiting is required to to avoid triggering GitHub API abuse") @@ -92,11 +98,12 @@ def create_a_new_pr(repo, expected_comment, head, sha, base="master"): def test_errors_without_pep8speaks_yml(): - """See https://github.com/{repo}/tree/{head}""" + """This Pull Request introduces PEP 8 errors to a Python file. Errors should be reported here with the default configuration. + + See https://github.com/{repo}/tree/{head}""" repo = "OrkoHunter/test-pep8speaks" head = "test-errors-without-pep8speaks.yml" sha = "7bd64e782f605d3a4f7388c0c993ebb344a952c4" - pr_number = 81 expected_comment = ( "Hello @pep8speaks! Thanks for opening this PR. We checked the lines you've touched for [PEP 8](https://" "www.python.org/dev/peps/pep-0008) issues, and found:\n\n* In the file [`modules/good_module.py`](https:/" @@ -113,11 +120,12 @@ def test_errors_without_pep8speaks_yml(): def test_errors_with_pep8speaks_yml(): - """See https://github.com/{repo}/tree/{head}""" + """This Pull Request introduces PEP 8 errors to a Python file. Errors should be reported here with the .pep8speaks.yml file present in this (head) branch since the base branch does not contain any .pep8speaks.yml + + See https://github.com/{repo}/tree/{head}""" repo = "OrkoHunter/test-pep8speaks" head = "test-errors-with-pep8speaks.yml" sha = "076c6c107250b61f9bec84230e5c2aa63c337901" - pr_number = 82 expected_comment = ( "Hello @pep8speaks! Thanks for opening this PR. We checked the lines you've touched for [PEP 8](https://" "www.python.org/dev/peps/pep-0008) issues, and found:\n\n* In the file [`modules/good_module.py`](https:/" @@ -135,11 +143,12 @@ def test_errors_with_pep8speaks_yml(): def test_errors_with_setup_cfg_and_pep8speaks_yml(): - """See https://github.com/{repo}/tree/{head}""" + """This Pull Request introduces PEP 8 errors to a Python file. Errors should be reported here with the .pep8speaks.yml and setup.cfg file present in this (head) branch since the base branch does not contain those files. + + See https://github.com/{repo}/tree/{head}""" repo = "OrkoHunter/test-pep8speaks" head = "test-errors-with-setup.cfg-and-pep8speaks.yml" sha = "d2dfbb72f2e72758bad016b682e5f9a5a38d5599" - pr_number = 83 expected_comment = ( "Hello @pep8speaks! Thanks for opening this PR. We checked the lines you've touched for [PEP 8](https://" "www.python.org/dev/peps/pep-0008) issues, and found:\n\n* In the file [`modules/good_module.py`](https:/" @@ -169,3 +178,43 @@ def test_errors_with_setup_cfg_and_pep8speaks_yml(): responses, comment = create_a_new_pr(repo, expected_comment, head, sha) assert all(responses) is True assert comment == expected_comment + + +def test_errors_with_flake8(): + """Use flake8 as linter and test its configuration.""" + + repo = "OrkoHunter/test-pep8speaks" + head = "test-errors-with-flake8" + sha = "b1ea9ab93d7ed0a357182f4bb4f44a002dafd71a" + expected_comment = ( + "Hello @OrkoHunter! Thanks for opening this PR. We checked the lines you've touched for [PEP 8](https://ww" + "w.python.org/dev/peps/pep-0008) issues, and found:\n\n* In the file [`modules/good_module.py`](https://git" + "hub.com/OrkoHunter/test-pep8speaks/blob/b1ea9ab93d7ed0a357182f4bb4f44a002dafd71a/modules/good_module.py" + "):\n\n> [Line 2:1](https://github.com/OrkoHunter/test-pep8speaks/blob/b1ea9ab93d7ed0a357182f4bb4f44a002daf" + "d71a/modules/good_module.py#L2): [E265](https://duckduckgo.com/?q=pep8%20E265) block comment should start " + "with '# '\n> [Line 9:18](https://github.com/OrkoHunter/test-pep8speaks/blob/b1ea9ab93d7ed0a357182f4bb4f44a" + "002dafd71a/modules/good_module.py#L9): [F821](https://duckduckgo.com/?q=pep8%20F821) undefined name 'htabl" + "e'\n> [Line 9:44](https://github.com/OrkoHunter/test-pep8speaks/blob/b1ea9ab93d7ed0a357182f4bb4f44a002dafd7" + "1a/modules/good_module.py#L9): [F821](https://duckduckgo.com/?q=pep8%20F821) undefined name 'values'\n> [Li" + "ne 13:1](https://github.com/OrkoHunter/test-pep8speaks/blob/b1ea9ab93d7ed0a357182f4bb4f44a002dafd71a/module" + "s/good_module.py#L13): [E302](https://duckduckgo.com/?q=pep8%20E302) expected 2 blank lines, found 1\n> [Li" + "ne 13:11](https://github.com/OrkoHunter/test-pep8speaks/blob/b1ea9ab93d7ed0a357182f4bb4f44a002dafd71a/modul" + "es/good_module.py#L13): [E203](https://duckduckgo.com/?q=pep8%20E203) whitespace before ':'\n> [Line 14:83]" + "(https://github.com/OrkoHunter/test-pep8speaks/blob/b1ea9ab93d7ed0a357182f4bb4f44a002dafd71a/modules/good_m" + "odule.py#L14): [E501](https://duckduckgo.com/?q=pep8%20E501) line too long (155 > 82 characters)\n> [Line 1" + "6:1](https://github.com/OrkoHunter/test-pep8speaks/blob/b1ea9ab93d7ed0a357182f4bb4f44a002dafd71a/modules/go" + "od_module.py#L16): [W293](https://duckduckgo.com/?q=pep8%20W293) blank line contains whitespace\n> [Line 17" + ":5](https://github.com/OrkoHunter/test-pep8speaks/blob/b1ea9ab93d7ed0a357182f4bb4f44a002dafd71a/modules/goo" + "d_module.py#L17): [E266](https://duckduckgo.com/?q=pep8%20E266) too many leading '#' for block comment\n> [" + "Line 18:1](https://github.com/OrkoHunter/test-pep8speaks/blob/b1ea9ab93d7ed0a357182f4bb4f44a002dafd71a/modu" + "les/good_module.py#L18): [W293](https://duckduckgo.com/?q=pep8%20W293) blank line contains whitespace\n> [L" + "ine 19:11](https://github.com/OrkoHunter/test-pep8speaks/blob/b1ea9ab93d7ed0a357182f4bb4f44a002dafd71a/modu" + "les/good_module.py#L19): [E225](https://duckduckgo.com/?q=pep8%20E225) missing whitespace around operator\n" + "> [Line 40:1](https://github.com/OrkoHunter/test-pep8speaks/blob/b1ea9ab93d7ed0a357182f4bb4f44a002dafd71a/m" + "odules/good_module.py#L40): [E305](https://duckduckgo.com/?q=pep8%20E305) expected 2 blank lines after clas" + "s or function definition, found 1\n\n" + ) + + responses, comment = create_a_new_pr(repo, expected_comment, head, sha) + assert all(responses) is True + assert comment == expected_comment From a69add956f2be57b8e198044e4c04bd78e19c37d Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Wed, 13 Mar 2019 00:50:12 +0530 Subject: [PATCH 0041/2173] Fix username in the new test --- tests/pep8speaks/test_workflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pep8speaks/test_workflow.py b/tests/pep8speaks/test_workflow.py index 11256fed..4b8293b1 100644 --- a/tests/pep8speaks/test_workflow.py +++ b/tests/pep8speaks/test_workflow.py @@ -187,7 +187,7 @@ def test_errors_with_flake8(): head = "test-errors-with-flake8" sha = "b1ea9ab93d7ed0a357182f4bb4f44a002dafd71a" expected_comment = ( - "Hello @OrkoHunter! Thanks for opening this PR. We checked the lines you've touched for [PEP 8](https://ww" + "Hello @pep8speaks! Thanks for opening this PR. We checked the lines you've touched for [PEP 8](https://ww" "w.python.org/dev/peps/pep-0008) issues, and found:\n\n* In the file [`modules/good_module.py`](https://git" "hub.com/OrkoHunter/test-pep8speaks/blob/b1ea9ab93d7ed0a357182f4bb4f44a002dafd71a/modules/good_module.py" "):\n\n> [Line 2:1](https://github.com/OrkoHunter/test-pep8speaks/blob/b1ea9ab93d7ed0a357182f4bb4f44a002daf" From ac8d61db2271124425ab678022d666d2ba11d45c Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Wed, 13 Mar 2019 00:58:12 +0530 Subject: [PATCH 0042/2173] Remove print statements from tests --- tests/pep8speaks/test_workflow.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/pep8speaks/test_workflow.py b/tests/pep8speaks/test_workflow.py index 4b8293b1..e9b4c60a 100644 --- a/tests/pep8speaks/test_workflow.py +++ b/tests/pep8speaks/test_workflow.py @@ -67,7 +67,7 @@ def create_a_new_pr(repo, expected_comment, head, sha, base="master"): r = query_request(query=query, method="POST", json=request_body) responses_ok.append(r.ok) response_data = r.json() - print(response_data) + # print(response_data) test_pr_number = response_data['number'] print(f"Test PR Number #{test_pr_number}") @@ -79,7 +79,7 @@ def create_a_new_pr(repo, expected_comment, head, sha, base="master"): r = query_request(query=query) responses_ok.append(r.ok) response_data = r.json() - print("response_data for comments check ", response_data) + # print("response_data for comments check ", response_data) comment = response_data[0]["body"] # Close the pull request @@ -87,7 +87,7 @@ def create_a_new_pr(repo, expected_comment, head, sha, base="master"): r = query_request(query=query, method="PATCH", json={'state': 'closed'}) responses_ok.append(r.ok) print("For closing the PR") - print(r.content.decode("utf-8")) + # print(r.content.decode("utf-8")) # Delete the branch query = f"/repos/{repo}/git/refs/heads/{new_branch}" From 22284c5761b77d1f99ebbb27826fac49277cc461 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Wed, 13 Mar 2019 01:08:06 +0530 Subject: [PATCH 0043/2173] Disable automatic review app build and update auto comment --- .github/auto-comment.yml | 8 +++++--- .travis.yml | 5 +---- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/auto-comment.yml b/.github/auto-comment.yml index 3a95b276..61aca229 100644 --- a/.github/auto-comment.yml +++ b/.github/auto-comment.yml @@ -1,7 +1,9 @@ # Comment to a new PR. pullRequestOpened: > - :sparkling_heart: Thank you so much for raising the pull request! :sparkling_heart: + :sparkling_heart: Thank you so much for creating the pull request! :sparkling_heart: - This pull request is going to be deployed on Heroku with payload URL https://pep8speaks-pr-xxx.herokuapp.com - The repository https://github.com/OrkoHunter/test-pep8speaks is configured to test review deployments like this. - @OrkoHunter please update the `Webhook URL` of the [test-pep8speaks app](https://github.com/settings/apps/test-pep8speaks) and restart CI to test this branch. + Have a look at [the test workflow](https://github.com/OrkoHunter/pep8speaks/blob/master/tests/pep8speaks/test_workflow.py). The branch of this pull request is going to be deployed on Heroku with payload URL https://pep8speaks-pr-xxx.herokuapp.com . The repository https://github.com/OrkoHunter/test-pep8speaks is configured to test review deployments like this. + + + @OrkoHunter Create a review app for this PR on Heroku and update the `Webhook URL` of the [test-pep8speaks app](https://github.com/settings/apps/test-pep8speaks). Finally restart Travis to test this PR. diff --git a/.travis.yml b/.travis.yml index 8d2529dd..36d11617 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,11 +12,8 @@ cache: install: - pip install -r requirements/test.txt -before_script: - - echo "Waiting 60 seconds for new deployment of the branch" - - sleep 60s - script: + - echo "Make sure you the review app of this branch is deployed and configured in the test-pep8speaks app" - pytest notifications: From a7c5716238d572eeebd787d8ef52f1b8e8d017b1 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Wed, 13 Mar 2019 10:23:13 +0530 Subject: [PATCH 0044/2173] Fix flake8 issues --- app.py | 2 +- tests/pep8speaks/test_workflow.py | 13 +++++++++---- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/app.py b/app.py index 1bdbd370..bfe516ec 100644 --- a/app.py +++ b/app.py @@ -3,7 +3,7 @@ import os import sys -from flask import Flask, render_template, redirect, request +from flask import Flask, redirect, request from flask_session import Session from pep8speaks import handlers, utils diff --git a/tests/pep8speaks/test_workflow.py b/tests/pep8speaks/test_workflow.py index e9b4c60a..431ba6fc 100644 --- a/tests/pep8speaks/test_workflow.py +++ b/tests/pep8speaks/test_workflow.py @@ -9,7 +9,8 @@ * The test functions create a new branch from the existing branches. * The new branches are then used to create a Pull Request on the master branch of the test repository. * Meanwhile, the PR responsible to run the tests gets deployed on a test Heroku app. -* @OrkoHunter has to manually update Webhook URL of the test-PEP8Speaks app installed on the test repo. (This can be automated) +* @OrkoHunter has to manually update Webhook URL of the test-PEP8Speaks app installed on the test + repo. (This can be automated) * We then expect @pep8speaks to make the comment. * If the comment is not what we expected for if the bot does not comment at all, the test fails. * Finally, the test closes the PR and deletes the branch. @@ -98,7 +99,8 @@ def create_a_new_pr(repo, expected_comment, head, sha, base="master"): def test_errors_without_pep8speaks_yml(): - """This Pull Request introduces PEP 8 errors to a Python file. Errors should be reported here with the default configuration. + """This Pull Request introduces PEP 8 errors to a Python file. Errors should be reported here with the + default configuration. See https://github.com/{repo}/tree/{head}""" repo = "OrkoHunter/test-pep8speaks" @@ -120,7 +122,8 @@ def test_errors_without_pep8speaks_yml(): def test_errors_with_pep8speaks_yml(): - """This Pull Request introduces PEP 8 errors to a Python file. Errors should be reported here with the .pep8speaks.yml file present in this (head) branch since the base branch does not contain any .pep8speaks.yml + """This Pull Request introduces PEP 8 errors to a Python file. Errors should be reported here with the + .pep8speaks.yml file present in this (head) branch since the base branch does not contain any .pep8speaks.yml See https://github.com/{repo}/tree/{head}""" repo = "OrkoHunter/test-pep8speaks" @@ -143,7 +146,9 @@ def test_errors_with_pep8speaks_yml(): def test_errors_with_setup_cfg_and_pep8speaks_yml(): - """This Pull Request introduces PEP 8 errors to a Python file. Errors should be reported here with the .pep8speaks.yml and setup.cfg file present in this (head) branch since the base branch does not contain those files. + """This Pull Request introduces PEP 8 errors to a Python file. Errors should be reported here with the + .pep8speaks.yml and setup.cfg file present in this (head) branch since the base branch does not contain + those files. See https://github.com/{repo}/tree/{head}""" repo = "OrkoHunter/test-pep8speaks" From 6cd4dee62c2cd3827d3345ff35a6cc19d3856c47 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Wed, 13 Mar 2019 10:24:56 +0530 Subject: [PATCH 0045/2173] Update pep8speaks linter for the project --- .pep8speaks.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.pep8speaks.yml b/.pep8speaks.yml index 0333370a..aa5d2caa 100644 --- a/.pep8speaks.yml +++ b/.pep8speaks.yml @@ -1,4 +1,8 @@ -pycodestyle: +scanner: + diff_only: True + linter: flake8 + +flake8: max-line-length: 120 # Default is 79 in PEP 8 ignore: # Errors and warnings to ignore - E266 From faf9822e35398cfff190d6f39448d8a74ab65889 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Wed, 13 Mar 2019 10:39:35 +0530 Subject: [PATCH 0046/2173] Add weekly digest bot --- .github/weekly-digest.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/weekly-digest.yml diff --git a/.github/weekly-digest.yml b/.github/weekly-digest.yml new file mode 100644 index 00000000..08cced63 --- /dev/null +++ b/.github/weekly-digest.yml @@ -0,0 +1,7 @@ +# Configuration for weekly-digest - https://github.com/apps/weekly-digest +publishDay: mon +canPublishIssues: true +canPublishPullRequests: true +canPublishContributors: true +canPublishStargazers: true +canPublishCommits: true From e69c8f57be3f46d14c84e3a0bc1fad09aab78489 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Wed, 13 Mar 2019 10:52:44 +0530 Subject: [PATCH 0047/2173] Add comment about post merge actions --- .github/auto-comment.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/auto-comment.yml b/.github/auto-comment.yml index 61aca229..23a56c4e 100644 --- a/.github/auto-comment.yml +++ b/.github/auto-comment.yml @@ -7,3 +7,5 @@ pullRequestOpened: > @OrkoHunter Create a review app for this PR on Heroku and update the `Webhook URL` of the [test-pep8speaks app](https://github.com/settings/apps/test-pep8speaks). Finally restart Travis to test this PR. + + Remember to redeploy the production app and revert the Webhook URL when the Pull Request is merged. From 6d2f37352498a702b31750e86d3400f2aaace4bb Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Wed, 13 Mar 2019 10:57:06 +0530 Subject: [PATCH 0048/2173] Fix behavior for TRAVIS_PR_NUMBER on Travis --- tests/pep8speaks/test_workflow.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/pep8speaks/test_workflow.py b/tests/pep8speaks/test_workflow.py index 431ba6fc..8617e150 100644 --- a/tests/pep8speaks/test_workflow.py +++ b/tests/pep8speaks/test_workflow.py @@ -47,11 +47,11 @@ def create_a_new_pr(repo, expected_comment, head, sha, base="master"): print("New branch created!") # Create a pull request with the newly created branch and base branch on repo - TRAVIS_PR_NUMBER = os.environ.get("TRAVIS_PULL_REQUEST", False) - if TRAVIS_PR_NUMBER: + try: + TRAVIS_PR_NUMBER = os.environ["TRAVIS_PR_NUMBER"] pr_title = f"Testing PR #{TRAVIS_PR_NUMBER} on OrkoHunter/PEP8Speaks" pr_body = f"Testing https://github.com/OrkoHunter/pep8speaks/pull/{TRAVIS_PR_NUMBER}\n\n" - else: + except KeyError: pr_title = "Testing new changes" pr_body = "Not triggered by Travis.\n\n" From ff7203e2585140d1f0069c6c88fd3c2b77ce7019 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Wed, 13 Mar 2019 11:12:51 +0530 Subject: [PATCH 0049/2173] Remove AUTHORS file, since contributors tab is up-to-date and more informative --- AUTHORS | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 AUTHORS diff --git a/AUTHORS b/AUTHORS deleted file mode 100644 index b28ea2cc..00000000 --- a/AUTHORS +++ /dev/null @@ -1,8 +0,0 @@ -All people who contributed to PEP8Speaks by sending at least one PR or more. -(List is in the order of the date of their first contribution) -@pep8speaks is very thankful to them. - -Himanshu Mishra <@OrkoHunter> -Kshitij Saraogi <@kshitij10496> -Ashwini Chaudhary <@ashwch> -chinskiy <@chinskiy> From bfd43c8c04322ab5c0f99fc874d6b55c4069dad7 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Wed, 13 Mar 2019 11:13:49 +0530 Subject: [PATCH 0050/2173] Move .github files to .github --- README.md => .github/README.md | 0 policy.md => .github/policy.md | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename README.md => .github/README.md (100%) rename policy.md => .github/policy.md (100%) diff --git a/README.md b/.github/README.md similarity index 100% rename from README.md rename to .github/README.md diff --git a/policy.md b/.github/policy.md similarity index 100% rename from policy.md rename to .github/policy.md From 6b575299632beb4ca6213de3661d7ab8d339476a Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Wed, 13 Mar 2019 11:15:56 +0530 Subject: [PATCH 0051/2173] [skip ci] Move readme files to .github --- .github/README.md | 4 ++-- {data => .github}/action.gif | Bin {data => .github}/logo.png | Bin 3 files changed, 2 insertions(+), 2 deletions(-) rename {data => .github}/action.gif (100%) rename {data => .github}/logo.png (100%) diff --git a/.github/README.md b/.github/README.md index 68c1709a..1cbdf754 100644 --- a/.github/README.md +++ b/.github/README.md @@ -2,13 +2,13 @@ A GitHub :octocat: app to automatically review Python code style over Pull Requests -

      +

      > "PEP 8 unto thyself, not unto others" - Raymond Hettinger # Example - + # How to Use? diff --git a/data/action.gif b/.github/action.gif similarity index 100% rename from data/action.gif rename to .github/action.gif diff --git a/data/logo.png b/.github/logo.png similarity index 100% rename from data/logo.png rename to .github/logo.png From 5ca6ab14b495a4443dd41d163a47cbfdf80202ec Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Wed, 13 Mar 2019 11:16:50 +0530 Subject: [PATCH 0052/2173] [skip ci] Move readme files to .github and correct path --- .github/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/README.md b/.github/README.md index 1cbdf754..ac6fd2ed 100644 --- a/.github/README.md +++ b/.github/README.md @@ -2,13 +2,13 @@ A GitHub :octocat: app to automatically review Python code style over Pull Requests -

      +

      > "PEP 8 unto thyself, not unto others" - Raymond Hettinger # Example - + # How to Use? From ace9d2658df4d8a9500bf0d9fd48549b5c8d161c Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Thu, 14 Mar 2019 02:53:15 +0530 Subject: [PATCH 0053/2173] [skip ci] Build a case for funding --- .github/README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/README.md b/.github/README.md index ac6fd2ed..673b7472 100644 --- a/.github/README.md +++ b/.github/README.md @@ -131,9 +131,18 @@ This app will only work for publicly hosted repositories. So if you are looking Updates to the app are announced using the GitHub Release feature over [here](https://github.com/OrkoHunter/pep8speaks/releases). A lot of major changes are made as the community grows bigger. Click on `Watch` -> `Releases only` on top of the page, to get notified about new configurations or feature updates. -# Contribute +# Support + +You can support the project by contributing to its development. If you have any suggestions for new features or improvements, please [create an issue](https://github.com/OrkoHunter/pep8speaks/issues/new). Pull Requests are most welcome ! Also, if you use this project and you like it, [please let me know](https://saythanks.io/to/OrkoHunter) :) + +The project requires to be hosted on a server and due to which, it needs financial support as well. + +Please read the [case for funding PEP 8 Speaks](https://github.com/OrkoHunter/pep8speaks/wiki/Funding). + +[![https://opencollective.com/pep8speaks/](https://opencollective.com/pep8speaks/tiers/backer.svg?avatarHeight=36)](https://opencollective.com/pep8speaks) +[![Donate](https://img.shields.io/liberapay/receives/OrkoHunter.svg?logo=liberapay)](https://liberapay.com/OrkoHunter) +[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.me/orkohunter) -If you have any suggestions for new features or improvements, please [create an issue](https://github.com/OrkoHunter/pep8speaks/issues/new). Pull Requests are most welcome ! Also, if you use this project and you like it, [please let me know](https://saythanks.io/to/OrkoHunter) :) :heart: From 0beb111b7d24ce809a5ad0682e23e0ff4b566332 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Thu, 14 Mar 2019 10:19:42 +0530 Subject: [PATCH 0054/2173] [skip ci] Fix path for data dir --- .github/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/README.md b/.github/README.md index 673b7472..eaaadb6d 100644 --- a/.github/README.md +++ b/.github/README.md @@ -59,7 +59,7 @@ message: # Customize the comment made by the bot ``` **Notes:** -- Default settings are in [data/default_pep8speaks.yml](data/default_pep8speaks.yml). Your `.pep8speaks.yml` will override these values. +- Default settings are in [data/default_pep8speaks.yml](/data/default_pep8speaks.yml). Your `.pep8speaks.yml` will override these values. - For every Pull Request, the bot looks for `.pep8speaks.yml` in the `base` branch (the existing one). If the file is not found, it then searches the `head` branch (the incoming changes). - Set the value of `scanner.linter` to either `pycodestyle` or `flake8` - flake8 is a wrapper around pycodestyle with additional enforcements. From 3b6cbcb7582a21314fe167d3421aa6600ccde389 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Thu, 14 Mar 2019 17:14:41 +0530 Subject: [PATCH 0055/2173] [skip ci] Update README with liberapay badge --- .github/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/README.md b/.github/README.md index eaaadb6d..e825d5d0 100644 --- a/.github/README.md +++ b/.github/README.md @@ -1,4 +1,5 @@ -# PEP 8 Speaks [![Build Status](https://travis-ci.org/OrkoHunter/pep8speaks.svg?branch=master)](https://travis-ci.org/OrkoHunter/pep8speaks) ![GitHub contributors](https://img.shields.io/github/contributors/OrkoHunter/pep8speaks.svg) [![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/OrkoHunter) +# PEP 8 Speaks [![Build Status](https://travis-ci.org/OrkoHunter/pep8speaks.svg?branch=master)](https://travis-ci.org/OrkoHunter/pep8speaks) ![GitHub contributors](https://img.shields.io/github/contributors/OrkoHunter/pep8speaks.svg) [![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/OrkoHunter) [![Donate on liberapay](https://img.shields.io/liberapay/receives/OrkoHunter.svg?logo=liberapay)](https://liberapay.com/OrkoHunter) + A GitHub :octocat: app to automatically review Python code style over Pull Requests From 79ef017ff680aab9c1f562203c9113ab3bcb151f Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Fri, 15 Mar 2019 11:28:44 +0530 Subject: [PATCH 0056/2173] Reject requests if bot can not access repository --- pep8speaks/models.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pep8speaks/models.py b/pep8speaks/models.py index 7e0730f9..abf54d51 100644 --- a/pep8speaks/models.py +++ b/pep8speaks/models.py @@ -8,7 +8,7 @@ def __init__(self, request, event): self.request = request.json self.event = event - self.OK = self._is_request_valid(request, event) + self.OK = self._is_request_valid(self.request, event) # Dictionary with filename matched with corresponding list of results self.results = {} @@ -23,6 +23,7 @@ def __init__(self, request, event): # Generic object for the pull request of payload self.pull_request = self._get_pull_request(request, event) + self._set_properties(request, event) def _get_pull_request(self, request, event): @@ -42,12 +43,17 @@ def _get_pull_request(self, request, event): return pull_request def _is_request_valid(self, request, event): + # The bot should be able to access the repository + r = utils.query_request(request['repository']['url']) + if not r.ok: + return False + # A valid pull request payload can only be created or updated with commits if event == 'pull_request': - if request.json['action'] in ['synchronize', 'opened', 'reopened']: + if request['action'] in ['synchronize', 'opened', 'reopened']: return True elif event == 'issue_comment': - if request.json['action'] in ('created', 'edited') and 'pull_request' in request.json['issue']: + if request['action'] in ('created', 'edited') and 'pull_request' in request.json['issue']: return True return False From 4b23c67ac98f4156e299c8f9683af401cfffc6c6 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Fri, 15 Mar 2019 17:48:21 +0530 Subject: [PATCH 0057/2173] Rename app.py to server.py --- Procfile | 2 +- conftest.py | 4 +++- app.py => server.py | 0 3 files changed, 4 insertions(+), 2 deletions(-) rename app.py => server.py (100%) diff --git a/Procfile b/Procfile index ca6e941c..caf67228 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: gunicorn app:app +web: gunicorn server:app diff --git a/conftest.py b/conftest.py index 86bbded0..fffbaaa3 100644 --- a/conftest.py +++ b/conftest.py @@ -1,5 +1,7 @@ +"""Fixture configuration for pytest.""" import pytest -from app import create_app + +from server import create_app @pytest.fixture diff --git a/app.py b/server.py similarity index 100% rename from app.py rename to server.py From 317b6e1d48420971783e19481878d3a7f86ca73d Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Fri, 15 Mar 2019 17:49:08 +0530 Subject: [PATCH 0058/2173] templates dir is not used anymore --- templates/index.html | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 templates/index.html diff --git a/templates/index.html b/templates/index.html deleted file mode 100644 index ad9f8241..00000000 --- a/templates/index.html +++ /dev/null @@ -1,9 +0,0 @@ - - - - PEP 8 Speaks - - - Server is up and running!

      Built from scratch. View
      Code - - From 7fca940dd14055eaeca3d228347ca0304df48322 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Fri, 15 Mar 2019 17:50:08 +0530 Subject: [PATCH 0059/2173] Move tests to separate local tests --- requirements/test.txt | 2 +- tests/local/__init__.py | 0 tests/{ => local}/pep8speaks/test_handlers.py | 0 tests/{ => local}/pep8speaks/test_helpers.py | 0 tests/{ => local}/pep8speaks/test_models.py | 0 tests/{ => local}/pep8speaks/test_utils.py | 0 tests/{test_app.py => local/test_server.py} | 0 tests/{pep8speaks => }/test_workflow.py | 0 8 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 tests/local/__init__.py rename tests/{ => local}/pep8speaks/test_handlers.py (100%) rename tests/{ => local}/pep8speaks/test_helpers.py (100%) rename tests/{ => local}/pep8speaks/test_models.py (100%) rename tests/{ => local}/pep8speaks/test_utils.py (100%) rename tests/{test_app.py => local/test_server.py} (100%) rename tests/{pep8speaks => }/test_workflow.py (100%) diff --git a/requirements/test.txt b/requirements/test.txt index 97b13853..69b9bf9e 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -1,4 +1,4 @@ -r base.txt pytest==3.2.2 pytest-flask==0.10.0 -pytest-mock==1.6.3 \ No newline at end of file +pytest-mock==1.6.3 diff --git a/tests/local/__init__.py b/tests/local/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/pep8speaks/test_handlers.py b/tests/local/pep8speaks/test_handlers.py similarity index 100% rename from tests/pep8speaks/test_handlers.py rename to tests/local/pep8speaks/test_handlers.py diff --git a/tests/pep8speaks/test_helpers.py b/tests/local/pep8speaks/test_helpers.py similarity index 100% rename from tests/pep8speaks/test_helpers.py rename to tests/local/pep8speaks/test_helpers.py diff --git a/tests/pep8speaks/test_models.py b/tests/local/pep8speaks/test_models.py similarity index 100% rename from tests/pep8speaks/test_models.py rename to tests/local/pep8speaks/test_models.py diff --git a/tests/pep8speaks/test_utils.py b/tests/local/pep8speaks/test_utils.py similarity index 100% rename from tests/pep8speaks/test_utils.py rename to tests/local/pep8speaks/test_utils.py diff --git a/tests/test_app.py b/tests/local/test_server.py similarity index 100% rename from tests/test_app.py rename to tests/local/test_server.py diff --git a/tests/pep8speaks/test_workflow.py b/tests/test_workflow.py similarity index 100% rename from tests/pep8speaks/test_workflow.py rename to tests/test_workflow.py From a445187b281cf657173cd7cde651cfcc8950b54e Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sat, 16 Mar 2019 02:04:19 +0530 Subject: [PATCH 0060/2173] Create CONTRIBUTING doc --- .github/CONTRIBUTING.md | 121 +++++++++++++++++++++++++++++++++++++++ .github/README.md | 38 ++++++++---- .github/auto-comment.yml | 2 +- 3 files changed, 150 insertions(+), 11 deletions(-) create mode 100644 .github/CONTRIBUTING.md diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 00000000..7fc375a0 --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,121 @@ +# Contributing to PEP 8 Speaks + +:sparkles::tada: First off, thanks for taking the time to contribute! :tada::sparkles: + +This guide will help you make changes to PEP 8 Speaks. The [GitHub app](https://github.com/apps/pep8-speaks) is a hosted version which is managed by me. +Since the source code is public, you can fork, deploy and use it freely. Read [instructions to deploy a fork](https://github.com/OrkoHunter/pep8speaks/wiki/Instructions-to-deploy-a-fork). + + +Table of Contents +================= + +* [Questions](#questions) +* [Sending a Pull Request](#sending-a-pull-request) + * [Run local server](#run-local-server) + * [How to test locally](#how-to-test-locally) + * [Code style](#code-style) +* [Documentation](#documentation) +* [Testing](#testing) +* [Additional notes](#additional-notes) + + +## Questions + +[Create an issue](https://github.com/OrkoHunter/pep8speaks/issues/new) and I will get back to you as soon as I can! + +## Sending a Pull Request + +### Run local server + +Use Python 3.6+ and pip3. + +- Fork the repository. +- Clone your fork. +- Create a new branch. +- Install the requirements. + +``` shell +$ pip3 install -r requirements/test.txt +``` + +- Start the server + +``` shell +$ python3 server.py +``` + + + + +### How to test locally + +``` shell +$ pytest tests/local +``` + +These tests do not cover all the source files. The branch will get tested on Travis when the Pull Request is created. +You can help writing more local unit tests and mock tests. Thanks to [@chinskiy](https://github.com/chinskiy) for bootstrapping the test framework. + +### Code style + +Please run `flake8` after making your changes to test the coding style. + +``` shell +$ flake8 +``` + +Have a look at `setup.cfg` for flake8 configurations. + + +## Documentation + +> A description of how the project works. Feel free to improve this section or create an issue if more needs to be added. + +All the requests sent by GitHub are processed in `server.py` in the root of the repository. + +`server.py` then decides what is the type of the request and assigns the appropriate handler function located in `pep8speaks/handlers.py`. + +`handlers.py` makes the use of `helpers.py`, `models.py`, `utils.py` and other modules inside `pep8speaks/` to decide what to do with the request. + +## Testing + +All changes made to the source files have to be submitted via Pull Requests. The test workflow is as follows: + +- A Pull Request is created on this repository. +- The branch of the PR is then deployed as a review app on Heroku. + - This process can not be automated for security reasons. Hence, this is done manually by me. +- A test GitHub app called [test-pep8speaks](https://github.com/apps/test-pep8speaks) is already installed on the repository [OrkoHunter/test-pep8speaks](https://github.com/OrkoHunter/test-pep8speaks). +- The Payload URL of the test GitHub app is changed to that of the recently deployed review app on Heroku. + - This is usually `https://pep8speaks-pr-###-herokuapp.com` where `###` is the PR number. +- Travis is to be restarted. This ensures that the tests would use the deployed review app as server. +- We then wait for the sweet green checks! :white_check_mark: + +The crucial tests to be run in this process are written inside [tests/test_workflow.py](https://github.com/OrkoHunter/pep8speaks/blob/master/tests/test_workflow.py). The workflow is written in the module and is as follows : + +* Each branch on https://github.com/OrkoHunter/test-pep8speaks correspond to a type of test. +* The test functions create a new branch from the existing branches. +* The new branches are then used to create a Pull Request on the master branch of the test repository. +* We then expect [@pep8speaks](https:/github.com/pep8speaks] to make the comment. +* If the comment is not what we expected for if the bot does not comment at all, the test fails. +* Finally, the test closes the PR and deletes the branch. + + +**Keywords** +head: The new branch which is used to create the Pull Request. +base: The existing branch where the changes are supposed to pulled into. +sha: sha of the latest commit in the corresponding test branches. + Get the list of sha of the repo at + https://api.github.com/repos/OrkoHunter/test-pep8speaks/git/refs/heads/ + + + +## Additional notes + +- The README and this document is inside the `/.github/` directory. +- After editing markdown documents, consider updating the Table of Contents. Check out this cool [script](https://github.com/ekalinin/github-markdown-toc/). +- Check out the following resources to get help. + - https://guides.github.com/ + - https://help.github.com/en/articles/creating-a-pull-request + + +Thanks! :heart: :heart: :heart: diff --git a/.github/README.md b/.github/README.md index e825d5d0..7f0cb2f9 100644 --- a/.github/README.md +++ b/.github/README.md @@ -1,21 +1,36 @@ -# PEP 8 Speaks [![Build Status](https://travis-ci.org/OrkoHunter/pep8speaks.svg?branch=master)](https://travis-ci.org/OrkoHunter/pep8speaks) ![GitHub contributors](https://img.shields.io/github/contributors/OrkoHunter/pep8speaks.svg) [![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/OrkoHunter) [![Donate on liberapay](https://img.shields.io/liberapay/receives/OrkoHunter.svg?logo=liberapay)](https://liberapay.com/OrkoHunter) +# PEP 8 Speaks [![Build Status](https://travis-ci.org/OrkoHunter/pep8speaks.svg?branch=master)](https://travis-ci.org/OrkoHunter/pep8speaks) ![GitHub release](https://img.shields.io/github/release/OrkoHunter/pep8speaks.svg) ![GitHub contributors](https://img.shields.io/github/contributors/OrkoHunter/pep8speaks.svg) [![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/OrkoHunter) [![Donate on liberapay](https://img.shields.io/liberapay/receives/OrkoHunter.svg?logo=liberapay)](https://liberapay.com/OrkoHunter) A GitHub :octocat: app to automatically review Python code style over Pull Requests -

      +

      + +

      -> "PEP 8 unto thyself, not unto others" - Raymond Hettinger +Table of Contents +================= -# Example - - + * [Installation](#installation) + * [Example](#example) + * [Main features](#main-features) + * [Configuration](#configuration) + * [Popular Users](#popular-users) + * [Miscellaneous features](#miscellaneous-features) + * [Private repos](#private-repos) + * [How to fix PEP 8 issues?](#how-to-fix-pep-8-issues) + * [Release announcements](#release-announcements) + * [Contributing](#contributing) -# How to Use? +# Installation - Go to the homepage of the app - https://github.com/apps/pep8-speaks - Click on the Configure button - - Add repositories or organizations to activate PEP8Speaks + - Add repositories or organizations to activate PEP 8 Speaks + +# Example + + + # Main features @@ -132,9 +147,11 @@ This app will only work for publicly hosted repositories. So if you are looking Updates to the app are announced using the GitHub Release feature over [here](https://github.com/OrkoHunter/pep8speaks/releases). A lot of major changes are made as the community grows bigger. Click on `Watch` -> `Releases only` on top of the page, to get notified about new configurations or feature updates. -# Support +Usually, the master branch is deployed as soon as Pull Requests are merged in the repository. However, on every Friday, I make a release and make sure the latest code is deployed. You do not need to do anything to use the latest version. If you use a fork of PEP 8 Speaks, check out the Release space. + +# Contributing -You can support the project by contributing to its development. If you have any suggestions for new features or improvements, please [create an issue](https://github.com/OrkoHunter/pep8speaks/issues/new). Pull Requests are most welcome ! Also, if you use this project and you like it, [please let me know](https://saythanks.io/to/OrkoHunter) :) +You can support the project by contributing to its development. If you have any suggestions for new features or improvements, please [create an issue](https://github.com/OrkoHunter/pep8speaks/issues/new). Pull Requests are most welcome ! Read [CONTRIBUTING](/.github/CONTRBUTING.md) doc to understand how the project works and how you can make changes. The project requires to be hosted on a server and due to which, it needs financial support as well. @@ -144,6 +161,7 @@ Please read the [case for funding PEP 8 Speaks](https://github.com/OrkoHunter/pe [![Donate](https://img.shields.io/liberapay/receives/OrkoHunter.svg?logo=liberapay)](https://liberapay.com/OrkoHunter) [![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.me/orkohunter) +If you use this project and you like it, [please let me know](https://saythanks.io/to/OrkoHunter). Thanks! :heart: diff --git a/.github/auto-comment.yml b/.github/auto-comment.yml index 23a56c4e..8d2314c2 100644 --- a/.github/auto-comment.yml +++ b/.github/auto-comment.yml @@ -8,4 +8,4 @@ pullRequestOpened: > @OrkoHunter Create a review app for this PR on Heroku and update the `Webhook URL` of the [test-pep8speaks app](https://github.com/settings/apps/test-pep8speaks). Finally restart Travis to test this PR. - Remember to redeploy the production app and revert the Webhook URL when the Pull Request is merged. + Remember to deploy the production app and revert the Webhook URL of the test GitHub app when the Pull Request is merged. From f4c1c298e687f3b45a0cdf70534e4011f5b1040a Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sat, 16 Mar 2019 11:32:40 +0530 Subject: [PATCH 0061/2173] Do not fail if expected list config is of NoneType --- pep8speaks/helpers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pep8speaks/helpers.py b/pep8speaks/helpers.py index 0978cfe5..8cf095e7 100644 --- a/pep8speaks/helpers.py +++ b/pep8speaks/helpers.py @@ -156,7 +156,8 @@ def get_config(repo, base_branch, after_commit_hash): # linters are case-sensitive with error codes for linter in linters: - config[linter]["ignore"] = [e.upper() for e in list(config[linter]["ignore"])] + if config[linter]["ignore"]: + config[linter]["ignore"] = [e.upper() for e in list(config[linter]["ignore"])] return config From 94cd7f644c1998c71f792395bcbe213d90a53226 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sat, 16 Mar 2019 11:43:43 +0530 Subject: [PATCH 0062/2173] Correct request.json key in models --- pep8speaks/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep8speaks/models.py b/pep8speaks/models.py index abf54d51..f3e192fd 100644 --- a/pep8speaks/models.py +++ b/pep8speaks/models.py @@ -53,7 +53,7 @@ def _is_request_valid(self, request, event): if request['action'] in ['synchronize', 'opened', 'reopened']: return True elif event == 'issue_comment': - if request['action'] in ('created', 'edited') and 'pull_request' in request.json['issue']: + if request['action'] in ('created', 'edited') and 'pull_request' in request['issue']: return True return False From 744dfa053d03001f760b8c51c6baff10480a4e3a Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sat, 16 Mar 2019 21:05:47 +0530 Subject: [PATCH 0063/2173] Add CCExtractor as Silver Sponsor --- .github/README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/README.md b/.github/README.md index e825d5d0..75acf7de 100644 --- a/.github/README.md +++ b/.github/README.md @@ -150,3 +150,21 @@ Please read the [case for funding PEP 8 Speaks](https://github.com/OrkoHunter/pe This project does not endorse all of the rules of the original PEP 8 and thus believes in customizing pycodestyle. [.](https://github.com/OrkoHunter/python-easter-eggs) + +

      Silver Sponsors

      + +[Become a Silver Sponsor](https://github.com/OrkoHunter/pep8speaks/wiki/Funding#how-to-donate) and get your logo and name with a link to your site on our README and our [website](https://pep8speaks.com). + + + + + + + +
      + + +

      +

      CCExtractor

      +
      +
      From 90050f393faaed137eeac056a5ecc92e0631cb29 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sat, 16 Mar 2019 21:17:52 +0530 Subject: [PATCH 0064/2173] [skip ci] Add @debugger22 as silver sponsor --- .github/README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/README.md b/.github/README.md index 75acf7de..44f18905 100644 --- a/.github/README.md +++ b/.github/README.md @@ -165,6 +165,13 @@ Please read the [case for funding PEP 8 Speaks](https://github.com/OrkoHunter/pe

      CCExtractor

      + + + +

      +

      Sudhanshu Mishra

      +
      + - + From a65b2f82b8ffa7527a734f2175c31c21f5f71aa6 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sun, 17 Mar 2019 02:03:11 +0530 Subject: [PATCH 0065/2173] Create Code of Conduct --- .github/CODE_OF_CONDUCT.md | 76 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 .github/CODE_OF_CONDUCT.md diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..c2b77a52 --- /dev/null +++ b/.github/CODE_OF_CONDUCT.md @@ -0,0 +1,76 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, sex characteristics, gender identity and expression, +level of experience, education, socio-economic status, nationality, personal +appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or + advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at himanshu@orkohunter.net. All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see +https://www.contributor-covenant.org/faq From 5a519d393163264b0556a1b23bdab5105b0de3d8 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Mon, 25 Mar 2019 23:48:13 +0530 Subject: [PATCH 0066/2173] Add Python Software Foundation as Gold Sponsor --- .github/README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/README.md b/.github/README.md index 4f723a8d..c49714d4 100644 --- a/.github/README.md +++ b/.github/README.md @@ -169,6 +169,25 @@ If you use this project and you like it, [please let me know](https://saythanks. [.](https://github.com/OrkoHunter/python-easter-eggs) +

      Gold Sponsors

      + +[Become a Gold Sponsor](https://github.com/OrkoHunter/pep8speaks/wiki/Funding#how-to-donate) and get your logo and name with a link to your site on our README and our [website](https://pep8speaks.com). + + + + + + + +
      + + +

      +

      Python Software Foundation

      +
      +
      + +

      Silver Sponsors

      [Become a Silver Sponsor](https://github.com/OrkoHunter/pep8speaks/wiki/Funding#how-to-donate) and get your logo and name with a link to your site on our README and our [website](https://pep8speaks.com). From 7f9722ddb8ae17c568218565abc74dc698ec83ef Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Thu, 28 Mar 2019 13:53:58 +0530 Subject: [PATCH 0067/2173] Update README.md --- .github/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/README.md b/.github/README.md index c49714d4..c49539fd 100644 --- a/.github/README.md +++ b/.github/README.md @@ -151,7 +151,7 @@ Usually, the master branch is deployed as soon as Pull Requests are merged in th # Contributing -You can support the project by contributing to its development. If you have any suggestions for new features or improvements, please [create an issue](https://github.com/OrkoHunter/pep8speaks/issues/new). Pull Requests are most welcome ! Read [CONTRIBUTING](/.github/CONTRBUTING.md) doc to understand how the project works and how you can make changes. +You can support the project by contributing to its development. If you have any suggestions for new features or improvements, please [create an issue](https://github.com/OrkoHunter/pep8speaks/issues/new). Pull Requests are most welcome ! Read [CONTRIBUTING](/.github/CONTRIBUTING.md) doc to understand how the project works and how you can make changes. The project requires to be hosted on a server and due to which, it needs financial support as well. From 0574e4d052d91ca05e28bf3347da4128b6dd3b57 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Fri, 31 May 2019 13:42:20 +0530 Subject: [PATCH 0068/2173] Fix test workflow URL --- .github/auto-comment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/auto-comment.yml b/.github/auto-comment.yml index 8d2314c2..55291d94 100644 --- a/.github/auto-comment.yml +++ b/.github/auto-comment.yml @@ -3,7 +3,7 @@ pullRequestOpened: > :sparkling_heart: Thank you so much for creating the pull request! :sparkling_heart: - Have a look at [the test workflow](https://github.com/OrkoHunter/pep8speaks/blob/master/tests/pep8speaks/test_workflow.py). The branch of this pull request is going to be deployed on Heroku with payload URL https://pep8speaks-pr-xxx.herokuapp.com . The repository https://github.com/OrkoHunter/test-pep8speaks is configured to test review deployments like this. + Have a look at [the test workflow](https://github.com/OrkoHunter/pep8speaks/blob/master/tests/test_workflow.py). The branch of this pull request is going to be deployed on Heroku with payload URL https://pep8speaks-pr-xxx.herokuapp.com . The repository https://github.com/OrkoHunter/test-pep8speaks is configured to test review deployments like this. @OrkoHunter Create a review app for this PR on Heroku and update the `Webhook URL` of the [test-pep8speaks app](https://github.com/settings/apps/test-pep8speaks). Finally restart Travis to test this PR. From 1d0fb58134ba336fe8565cb0c21cb531b86554bd Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 18 Jun 2019 20:38:32 +0530 Subject: [PATCH 0069/2173] Add Weblate as Gold Sponsor --- .github/README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/README.md b/.github/README.md index c49539fd..839801dd 100644 --- a/.github/README.md +++ b/.github/README.md @@ -157,7 +157,6 @@ The project requires to be hosted on a server and due to which, it needs financi Please read the [case for funding PEP 8 Speaks](https://github.com/OrkoHunter/pep8speaks/wiki/Funding). -[![https://opencollective.com/pep8speaks/](https://opencollective.com/pep8speaks/tiers/backer.svg?avatarHeight=36)](https://opencollective.com/pep8speaks) [![Donate](https://img.shields.io/liberapay/receives/OrkoHunter.svg?logo=liberapay)](https://liberapay.com/OrkoHunter) [![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.me/orkohunter) @@ -183,6 +182,13 @@ If you use this project and you like it, [please let me know](https://saythanks.

      Python Software Foundation

      + + + +

      +

      Weblate

      +
      + From 389f6e4e59bcd780e2ff13eb88bd2f734d5fc3a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 18 Jun 2019 20:24:24 +0200 Subject: [PATCH 0070/2173] Fix Weblate logo aspect ratio --- .github/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/README.md b/.github/README.md index 839801dd..a06b739a 100644 --- a/.github/README.md +++ b/.github/README.md @@ -184,7 +184,7 @@ If you use this project and you like it, [please let me know](https://saythanks. - +

      Weblate

      From f91fa62d26c71b1aa2eb3ecc3cb35d201d020c9d Mon Sep 17 00:00:00 2001 From: Elliott Shugerman Date: Tue, 3 Sep 2019 19:08:52 -0600 Subject: [PATCH 0071/2173] Fix "single comment" behavior for non-official deployments If updates are made to a pull request and a comment from the bot already exists, that comment should be updated; a new comment should not be added. However, this functionality is broken for non-official deployments -- ie, deployments using a GitHub user other than "pep8speaks". This commit fixes this by using the BOT_PASSWORD env var to check for an existing comment, rather than hardcoding the user ID. --- pep8speaks/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep8speaks/helpers.py b/pep8speaks/helpers.py index 8cf095e7..1a497cec 100644 --- a/pep8speaks/helpers.py +++ b/pep8speaks/helpers.py @@ -397,7 +397,7 @@ def create_or_update_comment(ghrequest, comment, ONLY_UPDATE_COMMENT_BUT_NOT_CRE # Get the last comment id by the bot last_comment_id = None for old_comment in comments: - if old_comment["user"]["id"] == 24736507: # ID of @pep8speaks + if old_comment["user"]["login"] == os.environ["BOT_USERNAME"]: last_comment_id = old_comment["id"] break From 1ecf1da04fdc900d56d8a2ff7b42521ef174f4bd Mon Sep 17 00:00:00 2001 From: Elliott Shugerman Date: Tue, 3 Sep 2019 19:36:21 -0600 Subject: [PATCH 0072/2173] Add mock to requirements/test.txt --- requirements/test.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements/test.txt b/requirements/test.txt index 69b9bf9e..c0605471 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -2,3 +2,4 @@ pytest==3.2.2 pytest-flask==0.10.0 pytest-mock==1.6.3 +mock==3.0.5 From b6a0770c8ab5831e93bc99471517b043099edc3e Mon Sep 17 00:00:00 2001 From: Greg McCoy Date: Mon, 16 Sep 2019 10:13:36 -0400 Subject: [PATCH 0073/2173] Adding check for blank description --- pep8speaks/helpers.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pep8speaks/helpers.py b/pep8speaks/helpers.py index 1a497cec..44d028b3 100644 --- a/pep8speaks/helpers.py +++ b/pep8speaks/helpers.py @@ -384,8 +384,9 @@ def comment_permission_check(ghrequest): if any(m in ghrequest.pr_title.lower() for m in ["[skip pep8]", "[pep8 skip]"]): return False ## PR description - if any(m in ghrequest.pr_desc.lower() for m in ["[skip pep8]", "[pep8 skip]"]): - return False + if ghrequest.pr_desc: + if any(m in ghrequest.pr_desc.lower() for m in ["[skip pep8]", "[pep8 skip]"]): + return False return True From 18b0a54534f044cc8a39d0d5200f833756d895dc Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 24 Mar 2020 14:25:34 +0900 Subject: [PATCH 0074/2173] Update list of users in README --- .github/README.md | 49 +++++++++++++---------------------------------- .gitignore | 4 +++- 2 files changed, 16 insertions(+), 37 deletions(-) diff --git a/.github/README.md b/.github/README.md index a06b739a..f29bbaa3 100644 --- a/.github/README.md +++ b/.github/README.md @@ -88,42 +88,19 @@ message: # Customize the comment made by the bot # Popular Users - - - - - - - - - - - -
      - -
      - Pandas -
      - -
      - SunPy -
      - -
      - Astropy -
      - -
      - Scikit Learn Contrib -
      - -
      - Scikit Image -
      - -
      - Spyder IDE -
      +| | Organization | Description | +|-|-|-| +| | [Pandas](https://github.com/pandas-dev/pandas) | Powerful data manipulation tools for Python | +| | [Adobe](https://github.com/adobe) | Open source from Adobe | +| | [openSUSE](https://github.com/openSUSE) | Linux distribution | +| | [PyTorch Lightning](https://github.com/PyTorchLightning/pytorch-lightning) | The lightweight PyTorch wrapper for ML researchers. | +| | [NetworkX](https://github.com/NetworkX/NetworkX) | Python library for graph theory and complex networks | +| | [Statsmodels](https://github.com/statsmodels/statsmodels) | Statistical modeling and econometrics in Python | +| | [SunPy](https://github.com/sunpy) | Python for Solar Physics | +| | [Astropy](https://github.com/astropy) | Astronomy in Python | +| | [Scikit Learn Contrib](https://github.com/scikit-learn-contrib) | scikit-learn compatible projects | +| | [Scikit Image](https://github.com/scikit-image) | Image processing in Python | +| | [Spyder IDE](https://github.com/spyder-ide/spyder) | The Scientific Python Development Environment | See the [complete list of organizations and users](https://github.com/OrkoHunter/pep8speaks/wiki/List-of-users-and-orgs). diff --git a/.gitignore b/.gitignore index 9aedc640..ee84701c 100644 --- a/.gitignore +++ b/.gitignore @@ -94,4 +94,6 @@ flask_session exports.sh # Sublime Text -.sublime-* \ No newline at end of file +.sublime-* + +.idea From 72cf7705a2d6598a7c99675ebe46e1509a493890 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sat, 4 Apr 2020 19:05:33 +0900 Subject: [PATCH 0075/2173] Add pydata/xarray to list of users Closes https://github.com/OrkoHunter/pep8speaks/issues/132 --- .github/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/README.md b/.github/README.md index f29bbaa3..cc0f864a 100644 --- a/.github/README.md +++ b/.github/README.md @@ -96,6 +96,7 @@ message: # Customize the comment made by the bot | | [PyTorch Lightning](https://github.com/PyTorchLightning/pytorch-lightning) | The lightweight PyTorch wrapper for ML researchers. | | | [NetworkX](https://github.com/NetworkX/NetworkX) | Python library for graph theory and complex networks | | | [Statsmodels](https://github.com/statsmodels/statsmodels) | Statistical modeling and econometrics in Python | +| | [xarray (PyData)](https://github.com/pydata/xarray) | N-D labeled arrays and datasets in Python (Python for Data) | | | [SunPy](https://github.com/sunpy) | Python for Solar Physics | | | [Astropy](https://github.com/astropy) | Astronomy in Python | | | [Scikit Learn Contrib](https://github.com/scikit-learn-contrib) | scikit-learn compatible projects | From f8cfe0f21683b277748a2c07704b9b5c1f215422 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Fri, 10 Apr 2020 15:48:37 +0900 Subject: [PATCH 0076/2173] Add updates section to the README --- .github/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/README.md b/.github/README.md index cc0f864a..ed7bdf16 100644 --- a/.github/README.md +++ b/.github/README.md @@ -20,6 +20,7 @@ Table of Contents * [How to fix PEP 8 issues?](#how-to-fix-pep-8-issues) * [Release announcements](#release-announcements) * [Contributing](#contributing) + * [Updates](#updates) # Installation @@ -196,3 +197,7 @@ If you use this project and you like it, [please let me know](https://saythanks. + +# Updates + +- April 5, 2020 - [PEP8Speaks - Now helping 5,000 open source projects write neat and clean Python](https://orkohunter.net/blog/pep8speaks-5000-projects/) From 5c7d1cae57c99b9cbba99c6d88cfd5db1fdb8ab8 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 28 Apr 2020 22:28:21 +0900 Subject: [PATCH 0077/2173] Deprecare Flask-Session to fix master build The dependency flask-session is broken because of a change https://github.com/fengsp/flask-session/pull/114. Unfortunately, months have passed but no action has been taken to merge the fix. PEP8Speaks does not really need Flask-Session and hence, it is better to remove it. --- requirements/base.txt | 1 - server.py | 3 --- 2 files changed, 4 deletions(-) diff --git a/requirements/base.txt b/requirements/base.txt index 84bf37d7..f6234659 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,5 +1,4 @@ requests==2.21.0 -Flask-Session==0.3.0 flask==1.0.2 gunicorn==19.6.0 pycodestyle>=2.3.0 diff --git a/server.py b/server.py index bfe516ec..c46ac344 100644 --- a/server.py +++ b/server.py @@ -4,14 +4,12 @@ import sys from flask import Flask, redirect, request -from flask_session import Session from pep8speaks import handlers, utils def create_app(): app = Flask(__name__) - sess = Session() logging.basicConfig(stream=sys.stdout, level=logging.DEBUG) @@ -47,7 +45,6 @@ def main(): app.secret_key = os.environ.setdefault("APP_SECRET_KEY", "") app.config['SESSION_TYPE'] = 'filesystem' - sess.init_app(app) app.debug = False return app From cf1549a2d287cc1af8539e812d54c6935d8a6d04 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 28 Apr 2020 22:40:59 +0900 Subject: [PATCH 0078/2173] Bump pytest and pytest-flask version to get the fix --- .travis.yml | 2 +- requirements/test.txt | 4 ++-- runtime.txt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 36d11617..ee117f9e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ sudo: false language: python python: - - 3.6 + - 3.7 cache: directories: diff --git a/requirements/test.txt b/requirements/test.txt index c0605471..c3196d46 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -1,5 +1,5 @@ -r base.txt -pytest==3.2.2 -pytest-flask==0.10.0 +pytest>=5.2 +pytest-flask>=0.15.1 pytest-mock==1.6.3 mock==3.0.5 diff --git a/runtime.txt b/runtime.txt index a01373a3..58b4552e 100644 --- a/runtime.txt +++ b/runtime.txt @@ -1 +1 @@ -python-3.7.2 +python-3.7 From b6ee98d6b1154e8de06a7407e2792c1df32b609e Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 28 Apr 2020 22:49:09 +0900 Subject: [PATCH 0079/2173] Heroku expects Python's version very explicitly It does not recognize Python-3.7 --- runtime.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime.txt b/runtime.txt index 58b4552e..6919bf9e 100644 --- a/runtime.txt +++ b/runtime.txt @@ -1 +1 @@ -python-3.7 +python-3.7.6 From 5281e7fe150aad5771dab243d9f176b6722fe9cc Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Tue, 12 May 2020 20:43:57 +0900 Subject: [PATCH 0080/2173] Add Catalyst to popular users --- .github/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/README.md b/.github/README.md index ed7bdf16..0d70c577 100644 --- a/.github/README.md +++ b/.github/README.md @@ -103,6 +103,7 @@ message: # Customize the comment made by the bot | | [Scikit Learn Contrib](https://github.com/scikit-learn-contrib) | scikit-learn compatible projects | | | [Scikit Image](https://github.com/scikit-image) | Image processing in Python | | | [Spyder IDE](https://github.com/spyder-ide/spyder) | The Scientific Python Development Environment | +| | [Catalyst](https://github.com/catalyst-team/catalyst) | PyTorch framework for Deep Learning research and development | See the [complete list of organizations and users](https://github.com/OrkoHunter/pep8speaks/wiki/List-of-users-and-orgs). From f668605362447433a59664b786d4eb1ad3bfb053 Mon Sep 17 00:00:00 2001 From: Haider Ali Date: Sat, 23 May 2020 14:27:55 +0530 Subject: [PATCH 0081/2173] Upgrade flake8 and pycodestyle versions --- requirements/base.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements/base.txt b/requirements/base.txt index f6234659..c713d1b7 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,8 +1,8 @@ requests==2.21.0 flask==1.0.2 gunicorn==19.6.0 -pycodestyle>=2.3.0 -flake8>=3.7.7 +pycodestyle==2.6.0 +flake8==3.8.2 PyYAML>=3.13 unidiff==0.5.3 autopep8>=1.3.1 From 89cea964cab2871a76768c62708cf28b663150b8 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sun, 24 May 2020 15:14:30 +0900 Subject: [PATCH 0082/2173] Ignore vscode settings Signed-off-by: Himanshu Mishra --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ee84701c..2cbd849b 100644 --- a/.gitignore +++ b/.gitignore @@ -93,7 +93,7 @@ flask_session exports.sh -# Sublime Text +# Text editors .sublime-* - .idea +.vscode From de7c21e787dcd79863e2da3249e5fcd680749a21 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sun, 24 May 2020 15:16:21 +0900 Subject: [PATCH 0083/2173] Use pyenv for Python version Signed-off-by: Himanshu Mishra --- .github/CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 7fc375a0..05dd84a5 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -27,7 +27,7 @@ Table of Contents ### Run local server -Use Python 3.6+ and pip3. +You can use [`pyenv`](https://github.com/pyenv/pyenv) to manage Python versions easily. Use Python 3.8.x for this project. - Fork the repository. - Clone your fork. @@ -35,13 +35,13 @@ Use Python 3.6+ and pip3. - Install the requirements. ``` shell -$ pip3 install -r requirements/test.txt +$ pip install -r requirements/test.txt ``` - Start the server ``` shell -$ python3 server.py +$ python server.py ``` From 205410c219c375236fab136d1c2e9832ddf7b71d Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sun, 24 May 2020 18:47:53 +0900 Subject: [PATCH 0084/2173] Upgrade package versions to receive patch updates Signed-off-by: Himanshu Mishra --- requirements/base.txt | 20 ++++++++++---------- requirements/test.txt | 8 ++++---- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/requirements/base.txt b/requirements/base.txt index c713d1b7..64e9bc77 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,10 +1,10 @@ -requests==2.21.0 -flask==1.0.2 -gunicorn==19.6.0 -pycodestyle==2.6.0 -flake8==3.8.2 -PyYAML>=3.13 -unidiff==0.5.3 -autopep8>=1.3.1 -markdown==2.6.8 -beautifulsoup4==4.5.3 +requests~=2.23.0 +flask~=1.1.2 +gunicorn~=20.0.4 +pycodestyle~=2.6.0 +flake8~=3.8.2 +PyYAML~=5.3.1 +unidiff~=0.6.0 +autopep8~=1.5.2 +markdown~=3.2.2 +beautifulsoup4~=4.9.1 diff --git a/requirements/test.txt b/requirements/test.txt index c3196d46..4cfbbb5d 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -1,5 +1,5 @@ -r base.txt -pytest>=5.2 -pytest-flask>=0.15.1 -pytest-mock==1.6.3 -mock==3.0.5 +pytest~=5.4.2 +pytest-flask~=1.0.0 +pytest-mock~=1.6.3 +mock~=3.0.5 From 75ec5b1d2e233e3b14d81407c3e6fc03b2d084eb Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sun, 24 May 2020 18:50:54 +0900 Subject: [PATCH 0085/2173] Link Heroku on auto comment Signed-off-by: Himanshu Mishra --- .github/auto-comment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/auto-comment.yml b/.github/auto-comment.yml index 55291d94..6eb598b3 100644 --- a/.github/auto-comment.yml +++ b/.github/auto-comment.yml @@ -6,6 +6,6 @@ pullRequestOpened: > Have a look at [the test workflow](https://github.com/OrkoHunter/pep8speaks/blob/master/tests/test_workflow.py). The branch of this pull request is going to be deployed on Heroku with payload URL https://pep8speaks-pr-xxx.herokuapp.com . The repository https://github.com/OrkoHunter/test-pep8speaks is configured to test review deployments like this. - @OrkoHunter Create a review app for this PR on Heroku and update the `Webhook URL` of the [test-pep8speaks app](https://github.com/settings/apps/test-pep8speaks). Finally restart Travis to test this PR. + @OrkoHunter Create a review app for this PR on [Heroku](https://dashboard.heroku.com/) and update the `Webhook URL` of the [test-pep8speaks app](https://github.com/settings/apps/test-pep8speaks). Finally restart Travis to test this PR. Remember to deploy the production app and revert the Webhook URL of the test GitHub app when the Pull Request is merged. From ae598ebed33f62ac7f7da5b9e2fe3e1533d3d0cd Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sun, 24 May 2020 18:54:24 +0900 Subject: [PATCH 0086/2173] Add link to Travis Signed-off-by: Himanshu Mishra --- .github/auto-comment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/auto-comment.yml b/.github/auto-comment.yml index 6eb598b3..41d2b956 100644 --- a/.github/auto-comment.yml +++ b/.github/auto-comment.yml @@ -6,6 +6,6 @@ pullRequestOpened: > Have a look at [the test workflow](https://github.com/OrkoHunter/pep8speaks/blob/master/tests/test_workflow.py). The branch of this pull request is going to be deployed on Heroku with payload URL https://pep8speaks-pr-xxx.herokuapp.com . The repository https://github.com/OrkoHunter/test-pep8speaks is configured to test review deployments like this. - @OrkoHunter Create a review app for this PR on [Heroku](https://dashboard.heroku.com/) and update the `Webhook URL` of the [test-pep8speaks app](https://github.com/settings/apps/test-pep8speaks). Finally restart Travis to test this PR. + @OrkoHunter Create a review app for this PR on [Heroku](https://dashboard.heroku.com/) and update the `Webhook URL` of the [test-pep8speaks app](https://github.com/settings/apps/test-pep8speaks). Finally restart [Travis](https://travis-ci.org/OrkoHunter/pep8speaks) to test this PR. Remember to deploy the production app and revert the Webhook URL of the test GitHub app when the Pull Request is merged. From a68f84317f90bc35747e42d307540397dc7801fc Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sun, 24 May 2020 19:13:01 +0900 Subject: [PATCH 0087/2173] Add .circleci/config.yml --- .circleci/config.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000..a3ea570b --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,25 @@ +version: 2.1 + +orbs: + python: circleci/python@0.3.0 + +jobs: + build-and-test: + executor: python/default + steps: + - checkout + - python/load-cache + - run: + name: Install test requirements + command: pip install -r requirements/test.txt + - python/save-cache + - run: + name: Test + command: | + echo "Make sure you the review app of this branch is deployed and configured in the test-pep8speaks app" + pytest + +workflows: + main: + jobs: + - build-and-test From 227a706dedcce5a460a9529196b45f3385fe082e Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sun, 24 May 2020 19:14:53 +0900 Subject: [PATCH 0088/2173] Fix YAML syntax for multiline comment --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a3ea570b..fd1ede3d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,8 +16,8 @@ jobs: - run: name: Test command: | - echo "Make sure you the review app of this branch is deployed and configured in the test-pep8speaks app" - pytest + echo "Make sure you the review app of this branch is deployed and configured in the test-pep8speaks app" + pytest workflows: main: From 0a2f9e3040573905440b67749f0ea40cc78756b2 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sun, 24 May 2020 19:32:41 +0900 Subject: [PATCH 0089/2173] Replace Travis by CircleCI Signed-off-by: Himanshu Mishra --- .github/CONTRIBUTING.md | 4 ++-- .github/README.md | 2 +- .github/auto-comment.yml | 2 +- .travis.yml | 20 -------------------- tests/test_workflow.py | 8 ++++---- 5 files changed, 8 insertions(+), 28 deletions(-) delete mode 100644 .travis.yml diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 05dd84a5..ec90f6c1 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -53,7 +53,7 @@ $ python server.py $ pytest tests/local ``` -These tests do not cover all the source files. The branch will get tested on Travis when the Pull Request is created. +These tests do not cover all the source files. The branch will get tested on CI when the Pull Request is created. You can help writing more local unit tests and mock tests. Thanks to [@chinskiy](https://github.com/chinskiy) for bootstrapping the test framework. ### Code style @@ -87,7 +87,7 @@ All changes made to the source files have to be submitted via Pull Requests. The - A test GitHub app called [test-pep8speaks](https://github.com/apps/test-pep8speaks) is already installed on the repository [OrkoHunter/test-pep8speaks](https://github.com/OrkoHunter/test-pep8speaks). - The Payload URL of the test GitHub app is changed to that of the recently deployed review app on Heroku. - This is usually `https://pep8speaks-pr-###-herokuapp.com` where `###` is the PR number. -- Travis is to be restarted. This ensures that the tests would use the deployed review app as server. +- CI is to be restarted. This ensures that the tests would use the deployed review app as server. - We then wait for the sweet green checks! :white_check_mark: The crucial tests to be run in this process are written inside [tests/test_workflow.py](https://github.com/OrkoHunter/pep8speaks/blob/master/tests/test_workflow.py). The workflow is written in the module and is as follows : diff --git a/.github/README.md b/.github/README.md index 0d70c577..6f4e500a 100644 --- a/.github/README.md +++ b/.github/README.md @@ -1,4 +1,4 @@ -# PEP 8 Speaks [![Build Status](https://travis-ci.org/OrkoHunter/pep8speaks.svg?branch=master)](https://travis-ci.org/OrkoHunter/pep8speaks) ![GitHub release](https://img.shields.io/github/release/OrkoHunter/pep8speaks.svg) ![GitHub contributors](https://img.shields.io/github/contributors/OrkoHunter/pep8speaks.svg) [![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/OrkoHunter) [![Donate on liberapay](https://img.shields.io/liberapay/receives/OrkoHunter.svg?logo=liberapay)](https://liberapay.com/OrkoHunter) +# PEP 8 Speaks [![CircleCI](https://img.shields.io/circleci/build/github/OrkoHunter/pep8speaks)](https://app.circleci.com/pipelines/github/OrkoHunter/pep8speaks) ![GitHub release](https://img.shields.io/github/release/OrkoHunter/pep8speaks.svg) ![GitHub contributors](https://img.shields.io/github/contributors/OrkoHunter/pep8speaks.svg) [![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/OrkoHunter) [![Donate on liberapay](https://img.shields.io/liberapay/receives/OrkoHunter.svg?logo=liberapay)](https://liberapay.com/OrkoHunter) A GitHub :octocat: app to automatically review Python code style over Pull Requests diff --git a/.github/auto-comment.yml b/.github/auto-comment.yml index 41d2b956..b3803d5b 100644 --- a/.github/auto-comment.yml +++ b/.github/auto-comment.yml @@ -6,6 +6,6 @@ pullRequestOpened: > Have a look at [the test workflow](https://github.com/OrkoHunter/pep8speaks/blob/master/tests/test_workflow.py). The branch of this pull request is going to be deployed on Heroku with payload URL https://pep8speaks-pr-xxx.herokuapp.com . The repository https://github.com/OrkoHunter/test-pep8speaks is configured to test review deployments like this. - @OrkoHunter Create a review app for this PR on [Heroku](https://dashboard.heroku.com/) and update the `Webhook URL` of the [test-pep8speaks app](https://github.com/settings/apps/test-pep8speaks). Finally restart [Travis](https://travis-ci.org/OrkoHunter/pep8speaks) to test this PR. + @OrkoHunter Create a review app for this PR on [Heroku](https://dashboard.heroku.com/) and update the `Webhook URL` of the [test-pep8speaks app](https://github.com/settings/apps/test-pep8speaks). Finally restart [CI](https://app.circleci.com/pipelines/github/OrkoHunter/pep8speaks) to test this PR. Remember to deploy the production app and revert the Webhook URL of the test GitHub app when the Pull Request is merged. diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index ee117f9e..00000000 --- a/.travis.yml +++ /dev/null @@ -1,20 +0,0 @@ -sudo: false - -language: python - -python: - - 3.7 - -cache: - directories: - - $HOME/.cache/pip - -install: - - pip install -r requirements/test.txt - -script: - - echo "Make sure you the review app of this branch is deployed and configured in the test-pep8speaks app" - - pytest - -notifications: - email: false diff --git a/tests/test_workflow.py b/tests/test_workflow.py index 8617e150..e519509a 100644 --- a/tests/test_workflow.py +++ b/tests/test_workflow.py @@ -48,12 +48,12 @@ def create_a_new_pr(repo, expected_comment, head, sha, base="master"): # Create a pull request with the newly created branch and base branch on repo try: - TRAVIS_PR_NUMBER = os.environ["TRAVIS_PR_NUMBER"] - pr_title = f"Testing PR #{TRAVIS_PR_NUMBER} on OrkoHunter/PEP8Speaks" - pr_body = f"Testing https://github.com/OrkoHunter/pep8speaks/pull/{TRAVIS_PR_NUMBER}\n\n" + CI_PULL_REQUEST = os.environ["CI_PULL_REQUEST"] + pr_title = f"Testing PR #{CI_PULL_REQUEST.split('/')[-1]} on OrkoHunter/PEP8Speaks" + pr_body = f"Testing {CI_PULL_REQUEST}\n\n" except KeyError: pr_title = "Testing new changes" - pr_body = "Not triggered by Travis.\n\n" + pr_body = "Not triggered by CI.\n\n" pr_body += f"---\n*Expected Result -*\n\n---\n{expected_comment}\n---" From 74dc6596290ac7d74a587ab6add30a3eaa85b383 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sun, 24 May 2020 19:32:50 +0900 Subject: [PATCH 0090/2173] hmac.new now requires digestmod Signed-off-by: Himanshu Mishra --- tests/local/pep8speaks/test_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/local/pep8speaks/test_utils.py b/tests/local/pep8speaks/test_utils.py index 37e14e95..039ba5c6 100644 --- a/tests/local/pep8speaks/test_utils.py +++ b/tests/local/pep8speaks/test_utils.py @@ -61,7 +61,8 @@ def test_match_webhook_secret(self, monkeypatch, request_ctx): key, data = 'testkey', 'testdata' hmac_obj = hmac.new(key.encode(), - data.encode()) + data.encode(), + digestmod="sha1") request_ctx.headers = { 'X-Hub-Signature': f'{hmac_obj.name}={hmac_obj.hexdigest()}' From bd7a43ac47131fbae84e6adbd53c132438101d0a Mon Sep 17 00:00:00 2001 From: Mikhail Ryazanov Date: Wed, 27 May 2020 19:56:34 -0600 Subject: [PATCH 0091/2173] Avoid confusing line break in "PEP 8 issues" --- pep8speaks/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep8speaks/helpers.py b/pep8speaks/helpers.py index 44d028b3..1ffe2715 100644 --- a/pep8speaks/helpers.py +++ b/pep8speaks/helpers.py @@ -277,7 +277,7 @@ def prepare_comment(ghrequest, config): if comment_header == "": comment_header = ( "Hello @{author!s}! Thanks for {action_text} this PR. " - "We checked the lines you've touched for [PEP 8]" + "We checked the lines you've touched for [PEP\N{NBSP}8]" "(https://www.python.org/dev/peps/pep-0008) issues, and found:" .format(author=author, action_text=action_text)) comment_header = comment_header + "\n\n" From 030ae5cbd336262a98d2935b624bb8d3e54efc60 Mon Sep 17 00:00:00 2001 From: Mikhail Ryazanov Date: Wed, 27 May 2020 19:58:16 -0600 Subject: [PATCH 0092/2173] Update tests --- tests/test_workflow.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_workflow.py b/tests/test_workflow.py index e519509a..63293275 100644 --- a/tests/test_workflow.py +++ b/tests/test_workflow.py @@ -107,7 +107,7 @@ def test_errors_without_pep8speaks_yml(): head = "test-errors-without-pep8speaks.yml" sha = "7bd64e782f605d3a4f7388c0c993ebb344a952c4" expected_comment = ( - "Hello @pep8speaks! Thanks for opening this PR. We checked the lines you've touched for [PEP 8](https://" + "Hello @pep8speaks! Thanks for opening this PR. We checked the lines you've touched for [PEP\N{NBSP}8](https://" "www.python.org/dev/peps/pep-0008) issues, and found:\n\n* In the file [`modules/good_module.py`](https:/" "/github.com/OrkoHunter/test-pep8speaks/blob/7bd64e782f605d3a4f7388c0c993ebb344a952c4/modules/good_module" ".py):\n\n> [Line 14:80](https://github.com/OrkoHunter/test-pep8speaks/blob/7bd64e782f605d3a4f7388c0c993e" @@ -130,7 +130,7 @@ def test_errors_with_pep8speaks_yml(): head = "test-errors-with-pep8speaks.yml" sha = "076c6c107250b61f9bec84230e5c2aa63c337901" expected_comment = ( - "Hello @pep8speaks! Thanks for opening this PR. We checked the lines you've touched for [PEP 8](https://" + "Hello @pep8speaks! Thanks for opening this PR. We checked the lines you've touched for [PEP\N{NBSP}8](https://" "www.python.org/dev/peps/pep-0008) issues, and found:\n\n* In the file [`modules/good_module.py`](https:/" "/github.com/OrkoHunter/test-pep8speaks/blob/076c6c107250b61f9bec84230e5c2aa63c337901/modules/good_module" ".py):\n\n> [Line 14:82](https://github.com/OrkoHunter/test-pep8speaks/blob/076c6c107250b61f9bec84230e5c2" @@ -155,7 +155,7 @@ def test_errors_with_setup_cfg_and_pep8speaks_yml(): head = "test-errors-with-setup.cfg-and-pep8speaks.yml" sha = "d2dfbb72f2e72758bad016b682e5f9a5a38d5599" expected_comment = ( - "Hello @pep8speaks! Thanks for opening this PR. We checked the lines you've touched for [PEP 8](https://" + "Hello @pep8speaks! Thanks for opening this PR. We checked the lines you've touched for [PEP\N{NBSP}8](https://" "www.python.org/dev/peps/pep-0008) issues, and found:\n\n* In the file [`modules/good_module.py`](https:/" "/github.com/OrkoHunter/test-pep8speaks/blob/d2dfbb72f2e72758bad016b682e5f9a5a38d5599/modules/good_module" ".py):\n\n> [Line 2:1](https://github.com/OrkoHunter/test-pep8speaks/blob/d2dfbb72f2e72758bad016b682e5f9a" @@ -192,7 +192,7 @@ def test_errors_with_flake8(): head = "test-errors-with-flake8" sha = "b1ea9ab93d7ed0a357182f4bb4f44a002dafd71a" expected_comment = ( - "Hello @pep8speaks! Thanks for opening this PR. We checked the lines you've touched for [PEP 8](https://ww" + "Hello @pep8speaks! Thanks for opening this PR. We checked the lines you've touched for [PEP\N{NBSP}8](https://ww" "w.python.org/dev/peps/pep-0008) issues, and found:\n\n* In the file [`modules/good_module.py`](https://git" "hub.com/OrkoHunter/test-pep8speaks/blob/b1ea9ab93d7ed0a357182f4bb4f44a002dafd71a/modules/good_module.py" "):\n\n> [Line 2:1](https://github.com/OrkoHunter/test-pep8speaks/blob/b1ea9ab93d7ed0a357182f4bb4f44a002daf" From 837643bb95c18a5364cd0539b0f8edaeb3813a76 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Thu, 28 May 2020 23:14:18 +0900 Subject: [PATCH 0093/2173] Update autocomment instructions --- .github/auto-comment.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/auto-comment.yml b/.github/auto-comment.yml index b3803d5b..2ea02e21 100644 --- a/.github/auto-comment.yml +++ b/.github/auto-comment.yml @@ -2,10 +2,14 @@ pullRequestOpened: > :sparkling_heart: Thank you so much for creating the pull request! :sparkling_heart: - Have a look at [the test workflow](https://github.com/OrkoHunter/pep8speaks/blob/master/tests/test_workflow.py). The branch of this pull request is going to be deployed on Heroku with payload URL https://pep8speaks-pr-xxx.herokuapp.com . The repository https://github.com/OrkoHunter/test-pep8speaks is configured to test review deployments like this. + @OrkoHunter Please follow these steps to test this PR and deploy a new version! - @OrkoHunter Create a review app for this PR on [Heroku](https://dashboard.heroku.com/) and update the `Webhook URL` of the [test-pep8speaks app](https://github.com/settings/apps/test-pep8speaks). Finally restart [CI](https://app.circleci.com/pipelines/github/OrkoHunter/pep8speaks) to test this PR. - - Remember to deploy the production app and revert the Webhook URL of the test GitHub app when the Pull Request is merged. + - Create a review app for this PR on [Heroku](https://dashboard.heroku.com/). + - Update the `Webhook URL` of the [test-pep8speaks app](https://github.com/settings/apps/test-pep8speaks). + - In [CircleCI](https://app.circleci.com/pipelines/github/OrkoHunter/pep8speaks) advanced settings, turn on the `Pass secrets to builds from forked pull requests`. + - Restart the Pull Request build-and-test pipeline to test this PR. (PR can be merged if this passes). + - Revert the Webhook URL of the test GitHub app when the Pull Request is merged. + - Switch off the `Pass secrets to builds from forked pull requests` in the [CI](https://app.circleci.com/pipelines/github/OrkoHunter/pep8speaks) advanced settings. + - Remember to make a new release if needed and deploy the production app. From 5d659546561d02eb8d41b24036085f85d18792ff Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Wed, 16 Dec 2020 11:13:51 +0100 Subject: [PATCH 0094/2173] fix Catalyst logo --- .github/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/README.md b/.github/README.md index 6f4e500a..daa488b6 100644 --- a/.github/README.md +++ b/.github/README.md @@ -103,7 +103,7 @@ message: # Customize the comment made by the bot | | [Scikit Learn Contrib](https://github.com/scikit-learn-contrib) | scikit-learn compatible projects | | | [Scikit Image](https://github.com/scikit-image) | Image processing in Python | | | [Spyder IDE](https://github.com/spyder-ide/spyder) | The Scientific Python Development Environment | -| | [Catalyst](https://github.com/catalyst-team/catalyst) | PyTorch framework for Deep Learning research and development | +| | [Catalyst](https://github.com/catalyst-team/catalyst) | PyTorch framework for Deep Learning research and development | See the [complete list of organizations and users](https://github.com/OrkoHunter/pep8speaks/wiki/List-of-users-and-orgs). From 92fa38140fb553ed794f657f9afab52552d4efbb Mon Sep 17 00:00:00 2001 From: Oier Mees Date: Fri, 12 Feb 2021 19:57:41 +0100 Subject: [PATCH 0095/2173] Update runtime.txt update heroku python version number to 3.7.9, python-3.7.6 is not supported by heroku anymore --- runtime.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime.txt b/runtime.txt index 6919bf9e..795ee725 100644 --- a/runtime.txt +++ b/runtime.txt @@ -1 +1 @@ -python-3.7.6 +python-3.7.9 From f56bfa13db8c7837a4d43df2be99f5f979fcfc7e Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sat, 24 Sep 2022 22:32:24 +0530 Subject: [PATCH 0096/2173] replace pep8speaks.com with .org --- .github/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/README.md b/.github/README.md index daa488b6..5b3b7527 100644 --- a/.github/README.md +++ b/.github/README.md @@ -150,7 +150,7 @@ If you use this project and you like it, [please let me know](https://saythanks.

      Gold Sponsors

      -[Become a Gold Sponsor](https://github.com/OrkoHunter/pep8speaks/wiki/Funding#how-to-donate) and get your logo and name with a link to your site on our README and our [website](https://pep8speaks.com). +[Become a Gold Sponsor](https://github.com/OrkoHunter/pep8speaks/wiki/Funding#how-to-donate) and get your logo and name with a link to your site on our README and our [website](https://pep8speaks.org). @@ -176,7 +176,7 @@ If you use this project and you like it, [please let me know](https://saythanks.

      Silver Sponsors

      -[Become a Silver Sponsor](https://github.com/OrkoHunter/pep8speaks/wiki/Funding#how-to-donate) and get your logo and name with a link to your site on our README and our [website](https://pep8speaks.com). +[Become a Silver Sponsor](https://github.com/OrkoHunter/pep8speaks/wiki/Funding#how-to-donate) and get your logo and name with a link to your site on our README and our [website](https://pep8speaks.org).
      From 3369768cef6ceba3b940d04ce4116da577b8b546 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sat, 5 Aug 2023 18:43:34 +0530 Subject: [PATCH 0097/2173] Update README.md --- .github/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/README.md b/.github/README.md index 5b3b7527..6753ab96 100644 --- a/.github/README.md +++ b/.github/README.md @@ -1,5 +1,7 @@ # PEP 8 Speaks [![CircleCI](https://img.shields.io/circleci/build/github/OrkoHunter/pep8speaks)](https://app.circleci.com/pipelines/github/OrkoHunter/pep8speaks) ![GitHub release](https://img.shields.io/github/release/OrkoHunter/pep8speaks.svg) ![GitHub contributors](https://img.shields.io/github/contributors/OrkoHunter/pep8speaks.svg) [![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/OrkoHunter) [![Donate on liberapay](https://img.shields.io/liberapay/receives/OrkoHunter.svg?logo=liberapay)](https://liberapay.com/OrkoHunter) +## Notice: This project is no longer active. If you would like to help and take ownership, please take a look at https://github.com/pep8speaks-org/pep8speaks/issues/191. + A GitHub :octocat: app to automatically review Python code style over Pull Requests From 3259e43913341c1dd32483bdaa9134e9d1d385d8 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Sat, 5 Aug 2023 18:44:12 +0530 Subject: [PATCH 0098/2173] Update README.md --- .github/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/README.md b/.github/README.md index 6753ab96..30f50d4d 100644 --- a/.github/README.md +++ b/.github/README.md @@ -1,4 +1,4 @@ -# PEP 8 Speaks [![CircleCI](https://img.shields.io/circleci/build/github/OrkoHunter/pep8speaks)](https://app.circleci.com/pipelines/github/OrkoHunter/pep8speaks) ![GitHub release](https://img.shields.io/github/release/OrkoHunter/pep8speaks.svg) ![GitHub contributors](https://img.shields.io/github/contributors/OrkoHunter/pep8speaks.svg) [![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/OrkoHunter) [![Donate on liberapay](https://img.shields.io/liberapay/receives/OrkoHunter.svg?logo=liberapay)](https://liberapay.com/OrkoHunter) +# PEP 8 Speaks [![CircleCI](https://img.shields.io/circleci/build/github/OrkoHunter/pep8speaks)](https://app.circleci.com/pipelines/github/OrkoHunter/pep8speaks) ![GitHub release](https://img.shields.io/github/release/OrkoHunter/pep8speaks.svg) ![GitHub contributors](https://img.shields.io/github/contributors/OrkoHunter/pep8speaks.svg) [![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/OrkoHunter) ## Notice: This project is no longer active. If you would like to help and take ownership, please take a look at https://github.com/pep8speaks-org/pep8speaks/issues/191. From 3725fc36f96f7fe8cd11398e208c2c795685e52a Mon Sep 17 00:00:00 2001 From: Tushar <30565750+tushar5526@users.noreply.github.com> Date: Wed, 20 Sep 2023 17:28:13 +0530 Subject: [PATCH 0099/2173] Dockerize pep8speaks and use gunicorn to deploy (#193) * feat: Dockerize pep8speaks * feat: dockerize pep8speaks * feat: add env vars in compose * feat: fix redirect URL to pep8speaks.org * feat: Use bearer token for auth, update docker compose and env vars * feat: add bot username * Add restart policy * feat: use alpine images and don't cache dependencies --- .dockerignore | 4 ++++ .env.sample | 6 ++++++ Dockerfile | 22 ++++++++++++++++++++++ Procfile | 1 - app.json | 29 ----------------------------- docker-compose.yml | 16 ++++++++++++++++ pep8speaks/constants.py | 8 +++++--- pep8speaks/utils.py | 4 ++-- requirements/base.txt | 2 ++ runtime.txt | 1 - server.py | 12 ++++++++---- tests/local/test_server.py | 2 +- 12 files changed, 66 insertions(+), 41 deletions(-) create mode 100644 .dockerignore create mode 100644 .env.sample create mode 100644 Dockerfile delete mode 100644 Procfile delete mode 100644 app.json create mode 100644 docker-compose.yml delete mode 100644 runtime.txt diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 00000000..542c77ed --- /dev/null +++ b/.dockerignore @@ -0,0 +1,4 @@ +.env +.circleci +.github +tests diff --git a/.env.sample b/.env.sample new file mode 100644 index 00000000..3765253e --- /dev/null +++ b/.env.sample @@ -0,0 +1,6 @@ +APP_SECRET_KEY="APP_SECRET_KEY" +GITHUB_TOKEN="GITHUB_TOKEN" +GITHUB_APP_WEBHOOK_SECRET="GITHUB_APP_WEBHOOK_SECRET" +LOG_LEVEL="INFO" +FLASK_DEBUG=0 +BOT_USERNAME="pep8speaks" diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..c786a714 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,22 @@ +# Use an official Python runtime as a parent image +FROM python:3.8-alpine + +# Set the working directory to /app +WORKDIR /app + +# Copy the current directory contents into the container at /app +COPY requirements /app/requirements +COPY requirements.txt /app/requirements.txt + +# Install any needed packages specified in requirements.txt +RUN pip install --no-cache-dir -r requirements.txt + +COPY pep8speaks /app/pep8speaks +COPY server.py /app/server.py +COPY data /app/data + +# Expose port 8000 for the Gunicorn server to listen on +EXPOSE 8000 + +# Define the command to run your application using Gunicorn +CMD ["gunicorn", "server:app", "--bind", "0.0.0.0:8000", "--workers", "4"] diff --git a/Procfile b/Procfile deleted file mode 100644 index caf67228..00000000 --- a/Procfile +++ /dev/null @@ -1 +0,0 @@ -web: gunicorn server:app diff --git a/app.json b/app.json deleted file mode 100644 index de4f5243..00000000 --- a/app.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "PEP8Speaks", - "description": "A GitHub integration to automatically review Python code style over Pull Requests", - "repository": "https://github.com/OrkoHunter/pep8speaks", - "logo": "https://avatars1.githubusercontent.com/u/24736507?s=460&v=4", - "website": "https://pep8speaks.com", - "keywords": ["python"], - "env" : { - "APP_SECRET_KEY": { - "description": "A Flask app secret key (auto-generated here)", - "generator": "secret" - }, - "BOT_USERNAME": { - "description": "GitHub username of your pep8speaks bot" - }, - "GITHUB_PAYLOAD_SECRET": { - "description": "Use the same secret key for configuring payloads in your repository's settings. This is to ensure that the app responds only to payloads sent by your repositories." - }, - "GITHUB_TOKEN": { - "description": "OAuth token of your pep8speaks bot (Generate from the bot's GitHub settings)" - } - }, - "image": "heroku/python", - "buildpacks": [ - { - "url": "heroku/python" - } - ] -} diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..081bbd23 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,16 @@ +version: '3' +services: + pep8speaks: + build: . + image: pep8speaks + ports: + - ${SERVICE_PORT-8000}:8000 + command: [ "gunicorn", "server:app", "--bind", "0.0.0.0:8000", "--workers", "4" ] + environment: + APP_SECRET_KEY: ${APP_SECRET_KEY-secret_key} + GITHUB_TOKEN: ${GITHUB_TOKEN} + GITHUB_APP_WEBHOOK_SECRET: ${GITHUB_APP_WEBHOOK_SECRET} + LOG_LEVEL: ${LOG_LEVEL-DEBUG} + FLASK_DEBUG: ${FLASK_DEBUG-1} + BOT_USERNAME: ${BOT_USERNAME-pep8speaks} + restart: always diff --git a/pep8speaks/constants.py b/pep8speaks/constants.py index 04579f30..30e8bfa1 100644 --- a/pep8speaks/constants.py +++ b/pep8speaks/constants.py @@ -1,6 +1,8 @@ import os +from dotenv import load_dotenv -# HEADERS is deprecated, use AUTH only -HEADERS = {"Authorization": "token " + os.environ.setdefault("GITHUB_TOKEN", "")} -AUTH = (os.environ.setdefault("BOT_USERNAME", ""), os.environ.setdefault("GITHUB_TOKEN", "")) +load_dotenv() +GITHUB_TOKEN = os.environ.get('GITHUB_TOKEN', '') +LOG_LEVEL = os.environ.get('LOG_LEVEL', 'INFO') BASE_URL = 'https://api.github.com' +FLASK_DEBUG=0 \ No newline at end of file diff --git a/pep8speaks/utils.py b/pep8speaks/utils.py index 00e9ad3a..4547f165 100644 --- a/pep8speaks/utils.py +++ b/pep8speaks/utils.py @@ -7,7 +7,7 @@ from flask import abort from flask import Response as FResponse import requests -from pep8speaks.constants import AUTH, BASE_URL +from pep8speaks.constants import GITHUB_TOKEN, BASE_URL def query_request(query=None, method="GET", **kwargs): @@ -22,7 +22,7 @@ def query_request(query=None, method="GET", **kwargs): query = BASE_URL + query request_kwargs = { - "auth": AUTH, + "headers": {"Authorization": f"Bearer {GITHUB_TOKEN}"} } request_kwargs.update(**kwargs) return requests.request(method, query, **request_kwargs) diff --git a/requirements/base.txt b/requirements/base.txt index 64e9bc77..ba28330f 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -8,3 +8,5 @@ unidiff~=0.6.0 autopep8~=1.5.2 markdown~=3.2.2 beautifulsoup4~=4.9.1 +markupsafe~=2.0.1 +python-dotenv~=1.0.0 diff --git a/runtime.txt b/runtime.txt deleted file mode 100644 index 795ee725..00000000 --- a/runtime.txt +++ /dev/null @@ -1 +0,0 @@ -python-3.7.9 diff --git a/server.py b/server.py index c46ac344..510eb194 100644 --- a/server.py +++ b/server.py @@ -4,14 +4,18 @@ import sys from flask import Flask, redirect, request - +from pep8speaks.constants import LOG_LEVEL from pep8speaks import handlers, utils def create_app(): app = Flask(__name__) - logging.basicConfig(stream=sys.stdout, level=logging.DEBUG) + # Map the environment variable value to a logging level + log_level = LOG_LEVEL.upper() # Ensure it's in uppercase + log_level = getattr(logging, log_level, logging.INFO) + + logging.basicConfig(stream=sys.stdout, level=log_level) @app.route("/", methods=['GET', 'POST']) def main(): @@ -40,7 +44,7 @@ def main(): app.logger.info("Received an unauthorized request") return handlers.handle_unauthorized_requests() else: - return redirect("https://pep8speaks.com") + return redirect("https://pep8speaks.org") app.secret_key = os.environ.setdefault("APP_SECRET_KEY", "") app.config['SESSION_TYPE'] = 'filesystem' @@ -53,4 +57,4 @@ def main(): if __name__ == '__main__': - app.run(debug=True) + app.run() diff --git a/tests/local/test_server.py b/tests/local/test_server.py index 0587e8d5..e1cc0127 100644 --- a/tests/local/test_server.py +++ b/tests/local/test_server.py @@ -8,7 +8,7 @@ class TestApp: def test_main_get(self, client): response = client.get(url_for('main')) assert response.status_code == 302 - assert response.location == 'https://pep8speaks.com' + assert response.location == 'https://pep8speaks.org' @pytest.mark.parametrize('event, action', [ ("pull_request", "handle_pull_request"), From 7f154d5f3aad1395dcf5a0b11f0afa6e24512ad5 Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Fri, 22 Sep 2023 11:27:28 +0530 Subject: [PATCH 0100/2173] Project is maintained again so removed unmaintaind status from the readme (#198) --- .github/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/README.md b/.github/README.md index 30f50d4d..02479bfb 100644 --- a/.github/README.md +++ b/.github/README.md @@ -1,7 +1,5 @@ # PEP 8 Speaks [![CircleCI](https://img.shields.io/circleci/build/github/OrkoHunter/pep8speaks)](https://app.circleci.com/pipelines/github/OrkoHunter/pep8speaks) ![GitHub release](https://img.shields.io/github/release/OrkoHunter/pep8speaks.svg) ![GitHub contributors](https://img.shields.io/github/contributors/OrkoHunter/pep8speaks.svg) [![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/OrkoHunter) -## Notice: This project is no longer active. If you would like to help and take ownership, please take a look at https://github.com/pep8speaks-org/pep8speaks/issues/191. - A GitHub :octocat: app to automatically review Python code style over Pull Requests @@ -150,7 +148,9 @@ If you use this project and you like it, [please let me know](https://saythanks. [.](https://github.com/OrkoHunter/python-easter-eggs) -

      Gold Sponsors

      +

      Previous Sponsors

      + +

      Gold Sponsors

      [Become a Gold Sponsor](https://github.com/OrkoHunter/pep8speaks/wiki/Funding#how-to-donate) and get your logo and name with a link to your site on our README and our [website](https://pep8speaks.org). @@ -203,4 +203,4 @@ If you use this project and you like it, [please let me know](https://saythanks. # Updates -- April 5, 2020 - [PEP8Speaks - Now helping 5,000 open source projects write neat and clean Python](https://orkohunter.net/blog/pep8speaks-5000-projects/) +- April 5, 2020 - [PEP8Speaks - Now helping 5,000 open source projects write neat and clean Python](https://orkohunter.net/blog/pep8speaks-5000-projects/) \ No newline at end of file From 8cbd49af2c46aa06df388536f413fe69741153f1 Mon Sep 17 00:00:00 2001 From: Tushar <30565750+tushar5526@users.noreply.github.com> Date: Fri, 22 Sep 2023 14:45:17 +0530 Subject: [PATCH 0101/2173] Create DEPLOYMENT-GUIDE.md Closes #197 --- DEPLOYMENT-GUIDE.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 DEPLOYMENT-GUIDE.md diff --git a/DEPLOYMENT-GUIDE.md b/DEPLOYMENT-GUIDE.md new file mode 100644 index 00000000..99d6bcae --- /dev/null +++ b/DEPLOYMENT-GUIDE.md @@ -0,0 +1,36 @@ +# Deployment Guide + +This guide covers deploying the pep8speaks server on any Linux-based machine. + +System Requirements +------------------- +The current server is hosted on a DO droplet with the following specs: + +- 512 MB RAM +- 1 CPU General purpose shared CPU + +and is able to handle the current load of ~100 req/minute. + +Deployment Steps +---------------- + +- We use `docker` and `docker-compose` to deploy the project. Install them from [here](https://docs.docker.com/engine/install/). +- For Ubunut 22.04 LTS run the following command + ``` + apt update + apt install -y docker.io + apt install -y docker-compose + ``` +- Clone the pep8speaks project or copy the `docker-compose.yml` and `.env.sample` files. +- Make a `.env` file by copying the `.env.sample` and populate the environment variable. +- Run the following command: + ``` + # This command starts the pep8speaks container + docker-compose up -d + # This command can be used to see the health + docker-compose ps + # Check logs using + docker-compose logs -f --tail 100 + ``` +- Get a domain name pointed to the IP of the server and add `HTTPS` by following this tutorial: https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-20-04 + From cac2b99e416436a5afe41ce0d663f0cb840e4f1b Mon Sep 17 00:00:00 2001 From: Tushar Date: Fri, 22 Sep 2023 12:15:39 +0000 Subject: [PATCH 0102/2173] Add recent activity GHA --- .github/README.md | 4 +++- .github/workflows/recent-activity.yml | 20 ++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/recent-activity.yml diff --git a/.github/README.md b/.github/README.md index 02479bfb..3e80c517 100644 --- a/.github/README.md +++ b/.github/README.md @@ -203,4 +203,6 @@ If you use this project and you like it, [please let me know](https://saythanks. # Updates -- April 5, 2020 - [PEP8Speaks - Now helping 5,000 open source projects write neat and clean Python](https://orkohunter.net/blog/pep8speaks-5000-projects/) \ No newline at end of file +- April 5, 2020 - [PEP8Speaks - Now helping 5,000 open source projects write neat and clean Python](https://orkohunter.net/blog/pep8speaks-5000-projects/) + + \ No newline at end of file diff --git a/.github/workflows/recent-activity.yml b/.github/workflows/recent-activity.yml new file mode 100644 index 00000000..599bef66 --- /dev/null +++ b/.github/workflows/recent-activity.yml @@ -0,0 +1,20 @@ +name: Update README +on: + schedule: + - cron: "*/30 * * * *" + workflow_dispatch: + +jobs: + build: + name: Update this repo's README with recent activity + runs-on: ubuntu-latest + permissions: + contents: write + + steps: + - uses: actions/checkout@v3 + - uses: jamesgeorge007/github-activity-readme@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + GH_USERNAME: pep8speaks \ No newline at end of file From 2f06dde6c32d24a3a23637921ab904b73c090db6 Mon Sep 17 00:00:00 2001 From: Tushar Date: Fri, 22 Sep 2023 12:17:52 +0000 Subject: [PATCH 0103/2173] feat: tmp schedule cron for every minute --- .github/workflows/recent-activity.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/recent-activity.yml b/.github/workflows/recent-activity.yml index 599bef66..e14bb043 100644 --- a/.github/workflows/recent-activity.yml +++ b/.github/workflows/recent-activity.yml @@ -1,7 +1,7 @@ name: Update README on: schedule: - - cron: "*/30 * * * *" + - cron: "* * * * *" workflow_dispatch: jobs: From 1174f51fe53cc8116b0b63035ad5ef2a2f9a96f4 Mon Sep 17 00:00:00 2001 From: Tushar Date: Fri, 22 Sep 2023 12:23:28 +0000 Subject: [PATCH 0104/2173] remove cron job --- .github/workflows/recent-activity.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/recent-activity.yml b/.github/workflows/recent-activity.yml index e14bb043..3a96868e 100644 --- a/.github/workflows/recent-activity.yml +++ b/.github/workflows/recent-activity.yml @@ -1,7 +1,7 @@ name: Update README on: - schedule: - - cron: "* * * * *" + # schedule: + # - cron: "* * * * *" workflow_dispatch: jobs: From 1102f305829d702465761862f54348c964ecc46f Mon Sep 17 00:00:00 2001 From: Tushar Date: Fri, 22 Sep 2023 12:25:42 +0000 Subject: [PATCH 0105/2173] update max lines to 10 --- .github/workflows/recent-activity.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/recent-activity.yml b/.github/workflows/recent-activity.yml index 3a96868e..59a51d97 100644 --- a/.github/workflows/recent-activity.yml +++ b/.github/workflows/recent-activity.yml @@ -1,7 +1,7 @@ name: Update README on: - # schedule: - # - cron: "* * * * *" + schedule: + - cron: "*/30 * * * *" workflow_dispatch: jobs: @@ -17,4 +17,5 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - GH_USERNAME: pep8speaks \ No newline at end of file + GH_USERNAME: pep8speaks + MAX_LINES: 10 \ No newline at end of file From 1cbc6cd8b375aea32789bbc669d0a36a953cad38 Mon Sep 17 00:00:00 2001 From: Tushar <30565750+tushar5526@users.noreply.github.com> Date: Fri, 22 Sep 2023 12:27:19 +0000 Subject: [PATCH 0106/2173] Recent activity (#204) Add recent activity GHA --- .github/README.md | 4 +++- .github/workflows/recent-activity.yml | 21 +++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/recent-activity.yml diff --git a/.github/README.md b/.github/README.md index 02479bfb..3e80c517 100644 --- a/.github/README.md +++ b/.github/README.md @@ -203,4 +203,6 @@ If you use this project and you like it, [please let me know](https://saythanks. # Updates -- April 5, 2020 - [PEP8Speaks - Now helping 5,000 open source projects write neat and clean Python](https://orkohunter.net/blog/pep8speaks-5000-projects/) \ No newline at end of file +- April 5, 2020 - [PEP8Speaks - Now helping 5,000 open source projects write neat and clean Python](https://orkohunter.net/blog/pep8speaks-5000-projects/) + + \ No newline at end of file diff --git a/.github/workflows/recent-activity.yml b/.github/workflows/recent-activity.yml new file mode 100644 index 00000000..59a51d97 --- /dev/null +++ b/.github/workflows/recent-activity.yml @@ -0,0 +1,21 @@ +name: Update README +on: + schedule: + - cron: "*/30 * * * *" + workflow_dispatch: + +jobs: + build: + name: Update this repo's README with recent activity + runs-on: ubuntu-latest + permissions: + contents: write + + steps: + - uses: actions/checkout@v3 + - uses: jamesgeorge007/github-activity-readme@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + GH_USERNAME: pep8speaks + MAX_LINES: 10 \ No newline at end of file From fc4b14f5ac03360e2104561d1c6db30bd0e21f0e Mon Sep 17 00:00:00 2001 From: Tushar <30565750+tushar5526@users.noreply.github.com> Date: Fri, 22 Sep 2023 12:32:47 +0000 Subject: [PATCH 0107/2173] Revert "Recent activity (#204)" (#205) This reverts commit 1cbc6cd8b375aea32789bbc669d0a36a953cad38. --- .github/README.md | 4 +--- .github/workflows/recent-activity.yml | 21 --------------------- 2 files changed, 1 insertion(+), 24 deletions(-) delete mode 100644 .github/workflows/recent-activity.yml diff --git a/.github/README.md b/.github/README.md index 3e80c517..02479bfb 100644 --- a/.github/README.md +++ b/.github/README.md @@ -203,6 +203,4 @@ If you use this project and you like it, [please let me know](https://saythanks. # Updates -- April 5, 2020 - [PEP8Speaks - Now helping 5,000 open source projects write neat and clean Python](https://orkohunter.net/blog/pep8speaks-5000-projects/) - - \ No newline at end of file +- April 5, 2020 - [PEP8Speaks - Now helping 5,000 open source projects write neat and clean Python](https://orkohunter.net/blog/pep8speaks-5000-projects/) \ No newline at end of file diff --git a/.github/workflows/recent-activity.yml b/.github/workflows/recent-activity.yml deleted file mode 100644 index 59a51d97..00000000 --- a/.github/workflows/recent-activity.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Update README -on: - schedule: - - cron: "*/30 * * * *" - workflow_dispatch: - -jobs: - build: - name: Update this repo's README with recent activity - runs-on: ubuntu-latest - permissions: - contents: write - - steps: - - uses: actions/checkout@v3 - - uses: jamesgeorge007/github-activity-readme@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - GH_USERNAME: pep8speaks - MAX_LINES: 10 \ No newline at end of file From 4c09020301da531ee559183b51c2bca5639d8847 Mon Sep 17 00:00:00 2001 From: Tushar Date: Fri, 22 Sep 2023 12:33:34 +0000 Subject: [PATCH 0108/2173] move readme to root folder --- .github/README.md => README.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/README.md => README.md (100%) diff --git a/.github/README.md b/README.md similarity index 100% rename from .github/README.md rename to README.md From 132a7a062c47e19ac5df68b43bcfed3f45ebe5f7 Mon Sep 17 00:00:00 2001 From: Tushar <30565750+tushar5526@users.noreply.github.com> Date: Fri, 22 Sep 2023 12:34:47 +0000 Subject: [PATCH 0109/2173] Recent activity (#206) * Add recent activity GHA * move readme to root folder --- .github/workflows/recent-activity.yml | 21 +++++++++++++++++++++ .github/README.md => README.md | 4 +++- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/recent-activity.yml rename .github/README.md => README.md (99%) diff --git a/.github/workflows/recent-activity.yml b/.github/workflows/recent-activity.yml new file mode 100644 index 00000000..59a51d97 --- /dev/null +++ b/.github/workflows/recent-activity.yml @@ -0,0 +1,21 @@ +name: Update README +on: + schedule: + - cron: "*/30 * * * *" + workflow_dispatch: + +jobs: + build: + name: Update this repo's README with recent activity + runs-on: ubuntu-latest + permissions: + contents: write + + steps: + - uses: actions/checkout@v3 + - uses: jamesgeorge007/github-activity-readme@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + GH_USERNAME: pep8speaks + MAX_LINES: 10 \ No newline at end of file diff --git a/.github/README.md b/README.md similarity index 99% rename from .github/README.md rename to README.md index 02479bfb..3e80c517 100644 --- a/.github/README.md +++ b/README.md @@ -203,4 +203,6 @@ If you use this project and you like it, [please let me know](https://saythanks. # Updates -- April 5, 2020 - [PEP8Speaks - Now helping 5,000 open source projects write neat and clean Python](https://orkohunter.net/blog/pep8speaks-5000-projects/) \ No newline at end of file +- April 5, 2020 - [PEP8Speaks - Now helping 5,000 open source projects write neat and clean Python](https://orkohunter.net/blog/pep8speaks-5000-projects/) + + \ No newline at end of file From d9c7b092d72f401a2061e366dc89d93926ec4765 Mon Sep 17 00:00:00 2001 From: Tushar <30565750+tushar5526@users.noreply.github.com> Date: Fri, 22 Sep 2023 12:37:16 +0000 Subject: [PATCH 0110/2173] Revert "Recent activity (#206)" (#207) This reverts commit 132a7a062c47e19ac5df68b43bcfed3f45ebe5f7. --- README.md => .github/README.md | 4 +--- .github/workflows/recent-activity.yml | 21 --------------------- 2 files changed, 1 insertion(+), 24 deletions(-) rename README.md => .github/README.md (99%) delete mode 100644 .github/workflows/recent-activity.yml diff --git a/README.md b/.github/README.md similarity index 99% rename from README.md rename to .github/README.md index 3e80c517..02479bfb 100644 --- a/README.md +++ b/.github/README.md @@ -203,6 +203,4 @@ If you use this project and you like it, [please let me know](https://saythanks. # Updates -- April 5, 2020 - [PEP8Speaks - Now helping 5,000 open source projects write neat and clean Python](https://orkohunter.net/blog/pep8speaks-5000-projects/) - - \ No newline at end of file +- April 5, 2020 - [PEP8Speaks - Now helping 5,000 open source projects write neat and clean Python](https://orkohunter.net/blog/pep8speaks-5000-projects/) \ No newline at end of file diff --git a/.github/workflows/recent-activity.yml b/.github/workflows/recent-activity.yml deleted file mode 100644 index 59a51d97..00000000 --- a/.github/workflows/recent-activity.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Update README -on: - schedule: - - cron: "*/30 * * * *" - workflow_dispatch: - -jobs: - build: - name: Update this repo's README with recent activity - runs-on: ubuntu-latest - permissions: - contents: write - - steps: - - uses: actions/checkout@v3 - - uses: jamesgeorge007/github-activity-readme@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - GH_USERNAME: pep8speaks - MAX_LINES: 10 \ No newline at end of file From 92d6e5d4ec364dcbad884512007cd48bf1c72bcd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Sep 2023 12:42:37 +0000 Subject: [PATCH 0111/2173] :zap: Update README with the recent activity --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3e80c517..a616325f 100644 --- a/README.md +++ b/README.md @@ -205,4 +205,15 @@ If you use this project and you like it, [please let me know](https://saythanks. - April 5, 2020 - [PEP8Speaks - Now helping 5,000 open source projects write neat and clean Python](https://orkohunter.net/blog/pep8speaks-5000-projects/) - \ No newline at end of file + +1. 🗣 Commented on [#1171](https://github.com/aimclub/FEDOT/pull/1171#issuecomment-1731341738) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#26](https://github.com/eastgenomics/eris/pull/26#issuecomment-1731288026) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#4](https://github.com/eastgenomics/eggd_RNASeQC/pull/4#issuecomment-1731183996) in [eastgenomics/eggd_RNASeQC](https://github.com/eastgenomics/eggd_RNASeQC) +4. 🗣 Commented on [#918](https://github.com/avaframe/AvaFrame/pull/918#issuecomment-1731147325) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#7139](https://github.com/scikit-image/scikit-image/pull/7139#issuecomment-1731133648) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +6. 🗣 Commented on [#7145](https://github.com/scikit-image/scikit-image/pull/7145#issuecomment-1731110063) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +7. 🗣 Commented on [#560](https://github.com/OpenFreeEnergy/openfe/pull/560#issuecomment-1731061367) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#127](https://github.com/MDAnalysis/GridDataFormats/pull/127#issuecomment-1731018146) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) +9. 🗣 Commented on [#5198](https://github.com/rhinstaller/anaconda/pull/5198#issuecomment-1730822566) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#224](https://github.com/DeMarcoLab/fibsem/pull/224#issuecomment-1730817198) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) + \ No newline at end of file From 9ed6ee65362c0ea94c929c10801504137e44c659 Mon Sep 17 00:00:00 2001 From: Tushar Date: Fri, 22 Sep 2023 12:44:07 +0000 Subject: [PATCH 0112/2173] update GHA name --- .github/workflows/recent-activity.yml | 2 +- README.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/recent-activity.yml b/.github/workflows/recent-activity.yml index 59a51d97..56ad6d87 100644 --- a/.github/workflows/recent-activity.yml +++ b/.github/workflows/recent-activity.yml @@ -1,4 +1,4 @@ -name: Update README +name: Update Recent Activity on: schedule: - cron: "*/30 * * * *" diff --git a/README.md b/README.md index 3e80c517..0cde1881 100644 --- a/README.md +++ b/README.md @@ -205,4 +205,6 @@ If you use this project and you like it, [please let me know](https://saythanks. - April 5, 2020 - [PEP8Speaks - Now helping 5,000 open source projects write neat and clean Python](https://orkohunter.net/blog/pep8speaks-5000-projects/) +# Recent Activity + \ No newline at end of file From f85e77d22a5a051a71133a90ec78c857d37df963 Mon Sep 17 00:00:00 2001 From: Tushar Date: Fri, 22 Sep 2023 13:01:44 +0000 Subject: [PATCH 0113/2173] feat: Add GHA to build docker images and push to GH packages --- .github/workflows/release.yml | 51 +++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 00000000..c9486c18 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,51 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# GitHub recommends pinning actions to a commit SHA. +# To get a newer version, you will need to update the SHA. +# You can also reference a tag or branch, but the action may change without warning. + +name: Create and publish a Docker image + +on: + push: + tags: ["v*.*.*", "v*.*.*-*"] + + +env: + REGISTRY: ghcr.io + IMAGE_NAME: ${{ github.repository }} + +jobs: + build-and-push-image: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Log in to the Container registry + uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + + - name: Build and push Docker image + uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 + with: + context: . + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file From 0c065f2ec8e014a574b55b02b2dd358fdea3eb0e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Sep 2023 13:10:03 +0000 Subject: [PATCH 0114/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 549b1a2e..638e2501 100644 --- a/README.md +++ b/README.md @@ -208,14 +208,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1171](https://github.com/aimclub/FEDOT/pull/1171#issuecomment-1731341738) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#26](https://github.com/eastgenomics/eris/pull/26#issuecomment-1731288026) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#4](https://github.com/eastgenomics/eggd_RNASeQC/pull/4#issuecomment-1731183996) in [eastgenomics/eggd_RNASeQC](https://github.com/eastgenomics/eggd_RNASeQC) -4. 🗣 Commented on [#918](https://github.com/avaframe/AvaFrame/pull/918#issuecomment-1731147325) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#7139](https://github.com/scikit-image/scikit-image/pull/7139#issuecomment-1731133648) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -6. 🗣 Commented on [#7145](https://github.com/scikit-image/scikit-image/pull/7145#issuecomment-1731110063) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -7. 🗣 Commented on [#560](https://github.com/OpenFreeEnergy/openfe/pull/560#issuecomment-1731061367) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#127](https://github.com/MDAnalysis/GridDataFormats/pull/127#issuecomment-1731018146) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) -9. 🗣 Commented on [#5198](https://github.com/rhinstaller/anaconda/pull/5198#issuecomment-1730822566) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#224](https://github.com/DeMarcoLab/fibsem/pull/224#issuecomment-1730817198) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +1. 🗣 Commented on [#80](https://github.com/aimclub/BAMT/pull/80#issuecomment-1731365625) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +2. 🗣 Commented on [#7071](https://github.com/scikit-image/scikit-image/pull/7071#issuecomment-1731354429) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +3. 🗣 Commented on [#1171](https://github.com/aimclub/FEDOT/pull/1171#issuecomment-1731341738) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#26](https://github.com/eastgenomics/eris/pull/26#issuecomment-1731288026) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#4](https://github.com/eastgenomics/eggd_RNASeQC/pull/4#issuecomment-1731183996) in [eastgenomics/eggd_RNASeQC](https://github.com/eastgenomics/eggd_RNASeQC) +6. 🗣 Commented on [#918](https://github.com/avaframe/AvaFrame/pull/918#issuecomment-1731147325) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#7139](https://github.com/scikit-image/scikit-image/pull/7139#issuecomment-1731133648) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +8. 🗣 Commented on [#7145](https://github.com/scikit-image/scikit-image/pull/7145#issuecomment-1731110063) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +9. 🗣 Commented on [#560](https://github.com/OpenFreeEnergy/openfe/pull/560#issuecomment-1731061367) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#127](https://github.com/MDAnalysis/GridDataFormats/pull/127#issuecomment-1731018146) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) From 6666127105b85519058c91aaa2e1f251975e0ff5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Sep 2023 17:07:10 +0000 Subject: [PATCH 0115/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 638e2501..80734e87 100644 --- a/README.md +++ b/README.md @@ -208,14 +208,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#80](https://github.com/aimclub/BAMT/pull/80#issuecomment-1731365625) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -2. 🗣 Commented on [#7071](https://github.com/scikit-image/scikit-image/pull/7071#issuecomment-1731354429) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -3. 🗣 Commented on [#1171](https://github.com/aimclub/FEDOT/pull/1171#issuecomment-1731341738) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#26](https://github.com/eastgenomics/eris/pull/26#issuecomment-1731288026) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#4](https://github.com/eastgenomics/eggd_RNASeQC/pull/4#issuecomment-1731183996) in [eastgenomics/eggd_RNASeQC](https://github.com/eastgenomics/eggd_RNASeQC) -6. 🗣 Commented on [#918](https://github.com/avaframe/AvaFrame/pull/918#issuecomment-1731147325) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#7139](https://github.com/scikit-image/scikit-image/pull/7139#issuecomment-1731133648) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -8. 🗣 Commented on [#7145](https://github.com/scikit-image/scikit-image/pull/7145#issuecomment-1731110063) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -9. 🗣 Commented on [#560](https://github.com/OpenFreeEnergy/openfe/pull/560#issuecomment-1731061367) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#127](https://github.com/MDAnalysis/GridDataFormats/pull/127#issuecomment-1731018146) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) +1. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731749743) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#28](https://github.com/eastgenomics/eris/pull/28#issuecomment-1731747488) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#1358](https://github.com/spacetelescope/jwql/pull/1358#issuecomment-1731720136) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#80](https://github.com/aimclub/BAMT/pull/80#issuecomment-1731365625) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +5. 🗣 Commented on [#7071](https://github.com/scikit-image/scikit-image/pull/7071#issuecomment-1731354429) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +6. 🗣 Commented on [#1171](https://github.com/aimclub/FEDOT/pull/1171#issuecomment-1731341738) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#26](https://github.com/eastgenomics/eris/pull/26#issuecomment-1731288026) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#4](https://github.com/eastgenomics/eggd_RNASeQC/pull/4#issuecomment-1731183996) in [eastgenomics/eggd_RNASeQC](https://github.com/eastgenomics/eggd_RNASeQC) +9. 🗣 Commented on [#918](https://github.com/avaframe/AvaFrame/pull/918#issuecomment-1731147325) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#7139](https://github.com/scikit-image/scikit-image/pull/7139#issuecomment-1731133648) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) From 9c5bca16a8d7e21feb58819f34d4a7bb22ea3a27 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Sep 2023 17:32:43 +0000 Subject: [PATCH 0116/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 80734e87..efe2d97b 100644 --- a/README.md +++ b/README.md @@ -208,14 +208,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731749743) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#28](https://github.com/eastgenomics/eris/pull/28#issuecomment-1731747488) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#1358](https://github.com/spacetelescope/jwql/pull/1358#issuecomment-1731720136) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#80](https://github.com/aimclub/BAMT/pull/80#issuecomment-1731365625) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -5. 🗣 Commented on [#7071](https://github.com/scikit-image/scikit-image/pull/7071#issuecomment-1731354429) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -6. 🗣 Commented on [#1171](https://github.com/aimclub/FEDOT/pull/1171#issuecomment-1731341738) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#26](https://github.com/eastgenomics/eris/pull/26#issuecomment-1731288026) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#4](https://github.com/eastgenomics/eggd_RNASeQC/pull/4#issuecomment-1731183996) in [eastgenomics/eggd_RNASeQC](https://github.com/eastgenomics/eggd_RNASeQC) -9. 🗣 Commented on [#918](https://github.com/avaframe/AvaFrame/pull/918#issuecomment-1731147325) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#7139](https://github.com/scikit-image/scikit-image/pull/7139#issuecomment-1731133648) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +1. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731770829) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#203](https://github.com/scil-vital/dwi_ml/pull/203#issuecomment-1731764121) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +3. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731749743) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#28](https://github.com/eastgenomics/eris/pull/28#issuecomment-1731747488) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#1358](https://github.com/spacetelescope/jwql/pull/1358#issuecomment-1731720136) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#80](https://github.com/aimclub/BAMT/pull/80#issuecomment-1731365625) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +7. 🗣 Commented on [#7071](https://github.com/scikit-image/scikit-image/pull/7071#issuecomment-1731354429) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +8. 🗣 Commented on [#1171](https://github.com/aimclub/FEDOT/pull/1171#issuecomment-1731341738) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#26](https://github.com/eastgenomics/eris/pull/26#issuecomment-1731288026) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#4](https://github.com/eastgenomics/eggd_RNASeQC/pull/4#issuecomment-1731183996) in [eastgenomics/eggd_RNASeQC](https://github.com/eastgenomics/eggd_RNASeQC) From b8d0d8ca2074e6d9d12106d3792aa5c248846c75 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Sep 2023 18:33:14 +0000 Subject: [PATCH 0117/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index efe2d97b..0d34ff79 100644 --- a/README.md +++ b/README.md @@ -208,14 +208,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731770829) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#203](https://github.com/scil-vital/dwi_ml/pull/203#issuecomment-1731764121) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -3. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731749743) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#28](https://github.com/eastgenomics/eris/pull/28#issuecomment-1731747488) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#1358](https://github.com/spacetelescope/jwql/pull/1358#issuecomment-1731720136) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#80](https://github.com/aimclub/BAMT/pull/80#issuecomment-1731365625) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -7. 🗣 Commented on [#7071](https://github.com/scikit-image/scikit-image/pull/7071#issuecomment-1731354429) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -8. 🗣 Commented on [#1171](https://github.com/aimclub/FEDOT/pull/1171#issuecomment-1731341738) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#26](https://github.com/eastgenomics/eris/pull/26#issuecomment-1731288026) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#4](https://github.com/eastgenomics/eggd_RNASeQC/pull/4#issuecomment-1731183996) in [eastgenomics/eggd_RNASeQC](https://github.com/eastgenomics/eggd_RNASeQC) +1. 🗣 Commented on [#204](https://github.com/scil-vital/dwi_ml/pull/204#issuecomment-1731868494) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +2. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731770829) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#203](https://github.com/scil-vital/dwi_ml/pull/203#issuecomment-1731764121) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +4. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731749743) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#28](https://github.com/eastgenomics/eris/pull/28#issuecomment-1731747488) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#1358](https://github.com/spacetelescope/jwql/pull/1358#issuecomment-1731720136) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#80](https://github.com/aimclub/BAMT/pull/80#issuecomment-1731365625) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +8. 🗣 Commented on [#7071](https://github.com/scikit-image/scikit-image/pull/7071#issuecomment-1731354429) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +9. 🗣 Commented on [#1171](https://github.com/aimclub/FEDOT/pull/1171#issuecomment-1731341738) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#26](https://github.com/eastgenomics/eris/pull/26#issuecomment-1731288026) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From dac116084912fb54ccc5978c56bfcb553468d752 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Sep 2023 19:06:18 +0000 Subject: [PATCH 0118/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0d34ff79..f7361b1c 100644 --- a/README.md +++ b/README.md @@ -208,14 +208,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#204](https://github.com/scil-vital/dwi_ml/pull/204#issuecomment-1731868494) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -2. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731770829) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#203](https://github.com/scil-vital/dwi_ml/pull/203#issuecomment-1731764121) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -4. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731749743) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#28](https://github.com/eastgenomics/eris/pull/28#issuecomment-1731747488) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#1358](https://github.com/spacetelescope/jwql/pull/1358#issuecomment-1731720136) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#80](https://github.com/aimclub/BAMT/pull/80#issuecomment-1731365625) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -8. 🗣 Commented on [#7071](https://github.com/scikit-image/scikit-image/pull/7071#issuecomment-1731354429) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -9. 🗣 Commented on [#1171](https://github.com/aimclub/FEDOT/pull/1171#issuecomment-1731341738) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#26](https://github.com/eastgenomics/eris/pull/26#issuecomment-1731288026) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#169](https://github.com/Fatal1ty/mashumaro/pull/169#issuecomment-1731895933) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +2. 🗣 Commented on [#204](https://github.com/scil-vital/dwi_ml/pull/204#issuecomment-1731868494) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +3. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731770829) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#203](https://github.com/scil-vital/dwi_ml/pull/203#issuecomment-1731764121) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +5. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731749743) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#28](https://github.com/eastgenomics/eris/pull/28#issuecomment-1731747488) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#1358](https://github.com/spacetelescope/jwql/pull/1358#issuecomment-1731720136) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#80](https://github.com/aimclub/BAMT/pull/80#issuecomment-1731365625) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +9. 🗣 Commented on [#7071](https://github.com/scikit-image/scikit-image/pull/7071#issuecomment-1731354429) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +10. 🗣 Commented on [#1171](https://github.com/aimclub/FEDOT/pull/1171#issuecomment-1731341738) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From bc944c42f18e0c21e964c4b8d61bd3f947c368fa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Sep 2023 19:32:42 +0000 Subject: [PATCH 0119/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f7361b1c..8ec4914f 100644 --- a/README.md +++ b/README.md @@ -208,14 +208,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#169](https://github.com/Fatal1ty/mashumaro/pull/169#issuecomment-1731895933) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -2. 🗣 Commented on [#204](https://github.com/scil-vital/dwi_ml/pull/204#issuecomment-1731868494) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -3. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731770829) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#203](https://github.com/scil-vital/dwi_ml/pull/203#issuecomment-1731764121) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -5. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731749743) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#28](https://github.com/eastgenomics/eris/pull/28#issuecomment-1731747488) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#1358](https://github.com/spacetelescope/jwql/pull/1358#issuecomment-1731720136) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#80](https://github.com/aimclub/BAMT/pull/80#issuecomment-1731365625) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -9. 🗣 Commented on [#7071](https://github.com/scikit-image/scikit-image/pull/7071#issuecomment-1731354429) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -10. 🗣 Commented on [#1171](https://github.com/aimclub/FEDOT/pull/1171#issuecomment-1731341738) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#2902](https://github.com/dipy/dipy/pull/2902#issuecomment-1731940605) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#169](https://github.com/Fatal1ty/mashumaro/pull/169#issuecomment-1731895933) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +3. 🗣 Commented on [#204](https://github.com/scil-vital/dwi_ml/pull/204#issuecomment-1731868494) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +4. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731770829) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#203](https://github.com/scil-vital/dwi_ml/pull/203#issuecomment-1731764121) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +6. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731749743) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#28](https://github.com/eastgenomics/eris/pull/28#issuecomment-1731747488) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#1358](https://github.com/spacetelescope/jwql/pull/1358#issuecomment-1731720136) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#80](https://github.com/aimclub/BAMT/pull/80#issuecomment-1731365625) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +10. 🗣 Commented on [#7071](https://github.com/scikit-image/scikit-image/pull/7071#issuecomment-1731354429) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) From 526344144b4bbed8dc348dc2c868950142fe76a1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Sep 2023 21:06:45 +0000 Subject: [PATCH 0120/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8ec4914f..77f930f4 100644 --- a/README.md +++ b/README.md @@ -208,14 +208,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2902](https://github.com/dipy/dipy/pull/2902#issuecomment-1731940605) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#169](https://github.com/Fatal1ty/mashumaro/pull/169#issuecomment-1731895933) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -3. 🗣 Commented on [#204](https://github.com/scil-vital/dwi_ml/pull/204#issuecomment-1731868494) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -4. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731770829) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#203](https://github.com/scil-vital/dwi_ml/pull/203#issuecomment-1731764121) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -6. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731749743) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#28](https://github.com/eastgenomics/eris/pull/28#issuecomment-1731747488) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#1358](https://github.com/spacetelescope/jwql/pull/1358#issuecomment-1731720136) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#80](https://github.com/aimclub/BAMT/pull/80#issuecomment-1731365625) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -10. 🗣 Commented on [#7071](https://github.com/scikit-image/scikit-image/pull/7071#issuecomment-1731354429) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +1. 🗣 Commented on [#139](https://github.com/tj-python/gcloud-aio/pull/139#issuecomment-1732002651) in [tj-python/gcloud-aio](https://github.com/tj-python/gcloud-aio) +2. 🗣 Commented on [#2902](https://github.com/dipy/dipy/pull/2902#issuecomment-1731940605) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#169](https://github.com/Fatal1ty/mashumaro/pull/169#issuecomment-1731895933) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +4. 🗣 Commented on [#204](https://github.com/scil-vital/dwi_ml/pull/204#issuecomment-1731868494) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +5. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731770829) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#203](https://github.com/scil-vital/dwi_ml/pull/203#issuecomment-1731764121) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +7. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731749743) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#28](https://github.com/eastgenomics/eris/pull/28#issuecomment-1731747488) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#1358](https://github.com/spacetelescope/jwql/pull/1358#issuecomment-1731720136) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#80](https://github.com/aimclub/BAMT/pull/80#issuecomment-1731365625) in [aimclub/BAMT](https://github.com/aimclub/BAMT) From 55680bcbc6f7e761fc75c5e0742428d82d89c985 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Sep 2023 22:32:39 +0000 Subject: [PATCH 0121/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 77f930f4..671141d6 100644 --- a/README.md +++ b/README.md @@ -208,14 +208,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#139](https://github.com/tj-python/gcloud-aio/pull/139#issuecomment-1732002651) in [tj-python/gcloud-aio](https://github.com/tj-python/gcloud-aio) -2. 🗣 Commented on [#2902](https://github.com/dipy/dipy/pull/2902#issuecomment-1731940605) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#169](https://github.com/Fatal1ty/mashumaro/pull/169#issuecomment-1731895933) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -4. 🗣 Commented on [#204](https://github.com/scil-vital/dwi_ml/pull/204#issuecomment-1731868494) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -5. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731770829) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#203](https://github.com/scil-vital/dwi_ml/pull/203#issuecomment-1731764121) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -7. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731749743) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#28](https://github.com/eastgenomics/eris/pull/28#issuecomment-1731747488) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#1358](https://github.com/spacetelescope/jwql/pull/1358#issuecomment-1731720136) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#80](https://github.com/aimclub/BAMT/pull/80#issuecomment-1731365625) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +1. 🗣 Commented on [#4](https://github.com/Ddedalus/syringe-pump/pull/4#issuecomment-1732087082) in [Ddedalus/syringe-pump](https://github.com/Ddedalus/syringe-pump) +2. 🗣 Commented on [#139](https://github.com/tj-python/gcloud-aio/pull/139#issuecomment-1732002651) in [tj-python/gcloud-aio](https://github.com/tj-python/gcloud-aio) +3. 🗣 Commented on [#2902](https://github.com/dipy/dipy/pull/2902#issuecomment-1731940605) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#169](https://github.com/Fatal1ty/mashumaro/pull/169#issuecomment-1731895933) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +5. 🗣 Commented on [#204](https://github.com/scil-vital/dwi_ml/pull/204#issuecomment-1731868494) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +6. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731770829) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#203](https://github.com/scil-vital/dwi_ml/pull/203#issuecomment-1731764121) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +8. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731749743) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#28](https://github.com/eastgenomics/eris/pull/28#issuecomment-1731747488) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#1358](https://github.com/spacetelescope/jwql/pull/1358#issuecomment-1731720136) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From c80c76f77aa77ffab63268e53a3694cfd0589bf2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Sep 2023 04:08:56 +0000 Subject: [PATCH 0122/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 671141d6..4c71dbbc 100644 --- a/README.md +++ b/README.md @@ -208,14 +208,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4](https://github.com/Ddedalus/syringe-pump/pull/4#issuecomment-1732087082) in [Ddedalus/syringe-pump](https://github.com/Ddedalus/syringe-pump) -2. 🗣 Commented on [#139](https://github.com/tj-python/gcloud-aio/pull/139#issuecomment-1732002651) in [tj-python/gcloud-aio](https://github.com/tj-python/gcloud-aio) -3. 🗣 Commented on [#2902](https://github.com/dipy/dipy/pull/2902#issuecomment-1731940605) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#169](https://github.com/Fatal1ty/mashumaro/pull/169#issuecomment-1731895933) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -5. 🗣 Commented on [#204](https://github.com/scil-vital/dwi_ml/pull/204#issuecomment-1731868494) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -6. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731770829) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#203](https://github.com/scil-vital/dwi_ml/pull/203#issuecomment-1731764121) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -8. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731749743) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#28](https://github.com/eastgenomics/eris/pull/28#issuecomment-1731747488) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#1358](https://github.com/spacetelescope/jwql/pull/1358#issuecomment-1731720136) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#497](https://github.com/askap-vast/vast-tools/pull/497#issuecomment-1732201113) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +2. 🗣 Commented on [#4](https://github.com/Ddedalus/syringe-pump/pull/4#issuecomment-1732087082) in [Ddedalus/syringe-pump](https://github.com/Ddedalus/syringe-pump) +3. 🗣 Commented on [#139](https://github.com/tj-python/gcloud-aio/pull/139#issuecomment-1732002651) in [tj-python/gcloud-aio](https://github.com/tj-python/gcloud-aio) +4. 🗣 Commented on [#2902](https://github.com/dipy/dipy/pull/2902#issuecomment-1731940605) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#169](https://github.com/Fatal1ty/mashumaro/pull/169#issuecomment-1731895933) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +6. 🗣 Commented on [#204](https://github.com/scil-vital/dwi_ml/pull/204#issuecomment-1731868494) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +7. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731770829) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#203](https://github.com/scil-vital/dwi_ml/pull/203#issuecomment-1731764121) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +9. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731749743) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#28](https://github.com/eastgenomics/eris/pull/28#issuecomment-1731747488) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 36ae1dee20177b9b7342cad910fa98e8663325ca Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Sat, 23 Sep 2023 06:15:39 -0400 Subject: [PATCH 0123/2173] fixed images in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4c71dbbc..ee1f3bac 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A GitHub :octocat: app to automatically review Python code style over Pull Requests

      - +

      Table of Contents @@ -30,7 +30,7 @@ Table of Contents # Example - + # Main features From 715776e1fd7fd307ad413d0608efbf6bf7e7d918 Mon Sep 17 00:00:00 2001 From: Tushar <30565750+tushar5526@users.noreply.github.com> Date: Mon, 25 Sep 2023 19:48:15 +0000 Subject: [PATCH 0124/2173] Update README.md (#212) * Update README.md * Update README.md --- README.md | 61 +++++++++++++++++++++++++++++++++++++++---------------- 1 file changed, 43 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index ee1f3bac..ea3fade7 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# PEP 8 Speaks [![CircleCI](https://img.shields.io/circleci/build/github/OrkoHunter/pep8speaks)](https://app.circleci.com/pipelines/github/OrkoHunter/pep8speaks) ![GitHub release](https://img.shields.io/github/release/OrkoHunter/pep8speaks.svg) ![GitHub contributors](https://img.shields.io/github/contributors/OrkoHunter/pep8speaks.svg) [![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/OrkoHunter) - +# PEP 8 Speaks +![GitHub release](https://img.shields.io/github/release/OrkoHunter/pep8speaks.svg) ![GitHub contributors](https://img.shields.io/github/contributors/OrkoHunter/pep8speaks.svg) A GitHub :octocat: app to automatically review Python code style over Pull Requests @@ -129,24 +129,30 @@ Updates to the app are announced using the GitHub Release feature over [here](ht Usually, the master branch is deployed as soon as Pull Requests are merged in the repository. However, on every Friday, I make a release and make sure the latest code is deployed. You do not need to do anything to use the latest version. If you use a fork of PEP 8 Speaks, check out the Release space. -# Contributing - -You can support the project by contributing to its development. If you have any suggestions for new features or improvements, please [create an issue](https://github.com/OrkoHunter/pep8speaks/issues/new). Pull Requests are most welcome ! Read [CONTRIBUTING](/.github/CONTRIBUTING.md) doc to understand how the project works and how you can make changes. - -The project requires to be hosted on a server and due to which, it needs financial support as well. - -Please read the [case for funding PEP 8 Speaks](https://github.com/OrkoHunter/pep8speaks/wiki/Funding). - -[![Donate](https://img.shields.io/liberapay/receives/OrkoHunter.svg?logo=liberapay)](https://liberapay.com/OrkoHunter) -[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.me/orkohunter) - -If you use this project and you like it, [please let me know](https://saythanks.io/to/OrkoHunter). Thanks! - -:heart: +

      Sponsors

      -This project does not endorse all of the rules of the original PEP 8 and thus believes in customizing pycodestyle. +[Become a Gold Sponsor](https://github.com/OrkoHunter/pep8speaks/wiki/Funding#how-to-donate) and get your logo and name with a link to your site on our README and our [website](https://pep8speaks.org). -[.](https://github.com/OrkoHunter/python-easter-eggs) +
      + + + + + + +
      + + +

      +

      Samagra Governance

      +
      +
      + + +

      +

      SamagraX

      +
      +

      Previous Sponsors

      @@ -201,6 +207,25 @@ If you use this project and you like it, [please let me know](https://saythanks. +# Contributing + +You can support the project by contributing to its development. If you have any suggestions for new features or improvements, please [create an issue](https://github.com/OrkoHunter/pep8speaks/issues/new). Pull Requests are most welcome ! Read [CONTRIBUTING](/.github/CONTRIBUTING.md) doc to understand how the project works and how you can make changes. + +The project requires to be hosted on a server and due to which, it needs financial support as well. + +Please read the [case for funding PEP 8 Speaks](https://github.com/OrkoHunter/pep8speaks/wiki/Funding). + +[![Donate](https://img.shields.io/liberapay/receives/OrkoHunter.svg?logo=liberapay)](https://liberapay.com/OrkoHunter) +[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.me/orkohunter) + +If you use this project and you like it, [please let me know](https://saythanks.io/to/OrkoHunter). Thanks! + +:heart: + +This project does not endorse all of the rules of the original PEP 8 and thus believes in customizing pycodestyle. + +[.](https://github.com/OrkoHunter/python-easter-eggs) + # Updates - April 5, 2020 - [PEP8Speaks - Now helping 5,000 open source projects write neat and clean Python](https://orkohunter.net/blog/pep8speaks-5000-projects/) From a69b61f04ecabced82af594a4c8706cc89751efa Mon Sep 17 00:00:00 2001 From: Tushar <30565750+tushar5526@users.noreply.github.com> Date: Tue, 26 Sep 2023 23:26:38 +0530 Subject: [PATCH 0125/2173] Update recent-activity.yml --- .github/workflows/recent-activity.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/recent-activity.yml b/.github/workflows/recent-activity.yml index 56ad6d87..ce73daa2 100644 --- a/.github/workflows/recent-activity.yml +++ b/.github/workflows/recent-activity.yml @@ -13,9 +13,9 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: jamesgeorge007/github-activity-readme@master + - uses: jamesgeorge007/github-activity-readme@hotfix/prevent-stack-traces env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: GH_USERNAME: pep8speaks - MAX_LINES: 10 \ No newline at end of file + MAX_LINES: 10 From 01d3e8c5719fda559eae8675173165eb61d02635 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Sep 2023 18:00:59 +0000 Subject: [PATCH 0126/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ea3fade7..9d258d53 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#497](https://github.com/askap-vast/vast-tools/pull/497#issuecomment-1732201113) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -2. 🗣 Commented on [#4](https://github.com/Ddedalus/syringe-pump/pull/4#issuecomment-1732087082) in [Ddedalus/syringe-pump](https://github.com/Ddedalus/syringe-pump) -3. 🗣 Commented on [#139](https://github.com/tj-python/gcloud-aio/pull/139#issuecomment-1732002651) in [tj-python/gcloud-aio](https://github.com/tj-python/gcloud-aio) -4. 🗣 Commented on [#2902](https://github.com/dipy/dipy/pull/2902#issuecomment-1731940605) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#169](https://github.com/Fatal1ty/mashumaro/pull/169#issuecomment-1731895933) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -6. 🗣 Commented on [#204](https://github.com/scil-vital/dwi_ml/pull/204#issuecomment-1731868494) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -7. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731770829) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#203](https://github.com/scil-vital/dwi_ml/pull/203#issuecomment-1731764121) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -9. 🗣 Commented on [#64](https://github.com/politeauthority/cver/pull/64#issuecomment-1731749743) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#28](https://github.com/eastgenomics/eris/pull/28#issuecomment-1731747488) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#2910](https://github.com/dipy/dipy/pull/2910#issuecomment-1735966459) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#575](https://github.com/ExoCTK/exoctk/pull/575#issuecomment-1735685795) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +3. 🗣 Commented on [#16](https://github.com/CartoonFan/MPD/pull/16#issuecomment-1735566368) in [CartoonFan/MPD](https://github.com/CartoonFan/MPD) +4. 🗣 Commented on [#7153](https://github.com/scikit-image/scikit-image/pull/7153#issuecomment-1735546221) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +5. 🗣 Commented on [#199](https://github.com/aimclub/GOLEM/pull/199#issuecomment-1735491198) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#1058](https://github.com/lmcinnes/umap/pull/1058#issuecomment-1735482297) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +7. 🗣 Commented on [#5208](https://github.com/rhinstaller/anaconda/pull/5208#issuecomment-1735475024) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#5179](https://github.com/rhinstaller/anaconda/pull/5179#issuecomment-1735398512) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#31](https://github.com/eastgenomics/eris/pull/31#issuecomment-1735378299) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#1415](https://github.com/openSUSE/osc/pull/1415#issuecomment-1735364686) in [openSUSE/osc](https://github.com/openSUSE/osc) From 941c81f5ab26d7d664b1f89edd12e1094b9277bf Mon Sep 17 00:00:00 2001 From: Tushar <30565750+tushar5526@users.noreply.github.com> Date: Tue, 26 Sep 2023 23:32:10 +0530 Subject: [PATCH 0127/2173] Update recent-activity.yml --- .github/workflows/recent-activity.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/recent-activity.yml b/.github/workflows/recent-activity.yml index ce73daa2..8b479668 100644 --- a/.github/workflows/recent-activity.yml +++ b/.github/workflows/recent-activity.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: jamesgeorge007/github-activity-readme@hotfix/prevent-stack-traces + - uses: jamesgeorge007/github-activity-readme@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: From e0c9a4e9dd430f412c60051adf6440e676becfce Mon Sep 17 00:00:00 2001 From: Tushar <30565750+tushar5526@users.noreply.github.com> Date: Tue, 26 Sep 2023 23:42:02 +0530 Subject: [PATCH 0128/2173] Update release.yml --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c9486c18..df2ba45c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ name: Create and publish a Docker image on: push: - tags: ["v*.*.*", "v*.*.*-*"] + tags: ["v*.*-*", "v*.*"] env: @@ -48,4 +48,4 @@ jobs: context: . push: true tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file + labels: ${{ steps.meta.outputs.labels }} From d7cbeaa8c24b4074683c33cf1e1f2671cd394f9b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Sep 2023 21:37:11 +0000 Subject: [PATCH 0129/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9d258d53..e1a15e85 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2910](https://github.com/dipy/dipy/pull/2910#issuecomment-1735966459) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#575](https://github.com/ExoCTK/exoctk/pull/575#issuecomment-1735685795) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -3. 🗣 Commented on [#16](https://github.com/CartoonFan/MPD/pull/16#issuecomment-1735566368) in [CartoonFan/MPD](https://github.com/CartoonFan/MPD) -4. 🗣 Commented on [#7153](https://github.com/scikit-image/scikit-image/pull/7153#issuecomment-1735546221) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -5. 🗣 Commented on [#199](https://github.com/aimclub/GOLEM/pull/199#issuecomment-1735491198) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#1058](https://github.com/lmcinnes/umap/pull/1058#issuecomment-1735482297) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -7. 🗣 Commented on [#5208](https://github.com/rhinstaller/anaconda/pull/5208#issuecomment-1735475024) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#5179](https://github.com/rhinstaller/anaconda/pull/5179#issuecomment-1735398512) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#31](https://github.com/eastgenomics/eris/pull/31#issuecomment-1735378299) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#1415](https://github.com/openSUSE/osc/pull/1415#issuecomment-1735364686) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#89](https://github.com/garmin/pyrex/pull/89#issuecomment-1736317936) in [garmin/pyrex](https://github.com/garmin/pyrex) +2. 🗣 Commented on [#2910](https://github.com/dipy/dipy/pull/2910#issuecomment-1735966459) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#575](https://github.com/ExoCTK/exoctk/pull/575#issuecomment-1735685795) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +4. 🗣 Commented on [#16](https://github.com/CartoonFan/MPD/pull/16#issuecomment-1735566368) in [CartoonFan/MPD](https://github.com/CartoonFan/MPD) +5. 🗣 Commented on [#7153](https://github.com/scikit-image/scikit-image/pull/7153#issuecomment-1735546221) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +6. 🗣 Commented on [#199](https://github.com/aimclub/GOLEM/pull/199#issuecomment-1735491198) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#1058](https://github.com/lmcinnes/umap/pull/1058#issuecomment-1735482297) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +8. 🗣 Commented on [#5208](https://github.com/rhinstaller/anaconda/pull/5208#issuecomment-1735475024) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#5179](https://github.com/rhinstaller/anaconda/pull/5179#issuecomment-1735398512) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#31](https://github.com/eastgenomics/eris/pull/31#issuecomment-1735378299) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From eabbf9b5c02199b90d4c4c63c85beff115c32c46 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Sep 2023 23:15:07 +0000 Subject: [PATCH 0130/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e1a15e85..38b09511 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#89](https://github.com/garmin/pyrex/pull/89#issuecomment-1736317936) in [garmin/pyrex](https://github.com/garmin/pyrex) -2. 🗣 Commented on [#2910](https://github.com/dipy/dipy/pull/2910#issuecomment-1735966459) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#575](https://github.com/ExoCTK/exoctk/pull/575#issuecomment-1735685795) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -4. 🗣 Commented on [#16](https://github.com/CartoonFan/MPD/pull/16#issuecomment-1735566368) in [CartoonFan/MPD](https://github.com/CartoonFan/MPD) -5. 🗣 Commented on [#7153](https://github.com/scikit-image/scikit-image/pull/7153#issuecomment-1735546221) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -6. 🗣 Commented on [#199](https://github.com/aimclub/GOLEM/pull/199#issuecomment-1735491198) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#1058](https://github.com/lmcinnes/umap/pull/1058#issuecomment-1735482297) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -8. 🗣 Commented on [#5208](https://github.com/rhinstaller/anaconda/pull/5208#issuecomment-1735475024) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#5179](https://github.com/rhinstaller/anaconda/pull/5179#issuecomment-1735398512) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#31](https://github.com/eastgenomics/eris/pull/31#issuecomment-1735378299) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#2915](https://github.com/dipy/dipy/pull/2915#issuecomment-1736402290) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#89](https://github.com/garmin/pyrex/pull/89#issuecomment-1736317936) in [garmin/pyrex](https://github.com/garmin/pyrex) +3. 🗣 Commented on [#2910](https://github.com/dipy/dipy/pull/2910#issuecomment-1735966459) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#575](https://github.com/ExoCTK/exoctk/pull/575#issuecomment-1735685795) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +5. 🗣 Commented on [#16](https://github.com/CartoonFan/MPD/pull/16#issuecomment-1735566368) in [CartoonFan/MPD](https://github.com/CartoonFan/MPD) +6. 🗣 Commented on [#7153](https://github.com/scikit-image/scikit-image/pull/7153#issuecomment-1735546221) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +7. 🗣 Commented on [#199](https://github.com/aimclub/GOLEM/pull/199#issuecomment-1735491198) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +8. 🗣 Commented on [#1058](https://github.com/lmcinnes/umap/pull/1058#issuecomment-1735482297) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +9. 🗣 Commented on [#5208](https://github.com/rhinstaller/anaconda/pull/5208#issuecomment-1735475024) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#5179](https://github.com/rhinstaller/anaconda/pull/5179#issuecomment-1735398512) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From fd9b2cec12494a607a7b03d362f29ae5a7328580 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Sep 2023 01:09:43 +0000 Subject: [PATCH 0131/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 38b09511..ac12c4d1 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2915](https://github.com/dipy/dipy/pull/2915#issuecomment-1736402290) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#89](https://github.com/garmin/pyrex/pull/89#issuecomment-1736317936) in [garmin/pyrex](https://github.com/garmin/pyrex) -3. 🗣 Commented on [#2910](https://github.com/dipy/dipy/pull/2910#issuecomment-1735966459) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#575](https://github.com/ExoCTK/exoctk/pull/575#issuecomment-1735685795) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -5. 🗣 Commented on [#16](https://github.com/CartoonFan/MPD/pull/16#issuecomment-1735566368) in [CartoonFan/MPD](https://github.com/CartoonFan/MPD) -6. 🗣 Commented on [#7153](https://github.com/scikit-image/scikit-image/pull/7153#issuecomment-1735546221) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -7. 🗣 Commented on [#199](https://github.com/aimclub/GOLEM/pull/199#issuecomment-1735491198) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -8. 🗣 Commented on [#1058](https://github.com/lmcinnes/umap/pull/1058#issuecomment-1735482297) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -9. 🗣 Commented on [#5208](https://github.com/rhinstaller/anaconda/pull/5208#issuecomment-1735475024) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#5179](https://github.com/rhinstaller/anaconda/pull/5179#issuecomment-1735398512) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#141](https://github.com/DeMarcoLab/autolamella/pull/141#issuecomment-1736471637) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +2. 🗣 Commented on [#2915](https://github.com/dipy/dipy/pull/2915#issuecomment-1736402290) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#89](https://github.com/garmin/pyrex/pull/89#issuecomment-1736317936) in [garmin/pyrex](https://github.com/garmin/pyrex) +4. 🗣 Commented on [#2910](https://github.com/dipy/dipy/pull/2910#issuecomment-1735966459) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#575](https://github.com/ExoCTK/exoctk/pull/575#issuecomment-1735685795) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +6. 🗣 Commented on [#16](https://github.com/CartoonFan/MPD/pull/16#issuecomment-1735566368) in [CartoonFan/MPD](https://github.com/CartoonFan/MPD) +7. 🗣 Commented on [#7153](https://github.com/scikit-image/scikit-image/pull/7153#issuecomment-1735546221) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +8. 🗣 Commented on [#199](https://github.com/aimclub/GOLEM/pull/199#issuecomment-1735491198) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#1058](https://github.com/lmcinnes/umap/pull/1058#issuecomment-1735482297) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +10. 🗣 Commented on [#5208](https://github.com/rhinstaller/anaconda/pull/5208#issuecomment-1735475024) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 40bfd1675f6bd9d7eca84e88ddfc509714927f84 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Sep 2023 03:16:39 +0000 Subject: [PATCH 0132/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ac12c4d1..d371b81c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#141](https://github.com/DeMarcoLab/autolamella/pull/141#issuecomment-1736471637) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -2. 🗣 Commented on [#2915](https://github.com/dipy/dipy/pull/2915#issuecomment-1736402290) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#89](https://github.com/garmin/pyrex/pull/89#issuecomment-1736317936) in [garmin/pyrex](https://github.com/garmin/pyrex) -4. 🗣 Commented on [#2910](https://github.com/dipy/dipy/pull/2910#issuecomment-1735966459) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#575](https://github.com/ExoCTK/exoctk/pull/575#issuecomment-1735685795) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -6. 🗣 Commented on [#16](https://github.com/CartoonFan/MPD/pull/16#issuecomment-1735566368) in [CartoonFan/MPD](https://github.com/CartoonFan/MPD) -7. 🗣 Commented on [#7153](https://github.com/scikit-image/scikit-image/pull/7153#issuecomment-1735546221) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -8. 🗣 Commented on [#199](https://github.com/aimclub/GOLEM/pull/199#issuecomment-1735491198) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#1058](https://github.com/lmcinnes/umap/pull/1058#issuecomment-1735482297) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -10. 🗣 Commented on [#5208](https://github.com/rhinstaller/anaconda/pull/5208#issuecomment-1735475024) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#279](https://github.com/DeMarcoLab/fibsem/pull/279#issuecomment-1736585435) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +2. 🗣 Commented on [#141](https://github.com/DeMarcoLab/autolamella/pull/141#issuecomment-1736471637) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +3. 🗣 Commented on [#2915](https://github.com/dipy/dipy/pull/2915#issuecomment-1736402290) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#89](https://github.com/garmin/pyrex/pull/89#issuecomment-1736317936) in [garmin/pyrex](https://github.com/garmin/pyrex) +5. 🗣 Commented on [#2910](https://github.com/dipy/dipy/pull/2910#issuecomment-1735966459) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#575](https://github.com/ExoCTK/exoctk/pull/575#issuecomment-1735685795) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +7. 🗣 Commented on [#16](https://github.com/CartoonFan/MPD/pull/16#issuecomment-1735566368) in [CartoonFan/MPD](https://github.com/CartoonFan/MPD) +8. 🗣 Commented on [#7153](https://github.com/scikit-image/scikit-image/pull/7153#issuecomment-1735546221) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +9. 🗣 Commented on [#199](https://github.com/aimclub/GOLEM/pull/199#issuecomment-1735491198) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#1058](https://github.com/lmcinnes/umap/pull/1058#issuecomment-1735482297) in [lmcinnes/umap](https://github.com/lmcinnes/umap) From 951f2c6885d45705fb0bc41b0339091dc599722a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Sep 2023 06:38:29 +0000 Subject: [PATCH 0133/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d371b81c..d5e5bab9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#279](https://github.com/DeMarcoLab/fibsem/pull/279#issuecomment-1736585435) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -2. 🗣 Commented on [#141](https://github.com/DeMarcoLab/autolamella/pull/141#issuecomment-1736471637) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -3. 🗣 Commented on [#2915](https://github.com/dipy/dipy/pull/2915#issuecomment-1736402290) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#89](https://github.com/garmin/pyrex/pull/89#issuecomment-1736317936) in [garmin/pyrex](https://github.com/garmin/pyrex) -5. 🗣 Commented on [#2910](https://github.com/dipy/dipy/pull/2910#issuecomment-1735966459) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#575](https://github.com/ExoCTK/exoctk/pull/575#issuecomment-1735685795) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -7. 🗣 Commented on [#16](https://github.com/CartoonFan/MPD/pull/16#issuecomment-1735566368) in [CartoonFan/MPD](https://github.com/CartoonFan/MPD) -8. 🗣 Commented on [#7153](https://github.com/scikit-image/scikit-image/pull/7153#issuecomment-1735546221) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -9. 🗣 Commented on [#199](https://github.com/aimclub/GOLEM/pull/199#issuecomment-1735491198) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#1058](https://github.com/lmcinnes/umap/pull/1058#issuecomment-1735482297) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +1. 🗣 Commented on [#366](https://github.com/payu-org/payu/pull/366#issuecomment-1736780097) in [payu-org/payu](https://github.com/payu-org/payu) +2. 🗣 Commented on [#279](https://github.com/DeMarcoLab/fibsem/pull/279#issuecomment-1736585435) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +3. 🗣 Commented on [#141](https://github.com/DeMarcoLab/autolamella/pull/141#issuecomment-1736471637) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +4. 🗣 Commented on [#2915](https://github.com/dipy/dipy/pull/2915#issuecomment-1736402290) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#89](https://github.com/garmin/pyrex/pull/89#issuecomment-1736317936) in [garmin/pyrex](https://github.com/garmin/pyrex) +6. 🗣 Commented on [#2910](https://github.com/dipy/dipy/pull/2910#issuecomment-1735966459) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#575](https://github.com/ExoCTK/exoctk/pull/575#issuecomment-1735685795) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +8. 🗣 Commented on [#16](https://github.com/CartoonFan/MPD/pull/16#issuecomment-1735566368) in [CartoonFan/MPD](https://github.com/CartoonFan/MPD) +9. 🗣 Commented on [#7153](https://github.com/scikit-image/scikit-image/pull/7153#issuecomment-1735546221) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +10. 🗣 Commented on [#199](https://github.com/aimclub/GOLEM/pull/199#issuecomment-1735491198) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) From b96933989eb0eda61971df50effa1ec2830fdeae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Sep 2023 10:16:58 +0000 Subject: [PATCH 0134/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d5e5bab9..f7bd9e33 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#366](https://github.com/payu-org/payu/pull/366#issuecomment-1736780097) in [payu-org/payu](https://github.com/payu-org/payu) -2. 🗣 Commented on [#279](https://github.com/DeMarcoLab/fibsem/pull/279#issuecomment-1736585435) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -3. 🗣 Commented on [#141](https://github.com/DeMarcoLab/autolamella/pull/141#issuecomment-1736471637) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -4. 🗣 Commented on [#2915](https://github.com/dipy/dipy/pull/2915#issuecomment-1736402290) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#89](https://github.com/garmin/pyrex/pull/89#issuecomment-1736317936) in [garmin/pyrex](https://github.com/garmin/pyrex) -6. 🗣 Commented on [#2910](https://github.com/dipy/dipy/pull/2910#issuecomment-1735966459) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#575](https://github.com/ExoCTK/exoctk/pull/575#issuecomment-1735685795) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -8. 🗣 Commented on [#16](https://github.com/CartoonFan/MPD/pull/16#issuecomment-1735566368) in [CartoonFan/MPD](https://github.com/CartoonFan/MPD) -9. 🗣 Commented on [#7153](https://github.com/scikit-image/scikit-image/pull/7153#issuecomment-1735546221) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -10. 🗣 Commented on [#199](https://github.com/aimclub/GOLEM/pull/199#issuecomment-1735491198) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +1. 🗣 Commented on [#26](https://github.com/oemof/oemof-network/pull/26#issuecomment-1737076883) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +2. 🗣 Commented on [#196](https://github.com/CartoonFan/lutris/pull/196#issuecomment-1737075590) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#366](https://github.com/payu-org/payu/pull/366#issuecomment-1736780097) in [payu-org/payu](https://github.com/payu-org/payu) +4. 🗣 Commented on [#279](https://github.com/DeMarcoLab/fibsem/pull/279#issuecomment-1736585435) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +5. 🗣 Commented on [#141](https://github.com/DeMarcoLab/autolamella/pull/141#issuecomment-1736471637) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +6. 🗣 Commented on [#2915](https://github.com/dipy/dipy/pull/2915#issuecomment-1736402290) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#89](https://github.com/garmin/pyrex/pull/89#issuecomment-1736317936) in [garmin/pyrex](https://github.com/garmin/pyrex) +8. 🗣 Commented on [#2910](https://github.com/dipy/dipy/pull/2910#issuecomment-1735966459) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#575](https://github.com/ExoCTK/exoctk/pull/575#issuecomment-1735685795) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +10. 🗣 Commented on [#16](https://github.com/CartoonFan/MPD/pull/16#issuecomment-1735566368) in [CartoonFan/MPD](https://github.com/CartoonFan/MPD) From 3860a119196a2f52b3f15bda319afd498607224e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Sep 2023 12:32:05 +0000 Subject: [PATCH 0135/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f7bd9e33..e426badf 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#26](https://github.com/oemof/oemof-network/pull/26#issuecomment-1737076883) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -2. 🗣 Commented on [#196](https://github.com/CartoonFan/lutris/pull/196#issuecomment-1737075590) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#366](https://github.com/payu-org/payu/pull/366#issuecomment-1736780097) in [payu-org/payu](https://github.com/payu-org/payu) -4. 🗣 Commented on [#279](https://github.com/DeMarcoLab/fibsem/pull/279#issuecomment-1736585435) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -5. 🗣 Commented on [#141](https://github.com/DeMarcoLab/autolamella/pull/141#issuecomment-1736471637) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -6. 🗣 Commented on [#2915](https://github.com/dipy/dipy/pull/2915#issuecomment-1736402290) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#89](https://github.com/garmin/pyrex/pull/89#issuecomment-1736317936) in [garmin/pyrex](https://github.com/garmin/pyrex) -8. 🗣 Commented on [#2910](https://github.com/dipy/dipy/pull/2910#issuecomment-1735966459) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#575](https://github.com/ExoCTK/exoctk/pull/575#issuecomment-1735685795) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -10. 🗣 Commented on [#16](https://github.com/CartoonFan/MPD/pull/16#issuecomment-1735566368) in [CartoonFan/MPD](https://github.com/CartoonFan/MPD) +1. 🗣 Commented on [#118](https://github.com/eastgenomics/dias_batch_running/pull/118#issuecomment-1737286243) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#241](https://github.com/OpenFreeEnergy/gufe/pull/241#issuecomment-1737271015) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#26](https://github.com/oemof/oemof-network/pull/26#issuecomment-1737076883) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +4. 🗣 Commented on [#196](https://github.com/CartoonFan/lutris/pull/196#issuecomment-1737075590) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#366](https://github.com/payu-org/payu/pull/366#issuecomment-1736780097) in [payu-org/payu](https://github.com/payu-org/payu) +6. 🗣 Commented on [#279](https://github.com/DeMarcoLab/fibsem/pull/279#issuecomment-1736585435) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +7. 🗣 Commented on [#141](https://github.com/DeMarcoLab/autolamella/pull/141#issuecomment-1736471637) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +8. 🗣 Commented on [#2915](https://github.com/dipy/dipy/pull/2915#issuecomment-1736402290) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#89](https://github.com/garmin/pyrex/pull/89#issuecomment-1736317936) in [garmin/pyrex](https://github.com/garmin/pyrex) +10. 🗣 Commented on [#2910](https://github.com/dipy/dipy/pull/2910#issuecomment-1735966459) in [dipy/dipy](https://github.com/dipy/dipy) From 8ca776aab72ea5736139fedf35515479abaf0728 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Sep 2023 13:19:52 +0000 Subject: [PATCH 0136/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e426badf..50cb0503 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#118](https://github.com/eastgenomics/dias_batch_running/pull/118#issuecomment-1737286243) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#241](https://github.com/OpenFreeEnergy/gufe/pull/241#issuecomment-1737271015) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#26](https://github.com/oemof/oemof-network/pull/26#issuecomment-1737076883) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -4. 🗣 Commented on [#196](https://github.com/CartoonFan/lutris/pull/196#issuecomment-1737075590) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#366](https://github.com/payu-org/payu/pull/366#issuecomment-1736780097) in [payu-org/payu](https://github.com/payu-org/payu) -6. 🗣 Commented on [#279](https://github.com/DeMarcoLab/fibsem/pull/279#issuecomment-1736585435) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -7. 🗣 Commented on [#141](https://github.com/DeMarcoLab/autolamella/pull/141#issuecomment-1736471637) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -8. 🗣 Commented on [#2915](https://github.com/dipy/dipy/pull/2915#issuecomment-1736402290) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#89](https://github.com/garmin/pyrex/pull/89#issuecomment-1736317936) in [garmin/pyrex](https://github.com/garmin/pyrex) -10. 🗣 Commented on [#2910](https://github.com/dipy/dipy/pull/2910#issuecomment-1735966459) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#682](https://github.com/bashtage/arch/pull/682#issuecomment-1737356423) in [bashtage/arch](https://github.com/bashtage/arch) +2. 🗣 Commented on [#119](https://github.com/eastgenomics/dias_batch_running/pull/119#issuecomment-1737344079) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#118](https://github.com/eastgenomics/dias_batch_running/pull/118#issuecomment-1737286243) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +4. 🗣 Commented on [#241](https://github.com/OpenFreeEnergy/gufe/pull/241#issuecomment-1737271015) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#26](https://github.com/oemof/oemof-network/pull/26#issuecomment-1737076883) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +6. 🗣 Commented on [#196](https://github.com/CartoonFan/lutris/pull/196#issuecomment-1737075590) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#366](https://github.com/payu-org/payu/pull/366#issuecomment-1736780097) in [payu-org/payu](https://github.com/payu-org/payu) +8. 🗣 Commented on [#279](https://github.com/DeMarcoLab/fibsem/pull/279#issuecomment-1736585435) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +9. 🗣 Commented on [#141](https://github.com/DeMarcoLab/autolamella/pull/141#issuecomment-1736471637) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +10. 🗣 Commented on [#2915](https://github.com/dipy/dipy/pull/2915#issuecomment-1736402290) in [dipy/dipy](https://github.com/dipy/dipy) From 3e32a95a00150d6fdbd9dba98df891763a6e4744 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Sep 2023 15:16:56 +0000 Subject: [PATCH 0137/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 50cb0503..b40acd7c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#682](https://github.com/bashtage/arch/pull/682#issuecomment-1737356423) in [bashtage/arch](https://github.com/bashtage/arch) -2. 🗣 Commented on [#119](https://github.com/eastgenomics/dias_batch_running/pull/119#issuecomment-1737344079) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#118](https://github.com/eastgenomics/dias_batch_running/pull/118#issuecomment-1737286243) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -4. 🗣 Commented on [#241](https://github.com/OpenFreeEnergy/gufe/pull/241#issuecomment-1737271015) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#26](https://github.com/oemof/oemof-network/pull/26#issuecomment-1737076883) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -6. 🗣 Commented on [#196](https://github.com/CartoonFan/lutris/pull/196#issuecomment-1737075590) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#366](https://github.com/payu-org/payu/pull/366#issuecomment-1736780097) in [payu-org/payu](https://github.com/payu-org/payu) -8. 🗣 Commented on [#279](https://github.com/DeMarcoLab/fibsem/pull/279#issuecomment-1736585435) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -9. 🗣 Commented on [#141](https://github.com/DeMarcoLab/autolamella/pull/141#issuecomment-1736471637) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -10. 🗣 Commented on [#2915](https://github.com/dipy/dipy/pull/2915#issuecomment-1736402290) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#206](https://github.com/scil-vital/dwi_ml/pull/206#issuecomment-1737548261) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +2. 🗣 Commented on [#122](https://github.com/eastgenomics/dias_batch_running/pull/122#issuecomment-1737546397) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#120](https://github.com/eastgenomics/dias_batch_running/pull/120#issuecomment-1737546278) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +4. 🗣 Commented on [#682](https://github.com/bashtage/arch/pull/682#issuecomment-1737356423) in [bashtage/arch](https://github.com/bashtage/arch) +5. 🗣 Commented on [#119](https://github.com/eastgenomics/dias_batch_running/pull/119#issuecomment-1737344079) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#118](https://github.com/eastgenomics/dias_batch_running/pull/118#issuecomment-1737286243) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#241](https://github.com/OpenFreeEnergy/gufe/pull/241#issuecomment-1737271015) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#26](https://github.com/oemof/oemof-network/pull/26#issuecomment-1737076883) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +9. 🗣 Commented on [#196](https://github.com/CartoonFan/lutris/pull/196#issuecomment-1737075590) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#366](https://github.com/payu-org/payu/pull/366#issuecomment-1736780097) in [payu-org/payu](https://github.com/payu-org/payu) From a821ffeff4e6d5280ce099b27f72486f0629f425 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Sep 2023 19:37:18 +0000 Subject: [PATCH 0138/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b40acd7c..abe31e13 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#206](https://github.com/scil-vital/dwi_ml/pull/206#issuecomment-1737548261) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -2. 🗣 Commented on [#122](https://github.com/eastgenomics/dias_batch_running/pull/122#issuecomment-1737546397) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#120](https://github.com/eastgenomics/dias_batch_running/pull/120#issuecomment-1737546278) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -4. 🗣 Commented on [#682](https://github.com/bashtage/arch/pull/682#issuecomment-1737356423) in [bashtage/arch](https://github.com/bashtage/arch) -5. 🗣 Commented on [#119](https://github.com/eastgenomics/dias_batch_running/pull/119#issuecomment-1737344079) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#118](https://github.com/eastgenomics/dias_batch_running/pull/118#issuecomment-1737286243) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#241](https://github.com/OpenFreeEnergy/gufe/pull/241#issuecomment-1737271015) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#26](https://github.com/oemof/oemof-network/pull/26#issuecomment-1737076883) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -9. 🗣 Commented on [#196](https://github.com/CartoonFan/lutris/pull/196#issuecomment-1737075590) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#366](https://github.com/payu-org/payu/pull/366#issuecomment-1736780097) in [payu-org/payu](https://github.com/payu-org/payu) +1. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737945107) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737924360) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#206](https://github.com/scil-vital/dwi_ml/pull/206#issuecomment-1737548261) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +4. 🗣 Commented on [#122](https://github.com/eastgenomics/dias_batch_running/pull/122#issuecomment-1737546397) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#120](https://github.com/eastgenomics/dias_batch_running/pull/120#issuecomment-1737546278) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#682](https://github.com/bashtage/arch/pull/682#issuecomment-1737356423) in [bashtage/arch](https://github.com/bashtage/arch) +7. 🗣 Commented on [#119](https://github.com/eastgenomics/dias_batch_running/pull/119#issuecomment-1737344079) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#118](https://github.com/eastgenomics/dias_batch_running/pull/118#issuecomment-1737286243) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#241](https://github.com/OpenFreeEnergy/gufe/pull/241#issuecomment-1737271015) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#26](https://github.com/oemof/oemof-network/pull/26#issuecomment-1737076883) in [oemof/oemof-network](https://github.com/oemof/oemof-network) From c5ef4f2e6f9d96823f6e28c4794b6c046176f47f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Sep 2023 21:13:41 +0000 Subject: [PATCH 0139/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index abe31e13..02453617 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737945107) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737924360) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#206](https://github.com/scil-vital/dwi_ml/pull/206#issuecomment-1737548261) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -4. 🗣 Commented on [#122](https://github.com/eastgenomics/dias_batch_running/pull/122#issuecomment-1737546397) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#120](https://github.com/eastgenomics/dias_batch_running/pull/120#issuecomment-1737546278) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#682](https://github.com/bashtage/arch/pull/682#issuecomment-1737356423) in [bashtage/arch](https://github.com/bashtage/arch) -7. 🗣 Commented on [#119](https://github.com/eastgenomics/dias_batch_running/pull/119#issuecomment-1737344079) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#118](https://github.com/eastgenomics/dias_batch_running/pull/118#issuecomment-1737286243) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#241](https://github.com/OpenFreeEnergy/gufe/pull/241#issuecomment-1737271015) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#26](https://github.com/oemof/oemof-network/pull/26#issuecomment-1737076883) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +1. 🗣 Commented on [#7166](https://github.com/scikit-image/scikit-image/pull/7166#issuecomment-1738063592) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +2. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737945107) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737924360) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#206](https://github.com/scil-vital/dwi_ml/pull/206#issuecomment-1737548261) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +5. 🗣 Commented on [#122](https://github.com/eastgenomics/dias_batch_running/pull/122#issuecomment-1737546397) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#120](https://github.com/eastgenomics/dias_batch_running/pull/120#issuecomment-1737546278) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#682](https://github.com/bashtage/arch/pull/682#issuecomment-1737356423) in [bashtage/arch](https://github.com/bashtage/arch) +8. 🗣 Commented on [#119](https://github.com/eastgenomics/dias_batch_running/pull/119#issuecomment-1737344079) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#118](https://github.com/eastgenomics/dias_batch_running/pull/118#issuecomment-1737286243) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#241](https://github.com/OpenFreeEnergy/gufe/pull/241#issuecomment-1737271015) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From 560e6991314c6467212b5b89bd29daab18cf8039 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 05:37:14 +0000 Subject: [PATCH 0140/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 02453617..e5012f18 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#7166](https://github.com/scikit-image/scikit-image/pull/7166#issuecomment-1738063592) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -2. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737945107) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737924360) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#206](https://github.com/scil-vital/dwi_ml/pull/206#issuecomment-1737548261) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -5. 🗣 Commented on [#122](https://github.com/eastgenomics/dias_batch_running/pull/122#issuecomment-1737546397) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#120](https://github.com/eastgenomics/dias_batch_running/pull/120#issuecomment-1737546278) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#682](https://github.com/bashtage/arch/pull/682#issuecomment-1737356423) in [bashtage/arch](https://github.com/bashtage/arch) -8. 🗣 Commented on [#119](https://github.com/eastgenomics/dias_batch_running/pull/119#issuecomment-1737344079) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#118](https://github.com/eastgenomics/dias_batch_running/pull/118#issuecomment-1737286243) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#241](https://github.com/OpenFreeEnergy/gufe/pull/241#issuecomment-1737271015) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#100](https://github.com/OpenFreeEnergy/cinnabar/pull/100#issuecomment-1738447398) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +2. 🗣 Commented on [#7166](https://github.com/scikit-image/scikit-image/pull/7166#issuecomment-1738063592) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +3. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737945107) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737924360) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#206](https://github.com/scil-vital/dwi_ml/pull/206#issuecomment-1737548261) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +6. 🗣 Commented on [#122](https://github.com/eastgenomics/dias_batch_running/pull/122#issuecomment-1737546397) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#120](https://github.com/eastgenomics/dias_batch_running/pull/120#issuecomment-1737546278) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#682](https://github.com/bashtage/arch/pull/682#issuecomment-1737356423) in [bashtage/arch](https://github.com/bashtage/arch) +9. 🗣 Commented on [#119](https://github.com/eastgenomics/dias_batch_running/pull/119#issuecomment-1737344079) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#118](https://github.com/eastgenomics/dias_batch_running/pull/118#issuecomment-1737286243) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From 8ef4b025b698b010d3bd61198c020013bd61165e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 08:20:35 +0000 Subject: [PATCH 0141/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e5012f18..5f77c56d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#100](https://github.com/OpenFreeEnergy/cinnabar/pull/100#issuecomment-1738447398) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -2. 🗣 Commented on [#7166](https://github.com/scikit-image/scikit-image/pull/7166#issuecomment-1738063592) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -3. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737945107) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737924360) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#206](https://github.com/scil-vital/dwi_ml/pull/206#issuecomment-1737548261) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -6. 🗣 Commented on [#122](https://github.com/eastgenomics/dias_batch_running/pull/122#issuecomment-1737546397) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#120](https://github.com/eastgenomics/dias_batch_running/pull/120#issuecomment-1737546278) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#682](https://github.com/bashtage/arch/pull/682#issuecomment-1737356423) in [bashtage/arch](https://github.com/bashtage/arch) -9. 🗣 Commented on [#119](https://github.com/eastgenomics/dias_batch_running/pull/119#issuecomment-1737344079) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#118](https://github.com/eastgenomics/dias_batch_running/pull/118#issuecomment-1737286243) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#7168](https://github.com/scikit-image/scikit-image/pull/7168#issuecomment-1738674223) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +2. 🗣 Commented on [#100](https://github.com/OpenFreeEnergy/cinnabar/pull/100#issuecomment-1738447398) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +3. 🗣 Commented on [#7166](https://github.com/scikit-image/scikit-image/pull/7166#issuecomment-1738063592) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +4. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737945107) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737924360) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#206](https://github.com/scil-vital/dwi_ml/pull/206#issuecomment-1737548261) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +7. 🗣 Commented on [#122](https://github.com/eastgenomics/dias_batch_running/pull/122#issuecomment-1737546397) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#120](https://github.com/eastgenomics/dias_batch_running/pull/120#issuecomment-1737546278) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#682](https://github.com/bashtage/arch/pull/682#issuecomment-1737356423) in [bashtage/arch](https://github.com/bashtage/arch) +10. 🗣 Commented on [#119](https://github.com/eastgenomics/dias_batch_running/pull/119#issuecomment-1737344079) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From 2babdfa7c9fcdb565ba09640fc4dd84b75ef5943 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 09:15:52 +0000 Subject: [PATCH 0142/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5f77c56d..74c14726 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#7168](https://github.com/scikit-image/scikit-image/pull/7168#issuecomment-1738674223) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -2. 🗣 Commented on [#100](https://github.com/OpenFreeEnergy/cinnabar/pull/100#issuecomment-1738447398) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -3. 🗣 Commented on [#7166](https://github.com/scikit-image/scikit-image/pull/7166#issuecomment-1738063592) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -4. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737945107) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737924360) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#206](https://github.com/scil-vital/dwi_ml/pull/206#issuecomment-1737548261) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -7. 🗣 Commented on [#122](https://github.com/eastgenomics/dias_batch_running/pull/122#issuecomment-1737546397) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#120](https://github.com/eastgenomics/dias_batch_running/pull/120#issuecomment-1737546278) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#682](https://github.com/bashtage/arch/pull/682#issuecomment-1737356423) in [bashtage/arch](https://github.com/bashtage/arch) -10. 🗣 Commented on [#119](https://github.com/eastgenomics/dias_batch_running/pull/119#issuecomment-1737344079) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#2919](https://github.com/dipy/dipy/pull/2919#issuecomment-1738726190) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#7168](https://github.com/scikit-image/scikit-image/pull/7168#issuecomment-1738674223) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +3. 🗣 Commented on [#100](https://github.com/OpenFreeEnergy/cinnabar/pull/100#issuecomment-1738447398) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +4. 🗣 Commented on [#7166](https://github.com/scikit-image/scikit-image/pull/7166#issuecomment-1738063592) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +5. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737945107) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737924360) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#206](https://github.com/scil-vital/dwi_ml/pull/206#issuecomment-1737548261) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +8. 🗣 Commented on [#122](https://github.com/eastgenomics/dias_batch_running/pull/122#issuecomment-1737546397) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#120](https://github.com/eastgenomics/dias_batch_running/pull/120#issuecomment-1737546278) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#682](https://github.com/bashtage/arch/pull/682#issuecomment-1737356423) in [bashtage/arch](https://github.com/bashtage/arch) From 5106a2cd879ae7a92ed4faf4131f0682d82d9977 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 09:37:22 +0000 Subject: [PATCH 0143/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 74c14726..4e1451a1 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2919](https://github.com/dipy/dipy/pull/2919#issuecomment-1738726190) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#7168](https://github.com/scikit-image/scikit-image/pull/7168#issuecomment-1738674223) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -3. 🗣 Commented on [#100](https://github.com/OpenFreeEnergy/cinnabar/pull/100#issuecomment-1738447398) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -4. 🗣 Commented on [#7166](https://github.com/scikit-image/scikit-image/pull/7166#issuecomment-1738063592) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -5. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737945107) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737924360) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#206](https://github.com/scil-vital/dwi_ml/pull/206#issuecomment-1737548261) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -8. 🗣 Commented on [#122](https://github.com/eastgenomics/dias_batch_running/pull/122#issuecomment-1737546397) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#120](https://github.com/eastgenomics/dias_batch_running/pull/120#issuecomment-1737546278) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#682](https://github.com/bashtage/arch/pull/682#issuecomment-1737356423) in [bashtage/arch](https://github.com/bashtage/arch) +1. 🗣 Commented on [#121](https://github.com/eastgenomics/dias_batch_running/pull/121#issuecomment-1738802087) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#2919](https://github.com/dipy/dipy/pull/2919#issuecomment-1738726190) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#7168](https://github.com/scikit-image/scikit-image/pull/7168#issuecomment-1738674223) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +4. 🗣 Commented on [#100](https://github.com/OpenFreeEnergy/cinnabar/pull/100#issuecomment-1738447398) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +5. 🗣 Commented on [#7166](https://github.com/scikit-image/scikit-image/pull/7166#issuecomment-1738063592) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +6. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737945107) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737924360) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#206](https://github.com/scil-vital/dwi_ml/pull/206#issuecomment-1737548261) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +9. 🗣 Commented on [#122](https://github.com/eastgenomics/dias_batch_running/pull/122#issuecomment-1737546397) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#120](https://github.com/eastgenomics/dias_batch_running/pull/120#issuecomment-1737546278) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From d19af736a5cb142e81850d2c7b7caa7e623c1e50 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 10:37:21 +0000 Subject: [PATCH 0144/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4e1451a1..6ac9d02f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#121](https://github.com/eastgenomics/dias_batch_running/pull/121#issuecomment-1738802087) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#2919](https://github.com/dipy/dipy/pull/2919#issuecomment-1738726190) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#7168](https://github.com/scikit-image/scikit-image/pull/7168#issuecomment-1738674223) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -4. 🗣 Commented on [#100](https://github.com/OpenFreeEnergy/cinnabar/pull/100#issuecomment-1738447398) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -5. 🗣 Commented on [#7166](https://github.com/scikit-image/scikit-image/pull/7166#issuecomment-1738063592) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -6. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737945107) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737924360) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#206](https://github.com/scil-vital/dwi_ml/pull/206#issuecomment-1737548261) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -9. 🗣 Commented on [#122](https://github.com/eastgenomics/dias_batch_running/pull/122#issuecomment-1737546397) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#120](https://github.com/eastgenomics/dias_batch_running/pull/120#issuecomment-1737546278) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#1176](https://github.com/aimclub/FEDOT/pull/1176#issuecomment-1738879004) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#121](https://github.com/eastgenomics/dias_batch_running/pull/121#issuecomment-1738802087) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#2919](https://github.com/dipy/dipy/pull/2919#issuecomment-1738726190) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#7168](https://github.com/scikit-image/scikit-image/pull/7168#issuecomment-1738674223) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +5. 🗣 Commented on [#100](https://github.com/OpenFreeEnergy/cinnabar/pull/100#issuecomment-1738447398) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +6. 🗣 Commented on [#7166](https://github.com/scikit-image/scikit-image/pull/7166#issuecomment-1738063592) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +7. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737945107) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737924360) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#206](https://github.com/scil-vital/dwi_ml/pull/206#issuecomment-1737548261) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +10. 🗣 Commented on [#122](https://github.com/eastgenomics/dias_batch_running/pull/122#issuecomment-1737546397) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From 5c91f28720e85bd54d945bcb864bf5f217950e43 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 12:31:43 +0000 Subject: [PATCH 0145/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6ac9d02f..14579756 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1176](https://github.com/aimclub/FEDOT/pull/1176#issuecomment-1738879004) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#121](https://github.com/eastgenomics/dias_batch_running/pull/121#issuecomment-1738802087) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#2919](https://github.com/dipy/dipy/pull/2919#issuecomment-1738726190) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#7168](https://github.com/scikit-image/scikit-image/pull/7168#issuecomment-1738674223) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -5. 🗣 Commented on [#100](https://github.com/OpenFreeEnergy/cinnabar/pull/100#issuecomment-1738447398) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -6. 🗣 Commented on [#7166](https://github.com/scikit-image/scikit-image/pull/7166#issuecomment-1738063592) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -7. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737945107) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#68](https://github.com/politeauthority/cver/pull/68#issuecomment-1737924360) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#206](https://github.com/scil-vital/dwi_ml/pull/206#issuecomment-1737548261) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -10. 🗣 Commented on [#122](https://github.com/eastgenomics/dias_batch_running/pull/122#issuecomment-1737546397) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#921](https://github.com/avaframe/AvaFrame/pull/921#issuecomment-1739021981) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#1](https://github.com/rasbt/LLMs-from-scratch/pull/1#issuecomment-1739020148) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +3. 🗣 Commented on [#28](https://github.com/oemof/oemof-network/pull/28#issuecomment-1739017470) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +4. 🗣 Commented on [#123](https://github.com/eastgenomics/dias_batch_running/pull/123#issuecomment-1739016578) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#980](https://github.com/oemof/oemof-solph/pull/980#issuecomment-1738989971) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +6. 🗣 Commented on [#1176](https://github.com/aimclub/FEDOT/pull/1176#issuecomment-1738879004) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#121](https://github.com/eastgenomics/dias_batch_running/pull/121#issuecomment-1738802087) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#2919](https://github.com/dipy/dipy/pull/2919#issuecomment-1738726190) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#7168](https://github.com/scikit-image/scikit-image/pull/7168#issuecomment-1738674223) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +10. 🗣 Commented on [#100](https://github.com/OpenFreeEnergy/cinnabar/pull/100#issuecomment-1738447398) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) From 8e4f0198da91f947c188f140a93a2ac380d90b9a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 13:19:50 +0000 Subject: [PATCH 0146/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 14579756..892631b7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#921](https://github.com/avaframe/AvaFrame/pull/921#issuecomment-1739021981) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#1](https://github.com/rasbt/LLMs-from-scratch/pull/1#issuecomment-1739020148) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -3. 🗣 Commented on [#28](https://github.com/oemof/oemof-network/pull/28#issuecomment-1739017470) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -4. 🗣 Commented on [#123](https://github.com/eastgenomics/dias_batch_running/pull/123#issuecomment-1739016578) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#980](https://github.com/oemof/oemof-solph/pull/980#issuecomment-1738989971) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -6. 🗣 Commented on [#1176](https://github.com/aimclub/FEDOT/pull/1176#issuecomment-1738879004) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#121](https://github.com/eastgenomics/dias_batch_running/pull/121#issuecomment-1738802087) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#2919](https://github.com/dipy/dipy/pull/2919#issuecomment-1738726190) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#7168](https://github.com/scikit-image/scikit-image/pull/7168#issuecomment-1738674223) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -10. 🗣 Commented on [#100](https://github.com/OpenFreeEnergy/cinnabar/pull/100#issuecomment-1738447398) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +1. 🗣 Commented on [#1416](https://github.com/openSUSE/osc/pull/1416#issuecomment-1739104352) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#921](https://github.com/avaframe/AvaFrame/pull/921#issuecomment-1739021981) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#1](https://github.com/rasbt/LLMs-from-scratch/pull/1#issuecomment-1739020148) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +4. 🗣 Commented on [#28](https://github.com/oemof/oemof-network/pull/28#issuecomment-1739017470) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +5. 🗣 Commented on [#123](https://github.com/eastgenomics/dias_batch_running/pull/123#issuecomment-1739016578) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#980](https://github.com/oemof/oemof-solph/pull/980#issuecomment-1738989971) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +7. 🗣 Commented on [#1176](https://github.com/aimclub/FEDOT/pull/1176#issuecomment-1738879004) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#121](https://github.com/eastgenomics/dias_batch_running/pull/121#issuecomment-1738802087) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#2919](https://github.com/dipy/dipy/pull/2919#issuecomment-1738726190) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#7168](https://github.com/scikit-image/scikit-image/pull/7168#issuecomment-1738674223) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) From f42e1398a6f757d8ee93a9003722f63ec943ecab Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 13:37:38 +0000 Subject: [PATCH 0147/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 892631b7..f127dfee 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1416](https://github.com/openSUSE/osc/pull/1416#issuecomment-1739104352) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#921](https://github.com/avaframe/AvaFrame/pull/921#issuecomment-1739021981) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#1](https://github.com/rasbt/LLMs-from-scratch/pull/1#issuecomment-1739020148) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -4. 🗣 Commented on [#28](https://github.com/oemof/oemof-network/pull/28#issuecomment-1739017470) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -5. 🗣 Commented on [#123](https://github.com/eastgenomics/dias_batch_running/pull/123#issuecomment-1739016578) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#980](https://github.com/oemof/oemof-solph/pull/980#issuecomment-1738989971) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -7. 🗣 Commented on [#1176](https://github.com/aimclub/FEDOT/pull/1176#issuecomment-1738879004) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#121](https://github.com/eastgenomics/dias_batch_running/pull/121#issuecomment-1738802087) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#2919](https://github.com/dipy/dipy/pull/2919#issuecomment-1738726190) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#7168](https://github.com/scikit-image/scikit-image/pull/7168#issuecomment-1738674223) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +1. 🗣 Commented on [#1177](https://github.com/aimclub/FEDOT/pull/1177#issuecomment-1739157280) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#1416](https://github.com/openSUSE/osc/pull/1416#issuecomment-1739104352) in [openSUSE/osc](https://github.com/openSUSE/osc) +3. 🗣 Commented on [#921](https://github.com/avaframe/AvaFrame/pull/921#issuecomment-1739021981) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#1](https://github.com/rasbt/LLMs-from-scratch/pull/1#issuecomment-1739020148) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +5. 🗣 Commented on [#28](https://github.com/oemof/oemof-network/pull/28#issuecomment-1739017470) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +6. 🗣 Commented on [#123](https://github.com/eastgenomics/dias_batch_running/pull/123#issuecomment-1739016578) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#980](https://github.com/oemof/oemof-solph/pull/980#issuecomment-1738989971) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +8. 🗣 Commented on [#1176](https://github.com/aimclub/FEDOT/pull/1176#issuecomment-1738879004) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#121](https://github.com/eastgenomics/dias_batch_running/pull/121#issuecomment-1738802087) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#2919](https://github.com/dipy/dipy/pull/2919#issuecomment-1738726190) in [dipy/dipy](https://github.com/dipy/dipy) From eaf32be0adb92b13c50a06036d3a4554cd71be02 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 15:16:42 +0000 Subject: [PATCH 0148/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f127dfee..ddef009c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1177](https://github.com/aimclub/FEDOT/pull/1177#issuecomment-1739157280) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#1416](https://github.com/openSUSE/osc/pull/1416#issuecomment-1739104352) in [openSUSE/osc](https://github.com/openSUSE/osc) -3. 🗣 Commented on [#921](https://github.com/avaframe/AvaFrame/pull/921#issuecomment-1739021981) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#1](https://github.com/rasbt/LLMs-from-scratch/pull/1#issuecomment-1739020148) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -5. 🗣 Commented on [#28](https://github.com/oemof/oemof-network/pull/28#issuecomment-1739017470) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -6. 🗣 Commented on [#123](https://github.com/eastgenomics/dias_batch_running/pull/123#issuecomment-1739016578) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#980](https://github.com/oemof/oemof-solph/pull/980#issuecomment-1738989971) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -8. 🗣 Commented on [#1176](https://github.com/aimclub/FEDOT/pull/1176#issuecomment-1738879004) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#121](https://github.com/eastgenomics/dias_batch_running/pull/121#issuecomment-1738802087) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#2919](https://github.com/dipy/dipy/pull/2919#issuecomment-1738726190) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#369](https://github.com/nipreps/smriprep/pull/369#issuecomment-1739494863) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +2. 🗣 Commented on [#1177](https://github.com/aimclub/FEDOT/pull/1177#issuecomment-1739157280) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#1416](https://github.com/openSUSE/osc/pull/1416#issuecomment-1739104352) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#921](https://github.com/avaframe/AvaFrame/pull/921#issuecomment-1739021981) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#1](https://github.com/rasbt/LLMs-from-scratch/pull/1#issuecomment-1739020148) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +6. 🗣 Commented on [#28](https://github.com/oemof/oemof-network/pull/28#issuecomment-1739017470) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +7. 🗣 Commented on [#123](https://github.com/eastgenomics/dias_batch_running/pull/123#issuecomment-1739016578) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#980](https://github.com/oemof/oemof-solph/pull/980#issuecomment-1738989971) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +9. 🗣 Commented on [#1176](https://github.com/aimclub/FEDOT/pull/1176#issuecomment-1738879004) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#121](https://github.com/eastgenomics/dias_batch_running/pull/121#issuecomment-1738802087) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From fd1bac5f3e58a66f156982536996e630bbfe14c0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 15:37:23 +0000 Subject: [PATCH 0149/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ddef009c..3f75ed37 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#369](https://github.com/nipreps/smriprep/pull/369#issuecomment-1739494863) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -2. 🗣 Commented on [#1177](https://github.com/aimclub/FEDOT/pull/1177#issuecomment-1739157280) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#1416](https://github.com/openSUSE/osc/pull/1416#issuecomment-1739104352) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#921](https://github.com/avaframe/AvaFrame/pull/921#issuecomment-1739021981) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#1](https://github.com/rasbt/LLMs-from-scratch/pull/1#issuecomment-1739020148) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -6. 🗣 Commented on [#28](https://github.com/oemof/oemof-network/pull/28#issuecomment-1739017470) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -7. 🗣 Commented on [#123](https://github.com/eastgenomics/dias_batch_running/pull/123#issuecomment-1739016578) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#980](https://github.com/oemof/oemof-solph/pull/980#issuecomment-1738989971) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -9. 🗣 Commented on [#1176](https://github.com/aimclub/FEDOT/pull/1176#issuecomment-1738879004) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#121](https://github.com/eastgenomics/dias_batch_running/pull/121#issuecomment-1738802087) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#125](https://github.com/eastgenomics/dias_batch_running/pull/125#issuecomment-1739502145) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#369](https://github.com/nipreps/smriprep/pull/369#issuecomment-1739494863) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +3. 🗣 Commented on [#1177](https://github.com/aimclub/FEDOT/pull/1177#issuecomment-1739157280) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#1416](https://github.com/openSUSE/osc/pull/1416#issuecomment-1739104352) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#921](https://github.com/avaframe/AvaFrame/pull/921#issuecomment-1739021981) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#1](https://github.com/rasbt/LLMs-from-scratch/pull/1#issuecomment-1739020148) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +7. 🗣 Commented on [#28](https://github.com/oemof/oemof-network/pull/28#issuecomment-1739017470) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +8. 🗣 Commented on [#123](https://github.com/eastgenomics/dias_batch_running/pull/123#issuecomment-1739016578) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#980](https://github.com/oemof/oemof-solph/pull/980#issuecomment-1738989971) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +10. 🗣 Commented on [#1176](https://github.com/aimclub/FEDOT/pull/1176#issuecomment-1738879004) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From 086ec9912940dec53b7ceed05b2adac53c89dc3e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 16:20:42 +0000 Subject: [PATCH 0150/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3f75ed37..dda5c65d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#125](https://github.com/eastgenomics/dias_batch_running/pull/125#issuecomment-1739502145) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#369](https://github.com/nipreps/smriprep/pull/369#issuecomment-1739494863) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -3. 🗣 Commented on [#1177](https://github.com/aimclub/FEDOT/pull/1177#issuecomment-1739157280) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#1416](https://github.com/openSUSE/osc/pull/1416#issuecomment-1739104352) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#921](https://github.com/avaframe/AvaFrame/pull/921#issuecomment-1739021981) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#1](https://github.com/rasbt/LLMs-from-scratch/pull/1#issuecomment-1739020148) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -7. 🗣 Commented on [#28](https://github.com/oemof/oemof-network/pull/28#issuecomment-1739017470) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -8. 🗣 Commented on [#123](https://github.com/eastgenomics/dias_batch_running/pull/123#issuecomment-1739016578) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#980](https://github.com/oemof/oemof-solph/pull/980#issuecomment-1738989971) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -10. 🗣 Commented on [#1176](https://github.com/aimclub/FEDOT/pull/1176#issuecomment-1738879004) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#828](https://github.com/nipreps/niworkflows/pull/828#issuecomment-1739573829) in [nipreps/niworkflows](https://github.com/nipreps/niworkflows) +2. 🗣 Commented on [#125](https://github.com/eastgenomics/dias_batch_running/pull/125#issuecomment-1739502145) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#369](https://github.com/nipreps/smriprep/pull/369#issuecomment-1739494863) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +4. 🗣 Commented on [#1177](https://github.com/aimclub/FEDOT/pull/1177#issuecomment-1739157280) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#1416](https://github.com/openSUSE/osc/pull/1416#issuecomment-1739104352) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#921](https://github.com/avaframe/AvaFrame/pull/921#issuecomment-1739021981) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#1](https://github.com/rasbt/LLMs-from-scratch/pull/1#issuecomment-1739020148) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +8. 🗣 Commented on [#28](https://github.com/oemof/oemof-network/pull/28#issuecomment-1739017470) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +9. 🗣 Commented on [#123](https://github.com/eastgenomics/dias_batch_running/pull/123#issuecomment-1739016578) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#980](https://github.com/oemof/oemof-solph/pull/980#issuecomment-1738989971) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) From 833d89fbec06e87b11d138cfe37267c63482f86e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 17:37:15 +0000 Subject: [PATCH 0151/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dda5c65d..79e097e2 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#828](https://github.com/nipreps/niworkflows/pull/828#issuecomment-1739573829) in [nipreps/niworkflows](https://github.com/nipreps/niworkflows) -2. 🗣 Commented on [#125](https://github.com/eastgenomics/dias_batch_running/pull/125#issuecomment-1739502145) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#369](https://github.com/nipreps/smriprep/pull/369#issuecomment-1739494863) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -4. 🗣 Commented on [#1177](https://github.com/aimclub/FEDOT/pull/1177#issuecomment-1739157280) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#1416](https://github.com/openSUSE/osc/pull/1416#issuecomment-1739104352) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#921](https://github.com/avaframe/AvaFrame/pull/921#issuecomment-1739021981) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#1](https://github.com/rasbt/LLMs-from-scratch/pull/1#issuecomment-1739020148) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -8. 🗣 Commented on [#28](https://github.com/oemof/oemof-network/pull/28#issuecomment-1739017470) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -9. 🗣 Commented on [#123](https://github.com/eastgenomics/dias_batch_running/pull/123#issuecomment-1739016578) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#980](https://github.com/oemof/oemof-solph/pull/980#issuecomment-1738989971) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +1. 🗣 Commented on [#1152](https://github.com/spacetelescope/jwql/pull/1152#issuecomment-1739741760) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#7175](https://github.com/scikit-image/scikit-image/pull/7175#issuecomment-1739719882) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +3. 🗣 Commented on [#828](https://github.com/nipreps/niworkflows/pull/828#issuecomment-1739573829) in [nipreps/niworkflows](https://github.com/nipreps/niworkflows) +4. 🗣 Commented on [#125](https://github.com/eastgenomics/dias_batch_running/pull/125#issuecomment-1739502145) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#369](https://github.com/nipreps/smriprep/pull/369#issuecomment-1739494863) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +6. 🗣 Commented on [#1177](https://github.com/aimclub/FEDOT/pull/1177#issuecomment-1739157280) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#1416](https://github.com/openSUSE/osc/pull/1416#issuecomment-1739104352) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#921](https://github.com/avaframe/AvaFrame/pull/921#issuecomment-1739021981) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#1](https://github.com/rasbt/LLMs-from-scratch/pull/1#issuecomment-1739020148) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +10. 🗣 Commented on [#28](https://github.com/oemof/oemof-network/pull/28#issuecomment-1739017470) in [oemof/oemof-network](https://github.com/oemof/oemof-network) From fe37de95aa2610a7b3241ef24e12e607973fd809 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 19:37:26 +0000 Subject: [PATCH 0152/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 79e097e2..0f439a96 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1152](https://github.com/spacetelescope/jwql/pull/1152#issuecomment-1739741760) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#7175](https://github.com/scikit-image/scikit-image/pull/7175#issuecomment-1739719882) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -3. 🗣 Commented on [#828](https://github.com/nipreps/niworkflows/pull/828#issuecomment-1739573829) in [nipreps/niworkflows](https://github.com/nipreps/niworkflows) -4. 🗣 Commented on [#125](https://github.com/eastgenomics/dias_batch_running/pull/125#issuecomment-1739502145) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#369](https://github.com/nipreps/smriprep/pull/369#issuecomment-1739494863) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -6. 🗣 Commented on [#1177](https://github.com/aimclub/FEDOT/pull/1177#issuecomment-1739157280) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#1416](https://github.com/openSUSE/osc/pull/1416#issuecomment-1739104352) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#921](https://github.com/avaframe/AvaFrame/pull/921#issuecomment-1739021981) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#1](https://github.com/rasbt/LLMs-from-scratch/pull/1#issuecomment-1739020148) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -10. 🗣 Commented on [#28](https://github.com/oemof/oemof-network/pull/28#issuecomment-1739017470) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +1. 🗣 Commented on [#746](https://github.com/scilus/scilpy/pull/746#issuecomment-1739888681) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#1152](https://github.com/spacetelescope/jwql/pull/1152#issuecomment-1739741760) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#7175](https://github.com/scikit-image/scikit-image/pull/7175#issuecomment-1739719882) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +4. 🗣 Commented on [#828](https://github.com/nipreps/niworkflows/pull/828#issuecomment-1739573829) in [nipreps/niworkflows](https://github.com/nipreps/niworkflows) +5. 🗣 Commented on [#125](https://github.com/eastgenomics/dias_batch_running/pull/125#issuecomment-1739502145) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#369](https://github.com/nipreps/smriprep/pull/369#issuecomment-1739494863) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +7. 🗣 Commented on [#1177](https://github.com/aimclub/FEDOT/pull/1177#issuecomment-1739157280) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#1416](https://github.com/openSUSE/osc/pull/1416#issuecomment-1739104352) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#921](https://github.com/avaframe/AvaFrame/pull/921#issuecomment-1739021981) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#1](https://github.com/rasbt/LLMs-from-scratch/pull/1#issuecomment-1739020148) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) From 890f208120b406f91cc0a803bf131c8d0e9f2214 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 20:15:05 +0000 Subject: [PATCH 0153/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0f439a96..6ec0432d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#746](https://github.com/scilus/scilpy/pull/746#issuecomment-1739888681) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#1152](https://github.com/spacetelescope/jwql/pull/1152#issuecomment-1739741760) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#7175](https://github.com/scikit-image/scikit-image/pull/7175#issuecomment-1739719882) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -4. 🗣 Commented on [#828](https://github.com/nipreps/niworkflows/pull/828#issuecomment-1739573829) in [nipreps/niworkflows](https://github.com/nipreps/niworkflows) -5. 🗣 Commented on [#125](https://github.com/eastgenomics/dias_batch_running/pull/125#issuecomment-1739502145) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#369](https://github.com/nipreps/smriprep/pull/369#issuecomment-1739494863) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -7. 🗣 Commented on [#1177](https://github.com/aimclub/FEDOT/pull/1177#issuecomment-1739157280) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#1416](https://github.com/openSUSE/osc/pull/1416#issuecomment-1739104352) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#921](https://github.com/avaframe/AvaFrame/pull/921#issuecomment-1739021981) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#1](https://github.com/rasbt/LLMs-from-scratch/pull/1#issuecomment-1739020148) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +1. 🗣 Commented on [#466](https://github.com/UIUCLibrary/Speedwagon/pull/466#issuecomment-1739912198) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +2. 🗣 Commented on [#20900](https://github.com/spyder-ide/spyder/pull/20900#issuecomment-1739909335) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#746](https://github.com/scilus/scilpy/pull/746#issuecomment-1739888681) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#1152](https://github.com/spacetelescope/jwql/pull/1152#issuecomment-1739741760) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#7175](https://github.com/scikit-image/scikit-image/pull/7175#issuecomment-1739719882) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +6. 🗣 Commented on [#828](https://github.com/nipreps/niworkflows/pull/828#issuecomment-1739573829) in [nipreps/niworkflows](https://github.com/nipreps/niworkflows) +7. 🗣 Commented on [#125](https://github.com/eastgenomics/dias_batch_running/pull/125#issuecomment-1739502145) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#369](https://github.com/nipreps/smriprep/pull/369#issuecomment-1739494863) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +9. 🗣 Commented on [#1177](https://github.com/aimclub/FEDOT/pull/1177#issuecomment-1739157280) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#1416](https://github.com/openSUSE/osc/pull/1416#issuecomment-1739104352) in [openSUSE/osc](https://github.com/openSUSE/osc) From 1ffa524bd1875809475b713b25f48e17542cf1b4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 21:13:49 +0000 Subject: [PATCH 0154/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6ec0432d..2eb27c1d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#466](https://github.com/UIUCLibrary/Speedwagon/pull/466#issuecomment-1739912198) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -2. 🗣 Commented on [#20900](https://github.com/spyder-ide/spyder/pull/20900#issuecomment-1739909335) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#746](https://github.com/scilus/scilpy/pull/746#issuecomment-1739888681) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#1152](https://github.com/spacetelescope/jwql/pull/1152#issuecomment-1739741760) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#7175](https://github.com/scikit-image/scikit-image/pull/7175#issuecomment-1739719882) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -6. 🗣 Commented on [#828](https://github.com/nipreps/niworkflows/pull/828#issuecomment-1739573829) in [nipreps/niworkflows](https://github.com/nipreps/niworkflows) -7. 🗣 Commented on [#125](https://github.com/eastgenomics/dias_batch_running/pull/125#issuecomment-1739502145) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#369](https://github.com/nipreps/smriprep/pull/369#issuecomment-1739494863) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -9. 🗣 Commented on [#1177](https://github.com/aimclub/FEDOT/pull/1177#issuecomment-1739157280) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#1416](https://github.com/openSUSE/osc/pull/1416#issuecomment-1739104352) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#5214](https://github.com/rhinstaller/anaconda/pull/5214#issuecomment-1740011338) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1739996100) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#466](https://github.com/UIUCLibrary/Speedwagon/pull/466#issuecomment-1739912198) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +4. 🗣 Commented on [#20900](https://github.com/spyder-ide/spyder/pull/20900#issuecomment-1739909335) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#746](https://github.com/scilus/scilpy/pull/746#issuecomment-1739888681) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#1152](https://github.com/spacetelescope/jwql/pull/1152#issuecomment-1739741760) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#7175](https://github.com/scikit-image/scikit-image/pull/7175#issuecomment-1739719882) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +8. 🗣 Commented on [#828](https://github.com/nipreps/niworkflows/pull/828#issuecomment-1739573829) in [nipreps/niworkflows](https://github.com/nipreps/niworkflows) +9. 🗣 Commented on [#125](https://github.com/eastgenomics/dias_batch_running/pull/125#issuecomment-1739502145) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#369](https://github.com/nipreps/smriprep/pull/369#issuecomment-1739494863) in [nipreps/smriprep](https://github.com/nipreps/smriprep) From 5014e4d1f15672545f4c839dcfc7cae95306d807 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Sep 2023 01:09:25 +0000 Subject: [PATCH 0155/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2eb27c1d..b86436ff 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5214](https://github.com/rhinstaller/anaconda/pull/5214#issuecomment-1740011338) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1739996100) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#466](https://github.com/UIUCLibrary/Speedwagon/pull/466#issuecomment-1739912198) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -4. 🗣 Commented on [#20900](https://github.com/spyder-ide/spyder/pull/20900#issuecomment-1739909335) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#746](https://github.com/scilus/scilpy/pull/746#issuecomment-1739888681) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#1152](https://github.com/spacetelescope/jwql/pull/1152#issuecomment-1739741760) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#7175](https://github.com/scikit-image/scikit-image/pull/7175#issuecomment-1739719882) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -8. 🗣 Commented on [#828](https://github.com/nipreps/niworkflows/pull/828#issuecomment-1739573829) in [nipreps/niworkflows](https://github.com/nipreps/niworkflows) -9. 🗣 Commented on [#125](https://github.com/eastgenomics/dias_batch_running/pull/125#issuecomment-1739502145) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#369](https://github.com/nipreps/smriprep/pull/369#issuecomment-1739494863) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +1. 🗣 Commented on [#368](https://github.com/payu-org/payu/pull/368#issuecomment-1740153743) in [payu-org/payu](https://github.com/payu-org/payu) +2. 🗣 Commented on [#5214](https://github.com/rhinstaller/anaconda/pull/5214#issuecomment-1740011338) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1739996100) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#466](https://github.com/UIUCLibrary/Speedwagon/pull/466#issuecomment-1739912198) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +5. 🗣 Commented on [#20900](https://github.com/spyder-ide/spyder/pull/20900#issuecomment-1739909335) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#746](https://github.com/scilus/scilpy/pull/746#issuecomment-1739888681) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#1152](https://github.com/spacetelescope/jwql/pull/1152#issuecomment-1739741760) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#7175](https://github.com/scikit-image/scikit-image/pull/7175#issuecomment-1739719882) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +9. 🗣 Commented on [#828](https://github.com/nipreps/niworkflows/pull/828#issuecomment-1739573829) in [nipreps/niworkflows](https://github.com/nipreps/niworkflows) +10. 🗣 Commented on [#125](https://github.com/eastgenomics/dias_batch_running/pull/125#issuecomment-1739502145) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From 6e16bbfaec904051a0d4da6eb816c002a7f4e9f9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Sep 2023 08:19:58 +0000 Subject: [PATCH 0156/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b86436ff..a7778f36 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#368](https://github.com/payu-org/payu/pull/368#issuecomment-1740153743) in [payu-org/payu](https://github.com/payu-org/payu) -2. 🗣 Commented on [#5214](https://github.com/rhinstaller/anaconda/pull/5214#issuecomment-1740011338) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1739996100) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#466](https://github.com/UIUCLibrary/Speedwagon/pull/466#issuecomment-1739912198) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -5. 🗣 Commented on [#20900](https://github.com/spyder-ide/spyder/pull/20900#issuecomment-1739909335) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#746](https://github.com/scilus/scilpy/pull/746#issuecomment-1739888681) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#1152](https://github.com/spacetelescope/jwql/pull/1152#issuecomment-1739741760) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#7175](https://github.com/scikit-image/scikit-image/pull/7175#issuecomment-1739719882) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -9. 🗣 Commented on [#828](https://github.com/nipreps/niworkflows/pull/828#issuecomment-1739573829) in [nipreps/niworkflows](https://github.com/nipreps/niworkflows) -10. 🗣 Commented on [#125](https://github.com/eastgenomics/dias_batch_running/pull/125#issuecomment-1739502145) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#48](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/48#issuecomment-1740467665) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) +2. 🗣 Commented on [#368](https://github.com/payu-org/payu/pull/368#issuecomment-1740153743) in [payu-org/payu](https://github.com/payu-org/payu) +3. 🗣 Commented on [#5214](https://github.com/rhinstaller/anaconda/pull/5214#issuecomment-1740011338) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1739996100) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#466](https://github.com/UIUCLibrary/Speedwagon/pull/466#issuecomment-1739912198) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +6. 🗣 Commented on [#20900](https://github.com/spyder-ide/spyder/pull/20900#issuecomment-1739909335) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#746](https://github.com/scilus/scilpy/pull/746#issuecomment-1739888681) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#1152](https://github.com/spacetelescope/jwql/pull/1152#issuecomment-1739741760) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#7175](https://github.com/scikit-image/scikit-image/pull/7175#issuecomment-1739719882) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +10. 🗣 Commented on [#828](https://github.com/nipreps/niworkflows/pull/828#issuecomment-1739573829) in [nipreps/niworkflows](https://github.com/nipreps/niworkflows) From f6040540bb7b3ecb8d76db6b28fdd0a913fc99bb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Sep 2023 10:16:53 +0000 Subject: [PATCH 0157/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a7778f36..90879db2 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#48](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/48#issuecomment-1740467665) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) -2. 🗣 Commented on [#368](https://github.com/payu-org/payu/pull/368#issuecomment-1740153743) in [payu-org/payu](https://github.com/payu-org/payu) -3. 🗣 Commented on [#5214](https://github.com/rhinstaller/anaconda/pull/5214#issuecomment-1740011338) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1739996100) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#466](https://github.com/UIUCLibrary/Speedwagon/pull/466#issuecomment-1739912198) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -6. 🗣 Commented on [#20900](https://github.com/spyder-ide/spyder/pull/20900#issuecomment-1739909335) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#746](https://github.com/scilus/scilpy/pull/746#issuecomment-1739888681) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#1152](https://github.com/spacetelescope/jwql/pull/1152#issuecomment-1739741760) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#7175](https://github.com/scikit-image/scikit-image/pull/7175#issuecomment-1739719882) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) -10. 🗣 Commented on [#828](https://github.com/nipreps/niworkflows/pull/828#issuecomment-1739573829) in [nipreps/niworkflows](https://github.com/nipreps/niworkflows) +1. 🗣 Commented on [#739](https://github.com/StingraySoftware/stingray/pull/739#issuecomment-1740649237) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +2. 🗣 Commented on [#48](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/48#issuecomment-1740467665) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) +3. 🗣 Commented on [#368](https://github.com/payu-org/payu/pull/368#issuecomment-1740153743) in [payu-org/payu](https://github.com/payu-org/payu) +4. 🗣 Commented on [#5214](https://github.com/rhinstaller/anaconda/pull/5214#issuecomment-1740011338) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1739996100) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#466](https://github.com/UIUCLibrary/Speedwagon/pull/466#issuecomment-1739912198) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +7. 🗣 Commented on [#20900](https://github.com/spyder-ide/spyder/pull/20900#issuecomment-1739909335) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#746](https://github.com/scilus/scilpy/pull/746#issuecomment-1739888681) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#1152](https://github.com/spacetelescope/jwql/pull/1152#issuecomment-1739741760) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#7175](https://github.com/scikit-image/scikit-image/pull/7175#issuecomment-1739719882) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) From 9fa0ceffc4faf9f9b0c2563dfde3f19305c557fc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Sep 2023 10:37:23 +0000 Subject: [PATCH 0158/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 90879db2..426fa2df 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#739](https://github.com/StingraySoftware/stingray/pull/739#issuecomment-1740649237) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -2. 🗣 Commented on [#48](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/48#issuecomment-1740467665) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) -3. 🗣 Commented on [#368](https://github.com/payu-org/payu/pull/368#issuecomment-1740153743) in [payu-org/payu](https://github.com/payu-org/payu) -4. 🗣 Commented on [#5214](https://github.com/rhinstaller/anaconda/pull/5214#issuecomment-1740011338) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1739996100) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#466](https://github.com/UIUCLibrary/Speedwagon/pull/466#issuecomment-1739912198) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -7. 🗣 Commented on [#20900](https://github.com/spyder-ide/spyder/pull/20900#issuecomment-1739909335) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#746](https://github.com/scilus/scilpy/pull/746#issuecomment-1739888681) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#1152](https://github.com/spacetelescope/jwql/pull/1152#issuecomment-1739741760) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#7175](https://github.com/scikit-image/scikit-image/pull/7175#issuecomment-1739719882) in [scikit-image/scikit-image](https://github.com/scikit-image/scikit-image) +1. 🗣 Commented on [#2830](https://github.com/dipy/dipy/pull/2830#issuecomment-1740659877) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#739](https://github.com/StingraySoftware/stingray/pull/739#issuecomment-1740649237) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +3. 🗣 Commented on [#48](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/48#issuecomment-1740467665) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) +4. 🗣 Commented on [#368](https://github.com/payu-org/payu/pull/368#issuecomment-1740153743) in [payu-org/payu](https://github.com/payu-org/payu) +5. 🗣 Commented on [#5214](https://github.com/rhinstaller/anaconda/pull/5214#issuecomment-1740011338) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1739996100) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#466](https://github.com/UIUCLibrary/Speedwagon/pull/466#issuecomment-1739912198) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +8. 🗣 Commented on [#20900](https://github.com/spyder-ide/spyder/pull/20900#issuecomment-1739909335) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#746](https://github.com/scilus/scilpy/pull/746#issuecomment-1739888681) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#1152](https://github.com/spacetelescope/jwql/pull/1152#issuecomment-1739741760) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From e1d429386fe9a258a75694cb304ee1165048884b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Sep 2023 11:37:21 +0000 Subject: [PATCH 0159/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 426fa2df..af18522e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2830](https://github.com/dipy/dipy/pull/2830#issuecomment-1740659877) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#739](https://github.com/StingraySoftware/stingray/pull/739#issuecomment-1740649237) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -3. 🗣 Commented on [#48](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/48#issuecomment-1740467665) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) -4. 🗣 Commented on [#368](https://github.com/payu-org/payu/pull/368#issuecomment-1740153743) in [payu-org/payu](https://github.com/payu-org/payu) -5. 🗣 Commented on [#5214](https://github.com/rhinstaller/anaconda/pull/5214#issuecomment-1740011338) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1739996100) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#466](https://github.com/UIUCLibrary/Speedwagon/pull/466#issuecomment-1739912198) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -8. 🗣 Commented on [#20900](https://github.com/spyder-ide/spyder/pull/20900#issuecomment-1739909335) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#746](https://github.com/scilus/scilpy/pull/746#issuecomment-1739888681) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#1152](https://github.com/spacetelescope/jwql/pull/1152#issuecomment-1739741760) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#115](https://github.com/MDAnalysis/mdacli/pull/115#issuecomment-1740717090) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +2. 🗣 Commented on [#2830](https://github.com/dipy/dipy/pull/2830#issuecomment-1740659877) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#739](https://github.com/StingraySoftware/stingray/pull/739#issuecomment-1740649237) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +4. 🗣 Commented on [#48](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/48#issuecomment-1740467665) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) +5. 🗣 Commented on [#368](https://github.com/payu-org/payu/pull/368#issuecomment-1740153743) in [payu-org/payu](https://github.com/payu-org/payu) +6. 🗣 Commented on [#5214](https://github.com/rhinstaller/anaconda/pull/5214#issuecomment-1740011338) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1739996100) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#466](https://github.com/UIUCLibrary/Speedwagon/pull/466#issuecomment-1739912198) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +9. 🗣 Commented on [#20900](https://github.com/spyder-ide/spyder/pull/20900#issuecomment-1739909335) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#746](https://github.com/scilus/scilpy/pull/746#issuecomment-1739888681) in [scilus/scilpy](https://github.com/scilus/scilpy) From 4c232b7999bcb3a922341e3fe963455360743b2d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Sep 2023 14:13:27 +0000 Subject: [PATCH 0160/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index af18522e..10eaa6d8 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#115](https://github.com/MDAnalysis/mdacli/pull/115#issuecomment-1740717090) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -2. 🗣 Commented on [#2830](https://github.com/dipy/dipy/pull/2830#issuecomment-1740659877) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#739](https://github.com/StingraySoftware/stingray/pull/739#issuecomment-1740649237) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -4. 🗣 Commented on [#48](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/48#issuecomment-1740467665) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) -5. 🗣 Commented on [#368](https://github.com/payu-org/payu/pull/368#issuecomment-1740153743) in [payu-org/payu](https://github.com/payu-org/payu) -6. 🗣 Commented on [#5214](https://github.com/rhinstaller/anaconda/pull/5214#issuecomment-1740011338) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1739996100) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#466](https://github.com/UIUCLibrary/Speedwagon/pull/466#issuecomment-1739912198) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -9. 🗣 Commented on [#20900](https://github.com/spyder-ide/spyder/pull/20900#issuecomment-1739909335) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#746](https://github.com/scilus/scilpy/pull/746#issuecomment-1739888681) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#370](https://github.com/nipreps/smriprep/pull/370#issuecomment-1740961797) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +2. 🗣 Commented on [#4304](https://github.com/MDAnalysis/mdanalysis/pull/4304#issuecomment-1740953939) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#569](https://github.com/OpenFreeEnergy/openfe/pull/569#issuecomment-1740943857) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#32](https://github.com/eastgenomics/eris/pull/32#issuecomment-1740932599) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#126](https://github.com/eastgenomics/dias_batch_running/pull/126#issuecomment-1740929976) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#4302](https://github.com/MDAnalysis/mdanalysis/pull/4302#issuecomment-1740925039) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#115](https://github.com/MDAnalysis/mdacli/pull/115#issuecomment-1740717090) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +8. 🗣 Commented on [#2830](https://github.com/dipy/dipy/pull/2830#issuecomment-1740659877) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#739](https://github.com/StingraySoftware/stingray/pull/739#issuecomment-1740649237) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +10. 🗣 Commented on [#48](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/48#issuecomment-1740467665) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) From 12ee97102856afb18d0d1289de6f0849857580cd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Sep 2023 14:37:28 +0000 Subject: [PATCH 0161/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 10eaa6d8..bf72a318 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#370](https://github.com/nipreps/smriprep/pull/370#issuecomment-1740961797) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -2. 🗣 Commented on [#4304](https://github.com/MDAnalysis/mdanalysis/pull/4304#issuecomment-1740953939) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#569](https://github.com/OpenFreeEnergy/openfe/pull/569#issuecomment-1740943857) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#32](https://github.com/eastgenomics/eris/pull/32#issuecomment-1740932599) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#126](https://github.com/eastgenomics/dias_batch_running/pull/126#issuecomment-1740929976) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#4302](https://github.com/MDAnalysis/mdanalysis/pull/4302#issuecomment-1740925039) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#115](https://github.com/MDAnalysis/mdacli/pull/115#issuecomment-1740717090) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -8. 🗣 Commented on [#2830](https://github.com/dipy/dipy/pull/2830#issuecomment-1740659877) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#739](https://github.com/StingraySoftware/stingray/pull/739#issuecomment-1740649237) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -10. 🗣 Commented on [#48](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/48#issuecomment-1740467665) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) +1. 🗣 Commented on [#737](https://github.com/minerllabs/minerl/pull/737#issuecomment-1740988286) in [minerllabs/minerl](https://github.com/minerllabs/minerl) +2. 🗣 Commented on [#370](https://github.com/nipreps/smriprep/pull/370#issuecomment-1740961797) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +3. 🗣 Commented on [#4304](https://github.com/MDAnalysis/mdanalysis/pull/4304#issuecomment-1740953939) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#569](https://github.com/OpenFreeEnergy/openfe/pull/569#issuecomment-1740943857) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#32](https://github.com/eastgenomics/eris/pull/32#issuecomment-1740932599) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#126](https://github.com/eastgenomics/dias_batch_running/pull/126#issuecomment-1740929976) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#4302](https://github.com/MDAnalysis/mdanalysis/pull/4302#issuecomment-1740925039) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#115](https://github.com/MDAnalysis/mdacli/pull/115#issuecomment-1740717090) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +9. 🗣 Commented on [#2830](https://github.com/dipy/dipy/pull/2830#issuecomment-1740659877) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#739](https://github.com/StingraySoftware/stingray/pull/739#issuecomment-1740649237) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) From 48ff3632ba4805ca65d178b764398fa5807ed079 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Sep 2023 15:16:35 +0000 Subject: [PATCH 0162/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bf72a318..f73e199a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#737](https://github.com/minerllabs/minerl/pull/737#issuecomment-1740988286) in [minerllabs/minerl](https://github.com/minerllabs/minerl) -2. 🗣 Commented on [#370](https://github.com/nipreps/smriprep/pull/370#issuecomment-1740961797) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -3. 🗣 Commented on [#4304](https://github.com/MDAnalysis/mdanalysis/pull/4304#issuecomment-1740953939) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#569](https://github.com/OpenFreeEnergy/openfe/pull/569#issuecomment-1740943857) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#32](https://github.com/eastgenomics/eris/pull/32#issuecomment-1740932599) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#126](https://github.com/eastgenomics/dias_batch_running/pull/126#issuecomment-1740929976) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#4302](https://github.com/MDAnalysis/mdanalysis/pull/4302#issuecomment-1740925039) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#115](https://github.com/MDAnalysis/mdacli/pull/115#issuecomment-1740717090) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -9. 🗣 Commented on [#2830](https://github.com/dipy/dipy/pull/2830#issuecomment-1740659877) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#739](https://github.com/StingraySoftware/stingray/pull/739#issuecomment-1740649237) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +1. 🗣 Commented on [#45](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/45#issuecomment-1741050941) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) +2. 🗣 Commented on [#1077](https://github.com/aimclub/FEDOT/pull/1077#issuecomment-1741004638) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#737](https://github.com/minerllabs/minerl/pull/737#issuecomment-1740988286) in [minerllabs/minerl](https://github.com/minerllabs/minerl) +4. 🗣 Commented on [#370](https://github.com/nipreps/smriprep/pull/370#issuecomment-1740961797) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +5. 🗣 Commented on [#4304](https://github.com/MDAnalysis/mdanalysis/pull/4304#issuecomment-1740953939) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#569](https://github.com/OpenFreeEnergy/openfe/pull/569#issuecomment-1740943857) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#32](https://github.com/eastgenomics/eris/pull/32#issuecomment-1740932599) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#126](https://github.com/eastgenomics/dias_batch_running/pull/126#issuecomment-1740929976) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#4302](https://github.com/MDAnalysis/mdanalysis/pull/4302#issuecomment-1740925039) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#115](https://github.com/MDAnalysis/mdacli/pull/115#issuecomment-1740717090) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) From 82d7bed341e1aac7319bea5f9afb2096c4065c59 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Sep 2023 16:20:34 +0000 Subject: [PATCH 0163/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f73e199a..e1990e25 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#45](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/45#issuecomment-1741050941) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) -2. 🗣 Commented on [#1077](https://github.com/aimclub/FEDOT/pull/1077#issuecomment-1741004638) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#737](https://github.com/minerllabs/minerl/pull/737#issuecomment-1740988286) in [minerllabs/minerl](https://github.com/minerllabs/minerl) -4. 🗣 Commented on [#370](https://github.com/nipreps/smriprep/pull/370#issuecomment-1740961797) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -5. 🗣 Commented on [#4304](https://github.com/MDAnalysis/mdanalysis/pull/4304#issuecomment-1740953939) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#569](https://github.com/OpenFreeEnergy/openfe/pull/569#issuecomment-1740943857) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#32](https://github.com/eastgenomics/eris/pull/32#issuecomment-1740932599) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#126](https://github.com/eastgenomics/dias_batch_running/pull/126#issuecomment-1740929976) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#4302](https://github.com/MDAnalysis/mdanalysis/pull/4302#issuecomment-1740925039) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#115](https://github.com/MDAnalysis/mdacli/pull/115#issuecomment-1740717090) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +1. 🗣 Commented on [#4305](https://github.com/MDAnalysis/mdanalysis/pull/4305#issuecomment-1741096215) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#45](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/45#issuecomment-1741050941) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) +3. 🗣 Commented on [#1077](https://github.com/aimclub/FEDOT/pull/1077#issuecomment-1741004638) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#737](https://github.com/minerllabs/minerl/pull/737#issuecomment-1740988286) in [minerllabs/minerl](https://github.com/minerllabs/minerl) +5. 🗣 Commented on [#370](https://github.com/nipreps/smriprep/pull/370#issuecomment-1740961797) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +6. 🗣 Commented on [#4304](https://github.com/MDAnalysis/mdanalysis/pull/4304#issuecomment-1740953939) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#569](https://github.com/OpenFreeEnergy/openfe/pull/569#issuecomment-1740943857) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#32](https://github.com/eastgenomics/eris/pull/32#issuecomment-1740932599) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#126](https://github.com/eastgenomics/dias_batch_running/pull/126#issuecomment-1740929976) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#4302](https://github.com/MDAnalysis/mdanalysis/pull/4302#issuecomment-1740925039) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 77376bc79bb04b04efee7175a85c9ac22d4db80b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Sep 2023 19:37:08 +0000 Subject: [PATCH 0164/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e1990e25..862058e8 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4305](https://github.com/MDAnalysis/mdanalysis/pull/4305#issuecomment-1741096215) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#45](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/45#issuecomment-1741050941) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) -3. 🗣 Commented on [#1077](https://github.com/aimclub/FEDOT/pull/1077#issuecomment-1741004638) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#737](https://github.com/minerllabs/minerl/pull/737#issuecomment-1740988286) in [minerllabs/minerl](https://github.com/minerllabs/minerl) -5. 🗣 Commented on [#370](https://github.com/nipreps/smriprep/pull/370#issuecomment-1740961797) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -6. 🗣 Commented on [#4304](https://github.com/MDAnalysis/mdanalysis/pull/4304#issuecomment-1740953939) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#569](https://github.com/OpenFreeEnergy/openfe/pull/569#issuecomment-1740943857) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#32](https://github.com/eastgenomics/eris/pull/32#issuecomment-1740932599) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#126](https://github.com/eastgenomics/dias_batch_running/pull/126#issuecomment-1740929976) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#4302](https://github.com/MDAnalysis/mdanalysis/pull/4302#issuecomment-1740925039) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1741380960) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#4305](https://github.com/MDAnalysis/mdanalysis/pull/4305#issuecomment-1741096215) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#45](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/45#issuecomment-1741050941) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) +4. 🗣 Commented on [#1077](https://github.com/aimclub/FEDOT/pull/1077#issuecomment-1741004638) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#737](https://github.com/minerllabs/minerl/pull/737#issuecomment-1740988286) in [minerllabs/minerl](https://github.com/minerllabs/minerl) +6. 🗣 Commented on [#370](https://github.com/nipreps/smriprep/pull/370#issuecomment-1740961797) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +7. 🗣 Commented on [#4304](https://github.com/MDAnalysis/mdanalysis/pull/4304#issuecomment-1740953939) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#569](https://github.com/OpenFreeEnergy/openfe/pull/569#issuecomment-1740943857) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#32](https://github.com/eastgenomics/eris/pull/32#issuecomment-1740932599) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#126](https://github.com/eastgenomics/dias_batch_running/pull/126#issuecomment-1740929976) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From 6a6715fc6f10febe4b6029194effdf017775b51c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Sep 2023 21:13:24 +0000 Subject: [PATCH 0165/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 862058e8..f705e3a5 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1741380960) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#4305](https://github.com/MDAnalysis/mdanalysis/pull/4305#issuecomment-1741096215) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#45](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/45#issuecomment-1741050941) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) -4. 🗣 Commented on [#1077](https://github.com/aimclub/FEDOT/pull/1077#issuecomment-1741004638) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#737](https://github.com/minerllabs/minerl/pull/737#issuecomment-1740988286) in [minerllabs/minerl](https://github.com/minerllabs/minerl) -6. 🗣 Commented on [#370](https://github.com/nipreps/smriprep/pull/370#issuecomment-1740961797) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -7. 🗣 Commented on [#4304](https://github.com/MDAnalysis/mdanalysis/pull/4304#issuecomment-1740953939) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#569](https://github.com/OpenFreeEnergy/openfe/pull/569#issuecomment-1740943857) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#32](https://github.com/eastgenomics/eris/pull/32#issuecomment-1740932599) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#126](https://github.com/eastgenomics/dias_batch_running/pull/126#issuecomment-1740929976) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#3064](https://github.com/nipreps/fmriprep/pull/3064#issuecomment-1741460037) in [nipreps/fmriprep](https://github.com/nipreps/fmriprep) +2. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1741380960) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#4305](https://github.com/MDAnalysis/mdanalysis/pull/4305#issuecomment-1741096215) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#45](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/45#issuecomment-1741050941) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) +5. 🗣 Commented on [#1077](https://github.com/aimclub/FEDOT/pull/1077#issuecomment-1741004638) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#737](https://github.com/minerllabs/minerl/pull/737#issuecomment-1740988286) in [minerllabs/minerl](https://github.com/minerllabs/minerl) +7. 🗣 Commented on [#370](https://github.com/nipreps/smriprep/pull/370#issuecomment-1740961797) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +8. 🗣 Commented on [#4304](https://github.com/MDAnalysis/mdanalysis/pull/4304#issuecomment-1740953939) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#569](https://github.com/OpenFreeEnergy/openfe/pull/569#issuecomment-1740943857) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#32](https://github.com/eastgenomics/eris/pull/32#issuecomment-1740932599) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 88c87fe9e116f62cef4659aedeacc66a49c2b9ee Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Sep 2023 21:37:03 +0000 Subject: [PATCH 0166/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f705e3a5..c71dd342 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#3064](https://github.com/nipreps/fmriprep/pull/3064#issuecomment-1741460037) in [nipreps/fmriprep](https://github.com/nipreps/fmriprep) -2. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1741380960) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#4305](https://github.com/MDAnalysis/mdanalysis/pull/4305#issuecomment-1741096215) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#45](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/45#issuecomment-1741050941) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) -5. 🗣 Commented on [#1077](https://github.com/aimclub/FEDOT/pull/1077#issuecomment-1741004638) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#737](https://github.com/minerllabs/minerl/pull/737#issuecomment-1740988286) in [minerllabs/minerl](https://github.com/minerllabs/minerl) -7. 🗣 Commented on [#370](https://github.com/nipreps/smriprep/pull/370#issuecomment-1740961797) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -8. 🗣 Commented on [#4304](https://github.com/MDAnalysis/mdanalysis/pull/4304#issuecomment-1740953939) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#569](https://github.com/OpenFreeEnergy/openfe/pull/569#issuecomment-1740943857) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#32](https://github.com/eastgenomics/eris/pull/32#issuecomment-1740932599) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#2884](https://github.com/dipy/dipy/pull/2884#issuecomment-1741496718) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#3064](https://github.com/nipreps/fmriprep/pull/3064#issuecomment-1741460037) in [nipreps/fmriprep](https://github.com/nipreps/fmriprep) +3. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1741380960) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#4305](https://github.com/MDAnalysis/mdanalysis/pull/4305#issuecomment-1741096215) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#45](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/45#issuecomment-1741050941) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) +6. 🗣 Commented on [#1077](https://github.com/aimclub/FEDOT/pull/1077#issuecomment-1741004638) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#737](https://github.com/minerllabs/minerl/pull/737#issuecomment-1740988286) in [minerllabs/minerl](https://github.com/minerllabs/minerl) +8. 🗣 Commented on [#370](https://github.com/nipreps/smriprep/pull/370#issuecomment-1740961797) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +9. 🗣 Commented on [#4304](https://github.com/MDAnalysis/mdanalysis/pull/4304#issuecomment-1740953939) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#569](https://github.com/OpenFreeEnergy/openfe/pull/569#issuecomment-1740943857) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From b3b4d5c0baaf85a1ee06b9abf6720f2de05b89d7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Sep 2023 22:37:13 +0000 Subject: [PATCH 0167/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c71dd342..445e8b46 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2884](https://github.com/dipy/dipy/pull/2884#issuecomment-1741496718) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#3064](https://github.com/nipreps/fmriprep/pull/3064#issuecomment-1741460037) in [nipreps/fmriprep](https://github.com/nipreps/fmriprep) -3. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1741380960) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#4305](https://github.com/MDAnalysis/mdanalysis/pull/4305#issuecomment-1741096215) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#45](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/45#issuecomment-1741050941) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) -6. 🗣 Commented on [#1077](https://github.com/aimclub/FEDOT/pull/1077#issuecomment-1741004638) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#737](https://github.com/minerllabs/minerl/pull/737#issuecomment-1740988286) in [minerllabs/minerl](https://github.com/minerllabs/minerl) -8. 🗣 Commented on [#370](https://github.com/nipreps/smriprep/pull/370#issuecomment-1740961797) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -9. 🗣 Commented on [#4304](https://github.com/MDAnalysis/mdanalysis/pull/4304#issuecomment-1740953939) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#569](https://github.com/OpenFreeEnergy/openfe/pull/569#issuecomment-1740943857) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741544845) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741543037) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#2884](https://github.com/dipy/dipy/pull/2884#issuecomment-1741496718) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#3064](https://github.com/nipreps/fmriprep/pull/3064#issuecomment-1741460037) in [nipreps/fmriprep](https://github.com/nipreps/fmriprep) +5. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1741380960) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#4305](https://github.com/MDAnalysis/mdanalysis/pull/4305#issuecomment-1741096215) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#45](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/45#issuecomment-1741050941) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) +8. 🗣 Commented on [#1077](https://github.com/aimclub/FEDOT/pull/1077#issuecomment-1741004638) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#737](https://github.com/minerllabs/minerl/pull/737#issuecomment-1740988286) in [minerllabs/minerl](https://github.com/minerllabs/minerl) +10. 🗣 Commented on [#370](https://github.com/nipreps/smriprep/pull/370#issuecomment-1740961797) in [nipreps/smriprep](https://github.com/nipreps/smriprep) From f7daf390e227c3e61387c36a7d98a820e2ec947b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Sep 2023 23:15:30 +0000 Subject: [PATCH 0168/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 445e8b46..06f35fea 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741544845) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741543037) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#2884](https://github.com/dipy/dipy/pull/2884#issuecomment-1741496718) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#3064](https://github.com/nipreps/fmriprep/pull/3064#issuecomment-1741460037) in [nipreps/fmriprep](https://github.com/nipreps/fmriprep) -5. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1741380960) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#4305](https://github.com/MDAnalysis/mdanalysis/pull/4305#issuecomment-1741096215) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#45](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/45#issuecomment-1741050941) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) -8. 🗣 Commented on [#1077](https://github.com/aimclub/FEDOT/pull/1077#issuecomment-1741004638) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#737](https://github.com/minerllabs/minerl/pull/737#issuecomment-1740988286) in [minerllabs/minerl](https://github.com/minerllabs/minerl) -10. 🗣 Commented on [#370](https://github.com/nipreps/smriprep/pull/370#issuecomment-1740961797) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +1. 🗣 Commented on [#15](https://github.com/kkuba91/turnament_organizer/pull/15#issuecomment-1741562513) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +2. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741544845) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741543037) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#2884](https://github.com/dipy/dipy/pull/2884#issuecomment-1741496718) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#3064](https://github.com/nipreps/fmriprep/pull/3064#issuecomment-1741460037) in [nipreps/fmriprep](https://github.com/nipreps/fmriprep) +6. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1741380960) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#4305](https://github.com/MDAnalysis/mdanalysis/pull/4305#issuecomment-1741096215) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#45](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/45#issuecomment-1741050941) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) +9. 🗣 Commented on [#1077](https://github.com/aimclub/FEDOT/pull/1077#issuecomment-1741004638) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#737](https://github.com/minerllabs/minerl/pull/737#issuecomment-1740988286) in [minerllabs/minerl](https://github.com/minerllabs/minerl) From d80bd29274024c4d6cc57cb2a16b1e0d157889a4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Sep 2023 06:19:23 +0000 Subject: [PATCH 0169/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 06f35fea..ad78d940 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#15](https://github.com/kkuba91/turnament_organizer/pull/15#issuecomment-1741562513) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -2. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741544845) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741543037) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#2884](https://github.com/dipy/dipy/pull/2884#issuecomment-1741496718) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#3064](https://github.com/nipreps/fmriprep/pull/3064#issuecomment-1741460037) in [nipreps/fmriprep](https://github.com/nipreps/fmriprep) -6. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1741380960) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#4305](https://github.com/MDAnalysis/mdanalysis/pull/4305#issuecomment-1741096215) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#45](https://github.com/ITMO-NSS-team/MetaFEDOT/pull/45#issuecomment-1741050941) in [ITMO-NSS-team/MetaFEDOT](https://github.com/ITMO-NSS-team/MetaFEDOT) -9. 🗣 Commented on [#1077](https://github.com/aimclub/FEDOT/pull/1077#issuecomment-1741004638) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#737](https://github.com/minerllabs/minerl/pull/737#issuecomment-1740988286) in [minerllabs/minerl](https://github.com/minerllabs/minerl) +1. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +2. 🗣 Commented on [#24](https://github.com/VCTLabs/redis-ipc-py/pull/24#issuecomment-1741690778) in [VCTLabs/redis-ipc-py](https://github.com/VCTLabs/redis-ipc-py) +3. 🗣 Commented on [#896](https://github.com/WesternFriend/WF-website/pull/896#issuecomment-1741690276) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +4. 🗣 Commented on [#15](https://github.com/kkuba91/turnament_organizer/pull/15#issuecomment-1741562513) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +5. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741544845) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741543037) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#2884](https://github.com/dipy/dipy/pull/2884#issuecomment-1741496718) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#3064](https://github.com/nipreps/fmriprep/pull/3064#issuecomment-1741460037) in [nipreps/fmriprep](https://github.com/nipreps/fmriprep) +9. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1741380960) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#4305](https://github.com/MDAnalysis/mdanalysis/pull/4305#issuecomment-1741096215) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 32440b2a2a0a159127f672696fbb3c62e30ff0d6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Sep 2023 15:37:15 +0000 Subject: [PATCH 0170/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ad78d940..46c6eb82 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -2. 🗣 Commented on [#24](https://github.com/VCTLabs/redis-ipc-py/pull/24#issuecomment-1741690778) in [VCTLabs/redis-ipc-py](https://github.com/VCTLabs/redis-ipc-py) -3. 🗣 Commented on [#896](https://github.com/WesternFriend/WF-website/pull/896#issuecomment-1741690276) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -4. 🗣 Commented on [#15](https://github.com/kkuba91/turnament_organizer/pull/15#issuecomment-1741562513) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -5. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741544845) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741543037) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#2884](https://github.com/dipy/dipy/pull/2884#issuecomment-1741496718) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#3064](https://github.com/nipreps/fmriprep/pull/3064#issuecomment-1741460037) in [nipreps/fmriprep](https://github.com/nipreps/fmriprep) -9. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1741380960) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#4305](https://github.com/MDAnalysis/mdanalysis/pull/4305#issuecomment-1741096215) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +3. 🗣 Commented on [#24](https://github.com/VCTLabs/redis-ipc-py/pull/24#issuecomment-1741690778) in [VCTLabs/redis-ipc-py](https://github.com/VCTLabs/redis-ipc-py) +4. 🗣 Commented on [#896](https://github.com/WesternFriend/WF-website/pull/896#issuecomment-1741690276) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +5. 🗣 Commented on [#15](https://github.com/kkuba91/turnament_organizer/pull/15#issuecomment-1741562513) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +6. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741544845) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741543037) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#2884](https://github.com/dipy/dipy/pull/2884#issuecomment-1741496718) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#3064](https://github.com/nipreps/fmriprep/pull/3064#issuecomment-1741460037) in [nipreps/fmriprep](https://github.com/nipreps/fmriprep) +10. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1741380960) in [politeauthority/cver](https://github.com/politeauthority/cver) From 37fa724b2803c9987997eb5b6aaace4599801d54 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Sep 2023 16:18:25 +0000 Subject: [PATCH 0171/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 46c6eb82..0b24ee84 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -3. 🗣 Commented on [#24](https://github.com/VCTLabs/redis-ipc-py/pull/24#issuecomment-1741690778) in [VCTLabs/redis-ipc-py](https://github.com/VCTLabs/redis-ipc-py) -4. 🗣 Commented on [#896](https://github.com/WesternFriend/WF-website/pull/896#issuecomment-1741690276) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -5. 🗣 Commented on [#15](https://github.com/kkuba91/turnament_organizer/pull/15#issuecomment-1741562513) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -6. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741544845) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741543037) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#2884](https://github.com/dipy/dipy/pull/2884#issuecomment-1741496718) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#3064](https://github.com/nipreps/fmriprep/pull/3064#issuecomment-1741460037) in [nipreps/fmriprep](https://github.com/nipreps/fmriprep) -10. 🗣 Commented on [#70](https://github.com/politeauthority/cver/pull/70#issuecomment-1741380960) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +4. 🗣 Commented on [#24](https://github.com/VCTLabs/redis-ipc-py/pull/24#issuecomment-1741690778) in [VCTLabs/redis-ipc-py](https://github.com/VCTLabs/redis-ipc-py) +5. 🗣 Commented on [#896](https://github.com/WesternFriend/WF-website/pull/896#issuecomment-1741690276) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +6. 🗣 Commented on [#15](https://github.com/kkuba91/turnament_organizer/pull/15#issuecomment-1741562513) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +7. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741544845) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741543037) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#2884](https://github.com/dipy/dipy/pull/2884#issuecomment-1741496718) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#3064](https://github.com/nipreps/fmriprep/pull/3064#issuecomment-1741460037) in [nipreps/fmriprep](https://github.com/nipreps/fmriprep) From b88f1453bbbc357ed29c2a729973a479170de115 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Sep 2023 16:37:19 +0000 Subject: [PATCH 0172/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0b24ee84..c9bf8c8f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -4. 🗣 Commented on [#24](https://github.com/VCTLabs/redis-ipc-py/pull/24#issuecomment-1741690778) in [VCTLabs/redis-ipc-py](https://github.com/VCTLabs/redis-ipc-py) -5. 🗣 Commented on [#896](https://github.com/WesternFriend/WF-website/pull/896#issuecomment-1741690276) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -6. 🗣 Commented on [#15](https://github.com/kkuba91/turnament_organizer/pull/15#issuecomment-1741562513) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -7. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741544845) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741543037) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#2884](https://github.com/dipy/dipy/pull/2884#issuecomment-1741496718) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#3064](https://github.com/nipreps/fmriprep/pull/3064#issuecomment-1741460037) in [nipreps/fmriprep](https://github.com/nipreps/fmriprep) +1. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +2. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +5. 🗣 Commented on [#24](https://github.com/VCTLabs/redis-ipc-py/pull/24#issuecomment-1741690778) in [VCTLabs/redis-ipc-py](https://github.com/VCTLabs/redis-ipc-py) +6. 🗣 Commented on [#896](https://github.com/WesternFriend/WF-website/pull/896#issuecomment-1741690276) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +7. 🗣 Commented on [#15](https://github.com/kkuba91/turnament_organizer/pull/15#issuecomment-1741562513) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +8. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741544845) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741543037) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#2884](https://github.com/dipy/dipy/pull/2884#issuecomment-1741496718) in [dipy/dipy](https://github.com/dipy/dipy) From b7c92fd818c56ddc594a94e649e3c454760ed7bc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Sep 2023 17:37:19 +0000 Subject: [PATCH 0173/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c9bf8c8f..a7505558 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -2. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -5. 🗣 Commented on [#24](https://github.com/VCTLabs/redis-ipc-py/pull/24#issuecomment-1741690778) in [VCTLabs/redis-ipc-py](https://github.com/VCTLabs/redis-ipc-py) -6. 🗣 Commented on [#896](https://github.com/WesternFriend/WF-website/pull/896#issuecomment-1741690276) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -7. 🗣 Commented on [#15](https://github.com/kkuba91/turnament_organizer/pull/15#issuecomment-1741562513) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -8. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741544845) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741543037) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#2884](https://github.com/dipy/dipy/pull/2884#issuecomment-1741496718) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +3. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +6. 🗣 Commented on [#24](https://github.com/VCTLabs/redis-ipc-py/pull/24#issuecomment-1741690778) in [VCTLabs/redis-ipc-py](https://github.com/VCTLabs/redis-ipc-py) +7. 🗣 Commented on [#896](https://github.com/WesternFriend/WF-website/pull/896#issuecomment-1741690276) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +8. 🗣 Commented on [#15](https://github.com/kkuba91/turnament_organizer/pull/15#issuecomment-1741562513) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +9. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741544845) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741543037) in [politeauthority/cver](https://github.com/politeauthority/cver) From 600c089285fc01cd00a12057df17d40955c38cc3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Sep 2023 23:14:10 +0000 Subject: [PATCH 0174/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a7505558..6aaaa99d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -3. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -6. 🗣 Commented on [#24](https://github.com/VCTLabs/redis-ipc-py/pull/24#issuecomment-1741690778) in [VCTLabs/redis-ipc-py](https://github.com/VCTLabs/redis-ipc-py) -7. 🗣 Commented on [#896](https://github.com/WesternFriend/WF-website/pull/896#issuecomment-1741690276) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -8. 🗣 Commented on [#15](https://github.com/kkuba91/turnament_organizer/pull/15#issuecomment-1741562513) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -9. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741544845) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741543037) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#60](https://github.com/Mte90/GH-License/pull/60#issuecomment-1741877550) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +2. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +4. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +7. 🗣 Commented on [#24](https://github.com/VCTLabs/redis-ipc-py/pull/24#issuecomment-1741690778) in [VCTLabs/redis-ipc-py](https://github.com/VCTLabs/redis-ipc-py) +8. 🗣 Commented on [#896](https://github.com/WesternFriend/WF-website/pull/896#issuecomment-1741690276) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +9. 🗣 Commented on [#15](https://github.com/kkuba91/turnament_organizer/pull/15#issuecomment-1741562513) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +10. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741544845) in [politeauthority/cver](https://github.com/politeauthority/cver) From 51d37fbce28987ef493ce379ca35f3f5239ae52e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 05:37:25 +0000 Subject: [PATCH 0175/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6aaaa99d..6183fb80 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#60](https://github.com/Mte90/GH-License/pull/60#issuecomment-1741877550) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -2. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -4. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -7. 🗣 Commented on [#24](https://github.com/VCTLabs/redis-ipc-py/pull/24#issuecomment-1741690778) in [VCTLabs/redis-ipc-py](https://github.com/VCTLabs/redis-ipc-py) -8. 🗣 Commented on [#896](https://github.com/WesternFriend/WF-website/pull/896#issuecomment-1741690276) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -9. 🗣 Commented on [#15](https://github.com/kkuba91/turnament_organizer/pull/15#issuecomment-1741562513) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -10. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741544845) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#61](https://github.com/Mte90/GH-License/pull/61#issuecomment-1741964732) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +2. 🗣 Commented on [#60](https://github.com/Mte90/GH-License/pull/60#issuecomment-1741877550) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +3. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +5. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +8. 🗣 Commented on [#24](https://github.com/VCTLabs/redis-ipc-py/pull/24#issuecomment-1741690778) in [VCTLabs/redis-ipc-py](https://github.com/VCTLabs/redis-ipc-py) +9. 🗣 Commented on [#896](https://github.com/WesternFriend/WF-website/pull/896#issuecomment-1741690276) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +10. 🗣 Commented on [#15](https://github.com/kkuba91/turnament_organizer/pull/15#issuecomment-1741562513) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) From 0ee1b7c6bd3bcbb4a21f3697c1a3f818497f89ef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 07:14:49 +0000 Subject: [PATCH 0176/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6183fb80..b58f72ec 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#61](https://github.com/Mte90/GH-License/pull/61#issuecomment-1741964732) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -2. 🗣 Commented on [#60](https://github.com/Mte90/GH-License/pull/60#issuecomment-1741877550) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -3. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -5. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -8. 🗣 Commented on [#24](https://github.com/VCTLabs/redis-ipc-py/pull/24#issuecomment-1741690778) in [VCTLabs/redis-ipc-py](https://github.com/VCTLabs/redis-ipc-py) -9. 🗣 Commented on [#896](https://github.com/WesternFriend/WF-website/pull/896#issuecomment-1741690276) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -10. 🗣 Commented on [#15](https://github.com/kkuba91/turnament_organizer/pull/15#issuecomment-1741562513) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +1. 🗣 Commented on [#491](https://github.com/spatialaudio/python-sounddevice/pull/491#issuecomment-1741984817) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +2. 🗣 Commented on [#61](https://github.com/Mte90/GH-License/pull/61#issuecomment-1741964732) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +3. 🗣 Commented on [#60](https://github.com/Mte90/GH-License/pull/60#issuecomment-1741877550) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +4. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +6. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +9. 🗣 Commented on [#24](https://github.com/VCTLabs/redis-ipc-py/pull/24#issuecomment-1741690778) in [VCTLabs/redis-ipc-py](https://github.com/VCTLabs/redis-ipc-py) +10. 🗣 Commented on [#896](https://github.com/WesternFriend/WF-website/pull/896#issuecomment-1741690276) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) From fc40dd5fbea18e9210a5e2d287110a5ff7778533 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 10:37:00 +0000 Subject: [PATCH 0177/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b58f72ec..6ab01f45 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#491](https://github.com/spatialaudio/python-sounddevice/pull/491#issuecomment-1741984817) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -2. 🗣 Commented on [#61](https://github.com/Mte90/GH-License/pull/61#issuecomment-1741964732) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -3. 🗣 Commented on [#60](https://github.com/Mte90/GH-License/pull/60#issuecomment-1741877550) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -4. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -6. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -9. 🗣 Commented on [#24](https://github.com/VCTLabs/redis-ipc-py/pull/24#issuecomment-1741690778) in [VCTLabs/redis-ipc-py](https://github.com/VCTLabs/redis-ipc-py) -10. 🗣 Commented on [#896](https://github.com/WesternFriend/WF-website/pull/896#issuecomment-1741690276) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +1. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/AirSim/pull/1#issuecomment-1742033662) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) +2. 🗣 Commented on [#491](https://github.com/spatialaudio/python-sounddevice/pull/491#issuecomment-1741984817) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +3. 🗣 Commented on [#61](https://github.com/Mte90/GH-License/pull/61#issuecomment-1741964732) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +4. 🗣 Commented on [#60](https://github.com/Mte90/GH-License/pull/60#issuecomment-1741877550) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +5. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +7. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +10. 🗣 Commented on [#24](https://github.com/VCTLabs/redis-ipc-py/pull/24#issuecomment-1741690778) in [VCTLabs/redis-ipc-py](https://github.com/VCTLabs/redis-ipc-py) From 2c993b6fdbbcb4acfb3e635891e92f4359b79753 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 12:28:40 +0000 Subject: [PATCH 0178/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6ab01f45..4f2b66e2 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/AirSim/pull/1#issuecomment-1742033662) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) -2. 🗣 Commented on [#491](https://github.com/spatialaudio/python-sounddevice/pull/491#issuecomment-1741984817) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -3. 🗣 Commented on [#61](https://github.com/Mte90/GH-License/pull/61#issuecomment-1741964732) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -4. 🗣 Commented on [#60](https://github.com/Mte90/GH-License/pull/60#issuecomment-1741877550) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -5. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -7. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -10. 🗣 Commented on [#24](https://github.com/VCTLabs/redis-ipc-py/pull/24#issuecomment-1741690778) in [VCTLabs/redis-ipc-py](https://github.com/VCTLabs/redis-ipc-py) +1. 🗣 Commented on [#34](https://github.com/Borda/pyDeprecate/pull/34#issuecomment-1742063171) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) +2. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/AirSim/pull/1#issuecomment-1742033662) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) +3. 🗣 Commented on [#491](https://github.com/spatialaudio/python-sounddevice/pull/491#issuecomment-1741984817) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +4. 🗣 Commented on [#61](https://github.com/Mte90/GH-License/pull/61#issuecomment-1741964732) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +5. 🗣 Commented on [#60](https://github.com/Mte90/GH-License/pull/60#issuecomment-1741877550) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +6. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +8. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) From c1a53abeb0e5cdc30d80bbea1442dae22ad44e4e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 12:50:23 +0000 Subject: [PATCH 0179/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4f2b66e2..d9cb422f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#34](https://github.com/Borda/pyDeprecate/pull/34#issuecomment-1742063171) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) -2. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/AirSim/pull/1#issuecomment-1742033662) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) -3. 🗣 Commented on [#491](https://github.com/spatialaudio/python-sounddevice/pull/491#issuecomment-1741984817) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -4. 🗣 Commented on [#61](https://github.com/Mte90/GH-License/pull/61#issuecomment-1741964732) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -5. 🗣 Commented on [#60](https://github.com/Mte90/GH-License/pull/60#issuecomment-1741877550) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -6. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -8. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#897](https://github.com/WesternFriend/WF-website/pull/897#issuecomment-1741691543) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +1. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/AirSim/pull/2#issuecomment-1742070256) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) +2. 🗣 Commented on [#34](https://github.com/Borda/pyDeprecate/pull/34#issuecomment-1742063171) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) +3. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/AirSim/pull/1#issuecomment-1742033662) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) +4. 🗣 Commented on [#491](https://github.com/spatialaudio/python-sounddevice/pull/491#issuecomment-1741984817) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +5. 🗣 Commented on [#61](https://github.com/Mte90/GH-License/pull/61#issuecomment-1741964732) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +6. 🗣 Commented on [#60](https://github.com/Mte90/GH-License/pull/60#issuecomment-1741877550) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +7. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +9. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) From acea00b572dd974c44ac0bd7325d5335574c9a7c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 16:37:37 +0000 Subject: [PATCH 0180/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d9cb422f..56692b5d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/AirSim/pull/2#issuecomment-1742070256) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) -2. 🗣 Commented on [#34](https://github.com/Borda/pyDeprecate/pull/34#issuecomment-1742063171) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) -3. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/AirSim/pull/1#issuecomment-1742033662) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) -4. 🗣 Commented on [#491](https://github.com/spatialaudio/python-sounddevice/pull/491#issuecomment-1741984817) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -5. 🗣 Commented on [#61](https://github.com/Mte90/GH-License/pull/61#issuecomment-1741964732) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -6. 🗣 Commented on [#60](https://github.com/Mte90/GH-License/pull/60#issuecomment-1741877550) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -7. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -9. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#72](https://github.com/politeauthority/cver/pull/72#issuecomment-1741790499) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#644](https://github.com/einsteinpy/einsteinpy/pull/644#issuecomment-1742133303) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +2. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/AirSim/pull/2#issuecomment-1742070256) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) +3. 🗣 Commented on [#34](https://github.com/Borda/pyDeprecate/pull/34#issuecomment-1742063171) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) +4. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/AirSim/pull/1#issuecomment-1742033662) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) +5. 🗣 Commented on [#491](https://github.com/spatialaudio/python-sounddevice/pull/491#issuecomment-1741984817) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +6. 🗣 Commented on [#61](https://github.com/Mte90/GH-License/pull/61#issuecomment-1741964732) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +7. 🗣 Commented on [#60](https://github.com/Mte90/GH-License/pull/60#issuecomment-1741877550) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +8. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +10. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) From 874f9b24f583154e932236c2b8a4fb25df056014 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 17:13:23 +0000 Subject: [PATCH 0181/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 56692b5d..4261811e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#644](https://github.com/einsteinpy/einsteinpy/pull/644#issuecomment-1742133303) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -2. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/AirSim/pull/2#issuecomment-1742070256) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) -3. 🗣 Commented on [#34](https://github.com/Borda/pyDeprecate/pull/34#issuecomment-1742063171) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) -4. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/AirSim/pull/1#issuecomment-1742033662) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) -5. 🗣 Commented on [#491](https://github.com/spatialaudio/python-sounddevice/pull/491#issuecomment-1741984817) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -6. 🗣 Commented on [#61](https://github.com/Mte90/GH-License/pull/61#issuecomment-1741964732) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -7. 🗣 Commented on [#60](https://github.com/Mte90/GH-License/pull/60#issuecomment-1741877550) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -8. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -10. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1741797370) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#645](https://github.com/einsteinpy/einsteinpy/pull/645#issuecomment-1742136450) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +2. 🗣 Commented on [#644](https://github.com/einsteinpy/einsteinpy/pull/644#issuecomment-1742133303) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +3. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/AirSim/pull/2#issuecomment-1742070256) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) +4. 🗣 Commented on [#34](https://github.com/Borda/pyDeprecate/pull/34#issuecomment-1742063171) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) +5. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/AirSim/pull/1#issuecomment-1742033662) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) +6. 🗣 Commented on [#491](https://github.com/spatialaudio/python-sounddevice/pull/491#issuecomment-1741984817) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +7. 🗣 Commented on [#61](https://github.com/Mte90/GH-License/pull/61#issuecomment-1741964732) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +8. 🗣 Commented on [#60](https://github.com/Mte90/GH-License/pull/60#issuecomment-1741877550) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +9. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) From c6413e04240b9601576e6f6659a7e785789221de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 21:13:28 +0000 Subject: [PATCH 0182/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4261811e..824dbd28 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#645](https://github.com/einsteinpy/einsteinpy/pull/645#issuecomment-1742136450) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -2. 🗣 Commented on [#644](https://github.com/einsteinpy/einsteinpy/pull/644#issuecomment-1742133303) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -3. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/AirSim/pull/2#issuecomment-1742070256) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) -4. 🗣 Commented on [#34](https://github.com/Borda/pyDeprecate/pull/34#issuecomment-1742063171) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) -5. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/AirSim/pull/1#issuecomment-1742033662) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) -6. 🗣 Commented on [#491](https://github.com/spatialaudio/python-sounddevice/pull/491#issuecomment-1741984817) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -7. 🗣 Commented on [#61](https://github.com/Mte90/GH-License/pull/61#issuecomment-1741964732) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -8. 🗣 Commented on [#60](https://github.com/Mte90/GH-License/pull/60#issuecomment-1741877550) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -9. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#632](https://github.com/SergeyPirogov/webdriver_manager/pull/632#issuecomment-1741808011) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +1. 🗣 Commented on [#74](https://github.com/athphane/userbot/pull/74#issuecomment-1742200545) in [athphane/userbot](https://github.com/athphane/userbot) +2. 🗣 Commented on [#645](https://github.com/einsteinpy/einsteinpy/pull/645#issuecomment-1742136450) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +3. 🗣 Commented on [#644](https://github.com/einsteinpy/einsteinpy/pull/644#issuecomment-1742133303) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +4. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/AirSim/pull/2#issuecomment-1742070256) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) +5. 🗣 Commented on [#34](https://github.com/Borda/pyDeprecate/pull/34#issuecomment-1742063171) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) +6. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/AirSim/pull/1#issuecomment-1742033662) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) +7. 🗣 Commented on [#491](https://github.com/spatialaudio/python-sounddevice/pull/491#issuecomment-1741984817) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +8. 🗣 Commented on [#61](https://github.com/Mte90/GH-License/pull/61#issuecomment-1741964732) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +9. 🗣 Commented on [#60](https://github.com/Mte90/GH-License/pull/60#issuecomment-1741877550) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +10. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) From 5d0d0926b19e29889b43bac0a321399433236c7d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 05:14:43 +0000 Subject: [PATCH 0183/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 824dbd28..1054f615 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#74](https://github.com/athphane/userbot/pull/74#issuecomment-1742200545) in [athphane/userbot](https://github.com/athphane/userbot) -2. 🗣 Commented on [#645](https://github.com/einsteinpy/einsteinpy/pull/645#issuecomment-1742136450) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -3. 🗣 Commented on [#644](https://github.com/einsteinpy/einsteinpy/pull/644#issuecomment-1742133303) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -4. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/AirSim/pull/2#issuecomment-1742070256) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) -5. 🗣 Commented on [#34](https://github.com/Borda/pyDeprecate/pull/34#issuecomment-1742063171) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) -6. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/AirSim/pull/1#issuecomment-1742033662) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) -7. 🗣 Commented on [#491](https://github.com/spatialaudio/python-sounddevice/pull/491#issuecomment-1741984817) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -8. 🗣 Commented on [#61](https://github.com/Mte90/GH-License/pull/61#issuecomment-1741964732) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -9. 🗣 Commented on [#60](https://github.com/Mte90/GH-License/pull/60#issuecomment-1741877550) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -10. 🗣 Commented on [#73](https://github.com/politeauthority/cver/pull/73#issuecomment-1741821326) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#302](https://github.com/DeMarcoLab/fibsem/pull/302#issuecomment-1742401329) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +2. 🗣 Commented on [#301](https://github.com/DeMarcoLab/fibsem/pull/301#issuecomment-1742392045) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +3. 🗣 Commented on [#74](https://github.com/athphane/userbot/pull/74#issuecomment-1742200545) in [athphane/userbot](https://github.com/athphane/userbot) +4. 🗣 Commented on [#645](https://github.com/einsteinpy/einsteinpy/pull/645#issuecomment-1742136450) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +5. 🗣 Commented on [#644](https://github.com/einsteinpy/einsteinpy/pull/644#issuecomment-1742133303) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +6. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/AirSim/pull/2#issuecomment-1742070256) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) +7. 🗣 Commented on [#34](https://github.com/Borda/pyDeprecate/pull/34#issuecomment-1742063171) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) +8. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/AirSim/pull/1#issuecomment-1742033662) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) +9. 🗣 Commented on [#491](https://github.com/spatialaudio/python-sounddevice/pull/491#issuecomment-1741984817) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +10. 🗣 Commented on [#61](https://github.com/Mte90/GH-License/pull/61#issuecomment-1741964732) in [Mte90/GH-License](https://github.com/Mte90/GH-License) From 898b8b4542cf702cc71c3e2084e583c80fabebb8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 08:20:42 +0000 Subject: [PATCH 0184/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1054f615..d03b256f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#302](https://github.com/DeMarcoLab/fibsem/pull/302#issuecomment-1742401329) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -2. 🗣 Commented on [#301](https://github.com/DeMarcoLab/fibsem/pull/301#issuecomment-1742392045) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -3. 🗣 Commented on [#74](https://github.com/athphane/userbot/pull/74#issuecomment-1742200545) in [athphane/userbot](https://github.com/athphane/userbot) -4. 🗣 Commented on [#645](https://github.com/einsteinpy/einsteinpy/pull/645#issuecomment-1742136450) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -5. 🗣 Commented on [#644](https://github.com/einsteinpy/einsteinpy/pull/644#issuecomment-1742133303) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -6. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/AirSim/pull/2#issuecomment-1742070256) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) -7. 🗣 Commented on [#34](https://github.com/Borda/pyDeprecate/pull/34#issuecomment-1742063171) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) -8. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/AirSim/pull/1#issuecomment-1742033662) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) -9. 🗣 Commented on [#491](https://github.com/spatialaudio/python-sounddevice/pull/491#issuecomment-1741984817) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -10. 🗣 Commented on [#61](https://github.com/Mte90/GH-License/pull/61#issuecomment-1741964732) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +1. 🗣 Commented on [#960](https://github.com/aramis-lab/clinica/pull/960#issuecomment-1742551434) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +2. 🗣 Commented on [#302](https://github.com/DeMarcoLab/fibsem/pull/302#issuecomment-1742401329) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +3. 🗣 Commented on [#301](https://github.com/DeMarcoLab/fibsem/pull/301#issuecomment-1742392045) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +4. 🗣 Commented on [#74](https://github.com/athphane/userbot/pull/74#issuecomment-1742200545) in [athphane/userbot](https://github.com/athphane/userbot) +5. 🗣 Commented on [#645](https://github.com/einsteinpy/einsteinpy/pull/645#issuecomment-1742136450) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +6. 🗣 Commented on [#644](https://github.com/einsteinpy/einsteinpy/pull/644#issuecomment-1742133303) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +7. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/AirSim/pull/2#issuecomment-1742070256) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) +8. 🗣 Commented on [#34](https://github.com/Borda/pyDeprecate/pull/34#issuecomment-1742063171) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) +9. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/AirSim/pull/1#issuecomment-1742033662) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) +10. 🗣 Commented on [#491](https://github.com/spatialaudio/python-sounddevice/pull/491#issuecomment-1741984817) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) From 6721cf5327406554f8d1b0d11dbeda9cc9c63750 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 09:16:04 +0000 Subject: [PATCH 0185/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d03b256f..0e4792d6 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#960](https://github.com/aramis-lab/clinica/pull/960#issuecomment-1742551434) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -2. 🗣 Commented on [#302](https://github.com/DeMarcoLab/fibsem/pull/302#issuecomment-1742401329) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -3. 🗣 Commented on [#301](https://github.com/DeMarcoLab/fibsem/pull/301#issuecomment-1742392045) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -4. 🗣 Commented on [#74](https://github.com/athphane/userbot/pull/74#issuecomment-1742200545) in [athphane/userbot](https://github.com/athphane/userbot) -5. 🗣 Commented on [#645](https://github.com/einsteinpy/einsteinpy/pull/645#issuecomment-1742136450) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -6. 🗣 Commented on [#644](https://github.com/einsteinpy/einsteinpy/pull/644#issuecomment-1742133303) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -7. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/AirSim/pull/2#issuecomment-1742070256) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) -8. 🗣 Commented on [#34](https://github.com/Borda/pyDeprecate/pull/34#issuecomment-1742063171) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) -9. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/AirSim/pull/1#issuecomment-1742033662) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) -10. 🗣 Commented on [#491](https://github.com/spatialaudio/python-sounddevice/pull/491#issuecomment-1741984817) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +1. 🗣 Commented on [#33](https://github.com/eastgenomics/automated-archiving/pull/33#issuecomment-1742631135) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +2. 🗣 Commented on [#960](https://github.com/aramis-lab/clinica/pull/960#issuecomment-1742551434) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +3. 🗣 Commented on [#302](https://github.com/DeMarcoLab/fibsem/pull/302#issuecomment-1742401329) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +4. 🗣 Commented on [#301](https://github.com/DeMarcoLab/fibsem/pull/301#issuecomment-1742392045) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +5. 🗣 Commented on [#74](https://github.com/athphane/userbot/pull/74#issuecomment-1742200545) in [athphane/userbot](https://github.com/athphane/userbot) +6. 🗣 Commented on [#645](https://github.com/einsteinpy/einsteinpy/pull/645#issuecomment-1742136450) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +7. 🗣 Commented on [#644](https://github.com/einsteinpy/einsteinpy/pull/644#issuecomment-1742133303) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +8. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/AirSim/pull/2#issuecomment-1742070256) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) +9. 🗣 Commented on [#34](https://github.com/Borda/pyDeprecate/pull/34#issuecomment-1742063171) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) +10. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/AirSim/pull/1#issuecomment-1742033662) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) From 43e78ce7f008e4102b70256e86acb0f1428863c3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 10:17:29 +0000 Subject: [PATCH 0186/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0e4792d6..74f0bd14 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#33](https://github.com/eastgenomics/automated-archiving/pull/33#issuecomment-1742631135) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -2. 🗣 Commented on [#960](https://github.com/aramis-lab/clinica/pull/960#issuecomment-1742551434) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -3. 🗣 Commented on [#302](https://github.com/DeMarcoLab/fibsem/pull/302#issuecomment-1742401329) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -4. 🗣 Commented on [#301](https://github.com/DeMarcoLab/fibsem/pull/301#issuecomment-1742392045) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -5. 🗣 Commented on [#74](https://github.com/athphane/userbot/pull/74#issuecomment-1742200545) in [athphane/userbot](https://github.com/athphane/userbot) -6. 🗣 Commented on [#645](https://github.com/einsteinpy/einsteinpy/pull/645#issuecomment-1742136450) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -7. 🗣 Commented on [#644](https://github.com/einsteinpy/einsteinpy/pull/644#issuecomment-1742133303) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -8. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/AirSim/pull/2#issuecomment-1742070256) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) -9. 🗣 Commented on [#34](https://github.com/Borda/pyDeprecate/pull/34#issuecomment-1742063171) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) -10. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/AirSim/pull/1#issuecomment-1742033662) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) +1. 🗣 Commented on [#195](https://github.com/aimclub/GOLEM/pull/195#issuecomment-1742714719) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#127](https://github.com/eastgenomics/dias_batch_running/pull/127#issuecomment-1742707096) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#33](https://github.com/eastgenomics/automated-archiving/pull/33#issuecomment-1742631135) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +4. 🗣 Commented on [#960](https://github.com/aramis-lab/clinica/pull/960#issuecomment-1742551434) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +5. 🗣 Commented on [#302](https://github.com/DeMarcoLab/fibsem/pull/302#issuecomment-1742401329) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +6. 🗣 Commented on [#301](https://github.com/DeMarcoLab/fibsem/pull/301#issuecomment-1742392045) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +7. 🗣 Commented on [#74](https://github.com/athphane/userbot/pull/74#issuecomment-1742200545) in [athphane/userbot](https://github.com/athphane/userbot) +8. 🗣 Commented on [#645](https://github.com/einsteinpy/einsteinpy/pull/645#issuecomment-1742136450) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +9. 🗣 Commented on [#644](https://github.com/einsteinpy/einsteinpy/pull/644#issuecomment-1742133303) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +10. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/AirSim/pull/2#issuecomment-1742070256) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) From 6f1e5826cea5bb149ec197c172c31b824a9ee97c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 10:37:23 +0000 Subject: [PATCH 0187/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 74f0bd14..36222ac3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#195](https://github.com/aimclub/GOLEM/pull/195#issuecomment-1742714719) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#127](https://github.com/eastgenomics/dias_batch_running/pull/127#issuecomment-1742707096) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#33](https://github.com/eastgenomics/automated-archiving/pull/33#issuecomment-1742631135) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -4. 🗣 Commented on [#960](https://github.com/aramis-lab/clinica/pull/960#issuecomment-1742551434) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -5. 🗣 Commented on [#302](https://github.com/DeMarcoLab/fibsem/pull/302#issuecomment-1742401329) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -6. 🗣 Commented on [#301](https://github.com/DeMarcoLab/fibsem/pull/301#issuecomment-1742392045) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -7. 🗣 Commented on [#74](https://github.com/athphane/userbot/pull/74#issuecomment-1742200545) in [athphane/userbot](https://github.com/athphane/userbot) -8. 🗣 Commented on [#645](https://github.com/einsteinpy/einsteinpy/pull/645#issuecomment-1742136450) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -9. 🗣 Commented on [#644](https://github.com/einsteinpy/einsteinpy/pull/644#issuecomment-1742133303) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -10. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/AirSim/pull/2#issuecomment-1742070256) in [Tamminhdiep97/AirSim](https://github.com/Tamminhdiep97/AirSim) +1. 🗣 Commented on [#922](https://github.com/avaframe/AvaFrame/pull/922#issuecomment-1742766931) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#646](https://github.com/einsteinpy/einsteinpy/pull/646#issuecomment-1742757658) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +3. 🗣 Commented on [#195](https://github.com/aimclub/GOLEM/pull/195#issuecomment-1742714719) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +4. 🗣 Commented on [#127](https://github.com/eastgenomics/dias_batch_running/pull/127#issuecomment-1742707096) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#33](https://github.com/eastgenomics/automated-archiving/pull/33#issuecomment-1742631135) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +6. 🗣 Commented on [#960](https://github.com/aramis-lab/clinica/pull/960#issuecomment-1742551434) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +7. 🗣 Commented on [#302](https://github.com/DeMarcoLab/fibsem/pull/302#issuecomment-1742401329) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +8. 🗣 Commented on [#301](https://github.com/DeMarcoLab/fibsem/pull/301#issuecomment-1742392045) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +9. 🗣 Commented on [#74](https://github.com/athphane/userbot/pull/74#issuecomment-1742200545) in [athphane/userbot](https://github.com/athphane/userbot) +10. 🗣 Commented on [#645](https://github.com/einsteinpy/einsteinpy/pull/645#issuecomment-1742136450) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) From ad812559f0b8c1209fa5703fd075967ae5e1ffdb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 11:13:04 +0000 Subject: [PATCH 0188/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 36222ac3..c8636546 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#922](https://github.com/avaframe/AvaFrame/pull/922#issuecomment-1742766931) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#646](https://github.com/einsteinpy/einsteinpy/pull/646#issuecomment-1742757658) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -3. 🗣 Commented on [#195](https://github.com/aimclub/GOLEM/pull/195#issuecomment-1742714719) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -4. 🗣 Commented on [#127](https://github.com/eastgenomics/dias_batch_running/pull/127#issuecomment-1742707096) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#33](https://github.com/eastgenomics/automated-archiving/pull/33#issuecomment-1742631135) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -6. 🗣 Commented on [#960](https://github.com/aramis-lab/clinica/pull/960#issuecomment-1742551434) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -7. 🗣 Commented on [#302](https://github.com/DeMarcoLab/fibsem/pull/302#issuecomment-1742401329) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -8. 🗣 Commented on [#301](https://github.com/DeMarcoLab/fibsem/pull/301#issuecomment-1742392045) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -9. 🗣 Commented on [#74](https://github.com/athphane/userbot/pull/74#issuecomment-1742200545) in [athphane/userbot](https://github.com/athphane/userbot) -10. 🗣 Commented on [#645](https://github.com/einsteinpy/einsteinpy/pull/645#issuecomment-1742136450) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +1. 🗣 Commented on [#62](https://github.com/Mte90/GH-License/pull/62#issuecomment-1742824079) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +2. 🗣 Commented on [#922](https://github.com/avaframe/AvaFrame/pull/922#issuecomment-1742766931) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#646](https://github.com/einsteinpy/einsteinpy/pull/646#issuecomment-1742757658) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +4. 🗣 Commented on [#195](https://github.com/aimclub/GOLEM/pull/195#issuecomment-1742714719) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#127](https://github.com/eastgenomics/dias_batch_running/pull/127#issuecomment-1742707096) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#33](https://github.com/eastgenomics/automated-archiving/pull/33#issuecomment-1742631135) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +7. 🗣 Commented on [#960](https://github.com/aramis-lab/clinica/pull/960#issuecomment-1742551434) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +8. 🗣 Commented on [#302](https://github.com/DeMarcoLab/fibsem/pull/302#issuecomment-1742401329) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +9. 🗣 Commented on [#301](https://github.com/DeMarcoLab/fibsem/pull/301#issuecomment-1742392045) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +10. 🗣 Commented on [#74](https://github.com/athphane/userbot/pull/74#issuecomment-1742200545) in [athphane/userbot](https://github.com/athphane/userbot) From 4c37a29370a68e95fad52ee7227c67535033138c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 12:31:58 +0000 Subject: [PATCH 0189/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c8636546..0c2eef7e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#62](https://github.com/Mte90/GH-License/pull/62#issuecomment-1742824079) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -2. 🗣 Commented on [#922](https://github.com/avaframe/AvaFrame/pull/922#issuecomment-1742766931) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#646](https://github.com/einsteinpy/einsteinpy/pull/646#issuecomment-1742757658) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -4. 🗣 Commented on [#195](https://github.com/aimclub/GOLEM/pull/195#issuecomment-1742714719) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#127](https://github.com/eastgenomics/dias_batch_running/pull/127#issuecomment-1742707096) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#33](https://github.com/eastgenomics/automated-archiving/pull/33#issuecomment-1742631135) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -7. 🗣 Commented on [#960](https://github.com/aramis-lab/clinica/pull/960#issuecomment-1742551434) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -8. 🗣 Commented on [#302](https://github.com/DeMarcoLab/fibsem/pull/302#issuecomment-1742401329) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -9. 🗣 Commented on [#301](https://github.com/DeMarcoLab/fibsem/pull/301#issuecomment-1742392045) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -10. 🗣 Commented on [#74](https://github.com/athphane/userbot/pull/74#issuecomment-1742200545) in [athphane/userbot](https://github.com/athphane/userbot) +1. 🗣 Commented on [#2959](https://github.com/reframe-hpc/reframe/pull/2959#issuecomment-1742857683) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +2. 🗣 Commented on [#62](https://github.com/Mte90/GH-License/pull/62#issuecomment-1742824079) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +3. 🗣 Commented on [#922](https://github.com/avaframe/AvaFrame/pull/922#issuecomment-1742766931) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#646](https://github.com/einsteinpy/einsteinpy/pull/646#issuecomment-1742757658) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +5. 🗣 Commented on [#195](https://github.com/aimclub/GOLEM/pull/195#issuecomment-1742714719) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#127](https://github.com/eastgenomics/dias_batch_running/pull/127#issuecomment-1742707096) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#33](https://github.com/eastgenomics/automated-archiving/pull/33#issuecomment-1742631135) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +8. 🗣 Commented on [#960](https://github.com/aramis-lab/clinica/pull/960#issuecomment-1742551434) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +9. 🗣 Commented on [#302](https://github.com/DeMarcoLab/fibsem/pull/302#issuecomment-1742401329) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +10. 🗣 Commented on [#301](https://github.com/DeMarcoLab/fibsem/pull/301#issuecomment-1742392045) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) From a27488b3296279fb0168c0f9778113b15cffd5ca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 14:15:16 +0000 Subject: [PATCH 0190/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0c2eef7e..9cda77b5 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2959](https://github.com/reframe-hpc/reframe/pull/2959#issuecomment-1742857683) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -2. 🗣 Commented on [#62](https://github.com/Mte90/GH-License/pull/62#issuecomment-1742824079) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -3. 🗣 Commented on [#922](https://github.com/avaframe/AvaFrame/pull/922#issuecomment-1742766931) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#646](https://github.com/einsteinpy/einsteinpy/pull/646#issuecomment-1742757658) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -5. 🗣 Commented on [#195](https://github.com/aimclub/GOLEM/pull/195#issuecomment-1742714719) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#127](https://github.com/eastgenomics/dias_batch_running/pull/127#issuecomment-1742707096) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#33](https://github.com/eastgenomics/automated-archiving/pull/33#issuecomment-1742631135) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -8. 🗣 Commented on [#960](https://github.com/aramis-lab/clinica/pull/960#issuecomment-1742551434) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -9. 🗣 Commented on [#302](https://github.com/DeMarcoLab/fibsem/pull/302#issuecomment-1742401329) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -10. 🗣 Commented on [#301](https://github.com/DeMarcoLab/fibsem/pull/301#issuecomment-1742392045) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +1. 🗣 Commented on [#3](https://github.com/avaframe/FlowPy/pull/3#issuecomment-1743065095) in [avaframe/FlowPy](https://github.com/avaframe/FlowPy) +2. 🗣 Commented on [#2959](https://github.com/reframe-hpc/reframe/pull/2959#issuecomment-1742857683) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +3. 🗣 Commented on [#62](https://github.com/Mte90/GH-License/pull/62#issuecomment-1742824079) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +4. 🗣 Commented on [#922](https://github.com/avaframe/AvaFrame/pull/922#issuecomment-1742766931) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#646](https://github.com/einsteinpy/einsteinpy/pull/646#issuecomment-1742757658) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +6. 🗣 Commented on [#195](https://github.com/aimclub/GOLEM/pull/195#issuecomment-1742714719) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#127](https://github.com/eastgenomics/dias_batch_running/pull/127#issuecomment-1742707096) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#33](https://github.com/eastgenomics/automated-archiving/pull/33#issuecomment-1742631135) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +9. 🗣 Commented on [#960](https://github.com/aramis-lab/clinica/pull/960#issuecomment-1742551434) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +10. 🗣 Commented on [#302](https://github.com/DeMarcoLab/fibsem/pull/302#issuecomment-1742401329) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) From 55c38bb90cfe018209c13ed02f5e4f6b8f7ff300 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 14:37:28 +0000 Subject: [PATCH 0191/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9cda77b5..599c5928 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#3](https://github.com/avaframe/FlowPy/pull/3#issuecomment-1743065095) in [avaframe/FlowPy](https://github.com/avaframe/FlowPy) -2. 🗣 Commented on [#2959](https://github.com/reframe-hpc/reframe/pull/2959#issuecomment-1742857683) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -3. 🗣 Commented on [#62](https://github.com/Mte90/GH-License/pull/62#issuecomment-1742824079) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -4. 🗣 Commented on [#922](https://github.com/avaframe/AvaFrame/pull/922#issuecomment-1742766931) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#646](https://github.com/einsteinpy/einsteinpy/pull/646#issuecomment-1742757658) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -6. 🗣 Commented on [#195](https://github.com/aimclub/GOLEM/pull/195#issuecomment-1742714719) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#127](https://github.com/eastgenomics/dias_batch_running/pull/127#issuecomment-1742707096) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#33](https://github.com/eastgenomics/automated-archiving/pull/33#issuecomment-1742631135) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -9. 🗣 Commented on [#960](https://github.com/aramis-lab/clinica/pull/960#issuecomment-1742551434) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -10. 🗣 Commented on [#302](https://github.com/DeMarcoLab/fibsem/pull/302#issuecomment-1742401329) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +1. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +2. 🗣 Commented on [#752](https://github.com/scilus/scilpy/pull/752#issuecomment-1743116389) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#3](https://github.com/avaframe/FlowPy/pull/3#issuecomment-1743065095) in [avaframe/FlowPy](https://github.com/avaframe/FlowPy) +4. 🗣 Commented on [#2959](https://github.com/reframe-hpc/reframe/pull/2959#issuecomment-1742857683) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +5. 🗣 Commented on [#62](https://github.com/Mte90/GH-License/pull/62#issuecomment-1742824079) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +6. 🗣 Commented on [#922](https://github.com/avaframe/AvaFrame/pull/922#issuecomment-1742766931) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#646](https://github.com/einsteinpy/einsteinpy/pull/646#issuecomment-1742757658) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +8. 🗣 Commented on [#195](https://github.com/aimclub/GOLEM/pull/195#issuecomment-1742714719) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#127](https://github.com/eastgenomics/dias_batch_running/pull/127#issuecomment-1742707096) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#33](https://github.com/eastgenomics/automated-archiving/pull/33#issuecomment-1742631135) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) From 4ece15a8375e21148724e61b32db0df54a2d83f2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 16:39:58 +0000 Subject: [PATCH 0192/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 599c5928..8b3ddb60 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -2. 🗣 Commented on [#752](https://github.com/scilus/scilpy/pull/752#issuecomment-1743116389) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#3](https://github.com/avaframe/FlowPy/pull/3#issuecomment-1743065095) in [avaframe/FlowPy](https://github.com/avaframe/FlowPy) -4. 🗣 Commented on [#2959](https://github.com/reframe-hpc/reframe/pull/2959#issuecomment-1742857683) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -5. 🗣 Commented on [#62](https://github.com/Mte90/GH-License/pull/62#issuecomment-1742824079) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -6. 🗣 Commented on [#922](https://github.com/avaframe/AvaFrame/pull/922#issuecomment-1742766931) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#646](https://github.com/einsteinpy/einsteinpy/pull/646#issuecomment-1742757658) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -8. 🗣 Commented on [#195](https://github.com/aimclub/GOLEM/pull/195#issuecomment-1742714719) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#127](https://github.com/eastgenomics/dias_batch_running/pull/127#issuecomment-1742707096) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#33](https://github.com/eastgenomics/automated-archiving/pull/33#issuecomment-1742631135) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +1. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +2. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +3. 🗣 Commented on [#752](https://github.com/scilus/scilpy/pull/752#issuecomment-1743116389) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#3](https://github.com/avaframe/FlowPy/pull/3#issuecomment-1743065095) in [avaframe/FlowPy](https://github.com/avaframe/FlowPy) +5. 🗣 Commented on [#2959](https://github.com/reframe-hpc/reframe/pull/2959#issuecomment-1742857683) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +6. 🗣 Commented on [#62](https://github.com/Mte90/GH-License/pull/62#issuecomment-1742824079) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +7. 🗣 Commented on [#922](https://github.com/avaframe/AvaFrame/pull/922#issuecomment-1742766931) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#646](https://github.com/einsteinpy/einsteinpy/pull/646#issuecomment-1742757658) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +9. 🗣 Commented on [#195](https://github.com/aimclub/GOLEM/pull/195#issuecomment-1742714719) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#127](https://github.com/eastgenomics/dias_batch_running/pull/127#issuecomment-1742707096) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From d543b260a71277318ace8548c15c27195f398d5e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 17:37:07 +0000 Subject: [PATCH 0193/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8b3ddb60..76bbf5a8 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -2. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -3. 🗣 Commented on [#752](https://github.com/scilus/scilpy/pull/752#issuecomment-1743116389) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#3](https://github.com/avaframe/FlowPy/pull/3#issuecomment-1743065095) in [avaframe/FlowPy](https://github.com/avaframe/FlowPy) -5. 🗣 Commented on [#2959](https://github.com/reframe-hpc/reframe/pull/2959#issuecomment-1742857683) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -6. 🗣 Commented on [#62](https://github.com/Mte90/GH-License/pull/62#issuecomment-1742824079) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -7. 🗣 Commented on [#922](https://github.com/avaframe/AvaFrame/pull/922#issuecomment-1742766931) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#646](https://github.com/einsteinpy/einsteinpy/pull/646#issuecomment-1742757658) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -9. 🗣 Commented on [#195](https://github.com/aimclub/GOLEM/pull/195#issuecomment-1742714719) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#127](https://github.com/eastgenomics/dias_batch_running/pull/127#issuecomment-1742707096) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) +2. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +3. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +4. 🗣 Commented on [#752](https://github.com/scilus/scilpy/pull/752#issuecomment-1743116389) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#3](https://github.com/avaframe/FlowPy/pull/3#issuecomment-1743065095) in [avaframe/FlowPy](https://github.com/avaframe/FlowPy) +6. 🗣 Commented on [#2959](https://github.com/reframe-hpc/reframe/pull/2959#issuecomment-1742857683) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +7. 🗣 Commented on [#62](https://github.com/Mte90/GH-License/pull/62#issuecomment-1742824079) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +8. 🗣 Commented on [#922](https://github.com/avaframe/AvaFrame/pull/922#issuecomment-1742766931) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#646](https://github.com/einsteinpy/einsteinpy/pull/646#issuecomment-1742757658) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +10. 🗣 Commented on [#195](https://github.com/aimclub/GOLEM/pull/195#issuecomment-1742714719) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) From 2ceb2283ebfd1879b10f95a2d6f137d08e6d9985 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 19:12:20 +0000 Subject: [PATCH 0194/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 76bbf5a8..6d41ca6a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) -2. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -3. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -4. 🗣 Commented on [#752](https://github.com/scilus/scilpy/pull/752#issuecomment-1743116389) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#3](https://github.com/avaframe/FlowPy/pull/3#issuecomment-1743065095) in [avaframe/FlowPy](https://github.com/avaframe/FlowPy) -6. 🗣 Commented on [#2959](https://github.com/reframe-hpc/reframe/pull/2959#issuecomment-1742857683) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -7. 🗣 Commented on [#62](https://github.com/Mte90/GH-License/pull/62#issuecomment-1742824079) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -8. 🗣 Commented on [#922](https://github.com/avaframe/AvaFrame/pull/922#issuecomment-1742766931) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#646](https://github.com/einsteinpy/einsteinpy/pull/646#issuecomment-1742757658) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -10. 🗣 Commented on [#195](https://github.com/aimclub/GOLEM/pull/195#issuecomment-1742714719) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +1. 🗣 Commented on [#1238](https://github.com/spacetelescope/jwql/pull/1238#issuecomment-1743597503) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) +3. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +4. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +5. 🗣 Commented on [#752](https://github.com/scilus/scilpy/pull/752#issuecomment-1743116389) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#3](https://github.com/avaframe/FlowPy/pull/3#issuecomment-1743065095) in [avaframe/FlowPy](https://github.com/avaframe/FlowPy) +7. 🗣 Commented on [#2959](https://github.com/reframe-hpc/reframe/pull/2959#issuecomment-1742857683) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +8. 🗣 Commented on [#62](https://github.com/Mte90/GH-License/pull/62#issuecomment-1742824079) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +9. 🗣 Commented on [#922](https://github.com/avaframe/AvaFrame/pull/922#issuecomment-1742766931) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#646](https://github.com/einsteinpy/einsteinpy/pull/646#issuecomment-1742757658) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) From 25d7ca73d8c89a954cba645069463d0d382f2a16 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 19:37:09 +0000 Subject: [PATCH 0195/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6d41ca6a..d3c1c91b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1238](https://github.com/spacetelescope/jwql/pull/1238#issuecomment-1743597503) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) -3. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -4. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -5. 🗣 Commented on [#752](https://github.com/scilus/scilpy/pull/752#issuecomment-1743116389) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#3](https://github.com/avaframe/FlowPy/pull/3#issuecomment-1743065095) in [avaframe/FlowPy](https://github.com/avaframe/FlowPy) -7. 🗣 Commented on [#2959](https://github.com/reframe-hpc/reframe/pull/2959#issuecomment-1742857683) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -8. 🗣 Commented on [#62](https://github.com/Mte90/GH-License/pull/62#issuecomment-1742824079) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -9. 🗣 Commented on [#922](https://github.com/avaframe/AvaFrame/pull/922#issuecomment-1742766931) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#646](https://github.com/einsteinpy/einsteinpy/pull/646#issuecomment-1742757658) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +1. 🗣 Commented on [#279](https://github.com/AdvancedPhotonSource/tike/pull/279#issuecomment-1743613486) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +2. 🗣 Commented on [#1238](https://github.com/spacetelescope/jwql/pull/1238#issuecomment-1743597503) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) +4. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +5. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +6. 🗣 Commented on [#752](https://github.com/scilus/scilpy/pull/752#issuecomment-1743116389) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#3](https://github.com/avaframe/FlowPy/pull/3#issuecomment-1743065095) in [avaframe/FlowPy](https://github.com/avaframe/FlowPy) +8. 🗣 Commented on [#2959](https://github.com/reframe-hpc/reframe/pull/2959#issuecomment-1742857683) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +9. 🗣 Commented on [#62](https://github.com/Mte90/GH-License/pull/62#issuecomment-1742824079) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +10. 🗣 Commented on [#922](https://github.com/avaframe/AvaFrame/pull/922#issuecomment-1742766931) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From 1666f3c93430c860cac6ee2c576bc8ae89dfd065 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 22:14:36 +0000 Subject: [PATCH 0196/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d3c1c91b..5b76d5ed 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#279](https://github.com/AdvancedPhotonSource/tike/pull/279#issuecomment-1743613486) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -2. 🗣 Commented on [#1238](https://github.com/spacetelescope/jwql/pull/1238#issuecomment-1743597503) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) -4. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -5. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -6. 🗣 Commented on [#752](https://github.com/scilus/scilpy/pull/752#issuecomment-1743116389) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#3](https://github.com/avaframe/FlowPy/pull/3#issuecomment-1743065095) in [avaframe/FlowPy](https://github.com/avaframe/FlowPy) -8. 🗣 Commented on [#2959](https://github.com/reframe-hpc/reframe/pull/2959#issuecomment-1742857683) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -9. 🗣 Commented on [#62](https://github.com/Mte90/GH-License/pull/62#issuecomment-1742824079) in [Mte90/GH-License](https://github.com/Mte90/GH-License) -10. 🗣 Commented on [#922](https://github.com/avaframe/AvaFrame/pull/922#issuecomment-1742766931) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#16](https://github.com/munechika-koyo/cherab_phix/pull/16#issuecomment-1743815802) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) +2. 🗣 Commented on [#279](https://github.com/AdvancedPhotonSource/tike/pull/279#issuecomment-1743613486) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +3. 🗣 Commented on [#1238](https://github.com/spacetelescope/jwql/pull/1238#issuecomment-1743597503) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) +5. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +6. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +7. 🗣 Commented on [#752](https://github.com/scilus/scilpy/pull/752#issuecomment-1743116389) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#3](https://github.com/avaframe/FlowPy/pull/3#issuecomment-1743065095) in [avaframe/FlowPy](https://github.com/avaframe/FlowPy) +9. 🗣 Commented on [#2959](https://github.com/reframe-hpc/reframe/pull/2959#issuecomment-1742857683) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +10. 🗣 Commented on [#62](https://github.com/Mte90/GH-License/pull/62#issuecomment-1742824079) in [Mte90/GH-License](https://github.com/Mte90/GH-License) From f1b0071837c59c4572be1201670532d2f29d266c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 23:15:36 +0000 Subject: [PATCH 0197/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5b76d5ed..90f44ac5 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#16](https://github.com/munechika-koyo/cherab_phix/pull/16#issuecomment-1743815802) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) -2. 🗣 Commented on [#279](https://github.com/AdvancedPhotonSource/tike/pull/279#issuecomment-1743613486) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -3. 🗣 Commented on [#1238](https://github.com/spacetelescope/jwql/pull/1238#issuecomment-1743597503) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) -5. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -6. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -7. 🗣 Commented on [#752](https://github.com/scilus/scilpy/pull/752#issuecomment-1743116389) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#3](https://github.com/avaframe/FlowPy/pull/3#issuecomment-1743065095) in [avaframe/FlowPy](https://github.com/avaframe/FlowPy) -9. 🗣 Commented on [#2959](https://github.com/reframe-hpc/reframe/pull/2959#issuecomment-1742857683) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -10. 🗣 Commented on [#62](https://github.com/Mte90/GH-License/pull/62#issuecomment-1742824079) in [Mte90/GH-License](https://github.com/Mte90/GH-License) +1. 🗣 Commented on [#3](https://github.com/njzjz/nodejs-wheel/pull/3#issuecomment-1743877805) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +2. 🗣 Commented on [#16](https://github.com/munechika-koyo/cherab_phix/pull/16#issuecomment-1743815802) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) +3. 🗣 Commented on [#279](https://github.com/AdvancedPhotonSource/tike/pull/279#issuecomment-1743613486) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +4. 🗣 Commented on [#1238](https://github.com/spacetelescope/jwql/pull/1238#issuecomment-1743597503) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) +6. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +7. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +8. 🗣 Commented on [#752](https://github.com/scilus/scilpy/pull/752#issuecomment-1743116389) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#3](https://github.com/avaframe/FlowPy/pull/3#issuecomment-1743065095) in [avaframe/FlowPy](https://github.com/avaframe/FlowPy) +10. 🗣 Commented on [#2959](https://github.com/reframe-hpc/reframe/pull/2959#issuecomment-1742857683) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) From 1fd810693afb2c5802e6f954958f1fb830951064 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 02:04:50 +0000 Subject: [PATCH 0198/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 90f44ac5..9e4da4eb 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#3](https://github.com/njzjz/nodejs-wheel/pull/3#issuecomment-1743877805) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -2. 🗣 Commented on [#16](https://github.com/munechika-koyo/cherab_phix/pull/16#issuecomment-1743815802) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) -3. 🗣 Commented on [#279](https://github.com/AdvancedPhotonSource/tike/pull/279#issuecomment-1743613486) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -4. 🗣 Commented on [#1238](https://github.com/spacetelescope/jwql/pull/1238#issuecomment-1743597503) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) -6. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -7. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -8. 🗣 Commented on [#752](https://github.com/scilus/scilpy/pull/752#issuecomment-1743116389) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#3](https://github.com/avaframe/FlowPy/pull/3#issuecomment-1743065095) in [avaframe/FlowPy](https://github.com/avaframe/FlowPy) -10. 🗣 Commented on [#2959](https://github.com/reframe-hpc/reframe/pull/2959#issuecomment-1742857683) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +1. 🗣 Commented on [#304](https://github.com/DeMarcoLab/fibsem/pull/304#issuecomment-1744011230) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +2. 🗣 Commented on [#3](https://github.com/njzjz/nodejs-wheel/pull/3#issuecomment-1743877805) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +3. 🗣 Commented on [#16](https://github.com/munechika-koyo/cherab_phix/pull/16#issuecomment-1743815802) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) +4. 🗣 Commented on [#279](https://github.com/AdvancedPhotonSource/tike/pull/279#issuecomment-1743613486) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +5. 🗣 Commented on [#1238](https://github.com/spacetelescope/jwql/pull/1238#issuecomment-1743597503) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) +7. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +8. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +9. 🗣 Commented on [#752](https://github.com/scilus/scilpy/pull/752#issuecomment-1743116389) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#3](https://github.com/avaframe/FlowPy/pull/3#issuecomment-1743065095) in [avaframe/FlowPy](https://github.com/avaframe/FlowPy) From ecd956b2174e15ed6843cddb2485fc0e2c893a5e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 02:37:23 +0000 Subject: [PATCH 0199/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9e4da4eb..e54e5f43 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#304](https://github.com/DeMarcoLab/fibsem/pull/304#issuecomment-1744011230) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -2. 🗣 Commented on [#3](https://github.com/njzjz/nodejs-wheel/pull/3#issuecomment-1743877805) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -3. 🗣 Commented on [#16](https://github.com/munechika-koyo/cherab_phix/pull/16#issuecomment-1743815802) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) -4. 🗣 Commented on [#279](https://github.com/AdvancedPhotonSource/tike/pull/279#issuecomment-1743613486) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -5. 🗣 Commented on [#1238](https://github.com/spacetelescope/jwql/pull/1238#issuecomment-1743597503) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) -7. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -8. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -9. 🗣 Commented on [#752](https://github.com/scilus/scilpy/pull/752#issuecomment-1743116389) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#3](https://github.com/avaframe/FlowPy/pull/3#issuecomment-1743065095) in [avaframe/FlowPy](https://github.com/avaframe/FlowPy) +1. 🗣 Commented on [#2](https://github.com/njzjz/nodejs-wheel/pull/2#issuecomment-1744057702) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +2. 🗣 Commented on [#304](https://github.com/DeMarcoLab/fibsem/pull/304#issuecomment-1744011230) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +3. 🗣 Commented on [#3](https://github.com/njzjz/nodejs-wheel/pull/3#issuecomment-1743877805) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +4. 🗣 Commented on [#16](https://github.com/munechika-koyo/cherab_phix/pull/16#issuecomment-1743815802) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) +5. 🗣 Commented on [#279](https://github.com/AdvancedPhotonSource/tike/pull/279#issuecomment-1743613486) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +6. 🗣 Commented on [#1238](https://github.com/spacetelescope/jwql/pull/1238#issuecomment-1743597503) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) +8. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +9. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +10. 🗣 Commented on [#752](https://github.com/scilus/scilpy/pull/752#issuecomment-1743116389) in [scilus/scilpy](https://github.com/scilus/scilpy) From 350fb89c9ebf46df2853272ee9fb5cf2058374ab Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 08:38:07 +0000 Subject: [PATCH 0200/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e54e5f43..704101cd 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2](https://github.com/njzjz/nodejs-wheel/pull/2#issuecomment-1744057702) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -2. 🗣 Commented on [#304](https://github.com/DeMarcoLab/fibsem/pull/304#issuecomment-1744011230) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -3. 🗣 Commented on [#3](https://github.com/njzjz/nodejs-wheel/pull/3#issuecomment-1743877805) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -4. 🗣 Commented on [#16](https://github.com/munechika-koyo/cherab_phix/pull/16#issuecomment-1743815802) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) -5. 🗣 Commented on [#279](https://github.com/AdvancedPhotonSource/tike/pull/279#issuecomment-1743613486) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -6. 🗣 Commented on [#1238](https://github.com/spacetelescope/jwql/pull/1238#issuecomment-1743597503) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) -8. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -9. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -10. 🗣 Commented on [#752](https://github.com/scilus/scilpy/pull/752#issuecomment-1743116389) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#34](https://github.com/eastgenomics/automated-archiving/pull/34#issuecomment-1744454392) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +2. 🗣 Commented on [#2](https://github.com/njzjz/nodejs-wheel/pull/2#issuecomment-1744057702) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +3. 🗣 Commented on [#304](https://github.com/DeMarcoLab/fibsem/pull/304#issuecomment-1744011230) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +4. 🗣 Commented on [#3](https://github.com/njzjz/nodejs-wheel/pull/3#issuecomment-1743877805) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +5. 🗣 Commented on [#16](https://github.com/munechika-koyo/cherab_phix/pull/16#issuecomment-1743815802) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) +6. 🗣 Commented on [#279](https://github.com/AdvancedPhotonSource/tike/pull/279#issuecomment-1743613486) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +7. 🗣 Commented on [#1238](https://github.com/spacetelescope/jwql/pull/1238#issuecomment-1743597503) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) +9. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +10. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) From 92d82ff83fa4c4cee5ff43732a700532e78a62ff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 10:17:18 +0000 Subject: [PATCH 0201/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 704101cd..fa89ba18 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#34](https://github.com/eastgenomics/automated-archiving/pull/34#issuecomment-1744454392) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -2. 🗣 Commented on [#2](https://github.com/njzjz/nodejs-wheel/pull/2#issuecomment-1744057702) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -3. 🗣 Commented on [#304](https://github.com/DeMarcoLab/fibsem/pull/304#issuecomment-1744011230) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -4. 🗣 Commented on [#3](https://github.com/njzjz/nodejs-wheel/pull/3#issuecomment-1743877805) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -5. 🗣 Commented on [#16](https://github.com/munechika-koyo/cherab_phix/pull/16#issuecomment-1743815802) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) -6. 🗣 Commented on [#279](https://github.com/AdvancedPhotonSource/tike/pull/279#issuecomment-1743613486) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -7. 🗣 Commented on [#1238](https://github.com/spacetelescope/jwql/pull/1238#issuecomment-1743597503) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) -9. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) -10. 🗣 Commented on [#485](https://github.com/aramis-lab/clinicadl/pull/485#issuecomment-1743118217) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +1. 🗣 Commented on [#33](https://github.com/eastgenomics/eris/pull/33#issuecomment-1744627119) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#34](https://github.com/eastgenomics/automated-archiving/pull/34#issuecomment-1744454392) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +3. 🗣 Commented on [#2](https://github.com/njzjz/nodejs-wheel/pull/2#issuecomment-1744057702) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +4. 🗣 Commented on [#304](https://github.com/DeMarcoLab/fibsem/pull/304#issuecomment-1744011230) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +5. 🗣 Commented on [#3](https://github.com/njzjz/nodejs-wheel/pull/3#issuecomment-1743877805) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +6. 🗣 Commented on [#16](https://github.com/munechika-koyo/cherab_phix/pull/16#issuecomment-1743815802) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) +7. 🗣 Commented on [#279](https://github.com/AdvancedPhotonSource/tike/pull/279#issuecomment-1743613486) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +8. 🗣 Commented on [#1238](https://github.com/spacetelescope/jwql/pull/1238#issuecomment-1743597503) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) +10. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) From 9440e270c27822286e17d057911bd7880a05ff64 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 10:37:40 +0000 Subject: [PATCH 0202/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fa89ba18..5a5b47eb 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#33](https://github.com/eastgenomics/eris/pull/33#issuecomment-1744627119) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#34](https://github.com/eastgenomics/automated-archiving/pull/34#issuecomment-1744454392) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -3. 🗣 Commented on [#2](https://github.com/njzjz/nodejs-wheel/pull/2#issuecomment-1744057702) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -4. 🗣 Commented on [#304](https://github.com/DeMarcoLab/fibsem/pull/304#issuecomment-1744011230) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -5. 🗣 Commented on [#3](https://github.com/njzjz/nodejs-wheel/pull/3#issuecomment-1743877805) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -6. 🗣 Commented on [#16](https://github.com/munechika-koyo/cherab_phix/pull/16#issuecomment-1743815802) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) -7. 🗣 Commented on [#279](https://github.com/AdvancedPhotonSource/tike/pull/279#issuecomment-1743613486) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -8. 🗣 Commented on [#1238](https://github.com/spacetelescope/jwql/pull/1238#issuecomment-1743597503) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) -10. 🗣 Commented on [#371](https://github.com/nipreps/smriprep/pull/371#issuecomment-1743295096) in [nipreps/smriprep](https://github.com/nipreps/smriprep) +1. 🗣 Commented on [#128](https://github.com/eastgenomics/dias_batch_running/pull/128#issuecomment-1744645185) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#33](https://github.com/eastgenomics/eris/pull/33#issuecomment-1744627119) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#34](https://github.com/eastgenomics/automated-archiving/pull/34#issuecomment-1744454392) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +4. 🗣 Commented on [#2](https://github.com/njzjz/nodejs-wheel/pull/2#issuecomment-1744057702) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +5. 🗣 Commented on [#304](https://github.com/DeMarcoLab/fibsem/pull/304#issuecomment-1744011230) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +6. 🗣 Commented on [#3](https://github.com/njzjz/nodejs-wheel/pull/3#issuecomment-1743877805) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +7. 🗣 Commented on [#16](https://github.com/munechika-koyo/cherab_phix/pull/16#issuecomment-1743815802) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) +8. 🗣 Commented on [#279](https://github.com/AdvancedPhotonSource/tike/pull/279#issuecomment-1743613486) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +9. 🗣 Commented on [#1238](https://github.com/spacetelescope/jwql/pull/1238#issuecomment-1743597503) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) From f032b473c176f09b0c31395e5bd96ace20ef0bf9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 13:20:07 +0000 Subject: [PATCH 0203/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5a5b47eb..4320bb98 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#128](https://github.com/eastgenomics/dias_batch_running/pull/128#issuecomment-1744645185) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#33](https://github.com/eastgenomics/eris/pull/33#issuecomment-1744627119) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#34](https://github.com/eastgenomics/automated-archiving/pull/34#issuecomment-1744454392) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -4. 🗣 Commented on [#2](https://github.com/njzjz/nodejs-wheel/pull/2#issuecomment-1744057702) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -5. 🗣 Commented on [#304](https://github.com/DeMarcoLab/fibsem/pull/304#issuecomment-1744011230) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -6. 🗣 Commented on [#3](https://github.com/njzjz/nodejs-wheel/pull/3#issuecomment-1743877805) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -7. 🗣 Commented on [#16](https://github.com/munechika-koyo/cherab_phix/pull/16#issuecomment-1743815802) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) -8. 🗣 Commented on [#279](https://github.com/AdvancedPhotonSource/tike/pull/279#issuecomment-1743613486) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -9. 🗣 Commented on [#1238](https://github.com/spacetelescope/jwql/pull/1238#issuecomment-1743597503) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#77](https://github.com/cdfxscrq/userbot/pull/77#issuecomment-1743435024) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) +1. 🗣 Commented on [#1877](https://github.com/OpenSCAP/openscap/pull/1877#issuecomment-1744895214) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +2. 🗣 Commented on [#129](https://github.com/eastgenomics/dias_batch_running/pull/129#issuecomment-1744887071) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#128](https://github.com/eastgenomics/dias_batch_running/pull/128#issuecomment-1744645185) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +4. 🗣 Commented on [#33](https://github.com/eastgenomics/eris/pull/33#issuecomment-1744627119) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#34](https://github.com/eastgenomics/automated-archiving/pull/34#issuecomment-1744454392) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +6. 🗣 Commented on [#2](https://github.com/njzjz/nodejs-wheel/pull/2#issuecomment-1744057702) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +7. 🗣 Commented on [#304](https://github.com/DeMarcoLab/fibsem/pull/304#issuecomment-1744011230) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +8. 🗣 Commented on [#3](https://github.com/njzjz/nodejs-wheel/pull/3#issuecomment-1743877805) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +9. 🗣 Commented on [#16](https://github.com/munechika-koyo/cherab_phix/pull/16#issuecomment-1743815802) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) +10. 🗣 Commented on [#279](https://github.com/AdvancedPhotonSource/tike/pull/279#issuecomment-1743613486) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) From a4586b993bf3e593af891d725939f2ad29439009 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 14:38:10 +0000 Subject: [PATCH 0204/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4320bb98..6aabd4be 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1877](https://github.com/OpenSCAP/openscap/pull/1877#issuecomment-1744895214) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -2. 🗣 Commented on [#129](https://github.com/eastgenomics/dias_batch_running/pull/129#issuecomment-1744887071) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#128](https://github.com/eastgenomics/dias_batch_running/pull/128#issuecomment-1744645185) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -4. 🗣 Commented on [#33](https://github.com/eastgenomics/eris/pull/33#issuecomment-1744627119) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#34](https://github.com/eastgenomics/automated-archiving/pull/34#issuecomment-1744454392) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -6. 🗣 Commented on [#2](https://github.com/njzjz/nodejs-wheel/pull/2#issuecomment-1744057702) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -7. 🗣 Commented on [#304](https://github.com/DeMarcoLab/fibsem/pull/304#issuecomment-1744011230) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -8. 🗣 Commented on [#3](https://github.com/njzjz/nodejs-wheel/pull/3#issuecomment-1743877805) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -9. 🗣 Commented on [#16](https://github.com/munechika-koyo/cherab_phix/pull/16#issuecomment-1743815802) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) -10. 🗣 Commented on [#279](https://github.com/AdvancedPhotonSource/tike/pull/279#issuecomment-1743613486) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +1. 🗣 Commented on [#487](https://github.com/aramis-lab/clinicadl/pull/487#issuecomment-1745082519) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +2. 🗣 Commented on [#2](https://github.com/daVinci13/Exe2shell/pull/2#issuecomment-1745072823) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) +3. 🗣 Commented on [#1](https://github.com/daVinci13/Exe2shell/pull/1#issuecomment-1745072609) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) +4. 🗣 Commented on [#1877](https://github.com/OpenSCAP/openscap/pull/1877#issuecomment-1744895214) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +5. 🗣 Commented on [#129](https://github.com/eastgenomics/dias_batch_running/pull/129#issuecomment-1744887071) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#128](https://github.com/eastgenomics/dias_batch_running/pull/128#issuecomment-1744645185) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#33](https://github.com/eastgenomics/eris/pull/33#issuecomment-1744627119) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#34](https://github.com/eastgenomics/automated-archiving/pull/34#issuecomment-1744454392) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +9. 🗣 Commented on [#2](https://github.com/njzjz/nodejs-wheel/pull/2#issuecomment-1744057702) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +10. 🗣 Commented on [#304](https://github.com/DeMarcoLab/fibsem/pull/304#issuecomment-1744011230) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) From 92c4255d88a1b2f3fe01661ee15c36d8e701ad50 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 16:21:31 +0000 Subject: [PATCH 0205/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6aabd4be..96f0f75a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#487](https://github.com/aramis-lab/clinicadl/pull/487#issuecomment-1745082519) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -2. 🗣 Commented on [#2](https://github.com/daVinci13/Exe2shell/pull/2#issuecomment-1745072823) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) -3. 🗣 Commented on [#1](https://github.com/daVinci13/Exe2shell/pull/1#issuecomment-1745072609) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) -4. 🗣 Commented on [#1877](https://github.com/OpenSCAP/openscap/pull/1877#issuecomment-1744895214) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -5. 🗣 Commented on [#129](https://github.com/eastgenomics/dias_batch_running/pull/129#issuecomment-1744887071) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#128](https://github.com/eastgenomics/dias_batch_running/pull/128#issuecomment-1744645185) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#33](https://github.com/eastgenomics/eris/pull/33#issuecomment-1744627119) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#34](https://github.com/eastgenomics/automated-archiving/pull/34#issuecomment-1744454392) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -9. 🗣 Commented on [#2](https://github.com/njzjz/nodejs-wheel/pull/2#issuecomment-1744057702) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -10. 🗣 Commented on [#304](https://github.com/DeMarcoLab/fibsem/pull/304#issuecomment-1744011230) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +1. 🗣 Commented on [#856](https://github.com/ToFuProject/tofu/pull/856#issuecomment-1745239122) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#487](https://github.com/aramis-lab/clinicadl/pull/487#issuecomment-1745082519) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +3. 🗣 Commented on [#2](https://github.com/daVinci13/Exe2shell/pull/2#issuecomment-1745072823) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) +4. 🗣 Commented on [#1](https://github.com/daVinci13/Exe2shell/pull/1#issuecomment-1745072609) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) +5. 🗣 Commented on [#1877](https://github.com/OpenSCAP/openscap/pull/1877#issuecomment-1744895214) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +6. 🗣 Commented on [#129](https://github.com/eastgenomics/dias_batch_running/pull/129#issuecomment-1744887071) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#128](https://github.com/eastgenomics/dias_batch_running/pull/128#issuecomment-1744645185) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#33](https://github.com/eastgenomics/eris/pull/33#issuecomment-1744627119) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#34](https://github.com/eastgenomics/automated-archiving/pull/34#issuecomment-1744454392) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +10. 🗣 Commented on [#2](https://github.com/njzjz/nodejs-wheel/pull/2#issuecomment-1744057702) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) From b01c6ebc149cc8ba004983ac90cf24edd1b45ed2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 18:21:29 +0000 Subject: [PATCH 0206/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 96f0f75a..7e48790f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#856](https://github.com/ToFuProject/tofu/pull/856#issuecomment-1745239122) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#487](https://github.com/aramis-lab/clinicadl/pull/487#issuecomment-1745082519) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -3. 🗣 Commented on [#2](https://github.com/daVinci13/Exe2shell/pull/2#issuecomment-1745072823) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) -4. 🗣 Commented on [#1](https://github.com/daVinci13/Exe2shell/pull/1#issuecomment-1745072609) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) -5. 🗣 Commented on [#1877](https://github.com/OpenSCAP/openscap/pull/1877#issuecomment-1744895214) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -6. 🗣 Commented on [#129](https://github.com/eastgenomics/dias_batch_running/pull/129#issuecomment-1744887071) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#128](https://github.com/eastgenomics/dias_batch_running/pull/128#issuecomment-1744645185) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#33](https://github.com/eastgenomics/eris/pull/33#issuecomment-1744627119) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#34](https://github.com/eastgenomics/automated-archiving/pull/34#issuecomment-1744454392) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -10. 🗣 Commented on [#2](https://github.com/njzjz/nodejs-wheel/pull/2#issuecomment-1744057702) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +1. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745466425) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#856](https://github.com/ToFuProject/tofu/pull/856#issuecomment-1745239122) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#487](https://github.com/aramis-lab/clinicadl/pull/487#issuecomment-1745082519) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +4. 🗣 Commented on [#2](https://github.com/daVinci13/Exe2shell/pull/2#issuecomment-1745072823) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) +5. 🗣 Commented on [#1](https://github.com/daVinci13/Exe2shell/pull/1#issuecomment-1745072609) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) +6. 🗣 Commented on [#1877](https://github.com/OpenSCAP/openscap/pull/1877#issuecomment-1744895214) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +7. 🗣 Commented on [#129](https://github.com/eastgenomics/dias_batch_running/pull/129#issuecomment-1744887071) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#128](https://github.com/eastgenomics/dias_batch_running/pull/128#issuecomment-1744645185) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#33](https://github.com/eastgenomics/eris/pull/33#issuecomment-1744627119) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#34](https://github.com/eastgenomics/automated-archiving/pull/34#issuecomment-1744454392) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) From ca4984b29ebe31dd8f038d04422d020679d38f3a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 19:37:35 +0000 Subject: [PATCH 0207/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7e48790f..339bd44c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745466425) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#856](https://github.com/ToFuProject/tofu/pull/856#issuecomment-1745239122) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#487](https://github.com/aramis-lab/clinicadl/pull/487#issuecomment-1745082519) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -4. 🗣 Commented on [#2](https://github.com/daVinci13/Exe2shell/pull/2#issuecomment-1745072823) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) -5. 🗣 Commented on [#1](https://github.com/daVinci13/Exe2shell/pull/1#issuecomment-1745072609) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) -6. 🗣 Commented on [#1877](https://github.com/OpenSCAP/openscap/pull/1877#issuecomment-1744895214) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -7. 🗣 Commented on [#129](https://github.com/eastgenomics/dias_batch_running/pull/129#issuecomment-1744887071) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#128](https://github.com/eastgenomics/dias_batch_running/pull/128#issuecomment-1744645185) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#33](https://github.com/eastgenomics/eris/pull/33#issuecomment-1744627119) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#34](https://github.com/eastgenomics/automated-archiving/pull/34#issuecomment-1744454392) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +1. 🗣 Commented on [#316](https://github.com/nipreps/nibabies/pull/316#issuecomment-1745600287) in [nipreps/nibabies](https://github.com/nipreps/nibabies) +2. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745466425) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#856](https://github.com/ToFuProject/tofu/pull/856#issuecomment-1745239122) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#487](https://github.com/aramis-lab/clinicadl/pull/487#issuecomment-1745082519) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +5. 🗣 Commented on [#2](https://github.com/daVinci13/Exe2shell/pull/2#issuecomment-1745072823) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) +6. 🗣 Commented on [#1](https://github.com/daVinci13/Exe2shell/pull/1#issuecomment-1745072609) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) +7. 🗣 Commented on [#1877](https://github.com/OpenSCAP/openscap/pull/1877#issuecomment-1744895214) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +8. 🗣 Commented on [#129](https://github.com/eastgenomics/dias_batch_running/pull/129#issuecomment-1744887071) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#128](https://github.com/eastgenomics/dias_batch_running/pull/128#issuecomment-1744645185) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#33](https://github.com/eastgenomics/eris/pull/33#issuecomment-1744627119) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 04963c5be825d38af5c8e5f1da4926fe624497ba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 20:15:50 +0000 Subject: [PATCH 0208/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 339bd44c..7424dc66 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#316](https://github.com/nipreps/nibabies/pull/316#issuecomment-1745600287) in [nipreps/nibabies](https://github.com/nipreps/nibabies) -2. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745466425) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#856](https://github.com/ToFuProject/tofu/pull/856#issuecomment-1745239122) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#487](https://github.com/aramis-lab/clinicadl/pull/487#issuecomment-1745082519) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -5. 🗣 Commented on [#2](https://github.com/daVinci13/Exe2shell/pull/2#issuecomment-1745072823) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) -6. 🗣 Commented on [#1](https://github.com/daVinci13/Exe2shell/pull/1#issuecomment-1745072609) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) -7. 🗣 Commented on [#1877](https://github.com/OpenSCAP/openscap/pull/1877#issuecomment-1744895214) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -8. 🗣 Commented on [#129](https://github.com/eastgenomics/dias_batch_running/pull/129#issuecomment-1744887071) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#128](https://github.com/eastgenomics/dias_batch_running/pull/128#issuecomment-1744645185) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#33](https://github.com/eastgenomics/eris/pull/33#issuecomment-1744627119) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745638783) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#316](https://github.com/nipreps/nibabies/pull/316#issuecomment-1745600287) in [nipreps/nibabies](https://github.com/nipreps/nibabies) +3. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745466425) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#856](https://github.com/ToFuProject/tofu/pull/856#issuecomment-1745239122) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#487](https://github.com/aramis-lab/clinicadl/pull/487#issuecomment-1745082519) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +6. 🗣 Commented on [#2](https://github.com/daVinci13/Exe2shell/pull/2#issuecomment-1745072823) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) +7. 🗣 Commented on [#1](https://github.com/daVinci13/Exe2shell/pull/1#issuecomment-1745072609) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) +8. 🗣 Commented on [#1877](https://github.com/OpenSCAP/openscap/pull/1877#issuecomment-1744895214) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +9. 🗣 Commented on [#129](https://github.com/eastgenomics/dias_batch_running/pull/129#issuecomment-1744887071) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#128](https://github.com/eastgenomics/dias_batch_running/pull/128#issuecomment-1744645185) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From 49742b841aac8fd7a6b8e430bfe3417aef5b92d5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 20:37:08 +0000 Subject: [PATCH 0209/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7424dc66..a4444146 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745638783) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#316](https://github.com/nipreps/nibabies/pull/316#issuecomment-1745600287) in [nipreps/nibabies](https://github.com/nipreps/nibabies) -3. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745466425) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#856](https://github.com/ToFuProject/tofu/pull/856#issuecomment-1745239122) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#487](https://github.com/aramis-lab/clinicadl/pull/487#issuecomment-1745082519) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -6. 🗣 Commented on [#2](https://github.com/daVinci13/Exe2shell/pull/2#issuecomment-1745072823) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) -7. 🗣 Commented on [#1](https://github.com/daVinci13/Exe2shell/pull/1#issuecomment-1745072609) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) -8. 🗣 Commented on [#1877](https://github.com/OpenSCAP/openscap/pull/1877#issuecomment-1744895214) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -9. 🗣 Commented on [#129](https://github.com/eastgenomics/dias_batch_running/pull/129#issuecomment-1744887071) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#128](https://github.com/eastgenomics/dias_batch_running/pull/128#issuecomment-1744645185) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#52](https://github.com/spacetelescope/jwst_coronagraph_visibility/pull/52#issuecomment-1745669372) in [spacetelescope/jwst_coronagraph_visibility](https://github.com/spacetelescope/jwst_coronagraph_visibility) +2. 🗣 Commented on [#1370](https://github.com/spacetelescope/jwql/pull/1370#issuecomment-1745667178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745638783) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#316](https://github.com/nipreps/nibabies/pull/316#issuecomment-1745600287) in [nipreps/nibabies](https://github.com/nipreps/nibabies) +5. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745466425) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#856](https://github.com/ToFuProject/tofu/pull/856#issuecomment-1745239122) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#487](https://github.com/aramis-lab/clinicadl/pull/487#issuecomment-1745082519) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +8. 🗣 Commented on [#2](https://github.com/daVinci13/Exe2shell/pull/2#issuecomment-1745072823) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) +9. 🗣 Commented on [#1](https://github.com/daVinci13/Exe2shell/pull/1#issuecomment-1745072609) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) +10. 🗣 Commented on [#1877](https://github.com/OpenSCAP/openscap/pull/1877#issuecomment-1744895214) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) From b55927ce761a010105bfab205a11874b32db6771 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 05:14:52 +0000 Subject: [PATCH 0210/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a4444146..60144697 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#52](https://github.com/spacetelescope/jwst_coronagraph_visibility/pull/52#issuecomment-1745669372) in [spacetelescope/jwst_coronagraph_visibility](https://github.com/spacetelescope/jwst_coronagraph_visibility) -2. 🗣 Commented on [#1370](https://github.com/spacetelescope/jwql/pull/1370#issuecomment-1745667178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745638783) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#316](https://github.com/nipreps/nibabies/pull/316#issuecomment-1745600287) in [nipreps/nibabies](https://github.com/nipreps/nibabies) -5. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745466425) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#856](https://github.com/ToFuProject/tofu/pull/856#issuecomment-1745239122) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#487](https://github.com/aramis-lab/clinicadl/pull/487#issuecomment-1745082519) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -8. 🗣 Commented on [#2](https://github.com/daVinci13/Exe2shell/pull/2#issuecomment-1745072823) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) -9. 🗣 Commented on [#1](https://github.com/daVinci13/Exe2shell/pull/1#issuecomment-1745072609) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) -10. 🗣 Commented on [#1877](https://github.com/OpenSCAP/openscap/pull/1877#issuecomment-1744895214) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +1. 🗣 Commented on [#2923](https://github.com/dipy/dipy/pull/2923#issuecomment-1746149221) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#305](https://github.com/DeMarcoLab/fibsem/pull/305#issuecomment-1746135546) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +3. 🗣 Commented on [#52](https://github.com/spacetelescope/jwst_coronagraph_visibility/pull/52#issuecomment-1745669372) in [spacetelescope/jwst_coronagraph_visibility](https://github.com/spacetelescope/jwst_coronagraph_visibility) +4. 🗣 Commented on [#1370](https://github.com/spacetelescope/jwql/pull/1370#issuecomment-1745667178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745638783) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#316](https://github.com/nipreps/nibabies/pull/316#issuecomment-1745600287) in [nipreps/nibabies](https://github.com/nipreps/nibabies) +7. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745466425) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#856](https://github.com/ToFuProject/tofu/pull/856#issuecomment-1745239122) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#487](https://github.com/aramis-lab/clinicadl/pull/487#issuecomment-1745082519) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +10. 🗣 Commented on [#2](https://github.com/daVinci13/Exe2shell/pull/2#issuecomment-1745072823) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) From 9b6f295b5daef6f67c15b1467b3c266823dd5022 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 07:14:50 +0000 Subject: [PATCH 0211/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 60144697..e84fb8a5 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2923](https://github.com/dipy/dipy/pull/2923#issuecomment-1746149221) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#305](https://github.com/DeMarcoLab/fibsem/pull/305#issuecomment-1746135546) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -3. 🗣 Commented on [#52](https://github.com/spacetelescope/jwst_coronagraph_visibility/pull/52#issuecomment-1745669372) in [spacetelescope/jwst_coronagraph_visibility](https://github.com/spacetelescope/jwst_coronagraph_visibility) -4. 🗣 Commented on [#1370](https://github.com/spacetelescope/jwql/pull/1370#issuecomment-1745667178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745638783) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#316](https://github.com/nipreps/nibabies/pull/316#issuecomment-1745600287) in [nipreps/nibabies](https://github.com/nipreps/nibabies) -7. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745466425) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#856](https://github.com/ToFuProject/tofu/pull/856#issuecomment-1745239122) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#487](https://github.com/aramis-lab/clinicadl/pull/487#issuecomment-1745082519) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -10. 🗣 Commented on [#2](https://github.com/daVinci13/Exe2shell/pull/2#issuecomment-1745072823) in [daVinci13/Exe2shell](https://github.com/daVinci13/Exe2shell) +1. 🗣 Commented on [#2](https://github.com/GenevieveBuckley/micro-sam/pull/2#issuecomment-1746245313) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +2. 🗣 Commented on [#2923](https://github.com/dipy/dipy/pull/2923#issuecomment-1746149221) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#305](https://github.com/DeMarcoLab/fibsem/pull/305#issuecomment-1746135546) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +4. 🗣 Commented on [#52](https://github.com/spacetelescope/jwst_coronagraph_visibility/pull/52#issuecomment-1745669372) in [spacetelescope/jwst_coronagraph_visibility](https://github.com/spacetelescope/jwst_coronagraph_visibility) +5. 🗣 Commented on [#1370](https://github.com/spacetelescope/jwql/pull/1370#issuecomment-1745667178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745638783) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#316](https://github.com/nipreps/nibabies/pull/316#issuecomment-1745600287) in [nipreps/nibabies](https://github.com/nipreps/nibabies) +8. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745466425) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#856](https://github.com/ToFuProject/tofu/pull/856#issuecomment-1745239122) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#487](https://github.com/aramis-lab/clinicadl/pull/487#issuecomment-1745082519) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) From 5bfd8e9f7e62e7ad73b9d12b64254ffcc13a77b2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 09:37:22 +0000 Subject: [PATCH 0212/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e84fb8a5..549d64c1 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2](https://github.com/GenevieveBuckley/micro-sam/pull/2#issuecomment-1746245313) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -2. 🗣 Commented on [#2923](https://github.com/dipy/dipy/pull/2923#issuecomment-1746149221) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#305](https://github.com/DeMarcoLab/fibsem/pull/305#issuecomment-1746135546) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -4. 🗣 Commented on [#52](https://github.com/spacetelescope/jwst_coronagraph_visibility/pull/52#issuecomment-1745669372) in [spacetelescope/jwst_coronagraph_visibility](https://github.com/spacetelescope/jwst_coronagraph_visibility) -5. 🗣 Commented on [#1370](https://github.com/spacetelescope/jwql/pull/1370#issuecomment-1745667178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745638783) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#316](https://github.com/nipreps/nibabies/pull/316#issuecomment-1745600287) in [nipreps/nibabies](https://github.com/nipreps/nibabies) -8. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745466425) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#856](https://github.com/ToFuProject/tofu/pull/856#issuecomment-1745239122) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#487](https://github.com/aramis-lab/clinicadl/pull/487#issuecomment-1745082519) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +1. 🗣 Commented on [#130](https://github.com/eastgenomics/dias_batch_running/pull/130#issuecomment-1746493911) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#2](https://github.com/GenevieveBuckley/micro-sam/pull/2#issuecomment-1746245313) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +3. 🗣 Commented on [#2923](https://github.com/dipy/dipy/pull/2923#issuecomment-1746149221) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#305](https://github.com/DeMarcoLab/fibsem/pull/305#issuecomment-1746135546) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +5. 🗣 Commented on [#52](https://github.com/spacetelescope/jwst_coronagraph_visibility/pull/52#issuecomment-1745669372) in [spacetelescope/jwst_coronagraph_visibility](https://github.com/spacetelescope/jwst_coronagraph_visibility) +6. 🗣 Commented on [#1370](https://github.com/spacetelescope/jwql/pull/1370#issuecomment-1745667178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745638783) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#316](https://github.com/nipreps/nibabies/pull/316#issuecomment-1745600287) in [nipreps/nibabies](https://github.com/nipreps/nibabies) +9. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745466425) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#856](https://github.com/ToFuProject/tofu/pull/856#issuecomment-1745239122) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From b07c2738b249793d74e99905d6cc81c6ac154cf7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 10:37:45 +0000 Subject: [PATCH 0213/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 549d64c1..06387413 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#130](https://github.com/eastgenomics/dias_batch_running/pull/130#issuecomment-1746493911) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#2](https://github.com/GenevieveBuckley/micro-sam/pull/2#issuecomment-1746245313) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -3. 🗣 Commented on [#2923](https://github.com/dipy/dipy/pull/2923#issuecomment-1746149221) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#305](https://github.com/DeMarcoLab/fibsem/pull/305#issuecomment-1746135546) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -5. 🗣 Commented on [#52](https://github.com/spacetelescope/jwst_coronagraph_visibility/pull/52#issuecomment-1745669372) in [spacetelescope/jwst_coronagraph_visibility](https://github.com/spacetelescope/jwst_coronagraph_visibility) -6. 🗣 Commented on [#1370](https://github.com/spacetelescope/jwql/pull/1370#issuecomment-1745667178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745638783) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#316](https://github.com/nipreps/nibabies/pull/316#issuecomment-1745600287) in [nipreps/nibabies](https://github.com/nipreps/nibabies) -9. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745466425) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#856](https://github.com/ToFuProject/tofu/pull/856#issuecomment-1745239122) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#571](https://github.com/OpenFreeEnergy/openfe/pull/571#issuecomment-1746578794) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#130](https://github.com/eastgenomics/dias_batch_running/pull/130#issuecomment-1746493911) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#2](https://github.com/GenevieveBuckley/micro-sam/pull/2#issuecomment-1746245313) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +4. 🗣 Commented on [#2923](https://github.com/dipy/dipy/pull/2923#issuecomment-1746149221) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#305](https://github.com/DeMarcoLab/fibsem/pull/305#issuecomment-1746135546) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +6. 🗣 Commented on [#52](https://github.com/spacetelescope/jwst_coronagraph_visibility/pull/52#issuecomment-1745669372) in [spacetelescope/jwst_coronagraph_visibility](https://github.com/spacetelescope/jwst_coronagraph_visibility) +7. 🗣 Commented on [#1370](https://github.com/spacetelescope/jwql/pull/1370#issuecomment-1745667178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745638783) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#316](https://github.com/nipreps/nibabies/pull/316#issuecomment-1745600287) in [nipreps/nibabies](https://github.com/nipreps/nibabies) +10. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745466425) in [politeauthority/cver](https://github.com/politeauthority/cver) From efebeedd19bd462a957828ac77f6430737765658 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 13:21:47 +0000 Subject: [PATCH 0214/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 06387413..468a55da 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#571](https://github.com/OpenFreeEnergy/openfe/pull/571#issuecomment-1746578794) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#130](https://github.com/eastgenomics/dias_batch_running/pull/130#issuecomment-1746493911) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#2](https://github.com/GenevieveBuckley/micro-sam/pull/2#issuecomment-1746245313) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -4. 🗣 Commented on [#2923](https://github.com/dipy/dipy/pull/2923#issuecomment-1746149221) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#305](https://github.com/DeMarcoLab/fibsem/pull/305#issuecomment-1746135546) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -6. 🗣 Commented on [#52](https://github.com/spacetelescope/jwst_coronagraph_visibility/pull/52#issuecomment-1745669372) in [spacetelescope/jwst_coronagraph_visibility](https://github.com/spacetelescope/jwst_coronagraph_visibility) -7. 🗣 Commented on [#1370](https://github.com/spacetelescope/jwql/pull/1370#issuecomment-1745667178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745638783) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#316](https://github.com/nipreps/nibabies/pull/316#issuecomment-1745600287) in [nipreps/nibabies](https://github.com/nipreps/nibabies) -10. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745466425) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#5229](https://github.com/rhinstaller/anaconda/pull/5229#issuecomment-1746833616) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#37](https://github.com/eastgenomics/eris/pull/37#issuecomment-1746820292) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#571](https://github.com/OpenFreeEnergy/openfe/pull/571#issuecomment-1746578794) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#130](https://github.com/eastgenomics/dias_batch_running/pull/130#issuecomment-1746493911) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#2](https://github.com/GenevieveBuckley/micro-sam/pull/2#issuecomment-1746245313) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +6. 🗣 Commented on [#2923](https://github.com/dipy/dipy/pull/2923#issuecomment-1746149221) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#305](https://github.com/DeMarcoLab/fibsem/pull/305#issuecomment-1746135546) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +8. 🗣 Commented on [#52](https://github.com/spacetelescope/jwst_coronagraph_visibility/pull/52#issuecomment-1745669372) in [spacetelescope/jwst_coronagraph_visibility](https://github.com/spacetelescope/jwst_coronagraph_visibility) +9. 🗣 Commented on [#1370](https://github.com/spacetelescope/jwql/pull/1370#issuecomment-1745667178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745638783) in [politeauthority/cver](https://github.com/politeauthority/cver) From ef82c2ca50a85e1df6972c3b99a8a6d3ba319003 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 13:37:28 +0000 Subject: [PATCH 0215/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 468a55da..92c72c6b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5229](https://github.com/rhinstaller/anaconda/pull/5229#issuecomment-1746833616) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#37](https://github.com/eastgenomics/eris/pull/37#issuecomment-1746820292) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#571](https://github.com/OpenFreeEnergy/openfe/pull/571#issuecomment-1746578794) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#130](https://github.com/eastgenomics/dias_batch_running/pull/130#issuecomment-1746493911) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#2](https://github.com/GenevieveBuckley/micro-sam/pull/2#issuecomment-1746245313) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -6. 🗣 Commented on [#2923](https://github.com/dipy/dipy/pull/2923#issuecomment-1746149221) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#305](https://github.com/DeMarcoLab/fibsem/pull/305#issuecomment-1746135546) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -8. 🗣 Commented on [#52](https://github.com/spacetelescope/jwst_coronagraph_visibility/pull/52#issuecomment-1745669372) in [spacetelescope/jwst_coronagraph_visibility](https://github.com/spacetelescope/jwst_coronagraph_visibility) -9. 🗣 Commented on [#1370](https://github.com/spacetelescope/jwql/pull/1370#issuecomment-1745667178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#71](https://github.com/politeauthority/cver/pull/71#issuecomment-1745638783) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#38](https://github.com/eastgenomics/eris/pull/38#issuecomment-1746883340) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#5229](https://github.com/rhinstaller/anaconda/pull/5229#issuecomment-1746833616) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#37](https://github.com/eastgenomics/eris/pull/37#issuecomment-1746820292) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#571](https://github.com/OpenFreeEnergy/openfe/pull/571#issuecomment-1746578794) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#130](https://github.com/eastgenomics/dias_batch_running/pull/130#issuecomment-1746493911) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#2](https://github.com/GenevieveBuckley/micro-sam/pull/2#issuecomment-1746245313) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +7. 🗣 Commented on [#2923](https://github.com/dipy/dipy/pull/2923#issuecomment-1746149221) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#305](https://github.com/DeMarcoLab/fibsem/pull/305#issuecomment-1746135546) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +9. 🗣 Commented on [#52](https://github.com/spacetelescope/jwst_coronagraph_visibility/pull/52#issuecomment-1745669372) in [spacetelescope/jwst_coronagraph_visibility](https://github.com/spacetelescope/jwst_coronagraph_visibility) +10. 🗣 Commented on [#1370](https://github.com/spacetelescope/jwql/pull/1370#issuecomment-1745667178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From f391143c62ded1bc1984d29bc41499d7accb56d4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 14:15:53 +0000 Subject: [PATCH 0216/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 92c72c6b..e767b720 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#38](https://github.com/eastgenomics/eris/pull/38#issuecomment-1746883340) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#5229](https://github.com/rhinstaller/anaconda/pull/5229#issuecomment-1746833616) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#37](https://github.com/eastgenomics/eris/pull/37#issuecomment-1746820292) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#571](https://github.com/OpenFreeEnergy/openfe/pull/571#issuecomment-1746578794) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#130](https://github.com/eastgenomics/dias_batch_running/pull/130#issuecomment-1746493911) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#2](https://github.com/GenevieveBuckley/micro-sam/pull/2#issuecomment-1746245313) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -7. 🗣 Commented on [#2923](https://github.com/dipy/dipy/pull/2923#issuecomment-1746149221) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#305](https://github.com/DeMarcoLab/fibsem/pull/305#issuecomment-1746135546) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -9. 🗣 Commented on [#52](https://github.com/spacetelescope/jwst_coronagraph_visibility/pull/52#issuecomment-1745669372) in [spacetelescope/jwst_coronagraph_visibility](https://github.com/spacetelescope/jwst_coronagraph_visibility) -10. 🗣 Commented on [#1370](https://github.com/spacetelescope/jwql/pull/1370#issuecomment-1745667178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#5230](https://github.com/rhinstaller/anaconda/pull/5230#issuecomment-1746936731) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#38](https://github.com/eastgenomics/eris/pull/38#issuecomment-1746883340) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#5229](https://github.com/rhinstaller/anaconda/pull/5229#issuecomment-1746833616) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#37](https://github.com/eastgenomics/eris/pull/37#issuecomment-1746820292) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#571](https://github.com/OpenFreeEnergy/openfe/pull/571#issuecomment-1746578794) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#130](https://github.com/eastgenomics/dias_batch_running/pull/130#issuecomment-1746493911) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#2](https://github.com/GenevieveBuckley/micro-sam/pull/2#issuecomment-1746245313) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +9. 🗣 Commented on [#2923](https://github.com/dipy/dipy/pull/2923#issuecomment-1746149221) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#305](https://github.com/DeMarcoLab/fibsem/pull/305#issuecomment-1746135546) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) From 3b1aa9f156e4c9e2afad1ad75ff724e8af6cff90 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 15:17:24 +0000 Subject: [PATCH 0217/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e767b720..5f29e69c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#5230](https://github.com/rhinstaller/anaconda/pull/5230#issuecomment-1746936731) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#38](https://github.com/eastgenomics/eris/pull/38#issuecomment-1746883340) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#5229](https://github.com/rhinstaller/anaconda/pull/5229#issuecomment-1746833616) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#37](https://github.com/eastgenomics/eris/pull/37#issuecomment-1746820292) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#571](https://github.com/OpenFreeEnergy/openfe/pull/571#issuecomment-1746578794) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#130](https://github.com/eastgenomics/dias_batch_running/pull/130#issuecomment-1746493911) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#2](https://github.com/GenevieveBuckley/micro-sam/pull/2#issuecomment-1746245313) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -9. 🗣 Commented on [#2923](https://github.com/dipy/dipy/pull/2923#issuecomment-1746149221) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#305](https://github.com/DeMarcoLab/fibsem/pull/305#issuecomment-1746135546) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +1. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#5230](https://github.com/rhinstaller/anaconda/pull/5230#issuecomment-1746936731) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#38](https://github.com/eastgenomics/eris/pull/38#issuecomment-1746883340) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#5229](https://github.com/rhinstaller/anaconda/pull/5229#issuecomment-1746833616) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#37](https://github.com/eastgenomics/eris/pull/37#issuecomment-1746820292) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#571](https://github.com/OpenFreeEnergy/openfe/pull/571#issuecomment-1746578794) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#130](https://github.com/eastgenomics/dias_batch_running/pull/130#issuecomment-1746493911) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#2](https://github.com/GenevieveBuckley/micro-sam/pull/2#issuecomment-1746245313) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +10. 🗣 Commented on [#2923](https://github.com/dipy/dipy/pull/2923#issuecomment-1746149221) in [dipy/dipy](https://github.com/dipy/dipy) From 56372d581edf83e898775b282bad2829ac0f8bac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 16:21:54 +0000 Subject: [PATCH 0218/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5f29e69c..4ad0da79 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#5230](https://github.com/rhinstaller/anaconda/pull/5230#issuecomment-1746936731) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#38](https://github.com/eastgenomics/eris/pull/38#issuecomment-1746883340) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#5229](https://github.com/rhinstaller/anaconda/pull/5229#issuecomment-1746833616) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#37](https://github.com/eastgenomics/eris/pull/37#issuecomment-1746820292) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#571](https://github.com/OpenFreeEnergy/openfe/pull/571#issuecomment-1746578794) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#130](https://github.com/eastgenomics/dias_batch_running/pull/130#issuecomment-1746493911) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#2](https://github.com/GenevieveBuckley/micro-sam/pull/2#issuecomment-1746245313) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -10. 🗣 Commented on [#2923](https://github.com/dipy/dipy/pull/2923#issuecomment-1746149221) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#5230](https://github.com/rhinstaller/anaconda/pull/5230#issuecomment-1746936731) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#38](https://github.com/eastgenomics/eris/pull/38#issuecomment-1746883340) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#5229](https://github.com/rhinstaller/anaconda/pull/5229#issuecomment-1746833616) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#37](https://github.com/eastgenomics/eris/pull/37#issuecomment-1746820292) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#571](https://github.com/OpenFreeEnergy/openfe/pull/571#issuecomment-1746578794) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#130](https://github.com/eastgenomics/dias_batch_running/pull/130#issuecomment-1746493911) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#2](https://github.com/GenevieveBuckley/micro-sam/pull/2#issuecomment-1746245313) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) From a3544eeb1e06855ab4ff696c5ca5daf3ab738bed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 16:40:31 +0000 Subject: [PATCH 0219/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4ad0da79..f6273208 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#5230](https://github.com/rhinstaller/anaconda/pull/5230#issuecomment-1746936731) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#38](https://github.com/eastgenomics/eris/pull/38#issuecomment-1746883340) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#5229](https://github.com/rhinstaller/anaconda/pull/5229#issuecomment-1746833616) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#37](https://github.com/eastgenomics/eris/pull/37#issuecomment-1746820292) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#571](https://github.com/OpenFreeEnergy/openfe/pull/571#issuecomment-1746578794) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#130](https://github.com/eastgenomics/dias_batch_running/pull/130#issuecomment-1746493911) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#2](https://github.com/GenevieveBuckley/micro-sam/pull/2#issuecomment-1746245313) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +1. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) +2. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +4. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#5230](https://github.com/rhinstaller/anaconda/pull/5230#issuecomment-1746936731) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#38](https://github.com/eastgenomics/eris/pull/38#issuecomment-1746883340) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#5229](https://github.com/rhinstaller/anaconda/pull/5229#issuecomment-1746833616) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#37](https://github.com/eastgenomics/eris/pull/37#issuecomment-1746820292) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#571](https://github.com/OpenFreeEnergy/openfe/pull/571#issuecomment-1746578794) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#130](https://github.com/eastgenomics/dias_batch_running/pull/130#issuecomment-1746493911) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From e2482a93f6be5918e2ed6b4b13594045f1f4f833 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 19:37:19 +0000 Subject: [PATCH 0220/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f6273208..1363f410 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) -2. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -4. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#5230](https://github.com/rhinstaller/anaconda/pull/5230#issuecomment-1746936731) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#38](https://github.com/eastgenomics/eris/pull/38#issuecomment-1746883340) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#5229](https://github.com/rhinstaller/anaconda/pull/5229#issuecomment-1746833616) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#37](https://github.com/eastgenomics/eris/pull/37#issuecomment-1746820292) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#571](https://github.com/OpenFreeEnergy/openfe/pull/571#issuecomment-1746578794) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#130](https://github.com/eastgenomics/dias_batch_running/pull/130#issuecomment-1746493911) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#74](https://github.com/politeauthority/cver/pull/74#issuecomment-1747499863) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) +3. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#5230](https://github.com/rhinstaller/anaconda/pull/5230#issuecomment-1746936731) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#38](https://github.com/eastgenomics/eris/pull/38#issuecomment-1746883340) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#5229](https://github.com/rhinstaller/anaconda/pull/5229#issuecomment-1746833616) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#37](https://github.com/eastgenomics/eris/pull/37#issuecomment-1746820292) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#571](https://github.com/OpenFreeEnergy/openfe/pull/571#issuecomment-1746578794) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 628a06f77171c779b786bad7a1484868f30bcc63 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 05:37:19 +0000 Subject: [PATCH 0221/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1363f410..f4f1a949 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#74](https://github.com/politeauthority/cver/pull/74#issuecomment-1747499863) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) -3. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#5230](https://github.com/rhinstaller/anaconda/pull/5230#issuecomment-1746936731) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#38](https://github.com/eastgenomics/eris/pull/38#issuecomment-1746883340) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#5229](https://github.com/rhinstaller/anaconda/pull/5229#issuecomment-1746833616) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#37](https://github.com/eastgenomics/eris/pull/37#issuecomment-1746820292) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#571](https://github.com/OpenFreeEnergy/openfe/pull/571#issuecomment-1746578794) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#858](https://github.com/ToFuProject/tofu/pull/858#issuecomment-1748052931) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#74](https://github.com/politeauthority/cver/pull/74#issuecomment-1747499863) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) +4. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#5230](https://github.com/rhinstaller/anaconda/pull/5230#issuecomment-1746936731) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#38](https://github.com/eastgenomics/eris/pull/38#issuecomment-1746883340) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#5229](https://github.com/rhinstaller/anaconda/pull/5229#issuecomment-1746833616) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#37](https://github.com/eastgenomics/eris/pull/37#issuecomment-1746820292) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From c010bc19bd9b6fe143beaeb0c58ef19c48c42977 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 06:21:22 +0000 Subject: [PATCH 0222/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f4f1a949..8f85b4c5 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#858](https://github.com/ToFuProject/tofu/pull/858#issuecomment-1748052931) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#74](https://github.com/politeauthority/cver/pull/74#issuecomment-1747499863) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) -4. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#5230](https://github.com/rhinstaller/anaconda/pull/5230#issuecomment-1746936731) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#38](https://github.com/eastgenomics/eris/pull/38#issuecomment-1746883340) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#5229](https://github.com/rhinstaller/anaconda/pull/5229#issuecomment-1746833616) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#37](https://github.com/eastgenomics/eris/pull/37#issuecomment-1746820292) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#3](https://github.com/njzjz/zhihubackup/pull/3#issuecomment-1748146298) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +2. 🗣 Commented on [#858](https://github.com/ToFuProject/tofu/pull/858#issuecomment-1748052931) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#74](https://github.com/politeauthority/cver/pull/74#issuecomment-1747499863) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) +5. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#5230](https://github.com/rhinstaller/anaconda/pull/5230#issuecomment-1746936731) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#38](https://github.com/eastgenomics/eris/pull/38#issuecomment-1746883340) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#5229](https://github.com/rhinstaller/anaconda/pull/5229#issuecomment-1746833616) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From b23b598a97d4e933c55971c621b0c2e927d892e6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 06:38:25 +0000 Subject: [PATCH 0223/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8f85b4c5..7585b704 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#3](https://github.com/njzjz/zhihubackup/pull/3#issuecomment-1748146298) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -2. 🗣 Commented on [#858](https://github.com/ToFuProject/tofu/pull/858#issuecomment-1748052931) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#74](https://github.com/politeauthority/cver/pull/74#issuecomment-1747499863) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) -5. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#5230](https://github.com/rhinstaller/anaconda/pull/5230#issuecomment-1746936731) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#38](https://github.com/eastgenomics/eris/pull/38#issuecomment-1746883340) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#5229](https://github.com/rhinstaller/anaconda/pull/5229#issuecomment-1746833616) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#4](https://github.com/njzjz/zhihubackup/pull/4#issuecomment-1748166033) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +2. 🗣 Commented on [#3](https://github.com/njzjz/zhihubackup/pull/3#issuecomment-1748146298) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +3. 🗣 Commented on [#858](https://github.com/ToFuProject/tofu/pull/858#issuecomment-1748052931) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#74](https://github.com/politeauthority/cver/pull/74#issuecomment-1747499863) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) +6. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#5230](https://github.com/rhinstaller/anaconda/pull/5230#issuecomment-1746936731) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#38](https://github.com/eastgenomics/eris/pull/38#issuecomment-1746883340) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From eb901badbb92bda19bb75918d691101254e356fc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 07:14:39 +0000 Subject: [PATCH 0224/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7585b704..de61e666 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4](https://github.com/njzjz/zhihubackup/pull/4#issuecomment-1748166033) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -2. 🗣 Commented on [#3](https://github.com/njzjz/zhihubackup/pull/3#issuecomment-1748146298) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -3. 🗣 Commented on [#858](https://github.com/ToFuProject/tofu/pull/858#issuecomment-1748052931) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#74](https://github.com/politeauthority/cver/pull/74#issuecomment-1747499863) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) -6. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#5230](https://github.com/rhinstaller/anaconda/pull/5230#issuecomment-1746936731) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#38](https://github.com/eastgenomics/eris/pull/38#issuecomment-1746883340) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#7](https://github.com/njzjz/zhihubackup/pull/7#issuecomment-1748188790) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +2. 🗣 Commented on [#4](https://github.com/njzjz/zhihubackup/pull/4#issuecomment-1748166033) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +3. 🗣 Commented on [#3](https://github.com/njzjz/zhihubackup/pull/3#issuecomment-1748146298) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +4. 🗣 Commented on [#858](https://github.com/ToFuProject/tofu/pull/858#issuecomment-1748052931) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#74](https://github.com/politeauthority/cver/pull/74#issuecomment-1747499863) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) +7. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#5230](https://github.com/rhinstaller/anaconda/pull/5230#issuecomment-1746936731) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 0c3f7284c90aad0411345a87cc8035387275f0f1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 07:37:18 +0000 Subject: [PATCH 0225/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index de61e666..1198b783 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#7](https://github.com/njzjz/zhihubackup/pull/7#issuecomment-1748188790) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -2. 🗣 Commented on [#4](https://github.com/njzjz/zhihubackup/pull/4#issuecomment-1748166033) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -3. 🗣 Commented on [#3](https://github.com/njzjz/zhihubackup/pull/3#issuecomment-1748146298) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -4. 🗣 Commented on [#858](https://github.com/ToFuProject/tofu/pull/858#issuecomment-1748052931) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#74](https://github.com/politeauthority/cver/pull/74#issuecomment-1747499863) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) -7. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#5230](https://github.com/rhinstaller/anaconda/pull/5230#issuecomment-1746936731) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#214](https://github.com/DevoInc/python-sdk/pull/214#issuecomment-1748236822) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) +2. 🗣 Commented on [#7](https://github.com/njzjz/zhihubackup/pull/7#issuecomment-1748188790) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +3. 🗣 Commented on [#4](https://github.com/njzjz/zhihubackup/pull/4#issuecomment-1748166033) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +4. 🗣 Commented on [#3](https://github.com/njzjz/zhihubackup/pull/3#issuecomment-1748146298) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +5. 🗣 Commented on [#858](https://github.com/ToFuProject/tofu/pull/858#issuecomment-1748052931) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#74](https://github.com/politeauthority/cver/pull/74#issuecomment-1747499863) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) +8. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From 99cd84e8880e5cc65d78fc644e1bb5812b3a8057 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 08:20:58 +0000 Subject: [PATCH 0226/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1198b783..55a78189 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#214](https://github.com/DevoInc/python-sdk/pull/214#issuecomment-1748236822) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) -2. 🗣 Commented on [#7](https://github.com/njzjz/zhihubackup/pull/7#issuecomment-1748188790) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -3. 🗣 Commented on [#4](https://github.com/njzjz/zhihubackup/pull/4#issuecomment-1748166033) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -4. 🗣 Commented on [#3](https://github.com/njzjz/zhihubackup/pull/3#issuecomment-1748146298) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -5. 🗣 Commented on [#858](https://github.com/ToFuProject/tofu/pull/858#issuecomment-1748052931) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#74](https://github.com/politeauthority/cver/pull/74#issuecomment-1747499863) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) -8. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#923](https://github.com/avaframe/AvaFrame/pull/923#issuecomment-1746945575) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#767](https://github.com/StingraySoftware/stingray/pull/767#issuecomment-1748299649) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +2. 🗣 Commented on [#214](https://github.com/DevoInc/python-sdk/pull/214#issuecomment-1748236822) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) +3. 🗣 Commented on [#7](https://github.com/njzjz/zhihubackup/pull/7#issuecomment-1748188790) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +4. 🗣 Commented on [#4](https://github.com/njzjz/zhihubackup/pull/4#issuecomment-1748166033) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +5. 🗣 Commented on [#3](https://github.com/njzjz/zhihubackup/pull/3#issuecomment-1748146298) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +6. 🗣 Commented on [#858](https://github.com/ToFuProject/tofu/pull/858#issuecomment-1748052931) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#74](https://github.com/politeauthority/cver/pull/74#issuecomment-1747499863) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) +9. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From 7d6a15b49c17b7b45169597d5943cc9e7bd4fd96 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 10:38:18 +0000 Subject: [PATCH 0227/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 55a78189..950b9da8 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#767](https://github.com/StingraySoftware/stingray/pull/767#issuecomment-1748299649) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -2. 🗣 Commented on [#214](https://github.com/DevoInc/python-sdk/pull/214#issuecomment-1748236822) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) -3. 🗣 Commented on [#7](https://github.com/njzjz/zhihubackup/pull/7#issuecomment-1748188790) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -4. 🗣 Commented on [#4](https://github.com/njzjz/zhihubackup/pull/4#issuecomment-1748166033) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -5. 🗣 Commented on [#3](https://github.com/njzjz/zhihubackup/pull/3#issuecomment-1748146298) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -6. 🗣 Commented on [#858](https://github.com/ToFuProject/tofu/pull/858#issuecomment-1748052931) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#74](https://github.com/politeauthority/cver/pull/74#issuecomment-1747499863) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) -9. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#131](https://github.com/eastgenomics/dias_batch_running/pull/131#issuecomment-1747063169) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#132](https://github.com/eastgenomics/dias_batch_running/pull/132#issuecomment-1748607268) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#767](https://github.com/StingraySoftware/stingray/pull/767#issuecomment-1748299649) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +3. 🗣 Commented on [#214](https://github.com/DevoInc/python-sdk/pull/214#issuecomment-1748236822) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) +4. 🗣 Commented on [#7](https://github.com/njzjz/zhihubackup/pull/7#issuecomment-1748188790) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +5. 🗣 Commented on [#4](https://github.com/njzjz/zhihubackup/pull/4#issuecomment-1748166033) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +6. 🗣 Commented on [#3](https://github.com/njzjz/zhihubackup/pull/3#issuecomment-1748146298) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +7. 🗣 Commented on [#858](https://github.com/ToFuProject/tofu/pull/858#issuecomment-1748052931) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#74](https://github.com/politeauthority/cver/pull/74#issuecomment-1747499863) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) +10. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) From 34e7fba3abcef7910a73612b9be588085eec7b04 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 11:37:06 +0000 Subject: [PATCH 0228/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 950b9da8..cb18530e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#132](https://github.com/eastgenomics/dias_batch_running/pull/132#issuecomment-1748607268) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#767](https://github.com/StingraySoftware/stingray/pull/767#issuecomment-1748299649) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -3. 🗣 Commented on [#214](https://github.com/DevoInc/python-sdk/pull/214#issuecomment-1748236822) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) -4. 🗣 Commented on [#7](https://github.com/njzjz/zhihubackup/pull/7#issuecomment-1748188790) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -5. 🗣 Commented on [#4](https://github.com/njzjz/zhihubackup/pull/4#issuecomment-1748166033) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -6. 🗣 Commented on [#3](https://github.com/njzjz/zhihubackup/pull/3#issuecomment-1748146298) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -7. 🗣 Commented on [#858](https://github.com/ToFuProject/tofu/pull/858#issuecomment-1748052931) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#74](https://github.com/politeauthority/cver/pull/74#issuecomment-1747499863) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) -10. 🗣 Commented on [#757](https://github.com/scilus/scilpy/pull/757#issuecomment-1747170351) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#133](https://github.com/eastgenomics/dias_batch_running/pull/133#issuecomment-1748704052) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#132](https://github.com/eastgenomics/dias_batch_running/pull/132#issuecomment-1748607268) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#767](https://github.com/StingraySoftware/stingray/pull/767#issuecomment-1748299649) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +4. 🗣 Commented on [#214](https://github.com/DevoInc/python-sdk/pull/214#issuecomment-1748236822) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) +5. 🗣 Commented on [#7](https://github.com/njzjz/zhihubackup/pull/7#issuecomment-1748188790) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +6. 🗣 Commented on [#4](https://github.com/njzjz/zhihubackup/pull/4#issuecomment-1748166033) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +7. 🗣 Commented on [#3](https://github.com/njzjz/zhihubackup/pull/3#issuecomment-1748146298) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +8. 🗣 Commented on [#858](https://github.com/ToFuProject/tofu/pull/858#issuecomment-1748052931) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#74](https://github.com/politeauthority/cver/pull/74#issuecomment-1747499863) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) From 9f377e8c461d2b5aa106d71bec9777da2650abe2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 12:33:26 +0000 Subject: [PATCH 0229/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cb18530e..5bbf1f35 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#133](https://github.com/eastgenomics/dias_batch_running/pull/133#issuecomment-1748704052) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#132](https://github.com/eastgenomics/dias_batch_running/pull/132#issuecomment-1748607268) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#767](https://github.com/StingraySoftware/stingray/pull/767#issuecomment-1748299649) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -4. 🗣 Commented on [#214](https://github.com/DevoInc/python-sdk/pull/214#issuecomment-1748236822) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) -5. 🗣 Commented on [#7](https://github.com/njzjz/zhihubackup/pull/7#issuecomment-1748188790) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -6. 🗣 Commented on [#4](https://github.com/njzjz/zhihubackup/pull/4#issuecomment-1748166033) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -7. 🗣 Commented on [#3](https://github.com/njzjz/zhihubackup/pull/3#issuecomment-1748146298) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -8. 🗣 Commented on [#858](https://github.com/ToFuProject/tofu/pull/858#issuecomment-1748052931) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#74](https://github.com/politeauthority/cver/pull/74#issuecomment-1747499863) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_optimised_filtering/pull/1#issuecomment-1747211626) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) +1. 🗣 Commented on [#488](https://github.com/aramis-lab/clinicadl/pull/488#issuecomment-1748793360) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +2. 🗣 Commented on [#197](https://github.com/aimclub/GOLEM/pull/197#issuecomment-1748743343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#133](https://github.com/eastgenomics/dias_batch_running/pull/133#issuecomment-1748704052) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +4. 🗣 Commented on [#132](https://github.com/eastgenomics/dias_batch_running/pull/132#issuecomment-1748607268) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#767](https://github.com/StingraySoftware/stingray/pull/767#issuecomment-1748299649) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +6. 🗣 Commented on [#214](https://github.com/DevoInc/python-sdk/pull/214#issuecomment-1748236822) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) +7. 🗣 Commented on [#7](https://github.com/njzjz/zhihubackup/pull/7#issuecomment-1748188790) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +8. 🗣 Commented on [#4](https://github.com/njzjz/zhihubackup/pull/4#issuecomment-1748166033) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +9. 🗣 Commented on [#3](https://github.com/njzjz/zhihubackup/pull/3#issuecomment-1748146298) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +10. 🗣 Commented on [#858](https://github.com/ToFuProject/tofu/pull/858#issuecomment-1748052931) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From 989e485485a0b1deeddd01755489b33cf1b5bd70 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 13:19:59 +0000 Subject: [PATCH 0230/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5bbf1f35..d6257b61 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#488](https://github.com/aramis-lab/clinicadl/pull/488#issuecomment-1748793360) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -2. 🗣 Commented on [#197](https://github.com/aimclub/GOLEM/pull/197#issuecomment-1748743343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#133](https://github.com/eastgenomics/dias_batch_running/pull/133#issuecomment-1748704052) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -4. 🗣 Commented on [#132](https://github.com/eastgenomics/dias_batch_running/pull/132#issuecomment-1748607268) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#767](https://github.com/StingraySoftware/stingray/pull/767#issuecomment-1748299649) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -6. 🗣 Commented on [#214](https://github.com/DevoInc/python-sdk/pull/214#issuecomment-1748236822) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) -7. 🗣 Commented on [#7](https://github.com/njzjz/zhihubackup/pull/7#issuecomment-1748188790) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -8. 🗣 Commented on [#4](https://github.com/njzjz/zhihubackup/pull/4#issuecomment-1748166033) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -9. 🗣 Commented on [#3](https://github.com/njzjz/zhihubackup/pull/3#issuecomment-1748146298) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -10. 🗣 Commented on [#858](https://github.com/ToFuProject/tofu/pull/858#issuecomment-1748052931) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#2759](https://github.com/dipy/dipy/pull/2759#issuecomment-1748873797) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#488](https://github.com/aramis-lab/clinicadl/pull/488#issuecomment-1748793360) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +3. 🗣 Commented on [#197](https://github.com/aimclub/GOLEM/pull/197#issuecomment-1748743343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +4. 🗣 Commented on [#133](https://github.com/eastgenomics/dias_batch_running/pull/133#issuecomment-1748704052) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#132](https://github.com/eastgenomics/dias_batch_running/pull/132#issuecomment-1748607268) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#767](https://github.com/StingraySoftware/stingray/pull/767#issuecomment-1748299649) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +7. 🗣 Commented on [#214](https://github.com/DevoInc/python-sdk/pull/214#issuecomment-1748236822) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) +8. 🗣 Commented on [#7](https://github.com/njzjz/zhihubackup/pull/7#issuecomment-1748188790) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +9. 🗣 Commented on [#4](https://github.com/njzjz/zhihubackup/pull/4#issuecomment-1748166033) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +10. 🗣 Commented on [#3](https://github.com/njzjz/zhihubackup/pull/3#issuecomment-1748146298) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) From a8fbfb7ddb684fa4a48bb3452ae80f646477084b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 13:38:16 +0000 Subject: [PATCH 0231/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d6257b61..1e14f84f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2759](https://github.com/dipy/dipy/pull/2759#issuecomment-1748873797) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#488](https://github.com/aramis-lab/clinicadl/pull/488#issuecomment-1748793360) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -3. 🗣 Commented on [#197](https://github.com/aimclub/GOLEM/pull/197#issuecomment-1748743343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -4. 🗣 Commented on [#133](https://github.com/eastgenomics/dias_batch_running/pull/133#issuecomment-1748704052) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#132](https://github.com/eastgenomics/dias_batch_running/pull/132#issuecomment-1748607268) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#767](https://github.com/StingraySoftware/stingray/pull/767#issuecomment-1748299649) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -7. 🗣 Commented on [#214](https://github.com/DevoInc/python-sdk/pull/214#issuecomment-1748236822) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) -8. 🗣 Commented on [#7](https://github.com/njzjz/zhihubackup/pull/7#issuecomment-1748188790) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -9. 🗣 Commented on [#4](https://github.com/njzjz/zhihubackup/pull/4#issuecomment-1748166033) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -10. 🗣 Commented on [#3](https://github.com/njzjz/zhihubackup/pull/3#issuecomment-1748146298) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +1. 🗣 Commented on [#2927](https://github.com/dipy/dipy/pull/2927#issuecomment-1748893514) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#2759](https://github.com/dipy/dipy/pull/2759#issuecomment-1748873797) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#488](https://github.com/aramis-lab/clinicadl/pull/488#issuecomment-1748793360) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +4. 🗣 Commented on [#197](https://github.com/aimclub/GOLEM/pull/197#issuecomment-1748743343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#133](https://github.com/eastgenomics/dias_batch_running/pull/133#issuecomment-1748704052) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#132](https://github.com/eastgenomics/dias_batch_running/pull/132#issuecomment-1748607268) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#767](https://github.com/StingraySoftware/stingray/pull/767#issuecomment-1748299649) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +8. 🗣 Commented on [#214](https://github.com/DevoInc/python-sdk/pull/214#issuecomment-1748236822) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) +9. 🗣 Commented on [#7](https://github.com/njzjz/zhihubackup/pull/7#issuecomment-1748188790) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +10. 🗣 Commented on [#4](https://github.com/njzjz/zhihubackup/pull/4#issuecomment-1748166033) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) From 0adcf822802da760ebfa5db67393ec8d88600f9f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 14:14:38 +0000 Subject: [PATCH 0232/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1e14f84f..c25923b4 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2927](https://github.com/dipy/dipy/pull/2927#issuecomment-1748893514) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#2759](https://github.com/dipy/dipy/pull/2759#issuecomment-1748873797) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#488](https://github.com/aramis-lab/clinicadl/pull/488#issuecomment-1748793360) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -4. 🗣 Commented on [#197](https://github.com/aimclub/GOLEM/pull/197#issuecomment-1748743343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#133](https://github.com/eastgenomics/dias_batch_running/pull/133#issuecomment-1748704052) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#132](https://github.com/eastgenomics/dias_batch_running/pull/132#issuecomment-1748607268) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#767](https://github.com/StingraySoftware/stingray/pull/767#issuecomment-1748299649) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -8. 🗣 Commented on [#214](https://github.com/DevoInc/python-sdk/pull/214#issuecomment-1748236822) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) -9. 🗣 Commented on [#7](https://github.com/njzjz/zhihubackup/pull/7#issuecomment-1748188790) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -10. 🗣 Commented on [#4](https://github.com/njzjz/zhihubackup/pull/4#issuecomment-1748166033) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/GriD_Fashion/pull/1#issuecomment-1748971574) in [tuhinmallick/GriD_Fashion](https://github.com/tuhinmallick/GriD_Fashion) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Fashion-Trend-Analysis-and-Prediction-Model/pull/1#issuecomment-1748967320) in [tuhinmallick/Fashion-Trend-Analysis-and-Prediction-Model](https://github.com/tuhinmallick/Fashion-Trend-Analysis-and-Prediction-Model) +3. 🗣 Commented on [#2927](https://github.com/dipy/dipy/pull/2927#issuecomment-1748893514) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#2759](https://github.com/dipy/dipy/pull/2759#issuecomment-1748873797) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#488](https://github.com/aramis-lab/clinicadl/pull/488#issuecomment-1748793360) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +6. 🗣 Commented on [#197](https://github.com/aimclub/GOLEM/pull/197#issuecomment-1748743343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#133](https://github.com/eastgenomics/dias_batch_running/pull/133#issuecomment-1748704052) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#132](https://github.com/eastgenomics/dias_batch_running/pull/132#issuecomment-1748607268) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#767](https://github.com/StingraySoftware/stingray/pull/767#issuecomment-1748299649) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +10. 🗣 Commented on [#214](https://github.com/DevoInc/python-sdk/pull/214#issuecomment-1748236822) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) From 05b23147748c5f221ba25e19ade41123b04184cc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 14:37:38 +0000 Subject: [PATCH 0233/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c25923b4..f2106b5e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/GriD_Fashion/pull/1#issuecomment-1748971574) in [tuhinmallick/GriD_Fashion](https://github.com/tuhinmallick/GriD_Fashion) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Fashion-Trend-Analysis-and-Prediction-Model/pull/1#issuecomment-1748967320) in [tuhinmallick/Fashion-Trend-Analysis-and-Prediction-Model](https://github.com/tuhinmallick/Fashion-Trend-Analysis-and-Prediction-Model) -3. 🗣 Commented on [#2927](https://github.com/dipy/dipy/pull/2927#issuecomment-1748893514) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#2759](https://github.com/dipy/dipy/pull/2759#issuecomment-1748873797) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#488](https://github.com/aramis-lab/clinicadl/pull/488#issuecomment-1748793360) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -6. 🗣 Commented on [#197](https://github.com/aimclub/GOLEM/pull/197#issuecomment-1748743343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#133](https://github.com/eastgenomics/dias_batch_running/pull/133#issuecomment-1748704052) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#132](https://github.com/eastgenomics/dias_batch_running/pull/132#issuecomment-1748607268) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#767](https://github.com/StingraySoftware/stingray/pull/767#issuecomment-1748299649) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -10. 🗣 Commented on [#214](https://github.com/DevoInc/python-sdk/pull/214#issuecomment-1748236822) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/fashiontrending/pull/1#issuecomment-1748991654) in [tuhinmallick/fashiontrending](https://github.com/tuhinmallick/fashiontrending) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/PersonalizedTrends/pull/1#issuecomment-1748985326) in [tuhinmallick/PersonalizedTrends](https://github.com/tuhinmallick/PersonalizedTrends) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Trend_forecasting/pull/1#issuecomment-1748982228) in [tuhinmallick/Trend_forecasting](https://github.com/tuhinmallick/Trend_forecasting) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/GriD_Fashion/pull/1#issuecomment-1748971574) in [tuhinmallick/GriD_Fashion](https://github.com/tuhinmallick/GriD_Fashion) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Fashion-Trend-Analysis-and-Prediction-Model/pull/1#issuecomment-1748967320) in [tuhinmallick/Fashion-Trend-Analysis-and-Prediction-Model](https://github.com/tuhinmallick/Fashion-Trend-Analysis-and-Prediction-Model) +6. 🗣 Commented on [#2927](https://github.com/dipy/dipy/pull/2927#issuecomment-1748893514) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#2759](https://github.com/dipy/dipy/pull/2759#issuecomment-1748873797) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#488](https://github.com/aramis-lab/clinicadl/pull/488#issuecomment-1748793360) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +9. 🗣 Commented on [#197](https://github.com/aimclub/GOLEM/pull/197#issuecomment-1748743343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#133](https://github.com/eastgenomics/dias_batch_running/pull/133#issuecomment-1748704052) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From cd6f9d781783a38b34ceac5458271f8142e391d9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 15:17:07 +0000 Subject: [PATCH 0234/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f2106b5e..0329e573 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/fashiontrending/pull/1#issuecomment-1748991654) in [tuhinmallick/fashiontrending](https://github.com/tuhinmallick/fashiontrending) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/PersonalizedTrends/pull/1#issuecomment-1748985326) in [tuhinmallick/PersonalizedTrends](https://github.com/tuhinmallick/PersonalizedTrends) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Trend_forecasting/pull/1#issuecomment-1748982228) in [tuhinmallick/Trend_forecasting](https://github.com/tuhinmallick/Trend_forecasting) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/GriD_Fashion/pull/1#issuecomment-1748971574) in [tuhinmallick/GriD_Fashion](https://github.com/tuhinmallick/GriD_Fashion) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Fashion-Trend-Analysis-and-Prediction-Model/pull/1#issuecomment-1748967320) in [tuhinmallick/Fashion-Trend-Analysis-and-Prediction-Model](https://github.com/tuhinmallick/Fashion-Trend-Analysis-and-Prediction-Model) -6. 🗣 Commented on [#2927](https://github.com/dipy/dipy/pull/2927#issuecomment-1748893514) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#2759](https://github.com/dipy/dipy/pull/2759#issuecomment-1748873797) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#488](https://github.com/aramis-lab/clinicadl/pull/488#issuecomment-1748793360) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -9. 🗣 Commented on [#197](https://github.com/aimclub/GOLEM/pull/197#issuecomment-1748743343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#133](https://github.com/eastgenomics/dias_batch_running/pull/133#issuecomment-1748704052) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#39](https://github.com/eastgenomics/eris/pull/39#issuecomment-1749028248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Flipkart-Grid-Challenge/pull/1#issuecomment-1749026405) in [tuhinmallick/Flipkart-Grid-Challenge](https://github.com/tuhinmallick/Flipkart-Grid-Challenge) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/flipkart-grid/pull/1#issuecomment-1749026188) in [tuhinmallick/flipkart-grid](https://github.com/tuhinmallick/flipkart-grid) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Flipkart-GRID-ML-challenge/pull/1#issuecomment-1749025071) in [tuhinmallick/Flipkart-GRID-ML-challenge](https://github.com/tuhinmallick/Flipkart-GRID-ML-challenge) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/fashiontrending/pull/1#issuecomment-1748991654) in [tuhinmallick/fashiontrending](https://github.com/tuhinmallick/fashiontrending) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/PersonalizedTrends/pull/1#issuecomment-1748985326) in [tuhinmallick/PersonalizedTrends](https://github.com/tuhinmallick/PersonalizedTrends) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Trend_forecasting/pull/1#issuecomment-1748982228) in [tuhinmallick/Trend_forecasting](https://github.com/tuhinmallick/Trend_forecasting) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/GriD_Fashion/pull/1#issuecomment-1748971574) in [tuhinmallick/GriD_Fashion](https://github.com/tuhinmallick/GriD_Fashion) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Fashion-Trend-Analysis-and-Prediction-Model/pull/1#issuecomment-1748967320) in [tuhinmallick/Fashion-Trend-Analysis-and-Prediction-Model](https://github.com/tuhinmallick/Fashion-Trend-Analysis-and-Prediction-Model) +10. 🗣 Commented on [#2927](https://github.com/dipy/dipy/pull/2927#issuecomment-1748893514) in [dipy/dipy](https://github.com/dipy/dipy) From 4702bf3ac685f5d11463874a3b4d43fd84bbeefc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 17:37:25 +0000 Subject: [PATCH 0235/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0329e573..4a6e6fd7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#39](https://github.com/eastgenomics/eris/pull/39#issuecomment-1749028248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Flipkart-Grid-Challenge/pull/1#issuecomment-1749026405) in [tuhinmallick/Flipkart-Grid-Challenge](https://github.com/tuhinmallick/Flipkart-Grid-Challenge) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/flipkart-grid/pull/1#issuecomment-1749026188) in [tuhinmallick/flipkart-grid](https://github.com/tuhinmallick/flipkart-grid) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Flipkart-GRID-ML-challenge/pull/1#issuecomment-1749025071) in [tuhinmallick/Flipkart-GRID-ML-challenge](https://github.com/tuhinmallick/Flipkart-GRID-ML-challenge) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/fashiontrending/pull/1#issuecomment-1748991654) in [tuhinmallick/fashiontrending](https://github.com/tuhinmallick/fashiontrending) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/PersonalizedTrends/pull/1#issuecomment-1748985326) in [tuhinmallick/PersonalizedTrends](https://github.com/tuhinmallick/PersonalizedTrends) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Trend_forecasting/pull/1#issuecomment-1748982228) in [tuhinmallick/Trend_forecasting](https://github.com/tuhinmallick/Trend_forecasting) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/GriD_Fashion/pull/1#issuecomment-1748971574) in [tuhinmallick/GriD_Fashion](https://github.com/tuhinmallick/GriD_Fashion) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Fashion-Trend-Analysis-and-Prediction-Model/pull/1#issuecomment-1748967320) in [tuhinmallick/Fashion-Trend-Analysis-and-Prediction-Model](https://github.com/tuhinmallick/Fashion-Trend-Analysis-and-Prediction-Model) -10. 🗣 Commented on [#2927](https://github.com/dipy/dipy/pull/2927#issuecomment-1748893514) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/ngram_analysis/pull/1#issuecomment-1749293184) in [tuhinmallick/ngram_analysis](https://github.com/tuhinmallick/ngram_analysis) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/googleImageScraper/pull/1#issuecomment-1749292023) in [tuhinmallick/googleImageScraper](https://github.com/tuhinmallick/googleImageScraper) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/ImageScraperPin/pull/1#issuecomment-1749291508) in [tuhinmallick/ImageScraperPin](https://github.com/tuhinmallick/ImageScraperPin) +4. 🗣 Commented on [#39](https://github.com/eastgenomics/eris/pull/39#issuecomment-1749028248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Flipkart-Grid-Challenge/pull/1#issuecomment-1749026405) in [tuhinmallick/Flipkart-Grid-Challenge](https://github.com/tuhinmallick/Flipkart-Grid-Challenge) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/flipkart-grid/pull/1#issuecomment-1749026188) in [tuhinmallick/flipkart-grid](https://github.com/tuhinmallick/flipkart-grid) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Flipkart-GRID-ML-challenge/pull/1#issuecomment-1749025071) in [tuhinmallick/Flipkart-GRID-ML-challenge](https://github.com/tuhinmallick/Flipkart-GRID-ML-challenge) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/fashiontrending/pull/1#issuecomment-1748991654) in [tuhinmallick/fashiontrending](https://github.com/tuhinmallick/fashiontrending) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/PersonalizedTrends/pull/1#issuecomment-1748985326) in [tuhinmallick/PersonalizedTrends](https://github.com/tuhinmallick/PersonalizedTrends) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Trend_forecasting/pull/1#issuecomment-1748982228) in [tuhinmallick/Trend_forecasting](https://github.com/tuhinmallick/Trend_forecasting) From 5fb09cb07056e7e910d3f58a8c44a8b360ccdaad Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 18:38:29 +0000 Subject: [PATCH 0236/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4a6e6fd7..9ae70fff 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/ngram_analysis/pull/1#issuecomment-1749293184) in [tuhinmallick/ngram_analysis](https://github.com/tuhinmallick/ngram_analysis) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/googleImageScraper/pull/1#issuecomment-1749292023) in [tuhinmallick/googleImageScraper](https://github.com/tuhinmallick/googleImageScraper) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/ImageScraperPin/pull/1#issuecomment-1749291508) in [tuhinmallick/ImageScraperPin](https://github.com/tuhinmallick/ImageScraperPin) -4. 🗣 Commented on [#39](https://github.com/eastgenomics/eris/pull/39#issuecomment-1749028248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Flipkart-Grid-Challenge/pull/1#issuecomment-1749026405) in [tuhinmallick/Flipkart-Grid-Challenge](https://github.com/tuhinmallick/Flipkart-Grid-Challenge) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/flipkart-grid/pull/1#issuecomment-1749026188) in [tuhinmallick/flipkart-grid](https://github.com/tuhinmallick/flipkart-grid) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Flipkart-GRID-ML-challenge/pull/1#issuecomment-1749025071) in [tuhinmallick/Flipkart-GRID-ML-challenge](https://github.com/tuhinmallick/Flipkart-GRID-ML-challenge) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/fashiontrending/pull/1#issuecomment-1748991654) in [tuhinmallick/fashiontrending](https://github.com/tuhinmallick/fashiontrending) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/PersonalizedTrends/pull/1#issuecomment-1748985326) in [tuhinmallick/PersonalizedTrends](https://github.com/tuhinmallick/PersonalizedTrends) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Trend_forecasting/pull/1#issuecomment-1748982228) in [tuhinmallick/Trend_forecasting](https://github.com/tuhinmallick/Trend_forecasting) +1. 🗣 Commented on [#79](https://github.com/politeauthority/cver/pull/79#issuecomment-1749423071) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/FlipkartGrid2.0/pull/1#issuecomment-1749414920) in [tuhinmallick/FlipkartGrid2.0](https://github.com/tuhinmallick/FlipkartGrid2.0) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/ngram_analysis/pull/1#issuecomment-1749293184) in [tuhinmallick/ngram_analysis](https://github.com/tuhinmallick/ngram_analysis) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/googleImageScraper/pull/1#issuecomment-1749292023) in [tuhinmallick/googleImageScraper](https://github.com/tuhinmallick/googleImageScraper) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/ImageScraperPin/pull/1#issuecomment-1749291508) in [tuhinmallick/ImageScraperPin](https://github.com/tuhinmallick/ImageScraperPin) +6. 🗣 Commented on [#39](https://github.com/eastgenomics/eris/pull/39#issuecomment-1749028248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Flipkart-Grid-Challenge/pull/1#issuecomment-1749026405) in [tuhinmallick/Flipkart-Grid-Challenge](https://github.com/tuhinmallick/Flipkart-Grid-Challenge) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/flipkart-grid/pull/1#issuecomment-1749026188) in [tuhinmallick/flipkart-grid](https://github.com/tuhinmallick/flipkart-grid) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Flipkart-GRID-ML-challenge/pull/1#issuecomment-1749025071) in [tuhinmallick/Flipkart-GRID-ML-challenge](https://github.com/tuhinmallick/Flipkart-GRID-ML-challenge) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/fashiontrending/pull/1#issuecomment-1748991654) in [tuhinmallick/fashiontrending](https://github.com/tuhinmallick/fashiontrending) From 38b86ce953fab37f9079d7624b23501950b7032b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 19:12:27 +0000 Subject: [PATCH 0237/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9ae70fff..a4b2557f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#79](https://github.com/politeauthority/cver/pull/79#issuecomment-1749423071) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/FlipkartGrid2.0/pull/1#issuecomment-1749414920) in [tuhinmallick/FlipkartGrid2.0](https://github.com/tuhinmallick/FlipkartGrid2.0) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/ngram_analysis/pull/1#issuecomment-1749293184) in [tuhinmallick/ngram_analysis](https://github.com/tuhinmallick/ngram_analysis) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/googleImageScraper/pull/1#issuecomment-1749292023) in [tuhinmallick/googleImageScraper](https://github.com/tuhinmallick/googleImageScraper) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/ImageScraperPin/pull/1#issuecomment-1749291508) in [tuhinmallick/ImageScraperPin](https://github.com/tuhinmallick/ImageScraperPin) -6. 🗣 Commented on [#39](https://github.com/eastgenomics/eris/pull/39#issuecomment-1749028248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Flipkart-Grid-Challenge/pull/1#issuecomment-1749026405) in [tuhinmallick/Flipkart-Grid-Challenge](https://github.com/tuhinmallick/Flipkart-Grid-Challenge) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/flipkart-grid/pull/1#issuecomment-1749026188) in [tuhinmallick/flipkart-grid](https://github.com/tuhinmallick/flipkart-grid) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Flipkart-GRID-ML-challenge/pull/1#issuecomment-1749025071) in [tuhinmallick/Flipkart-GRID-ML-challenge](https://github.com/tuhinmallick/Flipkart-GRID-ML-challenge) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/fashiontrending/pull/1#issuecomment-1748991654) in [tuhinmallick/fashiontrending](https://github.com/tuhinmallick/fashiontrending) +1. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1749471025) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#979](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/979#issuecomment-1749454804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#80](https://github.com/politeauthority/cver/pull/80#issuecomment-1749450947) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#79](https://github.com/politeauthority/cver/pull/79#issuecomment-1749423071) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/FlipkartGrid2.0/pull/1#issuecomment-1749414920) in [tuhinmallick/FlipkartGrid2.0](https://github.com/tuhinmallick/FlipkartGrid2.0) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/ngram_analysis/pull/1#issuecomment-1749293184) in [tuhinmallick/ngram_analysis](https://github.com/tuhinmallick/ngram_analysis) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/googleImageScraper/pull/1#issuecomment-1749292023) in [tuhinmallick/googleImageScraper](https://github.com/tuhinmallick/googleImageScraper) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/ImageScraperPin/pull/1#issuecomment-1749291508) in [tuhinmallick/ImageScraperPin](https://github.com/tuhinmallick/ImageScraperPin) +9. 🗣 Commented on [#39](https://github.com/eastgenomics/eris/pull/39#issuecomment-1749028248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Flipkart-Grid-Challenge/pull/1#issuecomment-1749026405) in [tuhinmallick/Flipkart-Grid-Challenge](https://github.com/tuhinmallick/Flipkart-Grid-Challenge) From be428ab040486963173826fd416fa9b19a25d4ca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 20:37:41 +0000 Subject: [PATCH 0238/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a4b2557f..ae7c9cb1 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1749471025) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#979](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/979#issuecomment-1749454804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#80](https://github.com/politeauthority/cver/pull/80#issuecomment-1749450947) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#79](https://github.com/politeauthority/cver/pull/79#issuecomment-1749423071) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/FlipkartGrid2.0/pull/1#issuecomment-1749414920) in [tuhinmallick/FlipkartGrid2.0](https://github.com/tuhinmallick/FlipkartGrid2.0) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/ngram_analysis/pull/1#issuecomment-1749293184) in [tuhinmallick/ngram_analysis](https://github.com/tuhinmallick/ngram_analysis) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/googleImageScraper/pull/1#issuecomment-1749292023) in [tuhinmallick/googleImageScraper](https://github.com/tuhinmallick/googleImageScraper) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/ImageScraperPin/pull/1#issuecomment-1749291508) in [tuhinmallick/ImageScraperPin](https://github.com/tuhinmallick/ImageScraperPin) -9. 🗣 Commented on [#39](https://github.com/eastgenomics/eris/pull/39#issuecomment-1749028248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Flipkart-Grid-Challenge/pull/1#issuecomment-1749026405) in [tuhinmallick/Flipkart-Grid-Challenge](https://github.com/tuhinmallick/Flipkart-Grid-Challenge) +1. 🗣 Commented on [#860](https://github.com/ToFuProject/tofu/pull/860#issuecomment-1749594813) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#2715](https://github.com/dipy/dipy/pull/2715#issuecomment-1749593811) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1749471025) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#979](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/979#issuecomment-1749454804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#80](https://github.com/politeauthority/cver/pull/80#issuecomment-1749450947) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#79](https://github.com/politeauthority/cver/pull/79#issuecomment-1749423071) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/FlipkartGrid2.0/pull/1#issuecomment-1749414920) in [tuhinmallick/FlipkartGrid2.0](https://github.com/tuhinmallick/FlipkartGrid2.0) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/ngram_analysis/pull/1#issuecomment-1749293184) in [tuhinmallick/ngram_analysis](https://github.com/tuhinmallick/ngram_analysis) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/googleImageScraper/pull/1#issuecomment-1749292023) in [tuhinmallick/googleImageScraper](https://github.com/tuhinmallick/googleImageScraper) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/ImageScraperPin/pull/1#issuecomment-1749291508) in [tuhinmallick/ImageScraperPin](https://github.com/tuhinmallick/ImageScraperPin) From 899afdc38127ab6afb120910126d4c16bbd80f99 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 23:16:25 +0000 Subject: [PATCH 0239/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ae7c9cb1..3d47a337 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#860](https://github.com/ToFuProject/tofu/pull/860#issuecomment-1749594813) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#2715](https://github.com/dipy/dipy/pull/2715#issuecomment-1749593811) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1749471025) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#979](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/979#issuecomment-1749454804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#80](https://github.com/politeauthority/cver/pull/80#issuecomment-1749450947) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#79](https://github.com/politeauthority/cver/pull/79#issuecomment-1749423071) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/FlipkartGrid2.0/pull/1#issuecomment-1749414920) in [tuhinmallick/FlipkartGrid2.0](https://github.com/tuhinmallick/FlipkartGrid2.0) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/ngram_analysis/pull/1#issuecomment-1749293184) in [tuhinmallick/ngram_analysis](https://github.com/tuhinmallick/ngram_analysis) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/googleImageScraper/pull/1#issuecomment-1749292023) in [tuhinmallick/googleImageScraper](https://github.com/tuhinmallick/googleImageScraper) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/ImageScraperPin/pull/1#issuecomment-1749291508) in [tuhinmallick/ImageScraperPin](https://github.com/tuhinmallick/ImageScraperPin) +1. 🗣 Commented on [#3](https://github.com/MDAnalysis/waterdynamics/pull/3#issuecomment-1749775870) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +2. 🗣 Commented on [#860](https://github.com/ToFuProject/tofu/pull/860#issuecomment-1749594813) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#2715](https://github.com/dipy/dipy/pull/2715#issuecomment-1749593811) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1749471025) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#979](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/979#issuecomment-1749454804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#80](https://github.com/politeauthority/cver/pull/80#issuecomment-1749450947) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#79](https://github.com/politeauthority/cver/pull/79#issuecomment-1749423071) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/FlipkartGrid2.0/pull/1#issuecomment-1749414920) in [tuhinmallick/FlipkartGrid2.0](https://github.com/tuhinmallick/FlipkartGrid2.0) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/ngram_analysis/pull/1#issuecomment-1749293184) in [tuhinmallick/ngram_analysis](https://github.com/tuhinmallick/ngram_analysis) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/googleImageScraper/pull/1#issuecomment-1749292023) in [tuhinmallick/googleImageScraper](https://github.com/tuhinmallick/googleImageScraper) From a332d99f5c1dc2ec0fa8d5971a93c7ca0e7dcdaf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 01:09:51 +0000 Subject: [PATCH 0240/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3d47a337..d98ac7e7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#3](https://github.com/MDAnalysis/waterdynamics/pull/3#issuecomment-1749775870) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -2. 🗣 Commented on [#860](https://github.com/ToFuProject/tofu/pull/860#issuecomment-1749594813) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#2715](https://github.com/dipy/dipy/pull/2715#issuecomment-1749593811) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1749471025) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#979](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/979#issuecomment-1749454804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#80](https://github.com/politeauthority/cver/pull/80#issuecomment-1749450947) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#79](https://github.com/politeauthority/cver/pull/79#issuecomment-1749423071) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/FlipkartGrid2.0/pull/1#issuecomment-1749414920) in [tuhinmallick/FlipkartGrid2.0](https://github.com/tuhinmallick/FlipkartGrid2.0) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/ngram_analysis/pull/1#issuecomment-1749293184) in [tuhinmallick/ngram_analysis](https://github.com/tuhinmallick/ngram_analysis) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/googleImageScraper/pull/1#issuecomment-1749292023) in [tuhinmallick/googleImageScraper](https://github.com/tuhinmallick/googleImageScraper) +1. 🗣 Commented on [#4343](https://github.com/uwcirg/truenth-portal/pull/4343#issuecomment-1749824152) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +2. 🗣 Commented on [#3](https://github.com/MDAnalysis/waterdynamics/pull/3#issuecomment-1749775870) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +3. 🗣 Commented on [#860](https://github.com/ToFuProject/tofu/pull/860#issuecomment-1749594813) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#2715](https://github.com/dipy/dipy/pull/2715#issuecomment-1749593811) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1749471025) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#979](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/979#issuecomment-1749454804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#80](https://github.com/politeauthority/cver/pull/80#issuecomment-1749450947) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#79](https://github.com/politeauthority/cver/pull/79#issuecomment-1749423071) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/FlipkartGrid2.0/pull/1#issuecomment-1749414920) in [tuhinmallick/FlipkartGrid2.0](https://github.com/tuhinmallick/FlipkartGrid2.0) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/ngram_analysis/pull/1#issuecomment-1749293184) in [tuhinmallick/ngram_analysis](https://github.com/tuhinmallick/ngram_analysis) From 9487e1fd2f3edfd10c9b808b7af28fd3f8803212 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 02:04:51 +0000 Subject: [PATCH 0241/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d98ac7e7..dcea2a4e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4343](https://github.com/uwcirg/truenth-portal/pull/4343#issuecomment-1749824152) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -2. 🗣 Commented on [#3](https://github.com/MDAnalysis/waterdynamics/pull/3#issuecomment-1749775870) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -3. 🗣 Commented on [#860](https://github.com/ToFuProject/tofu/pull/860#issuecomment-1749594813) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#2715](https://github.com/dipy/dipy/pull/2715#issuecomment-1749593811) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1749471025) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#979](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/979#issuecomment-1749454804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#80](https://github.com/politeauthority/cver/pull/80#issuecomment-1749450947) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#79](https://github.com/politeauthority/cver/pull/79#issuecomment-1749423071) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/FlipkartGrid2.0/pull/1#issuecomment-1749414920) in [tuhinmallick/FlipkartGrid2.0](https://github.com/tuhinmallick/FlipkartGrid2.0) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/ngram_analysis/pull/1#issuecomment-1749293184) in [tuhinmallick/ngram_analysis](https://github.com/tuhinmallick/ngram_analysis) +1. 🗣 Commented on [#244](https://github.com/OpenFreeEnergy/gufe/pull/244#issuecomment-1749883394) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#570](https://github.com/OpenFreeEnergy/openfe/pull/570#issuecomment-1749867547) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#4343](https://github.com/uwcirg/truenth-portal/pull/4343#issuecomment-1749824152) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +4. 🗣 Commented on [#3](https://github.com/MDAnalysis/waterdynamics/pull/3#issuecomment-1749775870) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +5. 🗣 Commented on [#860](https://github.com/ToFuProject/tofu/pull/860#issuecomment-1749594813) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#2715](https://github.com/dipy/dipy/pull/2715#issuecomment-1749593811) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1749471025) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#979](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/979#issuecomment-1749454804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#80](https://github.com/politeauthority/cver/pull/80#issuecomment-1749450947) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#79](https://github.com/politeauthority/cver/pull/79#issuecomment-1749423071) in [politeauthority/cver](https://github.com/politeauthority/cver) From 97f9bd7967430b4a20e832e0100232d48a72070f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 03:16:19 +0000 Subject: [PATCH 0242/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dcea2a4e..47c030af 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#244](https://github.com/OpenFreeEnergy/gufe/pull/244#issuecomment-1749883394) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#570](https://github.com/OpenFreeEnergy/openfe/pull/570#issuecomment-1749867547) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#4343](https://github.com/uwcirg/truenth-portal/pull/4343#issuecomment-1749824152) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -4. 🗣 Commented on [#3](https://github.com/MDAnalysis/waterdynamics/pull/3#issuecomment-1749775870) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -5. 🗣 Commented on [#860](https://github.com/ToFuProject/tofu/pull/860#issuecomment-1749594813) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#2715](https://github.com/dipy/dipy/pull/2715#issuecomment-1749593811) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1749471025) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#979](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/979#issuecomment-1749454804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#80](https://github.com/politeauthority/cver/pull/80#issuecomment-1749450947) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#79](https://github.com/politeauthority/cver/pull/79#issuecomment-1749423071) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#1061](https://github.com/lmcinnes/umap/pull/1061#issuecomment-1749927012) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +2. 🗣 Commented on [#244](https://github.com/OpenFreeEnergy/gufe/pull/244#issuecomment-1749883394) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#570](https://github.com/OpenFreeEnergy/openfe/pull/570#issuecomment-1749867547) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#4343](https://github.com/uwcirg/truenth-portal/pull/4343#issuecomment-1749824152) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +5. 🗣 Commented on [#3](https://github.com/MDAnalysis/waterdynamics/pull/3#issuecomment-1749775870) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +6. 🗣 Commented on [#860](https://github.com/ToFuProject/tofu/pull/860#issuecomment-1749594813) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#2715](https://github.com/dipy/dipy/pull/2715#issuecomment-1749593811) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1749471025) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#979](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/979#issuecomment-1749454804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#80](https://github.com/politeauthority/cver/pull/80#issuecomment-1749450947) in [politeauthority/cver](https://github.com/politeauthority/cver) From 492ce89d0514d57a021f33b85810eeed76405b93 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 04:19:00 +0000 Subject: [PATCH 0243/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 47c030af..ff6c7f6c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1061](https://github.com/lmcinnes/umap/pull/1061#issuecomment-1749927012) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -2. 🗣 Commented on [#244](https://github.com/OpenFreeEnergy/gufe/pull/244#issuecomment-1749883394) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#570](https://github.com/OpenFreeEnergy/openfe/pull/570#issuecomment-1749867547) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#4343](https://github.com/uwcirg/truenth-portal/pull/4343#issuecomment-1749824152) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -5. 🗣 Commented on [#3](https://github.com/MDAnalysis/waterdynamics/pull/3#issuecomment-1749775870) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -6. 🗣 Commented on [#860](https://github.com/ToFuProject/tofu/pull/860#issuecomment-1749594813) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#2715](https://github.com/dipy/dipy/pull/2715#issuecomment-1749593811) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1749471025) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#979](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/979#issuecomment-1749454804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#80](https://github.com/politeauthority/cver/pull/80#issuecomment-1749450947) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#100](https://github.com/drauger-os-development/system-installer/pull/100#issuecomment-1749945983) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) +2. 🗣 Commented on [#1061](https://github.com/lmcinnes/umap/pull/1061#issuecomment-1749927012) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +3. 🗣 Commented on [#244](https://github.com/OpenFreeEnergy/gufe/pull/244#issuecomment-1749883394) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#570](https://github.com/OpenFreeEnergy/openfe/pull/570#issuecomment-1749867547) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#4343](https://github.com/uwcirg/truenth-portal/pull/4343#issuecomment-1749824152) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +6. 🗣 Commented on [#3](https://github.com/MDAnalysis/waterdynamics/pull/3#issuecomment-1749775870) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +7. 🗣 Commented on [#860](https://github.com/ToFuProject/tofu/pull/860#issuecomment-1749594813) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#2715](https://github.com/dipy/dipy/pull/2715#issuecomment-1749593811) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1749471025) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#979](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/979#issuecomment-1749454804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 6953e9bbd472acb175760a5d75fd953dd71e3128 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 04:37:16 +0000 Subject: [PATCH 0244/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ff6c7f6c..3ffd580f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#100](https://github.com/drauger-os-development/system-installer/pull/100#issuecomment-1749945983) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) -2. 🗣 Commented on [#1061](https://github.com/lmcinnes/umap/pull/1061#issuecomment-1749927012) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -3. 🗣 Commented on [#244](https://github.com/OpenFreeEnergy/gufe/pull/244#issuecomment-1749883394) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#570](https://github.com/OpenFreeEnergy/openfe/pull/570#issuecomment-1749867547) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#4343](https://github.com/uwcirg/truenth-portal/pull/4343#issuecomment-1749824152) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -6. 🗣 Commented on [#3](https://github.com/MDAnalysis/waterdynamics/pull/3#issuecomment-1749775870) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -7. 🗣 Commented on [#860](https://github.com/ToFuProject/tofu/pull/860#issuecomment-1749594813) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#2715](https://github.com/dipy/dipy/pull/2715#issuecomment-1749593811) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1749471025) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#979](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/979#issuecomment-1749454804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#666](https://github.com/deuteronomy-works/pyffmpeg/pull/666#issuecomment-1749962915) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +2. 🗣 Commented on [#665](https://github.com/deuteronomy-works/pyffmpeg/pull/665#issuecomment-1749962842) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +3. 🗣 Commented on [#664](https://github.com/deuteronomy-works/pyffmpeg/pull/664#issuecomment-1749962769) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +4. 🗣 Commented on [#663](https://github.com/deuteronomy-works/pyffmpeg/pull/663#issuecomment-1749962209) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +5. 🗣 Commented on [#100](https://github.com/drauger-os-development/system-installer/pull/100#issuecomment-1749945983) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) +6. 🗣 Commented on [#1061](https://github.com/lmcinnes/umap/pull/1061#issuecomment-1749927012) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +7. 🗣 Commented on [#244](https://github.com/OpenFreeEnergy/gufe/pull/244#issuecomment-1749883394) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#570](https://github.com/OpenFreeEnergy/openfe/pull/570#issuecomment-1749867547) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#4343](https://github.com/uwcirg/truenth-portal/pull/4343#issuecomment-1749824152) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +10. 🗣 Commented on [#3](https://github.com/MDAnalysis/waterdynamics/pull/3#issuecomment-1749775870) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) From 8a8fa075114f5a0ca4db2eea48fbd99a892a6908 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 06:21:25 +0000 Subject: [PATCH 0245/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3ffd580f..bff53ac0 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#666](https://github.com/deuteronomy-works/pyffmpeg/pull/666#issuecomment-1749962915) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -2. 🗣 Commented on [#665](https://github.com/deuteronomy-works/pyffmpeg/pull/665#issuecomment-1749962842) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -3. 🗣 Commented on [#664](https://github.com/deuteronomy-works/pyffmpeg/pull/664#issuecomment-1749962769) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -4. 🗣 Commented on [#663](https://github.com/deuteronomy-works/pyffmpeg/pull/663#issuecomment-1749962209) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -5. 🗣 Commented on [#100](https://github.com/drauger-os-development/system-installer/pull/100#issuecomment-1749945983) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) -6. 🗣 Commented on [#1061](https://github.com/lmcinnes/umap/pull/1061#issuecomment-1749927012) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -7. 🗣 Commented on [#244](https://github.com/OpenFreeEnergy/gufe/pull/244#issuecomment-1749883394) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#570](https://github.com/OpenFreeEnergy/openfe/pull/570#issuecomment-1749867547) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#4343](https://github.com/uwcirg/truenth-portal/pull/4343#issuecomment-1749824152) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -10. 🗣 Commented on [#3](https://github.com/MDAnalysis/waterdynamics/pull/3#issuecomment-1749775870) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +1. 🗣 Commented on [#4219](https://github.com/bentoml/BentoML/pull/4219#issuecomment-1750041441) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +2. 🗣 Commented on [#666](https://github.com/deuteronomy-works/pyffmpeg/pull/666#issuecomment-1749962915) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +3. 🗣 Commented on [#665](https://github.com/deuteronomy-works/pyffmpeg/pull/665#issuecomment-1749962842) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +4. 🗣 Commented on [#664](https://github.com/deuteronomy-works/pyffmpeg/pull/664#issuecomment-1749962769) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +5. 🗣 Commented on [#663](https://github.com/deuteronomy-works/pyffmpeg/pull/663#issuecomment-1749962209) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +6. 🗣 Commented on [#100](https://github.com/drauger-os-development/system-installer/pull/100#issuecomment-1749945983) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) +7. 🗣 Commented on [#1061](https://github.com/lmcinnes/umap/pull/1061#issuecomment-1749927012) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +8. 🗣 Commented on [#244](https://github.com/OpenFreeEnergy/gufe/pull/244#issuecomment-1749883394) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +9. 🗣 Commented on [#570](https://github.com/OpenFreeEnergy/openfe/pull/570#issuecomment-1749867547) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#4343](https://github.com/uwcirg/truenth-portal/pull/4343#issuecomment-1749824152) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) From 5e0a2e7970606285e504b58f3cab359bb2d526d8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 06:38:30 +0000 Subject: [PATCH 0246/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bff53ac0..72d80c98 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4219](https://github.com/bentoml/BentoML/pull/4219#issuecomment-1750041441) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -2. 🗣 Commented on [#666](https://github.com/deuteronomy-works/pyffmpeg/pull/666#issuecomment-1749962915) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -3. 🗣 Commented on [#665](https://github.com/deuteronomy-works/pyffmpeg/pull/665#issuecomment-1749962842) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -4. 🗣 Commented on [#664](https://github.com/deuteronomy-works/pyffmpeg/pull/664#issuecomment-1749962769) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -5. 🗣 Commented on [#663](https://github.com/deuteronomy-works/pyffmpeg/pull/663#issuecomment-1749962209) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -6. 🗣 Commented on [#100](https://github.com/drauger-os-development/system-installer/pull/100#issuecomment-1749945983) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) -7. 🗣 Commented on [#1061](https://github.com/lmcinnes/umap/pull/1061#issuecomment-1749927012) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -8. 🗣 Commented on [#244](https://github.com/OpenFreeEnergy/gufe/pull/244#issuecomment-1749883394) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -9. 🗣 Commented on [#570](https://github.com/OpenFreeEnergy/openfe/pull/570#issuecomment-1749867547) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#4343](https://github.com/uwcirg/truenth-portal/pull/4343#issuecomment-1749824152) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +1. 🗣 Commented on [#1424](https://github.com/openSUSE/osc/pull/1424#issuecomment-1750058456) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#4219](https://github.com/bentoml/BentoML/pull/4219#issuecomment-1750041441) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +3. 🗣 Commented on [#666](https://github.com/deuteronomy-works/pyffmpeg/pull/666#issuecomment-1749962915) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +4. 🗣 Commented on [#665](https://github.com/deuteronomy-works/pyffmpeg/pull/665#issuecomment-1749962842) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +5. 🗣 Commented on [#664](https://github.com/deuteronomy-works/pyffmpeg/pull/664#issuecomment-1749962769) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +6. 🗣 Commented on [#663](https://github.com/deuteronomy-works/pyffmpeg/pull/663#issuecomment-1749962209) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +7. 🗣 Commented on [#100](https://github.com/drauger-os-development/system-installer/pull/100#issuecomment-1749945983) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) +8. 🗣 Commented on [#1061](https://github.com/lmcinnes/umap/pull/1061#issuecomment-1749927012) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +9. 🗣 Commented on [#244](https://github.com/OpenFreeEnergy/gufe/pull/244#issuecomment-1749883394) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#570](https://github.com/OpenFreeEnergy/openfe/pull/570#issuecomment-1749867547) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 737bec531a3a8a149ca9ccfe0db01368b993f175 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 07:37:04 +0000 Subject: [PATCH 0247/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 72d80c98..3f16d0fb 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1424](https://github.com/openSUSE/osc/pull/1424#issuecomment-1750058456) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#4219](https://github.com/bentoml/BentoML/pull/4219#issuecomment-1750041441) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -3. 🗣 Commented on [#666](https://github.com/deuteronomy-works/pyffmpeg/pull/666#issuecomment-1749962915) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -4. 🗣 Commented on [#665](https://github.com/deuteronomy-works/pyffmpeg/pull/665#issuecomment-1749962842) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -5. 🗣 Commented on [#664](https://github.com/deuteronomy-works/pyffmpeg/pull/664#issuecomment-1749962769) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -6. 🗣 Commented on [#663](https://github.com/deuteronomy-works/pyffmpeg/pull/663#issuecomment-1749962209) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -7. 🗣 Commented on [#100](https://github.com/drauger-os-development/system-installer/pull/100#issuecomment-1749945983) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) -8. 🗣 Commented on [#1061](https://github.com/lmcinnes/umap/pull/1061#issuecomment-1749927012) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -9. 🗣 Commented on [#244](https://github.com/OpenFreeEnergy/gufe/pull/244#issuecomment-1749883394) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#570](https://github.com/OpenFreeEnergy/openfe/pull/570#issuecomment-1749867547) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#94](https://github.com/aimclub/Fedot.Industrial/pull/94#issuecomment-1750110958) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +2. 🗣 Commented on [#1424](https://github.com/openSUSE/osc/pull/1424#issuecomment-1750058456) in [openSUSE/osc](https://github.com/openSUSE/osc) +3. 🗣 Commented on [#4219](https://github.com/bentoml/BentoML/pull/4219#issuecomment-1750041441) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +4. 🗣 Commented on [#666](https://github.com/deuteronomy-works/pyffmpeg/pull/666#issuecomment-1749962915) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +5. 🗣 Commented on [#665](https://github.com/deuteronomy-works/pyffmpeg/pull/665#issuecomment-1749962842) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +6. 🗣 Commented on [#664](https://github.com/deuteronomy-works/pyffmpeg/pull/664#issuecomment-1749962769) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +7. 🗣 Commented on [#663](https://github.com/deuteronomy-works/pyffmpeg/pull/663#issuecomment-1749962209) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +8. 🗣 Commented on [#100](https://github.com/drauger-os-development/system-installer/pull/100#issuecomment-1749945983) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) +9. 🗣 Commented on [#1061](https://github.com/lmcinnes/umap/pull/1061#issuecomment-1749927012) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +10. 🗣 Commented on [#244](https://github.com/OpenFreeEnergy/gufe/pull/244#issuecomment-1749883394) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From 503eff0547efe5090b09db113bc6fbe3076fc46d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 08:20:14 +0000 Subject: [PATCH 0248/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3f16d0fb..6afc7140 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#94](https://github.com/aimclub/Fedot.Industrial/pull/94#issuecomment-1750110958) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -2. 🗣 Commented on [#1424](https://github.com/openSUSE/osc/pull/1424#issuecomment-1750058456) in [openSUSE/osc](https://github.com/openSUSE/osc) -3. 🗣 Commented on [#4219](https://github.com/bentoml/BentoML/pull/4219#issuecomment-1750041441) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -4. 🗣 Commented on [#666](https://github.com/deuteronomy-works/pyffmpeg/pull/666#issuecomment-1749962915) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -5. 🗣 Commented on [#665](https://github.com/deuteronomy-works/pyffmpeg/pull/665#issuecomment-1749962842) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -6. 🗣 Commented on [#664](https://github.com/deuteronomy-works/pyffmpeg/pull/664#issuecomment-1749962769) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -7. 🗣 Commented on [#663](https://github.com/deuteronomy-works/pyffmpeg/pull/663#issuecomment-1749962209) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -8. 🗣 Commented on [#100](https://github.com/drauger-os-development/system-installer/pull/100#issuecomment-1749945983) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) -9. 🗣 Commented on [#1061](https://github.com/lmcinnes/umap/pull/1061#issuecomment-1749927012) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -10. 🗣 Commented on [#244](https://github.com/OpenFreeEnergy/gufe/pull/244#issuecomment-1749883394) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#4303](https://github.com/MDAnalysis/mdanalysis/pull/4303#issuecomment-1750161986) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#94](https://github.com/aimclub/Fedot.Industrial/pull/94#issuecomment-1750110958) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +3. 🗣 Commented on [#1424](https://github.com/openSUSE/osc/pull/1424#issuecomment-1750058456) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#4219](https://github.com/bentoml/BentoML/pull/4219#issuecomment-1750041441) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +5. 🗣 Commented on [#666](https://github.com/deuteronomy-works/pyffmpeg/pull/666#issuecomment-1749962915) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +6. 🗣 Commented on [#665](https://github.com/deuteronomy-works/pyffmpeg/pull/665#issuecomment-1749962842) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +7. 🗣 Commented on [#664](https://github.com/deuteronomy-works/pyffmpeg/pull/664#issuecomment-1749962769) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +8. 🗣 Commented on [#663](https://github.com/deuteronomy-works/pyffmpeg/pull/663#issuecomment-1749962209) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +9. 🗣 Commented on [#100](https://github.com/drauger-os-development/system-installer/pull/100#issuecomment-1749945983) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) +10. 🗣 Commented on [#1061](https://github.com/lmcinnes/umap/pull/1061#issuecomment-1749927012) in [lmcinnes/umap](https://github.com/lmcinnes/umap) From 59ba7cdcd5a9f4bc8d7f2ae18752ae4d4460f8df Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 09:15:55 +0000 Subject: [PATCH 0249/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6afc7140..370594a8 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4303](https://github.com/MDAnalysis/mdanalysis/pull/4303#issuecomment-1750161986) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#94](https://github.com/aimclub/Fedot.Industrial/pull/94#issuecomment-1750110958) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -3. 🗣 Commented on [#1424](https://github.com/openSUSE/osc/pull/1424#issuecomment-1750058456) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#4219](https://github.com/bentoml/BentoML/pull/4219#issuecomment-1750041441) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -5. 🗣 Commented on [#666](https://github.com/deuteronomy-works/pyffmpeg/pull/666#issuecomment-1749962915) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -6. 🗣 Commented on [#665](https://github.com/deuteronomy-works/pyffmpeg/pull/665#issuecomment-1749962842) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -7. 🗣 Commented on [#664](https://github.com/deuteronomy-works/pyffmpeg/pull/664#issuecomment-1749962769) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -8. 🗣 Commented on [#663](https://github.com/deuteronomy-works/pyffmpeg/pull/663#issuecomment-1749962209) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -9. 🗣 Commented on [#100](https://github.com/drauger-os-development/system-installer/pull/100#issuecomment-1749945983) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) -10. 🗣 Commented on [#1061](https://github.com/lmcinnes/umap/pull/1061#issuecomment-1749927012) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +1. 🗣 Commented on [#4](https://github.com/eastgenomics/optimised_filtering/pull/4#issuecomment-1750204470) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +2. 🗣 Commented on [#4303](https://github.com/MDAnalysis/mdanalysis/pull/4303#issuecomment-1750161986) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#94](https://github.com/aimclub/Fedot.Industrial/pull/94#issuecomment-1750110958) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#1424](https://github.com/openSUSE/osc/pull/1424#issuecomment-1750058456) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#4219](https://github.com/bentoml/BentoML/pull/4219#issuecomment-1750041441) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +6. 🗣 Commented on [#666](https://github.com/deuteronomy-works/pyffmpeg/pull/666#issuecomment-1749962915) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +7. 🗣 Commented on [#665](https://github.com/deuteronomy-works/pyffmpeg/pull/665#issuecomment-1749962842) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +8. 🗣 Commented on [#664](https://github.com/deuteronomy-works/pyffmpeg/pull/664#issuecomment-1749962769) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +9. 🗣 Commented on [#663](https://github.com/deuteronomy-works/pyffmpeg/pull/663#issuecomment-1749962209) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +10. 🗣 Commented on [#100](https://github.com/drauger-os-development/system-installer/pull/100#issuecomment-1749945983) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) From 192e5e35f6b9ec71943bd1a7dc697bf1642ecbe7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 10:37:29 +0000 Subject: [PATCH 0250/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 370594a8..00069057 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4](https://github.com/eastgenomics/optimised_filtering/pull/4#issuecomment-1750204470) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -2. 🗣 Commented on [#4303](https://github.com/MDAnalysis/mdanalysis/pull/4303#issuecomment-1750161986) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#94](https://github.com/aimclub/Fedot.Industrial/pull/94#issuecomment-1750110958) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#1424](https://github.com/openSUSE/osc/pull/1424#issuecomment-1750058456) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#4219](https://github.com/bentoml/BentoML/pull/4219#issuecomment-1750041441) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -6. 🗣 Commented on [#666](https://github.com/deuteronomy-works/pyffmpeg/pull/666#issuecomment-1749962915) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -7. 🗣 Commented on [#665](https://github.com/deuteronomy-works/pyffmpeg/pull/665#issuecomment-1749962842) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -8. 🗣 Commented on [#664](https://github.com/deuteronomy-works/pyffmpeg/pull/664#issuecomment-1749962769) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -9. 🗣 Commented on [#663](https://github.com/deuteronomy-works/pyffmpeg/pull/663#issuecomment-1749962209) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -10. 🗣 Commented on [#100](https://github.com/drauger-os-development/system-installer/pull/100#issuecomment-1749945983) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) +1. 🗣 Commented on [#197](https://github.com/CartoonFan/lutris/pull/197#issuecomment-1750348804) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#4](https://github.com/eastgenomics/optimised_filtering/pull/4#issuecomment-1750204470) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +3. 🗣 Commented on [#4303](https://github.com/MDAnalysis/mdanalysis/pull/4303#issuecomment-1750161986) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#94](https://github.com/aimclub/Fedot.Industrial/pull/94#issuecomment-1750110958) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +5. 🗣 Commented on [#1424](https://github.com/openSUSE/osc/pull/1424#issuecomment-1750058456) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#4219](https://github.com/bentoml/BentoML/pull/4219#issuecomment-1750041441) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +7. 🗣 Commented on [#666](https://github.com/deuteronomy-works/pyffmpeg/pull/666#issuecomment-1749962915) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +8. 🗣 Commented on [#665](https://github.com/deuteronomy-works/pyffmpeg/pull/665#issuecomment-1749962842) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +9. 🗣 Commented on [#664](https://github.com/deuteronomy-works/pyffmpeg/pull/664#issuecomment-1749962769) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +10. 🗣 Commented on [#663](https://github.com/deuteronomy-works/pyffmpeg/pull/663#issuecomment-1749962209) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) From 3a77fb13418d51befc27298ea47407db2ff97ef0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 14:15:26 +0000 Subject: [PATCH 0251/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 00069057..4f7328d9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#197](https://github.com/CartoonFan/lutris/pull/197#issuecomment-1750348804) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#4](https://github.com/eastgenomics/optimised_filtering/pull/4#issuecomment-1750204470) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -3. 🗣 Commented on [#4303](https://github.com/MDAnalysis/mdanalysis/pull/4303#issuecomment-1750161986) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#94](https://github.com/aimclub/Fedot.Industrial/pull/94#issuecomment-1750110958) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -5. 🗣 Commented on [#1424](https://github.com/openSUSE/osc/pull/1424#issuecomment-1750058456) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#4219](https://github.com/bentoml/BentoML/pull/4219#issuecomment-1750041441) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -7. 🗣 Commented on [#666](https://github.com/deuteronomy-works/pyffmpeg/pull/666#issuecomment-1749962915) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -8. 🗣 Commented on [#665](https://github.com/deuteronomy-works/pyffmpeg/pull/665#issuecomment-1749962842) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -9. 🗣 Commented on [#664](https://github.com/deuteronomy-works/pyffmpeg/pull/664#issuecomment-1749962769) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -10. 🗣 Commented on [#663](https://github.com/deuteronomy-works/pyffmpeg/pull/663#issuecomment-1749962209) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +1. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#489](https://github.com/aramis-lab/clinicadl/pull/489#issuecomment-1750708126) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +3. 🗣 Commented on [#197](https://github.com/CartoonFan/lutris/pull/197#issuecomment-1750348804) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#4](https://github.com/eastgenomics/optimised_filtering/pull/4#issuecomment-1750204470) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +5. 🗣 Commented on [#4303](https://github.com/MDAnalysis/mdanalysis/pull/4303#issuecomment-1750161986) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#94](https://github.com/aimclub/Fedot.Industrial/pull/94#issuecomment-1750110958) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#1424](https://github.com/openSUSE/osc/pull/1424#issuecomment-1750058456) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#4219](https://github.com/bentoml/BentoML/pull/4219#issuecomment-1750041441) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +9. 🗣 Commented on [#666](https://github.com/deuteronomy-works/pyffmpeg/pull/666#issuecomment-1749962915) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +10. 🗣 Commented on [#665](https://github.com/deuteronomy-works/pyffmpeg/pull/665#issuecomment-1749962842) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) From 2509216b15e6fa03ef55bf29613410140b36d7d1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 15:17:15 +0000 Subject: [PATCH 0252/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4f7328d9..52b3f12b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#489](https://github.com/aramis-lab/clinicadl/pull/489#issuecomment-1750708126) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -3. 🗣 Commented on [#197](https://github.com/CartoonFan/lutris/pull/197#issuecomment-1750348804) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#4](https://github.com/eastgenomics/optimised_filtering/pull/4#issuecomment-1750204470) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -5. 🗣 Commented on [#4303](https://github.com/MDAnalysis/mdanalysis/pull/4303#issuecomment-1750161986) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#94](https://github.com/aimclub/Fedot.Industrial/pull/94#issuecomment-1750110958) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#1424](https://github.com/openSUSE/osc/pull/1424#issuecomment-1750058456) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#4219](https://github.com/bentoml/BentoML/pull/4219#issuecomment-1750041441) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -9. 🗣 Commented on [#666](https://github.com/deuteronomy-works/pyffmpeg/pull/666#issuecomment-1749962915) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -10. 🗣 Commented on [#665](https://github.com/deuteronomy-works/pyffmpeg/pull/665#issuecomment-1749962842) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +1. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#489](https://github.com/aramis-lab/clinicadl/pull/489#issuecomment-1750708126) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +4. 🗣 Commented on [#197](https://github.com/CartoonFan/lutris/pull/197#issuecomment-1750348804) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#4](https://github.com/eastgenomics/optimised_filtering/pull/4#issuecomment-1750204470) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +6. 🗣 Commented on [#4303](https://github.com/MDAnalysis/mdanalysis/pull/4303#issuecomment-1750161986) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#94](https://github.com/aimclub/Fedot.Industrial/pull/94#issuecomment-1750110958) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +8. 🗣 Commented on [#1424](https://github.com/openSUSE/osc/pull/1424#issuecomment-1750058456) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#4219](https://github.com/bentoml/BentoML/pull/4219#issuecomment-1750041441) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +10. 🗣 Commented on [#666](https://github.com/deuteronomy-works/pyffmpeg/pull/666#issuecomment-1749962915) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) From 2ff709c0388375888f27164ee9bbcc647fcf815c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 20:37:24 +0000 Subject: [PATCH 0253/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 52b3f12b..3be9d98d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#489](https://github.com/aramis-lab/clinicadl/pull/489#issuecomment-1750708126) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -4. 🗣 Commented on [#197](https://github.com/CartoonFan/lutris/pull/197#issuecomment-1750348804) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#4](https://github.com/eastgenomics/optimised_filtering/pull/4#issuecomment-1750204470) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -6. 🗣 Commented on [#4303](https://github.com/MDAnalysis/mdanalysis/pull/4303#issuecomment-1750161986) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#94](https://github.com/aimclub/Fedot.Industrial/pull/94#issuecomment-1750110958) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -8. 🗣 Commented on [#1424](https://github.com/openSUSE/osc/pull/1424#issuecomment-1750058456) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#4219](https://github.com/bentoml/BentoML/pull/4219#issuecomment-1750041441) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -10. 🗣 Commented on [#666](https://github.com/deuteronomy-works/pyffmpeg/pull/666#issuecomment-1749962915) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +1. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +2. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#489](https://github.com/aramis-lab/clinicadl/pull/489#issuecomment-1750708126) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +5. 🗣 Commented on [#197](https://github.com/CartoonFan/lutris/pull/197#issuecomment-1750348804) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#4](https://github.com/eastgenomics/optimised_filtering/pull/4#issuecomment-1750204470) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +7. 🗣 Commented on [#4303](https://github.com/MDAnalysis/mdanalysis/pull/4303#issuecomment-1750161986) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#94](https://github.com/aimclub/Fedot.Industrial/pull/94#issuecomment-1750110958) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +9. 🗣 Commented on [#1424](https://github.com/openSUSE/osc/pull/1424#issuecomment-1750058456) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#4219](https://github.com/bentoml/BentoML/pull/4219#issuecomment-1750041441) in [bentoml/BentoML](https://github.com/bentoml/BentoML) From df986e0815265faeacf3af1add58826d58e2f3a0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 21:37:26 +0000 Subject: [PATCH 0254/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3be9d98d..3abd30f4 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -2. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#489](https://github.com/aramis-lab/clinicadl/pull/489#issuecomment-1750708126) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -5. 🗣 Commented on [#197](https://github.com/CartoonFan/lutris/pull/197#issuecomment-1750348804) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#4](https://github.com/eastgenomics/optimised_filtering/pull/4#issuecomment-1750204470) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -7. 🗣 Commented on [#4303](https://github.com/MDAnalysis/mdanalysis/pull/4303#issuecomment-1750161986) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#94](https://github.com/aimclub/Fedot.Industrial/pull/94#issuecomment-1750110958) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -9. 🗣 Commented on [#1424](https://github.com/openSUSE/osc/pull/1424#issuecomment-1750058456) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#4219](https://github.com/bentoml/BentoML/pull/4219#issuecomment-1750041441) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +1. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +3. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#489](https://github.com/aramis-lab/clinicadl/pull/489#issuecomment-1750708126) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +6. 🗣 Commented on [#197](https://github.com/CartoonFan/lutris/pull/197#issuecomment-1750348804) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#4](https://github.com/eastgenomics/optimised_filtering/pull/4#issuecomment-1750204470) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +8. 🗣 Commented on [#4303](https://github.com/MDAnalysis/mdanalysis/pull/4303#issuecomment-1750161986) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#94](https://github.com/aimclub/Fedot.Industrial/pull/94#issuecomment-1750110958) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#1424](https://github.com/openSUSE/osc/pull/1424#issuecomment-1750058456) in [openSUSE/osc](https://github.com/openSUSE/osc) From d7f724115630941994ac5c38ffbea240818ef52a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Oct 2023 02:03:22 +0000 Subject: [PATCH 0255/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3abd30f4..8cfe788b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -3. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#489](https://github.com/aramis-lab/clinicadl/pull/489#issuecomment-1750708126) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -6. 🗣 Commented on [#197](https://github.com/CartoonFan/lutris/pull/197#issuecomment-1750348804) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#4](https://github.com/eastgenomics/optimised_filtering/pull/4#issuecomment-1750204470) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -8. 🗣 Commented on [#4303](https://github.com/MDAnalysis/mdanalysis/pull/4303#issuecomment-1750161986) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#94](https://github.com/aimclub/Fedot.Industrial/pull/94#issuecomment-1750110958) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#1424](https://github.com/openSUSE/osc/pull/1424#issuecomment-1750058456) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +4. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#489](https://github.com/aramis-lab/clinicadl/pull/489#issuecomment-1750708126) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +7. 🗣 Commented on [#197](https://github.com/CartoonFan/lutris/pull/197#issuecomment-1750348804) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#4](https://github.com/eastgenomics/optimised_filtering/pull/4#issuecomment-1750204470) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +9. 🗣 Commented on [#4303](https://github.com/MDAnalysis/mdanalysis/pull/4303#issuecomment-1750161986) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#94](https://github.com/aimclub/Fedot.Industrial/pull/94#issuecomment-1750110958) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) From 2572f1c9739435832b24164c27992d9bd9d1d90c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Oct 2023 03:37:30 +0000 Subject: [PATCH 0256/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8cfe788b..353d416f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -4. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#489](https://github.com/aramis-lab/clinicadl/pull/489#issuecomment-1750708126) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -7. 🗣 Commented on [#197](https://github.com/CartoonFan/lutris/pull/197#issuecomment-1750348804) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#4](https://github.com/eastgenomics/optimised_filtering/pull/4#issuecomment-1750204470) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -9. 🗣 Commented on [#4303](https://github.com/MDAnalysis/mdanalysis/pull/4303#issuecomment-1750161986) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#94](https://github.com/aimclub/Fedot.Industrial/pull/94#issuecomment-1750110958) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +1. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +5. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +7. 🗣 Commented on [#489](https://github.com/aramis-lab/clinicadl/pull/489#issuecomment-1750708126) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +8. 🗣 Commented on [#197](https://github.com/CartoonFan/lutris/pull/197#issuecomment-1750348804) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#4](https://github.com/eastgenomics/optimised_filtering/pull/4#issuecomment-1750204470) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +10. 🗣 Commented on [#4303](https://github.com/MDAnalysis/mdanalysis/pull/4303#issuecomment-1750161986) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From e7ab21af1e8b7e27fc793d9d720019c5ea106df4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Oct 2023 05:13:52 +0000 Subject: [PATCH 0257/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 353d416f..bacb7a44 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -5. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -7. 🗣 Commented on [#489](https://github.com/aramis-lab/clinicadl/pull/489#issuecomment-1750708126) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -8. 🗣 Commented on [#197](https://github.com/CartoonFan/lutris/pull/197#issuecomment-1750348804) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#4](https://github.com/eastgenomics/optimised_filtering/pull/4#issuecomment-1750204470) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -10. 🗣 Commented on [#4303](https://github.com/MDAnalysis/mdanalysis/pull/4303#issuecomment-1750161986) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +2. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +6. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +8. 🗣 Commented on [#489](https://github.com/aramis-lab/clinicadl/pull/489#issuecomment-1750708126) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +9. 🗣 Commented on [#197](https://github.com/CartoonFan/lutris/pull/197#issuecomment-1750348804) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#4](https://github.com/eastgenomics/optimised_filtering/pull/4#issuecomment-1750204470) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) From d95033908eb25f315b21f288bfc113dba437aa45 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Oct 2023 11:11:48 +0000 Subject: [PATCH 0258/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bacb7a44..160853d4 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -2. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -6. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -8. 🗣 Commented on [#489](https://github.com/aramis-lab/clinicadl/pull/489#issuecomment-1750708126) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -9. 🗣 Commented on [#197](https://github.com/CartoonFan/lutris/pull/197#issuecomment-1750348804) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#4](https://github.com/eastgenomics/optimised_filtering/pull/4#issuecomment-1750204470) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +1. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +2. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +3. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +7. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#489](https://github.com/aramis-lab/clinicadl/pull/489#issuecomment-1750708126) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +10. 🗣 Commented on [#197](https://github.com/CartoonFan/lutris/pull/197#issuecomment-1750348804) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 155b44572501ebb1c9494ca8db02d1472f1ce26d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Oct 2023 14:12:35 +0000 Subject: [PATCH 0259/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 160853d4..42059da2 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -2. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -3. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -7. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#489](https://github.com/aramis-lab/clinicadl/pull/489#issuecomment-1750708126) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -10. 🗣 Commented on [#197](https://github.com/CartoonFan/lutris/pull/197#issuecomment-1750348804) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751718710) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +3. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +4. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +8. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +10. 🗣 Commented on [#489](https://github.com/aramis-lab/clinicadl/pull/489#issuecomment-1750708126) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) From 9f34a6891926e96e0bdbdb6683a19770dbf6dd6e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Oct 2023 16:37:34 +0000 Subject: [PATCH 0260/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 42059da2..89c48040 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751718710) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -3. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -4. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -8. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -10. 🗣 Commented on [#489](https://github.com/aramis-lab/clinicadl/pull/489#issuecomment-1750708126) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +1. 🗣 Commented on [#21402](https://github.com/spyder-ide/spyder/pull/21402#issuecomment-1751765049) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751718710) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +4. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +5. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +9. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) From c1847c24c03bc43212478c847d11c38ed5399dbe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 8 Oct 2023 03:15:29 +0000 Subject: [PATCH 0261/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 89c48040..66b88d7f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#21402](https://github.com/spyder-ide/spyder/pull/21402#issuecomment-1751765049) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751718710) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -4. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -5. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -9. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#844](https://github.com/PyThaiNLP/pythainlp/pull/844#issuecomment-1750709314) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +1. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751901781) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#21402](https://github.com/spyder-ide/spyder/pull/21402#issuecomment-1751765049) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751718710) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +5. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +6. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +10. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 4a2a5c769a5c193eee266d381ed2ceaa0c0f000d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 8 Oct 2023 03:37:15 +0000 Subject: [PATCH 0262/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 66b88d7f..251d24b1 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751901781) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#21402](https://github.com/spyder-ide/spyder/pull/21402#issuecomment-1751765049) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751718710) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -5. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -6. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -10. 🗣 Commented on [#573](https://github.com/OpenFreeEnergy/openfe/pull/573#issuecomment-1750838308) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751907648) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751901781) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#21402](https://github.com/spyder-ide/spyder/pull/21402#issuecomment-1751765049) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751718710) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +6. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +7. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) From b8690fb6cae2b938e34334feeacf8c359f0dae8a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 8 Oct 2023 04:18:15 +0000 Subject: [PATCH 0263/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 251d24b1..20a4a8a4 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751907648) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751901781) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#21402](https://github.com/spyder-ide/spyder/pull/21402#issuecomment-1751765049) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751718710) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -6. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -7. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#985](https://github.com/oemof/oemof-solph/pull/985#issuecomment-1751365541) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +1. 🗣 Commented on [#88](https://github.com/politeauthority/cver/pull/88#issuecomment-1751914318) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751907648) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751901781) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#21402](https://github.com/spyder-ide/spyder/pull/21402#issuecomment-1751765049) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751718710) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +7. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +8. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) From 630043726a13506f8a87a0eb7366a24b6f3a7762 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 8 Oct 2023 16:18:52 +0000 Subject: [PATCH 0264/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 20a4a8a4..f5dbaa34 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#88](https://github.com/politeauthority/cver/pull/88#issuecomment-1751914318) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751907648) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751901781) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#21402](https://github.com/spyder-ide/spyder/pull/21402#issuecomment-1751765049) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751718710) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -7. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -8. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#81](https://github.com/politeauthority/cver/pull/81#issuecomment-1751412390) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#285](https://github.com/MDAnalysis/UserGuide/pull/285#issuecomment-1752092595) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) +2. 🗣 Commented on [#88](https://github.com/politeauthority/cver/pull/88#issuecomment-1751914318) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751907648) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751901781) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#21402](https://github.com/spyder-ide/spyder/pull/21402#issuecomment-1751765049) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751718710) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +8. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +9. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) From db46a62ea971e61b569866d81adde263ac09bcb5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 8 Oct 2023 21:12:34 +0000 Subject: [PATCH 0265/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f5dbaa34..112b36c8 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#285](https://github.com/MDAnalysis/UserGuide/pull/285#issuecomment-1752092595) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) -2. 🗣 Commented on [#88](https://github.com/politeauthority/cver/pull/88#issuecomment-1751914318) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751907648) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751901781) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#21402](https://github.com/spyder-ide/spyder/pull/21402#issuecomment-1751765049) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751718710) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -8. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -9. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751556769) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#862](https://github.com/ToFuProject/tofu/pull/862#issuecomment-1752159173) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#285](https://github.com/MDAnalysis/UserGuide/pull/285#issuecomment-1752092595) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) +3. 🗣 Commented on [#88](https://github.com/politeauthority/cver/pull/88#issuecomment-1751914318) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751907648) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751901781) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#21402](https://github.com/spyder-ide/spyder/pull/21402#issuecomment-1751765049) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751718710) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +9. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +10. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) From 862b7f207b6d8686a7e9119b8933f0004bb4e115 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 8 Oct 2023 21:37:02 +0000 Subject: [PATCH 0266/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 112b36c8..08f0dbd6 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#862](https://github.com/ToFuProject/tofu/pull/862#issuecomment-1752159173) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#285](https://github.com/MDAnalysis/UserGuide/pull/285#issuecomment-1752092595) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) -3. 🗣 Commented on [#88](https://github.com/politeauthority/cver/pull/88#issuecomment-1751914318) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751907648) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751901781) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#21402](https://github.com/spyder-ide/spyder/pull/21402#issuecomment-1751765049) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751718710) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -9. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -10. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751584212) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#924](https://github.com/avaframe/AvaFrame/pull/924#issuecomment-1752164590) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#862](https://github.com/ToFuProject/tofu/pull/862#issuecomment-1752159173) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#285](https://github.com/MDAnalysis/UserGuide/pull/285#issuecomment-1752092595) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) +4. 🗣 Commented on [#88](https://github.com/politeauthority/cver/pull/88#issuecomment-1751914318) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751907648) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751901781) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#21402](https://github.com/spyder-ide/spyder/pull/21402#issuecomment-1751765049) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751718710) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +10. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) From d3b4170053ae02ec07a746d3d2e83181e8ea559b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 08:21:32 +0000 Subject: [PATCH 0267/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 08f0dbd6..df54c683 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#924](https://github.com/avaframe/AvaFrame/pull/924#issuecomment-1752164590) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#862](https://github.com/ToFuProject/tofu/pull/862#issuecomment-1752159173) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#285](https://github.com/MDAnalysis/UserGuide/pull/285#issuecomment-1752092595) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) -4. 🗣 Commented on [#88](https://github.com/politeauthority/cver/pull/88#issuecomment-1751914318) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751907648) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751901781) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#21402](https://github.com/spyder-ide/spyder/pull/21402#issuecomment-1751765049) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751718710) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -10. 🗣 Commented on [#306](https://github.com/DeMarcoLab/fibsem/pull/306#issuecomment-1751597799) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +1. 🗣 Commented on [#651](https://github.com/einsteinpy/einsteinpy/pull/651#issuecomment-1752536108) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +2. 🗣 Commented on [#924](https://github.com/avaframe/AvaFrame/pull/924#issuecomment-1752164590) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#862](https://github.com/ToFuProject/tofu/pull/862#issuecomment-1752159173) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#285](https://github.com/MDAnalysis/UserGuide/pull/285#issuecomment-1752092595) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) +5. 🗣 Commented on [#88](https://github.com/politeauthority/cver/pull/88#issuecomment-1751914318) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751907648) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751901781) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#21402](https://github.com/spyder-ide/spyder/pull/21402#issuecomment-1751765049) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751718710) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) From 5ee31a8e9fcf6dd47fce96ff396bbe65a11ea88c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 09:17:15 +0000 Subject: [PATCH 0268/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index df54c683..74433d13 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#651](https://github.com/einsteinpy/einsteinpy/pull/651#issuecomment-1752536108) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -2. 🗣 Commented on [#924](https://github.com/avaframe/AvaFrame/pull/924#issuecomment-1752164590) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#862](https://github.com/ToFuProject/tofu/pull/862#issuecomment-1752159173) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#285](https://github.com/MDAnalysis/UserGuide/pull/285#issuecomment-1752092595) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) -5. 🗣 Commented on [#88](https://github.com/politeauthority/cver/pull/88#issuecomment-1751914318) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751907648) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751901781) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#21402](https://github.com/spyder-ide/spyder/pull/21402#issuecomment-1751765049) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#82](https://github.com/politeauthority/cver/pull/82#issuecomment-1751718710) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#907](https://github.com/WesternFriend/WF-website/pull/907#issuecomment-1751679878) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +1. 🗣 Commented on [#14](https://github.com/OpenFreeEnergy/kartograf/pull/14#issuecomment-1752622400) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +2. 🗣 Commented on [#212](https://github.com/epfl-theos/koopmans/pull/212#issuecomment-1752600644) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +3. 🗣 Commented on [#128](https://github.com/njzjz/dpgen/pull/128#issuecomment-1752582565) in [njzjz/dpgen](https://github.com/njzjz/dpgen) +4. 🗣 Commented on [#651](https://github.com/einsteinpy/einsteinpy/pull/651#issuecomment-1752536108) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +5. 🗣 Commented on [#924](https://github.com/avaframe/AvaFrame/pull/924#issuecomment-1752164590) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#862](https://github.com/ToFuProject/tofu/pull/862#issuecomment-1752159173) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#285](https://github.com/MDAnalysis/UserGuide/pull/285#issuecomment-1752092595) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) +8. 🗣 Commented on [#88](https://github.com/politeauthority/cver/pull/88#issuecomment-1751914318) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751907648) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751901781) in [politeauthority/cver](https://github.com/politeauthority/cver) From 7472ea65ae4b3367f2855a0932e6a3f0843ddc25 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 10:18:40 +0000 Subject: [PATCH 0269/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 74433d13..7c18a817 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#14](https://github.com/OpenFreeEnergy/kartograf/pull/14#issuecomment-1752622400) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -2. 🗣 Commented on [#212](https://github.com/epfl-theos/koopmans/pull/212#issuecomment-1752600644) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -3. 🗣 Commented on [#128](https://github.com/njzjz/dpgen/pull/128#issuecomment-1752582565) in [njzjz/dpgen](https://github.com/njzjz/dpgen) -4. 🗣 Commented on [#651](https://github.com/einsteinpy/einsteinpy/pull/651#issuecomment-1752536108) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -5. 🗣 Commented on [#924](https://github.com/avaframe/AvaFrame/pull/924#issuecomment-1752164590) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#862](https://github.com/ToFuProject/tofu/pull/862#issuecomment-1752159173) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#285](https://github.com/MDAnalysis/UserGuide/pull/285#issuecomment-1752092595) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) -8. 🗣 Commented on [#88](https://github.com/politeauthority/cver/pull/88#issuecomment-1751914318) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751907648) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#86](https://github.com/politeauthority/cver/pull/86#issuecomment-1751901781) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#187](https://github.com/aimclub/GOLEM/pull/187#issuecomment-1752708732) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#209](https://github.com/aimclub/GOLEM/pull/209#issuecomment-1752678637) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#14](https://github.com/OpenFreeEnergy/kartograf/pull/14#issuecomment-1752622400) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +4. 🗣 Commented on [#212](https://github.com/epfl-theos/koopmans/pull/212#issuecomment-1752600644) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +5. 🗣 Commented on [#128](https://github.com/njzjz/dpgen/pull/128#issuecomment-1752582565) in [njzjz/dpgen](https://github.com/njzjz/dpgen) +6. 🗣 Commented on [#651](https://github.com/einsteinpy/einsteinpy/pull/651#issuecomment-1752536108) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +7. 🗣 Commented on [#924](https://github.com/avaframe/AvaFrame/pull/924#issuecomment-1752164590) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#862](https://github.com/ToFuProject/tofu/pull/862#issuecomment-1752159173) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#285](https://github.com/MDAnalysis/UserGuide/pull/285#issuecomment-1752092595) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) +10. 🗣 Commented on [#88](https://github.com/politeauthority/cver/pull/88#issuecomment-1751914318) in [politeauthority/cver](https://github.com/politeauthority/cver) From 8da3d0ff622bd9975dcf0823e1710134071bcf41 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 11:13:52 +0000 Subject: [PATCH 0270/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7c18a817..af46a572 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#187](https://github.com/aimclub/GOLEM/pull/187#issuecomment-1752708732) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#209](https://github.com/aimclub/GOLEM/pull/209#issuecomment-1752678637) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#14](https://github.com/OpenFreeEnergy/kartograf/pull/14#issuecomment-1752622400) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -4. 🗣 Commented on [#212](https://github.com/epfl-theos/koopmans/pull/212#issuecomment-1752600644) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -5. 🗣 Commented on [#128](https://github.com/njzjz/dpgen/pull/128#issuecomment-1752582565) in [njzjz/dpgen](https://github.com/njzjz/dpgen) -6. 🗣 Commented on [#651](https://github.com/einsteinpy/einsteinpy/pull/651#issuecomment-1752536108) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -7. 🗣 Commented on [#924](https://github.com/avaframe/AvaFrame/pull/924#issuecomment-1752164590) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#862](https://github.com/ToFuProject/tofu/pull/862#issuecomment-1752159173) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#285](https://github.com/MDAnalysis/UserGuide/pull/285#issuecomment-1752092595) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) -10. 🗣 Commented on [#88](https://github.com/politeauthority/cver/pull/88#issuecomment-1751914318) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#1](https://github.com/eastgenomics/test_directory_checker/pull/1#issuecomment-1752774174) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +2. 🗣 Commented on [#187](https://github.com/aimclub/GOLEM/pull/187#issuecomment-1752708732) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#209](https://github.com/aimclub/GOLEM/pull/209#issuecomment-1752678637) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +4. 🗣 Commented on [#14](https://github.com/OpenFreeEnergy/kartograf/pull/14#issuecomment-1752622400) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +5. 🗣 Commented on [#212](https://github.com/epfl-theos/koopmans/pull/212#issuecomment-1752600644) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +6. 🗣 Commented on [#128](https://github.com/njzjz/dpgen/pull/128#issuecomment-1752582565) in [njzjz/dpgen](https://github.com/njzjz/dpgen) +7. 🗣 Commented on [#651](https://github.com/einsteinpy/einsteinpy/pull/651#issuecomment-1752536108) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +8. 🗣 Commented on [#924](https://github.com/avaframe/AvaFrame/pull/924#issuecomment-1752164590) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#862](https://github.com/ToFuProject/tofu/pull/862#issuecomment-1752159173) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#285](https://github.com/MDAnalysis/UserGuide/pull/285#issuecomment-1752092595) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) From 0b3f28b95cfa4471b0e6b340e01fd93720db2faf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 12:34:02 +0000 Subject: [PATCH 0271/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index af46a572..b0eebb6a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/eastgenomics/test_directory_checker/pull/1#issuecomment-1752774174) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -2. 🗣 Commented on [#187](https://github.com/aimclub/GOLEM/pull/187#issuecomment-1752708732) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#209](https://github.com/aimclub/GOLEM/pull/209#issuecomment-1752678637) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -4. 🗣 Commented on [#14](https://github.com/OpenFreeEnergy/kartograf/pull/14#issuecomment-1752622400) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -5. 🗣 Commented on [#212](https://github.com/epfl-theos/koopmans/pull/212#issuecomment-1752600644) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -6. 🗣 Commented on [#128](https://github.com/njzjz/dpgen/pull/128#issuecomment-1752582565) in [njzjz/dpgen](https://github.com/njzjz/dpgen) -7. 🗣 Commented on [#651](https://github.com/einsteinpy/einsteinpy/pull/651#issuecomment-1752536108) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -8. 🗣 Commented on [#924](https://github.com/avaframe/AvaFrame/pull/924#issuecomment-1752164590) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#862](https://github.com/ToFuProject/tofu/pull/862#issuecomment-1752159173) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#285](https://github.com/MDAnalysis/UserGuide/pull/285#issuecomment-1752092595) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) +1. 🗣 Commented on [#21](https://github.com/adam-prochazka/search-engine/pull/21#issuecomment-1752918113) in [adam-prochazka/search-engine](https://github.com/adam-prochazka/search-engine) +2. 🗣 Commented on [#1](https://github.com/eastgenomics/test_directory_checker/pull/1#issuecomment-1752774174) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +3. 🗣 Commented on [#187](https://github.com/aimclub/GOLEM/pull/187#issuecomment-1752708732) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +4. 🗣 Commented on [#209](https://github.com/aimclub/GOLEM/pull/209#issuecomment-1752678637) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#14](https://github.com/OpenFreeEnergy/kartograf/pull/14#issuecomment-1752622400) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +6. 🗣 Commented on [#212](https://github.com/epfl-theos/koopmans/pull/212#issuecomment-1752600644) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +7. 🗣 Commented on [#128](https://github.com/njzjz/dpgen/pull/128#issuecomment-1752582565) in [njzjz/dpgen](https://github.com/njzjz/dpgen) +8. 🗣 Commented on [#651](https://github.com/einsteinpy/einsteinpy/pull/651#issuecomment-1752536108) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +9. 🗣 Commented on [#924](https://github.com/avaframe/AvaFrame/pull/924#issuecomment-1752164590) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#862](https://github.com/ToFuProject/tofu/pull/862#issuecomment-1752159173) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From 3f6fb39f22d54dd833c415a463ace10934e1bcfa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 13:21:08 +0000 Subject: [PATCH 0272/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b0eebb6a..95759ed7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#21](https://github.com/adam-prochazka/search-engine/pull/21#issuecomment-1752918113) in [adam-prochazka/search-engine](https://github.com/adam-prochazka/search-engine) -2. 🗣 Commented on [#1](https://github.com/eastgenomics/test_directory_checker/pull/1#issuecomment-1752774174) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -3. 🗣 Commented on [#187](https://github.com/aimclub/GOLEM/pull/187#issuecomment-1752708732) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -4. 🗣 Commented on [#209](https://github.com/aimclub/GOLEM/pull/209#issuecomment-1752678637) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#14](https://github.com/OpenFreeEnergy/kartograf/pull/14#issuecomment-1752622400) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -6. 🗣 Commented on [#212](https://github.com/epfl-theos/koopmans/pull/212#issuecomment-1752600644) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -7. 🗣 Commented on [#128](https://github.com/njzjz/dpgen/pull/128#issuecomment-1752582565) in [njzjz/dpgen](https://github.com/njzjz/dpgen) -8. 🗣 Commented on [#651](https://github.com/einsteinpy/einsteinpy/pull/651#issuecomment-1752536108) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -9. 🗣 Commented on [#924](https://github.com/avaframe/AvaFrame/pull/924#issuecomment-1752164590) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#862](https://github.com/ToFuProject/tofu/pull/862#issuecomment-1752159173) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#212](https://github.com/aimclub/GOLEM/pull/212#issuecomment-1752992912) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#21](https://github.com/adam-prochazka/search-engine/pull/21#issuecomment-1752918113) in [adam-prochazka/search-engine](https://github.com/adam-prochazka/search-engine) +3. 🗣 Commented on [#1](https://github.com/eastgenomics/test_directory_checker/pull/1#issuecomment-1752774174) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +4. 🗣 Commented on [#187](https://github.com/aimclub/GOLEM/pull/187#issuecomment-1752708732) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#209](https://github.com/aimclub/GOLEM/pull/209#issuecomment-1752678637) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#14](https://github.com/OpenFreeEnergy/kartograf/pull/14#issuecomment-1752622400) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +7. 🗣 Commented on [#212](https://github.com/epfl-theos/koopmans/pull/212#issuecomment-1752600644) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +8. 🗣 Commented on [#128](https://github.com/njzjz/dpgen/pull/128#issuecomment-1752582565) in [njzjz/dpgen](https://github.com/njzjz/dpgen) +9. 🗣 Commented on [#651](https://github.com/einsteinpy/einsteinpy/pull/651#issuecomment-1752536108) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +10. 🗣 Commented on [#924](https://github.com/avaframe/AvaFrame/pull/924#issuecomment-1752164590) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From fc3c4cd25ccb204ce03299e0dcbac3829154bb2b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 14:37:54 +0000 Subject: [PATCH 0273/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 95759ed7..2194f7c1 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#212](https://github.com/aimclub/GOLEM/pull/212#issuecomment-1752992912) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#21](https://github.com/adam-prochazka/search-engine/pull/21#issuecomment-1752918113) in [adam-prochazka/search-engine](https://github.com/adam-prochazka/search-engine) -3. 🗣 Commented on [#1](https://github.com/eastgenomics/test_directory_checker/pull/1#issuecomment-1752774174) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -4. 🗣 Commented on [#187](https://github.com/aimclub/GOLEM/pull/187#issuecomment-1752708732) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#209](https://github.com/aimclub/GOLEM/pull/209#issuecomment-1752678637) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#14](https://github.com/OpenFreeEnergy/kartograf/pull/14#issuecomment-1752622400) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -7. 🗣 Commented on [#212](https://github.com/epfl-theos/koopmans/pull/212#issuecomment-1752600644) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -8. 🗣 Commented on [#128](https://github.com/njzjz/dpgen/pull/128#issuecomment-1752582565) in [njzjz/dpgen](https://github.com/njzjz/dpgen) -9. 🗣 Commented on [#651](https://github.com/einsteinpy/einsteinpy/pull/651#issuecomment-1752536108) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -10. 🗣 Commented on [#924](https://github.com/avaframe/AvaFrame/pull/924#issuecomment-1752164590) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#213](https://github.com/aimclub/GOLEM/pull/213#issuecomment-1753098509) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#212](https://github.com/aimclub/GOLEM/pull/212#issuecomment-1752992912) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#21](https://github.com/adam-prochazka/search-engine/pull/21#issuecomment-1752918113) in [adam-prochazka/search-engine](https://github.com/adam-prochazka/search-engine) +4. 🗣 Commented on [#1](https://github.com/eastgenomics/test_directory_checker/pull/1#issuecomment-1752774174) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +5. 🗣 Commented on [#187](https://github.com/aimclub/GOLEM/pull/187#issuecomment-1752708732) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#209](https://github.com/aimclub/GOLEM/pull/209#issuecomment-1752678637) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#14](https://github.com/OpenFreeEnergy/kartograf/pull/14#issuecomment-1752622400) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +8. 🗣 Commented on [#212](https://github.com/epfl-theos/koopmans/pull/212#issuecomment-1752600644) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +9. 🗣 Commented on [#128](https://github.com/njzjz/dpgen/pull/128#issuecomment-1752582565) in [njzjz/dpgen](https://github.com/njzjz/dpgen) +10. 🗣 Commented on [#651](https://github.com/einsteinpy/einsteinpy/pull/651#issuecomment-1752536108) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) From 40bd4f713a7a7a9bff7b800a51f80c32063d56b4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 16:20:48 +0000 Subject: [PATCH 0274/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2194f7c1..11564887 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#213](https://github.com/aimclub/GOLEM/pull/213#issuecomment-1753098509) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#212](https://github.com/aimclub/GOLEM/pull/212#issuecomment-1752992912) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#21](https://github.com/adam-prochazka/search-engine/pull/21#issuecomment-1752918113) in [adam-prochazka/search-engine](https://github.com/adam-prochazka/search-engine) -4. 🗣 Commented on [#1](https://github.com/eastgenomics/test_directory_checker/pull/1#issuecomment-1752774174) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -5. 🗣 Commented on [#187](https://github.com/aimclub/GOLEM/pull/187#issuecomment-1752708732) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#209](https://github.com/aimclub/GOLEM/pull/209#issuecomment-1752678637) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#14](https://github.com/OpenFreeEnergy/kartograf/pull/14#issuecomment-1752622400) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -8. 🗣 Commented on [#212](https://github.com/epfl-theos/koopmans/pull/212#issuecomment-1752600644) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -9. 🗣 Commented on [#128](https://github.com/njzjz/dpgen/pull/128#issuecomment-1752582565) in [njzjz/dpgen](https://github.com/njzjz/dpgen) -10. 🗣 Commented on [#651](https://github.com/einsteinpy/einsteinpy/pull/651#issuecomment-1752536108) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +1. 🗣 Commented on [#2](https://github.com/nipreps/resampler/pull/2#issuecomment-1753289170) in [nipreps/resampler](https://github.com/nipreps/resampler) +2. 🗣 Commented on [#40](https://github.com/eastgenomics/eris/pull/40#issuecomment-1753270743) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#2929](https://github.com/dipy/dipy/pull/2929#issuecomment-1753246823) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#213](https://github.com/aimclub/GOLEM/pull/213#issuecomment-1753098509) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#212](https://github.com/aimclub/GOLEM/pull/212#issuecomment-1752992912) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#21](https://github.com/adam-prochazka/search-engine/pull/21#issuecomment-1752918113) in [adam-prochazka/search-engine](https://github.com/adam-prochazka/search-engine) +7. 🗣 Commented on [#1](https://github.com/eastgenomics/test_directory_checker/pull/1#issuecomment-1752774174) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +8. 🗣 Commented on [#187](https://github.com/aimclub/GOLEM/pull/187#issuecomment-1752708732) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#209](https://github.com/aimclub/GOLEM/pull/209#issuecomment-1752678637) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#14](https://github.com/OpenFreeEnergy/kartograf/pull/14#issuecomment-1752622400) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) From d844e3e979d309791596ae7dc2c91d9245d49f0e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 17:14:00 +0000 Subject: [PATCH 0275/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 11564887..f7327d89 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2](https://github.com/nipreps/resampler/pull/2#issuecomment-1753289170) in [nipreps/resampler](https://github.com/nipreps/resampler) -2. 🗣 Commented on [#40](https://github.com/eastgenomics/eris/pull/40#issuecomment-1753270743) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#2929](https://github.com/dipy/dipy/pull/2929#issuecomment-1753246823) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#213](https://github.com/aimclub/GOLEM/pull/213#issuecomment-1753098509) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#212](https://github.com/aimclub/GOLEM/pull/212#issuecomment-1752992912) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#21](https://github.com/adam-prochazka/search-engine/pull/21#issuecomment-1752918113) in [adam-prochazka/search-engine](https://github.com/adam-prochazka/search-engine) -7. 🗣 Commented on [#1](https://github.com/eastgenomics/test_directory_checker/pull/1#issuecomment-1752774174) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -8. 🗣 Commented on [#187](https://github.com/aimclub/GOLEM/pull/187#issuecomment-1752708732) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#209](https://github.com/aimclub/GOLEM/pull/209#issuecomment-1752678637) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#14](https://github.com/OpenFreeEnergy/kartograf/pull/14#issuecomment-1752622400) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +1. 🗣 Commented on [#761](https://github.com/scilus/scilpy/pull/761#issuecomment-1753349224) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#2](https://github.com/nipreps/resampler/pull/2#issuecomment-1753289170) in [nipreps/resampler](https://github.com/nipreps/resampler) +3. 🗣 Commented on [#40](https://github.com/eastgenomics/eris/pull/40#issuecomment-1753270743) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#2929](https://github.com/dipy/dipy/pull/2929#issuecomment-1753246823) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#213](https://github.com/aimclub/GOLEM/pull/213#issuecomment-1753098509) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#212](https://github.com/aimclub/GOLEM/pull/212#issuecomment-1752992912) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#21](https://github.com/adam-prochazka/search-engine/pull/21#issuecomment-1752918113) in [adam-prochazka/search-engine](https://github.com/adam-prochazka/search-engine) +8. 🗣 Commented on [#1](https://github.com/eastgenomics/test_directory_checker/pull/1#issuecomment-1752774174) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +9. 🗣 Commented on [#187](https://github.com/aimclub/GOLEM/pull/187#issuecomment-1752708732) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#209](https://github.com/aimclub/GOLEM/pull/209#issuecomment-1752678637) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) From 0afc163b452b90af44c1df27b6b4beae96f9ed1a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 17:37:01 +0000 Subject: [PATCH 0276/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f7327d89..4bdfef20 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#761](https://github.com/scilus/scilpy/pull/761#issuecomment-1753349224) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#2](https://github.com/nipreps/resampler/pull/2#issuecomment-1753289170) in [nipreps/resampler](https://github.com/nipreps/resampler) -3. 🗣 Commented on [#40](https://github.com/eastgenomics/eris/pull/40#issuecomment-1753270743) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#2929](https://github.com/dipy/dipy/pull/2929#issuecomment-1753246823) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#213](https://github.com/aimclub/GOLEM/pull/213#issuecomment-1753098509) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#212](https://github.com/aimclub/GOLEM/pull/212#issuecomment-1752992912) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#21](https://github.com/adam-prochazka/search-engine/pull/21#issuecomment-1752918113) in [adam-prochazka/search-engine](https://github.com/adam-prochazka/search-engine) -8. 🗣 Commented on [#1](https://github.com/eastgenomics/test_directory_checker/pull/1#issuecomment-1752774174) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -9. 🗣 Commented on [#187](https://github.com/aimclub/GOLEM/pull/187#issuecomment-1752708732) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#209](https://github.com/aimclub/GOLEM/pull/209#issuecomment-1752678637) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +1. 🗣 Commented on [#25](https://github.com/bento-dbaas/vip-provider/pull/25#issuecomment-1753399324) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +2. 🗣 Commented on [#761](https://github.com/scilus/scilpy/pull/761#issuecomment-1753349224) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#2](https://github.com/nipreps/resampler/pull/2#issuecomment-1753289170) in [nipreps/resampler](https://github.com/nipreps/resampler) +4. 🗣 Commented on [#40](https://github.com/eastgenomics/eris/pull/40#issuecomment-1753270743) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#2929](https://github.com/dipy/dipy/pull/2929#issuecomment-1753246823) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#213](https://github.com/aimclub/GOLEM/pull/213#issuecomment-1753098509) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#212](https://github.com/aimclub/GOLEM/pull/212#issuecomment-1752992912) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +8. 🗣 Commented on [#21](https://github.com/adam-prochazka/search-engine/pull/21#issuecomment-1752918113) in [adam-prochazka/search-engine](https://github.com/adam-prochazka/search-engine) +9. 🗣 Commented on [#1](https://github.com/eastgenomics/test_directory_checker/pull/1#issuecomment-1752774174) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +10. 🗣 Commented on [#187](https://github.com/aimclub/GOLEM/pull/187#issuecomment-1752708732) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) From 62a37095e4ae8817bcc332ca4629587b750ec626 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 19:12:21 +0000 Subject: [PATCH 0277/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4bdfef20..3e881815 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#25](https://github.com/bento-dbaas/vip-provider/pull/25#issuecomment-1753399324) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) -2. 🗣 Commented on [#761](https://github.com/scilus/scilpy/pull/761#issuecomment-1753349224) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#2](https://github.com/nipreps/resampler/pull/2#issuecomment-1753289170) in [nipreps/resampler](https://github.com/nipreps/resampler) -4. 🗣 Commented on [#40](https://github.com/eastgenomics/eris/pull/40#issuecomment-1753270743) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#2929](https://github.com/dipy/dipy/pull/2929#issuecomment-1753246823) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#213](https://github.com/aimclub/GOLEM/pull/213#issuecomment-1753098509) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#212](https://github.com/aimclub/GOLEM/pull/212#issuecomment-1752992912) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -8. 🗣 Commented on [#21](https://github.com/adam-prochazka/search-engine/pull/21#issuecomment-1752918113) in [adam-prochazka/search-engine](https://github.com/adam-prochazka/search-engine) -9. 🗣 Commented on [#1](https://github.com/eastgenomics/test_directory_checker/pull/1#issuecomment-1752774174) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -10. 🗣 Commented on [#187](https://github.com/aimclub/GOLEM/pull/187#issuecomment-1752708732) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +1. 🗣 Commented on [#152](https://github.com/arfc/transition-scenarios/pull/152#issuecomment-1753503938) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +2. 🗣 Commented on [#25](https://github.com/bento-dbaas/vip-provider/pull/25#issuecomment-1753399324) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +3. 🗣 Commented on [#761](https://github.com/scilus/scilpy/pull/761#issuecomment-1753349224) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#2](https://github.com/nipreps/resampler/pull/2#issuecomment-1753289170) in [nipreps/resampler](https://github.com/nipreps/resampler) +5. 🗣 Commented on [#40](https://github.com/eastgenomics/eris/pull/40#issuecomment-1753270743) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#2929](https://github.com/dipy/dipy/pull/2929#issuecomment-1753246823) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#213](https://github.com/aimclub/GOLEM/pull/213#issuecomment-1753098509) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +8. 🗣 Commented on [#212](https://github.com/aimclub/GOLEM/pull/212#issuecomment-1752992912) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#21](https://github.com/adam-prochazka/search-engine/pull/21#issuecomment-1752918113) in [adam-prochazka/search-engine](https://github.com/adam-prochazka/search-engine) +10. 🗣 Commented on [#1](https://github.com/eastgenomics/test_directory_checker/pull/1#issuecomment-1752774174) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) From fab930a6e19aaf6087f649b89f7d7404b512eb71 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 21:13:38 +0000 Subject: [PATCH 0278/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3e881815..1bc09c05 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#152](https://github.com/arfc/transition-scenarios/pull/152#issuecomment-1753503938) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -2. 🗣 Commented on [#25](https://github.com/bento-dbaas/vip-provider/pull/25#issuecomment-1753399324) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) -3. 🗣 Commented on [#761](https://github.com/scilus/scilpy/pull/761#issuecomment-1753349224) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#2](https://github.com/nipreps/resampler/pull/2#issuecomment-1753289170) in [nipreps/resampler](https://github.com/nipreps/resampler) -5. 🗣 Commented on [#40](https://github.com/eastgenomics/eris/pull/40#issuecomment-1753270743) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#2929](https://github.com/dipy/dipy/pull/2929#issuecomment-1753246823) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#213](https://github.com/aimclub/GOLEM/pull/213#issuecomment-1753098509) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -8. 🗣 Commented on [#212](https://github.com/aimclub/GOLEM/pull/212#issuecomment-1752992912) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#21](https://github.com/adam-prochazka/search-engine/pull/21#issuecomment-1752918113) in [adam-prochazka/search-engine](https://github.com/adam-prochazka/search-engine) -10. 🗣 Commented on [#1](https://github.com/eastgenomics/test_directory_checker/pull/1#issuecomment-1752774174) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +1. 🗣 Commented on [#169](https://github.com/sunpy/sunkit-image/pull/169#issuecomment-1753868190) in [sunpy/sunkit-image](https://github.com/sunpy/sunkit-image) +2. 🗣 Commented on [#152](https://github.com/arfc/transition-scenarios/pull/152#issuecomment-1753503938) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +3. 🗣 Commented on [#25](https://github.com/bento-dbaas/vip-provider/pull/25#issuecomment-1753399324) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +4. 🗣 Commented on [#761](https://github.com/scilus/scilpy/pull/761#issuecomment-1753349224) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#2](https://github.com/nipreps/resampler/pull/2#issuecomment-1753289170) in [nipreps/resampler](https://github.com/nipreps/resampler) +6. 🗣 Commented on [#40](https://github.com/eastgenomics/eris/pull/40#issuecomment-1753270743) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#2929](https://github.com/dipy/dipy/pull/2929#issuecomment-1753246823) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#213](https://github.com/aimclub/GOLEM/pull/213#issuecomment-1753098509) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#212](https://github.com/aimclub/GOLEM/pull/212#issuecomment-1752992912) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#21](https://github.com/adam-prochazka/search-engine/pull/21#issuecomment-1752918113) in [adam-prochazka/search-engine](https://github.com/adam-prochazka/search-engine) From 889ee7052f45613b7a4389a231a8459c0127c678 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 22:14:30 +0000 Subject: [PATCH 0279/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1bc09c05..01f42000 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#169](https://github.com/sunpy/sunkit-image/pull/169#issuecomment-1753868190) in [sunpy/sunkit-image](https://github.com/sunpy/sunkit-image) -2. 🗣 Commented on [#152](https://github.com/arfc/transition-scenarios/pull/152#issuecomment-1753503938) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -3. 🗣 Commented on [#25](https://github.com/bento-dbaas/vip-provider/pull/25#issuecomment-1753399324) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) -4. 🗣 Commented on [#761](https://github.com/scilus/scilpy/pull/761#issuecomment-1753349224) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#2](https://github.com/nipreps/resampler/pull/2#issuecomment-1753289170) in [nipreps/resampler](https://github.com/nipreps/resampler) -6. 🗣 Commented on [#40](https://github.com/eastgenomics/eris/pull/40#issuecomment-1753270743) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#2929](https://github.com/dipy/dipy/pull/2929#issuecomment-1753246823) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#213](https://github.com/aimclub/GOLEM/pull/213#issuecomment-1753098509) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#212](https://github.com/aimclub/GOLEM/pull/212#issuecomment-1752992912) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#21](https://github.com/adam-prochazka/search-engine/pull/21#issuecomment-1752918113) in [adam-prochazka/search-engine](https://github.com/adam-prochazka/search-engine) +1. 🗣 Commented on [#2849](https://github.com/astropy/astroquery/pull/2849#issuecomment-1753925817) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#169](https://github.com/sunpy/sunkit-image/pull/169#issuecomment-1753868190) in [sunpy/sunkit-image](https://github.com/sunpy/sunkit-image) +3. 🗣 Commented on [#152](https://github.com/arfc/transition-scenarios/pull/152#issuecomment-1753503938) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +4. 🗣 Commented on [#25](https://github.com/bento-dbaas/vip-provider/pull/25#issuecomment-1753399324) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +5. 🗣 Commented on [#761](https://github.com/scilus/scilpy/pull/761#issuecomment-1753349224) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#2](https://github.com/nipreps/resampler/pull/2#issuecomment-1753289170) in [nipreps/resampler](https://github.com/nipreps/resampler) +7. 🗣 Commented on [#40](https://github.com/eastgenomics/eris/pull/40#issuecomment-1753270743) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#2929](https://github.com/dipy/dipy/pull/2929#issuecomment-1753246823) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#213](https://github.com/aimclub/GOLEM/pull/213#issuecomment-1753098509) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#212](https://github.com/aimclub/GOLEM/pull/212#issuecomment-1752992912) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) From 5e1a32c0a4281a2c614ca0d4bbab101e93aab159 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 23:15:29 +0000 Subject: [PATCH 0280/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 01f42000..73b9e256 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2849](https://github.com/astropy/astroquery/pull/2849#issuecomment-1753925817) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#169](https://github.com/sunpy/sunkit-image/pull/169#issuecomment-1753868190) in [sunpy/sunkit-image](https://github.com/sunpy/sunkit-image) -3. 🗣 Commented on [#152](https://github.com/arfc/transition-scenarios/pull/152#issuecomment-1753503938) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -4. 🗣 Commented on [#25](https://github.com/bento-dbaas/vip-provider/pull/25#issuecomment-1753399324) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) -5. 🗣 Commented on [#761](https://github.com/scilus/scilpy/pull/761#issuecomment-1753349224) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#2](https://github.com/nipreps/resampler/pull/2#issuecomment-1753289170) in [nipreps/resampler](https://github.com/nipreps/resampler) -7. 🗣 Commented on [#40](https://github.com/eastgenomics/eris/pull/40#issuecomment-1753270743) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#2929](https://github.com/dipy/dipy/pull/2929#issuecomment-1753246823) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#213](https://github.com/aimclub/GOLEM/pull/213#issuecomment-1753098509) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#212](https://github.com/aimclub/GOLEM/pull/212#issuecomment-1752992912) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +1. 🗣 Commented on [#635](https://github.com/SergeyPirogov/webdriver_manager/pull/635#issuecomment-1754039799) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +2. 🗣 Commented on [#864](https://github.com/ToFuProject/tofu/pull/864#issuecomment-1754014213) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#2849](https://github.com/astropy/astroquery/pull/2849#issuecomment-1753925817) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#169](https://github.com/sunpy/sunkit-image/pull/169#issuecomment-1753868190) in [sunpy/sunkit-image](https://github.com/sunpy/sunkit-image) +5. 🗣 Commented on [#152](https://github.com/arfc/transition-scenarios/pull/152#issuecomment-1753503938) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +6. 🗣 Commented on [#25](https://github.com/bento-dbaas/vip-provider/pull/25#issuecomment-1753399324) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +7. 🗣 Commented on [#761](https://github.com/scilus/scilpy/pull/761#issuecomment-1753349224) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#2](https://github.com/nipreps/resampler/pull/2#issuecomment-1753289170) in [nipreps/resampler](https://github.com/nipreps/resampler) +9. 🗣 Commented on [#40](https://github.com/eastgenomics/eris/pull/40#issuecomment-1753270743) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#2929](https://github.com/dipy/dipy/pull/2929#issuecomment-1753246823) in [dipy/dipy](https://github.com/dipy/dipy) From 3c266ee05b3c90d1bfe2325cc54d13f15b404e3c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 01:09:12 +0000 Subject: [PATCH 0281/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 73b9e256..8b30291e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#635](https://github.com/SergeyPirogov/webdriver_manager/pull/635#issuecomment-1754039799) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -2. 🗣 Commented on [#864](https://github.com/ToFuProject/tofu/pull/864#issuecomment-1754014213) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#2849](https://github.com/astropy/astroquery/pull/2849#issuecomment-1753925817) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#169](https://github.com/sunpy/sunkit-image/pull/169#issuecomment-1753868190) in [sunpy/sunkit-image](https://github.com/sunpy/sunkit-image) -5. 🗣 Commented on [#152](https://github.com/arfc/transition-scenarios/pull/152#issuecomment-1753503938) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -6. 🗣 Commented on [#25](https://github.com/bento-dbaas/vip-provider/pull/25#issuecomment-1753399324) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) -7. 🗣 Commented on [#761](https://github.com/scilus/scilpy/pull/761#issuecomment-1753349224) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#2](https://github.com/nipreps/resampler/pull/2#issuecomment-1753289170) in [nipreps/resampler](https://github.com/nipreps/resampler) -9. 🗣 Commented on [#40](https://github.com/eastgenomics/eris/pull/40#issuecomment-1753270743) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#2929](https://github.com/dipy/dipy/pull/2929#issuecomment-1753246823) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#865](https://github.com/ToFuProject/tofu/pull/865#issuecomment-1754115156) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#635](https://github.com/SergeyPirogov/webdriver_manager/pull/635#issuecomment-1754039799) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +3. 🗣 Commented on [#864](https://github.com/ToFuProject/tofu/pull/864#issuecomment-1754014213) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#2849](https://github.com/astropy/astroquery/pull/2849#issuecomment-1753925817) in [astropy/astroquery](https://github.com/astropy/astroquery) +5. 🗣 Commented on [#169](https://github.com/sunpy/sunkit-image/pull/169#issuecomment-1753868190) in [sunpy/sunkit-image](https://github.com/sunpy/sunkit-image) +6. 🗣 Commented on [#152](https://github.com/arfc/transition-scenarios/pull/152#issuecomment-1753503938) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +7. 🗣 Commented on [#25](https://github.com/bento-dbaas/vip-provider/pull/25#issuecomment-1753399324) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +8. 🗣 Commented on [#761](https://github.com/scilus/scilpy/pull/761#issuecomment-1753349224) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#2](https://github.com/nipreps/resampler/pull/2#issuecomment-1753289170) in [nipreps/resampler](https://github.com/nipreps/resampler) +10. 🗣 Commented on [#40](https://github.com/eastgenomics/eris/pull/40#issuecomment-1753270743) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 116e1eb76770fd82d91567d30430a3d4c25f6336 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 02:04:14 +0000 Subject: [PATCH 0282/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8b30291e..5487af98 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#865](https://github.com/ToFuProject/tofu/pull/865#issuecomment-1754115156) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#635](https://github.com/SergeyPirogov/webdriver_manager/pull/635#issuecomment-1754039799) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -3. 🗣 Commented on [#864](https://github.com/ToFuProject/tofu/pull/864#issuecomment-1754014213) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#2849](https://github.com/astropy/astroquery/pull/2849#issuecomment-1753925817) in [astropy/astroquery](https://github.com/astropy/astroquery) -5. 🗣 Commented on [#169](https://github.com/sunpy/sunkit-image/pull/169#issuecomment-1753868190) in [sunpy/sunkit-image](https://github.com/sunpy/sunkit-image) -6. 🗣 Commented on [#152](https://github.com/arfc/transition-scenarios/pull/152#issuecomment-1753503938) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -7. 🗣 Commented on [#25](https://github.com/bento-dbaas/vip-provider/pull/25#issuecomment-1753399324) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) -8. 🗣 Commented on [#761](https://github.com/scilus/scilpy/pull/761#issuecomment-1753349224) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#2](https://github.com/nipreps/resampler/pull/2#issuecomment-1753289170) in [nipreps/resampler](https://github.com/nipreps/resampler) -10. 🗣 Commented on [#40](https://github.com/eastgenomics/eris/pull/40#issuecomment-1753270743) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#308](https://github.com/DeMarcoLab/fibsem/pull/308#issuecomment-1754193828) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +2. 🗣 Commented on [#4224](https://github.com/bentoml/BentoML/pull/4224#issuecomment-1754170305) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +3. 🗣 Commented on [#4182](https://github.com/bentoml/BentoML/pull/4182#issuecomment-1754157505) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +4. 🗣 Commented on [#865](https://github.com/ToFuProject/tofu/pull/865#issuecomment-1754115156) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#635](https://github.com/SergeyPirogov/webdriver_manager/pull/635#issuecomment-1754039799) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +6. 🗣 Commented on [#864](https://github.com/ToFuProject/tofu/pull/864#issuecomment-1754014213) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#2849](https://github.com/astropy/astroquery/pull/2849#issuecomment-1753925817) in [astropy/astroquery](https://github.com/astropy/astroquery) +8. 🗣 Commented on [#169](https://github.com/sunpy/sunkit-image/pull/169#issuecomment-1753868190) in [sunpy/sunkit-image](https://github.com/sunpy/sunkit-image) +9. 🗣 Commented on [#152](https://github.com/arfc/transition-scenarios/pull/152#issuecomment-1753503938) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +10. 🗣 Commented on [#25](https://github.com/bento-dbaas/vip-provider/pull/25#issuecomment-1753399324) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) From c351cd8f9040324643cd6f347da7116b3cce3338 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 02:37:26 +0000 Subject: [PATCH 0283/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5487af98..429875db 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#308](https://github.com/DeMarcoLab/fibsem/pull/308#issuecomment-1754193828) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -2. 🗣 Commented on [#4224](https://github.com/bentoml/BentoML/pull/4224#issuecomment-1754170305) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -3. 🗣 Commented on [#4182](https://github.com/bentoml/BentoML/pull/4182#issuecomment-1754157505) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -4. 🗣 Commented on [#865](https://github.com/ToFuProject/tofu/pull/865#issuecomment-1754115156) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#635](https://github.com/SergeyPirogov/webdriver_manager/pull/635#issuecomment-1754039799) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -6. 🗣 Commented on [#864](https://github.com/ToFuProject/tofu/pull/864#issuecomment-1754014213) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#2849](https://github.com/astropy/astroquery/pull/2849#issuecomment-1753925817) in [astropy/astroquery](https://github.com/astropy/astroquery) -8. 🗣 Commented on [#169](https://github.com/sunpy/sunkit-image/pull/169#issuecomment-1753868190) in [sunpy/sunkit-image](https://github.com/sunpy/sunkit-image) -9. 🗣 Commented on [#152](https://github.com/arfc/transition-scenarios/pull/152#issuecomment-1753503938) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -10. 🗣 Commented on [#25](https://github.com/bento-dbaas/vip-provider/pull/25#issuecomment-1753399324) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +1. 🗣 Commented on [#4116](https://github.com/bentoml/BentoML/pull/4116#issuecomment-1754222077) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +2. 🗣 Commented on [#4228](https://github.com/bentoml/BentoML/pull/4228#issuecomment-1754220417) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +3. 🗣 Commented on [#4227](https://github.com/bentoml/BentoML/pull/4227#issuecomment-1754219375) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +4. 🗣 Commented on [#308](https://github.com/DeMarcoLab/fibsem/pull/308#issuecomment-1754193828) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +5. 🗣 Commented on [#4224](https://github.com/bentoml/BentoML/pull/4224#issuecomment-1754170305) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +6. 🗣 Commented on [#4182](https://github.com/bentoml/BentoML/pull/4182#issuecomment-1754157505) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +7. 🗣 Commented on [#865](https://github.com/ToFuProject/tofu/pull/865#issuecomment-1754115156) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#635](https://github.com/SergeyPirogov/webdriver_manager/pull/635#issuecomment-1754039799) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +9. 🗣 Commented on [#864](https://github.com/ToFuProject/tofu/pull/864#issuecomment-1754014213) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#2849](https://github.com/astropy/astroquery/pull/2849#issuecomment-1753925817) in [astropy/astroquery](https://github.com/astropy/astroquery) From 426c5029ce69ddec1588c1e0a99e819433a1c979 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 04:18:55 +0000 Subject: [PATCH 0284/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 429875db..f5839121 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4116](https://github.com/bentoml/BentoML/pull/4116#issuecomment-1754222077) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -2. 🗣 Commented on [#4228](https://github.com/bentoml/BentoML/pull/4228#issuecomment-1754220417) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -3. 🗣 Commented on [#4227](https://github.com/bentoml/BentoML/pull/4227#issuecomment-1754219375) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -4. 🗣 Commented on [#308](https://github.com/DeMarcoLab/fibsem/pull/308#issuecomment-1754193828) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -5. 🗣 Commented on [#4224](https://github.com/bentoml/BentoML/pull/4224#issuecomment-1754170305) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -6. 🗣 Commented on [#4182](https://github.com/bentoml/BentoML/pull/4182#issuecomment-1754157505) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -7. 🗣 Commented on [#865](https://github.com/ToFuProject/tofu/pull/865#issuecomment-1754115156) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#635](https://github.com/SergeyPirogov/webdriver_manager/pull/635#issuecomment-1754039799) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -9. 🗣 Commented on [#864](https://github.com/ToFuProject/tofu/pull/864#issuecomment-1754014213) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#2849](https://github.com/astropy/astroquery/pull/2849#issuecomment-1753925817) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#199](https://github.com/CartoonFan/lutris/pull/199#issuecomment-1754324439) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#309](https://github.com/DeMarcoLab/fibsem/pull/309#issuecomment-1754321786) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +3. 🗣 Commented on [#4116](https://github.com/bentoml/BentoML/pull/4116#issuecomment-1754222077) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +4. 🗣 Commented on [#4228](https://github.com/bentoml/BentoML/pull/4228#issuecomment-1754220417) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +5. 🗣 Commented on [#4227](https://github.com/bentoml/BentoML/pull/4227#issuecomment-1754219375) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +6. 🗣 Commented on [#308](https://github.com/DeMarcoLab/fibsem/pull/308#issuecomment-1754193828) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +7. 🗣 Commented on [#4224](https://github.com/bentoml/BentoML/pull/4224#issuecomment-1754170305) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +8. 🗣 Commented on [#4182](https://github.com/bentoml/BentoML/pull/4182#issuecomment-1754157505) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +9. 🗣 Commented on [#865](https://github.com/ToFuProject/tofu/pull/865#issuecomment-1754115156) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#635](https://github.com/SergeyPirogov/webdriver_manager/pull/635#issuecomment-1754039799) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) From fb51a8f4a4f75489f6323f34b892edb56e6c3065 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 08:20:34 +0000 Subject: [PATCH 0285/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f5839121..b42bf3f7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#199](https://github.com/CartoonFan/lutris/pull/199#issuecomment-1754324439) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#309](https://github.com/DeMarcoLab/fibsem/pull/309#issuecomment-1754321786) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -3. 🗣 Commented on [#4116](https://github.com/bentoml/BentoML/pull/4116#issuecomment-1754222077) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -4. 🗣 Commented on [#4228](https://github.com/bentoml/BentoML/pull/4228#issuecomment-1754220417) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -5. 🗣 Commented on [#4227](https://github.com/bentoml/BentoML/pull/4227#issuecomment-1754219375) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -6. 🗣 Commented on [#308](https://github.com/DeMarcoLab/fibsem/pull/308#issuecomment-1754193828) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -7. 🗣 Commented on [#4224](https://github.com/bentoml/BentoML/pull/4224#issuecomment-1754170305) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -8. 🗣 Commented on [#4182](https://github.com/bentoml/BentoML/pull/4182#issuecomment-1754157505) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -9. 🗣 Commented on [#865](https://github.com/ToFuProject/tofu/pull/865#issuecomment-1754115156) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#635](https://github.com/SergeyPirogov/webdriver_manager/pull/635#issuecomment-1754039799) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +1. 🗣 Commented on [#575](https://github.com/OpenFreeEnergy/openfe/pull/575#issuecomment-1754627654) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#199](https://github.com/CartoonFan/lutris/pull/199#issuecomment-1754324439) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#309](https://github.com/DeMarcoLab/fibsem/pull/309#issuecomment-1754321786) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +4. 🗣 Commented on [#4116](https://github.com/bentoml/BentoML/pull/4116#issuecomment-1754222077) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +5. 🗣 Commented on [#4228](https://github.com/bentoml/BentoML/pull/4228#issuecomment-1754220417) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +6. 🗣 Commented on [#4227](https://github.com/bentoml/BentoML/pull/4227#issuecomment-1754219375) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +7. 🗣 Commented on [#308](https://github.com/DeMarcoLab/fibsem/pull/308#issuecomment-1754193828) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +8. 🗣 Commented on [#4224](https://github.com/bentoml/BentoML/pull/4224#issuecomment-1754170305) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +9. 🗣 Commented on [#4182](https://github.com/bentoml/BentoML/pull/4182#issuecomment-1754157505) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +10. 🗣 Commented on [#865](https://github.com/ToFuProject/tofu/pull/865#issuecomment-1754115156) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From 4c010e4b8de8fc0d3d9b6d13969528556fc10255 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 09:16:06 +0000 Subject: [PATCH 0286/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b42bf3f7..36998060 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#575](https://github.com/OpenFreeEnergy/openfe/pull/575#issuecomment-1754627654) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#199](https://github.com/CartoonFan/lutris/pull/199#issuecomment-1754324439) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#309](https://github.com/DeMarcoLab/fibsem/pull/309#issuecomment-1754321786) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -4. 🗣 Commented on [#4116](https://github.com/bentoml/BentoML/pull/4116#issuecomment-1754222077) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -5. 🗣 Commented on [#4228](https://github.com/bentoml/BentoML/pull/4228#issuecomment-1754220417) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -6. 🗣 Commented on [#4227](https://github.com/bentoml/BentoML/pull/4227#issuecomment-1754219375) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -7. 🗣 Commented on [#308](https://github.com/DeMarcoLab/fibsem/pull/308#issuecomment-1754193828) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -8. 🗣 Commented on [#4224](https://github.com/bentoml/BentoML/pull/4224#issuecomment-1754170305) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -9. 🗣 Commented on [#4182](https://github.com/bentoml/BentoML/pull/4182#issuecomment-1754157505) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -10. 🗣 Commented on [#865](https://github.com/ToFuProject/tofu/pull/865#issuecomment-1754115156) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#4378](https://github.com/pyload/pyload/pull/4378#issuecomment-1754765160) in [pyload/pyload](https://github.com/pyload/pyload) +2. 🗣 Commented on [#575](https://github.com/OpenFreeEnergy/openfe/pull/575#issuecomment-1754627654) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#199](https://github.com/CartoonFan/lutris/pull/199#issuecomment-1754324439) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#309](https://github.com/DeMarcoLab/fibsem/pull/309#issuecomment-1754321786) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +5. 🗣 Commented on [#4116](https://github.com/bentoml/BentoML/pull/4116#issuecomment-1754222077) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +6. 🗣 Commented on [#4228](https://github.com/bentoml/BentoML/pull/4228#issuecomment-1754220417) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +7. 🗣 Commented on [#4227](https://github.com/bentoml/BentoML/pull/4227#issuecomment-1754219375) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +8. 🗣 Commented on [#308](https://github.com/DeMarcoLab/fibsem/pull/308#issuecomment-1754193828) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +9. 🗣 Commented on [#4224](https://github.com/bentoml/BentoML/pull/4224#issuecomment-1754170305) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +10. 🗣 Commented on [#4182](https://github.com/bentoml/BentoML/pull/4182#issuecomment-1754157505) in [bentoml/BentoML](https://github.com/bentoml/BentoML) From c7dbbfc16ecc8d695cffb9d74b9f9955e0f1657c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 11:13:24 +0000 Subject: [PATCH 0287/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 36998060..221e9145 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4378](https://github.com/pyload/pyload/pull/4378#issuecomment-1754765160) in [pyload/pyload](https://github.com/pyload/pyload) -2. 🗣 Commented on [#575](https://github.com/OpenFreeEnergy/openfe/pull/575#issuecomment-1754627654) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#199](https://github.com/CartoonFan/lutris/pull/199#issuecomment-1754324439) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#309](https://github.com/DeMarcoLab/fibsem/pull/309#issuecomment-1754321786) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -5. 🗣 Commented on [#4116](https://github.com/bentoml/BentoML/pull/4116#issuecomment-1754222077) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -6. 🗣 Commented on [#4228](https://github.com/bentoml/BentoML/pull/4228#issuecomment-1754220417) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -7. 🗣 Commented on [#4227](https://github.com/bentoml/BentoML/pull/4227#issuecomment-1754219375) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -8. 🗣 Commented on [#308](https://github.com/DeMarcoLab/fibsem/pull/308#issuecomment-1754193828) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -9. 🗣 Commented on [#4224](https://github.com/bentoml/BentoML/pull/4224#issuecomment-1754170305) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -10. 🗣 Commented on [#4182](https://github.com/bentoml/BentoML/pull/4182#issuecomment-1754157505) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +1. 🗣 Commented on [#214](https://github.com/aimclub/GOLEM/pull/214#issuecomment-1755064703) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#4378](https://github.com/pyload/pyload/pull/4378#issuecomment-1754765160) in [pyload/pyload](https://github.com/pyload/pyload) +3. 🗣 Commented on [#575](https://github.com/OpenFreeEnergy/openfe/pull/575#issuecomment-1754627654) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#199](https://github.com/CartoonFan/lutris/pull/199#issuecomment-1754324439) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#309](https://github.com/DeMarcoLab/fibsem/pull/309#issuecomment-1754321786) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +6. 🗣 Commented on [#4116](https://github.com/bentoml/BentoML/pull/4116#issuecomment-1754222077) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +7. 🗣 Commented on [#4228](https://github.com/bentoml/BentoML/pull/4228#issuecomment-1754220417) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +8. 🗣 Commented on [#4227](https://github.com/bentoml/BentoML/pull/4227#issuecomment-1754219375) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +9. 🗣 Commented on [#308](https://github.com/DeMarcoLab/fibsem/pull/308#issuecomment-1754193828) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +10. 🗣 Commented on [#4224](https://github.com/bentoml/BentoML/pull/4224#issuecomment-1754170305) in [bentoml/BentoML](https://github.com/bentoml/BentoML) From ec92eb34f2d1ea3987b00352dcf8df38d535fd9d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 11:37:13 +0000 Subject: [PATCH 0288/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 221e9145..256b810a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#214](https://github.com/aimclub/GOLEM/pull/214#issuecomment-1755064703) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#4378](https://github.com/pyload/pyload/pull/4378#issuecomment-1754765160) in [pyload/pyload](https://github.com/pyload/pyload) -3. 🗣 Commented on [#575](https://github.com/OpenFreeEnergy/openfe/pull/575#issuecomment-1754627654) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#199](https://github.com/CartoonFan/lutris/pull/199#issuecomment-1754324439) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#309](https://github.com/DeMarcoLab/fibsem/pull/309#issuecomment-1754321786) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -6. 🗣 Commented on [#4116](https://github.com/bentoml/BentoML/pull/4116#issuecomment-1754222077) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -7. 🗣 Commented on [#4228](https://github.com/bentoml/BentoML/pull/4228#issuecomment-1754220417) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -8. 🗣 Commented on [#4227](https://github.com/bentoml/BentoML/pull/4227#issuecomment-1754219375) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -9. 🗣 Commented on [#308](https://github.com/DeMarcoLab/fibsem/pull/308#issuecomment-1754193828) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -10. 🗣 Commented on [#4224](https://github.com/bentoml/BentoML/pull/4224#issuecomment-1754170305) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +1. 🗣 Commented on [#41](https://github.com/eastgenomics/eris/pull/41#issuecomment-1755103398) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#214](https://github.com/aimclub/GOLEM/pull/214#issuecomment-1755064703) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#4378](https://github.com/pyload/pyload/pull/4378#issuecomment-1754765160) in [pyload/pyload](https://github.com/pyload/pyload) +4. 🗣 Commented on [#575](https://github.com/OpenFreeEnergy/openfe/pull/575#issuecomment-1754627654) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#199](https://github.com/CartoonFan/lutris/pull/199#issuecomment-1754324439) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#309](https://github.com/DeMarcoLab/fibsem/pull/309#issuecomment-1754321786) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +7. 🗣 Commented on [#4116](https://github.com/bentoml/BentoML/pull/4116#issuecomment-1754222077) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +8. 🗣 Commented on [#4228](https://github.com/bentoml/BentoML/pull/4228#issuecomment-1754220417) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +9. 🗣 Commented on [#4227](https://github.com/bentoml/BentoML/pull/4227#issuecomment-1754219375) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +10. 🗣 Commented on [#308](https://github.com/DeMarcoLab/fibsem/pull/308#issuecomment-1754193828) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) From b245d4921d0d38d2e4bc7979adb472c50ea46010 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 12:31:37 +0000 Subject: [PATCH 0289/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 256b810a..8a94674f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#41](https://github.com/eastgenomics/eris/pull/41#issuecomment-1755103398) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#214](https://github.com/aimclub/GOLEM/pull/214#issuecomment-1755064703) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#4378](https://github.com/pyload/pyload/pull/4378#issuecomment-1754765160) in [pyload/pyload](https://github.com/pyload/pyload) -4. 🗣 Commented on [#575](https://github.com/OpenFreeEnergy/openfe/pull/575#issuecomment-1754627654) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#199](https://github.com/CartoonFan/lutris/pull/199#issuecomment-1754324439) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#309](https://github.com/DeMarcoLab/fibsem/pull/309#issuecomment-1754321786) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -7. 🗣 Commented on [#4116](https://github.com/bentoml/BentoML/pull/4116#issuecomment-1754222077) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -8. 🗣 Commented on [#4228](https://github.com/bentoml/BentoML/pull/4228#issuecomment-1754220417) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -9. 🗣 Commented on [#4227](https://github.com/bentoml/BentoML/pull/4227#issuecomment-1754219375) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -10. 🗣 Commented on [#308](https://github.com/DeMarcoLab/fibsem/pull/308#issuecomment-1754193828) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +1. 🗣 Commented on [#135](https://github.com/eastgenomics/dias_batch_running/pull/135#issuecomment-1755250352) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#41](https://github.com/eastgenomics/eris/pull/41#issuecomment-1755103398) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#214](https://github.com/aimclub/GOLEM/pull/214#issuecomment-1755064703) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +4. 🗣 Commented on [#4378](https://github.com/pyload/pyload/pull/4378#issuecomment-1754765160) in [pyload/pyload](https://github.com/pyload/pyload) +5. 🗣 Commented on [#575](https://github.com/OpenFreeEnergy/openfe/pull/575#issuecomment-1754627654) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#199](https://github.com/CartoonFan/lutris/pull/199#issuecomment-1754324439) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#309](https://github.com/DeMarcoLab/fibsem/pull/309#issuecomment-1754321786) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +8. 🗣 Commented on [#4116](https://github.com/bentoml/BentoML/pull/4116#issuecomment-1754222077) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +9. 🗣 Commented on [#4228](https://github.com/bentoml/BentoML/pull/4228#issuecomment-1754220417) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +10. 🗣 Commented on [#4227](https://github.com/bentoml/BentoML/pull/4227#issuecomment-1754219375) in [bentoml/BentoML](https://github.com/bentoml/BentoML) From 8d0ea94162e08d6212cc25f2abca70cd15d9ca77 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 14:37:31 +0000 Subject: [PATCH 0290/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8a94674f..adf6e4bd 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#135](https://github.com/eastgenomics/dias_batch_running/pull/135#issuecomment-1755250352) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#41](https://github.com/eastgenomics/eris/pull/41#issuecomment-1755103398) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#214](https://github.com/aimclub/GOLEM/pull/214#issuecomment-1755064703) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -4. 🗣 Commented on [#4378](https://github.com/pyload/pyload/pull/4378#issuecomment-1754765160) in [pyload/pyload](https://github.com/pyload/pyload) -5. 🗣 Commented on [#575](https://github.com/OpenFreeEnergy/openfe/pull/575#issuecomment-1754627654) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#199](https://github.com/CartoonFan/lutris/pull/199#issuecomment-1754324439) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#309](https://github.com/DeMarcoLab/fibsem/pull/309#issuecomment-1754321786) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -8. 🗣 Commented on [#4116](https://github.com/bentoml/BentoML/pull/4116#issuecomment-1754222077) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -9. 🗣 Commented on [#4228](https://github.com/bentoml/BentoML/pull/4228#issuecomment-1754220417) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -10. 🗣 Commented on [#4227](https://github.com/bentoml/BentoML/pull/4227#issuecomment-1754219375) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +1. 🗣 Commented on [#4318](https://github.com/MDAnalysis/mdanalysis/pull/4318#issuecomment-1755520416) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#135](https://github.com/eastgenomics/dias_batch_running/pull/135#issuecomment-1755250352) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#41](https://github.com/eastgenomics/eris/pull/41#issuecomment-1755103398) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#214](https://github.com/aimclub/GOLEM/pull/214#issuecomment-1755064703) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#4378](https://github.com/pyload/pyload/pull/4378#issuecomment-1754765160) in [pyload/pyload](https://github.com/pyload/pyload) +6. 🗣 Commented on [#575](https://github.com/OpenFreeEnergy/openfe/pull/575#issuecomment-1754627654) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#199](https://github.com/CartoonFan/lutris/pull/199#issuecomment-1754324439) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#309](https://github.com/DeMarcoLab/fibsem/pull/309#issuecomment-1754321786) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +9. 🗣 Commented on [#4116](https://github.com/bentoml/BentoML/pull/4116#issuecomment-1754222077) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +10. 🗣 Commented on [#4228](https://github.com/bentoml/BentoML/pull/4228#issuecomment-1754220417) in [bentoml/BentoML](https://github.com/bentoml/BentoML) From 39a1426bf9fd5266bce16be13f30f3f8a3a7c823 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 15:17:01 +0000 Subject: [PATCH 0291/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index adf6e4bd..3ed6f815 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4318](https://github.com/MDAnalysis/mdanalysis/pull/4318#issuecomment-1755520416) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#135](https://github.com/eastgenomics/dias_batch_running/pull/135#issuecomment-1755250352) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#41](https://github.com/eastgenomics/eris/pull/41#issuecomment-1755103398) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#214](https://github.com/aimclub/GOLEM/pull/214#issuecomment-1755064703) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#4378](https://github.com/pyload/pyload/pull/4378#issuecomment-1754765160) in [pyload/pyload](https://github.com/pyload/pyload) -6. 🗣 Commented on [#575](https://github.com/OpenFreeEnergy/openfe/pull/575#issuecomment-1754627654) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#199](https://github.com/CartoonFan/lutris/pull/199#issuecomment-1754324439) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#309](https://github.com/DeMarcoLab/fibsem/pull/309#issuecomment-1754321786) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -9. 🗣 Commented on [#4116](https://github.com/bentoml/BentoML/pull/4116#issuecomment-1754222077) in [bentoml/BentoML](https://github.com/bentoml/BentoML) -10. 🗣 Commented on [#4228](https://github.com/bentoml/BentoML/pull/4228#issuecomment-1754220417) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +1. 🗣 Commented on [#5244](https://github.com/rhinstaller/anaconda/pull/5244#issuecomment-1755620862) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#4318](https://github.com/MDAnalysis/mdanalysis/pull/4318#issuecomment-1755520416) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#135](https://github.com/eastgenomics/dias_batch_running/pull/135#issuecomment-1755250352) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +4. 🗣 Commented on [#41](https://github.com/eastgenomics/eris/pull/41#issuecomment-1755103398) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#214](https://github.com/aimclub/GOLEM/pull/214#issuecomment-1755064703) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#4378](https://github.com/pyload/pyload/pull/4378#issuecomment-1754765160) in [pyload/pyload](https://github.com/pyload/pyload) +7. 🗣 Commented on [#575](https://github.com/OpenFreeEnergy/openfe/pull/575#issuecomment-1754627654) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#199](https://github.com/CartoonFan/lutris/pull/199#issuecomment-1754324439) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#309](https://github.com/DeMarcoLab/fibsem/pull/309#issuecomment-1754321786) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +10. 🗣 Commented on [#4116](https://github.com/bentoml/BentoML/pull/4116#issuecomment-1754222077) in [bentoml/BentoML](https://github.com/bentoml/BentoML) From c59c461bac255a24eac792f80a0ea34dd4d5b1df Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 17:12:42 +0000 Subject: [PATCH 0292/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3ed6f815..f3abfaf5 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5244](https://github.com/rhinstaller/anaconda/pull/5244#issuecomment-1755620862) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#4318](https://github.com/MDAnalysis/mdanalysis/pull/4318#issuecomment-1755520416) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#135](https://github.com/eastgenomics/dias_batch_running/pull/135#issuecomment-1755250352) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -4. 🗣 Commented on [#41](https://github.com/eastgenomics/eris/pull/41#issuecomment-1755103398) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#214](https://github.com/aimclub/GOLEM/pull/214#issuecomment-1755064703) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#4378](https://github.com/pyload/pyload/pull/4378#issuecomment-1754765160) in [pyload/pyload](https://github.com/pyload/pyload) -7. 🗣 Commented on [#575](https://github.com/OpenFreeEnergy/openfe/pull/575#issuecomment-1754627654) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#199](https://github.com/CartoonFan/lutris/pull/199#issuecomment-1754324439) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#309](https://github.com/DeMarcoLab/fibsem/pull/309#issuecomment-1754321786) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -10. 🗣 Commented on [#4116](https://github.com/bentoml/BentoML/pull/4116#issuecomment-1754222077) in [bentoml/BentoML](https://github.com/bentoml/BentoML) +1. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +2. 🗣 Commented on [#981](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/981#issuecomment-1755847058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#1558](https://github.com/HEXRD/hexrdgui/pull/1558#issuecomment-1755814430) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +4. 🗣 Commented on [#5244](https://github.com/rhinstaller/anaconda/pull/5244#issuecomment-1755620862) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#4318](https://github.com/MDAnalysis/mdanalysis/pull/4318#issuecomment-1755520416) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#135](https://github.com/eastgenomics/dias_batch_running/pull/135#issuecomment-1755250352) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#41](https://github.com/eastgenomics/eris/pull/41#issuecomment-1755103398) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#214](https://github.com/aimclub/GOLEM/pull/214#issuecomment-1755064703) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#4378](https://github.com/pyload/pyload/pull/4378#issuecomment-1754765160) in [pyload/pyload](https://github.com/pyload/pyload) +10. 🗣 Commented on [#575](https://github.com/OpenFreeEnergy/openfe/pull/575#issuecomment-1754627654) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From a94011ced48127f41b470612e7a998ae10626a89 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 18:20:55 +0000 Subject: [PATCH 0293/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f3abfaf5..be13c465 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -2. 🗣 Commented on [#981](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/981#issuecomment-1755847058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#1558](https://github.com/HEXRD/hexrdgui/pull/1558#issuecomment-1755814430) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -4. 🗣 Commented on [#5244](https://github.com/rhinstaller/anaconda/pull/5244#issuecomment-1755620862) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#4318](https://github.com/MDAnalysis/mdanalysis/pull/4318#issuecomment-1755520416) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#135](https://github.com/eastgenomics/dias_batch_running/pull/135#issuecomment-1755250352) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#41](https://github.com/eastgenomics/eris/pull/41#issuecomment-1755103398) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#214](https://github.com/aimclub/GOLEM/pull/214#issuecomment-1755064703) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#4378](https://github.com/pyload/pyload/pull/4378#issuecomment-1754765160) in [pyload/pyload](https://github.com/pyload/pyload) -10. 🗣 Commented on [#575](https://github.com/OpenFreeEnergy/openfe/pull/575#issuecomment-1754627654) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +3. 🗣 Commented on [#981](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/981#issuecomment-1755847058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#1558](https://github.com/HEXRD/hexrdgui/pull/1558#issuecomment-1755814430) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +5. 🗣 Commented on [#5244](https://github.com/rhinstaller/anaconda/pull/5244#issuecomment-1755620862) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#4318](https://github.com/MDAnalysis/mdanalysis/pull/4318#issuecomment-1755520416) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#135](https://github.com/eastgenomics/dias_batch_running/pull/135#issuecomment-1755250352) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#41](https://github.com/eastgenomics/eris/pull/41#issuecomment-1755103398) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#214](https://github.com/aimclub/GOLEM/pull/214#issuecomment-1755064703) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#4378](https://github.com/pyload/pyload/pull/4378#issuecomment-1754765160) in [pyload/pyload](https://github.com/pyload/pyload) From 72e5a97c3801b57e8f93dcb5b5f8749858632b3c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Oct 2023 03:16:32 +0000 Subject: [PATCH 0294/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index be13c465..3c91d8b0 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -3. 🗣 Commented on [#981](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/981#issuecomment-1755847058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#1558](https://github.com/HEXRD/hexrdgui/pull/1558#issuecomment-1755814430) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -5. 🗣 Commented on [#5244](https://github.com/rhinstaller/anaconda/pull/5244#issuecomment-1755620862) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#4318](https://github.com/MDAnalysis/mdanalysis/pull/4318#issuecomment-1755520416) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#135](https://github.com/eastgenomics/dias_batch_running/pull/135#issuecomment-1755250352) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#41](https://github.com/eastgenomics/eris/pull/41#issuecomment-1755103398) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#214](https://github.com/aimclub/GOLEM/pull/214#issuecomment-1755064703) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#4378](https://github.com/pyload/pyload/pull/4378#issuecomment-1754765160) in [pyload/pyload](https://github.com/pyload/pyload) +1. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +4. 🗣 Commented on [#981](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/981#issuecomment-1755847058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1558](https://github.com/HEXRD/hexrdgui/pull/1558#issuecomment-1755814430) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +6. 🗣 Commented on [#5244](https://github.com/rhinstaller/anaconda/pull/5244#issuecomment-1755620862) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#4318](https://github.com/MDAnalysis/mdanalysis/pull/4318#issuecomment-1755520416) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#135](https://github.com/eastgenomics/dias_batch_running/pull/135#issuecomment-1755250352) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#41](https://github.com/eastgenomics/eris/pull/41#issuecomment-1755103398) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#214](https://github.com/aimclub/GOLEM/pull/214#issuecomment-1755064703) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) From c1c3038aa7a42867fffd1e2af0eb50960769ddbc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Oct 2023 07:14:48 +0000 Subject: [PATCH 0295/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3c91d8b0..d01bded2 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -4. 🗣 Commented on [#981](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/981#issuecomment-1755847058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1558](https://github.com/HEXRD/hexrdgui/pull/1558#issuecomment-1755814430) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -6. 🗣 Commented on [#5244](https://github.com/rhinstaller/anaconda/pull/5244#issuecomment-1755620862) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#4318](https://github.com/MDAnalysis/mdanalysis/pull/4318#issuecomment-1755520416) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#135](https://github.com/eastgenomics/dias_batch_running/pull/135#issuecomment-1755250352) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#41](https://github.com/eastgenomics/eris/pull/41#issuecomment-1755103398) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#214](https://github.com/aimclub/GOLEM/pull/214#issuecomment-1755064703) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +1. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +2. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +5. 🗣 Commented on [#981](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/981#issuecomment-1755847058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#1558](https://github.com/HEXRD/hexrdgui/pull/1558#issuecomment-1755814430) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +7. 🗣 Commented on [#5244](https://github.com/rhinstaller/anaconda/pull/5244#issuecomment-1755620862) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#4318](https://github.com/MDAnalysis/mdanalysis/pull/4318#issuecomment-1755520416) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#135](https://github.com/eastgenomics/dias_batch_running/pull/135#issuecomment-1755250352) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#41](https://github.com/eastgenomics/eris/pull/41#issuecomment-1755103398) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 5a6ba0ed5131622c8cb35be0da8fe3b86ac8b837 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Oct 2023 13:20:58 +0000 Subject: [PATCH 0296/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d01bded2..e2f4953a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) -2. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -5. 🗣 Commented on [#981](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/981#issuecomment-1755847058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#1558](https://github.com/HEXRD/hexrdgui/pull/1558#issuecomment-1755814430) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -7. 🗣 Commented on [#5244](https://github.com/rhinstaller/anaconda/pull/5244#issuecomment-1755620862) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#4318](https://github.com/MDAnalysis/mdanalysis/pull/4318#issuecomment-1755520416) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#135](https://github.com/eastgenomics/dias_batch_running/pull/135#issuecomment-1755250352) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#41](https://github.com/eastgenomics/eris/pull/41#issuecomment-1755103398) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) +2. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +3. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +6. 🗣 Commented on [#981](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/981#issuecomment-1755847058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#1558](https://github.com/HEXRD/hexrdgui/pull/1558#issuecomment-1755814430) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +8. 🗣 Commented on [#5244](https://github.com/rhinstaller/anaconda/pull/5244#issuecomment-1755620862) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#4318](https://github.com/MDAnalysis/mdanalysis/pull/4318#issuecomment-1755520416) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#135](https://github.com/eastgenomics/dias_batch_running/pull/135#issuecomment-1755250352) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From 79a8da8ab38dac90acc310f5d74556e431f647d5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Oct 2023 14:37:56 +0000 Subject: [PATCH 0297/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e2f4953a..8157a63e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) -2. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) -3. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -6. 🗣 Commented on [#981](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/981#issuecomment-1755847058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#1558](https://github.com/HEXRD/hexrdgui/pull/1558#issuecomment-1755814430) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -8. 🗣 Commented on [#5244](https://github.com/rhinstaller/anaconda/pull/5244#issuecomment-1755620862) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#4318](https://github.com/MDAnalysis/mdanalysis/pull/4318#issuecomment-1755520416) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#135](https://github.com/eastgenomics/dias_batch_running/pull/135#issuecomment-1755250352) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) +3. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +4. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +7. 🗣 Commented on [#981](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/981#issuecomment-1755847058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#1558](https://github.com/HEXRD/hexrdgui/pull/1558#issuecomment-1755814430) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +9. 🗣 Commented on [#5244](https://github.com/rhinstaller/anaconda/pull/5244#issuecomment-1755620862) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#4318](https://github.com/MDAnalysis/mdanalysis/pull/4318#issuecomment-1755520416) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From f9e618b00ea31e458c13462e96d0e2515f0e81c9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Oct 2023 16:20:37 +0000 Subject: [PATCH 0298/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8157a63e..daf8a081 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) -3. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) -4. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -7. 🗣 Commented on [#981](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/981#issuecomment-1755847058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#1558](https://github.com/HEXRD/hexrdgui/pull/1558#issuecomment-1755814430) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -9. 🗣 Commented on [#5244](https://github.com/rhinstaller/anaconda/pull/5244#issuecomment-1755620862) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#4318](https://github.com/MDAnalysis/mdanalysis/pull/4318#issuecomment-1755520416) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#91](https://github.com/politeauthority/cver/pull/91#issuecomment-1757952719) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) +4. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +5. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +8. 🗣 Commented on [#981](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/981#issuecomment-1755847058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#1558](https://github.com/HEXRD/hexrdgui/pull/1558#issuecomment-1755814430) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +10. 🗣 Commented on [#5244](https://github.com/rhinstaller/anaconda/pull/5244#issuecomment-1755620862) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From d8f568b781f564ad76a314afc80793a72eded4ad Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Oct 2023 17:14:38 +0000 Subject: [PATCH 0299/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index daf8a081..31f75b0f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#91](https://github.com/politeauthority/cver/pull/91#issuecomment-1757952719) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) -4. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) -5. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -8. 🗣 Commented on [#981](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/981#issuecomment-1755847058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#1558](https://github.com/HEXRD/hexrdgui/pull/1558#issuecomment-1755814430) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -10. 🗣 Commented on [#5244](https://github.com/rhinstaller/anaconda/pull/5244#issuecomment-1755620862) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#42](https://github.com/eastgenomics/eris/pull/42#issuecomment-1758043196) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#91](https://github.com/politeauthority/cver/pull/91#issuecomment-1757952719) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) +5. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +6. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +9. 🗣 Commented on [#981](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/981#issuecomment-1755847058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#1558](https://github.com/HEXRD/hexrdgui/pull/1558#issuecomment-1755814430) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) From 6e1a75998ed5855adeb41ccc51c0d5c005b6266d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Oct 2023 18:21:27 +0000 Subject: [PATCH 0300/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 31f75b0f..65050055 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#42](https://github.com/eastgenomics/eris/pull/42#issuecomment-1758043196) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#91](https://github.com/politeauthority/cver/pull/91#issuecomment-1757952719) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) -5. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) -6. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -9. 🗣 Commented on [#981](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/981#issuecomment-1755847058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#1558](https://github.com/HEXRD/hexrdgui/pull/1558#issuecomment-1755814430) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +1. 🗣 Commented on [#982](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/982#issuecomment-1758115023) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#42](https://github.com/eastgenomics/eris/pull/42#issuecomment-1758043196) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#91](https://github.com/politeauthority/cver/pull/91#issuecomment-1757952719) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) +6. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +7. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +10. 🗣 Commented on [#981](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/981#issuecomment-1755847058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 06948ed5104ea2993fa1f94eb371a4054e1618a8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Oct 2023 19:37:23 +0000 Subject: [PATCH 0301/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 65050055..55718e30 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#982](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/982#issuecomment-1758115023) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#42](https://github.com/eastgenomics/eris/pull/42#issuecomment-1758043196) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#91](https://github.com/politeauthority/cver/pull/91#issuecomment-1757952719) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) -6. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) -7. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -10. 🗣 Commented on [#981](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/981#issuecomment-1755847058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#646](https://github.com/sunpy/ndcube/pull/646#issuecomment-1758399593) in [sunpy/ndcube](https://github.com/sunpy/ndcube) +2. 🗣 Commented on [#982](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/982#issuecomment-1758115023) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#42](https://github.com/eastgenomics/eris/pull/42#issuecomment-1758043196) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#91](https://github.com/politeauthority/cver/pull/91#issuecomment-1757952719) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) +7. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +8. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) From 1162299ee950aa71a36bdb2258000a1575771649 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Oct 2023 20:37:33 +0000 Subject: [PATCH 0302/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 55718e30..750998c9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#646](https://github.com/sunpy/ndcube/pull/646#issuecomment-1758399593) in [sunpy/ndcube](https://github.com/sunpy/ndcube) -2. 🗣 Commented on [#982](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/982#issuecomment-1758115023) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#42](https://github.com/eastgenomics/eris/pull/42#issuecomment-1758043196) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#91](https://github.com/politeauthority/cver/pull/91#issuecomment-1757952719) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) -7. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) -8. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#10](https://github.com/cdfxscrq/Telegram_Forwarder/pull/10#issuecomment-1755883441) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +1. 🗣 Commented on [#4345](https://github.com/uwcirg/truenth-portal/pull/4345#issuecomment-1758484811) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +2. 🗣 Commented on [#646](https://github.com/sunpy/ndcube/pull/646#issuecomment-1758399593) in [sunpy/ndcube](https://github.com/sunpy/ndcube) +3. 🗣 Commented on [#982](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/982#issuecomment-1758115023) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#42](https://github.com/eastgenomics/eris/pull/42#issuecomment-1758043196) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#91](https://github.com/politeauthority/cver/pull/91#issuecomment-1757952719) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) +8. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +9. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) From 66f04d6cc1048d067004bd10431d6b89e08b72fe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Oct 2023 23:37:11 +0000 Subject: [PATCH 0303/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 750998c9..c0139fe8 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4345](https://github.com/uwcirg/truenth-portal/pull/4345#issuecomment-1758484811) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -2. 🗣 Commented on [#646](https://github.com/sunpy/ndcube/pull/646#issuecomment-1758399593) in [sunpy/ndcube](https://github.com/sunpy/ndcube) -3. 🗣 Commented on [#982](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/982#issuecomment-1758115023) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#42](https://github.com/eastgenomics/eris/pull/42#issuecomment-1758043196) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#91](https://github.com/politeauthority/cver/pull/91#issuecomment-1757952719) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) -8. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) -9. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#89](https://github.com/politeauthority/cver/pull/89#issuecomment-1755945167) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#191](https://github.com/foreign-sub/pwnagotchi/pull/191#issuecomment-1758680021) in [foreign-sub/pwnagotchi](https://github.com/foreign-sub/pwnagotchi) +2. 🗣 Commented on [#4345](https://github.com/uwcirg/truenth-portal/pull/4345#issuecomment-1758484811) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +3. 🗣 Commented on [#646](https://github.com/sunpy/ndcube/pull/646#issuecomment-1758399593) in [sunpy/ndcube](https://github.com/sunpy/ndcube) +4. 🗣 Commented on [#982](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/982#issuecomment-1758115023) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#42](https://github.com/eastgenomics/eris/pull/42#issuecomment-1758043196) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#91](https://github.com/politeauthority/cver/pull/91#issuecomment-1757952719) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) +9. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +10. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) From ec09e9517e9b754778abae98311b1e2aa781e7e0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 01:07:48 +0000 Subject: [PATCH 0304/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c0139fe8..4099b895 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#191](https://github.com/foreign-sub/pwnagotchi/pull/191#issuecomment-1758680021) in [foreign-sub/pwnagotchi](https://github.com/foreign-sub/pwnagotchi) -2. 🗣 Commented on [#4345](https://github.com/uwcirg/truenth-portal/pull/4345#issuecomment-1758484811) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -3. 🗣 Commented on [#646](https://github.com/sunpy/ndcube/pull/646#issuecomment-1758399593) in [sunpy/ndcube](https://github.com/sunpy/ndcube) -4. 🗣 Commented on [#982](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/982#issuecomment-1758115023) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#42](https://github.com/eastgenomics/eris/pull/42#issuecomment-1758043196) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#91](https://github.com/politeauthority/cver/pull/91#issuecomment-1757952719) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) -9. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) -10. 🗣 Commented on [#2931](https://github.com/dipy/dipy/pull/2931#issuecomment-1756694422) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#200](https://github.com/CartoonFan/lutris/pull/200#issuecomment-1758718669) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#191](https://github.com/foreign-sub/pwnagotchi/pull/191#issuecomment-1758680021) in [foreign-sub/pwnagotchi](https://github.com/foreign-sub/pwnagotchi) +3. 🗣 Commented on [#4345](https://github.com/uwcirg/truenth-portal/pull/4345#issuecomment-1758484811) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +4. 🗣 Commented on [#646](https://github.com/sunpy/ndcube/pull/646#issuecomment-1758399593) in [sunpy/ndcube](https://github.com/sunpy/ndcube) +5. 🗣 Commented on [#982](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/982#issuecomment-1758115023) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#42](https://github.com/eastgenomics/eris/pull/42#issuecomment-1758043196) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#91](https://github.com/politeauthority/cver/pull/91#issuecomment-1757952719) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) +10. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) From 49a6ba8bbfa2b0f4f1ab4df4602c6ccf79bf74ad Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 02:03:07 +0000 Subject: [PATCH 0305/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4099b895..193a91bc 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#200](https://github.com/CartoonFan/lutris/pull/200#issuecomment-1758718669) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#191](https://github.com/foreign-sub/pwnagotchi/pull/191#issuecomment-1758680021) in [foreign-sub/pwnagotchi](https://github.com/foreign-sub/pwnagotchi) -3. 🗣 Commented on [#4345](https://github.com/uwcirg/truenth-portal/pull/4345#issuecomment-1758484811) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -4. 🗣 Commented on [#646](https://github.com/sunpy/ndcube/pull/646#issuecomment-1758399593) in [sunpy/ndcube](https://github.com/sunpy/ndcube) -5. 🗣 Commented on [#982](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/982#issuecomment-1758115023) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#42](https://github.com/eastgenomics/eris/pull/42#issuecomment-1758043196) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#91](https://github.com/politeauthority/cver/pull/91#issuecomment-1757952719) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) -10. 🗣 Commented on [#25](https://github.com/avaframe/QGisAF/pull/25#issuecomment-1756983039) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +1. 🗣 Commented on [#56](https://github.com/njzjz/qiuwenbot/pull/56#issuecomment-1758788286) in [njzjz/qiuwenbot](https://github.com/njzjz/qiuwenbot) +2. 🗣 Commented on [#200](https://github.com/CartoonFan/lutris/pull/200#issuecomment-1758718669) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#191](https://github.com/foreign-sub/pwnagotchi/pull/191#issuecomment-1758680021) in [foreign-sub/pwnagotchi](https://github.com/foreign-sub/pwnagotchi) +4. 🗣 Commented on [#4345](https://github.com/uwcirg/truenth-portal/pull/4345#issuecomment-1758484811) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +5. 🗣 Commented on [#646](https://github.com/sunpy/ndcube/pull/646#issuecomment-1758399593) in [sunpy/ndcube](https://github.com/sunpy/ndcube) +6. 🗣 Commented on [#982](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/982#issuecomment-1758115023) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#42](https://github.com/eastgenomics/eris/pull/42#issuecomment-1758043196) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#91](https://github.com/politeauthority/cver/pull/91#issuecomment-1757952719) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) From d8691efcaf2af08f01d30d9a20e7bd53713de0de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 09:16:09 +0000 Subject: [PATCH 0306/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 193a91bc..f809546a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#56](https://github.com/njzjz/qiuwenbot/pull/56#issuecomment-1758788286) in [njzjz/qiuwenbot](https://github.com/njzjz/qiuwenbot) -2. 🗣 Commented on [#200](https://github.com/CartoonFan/lutris/pull/200#issuecomment-1758718669) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#191](https://github.com/foreign-sub/pwnagotchi/pull/191#issuecomment-1758680021) in [foreign-sub/pwnagotchi](https://github.com/foreign-sub/pwnagotchi) -4. 🗣 Commented on [#4345](https://github.com/uwcirg/truenth-portal/pull/4345#issuecomment-1758484811) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -5. 🗣 Commented on [#646](https://github.com/sunpy/ndcube/pull/646#issuecomment-1758399593) in [sunpy/ndcube](https://github.com/sunpy/ndcube) -6. 🗣 Commented on [#982](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/982#issuecomment-1758115023) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#42](https://github.com/eastgenomics/eris/pull/42#issuecomment-1758043196) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#91](https://github.com/politeauthority/cver/pull/91#issuecomment-1757952719) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#1](https://github.com/Karim-53/scikit-multilearn/pull/1#issuecomment-1757593190) in [Karim-53/scikit-multilearn](https://github.com/Karim-53/scikit-multilearn) +1. 🗣 Commented on [#995](https://github.com/aramis-lab/clinica/pull/995#issuecomment-1759220123) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +2. 🗣 Commented on [#56](https://github.com/njzjz/qiuwenbot/pull/56#issuecomment-1758788286) in [njzjz/qiuwenbot](https://github.com/njzjz/qiuwenbot) +3. 🗣 Commented on [#200](https://github.com/CartoonFan/lutris/pull/200#issuecomment-1758718669) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#191](https://github.com/foreign-sub/pwnagotchi/pull/191#issuecomment-1758680021) in [foreign-sub/pwnagotchi](https://github.com/foreign-sub/pwnagotchi) +5. 🗣 Commented on [#4345](https://github.com/uwcirg/truenth-portal/pull/4345#issuecomment-1758484811) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +6. 🗣 Commented on [#646](https://github.com/sunpy/ndcube/pull/646#issuecomment-1758399593) in [sunpy/ndcube](https://github.com/sunpy/ndcube) +7. 🗣 Commented on [#982](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/982#issuecomment-1758115023) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#42](https://github.com/eastgenomics/eris/pull/42#issuecomment-1758043196) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#91](https://github.com/politeauthority/cver/pull/91#issuecomment-1757952719) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) From 7b700859ecf965f4f774c0757e4a71c7f0c85a75 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 12:32:09 +0000 Subject: [PATCH 0307/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f809546a..ce03f530 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#995](https://github.com/aramis-lab/clinica/pull/995#issuecomment-1759220123) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -2. 🗣 Commented on [#56](https://github.com/njzjz/qiuwenbot/pull/56#issuecomment-1758788286) in [njzjz/qiuwenbot](https://github.com/njzjz/qiuwenbot) -3. 🗣 Commented on [#200](https://github.com/CartoonFan/lutris/pull/200#issuecomment-1758718669) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#191](https://github.com/foreign-sub/pwnagotchi/pull/191#issuecomment-1758680021) in [foreign-sub/pwnagotchi](https://github.com/foreign-sub/pwnagotchi) -5. 🗣 Commented on [#4345](https://github.com/uwcirg/truenth-portal/pull/4345#issuecomment-1758484811) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -6. 🗣 Commented on [#646](https://github.com/sunpy/ndcube/pull/646#issuecomment-1758399593) in [sunpy/ndcube](https://github.com/sunpy/ndcube) -7. 🗣 Commented on [#982](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/982#issuecomment-1758115023) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#42](https://github.com/eastgenomics/eris/pull/42#issuecomment-1758043196) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#91](https://github.com/politeauthority/cver/pull/91#issuecomment-1757952719) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#90](https://github.com/politeauthority/cver/pull/90#issuecomment-1757772545) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#1588](https://github.com/HEXRD/hexrdgui/pull/1588#issuecomment-1759484044) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +2. 🗣 Commented on [#96](https://github.com/aimclub/Fedot.Industrial/pull/96#issuecomment-1759468584) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +3. 🗣 Commented on [#995](https://github.com/aramis-lab/clinica/pull/995#issuecomment-1759220123) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +4. 🗣 Commented on [#56](https://github.com/njzjz/qiuwenbot/pull/56#issuecomment-1758788286) in [njzjz/qiuwenbot](https://github.com/njzjz/qiuwenbot) +5. 🗣 Commented on [#200](https://github.com/CartoonFan/lutris/pull/200#issuecomment-1758718669) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#191](https://github.com/foreign-sub/pwnagotchi/pull/191#issuecomment-1758680021) in [foreign-sub/pwnagotchi](https://github.com/foreign-sub/pwnagotchi) +7. 🗣 Commented on [#4345](https://github.com/uwcirg/truenth-portal/pull/4345#issuecomment-1758484811) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +8. 🗣 Commented on [#646](https://github.com/sunpy/ndcube/pull/646#issuecomment-1758399593) in [sunpy/ndcube](https://github.com/sunpy/ndcube) +9. 🗣 Commented on [#982](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/982#issuecomment-1758115023) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#42](https://github.com/eastgenomics/eris/pull/42#issuecomment-1758043196) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 25ea7248ab9c6d2d9abe0c5a508d9c470da35e9d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 14:15:13 +0000 Subject: [PATCH 0308/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ce03f530..9522e8ab 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1588](https://github.com/HEXRD/hexrdgui/pull/1588#issuecomment-1759484044) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -2. 🗣 Commented on [#96](https://github.com/aimclub/Fedot.Industrial/pull/96#issuecomment-1759468584) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -3. 🗣 Commented on [#995](https://github.com/aramis-lab/clinica/pull/995#issuecomment-1759220123) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -4. 🗣 Commented on [#56](https://github.com/njzjz/qiuwenbot/pull/56#issuecomment-1758788286) in [njzjz/qiuwenbot](https://github.com/njzjz/qiuwenbot) -5. 🗣 Commented on [#200](https://github.com/CartoonFan/lutris/pull/200#issuecomment-1758718669) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#191](https://github.com/foreign-sub/pwnagotchi/pull/191#issuecomment-1758680021) in [foreign-sub/pwnagotchi](https://github.com/foreign-sub/pwnagotchi) -7. 🗣 Commented on [#4345](https://github.com/uwcirg/truenth-portal/pull/4345#issuecomment-1758484811) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -8. 🗣 Commented on [#646](https://github.com/sunpy/ndcube/pull/646#issuecomment-1758399593) in [sunpy/ndcube](https://github.com/sunpy/ndcube) -9. 🗣 Commented on [#982](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/982#issuecomment-1758115023) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#42](https://github.com/eastgenomics/eris/pull/42#issuecomment-1758043196) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#161](https://github.com/gwpy/pyomicron/pull/161#issuecomment-1759651075) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +2. 🗣 Commented on [#1588](https://github.com/HEXRD/hexrdgui/pull/1588#issuecomment-1759484044) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +3. 🗣 Commented on [#96](https://github.com/aimclub/Fedot.Industrial/pull/96#issuecomment-1759468584) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#995](https://github.com/aramis-lab/clinica/pull/995#issuecomment-1759220123) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +5. 🗣 Commented on [#56](https://github.com/njzjz/qiuwenbot/pull/56#issuecomment-1758788286) in [njzjz/qiuwenbot](https://github.com/njzjz/qiuwenbot) +6. 🗣 Commented on [#200](https://github.com/CartoonFan/lutris/pull/200#issuecomment-1758718669) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#191](https://github.com/foreign-sub/pwnagotchi/pull/191#issuecomment-1758680021) in [foreign-sub/pwnagotchi](https://github.com/foreign-sub/pwnagotchi) +8. 🗣 Commented on [#4345](https://github.com/uwcirg/truenth-portal/pull/4345#issuecomment-1758484811) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +9. 🗣 Commented on [#646](https://github.com/sunpy/ndcube/pull/646#issuecomment-1758399593) in [sunpy/ndcube](https://github.com/sunpy/ndcube) +10. 🗣 Commented on [#982](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/982#issuecomment-1758115023) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 460f05aed21d62291a1c8c2ceb43954f19e6815b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 16:20:38 +0000 Subject: [PATCH 0309/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9522e8ab..e084b0f7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#161](https://github.com/gwpy/pyomicron/pull/161#issuecomment-1759651075) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -2. 🗣 Commented on [#1588](https://github.com/HEXRD/hexrdgui/pull/1588#issuecomment-1759484044) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -3. 🗣 Commented on [#96](https://github.com/aimclub/Fedot.Industrial/pull/96#issuecomment-1759468584) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#995](https://github.com/aramis-lab/clinica/pull/995#issuecomment-1759220123) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -5. 🗣 Commented on [#56](https://github.com/njzjz/qiuwenbot/pull/56#issuecomment-1758788286) in [njzjz/qiuwenbot](https://github.com/njzjz/qiuwenbot) -6. 🗣 Commented on [#200](https://github.com/CartoonFan/lutris/pull/200#issuecomment-1758718669) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#191](https://github.com/foreign-sub/pwnagotchi/pull/191#issuecomment-1758680021) in [foreign-sub/pwnagotchi](https://github.com/foreign-sub/pwnagotchi) -8. 🗣 Commented on [#4345](https://github.com/uwcirg/truenth-portal/pull/4345#issuecomment-1758484811) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -9. 🗣 Commented on [#646](https://github.com/sunpy/ndcube/pull/646#issuecomment-1758399593) in [sunpy/ndcube](https://github.com/sunpy/ndcube) -10. 🗣 Commented on [#982](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/982#issuecomment-1758115023) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#5245](https://github.com/rhinstaller/anaconda/pull/5245#issuecomment-1759924427) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#161](https://github.com/gwpy/pyomicron/pull/161#issuecomment-1759651075) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +3. 🗣 Commented on [#1588](https://github.com/HEXRD/hexrdgui/pull/1588#issuecomment-1759484044) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +4. 🗣 Commented on [#96](https://github.com/aimclub/Fedot.Industrial/pull/96#issuecomment-1759468584) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +5. 🗣 Commented on [#995](https://github.com/aramis-lab/clinica/pull/995#issuecomment-1759220123) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +6. 🗣 Commented on [#56](https://github.com/njzjz/qiuwenbot/pull/56#issuecomment-1758788286) in [njzjz/qiuwenbot](https://github.com/njzjz/qiuwenbot) +7. 🗣 Commented on [#200](https://github.com/CartoonFan/lutris/pull/200#issuecomment-1758718669) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#191](https://github.com/foreign-sub/pwnagotchi/pull/191#issuecomment-1758680021) in [foreign-sub/pwnagotchi](https://github.com/foreign-sub/pwnagotchi) +9. 🗣 Commented on [#4345](https://github.com/uwcirg/truenth-portal/pull/4345#issuecomment-1758484811) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +10. 🗣 Commented on [#646](https://github.com/sunpy/ndcube/pull/646#issuecomment-1758399593) in [sunpy/ndcube](https://github.com/sunpy/ndcube) From a218ecbe066ce36de9f7cbdfc259680408c2fd22 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 16:40:43 +0000 Subject: [PATCH 0310/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e084b0f7..3fcb7d61 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5245](https://github.com/rhinstaller/anaconda/pull/5245#issuecomment-1759924427) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#161](https://github.com/gwpy/pyomicron/pull/161#issuecomment-1759651075) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -3. 🗣 Commented on [#1588](https://github.com/HEXRD/hexrdgui/pull/1588#issuecomment-1759484044) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -4. 🗣 Commented on [#96](https://github.com/aimclub/Fedot.Industrial/pull/96#issuecomment-1759468584) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -5. 🗣 Commented on [#995](https://github.com/aramis-lab/clinica/pull/995#issuecomment-1759220123) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -6. 🗣 Commented on [#56](https://github.com/njzjz/qiuwenbot/pull/56#issuecomment-1758788286) in [njzjz/qiuwenbot](https://github.com/njzjz/qiuwenbot) -7. 🗣 Commented on [#200](https://github.com/CartoonFan/lutris/pull/200#issuecomment-1758718669) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#191](https://github.com/foreign-sub/pwnagotchi/pull/191#issuecomment-1758680021) in [foreign-sub/pwnagotchi](https://github.com/foreign-sub/pwnagotchi) -9. 🗣 Commented on [#4345](https://github.com/uwcirg/truenth-portal/pull/4345#issuecomment-1758484811) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -10. 🗣 Commented on [#646](https://github.com/sunpy/ndcube/pull/646#issuecomment-1758399593) in [sunpy/ndcube](https://github.com/sunpy/ndcube) +1. 🗣 Commented on [#2922](https://github.com/dipy/dipy/pull/2922#issuecomment-1759940703) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#5245](https://github.com/rhinstaller/anaconda/pull/5245#issuecomment-1759924427) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#161](https://github.com/gwpy/pyomicron/pull/161#issuecomment-1759651075) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +4. 🗣 Commented on [#1588](https://github.com/HEXRD/hexrdgui/pull/1588#issuecomment-1759484044) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +5. 🗣 Commented on [#96](https://github.com/aimclub/Fedot.Industrial/pull/96#issuecomment-1759468584) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#995](https://github.com/aramis-lab/clinica/pull/995#issuecomment-1759220123) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +7. 🗣 Commented on [#56](https://github.com/njzjz/qiuwenbot/pull/56#issuecomment-1758788286) in [njzjz/qiuwenbot](https://github.com/njzjz/qiuwenbot) +8. 🗣 Commented on [#200](https://github.com/CartoonFan/lutris/pull/200#issuecomment-1758718669) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#191](https://github.com/foreign-sub/pwnagotchi/pull/191#issuecomment-1758680021) in [foreign-sub/pwnagotchi](https://github.com/foreign-sub/pwnagotchi) +10. 🗣 Commented on [#4345](https://github.com/uwcirg/truenth-portal/pull/4345#issuecomment-1758484811) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) From 29709a7d5aa89947fc94f19f00b2371681c6562e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 17:14:33 +0000 Subject: [PATCH 0311/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3fcb7d61..c0a9900c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2922](https://github.com/dipy/dipy/pull/2922#issuecomment-1759940703) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#5245](https://github.com/rhinstaller/anaconda/pull/5245#issuecomment-1759924427) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#161](https://github.com/gwpy/pyomicron/pull/161#issuecomment-1759651075) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -4. 🗣 Commented on [#1588](https://github.com/HEXRD/hexrdgui/pull/1588#issuecomment-1759484044) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -5. 🗣 Commented on [#96](https://github.com/aimclub/Fedot.Industrial/pull/96#issuecomment-1759468584) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#995](https://github.com/aramis-lab/clinica/pull/995#issuecomment-1759220123) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -7. 🗣 Commented on [#56](https://github.com/njzjz/qiuwenbot/pull/56#issuecomment-1758788286) in [njzjz/qiuwenbot](https://github.com/njzjz/qiuwenbot) -8. 🗣 Commented on [#200](https://github.com/CartoonFan/lutris/pull/200#issuecomment-1758718669) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#191](https://github.com/foreign-sub/pwnagotchi/pull/191#issuecomment-1758680021) in [foreign-sub/pwnagotchi](https://github.com/foreign-sub/pwnagotchi) -10. 🗣 Commented on [#4345](https://github.com/uwcirg/truenth-portal/pull/4345#issuecomment-1758484811) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +1. 🗣 Commented on [#6](https://github.com/ITMO-NSS-team/GAMLET/pull/6#issuecomment-1760025360) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +2. 🗣 Commented on [#2922](https://github.com/dipy/dipy/pull/2922#issuecomment-1759940703) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#5245](https://github.com/rhinstaller/anaconda/pull/5245#issuecomment-1759924427) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#161](https://github.com/gwpy/pyomicron/pull/161#issuecomment-1759651075) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +5. 🗣 Commented on [#1588](https://github.com/HEXRD/hexrdgui/pull/1588#issuecomment-1759484044) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +6. 🗣 Commented on [#96](https://github.com/aimclub/Fedot.Industrial/pull/96#issuecomment-1759468584) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#995](https://github.com/aramis-lab/clinica/pull/995#issuecomment-1759220123) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +8. 🗣 Commented on [#56](https://github.com/njzjz/qiuwenbot/pull/56#issuecomment-1758788286) in [njzjz/qiuwenbot](https://github.com/njzjz/qiuwenbot) +9. 🗣 Commented on [#200](https://github.com/CartoonFan/lutris/pull/200#issuecomment-1758718669) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#191](https://github.com/foreign-sub/pwnagotchi/pull/191#issuecomment-1758680021) in [foreign-sub/pwnagotchi](https://github.com/foreign-sub/pwnagotchi) From 542513436627b533b3a6d469228dc89dc119240a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 19:12:35 +0000 Subject: [PATCH 0312/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c0a9900c..15343bd2 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#6](https://github.com/ITMO-NSS-team/GAMLET/pull/6#issuecomment-1760025360) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -2. 🗣 Commented on [#2922](https://github.com/dipy/dipy/pull/2922#issuecomment-1759940703) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#5245](https://github.com/rhinstaller/anaconda/pull/5245#issuecomment-1759924427) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#161](https://github.com/gwpy/pyomicron/pull/161#issuecomment-1759651075) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -5. 🗣 Commented on [#1588](https://github.com/HEXRD/hexrdgui/pull/1588#issuecomment-1759484044) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -6. 🗣 Commented on [#96](https://github.com/aimclub/Fedot.Industrial/pull/96#issuecomment-1759468584) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#995](https://github.com/aramis-lab/clinica/pull/995#issuecomment-1759220123) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -8. 🗣 Commented on [#56](https://github.com/njzjz/qiuwenbot/pull/56#issuecomment-1758788286) in [njzjz/qiuwenbot](https://github.com/njzjz/qiuwenbot) -9. 🗣 Commented on [#200](https://github.com/CartoonFan/lutris/pull/200#issuecomment-1758718669) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#191](https://github.com/foreign-sub/pwnagotchi/pull/191#issuecomment-1758680021) in [foreign-sub/pwnagotchi](https://github.com/foreign-sub/pwnagotchi) +1. 🗣 Commented on [#56](https://github.com/ITMO-NSS-team/GAMLET/pull/56#issuecomment-1760224348) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +2. 🗣 Commented on [#21423](https://github.com/spyder-ide/spyder/pull/21423#issuecomment-1760214099) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#93](https://github.com/politeauthority/cver/pull/93#issuecomment-1760188552) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#6](https://github.com/ITMO-NSS-team/GAMLET/pull/6#issuecomment-1760025360) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +5. 🗣 Commented on [#2922](https://github.com/dipy/dipy/pull/2922#issuecomment-1759940703) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#5245](https://github.com/rhinstaller/anaconda/pull/5245#issuecomment-1759924427) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#161](https://github.com/gwpy/pyomicron/pull/161#issuecomment-1759651075) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +8. 🗣 Commented on [#1588](https://github.com/HEXRD/hexrdgui/pull/1588#issuecomment-1759484044) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +9. 🗣 Commented on [#96](https://github.com/aimclub/Fedot.Industrial/pull/96#issuecomment-1759468584) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#995](https://github.com/aramis-lab/clinica/pull/995#issuecomment-1759220123) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) From 3ad548cdfde25ab2f340255fb2681d8cd0f858a1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 20:15:04 +0000 Subject: [PATCH 0313/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 15343bd2..bd54bde7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#56](https://github.com/ITMO-NSS-team/GAMLET/pull/56#issuecomment-1760224348) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -2. 🗣 Commented on [#21423](https://github.com/spyder-ide/spyder/pull/21423#issuecomment-1760214099) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#93](https://github.com/politeauthority/cver/pull/93#issuecomment-1760188552) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#6](https://github.com/ITMO-NSS-team/GAMLET/pull/6#issuecomment-1760025360) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -5. 🗣 Commented on [#2922](https://github.com/dipy/dipy/pull/2922#issuecomment-1759940703) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#5245](https://github.com/rhinstaller/anaconda/pull/5245#issuecomment-1759924427) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#161](https://github.com/gwpy/pyomicron/pull/161#issuecomment-1759651075) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -8. 🗣 Commented on [#1588](https://github.com/HEXRD/hexrdgui/pull/1588#issuecomment-1759484044) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -9. 🗣 Commented on [#96](https://github.com/aimclub/Fedot.Industrial/pull/96#issuecomment-1759468584) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#995](https://github.com/aramis-lab/clinica/pull/995#issuecomment-1759220123) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +1. 🗣 Commented on [#11](https://github.com/cdfxscrq/Telegram_Forwarder/pull/11#issuecomment-1760258851) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +2. 🗣 Commented on [#56](https://github.com/ITMO-NSS-team/GAMLET/pull/56#issuecomment-1760224348) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +3. 🗣 Commented on [#21423](https://github.com/spyder-ide/spyder/pull/21423#issuecomment-1760214099) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#93](https://github.com/politeauthority/cver/pull/93#issuecomment-1760188552) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#6](https://github.com/ITMO-NSS-team/GAMLET/pull/6#issuecomment-1760025360) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +6. 🗣 Commented on [#2922](https://github.com/dipy/dipy/pull/2922#issuecomment-1759940703) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#5245](https://github.com/rhinstaller/anaconda/pull/5245#issuecomment-1759924427) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#161](https://github.com/gwpy/pyomicron/pull/161#issuecomment-1759651075) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +9. 🗣 Commented on [#1588](https://github.com/HEXRD/hexrdgui/pull/1588#issuecomment-1759484044) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +10. 🗣 Commented on [#96](https://github.com/aimclub/Fedot.Industrial/pull/96#issuecomment-1759468584) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) From 2025ca90407203bf2c8fe2c380235964ce80a2cd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 23:15:52 +0000 Subject: [PATCH 0314/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bd54bde7..b27b8859 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#11](https://github.com/cdfxscrq/Telegram_Forwarder/pull/11#issuecomment-1760258851) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -2. 🗣 Commented on [#56](https://github.com/ITMO-NSS-team/GAMLET/pull/56#issuecomment-1760224348) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -3. 🗣 Commented on [#21423](https://github.com/spyder-ide/spyder/pull/21423#issuecomment-1760214099) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#93](https://github.com/politeauthority/cver/pull/93#issuecomment-1760188552) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#6](https://github.com/ITMO-NSS-team/GAMLET/pull/6#issuecomment-1760025360) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -6. 🗣 Commented on [#2922](https://github.com/dipy/dipy/pull/2922#issuecomment-1759940703) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#5245](https://github.com/rhinstaller/anaconda/pull/5245#issuecomment-1759924427) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#161](https://github.com/gwpy/pyomicron/pull/161#issuecomment-1759651075) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -9. 🗣 Commented on [#1588](https://github.com/HEXRD/hexrdgui/pull/1588#issuecomment-1759484044) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -10. 🗣 Commented on [#96](https://github.com/aimclub/Fedot.Industrial/pull/96#issuecomment-1759468584) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +1. 🗣 Commented on [#20090](https://github.com/spyder-ide/spyder/pull/20090#issuecomment-1760469376) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#11](https://github.com/cdfxscrq/Telegram_Forwarder/pull/11#issuecomment-1760258851) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +3. 🗣 Commented on [#56](https://github.com/ITMO-NSS-team/GAMLET/pull/56#issuecomment-1760224348) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +4. 🗣 Commented on [#21423](https://github.com/spyder-ide/spyder/pull/21423#issuecomment-1760214099) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#93](https://github.com/politeauthority/cver/pull/93#issuecomment-1760188552) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#6](https://github.com/ITMO-NSS-team/GAMLET/pull/6#issuecomment-1760025360) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +7. 🗣 Commented on [#2922](https://github.com/dipy/dipy/pull/2922#issuecomment-1759940703) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#5245](https://github.com/rhinstaller/anaconda/pull/5245#issuecomment-1759924427) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#161](https://github.com/gwpy/pyomicron/pull/161#issuecomment-1759651075) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +10. 🗣 Commented on [#1588](https://github.com/HEXRD/hexrdgui/pull/1588#issuecomment-1759484044) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) From 6a70b4aa77ea0fb10624d2e21aeccdc668bba0d6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 23:37:29 +0000 Subject: [PATCH 0315/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b27b8859..fe5f0cd9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#20090](https://github.com/spyder-ide/spyder/pull/20090#issuecomment-1760469376) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#11](https://github.com/cdfxscrq/Telegram_Forwarder/pull/11#issuecomment-1760258851) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -3. 🗣 Commented on [#56](https://github.com/ITMO-NSS-team/GAMLET/pull/56#issuecomment-1760224348) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -4. 🗣 Commented on [#21423](https://github.com/spyder-ide/spyder/pull/21423#issuecomment-1760214099) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#93](https://github.com/politeauthority/cver/pull/93#issuecomment-1760188552) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#6](https://github.com/ITMO-NSS-team/GAMLET/pull/6#issuecomment-1760025360) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -7. 🗣 Commented on [#2922](https://github.com/dipy/dipy/pull/2922#issuecomment-1759940703) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#5245](https://github.com/rhinstaller/anaconda/pull/5245#issuecomment-1759924427) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#161](https://github.com/gwpy/pyomicron/pull/161#issuecomment-1759651075) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -10. 🗣 Commented on [#1588](https://github.com/HEXRD/hexrdgui/pull/1588#issuecomment-1759484044) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +1. 🗣 Commented on [#31](https://github.com/MDAnalysis/hole2-mdakit/pull/31#issuecomment-1760524514) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +2. 🗣 Commented on [#20090](https://github.com/spyder-ide/spyder/pull/20090#issuecomment-1760469376) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#11](https://github.com/cdfxscrq/Telegram_Forwarder/pull/11#issuecomment-1760258851) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +4. 🗣 Commented on [#56](https://github.com/ITMO-NSS-team/GAMLET/pull/56#issuecomment-1760224348) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +5. 🗣 Commented on [#21423](https://github.com/spyder-ide/spyder/pull/21423#issuecomment-1760214099) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#93](https://github.com/politeauthority/cver/pull/93#issuecomment-1760188552) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#6](https://github.com/ITMO-NSS-team/GAMLET/pull/6#issuecomment-1760025360) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +8. 🗣 Commented on [#2922](https://github.com/dipy/dipy/pull/2922#issuecomment-1759940703) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#5245](https://github.com/rhinstaller/anaconda/pull/5245#issuecomment-1759924427) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#161](https://github.com/gwpy/pyomicron/pull/161#issuecomment-1759651075) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) From 5182f46b62aae69de33d4ba9ebb4c8ae31f11e45 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 01:11:37 +0000 Subject: [PATCH 0316/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fe5f0cd9..1b47dd04 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#31](https://github.com/MDAnalysis/hole2-mdakit/pull/31#issuecomment-1760524514) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) -2. 🗣 Commented on [#20090](https://github.com/spyder-ide/spyder/pull/20090#issuecomment-1760469376) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#11](https://github.com/cdfxscrq/Telegram_Forwarder/pull/11#issuecomment-1760258851) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -4. 🗣 Commented on [#56](https://github.com/ITMO-NSS-team/GAMLET/pull/56#issuecomment-1760224348) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -5. 🗣 Commented on [#21423](https://github.com/spyder-ide/spyder/pull/21423#issuecomment-1760214099) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#93](https://github.com/politeauthority/cver/pull/93#issuecomment-1760188552) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#6](https://github.com/ITMO-NSS-team/GAMLET/pull/6#issuecomment-1760025360) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -8. 🗣 Commented on [#2922](https://github.com/dipy/dipy/pull/2922#issuecomment-1759940703) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#5245](https://github.com/rhinstaller/anaconda/pull/5245#issuecomment-1759924427) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#161](https://github.com/gwpy/pyomicron/pull/161#issuecomment-1759651075) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +1. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1760540217) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#31](https://github.com/MDAnalysis/hole2-mdakit/pull/31#issuecomment-1760524514) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +3. 🗣 Commented on [#20090](https://github.com/spyder-ide/spyder/pull/20090#issuecomment-1760469376) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#11](https://github.com/cdfxscrq/Telegram_Forwarder/pull/11#issuecomment-1760258851) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +5. 🗣 Commented on [#56](https://github.com/ITMO-NSS-team/GAMLET/pull/56#issuecomment-1760224348) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +6. 🗣 Commented on [#21423](https://github.com/spyder-ide/spyder/pull/21423#issuecomment-1760214099) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#93](https://github.com/politeauthority/cver/pull/93#issuecomment-1760188552) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#6](https://github.com/ITMO-NSS-team/GAMLET/pull/6#issuecomment-1760025360) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +9. 🗣 Commented on [#2922](https://github.com/dipy/dipy/pull/2922#issuecomment-1759940703) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#5245](https://github.com/rhinstaller/anaconda/pull/5245#issuecomment-1759924427) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 9b5ac021e8d56543b1d8c2840ae1fc294c6c0d11 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 10:17:18 +0000 Subject: [PATCH 0317/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1b47dd04..ec9fe548 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1760540217) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#31](https://github.com/MDAnalysis/hole2-mdakit/pull/31#issuecomment-1760524514) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) -3. 🗣 Commented on [#20090](https://github.com/spyder-ide/spyder/pull/20090#issuecomment-1760469376) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#11](https://github.com/cdfxscrq/Telegram_Forwarder/pull/11#issuecomment-1760258851) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -5. 🗣 Commented on [#56](https://github.com/ITMO-NSS-team/GAMLET/pull/56#issuecomment-1760224348) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -6. 🗣 Commented on [#21423](https://github.com/spyder-ide/spyder/pull/21423#issuecomment-1760214099) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#93](https://github.com/politeauthority/cver/pull/93#issuecomment-1760188552) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#6](https://github.com/ITMO-NSS-team/GAMLET/pull/6#issuecomment-1760025360) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -9. 🗣 Commented on [#2922](https://github.com/dipy/dipy/pull/2922#issuecomment-1759940703) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#5245](https://github.com/rhinstaller/anaconda/pull/5245#issuecomment-1759924427) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#217](https://github.com/aimclub/GOLEM/pull/217#issuecomment-1761230859) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1760540217) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#31](https://github.com/MDAnalysis/hole2-mdakit/pull/31#issuecomment-1760524514) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +5. 🗣 Commented on [#20090](https://github.com/spyder-ide/spyder/pull/20090#issuecomment-1760469376) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#11](https://github.com/cdfxscrq/Telegram_Forwarder/pull/11#issuecomment-1760258851) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +7. 🗣 Commented on [#56](https://github.com/ITMO-NSS-team/GAMLET/pull/56#issuecomment-1760224348) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +8. 🗣 Commented on [#21423](https://github.com/spyder-ide/spyder/pull/21423#issuecomment-1760214099) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#93](https://github.com/politeauthority/cver/pull/93#issuecomment-1760188552) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#6](https://github.com/ITMO-NSS-team/GAMLET/pull/6#issuecomment-1760025360) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) From 101dfd443a4213fabb73345e5a8de3459b0062b9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 11:37:24 +0000 Subject: [PATCH 0318/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ec9fe548..8897ed87 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#217](https://github.com/aimclub/GOLEM/pull/217#issuecomment-1761230859) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1760540217) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#31](https://github.com/MDAnalysis/hole2-mdakit/pull/31#issuecomment-1760524514) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) -5. 🗣 Commented on [#20090](https://github.com/spyder-ide/spyder/pull/20090#issuecomment-1760469376) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#11](https://github.com/cdfxscrq/Telegram_Forwarder/pull/11#issuecomment-1760258851) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -7. 🗣 Commented on [#56](https://github.com/ITMO-NSS-team/GAMLET/pull/56#issuecomment-1760224348) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -8. 🗣 Commented on [#21423](https://github.com/spyder-ide/spyder/pull/21423#issuecomment-1760214099) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#93](https://github.com/politeauthority/cver/pull/93#issuecomment-1760188552) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#6](https://github.com/ITMO-NSS-team/GAMLET/pull/6#issuecomment-1760025360) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +1. 🗣 Commented on [#5247](https://github.com/rhinstaller/anaconda/pull/5247#issuecomment-1761344981) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#217](https://github.com/aimclub/GOLEM/pull/217#issuecomment-1761230859) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +4. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1760540217) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#31](https://github.com/MDAnalysis/hole2-mdakit/pull/31#issuecomment-1760524514) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +6. 🗣 Commented on [#20090](https://github.com/spyder-ide/spyder/pull/20090#issuecomment-1760469376) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#11](https://github.com/cdfxscrq/Telegram_Forwarder/pull/11#issuecomment-1760258851) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +8. 🗣 Commented on [#56](https://github.com/ITMO-NSS-team/GAMLET/pull/56#issuecomment-1760224348) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +9. 🗣 Commented on [#21423](https://github.com/spyder-ide/spyder/pull/21423#issuecomment-1760214099) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#93](https://github.com/politeauthority/cver/pull/93#issuecomment-1760188552) in [politeauthority/cver](https://github.com/politeauthority/cver) From ee120f6f81af6fb077f967a3575057af10e70f3d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 12:31:55 +0000 Subject: [PATCH 0319/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8897ed87..d623d210 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5247](https://github.com/rhinstaller/anaconda/pull/5247#issuecomment-1761344981) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#217](https://github.com/aimclub/GOLEM/pull/217#issuecomment-1761230859) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -4. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1760540217) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#31](https://github.com/MDAnalysis/hole2-mdakit/pull/31#issuecomment-1760524514) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) -6. 🗣 Commented on [#20090](https://github.com/spyder-ide/spyder/pull/20090#issuecomment-1760469376) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#11](https://github.com/cdfxscrq/Telegram_Forwarder/pull/11#issuecomment-1760258851) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -8. 🗣 Commented on [#56](https://github.com/ITMO-NSS-team/GAMLET/pull/56#issuecomment-1760224348) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -9. 🗣 Commented on [#21423](https://github.com/spyder-ide/spyder/pull/21423#issuecomment-1760214099) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#93](https://github.com/politeauthority/cver/pull/93#issuecomment-1760188552) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#97](https://github.com/aimclub/Fedot.Industrial/pull/97#issuecomment-1761432113) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +2. 🗣 Commented on [#5247](https://github.com/rhinstaller/anaconda/pull/5247#issuecomment-1761344981) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +4. 🗣 Commented on [#217](https://github.com/aimclub/GOLEM/pull/217#issuecomment-1761230859) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1760540217) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#31](https://github.com/MDAnalysis/hole2-mdakit/pull/31#issuecomment-1760524514) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +7. 🗣 Commented on [#20090](https://github.com/spyder-ide/spyder/pull/20090#issuecomment-1760469376) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#11](https://github.com/cdfxscrq/Telegram_Forwarder/pull/11#issuecomment-1760258851) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +9. 🗣 Commented on [#56](https://github.com/ITMO-NSS-team/GAMLET/pull/56#issuecomment-1760224348) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +10. 🗣 Commented on [#21423](https://github.com/spyder-ide/spyder/pull/21423#issuecomment-1760214099) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 1aaff0cadff93ed1d5be7366eee0e2635af05f18 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 13:21:02 +0000 Subject: [PATCH 0320/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d623d210..78a446c3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#97](https://github.com/aimclub/Fedot.Industrial/pull/97#issuecomment-1761432113) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -2. 🗣 Commented on [#5247](https://github.com/rhinstaller/anaconda/pull/5247#issuecomment-1761344981) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -4. 🗣 Commented on [#217](https://github.com/aimclub/GOLEM/pull/217#issuecomment-1761230859) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1760540217) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#31](https://github.com/MDAnalysis/hole2-mdakit/pull/31#issuecomment-1760524514) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) -7. 🗣 Commented on [#20090](https://github.com/spyder-ide/spyder/pull/20090#issuecomment-1760469376) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#11](https://github.com/cdfxscrq/Telegram_Forwarder/pull/11#issuecomment-1760258851) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -9. 🗣 Commented on [#56](https://github.com/ITMO-NSS-team/GAMLET/pull/56#issuecomment-1760224348) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -10. 🗣 Commented on [#21423](https://github.com/spyder-ide/spyder/pull/21423#issuecomment-1760214099) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#98](https://github.com/aimclub/Fedot.Industrial/pull/98#issuecomment-1761460973) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +2. 🗣 Commented on [#97](https://github.com/aimclub/Fedot.Industrial/pull/97#issuecomment-1761432113) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +3. 🗣 Commented on [#5247](https://github.com/rhinstaller/anaconda/pull/5247#issuecomment-1761344981) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#217](https://github.com/aimclub/GOLEM/pull/217#issuecomment-1761230859) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1760540217) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#31](https://github.com/MDAnalysis/hole2-mdakit/pull/31#issuecomment-1760524514) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +8. 🗣 Commented on [#20090](https://github.com/spyder-ide/spyder/pull/20090#issuecomment-1760469376) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#11](https://github.com/cdfxscrq/Telegram_Forwarder/pull/11#issuecomment-1760258851) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +10. 🗣 Commented on [#56](https://github.com/ITMO-NSS-team/GAMLET/pull/56#issuecomment-1760224348) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) From 67b76f8381b8f20cc32a467e75b7813ff0bcb75f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 14:14:47 +0000 Subject: [PATCH 0321/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 78a446c3..91c48a0e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#98](https://github.com/aimclub/Fedot.Industrial/pull/98#issuecomment-1761460973) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -2. 🗣 Commented on [#97](https://github.com/aimclub/Fedot.Industrial/pull/97#issuecomment-1761432113) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -3. 🗣 Commented on [#5247](https://github.com/rhinstaller/anaconda/pull/5247#issuecomment-1761344981) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#217](https://github.com/aimclub/GOLEM/pull/217#issuecomment-1761230859) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1760540217) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#31](https://github.com/MDAnalysis/hole2-mdakit/pull/31#issuecomment-1760524514) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) -8. 🗣 Commented on [#20090](https://github.com/spyder-ide/spyder/pull/20090#issuecomment-1760469376) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#11](https://github.com/cdfxscrq/Telegram_Forwarder/pull/11#issuecomment-1760258851) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -10. 🗣 Commented on [#56](https://github.com/ITMO-NSS-team/GAMLET/pull/56#issuecomment-1760224348) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +1. 🗣 Commented on [#59](https://github.com/ITMO-NSS-team/GAMLET/pull/59#issuecomment-1761565778) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +2. 🗣 Commented on [#98](https://github.com/aimclub/Fedot.Industrial/pull/98#issuecomment-1761460973) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +3. 🗣 Commented on [#97](https://github.com/aimclub/Fedot.Industrial/pull/97#issuecomment-1761432113) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#5247](https://github.com/rhinstaller/anaconda/pull/5247#issuecomment-1761344981) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#217](https://github.com/aimclub/GOLEM/pull/217#issuecomment-1761230859) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1760540217) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#31](https://github.com/MDAnalysis/hole2-mdakit/pull/31#issuecomment-1760524514) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +9. 🗣 Commented on [#20090](https://github.com/spyder-ide/spyder/pull/20090#issuecomment-1760469376) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#11](https://github.com/cdfxscrq/Telegram_Forwarder/pull/11#issuecomment-1760258851) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) From dca57cdf8b13d478efc10f5db995241ee0cc1010 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 15:16:44 +0000 Subject: [PATCH 0322/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 91c48a0e..86d4a605 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#59](https://github.com/ITMO-NSS-team/GAMLET/pull/59#issuecomment-1761565778) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -2. 🗣 Commented on [#98](https://github.com/aimclub/Fedot.Industrial/pull/98#issuecomment-1761460973) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -3. 🗣 Commented on [#97](https://github.com/aimclub/Fedot.Industrial/pull/97#issuecomment-1761432113) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#5247](https://github.com/rhinstaller/anaconda/pull/5247#issuecomment-1761344981) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#217](https://github.com/aimclub/GOLEM/pull/217#issuecomment-1761230859) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1760540217) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#31](https://github.com/MDAnalysis/hole2-mdakit/pull/31#issuecomment-1760524514) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) -9. 🗣 Commented on [#20090](https://github.com/spyder-ide/spyder/pull/20090#issuecomment-1760469376) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#11](https://github.com/cdfxscrq/Telegram_Forwarder/pull/11#issuecomment-1760258851) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +1. 🗣 Commented on [#1333](https://github.com/NeuralEnsemble/python-neo/pull/1333#issuecomment-1761632389) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +2. 🗣 Commented on [#59](https://github.com/ITMO-NSS-team/GAMLET/pull/59#issuecomment-1761565778) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +3. 🗣 Commented on [#98](https://github.com/aimclub/Fedot.Industrial/pull/98#issuecomment-1761460973) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#97](https://github.com/aimclub/Fedot.Industrial/pull/97#issuecomment-1761432113) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +5. 🗣 Commented on [#5247](https://github.com/rhinstaller/anaconda/pull/5247#issuecomment-1761344981) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#217](https://github.com/aimclub/GOLEM/pull/217#issuecomment-1761230859) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +8. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1760540217) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#31](https://github.com/MDAnalysis/hole2-mdakit/pull/31#issuecomment-1760524514) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +10. 🗣 Commented on [#20090](https://github.com/spyder-ide/spyder/pull/20090#issuecomment-1760469376) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 8ffefddff4c9415d055205b69a652d5aff6001d8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 15:37:29 +0000 Subject: [PATCH 0323/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 86d4a605..fa859e8c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1333](https://github.com/NeuralEnsemble/python-neo/pull/1333#issuecomment-1761632389) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -2. 🗣 Commented on [#59](https://github.com/ITMO-NSS-team/GAMLET/pull/59#issuecomment-1761565778) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -3. 🗣 Commented on [#98](https://github.com/aimclub/Fedot.Industrial/pull/98#issuecomment-1761460973) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#97](https://github.com/aimclub/Fedot.Industrial/pull/97#issuecomment-1761432113) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -5. 🗣 Commented on [#5247](https://github.com/rhinstaller/anaconda/pull/5247#issuecomment-1761344981) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#217](https://github.com/aimclub/GOLEM/pull/217#issuecomment-1761230859) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -8. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1760540217) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#31](https://github.com/MDAnalysis/hole2-mdakit/pull/31#issuecomment-1760524514) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) -10. 🗣 Commented on [#20090](https://github.com/spyder-ide/spyder/pull/20090#issuecomment-1760469376) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#60](https://github.com/ITMO-NSS-team/GAMLET/pull/60#issuecomment-1761708201) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +2. 🗣 Commented on [#1333](https://github.com/NeuralEnsemble/python-neo/pull/1333#issuecomment-1761632389) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +3. 🗣 Commented on [#59](https://github.com/ITMO-NSS-team/GAMLET/pull/59#issuecomment-1761565778) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +4. 🗣 Commented on [#98](https://github.com/aimclub/Fedot.Industrial/pull/98#issuecomment-1761460973) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +5. 🗣 Commented on [#97](https://github.com/aimclub/Fedot.Industrial/pull/97#issuecomment-1761432113) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#5247](https://github.com/rhinstaller/anaconda/pull/5247#issuecomment-1761344981) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +8. 🗣 Commented on [#217](https://github.com/aimclub/GOLEM/pull/217#issuecomment-1761230859) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1760540217) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#31](https://github.com/MDAnalysis/hole2-mdakit/pull/31#issuecomment-1760524514) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) From 96f0c9e83f42d722ab76b85cc9a7f3dc972129ae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 17:14:01 +0000 Subject: [PATCH 0324/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fa859e8c..edd6514e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#60](https://github.com/ITMO-NSS-team/GAMLET/pull/60#issuecomment-1761708201) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -2. 🗣 Commented on [#1333](https://github.com/NeuralEnsemble/python-neo/pull/1333#issuecomment-1761632389) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -3. 🗣 Commented on [#59](https://github.com/ITMO-NSS-team/GAMLET/pull/59#issuecomment-1761565778) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -4. 🗣 Commented on [#98](https://github.com/aimclub/Fedot.Industrial/pull/98#issuecomment-1761460973) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -5. 🗣 Commented on [#97](https://github.com/aimclub/Fedot.Industrial/pull/97#issuecomment-1761432113) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#5247](https://github.com/rhinstaller/anaconda/pull/5247#issuecomment-1761344981) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -8. 🗣 Commented on [#217](https://github.com/aimclub/GOLEM/pull/217#issuecomment-1761230859) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1760540217) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#31](https://github.com/MDAnalysis/hole2-mdakit/pull/31#issuecomment-1760524514) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +1. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1761827997) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#60](https://github.com/ITMO-NSS-team/GAMLET/pull/60#issuecomment-1761708201) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +3. 🗣 Commented on [#1333](https://github.com/NeuralEnsemble/python-neo/pull/1333#issuecomment-1761632389) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +4. 🗣 Commented on [#59](https://github.com/ITMO-NSS-team/GAMLET/pull/59#issuecomment-1761565778) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +5. 🗣 Commented on [#98](https://github.com/aimclub/Fedot.Industrial/pull/98#issuecomment-1761460973) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#97](https://github.com/aimclub/Fedot.Industrial/pull/97#issuecomment-1761432113) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#5247](https://github.com/rhinstaller/anaconda/pull/5247#issuecomment-1761344981) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#217](https://github.com/aimclub/GOLEM/pull/217#issuecomment-1761230859) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1760540217) in [politeauthority/cver](https://github.com/politeauthority/cver) From 31301ab60737375e8ca4015dc96485b84c5c3784 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 18:21:08 +0000 Subject: [PATCH 0325/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index edd6514e..03b48724 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1761827997) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#60](https://github.com/ITMO-NSS-team/GAMLET/pull/60#issuecomment-1761708201) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -3. 🗣 Commented on [#1333](https://github.com/NeuralEnsemble/python-neo/pull/1333#issuecomment-1761632389) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -4. 🗣 Commented on [#59](https://github.com/ITMO-NSS-team/GAMLET/pull/59#issuecomment-1761565778) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -5. 🗣 Commented on [#98](https://github.com/aimclub/Fedot.Industrial/pull/98#issuecomment-1761460973) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#97](https://github.com/aimclub/Fedot.Industrial/pull/97#issuecomment-1761432113) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#5247](https://github.com/rhinstaller/anaconda/pull/5247#issuecomment-1761344981) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#217](https://github.com/aimclub/GOLEM/pull/217#issuecomment-1761230859) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1760540217) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#5250](https://github.com/rhinstaller/anaconda/pull/5250#issuecomment-1761929899) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1761827997) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#60](https://github.com/ITMO-NSS-team/GAMLET/pull/60#issuecomment-1761708201) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +4. 🗣 Commented on [#1333](https://github.com/NeuralEnsemble/python-neo/pull/1333#issuecomment-1761632389) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +5. 🗣 Commented on [#59](https://github.com/ITMO-NSS-team/GAMLET/pull/59#issuecomment-1761565778) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +6. 🗣 Commented on [#98](https://github.com/aimclub/Fedot.Industrial/pull/98#issuecomment-1761460973) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#97](https://github.com/aimclub/Fedot.Industrial/pull/97#issuecomment-1761432113) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +8. 🗣 Commented on [#5247](https://github.com/rhinstaller/anaconda/pull/5247#issuecomment-1761344981) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#217](https://github.com/aimclub/GOLEM/pull/217#issuecomment-1761230859) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) From e44ba4de21746d43b625cd72979fa1bbcd6f8cfa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 18:38:59 +0000 Subject: [PATCH 0326/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 03b48724..875dcce0 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5250](https://github.com/rhinstaller/anaconda/pull/5250#issuecomment-1761929899) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1761827997) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#60](https://github.com/ITMO-NSS-team/GAMLET/pull/60#issuecomment-1761708201) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -4. 🗣 Commented on [#1333](https://github.com/NeuralEnsemble/python-neo/pull/1333#issuecomment-1761632389) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -5. 🗣 Commented on [#59](https://github.com/ITMO-NSS-team/GAMLET/pull/59#issuecomment-1761565778) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -6. 🗣 Commented on [#98](https://github.com/aimclub/Fedot.Industrial/pull/98#issuecomment-1761460973) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#97](https://github.com/aimclub/Fedot.Industrial/pull/97#issuecomment-1761432113) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -8. 🗣 Commented on [#5247](https://github.com/rhinstaller/anaconda/pull/5247#issuecomment-1761344981) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#217](https://github.com/aimclub/GOLEM/pull/217#issuecomment-1761230859) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +1. 🗣 Commented on [#1432](https://github.com/openSUSE/osc/pull/1432#issuecomment-1762010281) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#5250](https://github.com/rhinstaller/anaconda/pull/5250#issuecomment-1761929899) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1761827997) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#60](https://github.com/ITMO-NSS-team/GAMLET/pull/60#issuecomment-1761708201) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +5. 🗣 Commented on [#1333](https://github.com/NeuralEnsemble/python-neo/pull/1333#issuecomment-1761632389) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +6. 🗣 Commented on [#59](https://github.com/ITMO-NSS-team/GAMLET/pull/59#issuecomment-1761565778) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +7. 🗣 Commented on [#98](https://github.com/aimclub/Fedot.Industrial/pull/98#issuecomment-1761460973) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +8. 🗣 Commented on [#97](https://github.com/aimclub/Fedot.Industrial/pull/97#issuecomment-1761432113) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +9. 🗣 Commented on [#5247](https://github.com/rhinstaller/anaconda/pull/5247#issuecomment-1761344981) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) From 2e790b5eefdf9280d51587e87774223a782a185d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 19:12:42 +0000 Subject: [PATCH 0327/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 875dcce0..cc2ead72 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1432](https://github.com/openSUSE/osc/pull/1432#issuecomment-1762010281) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#5250](https://github.com/rhinstaller/anaconda/pull/5250#issuecomment-1761929899) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1761827997) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#60](https://github.com/ITMO-NSS-team/GAMLET/pull/60#issuecomment-1761708201) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -5. 🗣 Commented on [#1333](https://github.com/NeuralEnsemble/python-neo/pull/1333#issuecomment-1761632389) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -6. 🗣 Commented on [#59](https://github.com/ITMO-NSS-team/GAMLET/pull/59#issuecomment-1761565778) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -7. 🗣 Commented on [#98](https://github.com/aimclub/Fedot.Industrial/pull/98#issuecomment-1761460973) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -8. 🗣 Commented on [#97](https://github.com/aimclub/Fedot.Industrial/pull/97#issuecomment-1761432113) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -9. 🗣 Commented on [#5247](https://github.com/rhinstaller/anaconda/pull/5247#issuecomment-1761344981) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#138](https://github.com/aimclub/GOLEM/pull/138#issuecomment-1761251103) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +1. 🗣 Commented on [#764](https://github.com/scilus/scilpy/pull/764#issuecomment-1762058966) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#1334](https://github.com/NeuralEnsemble/python-neo/pull/1334#issuecomment-1762030445) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +3. 🗣 Commented on [#1432](https://github.com/openSUSE/osc/pull/1432#issuecomment-1762010281) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#5250](https://github.com/rhinstaller/anaconda/pull/5250#issuecomment-1761929899) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1761827997) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#60](https://github.com/ITMO-NSS-team/GAMLET/pull/60#issuecomment-1761708201) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +7. 🗣 Commented on [#1333](https://github.com/NeuralEnsemble/python-neo/pull/1333#issuecomment-1761632389) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +8. 🗣 Commented on [#59](https://github.com/ITMO-NSS-team/GAMLET/pull/59#issuecomment-1761565778) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +9. 🗣 Commented on [#98](https://github.com/aimclub/Fedot.Industrial/pull/98#issuecomment-1761460973) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#97](https://github.com/aimclub/Fedot.Industrial/pull/97#issuecomment-1761432113) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) From efe44a9b54edc8cd3a21f87484a9365283d7f29e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 20:17:10 +0000 Subject: [PATCH 0328/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cc2ead72..0a9a64a1 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#764](https://github.com/scilus/scilpy/pull/764#issuecomment-1762058966) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#1334](https://github.com/NeuralEnsemble/python-neo/pull/1334#issuecomment-1762030445) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -3. 🗣 Commented on [#1432](https://github.com/openSUSE/osc/pull/1432#issuecomment-1762010281) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#5250](https://github.com/rhinstaller/anaconda/pull/5250#issuecomment-1761929899) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1761827997) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#60](https://github.com/ITMO-NSS-team/GAMLET/pull/60#issuecomment-1761708201) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -7. 🗣 Commented on [#1333](https://github.com/NeuralEnsemble/python-neo/pull/1333#issuecomment-1761632389) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -8. 🗣 Commented on [#59](https://github.com/ITMO-NSS-team/GAMLET/pull/59#issuecomment-1761565778) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -9. 🗣 Commented on [#98](https://github.com/aimclub/Fedot.Industrial/pull/98#issuecomment-1761460973) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#97](https://github.com/aimclub/Fedot.Industrial/pull/97#issuecomment-1761432113) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +1. 🗣 Commented on [#98](https://github.com/politeauthority/cver/pull/98#issuecomment-1762134446) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1762125600) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#764](https://github.com/scilus/scilpy/pull/764#issuecomment-1762058966) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#1334](https://github.com/NeuralEnsemble/python-neo/pull/1334#issuecomment-1762030445) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +5. 🗣 Commented on [#1432](https://github.com/openSUSE/osc/pull/1432#issuecomment-1762010281) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#5250](https://github.com/rhinstaller/anaconda/pull/5250#issuecomment-1761929899) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1761827997) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#60](https://github.com/ITMO-NSS-team/GAMLET/pull/60#issuecomment-1761708201) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +9. 🗣 Commented on [#1333](https://github.com/NeuralEnsemble/python-neo/pull/1333#issuecomment-1761632389) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +10. 🗣 Commented on [#59](https://github.com/ITMO-NSS-team/GAMLET/pull/59#issuecomment-1761565778) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) From 7e4f465dd237547edf9f05f6c93751ebef2b602d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 22:14:47 +0000 Subject: [PATCH 0329/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0a9a64a1..249e809c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#98](https://github.com/politeauthority/cver/pull/98#issuecomment-1762134446) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1762125600) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#764](https://github.com/scilus/scilpy/pull/764#issuecomment-1762058966) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#1334](https://github.com/NeuralEnsemble/python-neo/pull/1334#issuecomment-1762030445) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -5. 🗣 Commented on [#1432](https://github.com/openSUSE/osc/pull/1432#issuecomment-1762010281) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#5250](https://github.com/rhinstaller/anaconda/pull/5250#issuecomment-1761929899) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1761827997) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#60](https://github.com/ITMO-NSS-team/GAMLET/pull/60#issuecomment-1761708201) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -9. 🗣 Commented on [#1333](https://github.com/NeuralEnsemble/python-neo/pull/1333#issuecomment-1761632389) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -10. 🗣 Commented on [#59](https://github.com/ITMO-NSS-team/GAMLET/pull/59#issuecomment-1761565778) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +1. 🗣 Commented on [#867](https://github.com/ToFuProject/tofu/pull/867#issuecomment-1762295046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#98](https://github.com/politeauthority/cver/pull/98#issuecomment-1762134446) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1762125600) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#764](https://github.com/scilus/scilpy/pull/764#issuecomment-1762058966) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#1334](https://github.com/NeuralEnsemble/python-neo/pull/1334#issuecomment-1762030445) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +6. 🗣 Commented on [#1432](https://github.com/openSUSE/osc/pull/1432#issuecomment-1762010281) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#5250](https://github.com/rhinstaller/anaconda/pull/5250#issuecomment-1761929899) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1761827997) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#60](https://github.com/ITMO-NSS-team/GAMLET/pull/60#issuecomment-1761708201) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +10. 🗣 Commented on [#1333](https://github.com/NeuralEnsemble/python-neo/pull/1333#issuecomment-1761632389) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) From cbcd824a0404a8aca519b7a7698282a9f7cc56da Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Oct 2023 23:15:15 +0000 Subject: [PATCH 0330/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 249e809c..f8bcb65e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#867](https://github.com/ToFuProject/tofu/pull/867#issuecomment-1762295046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#98](https://github.com/politeauthority/cver/pull/98#issuecomment-1762134446) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1762125600) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#764](https://github.com/scilus/scilpy/pull/764#issuecomment-1762058966) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#1334](https://github.com/NeuralEnsemble/python-neo/pull/1334#issuecomment-1762030445) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -6. 🗣 Commented on [#1432](https://github.com/openSUSE/osc/pull/1432#issuecomment-1762010281) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#5250](https://github.com/rhinstaller/anaconda/pull/5250#issuecomment-1761929899) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1761827997) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#60](https://github.com/ITMO-NSS-team/GAMLET/pull/60#issuecomment-1761708201) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -10. 🗣 Commented on [#1333](https://github.com/NeuralEnsemble/python-neo/pull/1333#issuecomment-1761632389) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +1. 🗣 Commented on [#577](https://github.com/OpenFreeEnergy/openfe/pull/577#issuecomment-1762330973) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#867](https://github.com/ToFuProject/tofu/pull/867#issuecomment-1762295046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#98](https://github.com/politeauthority/cver/pull/98#issuecomment-1762134446) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1762125600) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#764](https://github.com/scilus/scilpy/pull/764#issuecomment-1762058966) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#1334](https://github.com/NeuralEnsemble/python-neo/pull/1334#issuecomment-1762030445) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +7. 🗣 Commented on [#1432](https://github.com/openSUSE/osc/pull/1432#issuecomment-1762010281) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#5250](https://github.com/rhinstaller/anaconda/pull/5250#issuecomment-1761929899) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1761827997) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#60](https://github.com/ITMO-NSS-team/GAMLET/pull/60#issuecomment-1761708201) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) From 998bf8f3bfe6f6c308f4c3ec717520e0321c3d3b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Oct 2023 01:07:59 +0000 Subject: [PATCH 0331/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f8bcb65e..657a1775 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#577](https://github.com/OpenFreeEnergy/openfe/pull/577#issuecomment-1762330973) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#867](https://github.com/ToFuProject/tofu/pull/867#issuecomment-1762295046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#98](https://github.com/politeauthority/cver/pull/98#issuecomment-1762134446) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1762125600) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#764](https://github.com/scilus/scilpy/pull/764#issuecomment-1762058966) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#1334](https://github.com/NeuralEnsemble/python-neo/pull/1334#issuecomment-1762030445) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -7. 🗣 Commented on [#1432](https://github.com/openSUSE/osc/pull/1432#issuecomment-1762010281) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#5250](https://github.com/rhinstaller/anaconda/pull/5250#issuecomment-1761929899) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1761827997) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#60](https://github.com/ITMO-NSS-team/GAMLET/pull/60#issuecomment-1761708201) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +1. 🗣 Commented on [#99](https://github.com/politeauthority/cver/pull/99#issuecomment-1762428579) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#577](https://github.com/OpenFreeEnergy/openfe/pull/577#issuecomment-1762330973) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#867](https://github.com/ToFuProject/tofu/pull/867#issuecomment-1762295046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#98](https://github.com/politeauthority/cver/pull/98#issuecomment-1762134446) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1762125600) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#764](https://github.com/scilus/scilpy/pull/764#issuecomment-1762058966) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#1334](https://github.com/NeuralEnsemble/python-neo/pull/1334#issuecomment-1762030445) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +8. 🗣 Commented on [#1432](https://github.com/openSUSE/osc/pull/1432#issuecomment-1762010281) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#5250](https://github.com/rhinstaller/anaconda/pull/5250#issuecomment-1761929899) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1761827997) in [politeauthority/cver](https://github.com/politeauthority/cver) From aef1ee66295d4e091050f2ef0b808e601599d476 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Oct 2023 09:13:42 +0000 Subject: [PATCH 0332/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 657a1775..f3d6ffe1 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#99](https://github.com/politeauthority/cver/pull/99#issuecomment-1762428579) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#577](https://github.com/OpenFreeEnergy/openfe/pull/577#issuecomment-1762330973) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#867](https://github.com/ToFuProject/tofu/pull/867#issuecomment-1762295046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#98](https://github.com/politeauthority/cver/pull/98#issuecomment-1762134446) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1762125600) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#764](https://github.com/scilus/scilpy/pull/764#issuecomment-1762058966) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#1334](https://github.com/NeuralEnsemble/python-neo/pull/1334#issuecomment-1762030445) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -8. 🗣 Commented on [#1432](https://github.com/openSUSE/osc/pull/1432#issuecomment-1762010281) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#5250](https://github.com/rhinstaller/anaconda/pull/5250#issuecomment-1761929899) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1761827997) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#157](https://github.com/StingraySoftware/HENDRICS/pull/157#issuecomment-1762744024) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) +2. 🗣 Commented on [#99](https://github.com/politeauthority/cver/pull/99#issuecomment-1762428579) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#577](https://github.com/OpenFreeEnergy/openfe/pull/577#issuecomment-1762330973) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#867](https://github.com/ToFuProject/tofu/pull/867#issuecomment-1762295046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#98](https://github.com/politeauthority/cver/pull/98#issuecomment-1762134446) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1762125600) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#764](https://github.com/scilus/scilpy/pull/764#issuecomment-1762058966) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#1334](https://github.com/NeuralEnsemble/python-neo/pull/1334#issuecomment-1762030445) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +9. 🗣 Commented on [#1432](https://github.com/openSUSE/osc/pull/1432#issuecomment-1762010281) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#5250](https://github.com/rhinstaller/anaconda/pull/5250#issuecomment-1761929899) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 7124f3d29d4d501d056384c824bb114c7111851f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Oct 2023 18:19:05 +0000 Subject: [PATCH 0333/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f3d6ffe1..5882b5b9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#157](https://github.com/StingraySoftware/HENDRICS/pull/157#issuecomment-1762744024) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) -2. 🗣 Commented on [#99](https://github.com/politeauthority/cver/pull/99#issuecomment-1762428579) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#577](https://github.com/OpenFreeEnergy/openfe/pull/577#issuecomment-1762330973) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#867](https://github.com/ToFuProject/tofu/pull/867#issuecomment-1762295046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#98](https://github.com/politeauthority/cver/pull/98#issuecomment-1762134446) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1762125600) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#764](https://github.com/scilus/scilpy/pull/764#issuecomment-1762058966) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#1334](https://github.com/NeuralEnsemble/python-neo/pull/1334#issuecomment-1762030445) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -9. 🗣 Commented on [#1432](https://github.com/openSUSE/osc/pull/1432#issuecomment-1762010281) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#5250](https://github.com/rhinstaller/anaconda/pull/5250#issuecomment-1761929899) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#239](https://github.com/cleder/fastkml/pull/239#issuecomment-1763061441) in [cleder/fastkml](https://github.com/cleder/fastkml) +2. 🗣 Commented on [#157](https://github.com/StingraySoftware/HENDRICS/pull/157#issuecomment-1762744024) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) +3. 🗣 Commented on [#99](https://github.com/politeauthority/cver/pull/99#issuecomment-1762428579) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#577](https://github.com/OpenFreeEnergy/openfe/pull/577#issuecomment-1762330973) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#867](https://github.com/ToFuProject/tofu/pull/867#issuecomment-1762295046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#98](https://github.com/politeauthority/cver/pull/98#issuecomment-1762134446) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1762125600) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#764](https://github.com/scilus/scilpy/pull/764#issuecomment-1762058966) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#1334](https://github.com/NeuralEnsemble/python-neo/pull/1334#issuecomment-1762030445) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +10. 🗣 Commented on [#1432](https://github.com/openSUSE/osc/pull/1432#issuecomment-1762010281) in [openSUSE/osc](https://github.com/openSUSE/osc) From e034d19e6e5aa479403604cfc6ea236679a310c3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Oct 2023 01:14:48 +0000 Subject: [PATCH 0334/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5882b5b9..40110e45 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#239](https://github.com/cleder/fastkml/pull/239#issuecomment-1763061441) in [cleder/fastkml](https://github.com/cleder/fastkml) -2. 🗣 Commented on [#157](https://github.com/StingraySoftware/HENDRICS/pull/157#issuecomment-1762744024) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) -3. 🗣 Commented on [#99](https://github.com/politeauthority/cver/pull/99#issuecomment-1762428579) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#577](https://github.com/OpenFreeEnergy/openfe/pull/577#issuecomment-1762330973) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#867](https://github.com/ToFuProject/tofu/pull/867#issuecomment-1762295046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#98](https://github.com/politeauthority/cver/pull/98#issuecomment-1762134446) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1762125600) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#764](https://github.com/scilus/scilpy/pull/764#issuecomment-1762058966) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#1334](https://github.com/NeuralEnsemble/python-neo/pull/1334#issuecomment-1762030445) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -10. 🗣 Commented on [#1432](https://github.com/openSUSE/osc/pull/1432#issuecomment-1762010281) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/DocumentGPT/pull/1#issuecomment-1763222334) in [tuhinmallick/DocumentGPT](https://github.com/tuhinmallick/DocumentGPT) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/GUI-Based-Training/pull/1#issuecomment-1763214066) in [tuhinmallick/GUI-Based-Training](https://github.com/tuhinmallick/GUI-Based-Training) +3. 🗣 Commented on [#239](https://github.com/cleder/fastkml/pull/239#issuecomment-1763061441) in [cleder/fastkml](https://github.com/cleder/fastkml) +4. 🗣 Commented on [#157](https://github.com/StingraySoftware/HENDRICS/pull/157#issuecomment-1762744024) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) +5. 🗣 Commented on [#99](https://github.com/politeauthority/cver/pull/99#issuecomment-1762428579) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#577](https://github.com/OpenFreeEnergy/openfe/pull/577#issuecomment-1762330973) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#867](https://github.com/ToFuProject/tofu/pull/867#issuecomment-1762295046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#98](https://github.com/politeauthority/cver/pull/98#issuecomment-1762134446) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1762125600) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#764](https://github.com/scilus/scilpy/pull/764#issuecomment-1762058966) in [scilus/scilpy](https://github.com/scilus/scilpy) From 647467d4f8446557c4fa0b1e7981017dd1135dcf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Oct 2023 07:13:14 +0000 Subject: [PATCH 0335/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 40110e45..c986bf3c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/DocumentGPT/pull/1#issuecomment-1763222334) in [tuhinmallick/DocumentGPT](https://github.com/tuhinmallick/DocumentGPT) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/GUI-Based-Training/pull/1#issuecomment-1763214066) in [tuhinmallick/GUI-Based-Training](https://github.com/tuhinmallick/GUI-Based-Training) -3. 🗣 Commented on [#239](https://github.com/cleder/fastkml/pull/239#issuecomment-1763061441) in [cleder/fastkml](https://github.com/cleder/fastkml) -4. 🗣 Commented on [#157](https://github.com/StingraySoftware/HENDRICS/pull/157#issuecomment-1762744024) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) -5. 🗣 Commented on [#99](https://github.com/politeauthority/cver/pull/99#issuecomment-1762428579) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#577](https://github.com/OpenFreeEnergy/openfe/pull/577#issuecomment-1762330973) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#867](https://github.com/ToFuProject/tofu/pull/867#issuecomment-1762295046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#98](https://github.com/politeauthority/cver/pull/98#issuecomment-1762134446) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1762125600) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#764](https://github.com/scilus/scilpy/pull/764#issuecomment-1762058966) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/ask-my-pdf/pull/1#issuecomment-1763296115) in [tuhinmallick/ask-my-pdf](https://github.com/tuhinmallick/ask-my-pdf) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/DocumentGPT/pull/1#issuecomment-1763222334) in [tuhinmallick/DocumentGPT](https://github.com/tuhinmallick/DocumentGPT) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/GUI-Based-Training/pull/1#issuecomment-1763214066) in [tuhinmallick/GUI-Based-Training](https://github.com/tuhinmallick/GUI-Based-Training) +4. 🗣 Commented on [#239](https://github.com/cleder/fastkml/pull/239#issuecomment-1763061441) in [cleder/fastkml](https://github.com/cleder/fastkml) +5. 🗣 Commented on [#157](https://github.com/StingraySoftware/HENDRICS/pull/157#issuecomment-1762744024) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) +6. 🗣 Commented on [#99](https://github.com/politeauthority/cver/pull/99#issuecomment-1762428579) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#577](https://github.com/OpenFreeEnergy/openfe/pull/577#issuecomment-1762330973) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#867](https://github.com/ToFuProject/tofu/pull/867#issuecomment-1762295046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#98](https://github.com/politeauthority/cver/pull/98#issuecomment-1762134446) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1762125600) in [politeauthority/cver](https://github.com/politeauthority/cver) From a6f68b23a5b133bc66dd439f9c5bcdaa24b301bc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Oct 2023 07:37:20 +0000 Subject: [PATCH 0336/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c986bf3c..69cee235 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/ask-my-pdf/pull/1#issuecomment-1763296115) in [tuhinmallick/ask-my-pdf](https://github.com/tuhinmallick/ask-my-pdf) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/DocumentGPT/pull/1#issuecomment-1763222334) in [tuhinmallick/DocumentGPT](https://github.com/tuhinmallick/DocumentGPT) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/GUI-Based-Training/pull/1#issuecomment-1763214066) in [tuhinmallick/GUI-Based-Training](https://github.com/tuhinmallick/GUI-Based-Training) -4. 🗣 Commented on [#239](https://github.com/cleder/fastkml/pull/239#issuecomment-1763061441) in [cleder/fastkml](https://github.com/cleder/fastkml) -5. 🗣 Commented on [#157](https://github.com/StingraySoftware/HENDRICS/pull/157#issuecomment-1762744024) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) -6. 🗣 Commented on [#99](https://github.com/politeauthority/cver/pull/99#issuecomment-1762428579) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#577](https://github.com/OpenFreeEnergy/openfe/pull/577#issuecomment-1762330973) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#867](https://github.com/ToFuProject/tofu/pull/867#issuecomment-1762295046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#98](https://github.com/politeauthority/cver/pull/98#issuecomment-1762134446) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#96](https://github.com/politeauthority/cver/pull/96#issuecomment-1762125600) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/HandM-Recommender-System/pull/1#issuecomment-1763301997) in [tuhinmallick/HandM-Recommender-System](https://github.com/tuhinmallick/HandM-Recommender-System) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/ask-my-pdf/pull/1#issuecomment-1763296115) in [tuhinmallick/ask-my-pdf](https://github.com/tuhinmallick/ask-my-pdf) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/DocumentGPT/pull/1#issuecomment-1763222334) in [tuhinmallick/DocumentGPT](https://github.com/tuhinmallick/DocumentGPT) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/GUI-Based-Training/pull/1#issuecomment-1763214066) in [tuhinmallick/GUI-Based-Training](https://github.com/tuhinmallick/GUI-Based-Training) +5. 🗣 Commented on [#239](https://github.com/cleder/fastkml/pull/239#issuecomment-1763061441) in [cleder/fastkml](https://github.com/cleder/fastkml) +6. 🗣 Commented on [#157](https://github.com/StingraySoftware/HENDRICS/pull/157#issuecomment-1762744024) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) +7. 🗣 Commented on [#99](https://github.com/politeauthority/cver/pull/99#issuecomment-1762428579) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#577](https://github.com/OpenFreeEnergy/openfe/pull/577#issuecomment-1762330973) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#867](https://github.com/ToFuProject/tofu/pull/867#issuecomment-1762295046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#98](https://github.com/politeauthority/cver/pull/98#issuecomment-1762134446) in [politeauthority/cver](https://github.com/politeauthority/cver) From 547e3cb96dca7285188830323e47672cf3553f34 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Oct 2023 08:18:03 +0000 Subject: [PATCH 0337/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 69cee235..aa11cbe6 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/HandM-Recommender-System/pull/1#issuecomment-1763301997) in [tuhinmallick/HandM-Recommender-System](https://github.com/tuhinmallick/HandM-Recommender-System) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/ask-my-pdf/pull/1#issuecomment-1763296115) in [tuhinmallick/ask-my-pdf](https://github.com/tuhinmallick/ask-my-pdf) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/DocumentGPT/pull/1#issuecomment-1763222334) in [tuhinmallick/DocumentGPT](https://github.com/tuhinmallick/DocumentGPT) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/GUI-Based-Training/pull/1#issuecomment-1763214066) in [tuhinmallick/GUI-Based-Training](https://github.com/tuhinmallick/GUI-Based-Training) -5. 🗣 Commented on [#239](https://github.com/cleder/fastkml/pull/239#issuecomment-1763061441) in [cleder/fastkml](https://github.com/cleder/fastkml) -6. 🗣 Commented on [#157](https://github.com/StingraySoftware/HENDRICS/pull/157#issuecomment-1762744024) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) -7. 🗣 Commented on [#99](https://github.com/politeauthority/cver/pull/99#issuecomment-1762428579) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#577](https://github.com/OpenFreeEnergy/openfe/pull/577#issuecomment-1762330973) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#867](https://github.com/ToFuProject/tofu/pull/867#issuecomment-1762295046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#98](https://github.com/politeauthority/cver/pull/98#issuecomment-1762134446) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#9029](https://github.com/statsmodels/statsmodels/pull/9029#issuecomment-1763311469) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/HandM-Recommender-System/pull/1#issuecomment-1763301997) in [tuhinmallick/HandM-Recommender-System](https://github.com/tuhinmallick/HandM-Recommender-System) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/ask-my-pdf/pull/1#issuecomment-1763296115) in [tuhinmallick/ask-my-pdf](https://github.com/tuhinmallick/ask-my-pdf) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/DocumentGPT/pull/1#issuecomment-1763222334) in [tuhinmallick/DocumentGPT](https://github.com/tuhinmallick/DocumentGPT) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/GUI-Based-Training/pull/1#issuecomment-1763214066) in [tuhinmallick/GUI-Based-Training](https://github.com/tuhinmallick/GUI-Based-Training) +6. 🗣 Commented on [#239](https://github.com/cleder/fastkml/pull/239#issuecomment-1763061441) in [cleder/fastkml](https://github.com/cleder/fastkml) +7. 🗣 Commented on [#157](https://github.com/StingraySoftware/HENDRICS/pull/157#issuecomment-1762744024) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) +8. 🗣 Commented on [#99](https://github.com/politeauthority/cver/pull/99#issuecomment-1762428579) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#577](https://github.com/OpenFreeEnergy/openfe/pull/577#issuecomment-1762330973) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#867](https://github.com/ToFuProject/tofu/pull/867#issuecomment-1762295046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From 7ff9aa372a919698754ebad80e3b2a8e37099e54 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Oct 2023 09:13:49 +0000 Subject: [PATCH 0338/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index aa11cbe6..f311dfe5 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#9029](https://github.com/statsmodels/statsmodels/pull/9029#issuecomment-1763311469) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/HandM-Recommender-System/pull/1#issuecomment-1763301997) in [tuhinmallick/HandM-Recommender-System](https://github.com/tuhinmallick/HandM-Recommender-System) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/ask-my-pdf/pull/1#issuecomment-1763296115) in [tuhinmallick/ask-my-pdf](https://github.com/tuhinmallick/ask-my-pdf) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/DocumentGPT/pull/1#issuecomment-1763222334) in [tuhinmallick/DocumentGPT](https://github.com/tuhinmallick/DocumentGPT) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/GUI-Based-Training/pull/1#issuecomment-1763214066) in [tuhinmallick/GUI-Based-Training](https://github.com/tuhinmallick/GUI-Based-Training) -6. 🗣 Commented on [#239](https://github.com/cleder/fastkml/pull/239#issuecomment-1763061441) in [cleder/fastkml](https://github.com/cleder/fastkml) -7. 🗣 Commented on [#157](https://github.com/StingraySoftware/HENDRICS/pull/157#issuecomment-1762744024) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) -8. 🗣 Commented on [#99](https://github.com/politeauthority/cver/pull/99#issuecomment-1762428579) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#577](https://github.com/OpenFreeEnergy/openfe/pull/577#issuecomment-1762330973) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#867](https://github.com/ToFuProject/tofu/pull/867#issuecomment-1762295046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/pdf-analyze-streamlit/pull/1#issuecomment-1763325835) in [tuhinmallick/pdf-analyze-streamlit](https://github.com/tuhinmallick/pdf-analyze-streamlit) +3. 🗣 Commented on [#9029](https://github.com/statsmodels/statsmodels/pull/9029#issuecomment-1763311469) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/HandM-Recommender-System/pull/1#issuecomment-1763301997) in [tuhinmallick/HandM-Recommender-System](https://github.com/tuhinmallick/HandM-Recommender-System) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/ask-my-pdf/pull/1#issuecomment-1763296115) in [tuhinmallick/ask-my-pdf](https://github.com/tuhinmallick/ask-my-pdf) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/DocumentGPT/pull/1#issuecomment-1763222334) in [tuhinmallick/DocumentGPT](https://github.com/tuhinmallick/DocumentGPT) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/GUI-Based-Training/pull/1#issuecomment-1763214066) in [tuhinmallick/GUI-Based-Training](https://github.com/tuhinmallick/GUI-Based-Training) +8. 🗣 Commented on [#239](https://github.com/cleder/fastkml/pull/239#issuecomment-1763061441) in [cleder/fastkml](https://github.com/cleder/fastkml) +9. 🗣 Commented on [#157](https://github.com/StingraySoftware/HENDRICS/pull/157#issuecomment-1762744024) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) +10. 🗣 Commented on [#99](https://github.com/politeauthority/cver/pull/99#issuecomment-1762428579) in [politeauthority/cver](https://github.com/politeauthority/cver) From 90b9ae2f6d50ccee21216e474670b97ea6bbc22f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Oct 2023 09:37:38 +0000 Subject: [PATCH 0339/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f311dfe5..b24bd11f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/pdf-analyze-streamlit/pull/1#issuecomment-1763325835) in [tuhinmallick/pdf-analyze-streamlit](https://github.com/tuhinmallick/pdf-analyze-streamlit) -3. 🗣 Commented on [#9029](https://github.com/statsmodels/statsmodels/pull/9029#issuecomment-1763311469) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/HandM-Recommender-System/pull/1#issuecomment-1763301997) in [tuhinmallick/HandM-Recommender-System](https://github.com/tuhinmallick/HandM-Recommender-System) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/ask-my-pdf/pull/1#issuecomment-1763296115) in [tuhinmallick/ask-my-pdf](https://github.com/tuhinmallick/ask-my-pdf) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/DocumentGPT/pull/1#issuecomment-1763222334) in [tuhinmallick/DocumentGPT](https://github.com/tuhinmallick/DocumentGPT) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/GUI-Based-Training/pull/1#issuecomment-1763214066) in [tuhinmallick/GUI-Based-Training](https://github.com/tuhinmallick/GUI-Based-Training) -8. 🗣 Commented on [#239](https://github.com/cleder/fastkml/pull/239#issuecomment-1763061441) in [cleder/fastkml](https://github.com/cleder/fastkml) -9. 🗣 Commented on [#157](https://github.com/StingraySoftware/HENDRICS/pull/157#issuecomment-1762744024) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) -10. 🗣 Commented on [#99](https://github.com/politeauthority/cver/pull/99#issuecomment-1762428579) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/pdf-analyze-streamlit/pull/1#issuecomment-1763325835) in [tuhinmallick/pdf-analyze-streamlit](https://github.com/tuhinmallick/pdf-analyze-streamlit) +4. 🗣 Commented on [#9029](https://github.com/statsmodels/statsmodels/pull/9029#issuecomment-1763311469) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/HandM-Recommender-System/pull/1#issuecomment-1763301997) in [tuhinmallick/HandM-Recommender-System](https://github.com/tuhinmallick/HandM-Recommender-System) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/ask-my-pdf/pull/1#issuecomment-1763296115) in [tuhinmallick/ask-my-pdf](https://github.com/tuhinmallick/ask-my-pdf) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/DocumentGPT/pull/1#issuecomment-1763222334) in [tuhinmallick/DocumentGPT](https://github.com/tuhinmallick/DocumentGPT) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/GUI-Based-Training/pull/1#issuecomment-1763214066) in [tuhinmallick/GUI-Based-Training](https://github.com/tuhinmallick/GUI-Based-Training) +9. 🗣 Commented on [#239](https://github.com/cleder/fastkml/pull/239#issuecomment-1763061441) in [cleder/fastkml](https://github.com/cleder/fastkml) +10. 🗣 Commented on [#157](https://github.com/StingraySoftware/HENDRICS/pull/157#issuecomment-1762744024) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) From 0670d8d186c13ab17e7214caf66c0473410360eb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Oct 2023 10:37:14 +0000 Subject: [PATCH 0340/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b24bd11f..37c824ad 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/pdf-analyze-streamlit/pull/1#issuecomment-1763325835) in [tuhinmallick/pdf-analyze-streamlit](https://github.com/tuhinmallick/pdf-analyze-streamlit) -4. 🗣 Commented on [#9029](https://github.com/statsmodels/statsmodels/pull/9029#issuecomment-1763311469) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/HandM-Recommender-System/pull/1#issuecomment-1763301997) in [tuhinmallick/HandM-Recommender-System](https://github.com/tuhinmallick/HandM-Recommender-System) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/ask-my-pdf/pull/1#issuecomment-1763296115) in [tuhinmallick/ask-my-pdf](https://github.com/tuhinmallick/ask-my-pdf) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/DocumentGPT/pull/1#issuecomment-1763222334) in [tuhinmallick/DocumentGPT](https://github.com/tuhinmallick/DocumentGPT) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/GUI-Based-Training/pull/1#issuecomment-1763214066) in [tuhinmallick/GUI-Based-Training](https://github.com/tuhinmallick/GUI-Based-Training) -9. 🗣 Commented on [#239](https://github.com/cleder/fastkml/pull/239#issuecomment-1763061441) in [cleder/fastkml](https://github.com/cleder/fastkml) -10. 🗣 Commented on [#157](https://github.com/StingraySoftware/HENDRICS/pull/157#issuecomment-1762744024) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/pdf-analyze-streamlit/pull/1#issuecomment-1763325835) in [tuhinmallick/pdf-analyze-streamlit](https://github.com/tuhinmallick/pdf-analyze-streamlit) +5. 🗣 Commented on [#9029](https://github.com/statsmodels/statsmodels/pull/9029#issuecomment-1763311469) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/HandM-Recommender-System/pull/1#issuecomment-1763301997) in [tuhinmallick/HandM-Recommender-System](https://github.com/tuhinmallick/HandM-Recommender-System) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/ask-my-pdf/pull/1#issuecomment-1763296115) in [tuhinmallick/ask-my-pdf](https://github.com/tuhinmallick/ask-my-pdf) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/DocumentGPT/pull/1#issuecomment-1763222334) in [tuhinmallick/DocumentGPT](https://github.com/tuhinmallick/DocumentGPT) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/GUI-Based-Training/pull/1#issuecomment-1763214066) in [tuhinmallick/GUI-Based-Training](https://github.com/tuhinmallick/GUI-Based-Training) +10. 🗣 Commented on [#239](https://github.com/cleder/fastkml/pull/239#issuecomment-1763061441) in [cleder/fastkml](https://github.com/cleder/fastkml) From 97c53396d44440753b38ff528c8a38b7bce38afa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Oct 2023 14:37:18 +0000 Subject: [PATCH 0341/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 37c824ad..09faebe0 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/pdf-analyze-streamlit/pull/1#issuecomment-1763325835) in [tuhinmallick/pdf-analyze-streamlit](https://github.com/tuhinmallick/pdf-analyze-streamlit) -5. 🗣 Commented on [#9029](https://github.com/statsmodels/statsmodels/pull/9029#issuecomment-1763311469) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/HandM-Recommender-System/pull/1#issuecomment-1763301997) in [tuhinmallick/HandM-Recommender-System](https://github.com/tuhinmallick/HandM-Recommender-System) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/ask-my-pdf/pull/1#issuecomment-1763296115) in [tuhinmallick/ask-my-pdf](https://github.com/tuhinmallick/ask-my-pdf) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/DocumentGPT/pull/1#issuecomment-1763222334) in [tuhinmallick/DocumentGPT](https://github.com/tuhinmallick/DocumentGPT) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/GUI-Based-Training/pull/1#issuecomment-1763214066) in [tuhinmallick/GUI-Based-Training](https://github.com/tuhinmallick/GUI-Based-Training) -10. 🗣 Commented on [#239](https://github.com/cleder/fastkml/pull/239#issuecomment-1763061441) in [cleder/fastkml](https://github.com/cleder/fastkml) +1. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/pdf-analyze-streamlit/pull/1#issuecomment-1763325835) in [tuhinmallick/pdf-analyze-streamlit](https://github.com/tuhinmallick/pdf-analyze-streamlit) +6. 🗣 Commented on [#9029](https://github.com/statsmodels/statsmodels/pull/9029#issuecomment-1763311469) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/HandM-Recommender-System/pull/1#issuecomment-1763301997) in [tuhinmallick/HandM-Recommender-System](https://github.com/tuhinmallick/HandM-Recommender-System) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/ask-my-pdf/pull/1#issuecomment-1763296115) in [tuhinmallick/ask-my-pdf](https://github.com/tuhinmallick/ask-my-pdf) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/DocumentGPT/pull/1#issuecomment-1763222334) in [tuhinmallick/DocumentGPT](https://github.com/tuhinmallick/DocumentGPT) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/GUI-Based-Training/pull/1#issuecomment-1763214066) in [tuhinmallick/GUI-Based-Training](https://github.com/tuhinmallick/GUI-Based-Training) From 4450ee72caac95dcd7964718b65ccecb0b0ca687 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Oct 2023 17:13:31 +0000 Subject: [PATCH 0342/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 09faebe0..95e92aa6 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/pdf-analyze-streamlit/pull/1#issuecomment-1763325835) in [tuhinmallick/pdf-analyze-streamlit](https://github.com/tuhinmallick/pdf-analyze-streamlit) -6. 🗣 Commented on [#9029](https://github.com/statsmodels/statsmodels/pull/9029#issuecomment-1763311469) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/HandM-Recommender-System/pull/1#issuecomment-1763301997) in [tuhinmallick/HandM-Recommender-System](https://github.com/tuhinmallick/HandM-Recommender-System) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/ask-my-pdf/pull/1#issuecomment-1763296115) in [tuhinmallick/ask-my-pdf](https://github.com/tuhinmallick/ask-my-pdf) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/DocumentGPT/pull/1#issuecomment-1763222334) in [tuhinmallick/DocumentGPT](https://github.com/tuhinmallick/DocumentGPT) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/GUI-Based-Training/pull/1#issuecomment-1763214066) in [tuhinmallick/GUI-Based-Training](https://github.com/tuhinmallick/GUI-Based-Training) +1. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +2. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/pdf-analyze-streamlit/pull/1#issuecomment-1763325835) in [tuhinmallick/pdf-analyze-streamlit](https://github.com/tuhinmallick/pdf-analyze-streamlit) +7. 🗣 Commented on [#9029](https://github.com/statsmodels/statsmodels/pull/9029#issuecomment-1763311469) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/HandM-Recommender-System/pull/1#issuecomment-1763301997) in [tuhinmallick/HandM-Recommender-System](https://github.com/tuhinmallick/HandM-Recommender-System) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/ask-my-pdf/pull/1#issuecomment-1763296115) in [tuhinmallick/ask-my-pdf](https://github.com/tuhinmallick/ask-my-pdf) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/DocumentGPT/pull/1#issuecomment-1763222334) in [tuhinmallick/DocumentGPT](https://github.com/tuhinmallick/DocumentGPT) From 454348333038273f1fd4d67a74990cd352433971 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Oct 2023 18:37:15 +0000 Subject: [PATCH 0343/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 95e92aa6..721d9823 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -2. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/pdf-analyze-streamlit/pull/1#issuecomment-1763325835) in [tuhinmallick/pdf-analyze-streamlit](https://github.com/tuhinmallick/pdf-analyze-streamlit) -7. 🗣 Commented on [#9029](https://github.com/statsmodels/statsmodels/pull/9029#issuecomment-1763311469) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/HandM-Recommender-System/pull/1#issuecomment-1763301997) in [tuhinmallick/HandM-Recommender-System](https://github.com/tuhinmallick/HandM-Recommender-System) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/ask-my-pdf/pull/1#issuecomment-1763296115) in [tuhinmallick/ask-my-pdf](https://github.com/tuhinmallick/ask-my-pdf) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/DocumentGPT/pull/1#issuecomment-1763222334) in [tuhinmallick/DocumentGPT](https://github.com/tuhinmallick/DocumentGPT) +1. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +3. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/pdf-analyze-streamlit/pull/1#issuecomment-1763325835) in [tuhinmallick/pdf-analyze-streamlit](https://github.com/tuhinmallick/pdf-analyze-streamlit) +8. 🗣 Commented on [#9029](https://github.com/statsmodels/statsmodels/pull/9029#issuecomment-1763311469) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/HandM-Recommender-System/pull/1#issuecomment-1763301997) in [tuhinmallick/HandM-Recommender-System](https://github.com/tuhinmallick/HandM-Recommender-System) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/ask-my-pdf/pull/1#issuecomment-1763296115) in [tuhinmallick/ask-my-pdf](https://github.com/tuhinmallick/ask-my-pdf) From 86c5fa8fe1b1ddbb4f7378f3f88c44db74b76314 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Oct 2023 23:37:30 +0000 Subject: [PATCH 0344/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 721d9823..e29e782c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -3. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/pdf-analyze-streamlit/pull/1#issuecomment-1763325835) in [tuhinmallick/pdf-analyze-streamlit](https://github.com/tuhinmallick/pdf-analyze-streamlit) -8. 🗣 Commented on [#9029](https://github.com/statsmodels/statsmodels/pull/9029#issuecomment-1763311469) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/HandM-Recommender-System/pull/1#issuecomment-1763301997) in [tuhinmallick/HandM-Recommender-System](https://github.com/tuhinmallick/HandM-Recommender-System) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/ask-my-pdf/pull/1#issuecomment-1763296115) in [tuhinmallick/ask-my-pdf](https://github.com/tuhinmallick/ask-my-pdf) +1. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) +2. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +4. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/pdf-analyze-streamlit/pull/1#issuecomment-1763325835) in [tuhinmallick/pdf-analyze-streamlit](https://github.com/tuhinmallick/pdf-analyze-streamlit) +9. 🗣 Commented on [#9029](https://github.com/statsmodels/statsmodels/pull/9029#issuecomment-1763311469) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/HandM-Recommender-System/pull/1#issuecomment-1763301997) in [tuhinmallick/HandM-Recommender-System](https://github.com/tuhinmallick/HandM-Recommender-System) From 7c4aa5ab200150099b5bde4adcca1aa1b7dcd441 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 08:21:31 +0000 Subject: [PATCH 0345/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e29e782c..5494207a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) -2. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -4. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/pdf-analyze-streamlit/pull/1#issuecomment-1763325835) in [tuhinmallick/pdf-analyze-streamlit](https://github.com/tuhinmallick/pdf-analyze-streamlit) -9. 🗣 Commented on [#9029](https://github.com/statsmodels/statsmodels/pull/9029#issuecomment-1763311469) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/HandM-Recommender-System/pull/1#issuecomment-1763301997) in [tuhinmallick/HandM-Recommender-System](https://github.com/tuhinmallick/HandM-Recommender-System) +1. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +2. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) +3. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +5. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/pdf-analyze-streamlit/pull/1#issuecomment-1763325835) in [tuhinmallick/pdf-analyze-streamlit](https://github.com/tuhinmallick/pdf-analyze-streamlit) +10. 🗣 Commented on [#9029](https://github.com/statsmodels/statsmodels/pull/9029#issuecomment-1763311469) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) From 72268120a75a6c7758c9e83d0c51d6dc794a4146 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 09:17:09 +0000 Subject: [PATCH 0346/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5494207a..ffc728c8 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -2. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) -3. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -5. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/pdf-analyze-streamlit/pull/1#issuecomment-1763325835) in [tuhinmallick/pdf-analyze-streamlit](https://github.com/tuhinmallick/pdf-analyze-streamlit) -10. 🗣 Commented on [#9029](https://github.com/statsmodels/statsmodels/pull/9029#issuecomment-1763311469) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +1. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +3. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) +4. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +6. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/pdf-analyze-streamlit/pull/1#issuecomment-1763325835) in [tuhinmallick/pdf-analyze-streamlit](https://github.com/tuhinmallick/pdf-analyze-streamlit) From a7ad8f710b71e63d42e990132b8d812d4863d9f5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 12:32:59 +0000 Subject: [PATCH 0347/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ffc728c8..17e63459 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -3. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) -4. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -6. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/pdf-analyze-streamlit/pull/1#issuecomment-1763325835) in [tuhinmallick/pdf-analyze-streamlit](https://github.com/tuhinmallick/pdf-analyze-streamlit) +1. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +2. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +4. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) +5. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +7. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) From 2aa187ebf4c9faf2d1c74b1f46928fd48c4f00bc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 14:38:19 +0000 Subject: [PATCH 0348/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 17e63459..56ec916b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -2. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -4. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) -5. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -7. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-python/pull/1#issuecomment-1763329306) in [tuhinmallick/llm-python](https://github.com/tuhinmallick/llm-python) +1. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +2. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +3. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +4. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +5. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) +6. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +8. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) From dae4529320724aec9326772a95253e71fb354d7b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 16:21:51 +0000 Subject: [PATCH 0349/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 56ec916b..35d61667 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -2. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -3. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -4. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -5. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) -6. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -8. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/fiftyone-docs-search/pull/1#issuecomment-1763331181) in [tuhinmallick/fiftyone-docs-search](https://github.com/tuhinmallick/fiftyone-docs-search) +1. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +3. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +4. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +6. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) +7. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +9. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) From c6005de363046c75a8656ce04bb36a26749112d3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 17:14:32 +0000 Subject: [PATCH 0350/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 35d61667..01793914 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -3. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -4. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -6. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) -7. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -9. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain_faiss_vectorindex/pull/1#issuecomment-1763348563) in [tuhinmallick/langchain_faiss_vectorindex](https://github.com/tuhinmallick/langchain_faiss_vectorindex) +1. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +4. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +5. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +7. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) +8. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +10. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From bcbcb510ac56937d6f8a6f4531705542bf20f7a2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 17:37:21 +0000 Subject: [PATCH 0351/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 01793914..7ad728bd 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -4. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -5. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -7. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) -8. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -10. 🗣 Commented on [#3896](https://github.com/MDAnalysis/mdanalysis/pull/3896#issuecomment-1763405719) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +5. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +6. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +7. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +8. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) +9. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) From 007588815bff783b0b49410c3a0653b862f9ada0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 20:17:51 +0000 Subject: [PATCH 0352/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7ad728bd..78ebf282 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -5. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -6. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -7. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -8. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) -9. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#638](https://github.com/SergeyPirogov/webdriver_manager/pull/638#issuecomment-1763443653) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +1. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +6. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +7. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +9. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) +10. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 49568921d44259d8a592972bfcc631e9838fd3d7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 20:38:35 +0000 Subject: [PATCH 0353/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 78ebf282..d4f6cae1 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -6. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -7. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -9. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) -10. 🗣 Commented on [#21426](https://github.com/spyder-ide/spyder/pull/21426#issuecomment-1763469779) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +7. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +8. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +10. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) From e605c315869f4e59603ac892facfea8e709e2a2a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 22:14:39 +0000 Subject: [PATCH 0354/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d4f6cae1..349b73b3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -7. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -8. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -10. 🗣 Commented on [#360](https://github.com/payu-org/payu/pull/360#issuecomment-1763535078) in [payu-org/payu](https://github.com/payu-org/payu) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) +2. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +8. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +9. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) From 121d7316800c325e34b18fec9eba2bfeaa282863 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Oct 2023 01:10:24 +0000 Subject: [PATCH 0355/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 349b73b3..db103414 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) -2. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -8. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -9. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#51](https://github.com/cirKITers/Quafel/pull/51#issuecomment-1763929181) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +1. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) +3. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +9. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +10. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From 6ca8540104e9dfdee2b6836028dcbf63a773d3f1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Oct 2023 02:38:07 +0000 Subject: [PATCH 0356/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index db103414..88f29a43 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) -3. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -9. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -10. 🗣 Commented on [#3783](https://github.com/privacyidea/privacyidea/pull/3783#issuecomment-1764039551) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +2. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) +4. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +10. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) From f17a48f7cd56fcccc1b15e2c91b0c7290f2e9e26 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Oct 2023 05:14:31 +0000 Subject: [PATCH 0357/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 88f29a43..68416c66 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -2. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) -4. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -10. 🗣 Commented on [#597](https://github.com/NeuralEnsemble/elephant/pull/597#issuecomment-1764296271) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +1. 🗣 Commented on [#847](https://github.com/PyThaiNLP/pythainlp/pull/847#issuecomment-1765669222) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +3. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) +5. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) From 73063b318cb7334f9495ec693706466710b81254 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Oct 2023 07:15:06 +0000 Subject: [PATCH 0358/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 68416c66..37c3a889 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#847](https://github.com/PyThaiNLP/pythainlp/pull/847#issuecomment-1765669222) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -3. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) -5. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#580](https://github.com/ExoCTK/exoctk/pull/580#issuecomment-1764611875) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation/pull/1#issuecomment-1765802848) in [tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation) +2. 🗣 Commented on [#847](https://github.com/PyThaiNLP/pythainlp/pull/847#issuecomment-1765669222) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +4. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) +6. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) From e20824e58b60ac821a646deb103be5a8051fdacb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Oct 2023 08:20:45 +0000 Subject: [PATCH 0359/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 37c3a889..af71ca62 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation/pull/1#issuecomment-1765802848) in [tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation) -2. 🗣 Commented on [#847](https://github.com/PyThaiNLP/pythainlp/pull/847#issuecomment-1765669222) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -4. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) -6. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#101](https://github.com/politeauthority/cver/pull/101#issuecomment-1764761123) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#1000](https://github.com/oemof/oemof-solph/pull/1000#issuecomment-1765895811) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation/pull/1#issuecomment-1765802848) in [tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation) +3. 🗣 Commented on [#847](https://github.com/PyThaiNLP/pythainlp/pull/847#issuecomment-1765669222) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +5. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) +7. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 83376a07cb776c96cc80fa2dbb6eb30d38b04ba9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Oct 2023 10:38:10 +0000 Subject: [PATCH 0360/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index af71ca62..4b6849a3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1000](https://github.com/oemof/oemof-solph/pull/1000#issuecomment-1765895811) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation/pull/1#issuecomment-1765802848) in [tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation) -3. 🗣 Commented on [#847](https://github.com/PyThaiNLP/pythainlp/pull/847#issuecomment-1765669222) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -5. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) -7. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#5255](https://github.com/rhinstaller/anaconda/pull/5255#issuecomment-1764864928) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#2](https://github.com/eastgenomics/gene_annotation2bed/pull/2#issuecomment-1766130027) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +2. 🗣 Commented on [#1000](https://github.com/oemof/oemof-solph/pull/1000#issuecomment-1765895811) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation/pull/1#issuecomment-1765802848) in [tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation) +4. 🗣 Commented on [#847](https://github.com/PyThaiNLP/pythainlp/pull/847#issuecomment-1765669222) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +6. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) +8. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 889b39e49293ef097cb924c97afc4c781ea77008 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Oct 2023 11:13:30 +0000 Subject: [PATCH 0361/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4b6849a3..fae824fe 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2](https://github.com/eastgenomics/gene_annotation2bed/pull/2#issuecomment-1766130027) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -2. 🗣 Commented on [#1000](https://github.com/oemof/oemof-solph/pull/1000#issuecomment-1765895811) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation/pull/1#issuecomment-1765802848) in [tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation) -4. 🗣 Commented on [#847](https://github.com/PyThaiNLP/pythainlp/pull/847#issuecomment-1765669222) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -6. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) -8. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#5181](https://github.com/rhinstaller/anaconda/pull/5181#issuecomment-1764922888) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#91](https://github.com/Richard-Sti/csiborgtools/pull/91#issuecomment-1766195847) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +2. 🗣 Commented on [#2](https://github.com/eastgenomics/gene_annotation2bed/pull/2#issuecomment-1766130027) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +3. 🗣 Commented on [#1000](https://github.com/oemof/oemof-solph/pull/1000#issuecomment-1765895811) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation/pull/1#issuecomment-1765802848) in [tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation) +5. 🗣 Commented on [#847](https://github.com/PyThaiNLP/pythainlp/pull/847#issuecomment-1765669222) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +7. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) +9. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) From 907259945b4c864b8d50ac0dd6dff3411aaad139 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Oct 2023 12:32:55 +0000 Subject: [PATCH 0362/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fae824fe..41d4df4a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#91](https://github.com/Richard-Sti/csiborgtools/pull/91#issuecomment-1766195847) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -2. 🗣 Commented on [#2](https://github.com/eastgenomics/gene_annotation2bed/pull/2#issuecomment-1766130027) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -3. 🗣 Commented on [#1000](https://github.com/oemof/oemof-solph/pull/1000#issuecomment-1765895811) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation/pull/1#issuecomment-1765802848) in [tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation) -5. 🗣 Commented on [#847](https://github.com/PyThaiNLP/pythainlp/pull/847#issuecomment-1765669222) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -7. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) -9. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#102](https://github.com/politeauthority/cver/pull/102#issuecomment-1765140133) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#101](https://github.com/aimclub/Fedot.Industrial/pull/101#issuecomment-1766274153) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +2. 🗣 Commented on [#91](https://github.com/Richard-Sti/csiborgtools/pull/91#issuecomment-1766195847) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +3. 🗣 Commented on [#2](https://github.com/eastgenomics/gene_annotation2bed/pull/2#issuecomment-1766130027) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +4. 🗣 Commented on [#1000](https://github.com/oemof/oemof-solph/pull/1000#issuecomment-1765895811) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation/pull/1#issuecomment-1765802848) in [tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation) +6. 🗣 Commented on [#847](https://github.com/PyThaiNLP/pythainlp/pull/847#issuecomment-1765669222) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +7. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +8. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) +10. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) From a0338187e6caaf40f863593089d8c4392a9eb55d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Oct 2023 14:37:23 +0000 Subject: [PATCH 0363/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 41d4df4a..6408ce11 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#101](https://github.com/aimclub/Fedot.Industrial/pull/101#issuecomment-1766274153) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -2. 🗣 Commented on [#91](https://github.com/Richard-Sti/csiborgtools/pull/91#issuecomment-1766195847) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -3. 🗣 Commented on [#2](https://github.com/eastgenomics/gene_annotation2bed/pull/2#issuecomment-1766130027) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -4. 🗣 Commented on [#1000](https://github.com/oemof/oemof-solph/pull/1000#issuecomment-1765895811) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation/pull/1#issuecomment-1765802848) in [tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation) -6. 🗣 Commented on [#847](https://github.com/PyThaiNLP/pythainlp/pull/847#issuecomment-1765669222) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -7. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -8. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) -10. 🗣 Commented on [#104](https://github.com/politeauthority/cver/pull/104#issuecomment-1765234197) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#91](https://github.com/spacetelescope/jwst_gtvt/pull/91#issuecomment-1766535362) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) +2. 🗣 Commented on [#101](https://github.com/aimclub/Fedot.Industrial/pull/101#issuecomment-1766274153) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +3. 🗣 Commented on [#91](https://github.com/Richard-Sti/csiborgtools/pull/91#issuecomment-1766195847) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +4. 🗣 Commented on [#2](https://github.com/eastgenomics/gene_annotation2bed/pull/2#issuecomment-1766130027) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +5. 🗣 Commented on [#1000](https://github.com/oemof/oemof-solph/pull/1000#issuecomment-1765895811) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation/pull/1#issuecomment-1765802848) in [tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation) +7. 🗣 Commented on [#847](https://github.com/PyThaiNLP/pythainlp/pull/847#issuecomment-1765669222) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +8. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +9. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) From 0f365ac5eb0684458bc4661f8421f71d404f102f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Oct 2023 20:17:01 +0000 Subject: [PATCH 0364/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6408ce11..64a27067 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#91](https://github.com/spacetelescope/jwst_gtvt/pull/91#issuecomment-1766535362) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) -2. 🗣 Commented on [#101](https://github.com/aimclub/Fedot.Industrial/pull/101#issuecomment-1766274153) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -3. 🗣 Commented on [#91](https://github.com/Richard-Sti/csiborgtools/pull/91#issuecomment-1766195847) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -4. 🗣 Commented on [#2](https://github.com/eastgenomics/gene_annotation2bed/pull/2#issuecomment-1766130027) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -5. 🗣 Commented on [#1000](https://github.com/oemof/oemof-solph/pull/1000#issuecomment-1765895811) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation/pull/1#issuecomment-1765802848) in [tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation) -7. 🗣 Commented on [#847](https://github.com/PyThaiNLP/pythainlp/pull/847#issuecomment-1765669222) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -8. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -9. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/localGPT/pull/1#issuecomment-1765339887) in [tuhinmallick/localGPT](https://github.com/tuhinmallick/localGPT) +1. 🗣 Commented on [#457](https://github.com/nabaztag2018/pynab/pull/457#issuecomment-1767085499) in [nabaztag2018/pynab](https://github.com/nabaztag2018/pynab) +2. 🗣 Commented on [#91](https://github.com/spacetelescope/jwst_gtvt/pull/91#issuecomment-1766535362) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) +3. 🗣 Commented on [#101](https://github.com/aimclub/Fedot.Industrial/pull/101#issuecomment-1766274153) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#91](https://github.com/Richard-Sti/csiborgtools/pull/91#issuecomment-1766195847) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +5. 🗣 Commented on [#2](https://github.com/eastgenomics/gene_annotation2bed/pull/2#issuecomment-1766130027) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +6. 🗣 Commented on [#1000](https://github.com/oemof/oemof-solph/pull/1000#issuecomment-1765895811) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation/pull/1#issuecomment-1765802848) in [tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation) +8. 🗣 Commented on [#847](https://github.com/PyThaiNLP/pythainlp/pull/847#issuecomment-1765669222) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +10. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) From b4cfa49db359bf0907f0b0d39c582e19f408963e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Oct 2023 23:15:28 +0000 Subject: [PATCH 0365/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 64a27067..c7afa620 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#457](https://github.com/nabaztag2018/pynab/pull/457#issuecomment-1767085499) in [nabaztag2018/pynab](https://github.com/nabaztag2018/pynab) -2. 🗣 Commented on [#91](https://github.com/spacetelescope/jwst_gtvt/pull/91#issuecomment-1766535362) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) -3. 🗣 Commented on [#101](https://github.com/aimclub/Fedot.Industrial/pull/101#issuecomment-1766274153) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#91](https://github.com/Richard-Sti/csiborgtools/pull/91#issuecomment-1766195847) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -5. 🗣 Commented on [#2](https://github.com/eastgenomics/gene_annotation2bed/pull/2#issuecomment-1766130027) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -6. 🗣 Commented on [#1000](https://github.com/oemof/oemof-solph/pull/1000#issuecomment-1765895811) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation/pull/1#issuecomment-1765802848) in [tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation) -8. 🗣 Commented on [#847](https://github.com/PyThaiNLP/pythainlp/pull/847#issuecomment-1765669222) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -10. 🗣 Commented on [#105](https://github.com/politeauthority/cver/pull/105#issuecomment-1765463540) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#2851](https://github.com/astropy/astroquery/pull/2851#issuecomment-1767322223) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#457](https://github.com/nabaztag2018/pynab/pull/457#issuecomment-1767085499) in [nabaztag2018/pynab](https://github.com/nabaztag2018/pynab) +3. 🗣 Commented on [#91](https://github.com/spacetelescope/jwst_gtvt/pull/91#issuecomment-1766535362) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) +4. 🗣 Commented on [#101](https://github.com/aimclub/Fedot.Industrial/pull/101#issuecomment-1766274153) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +5. 🗣 Commented on [#91](https://github.com/Richard-Sti/csiborgtools/pull/91#issuecomment-1766195847) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +6. 🗣 Commented on [#2](https://github.com/eastgenomics/gene_annotation2bed/pull/2#issuecomment-1766130027) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +7. 🗣 Commented on [#1000](https://github.com/oemof/oemof-solph/pull/1000#issuecomment-1765895811) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation/pull/1#issuecomment-1765802848) in [tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation) +9. 🗣 Commented on [#847](https://github.com/PyThaiNLP/pythainlp/pull/847#issuecomment-1765669222) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +10. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) From 02d8225c46b4062af0baec751e4954ec0ccad6a8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 01:10:16 +0000 Subject: [PATCH 0366/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c7afa620..2e47b4ea 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2851](https://github.com/astropy/astroquery/pull/2851#issuecomment-1767322223) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#457](https://github.com/nabaztag2018/pynab/pull/457#issuecomment-1767085499) in [nabaztag2018/pynab](https://github.com/nabaztag2018/pynab) -3. 🗣 Commented on [#91](https://github.com/spacetelescope/jwst_gtvt/pull/91#issuecomment-1766535362) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) -4. 🗣 Commented on [#101](https://github.com/aimclub/Fedot.Industrial/pull/101#issuecomment-1766274153) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -5. 🗣 Commented on [#91](https://github.com/Richard-Sti/csiborgtools/pull/91#issuecomment-1766195847) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -6. 🗣 Commented on [#2](https://github.com/eastgenomics/gene_annotation2bed/pull/2#issuecomment-1766130027) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -7. 🗣 Commented on [#1000](https://github.com/oemof/oemof-solph/pull/1000#issuecomment-1765895811) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation/pull/1#issuecomment-1765802848) in [tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation) -9. 🗣 Commented on [#847](https://github.com/PyThaiNLP/pythainlp/pull/847#issuecomment-1765669222) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -10. 🗣 Commented on [#2005](https://github.com/rpm-software-management/dnf/pull/2005#issuecomment-1765554777) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +1. 🗣 Commented on [#478](https://github.com/HEPCloud/decisionengine_modules/pull/478#issuecomment-1767432536) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +2. 🗣 Commented on [#201](https://github.com/CartoonFan/lutris/pull/201#issuecomment-1767371539) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#2851](https://github.com/astropy/astroquery/pull/2851#issuecomment-1767322223) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#457](https://github.com/nabaztag2018/pynab/pull/457#issuecomment-1767085499) in [nabaztag2018/pynab](https://github.com/nabaztag2018/pynab) +5. 🗣 Commented on [#91](https://github.com/spacetelescope/jwst_gtvt/pull/91#issuecomment-1766535362) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) +6. 🗣 Commented on [#101](https://github.com/aimclub/Fedot.Industrial/pull/101#issuecomment-1766274153) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#91](https://github.com/Richard-Sti/csiborgtools/pull/91#issuecomment-1766195847) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +8. 🗣 Commented on [#2](https://github.com/eastgenomics/gene_annotation2bed/pull/2#issuecomment-1766130027) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +9. 🗣 Commented on [#1000](https://github.com/oemof/oemof-solph/pull/1000#issuecomment-1765895811) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation/pull/1#issuecomment-1765802848) in [tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation) From 0f3fb5162db3f0292c3ac1756d49fb946912b25b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 03:37:29 +0000 Subject: [PATCH 0367/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2e47b4ea..4dc895e9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#478](https://github.com/HEPCloud/decisionengine_modules/pull/478#issuecomment-1767432536) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -2. 🗣 Commented on [#201](https://github.com/CartoonFan/lutris/pull/201#issuecomment-1767371539) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#2851](https://github.com/astropy/astroquery/pull/2851#issuecomment-1767322223) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#457](https://github.com/nabaztag2018/pynab/pull/457#issuecomment-1767085499) in [nabaztag2018/pynab](https://github.com/nabaztag2018/pynab) -5. 🗣 Commented on [#91](https://github.com/spacetelescope/jwst_gtvt/pull/91#issuecomment-1766535362) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) -6. 🗣 Commented on [#101](https://github.com/aimclub/Fedot.Industrial/pull/101#issuecomment-1766274153) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#91](https://github.com/Richard-Sti/csiborgtools/pull/91#issuecomment-1766195847) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -8. 🗣 Commented on [#2](https://github.com/eastgenomics/gene_annotation2bed/pull/2#issuecomment-1766130027) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -9. 🗣 Commented on [#1000](https://github.com/oemof/oemof-solph/pull/1000#issuecomment-1765895811) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation/pull/1#issuecomment-1765802848) in [tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation](https://github.com/tuhinmallick/Haystack-and-Mistral-7B-RAG-Implementation) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/crab/pull/1#issuecomment-1767562698) in [tuhinmallick/crab](https://github.com/tuhinmallick/crab) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine/pull/1#issuecomment-1767559101) in [tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine) +3. 🗣 Commented on [#478](https://github.com/HEPCloud/decisionengine_modules/pull/478#issuecomment-1767432536) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +4. 🗣 Commented on [#201](https://github.com/CartoonFan/lutris/pull/201#issuecomment-1767371539) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#2851](https://github.com/astropy/astroquery/pull/2851#issuecomment-1767322223) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#457](https://github.com/nabaztag2018/pynab/pull/457#issuecomment-1767085499) in [nabaztag2018/pynab](https://github.com/nabaztag2018/pynab) +7. 🗣 Commented on [#91](https://github.com/spacetelescope/jwst_gtvt/pull/91#issuecomment-1766535362) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) +8. 🗣 Commented on [#101](https://github.com/aimclub/Fedot.Industrial/pull/101#issuecomment-1766274153) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +9. 🗣 Commented on [#91](https://github.com/Richard-Sti/csiborgtools/pull/91#issuecomment-1766195847) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +10. 🗣 Commented on [#2](https://github.com/eastgenomics/gene_annotation2bed/pull/2#issuecomment-1766130027) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) From 76a88ed98b163cab85c024e21dab25046a840a8a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 04:18:55 +0000 Subject: [PATCH 0368/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4dc895e9..300dfa07 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/crab/pull/1#issuecomment-1767562698) in [tuhinmallick/crab](https://github.com/tuhinmallick/crab) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine/pull/1#issuecomment-1767559101) in [tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine) -3. 🗣 Commented on [#478](https://github.com/HEPCloud/decisionengine_modules/pull/478#issuecomment-1767432536) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -4. 🗣 Commented on [#201](https://github.com/CartoonFan/lutris/pull/201#issuecomment-1767371539) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#2851](https://github.com/astropy/astroquery/pull/2851#issuecomment-1767322223) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#457](https://github.com/nabaztag2018/pynab/pull/457#issuecomment-1767085499) in [nabaztag2018/pynab](https://github.com/nabaztag2018/pynab) -7. 🗣 Commented on [#91](https://github.com/spacetelescope/jwst_gtvt/pull/91#issuecomment-1766535362) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) -8. 🗣 Commented on [#101](https://github.com/aimclub/Fedot.Industrial/pull/101#issuecomment-1766274153) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -9. 🗣 Commented on [#91](https://github.com/Richard-Sti/csiborgtools/pull/91#issuecomment-1766195847) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -10. 🗣 Commented on [#2](https://github.com/eastgenomics/gene_annotation2bed/pull/2#issuecomment-1766130027) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/recommender/pull/1#issuecomment-1767610743) in [tuhinmallick/recommender](https://github.com/tuhinmallick/recommender) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/finsight/pull/1#issuecomment-1767610179) in [tuhinmallick/finsight](https://github.com/tuhinmallick/finsight) +3. 🗣 Commented on [#144](https://github.com/DeMarcoLab/autolamella/pull/144#issuecomment-1767582342) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/crab/pull/1#issuecomment-1767562698) in [tuhinmallick/crab](https://github.com/tuhinmallick/crab) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine/pull/1#issuecomment-1767559101) in [tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine) +6. 🗣 Commented on [#478](https://github.com/HEPCloud/decisionengine_modules/pull/478#issuecomment-1767432536) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +7. 🗣 Commented on [#201](https://github.com/CartoonFan/lutris/pull/201#issuecomment-1767371539) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#2851](https://github.com/astropy/astroquery/pull/2851#issuecomment-1767322223) in [astropy/astroquery](https://github.com/astropy/astroquery) +9. 🗣 Commented on [#457](https://github.com/nabaztag2018/pynab/pull/457#issuecomment-1767085499) in [nabaztag2018/pynab](https://github.com/nabaztag2018/pynab) +10. 🗣 Commented on [#91](https://github.com/spacetelescope/jwst_gtvt/pull/91#issuecomment-1766535362) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) From 6ba437df6a79cb64d4eb86576beca0180b5f9060 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 04:37:16 +0000 Subject: [PATCH 0369/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 300dfa07..e10a481b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/recommender/pull/1#issuecomment-1767610743) in [tuhinmallick/recommender](https://github.com/tuhinmallick/recommender) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/finsight/pull/1#issuecomment-1767610179) in [tuhinmallick/finsight](https://github.com/tuhinmallick/finsight) -3. 🗣 Commented on [#144](https://github.com/DeMarcoLab/autolamella/pull/144#issuecomment-1767582342) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/crab/pull/1#issuecomment-1767562698) in [tuhinmallick/crab](https://github.com/tuhinmallick/crab) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine/pull/1#issuecomment-1767559101) in [tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine) -6. 🗣 Commented on [#478](https://github.com/HEPCloud/decisionengine_modules/pull/478#issuecomment-1767432536) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -7. 🗣 Commented on [#201](https://github.com/CartoonFan/lutris/pull/201#issuecomment-1767371539) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#2851](https://github.com/astropy/astroquery/pull/2851#issuecomment-1767322223) in [astropy/astroquery](https://github.com/astropy/astroquery) -9. 🗣 Commented on [#457](https://github.com/nabaztag2018/pynab/pull/457#issuecomment-1767085499) in [nabaztag2018/pynab](https://github.com/nabaztag2018/pynab) -10. 🗣 Commented on [#91](https://github.com/spacetelescope/jwst_gtvt/pull/91#issuecomment-1766535362) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/DemoGPT/pull/1#issuecomment-1767620999) in [tuhinmallick/DemoGPT](https://github.com/tuhinmallick/DemoGPT) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/recommender/pull/1#issuecomment-1767610743) in [tuhinmallick/recommender](https://github.com/tuhinmallick/recommender) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/finsight/pull/1#issuecomment-1767610179) in [tuhinmallick/finsight](https://github.com/tuhinmallick/finsight) +4. 🗣 Commented on [#144](https://github.com/DeMarcoLab/autolamella/pull/144#issuecomment-1767582342) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/crab/pull/1#issuecomment-1767562698) in [tuhinmallick/crab](https://github.com/tuhinmallick/crab) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine/pull/1#issuecomment-1767559101) in [tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine) +7. 🗣 Commented on [#478](https://github.com/HEPCloud/decisionengine_modules/pull/478#issuecomment-1767432536) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +8. 🗣 Commented on [#201](https://github.com/CartoonFan/lutris/pull/201#issuecomment-1767371539) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#2851](https://github.com/astropy/astroquery/pull/2851#issuecomment-1767322223) in [astropy/astroquery](https://github.com/astropy/astroquery) +10. 🗣 Commented on [#457](https://github.com/nabaztag2018/pynab/pull/457#issuecomment-1767085499) in [nabaztag2018/pynab](https://github.com/nabaztag2018/pynab) From a6000c1ef43dc1f7465637ae395267d6bf6700f5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 05:14:36 +0000 Subject: [PATCH 0370/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e10a481b..10c2c6b8 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/DemoGPT/pull/1#issuecomment-1767620999) in [tuhinmallick/DemoGPT](https://github.com/tuhinmallick/DemoGPT) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/recommender/pull/1#issuecomment-1767610743) in [tuhinmallick/recommender](https://github.com/tuhinmallick/recommender) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/finsight/pull/1#issuecomment-1767610179) in [tuhinmallick/finsight](https://github.com/tuhinmallick/finsight) -4. 🗣 Commented on [#144](https://github.com/DeMarcoLab/autolamella/pull/144#issuecomment-1767582342) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/crab/pull/1#issuecomment-1767562698) in [tuhinmallick/crab](https://github.com/tuhinmallick/crab) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine/pull/1#issuecomment-1767559101) in [tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine) -7. 🗣 Commented on [#478](https://github.com/HEPCloud/decisionengine_modules/pull/478#issuecomment-1767432536) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -8. 🗣 Commented on [#201](https://github.com/CartoonFan/lutris/pull/201#issuecomment-1767371539) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#2851](https://github.com/astropy/astroquery/pull/2851#issuecomment-1767322223) in [astropy/astroquery](https://github.com/astropy/astroquery) -10. 🗣 Commented on [#457](https://github.com/nabaztag2018/pynab/pull/457#issuecomment-1767085499) in [nabaztag2018/pynab](https://github.com/nabaztag2018/pynab) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectorflow/pull/1#issuecomment-1767627422) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Verba/pull/1#issuecomment-1767625301) in [tuhinmallick/Verba](https://github.com/tuhinmallick/Verba) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/DemoGPT/pull/1#issuecomment-1767620999) in [tuhinmallick/DemoGPT](https://github.com/tuhinmallick/DemoGPT) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/recommender/pull/1#issuecomment-1767610743) in [tuhinmallick/recommender](https://github.com/tuhinmallick/recommender) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/finsight/pull/1#issuecomment-1767610179) in [tuhinmallick/finsight](https://github.com/tuhinmallick/finsight) +6. 🗣 Commented on [#144](https://github.com/DeMarcoLab/autolamella/pull/144#issuecomment-1767582342) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/crab/pull/1#issuecomment-1767562698) in [tuhinmallick/crab](https://github.com/tuhinmallick/crab) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine/pull/1#issuecomment-1767559101) in [tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine) +9. 🗣 Commented on [#478](https://github.com/HEPCloud/decisionengine_modules/pull/478#issuecomment-1767432536) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +10. 🗣 Commented on [#201](https://github.com/CartoonFan/lutris/pull/201#issuecomment-1767371539) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 81144ca3672caf7de069c5102e14909c83a2d73d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 06:38:57 +0000 Subject: [PATCH 0371/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 10c2c6b8..bcf79fb7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectorflow/pull/1#issuecomment-1767627422) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Verba/pull/1#issuecomment-1767625301) in [tuhinmallick/Verba](https://github.com/tuhinmallick/Verba) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/DemoGPT/pull/1#issuecomment-1767620999) in [tuhinmallick/DemoGPT](https://github.com/tuhinmallick/DemoGPT) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/recommender/pull/1#issuecomment-1767610743) in [tuhinmallick/recommender](https://github.com/tuhinmallick/recommender) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/finsight/pull/1#issuecomment-1767610179) in [tuhinmallick/finsight](https://github.com/tuhinmallick/finsight) -6. 🗣 Commented on [#144](https://github.com/DeMarcoLab/autolamella/pull/144#issuecomment-1767582342) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/crab/pull/1#issuecomment-1767562698) in [tuhinmallick/crab](https://github.com/tuhinmallick/crab) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine/pull/1#issuecomment-1767559101) in [tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine) -9. 🗣 Commented on [#478](https://github.com/HEPCloud/decisionengine_modules/pull/478#issuecomment-1767432536) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -10. 🗣 Commented on [#201](https://github.com/CartoonFan/lutris/pull/201#issuecomment-1767371539) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#849](https://github.com/PyThaiNLP/pythainlp/pull/849#issuecomment-1767747828) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectorflow/pull/1#issuecomment-1767627422) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Verba/pull/1#issuecomment-1767625301) in [tuhinmallick/Verba](https://github.com/tuhinmallick/Verba) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/DemoGPT/pull/1#issuecomment-1767620999) in [tuhinmallick/DemoGPT](https://github.com/tuhinmallick/DemoGPT) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/recommender/pull/1#issuecomment-1767610743) in [tuhinmallick/recommender](https://github.com/tuhinmallick/recommender) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/finsight/pull/1#issuecomment-1767610179) in [tuhinmallick/finsight](https://github.com/tuhinmallick/finsight) +7. 🗣 Commented on [#144](https://github.com/DeMarcoLab/autolamella/pull/144#issuecomment-1767582342) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/crab/pull/1#issuecomment-1767562698) in [tuhinmallick/crab](https://github.com/tuhinmallick/crab) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine/pull/1#issuecomment-1767559101) in [tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine) +10. 🗣 Commented on [#478](https://github.com/HEPCloud/decisionengine_modules/pull/478#issuecomment-1767432536) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) From eefbe50e600d6f8850375bf391ffc469eed26ea5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 12:32:08 +0000 Subject: [PATCH 0372/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bcf79fb7..b07dba7e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#849](https://github.com/PyThaiNLP/pythainlp/pull/849#issuecomment-1767747828) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectorflow/pull/1#issuecomment-1767627422) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Verba/pull/1#issuecomment-1767625301) in [tuhinmallick/Verba](https://github.com/tuhinmallick/Verba) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/DemoGPT/pull/1#issuecomment-1767620999) in [tuhinmallick/DemoGPT](https://github.com/tuhinmallick/DemoGPT) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/recommender/pull/1#issuecomment-1767610743) in [tuhinmallick/recommender](https://github.com/tuhinmallick/recommender) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/finsight/pull/1#issuecomment-1767610179) in [tuhinmallick/finsight](https://github.com/tuhinmallick/finsight) -7. 🗣 Commented on [#144](https://github.com/DeMarcoLab/autolamella/pull/144#issuecomment-1767582342) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/crab/pull/1#issuecomment-1767562698) in [tuhinmallick/crab](https://github.com/tuhinmallick/crab) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine/pull/1#issuecomment-1767559101) in [tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine) -10. 🗣 Commented on [#478](https://github.com/HEPCloud/decisionengine_modules/pull/478#issuecomment-1767432536) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +1. 🗣 Commented on [#765](https://github.com/scilus/scilpy/pull/765#issuecomment-1768307499) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#849](https://github.com/PyThaiNLP/pythainlp/pull/849#issuecomment-1767747828) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectorflow/pull/1#issuecomment-1767627422) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Verba/pull/1#issuecomment-1767625301) in [tuhinmallick/Verba](https://github.com/tuhinmallick/Verba) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/DemoGPT/pull/1#issuecomment-1767620999) in [tuhinmallick/DemoGPT](https://github.com/tuhinmallick/DemoGPT) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/recommender/pull/1#issuecomment-1767610743) in [tuhinmallick/recommender](https://github.com/tuhinmallick/recommender) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/finsight/pull/1#issuecomment-1767610179) in [tuhinmallick/finsight](https://github.com/tuhinmallick/finsight) +8. 🗣 Commented on [#144](https://github.com/DeMarcoLab/autolamella/pull/144#issuecomment-1767582342) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/crab/pull/1#issuecomment-1767562698) in [tuhinmallick/crab](https://github.com/tuhinmallick/crab) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine/pull/1#issuecomment-1767559101) in [tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine) From 93b314c9d42e2d805332325fd439c8501f5f9551 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 13:20:00 +0000 Subject: [PATCH 0373/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b07dba7e..b89f1a16 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#765](https://github.com/scilus/scilpy/pull/765#issuecomment-1768307499) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#849](https://github.com/PyThaiNLP/pythainlp/pull/849#issuecomment-1767747828) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectorflow/pull/1#issuecomment-1767627422) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Verba/pull/1#issuecomment-1767625301) in [tuhinmallick/Verba](https://github.com/tuhinmallick/Verba) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/DemoGPT/pull/1#issuecomment-1767620999) in [tuhinmallick/DemoGPT](https://github.com/tuhinmallick/DemoGPT) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/recommender/pull/1#issuecomment-1767610743) in [tuhinmallick/recommender](https://github.com/tuhinmallick/recommender) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/finsight/pull/1#issuecomment-1767610179) in [tuhinmallick/finsight](https://github.com/tuhinmallick/finsight) -8. 🗣 Commented on [#144](https://github.com/DeMarcoLab/autolamella/pull/144#issuecomment-1767582342) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/crab/pull/1#issuecomment-1767562698) in [tuhinmallick/crab](https://github.com/tuhinmallick/crab) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine/pull/1#issuecomment-1767559101) in [tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine](https://github.com/tuhinmallick/kaggle_outbrain_click_prediction_google_cloud_ml_engine) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Document_Scanner_Python/pull/1#issuecomment-1768370268) in [tuhinmallick/Document_Scanner_Python](https://github.com/tuhinmallick/Document_Scanner_Python) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit_Bank_Loan_Prediction/pull/1#issuecomment-1768364164) in [tuhinmallick/Streamlit_Bank_Loan_Prediction](https://github.com/tuhinmallick/Streamlit_Bank_Loan_Prediction) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/instagrapi/pull/1#issuecomment-1768358758) in [tuhinmallick/instagrapi](https://github.com/tuhinmallick/instagrapi) +4. 🗣 Commented on [#765](https://github.com/scilus/scilpy/pull/765#issuecomment-1768307499) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#849](https://github.com/PyThaiNLP/pythainlp/pull/849#issuecomment-1767747828) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectorflow/pull/1#issuecomment-1767627422) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Verba/pull/1#issuecomment-1767625301) in [tuhinmallick/Verba](https://github.com/tuhinmallick/Verba) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/DemoGPT/pull/1#issuecomment-1767620999) in [tuhinmallick/DemoGPT](https://github.com/tuhinmallick/DemoGPT) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/recommender/pull/1#issuecomment-1767610743) in [tuhinmallick/recommender](https://github.com/tuhinmallick/recommender) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/finsight/pull/1#issuecomment-1767610179) in [tuhinmallick/finsight](https://github.com/tuhinmallick/finsight) From be0a82b3ca0d1b872f7927a4d0ca93fc0fcd8fb1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 14:15:05 +0000 Subject: [PATCH 0374/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b89f1a16..1b270c5e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Document_Scanner_Python/pull/1#issuecomment-1768370268) in [tuhinmallick/Document_Scanner_Python](https://github.com/tuhinmallick/Document_Scanner_Python) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit_Bank_Loan_Prediction/pull/1#issuecomment-1768364164) in [tuhinmallick/Streamlit_Bank_Loan_Prediction](https://github.com/tuhinmallick/Streamlit_Bank_Loan_Prediction) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/instagrapi/pull/1#issuecomment-1768358758) in [tuhinmallick/instagrapi](https://github.com/tuhinmallick/instagrapi) -4. 🗣 Commented on [#765](https://github.com/scilus/scilpy/pull/765#issuecomment-1768307499) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#849](https://github.com/PyThaiNLP/pythainlp/pull/849#issuecomment-1767747828) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectorflow/pull/1#issuecomment-1767627422) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Verba/pull/1#issuecomment-1767625301) in [tuhinmallick/Verba](https://github.com/tuhinmallick/Verba) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/DemoGPT/pull/1#issuecomment-1767620999) in [tuhinmallick/DemoGPT](https://github.com/tuhinmallick/DemoGPT) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/recommender/pull/1#issuecomment-1767610743) in [tuhinmallick/recommender](https://github.com/tuhinmallick/recommender) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/finsight/pull/1#issuecomment-1767610179) in [tuhinmallick/finsight](https://github.com/tuhinmallick/finsight) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Similar-Images-Search/pull/1#issuecomment-1768530528) in [tuhinmallick/Similar-Images-Search](https://github.com/tuhinmallick/Similar-Images-Search) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit/pull/1#issuecomment-1768523653) in [tuhinmallick/Youtube-Whisper-Streamlit](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/snscrape/pull/1#issuecomment-1768509215) in [tuhinmallick/snscrape](https://github.com/tuhinmallick/snscrape) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaGPT/pull/1#issuecomment-1768508806) in [tuhinmallick/MetaGPT](https://github.com/tuhinmallick/MetaGPT) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt-engineer/pull/1#issuecomment-1768505741) in [tuhinmallick/gpt-engineer](https://github.com/tuhinmallick/gpt-engineer) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/DevOpsGPT/pull/1#issuecomment-1768505033) in [tuhinmallick/DevOpsGPT](https://github.com/tuhinmallick/DevOpsGPT) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube_script_generator/pull/1#issuecomment-1768502648) in [tuhinmallick/youtube_script_generator](https://github.com/tuhinmallick/youtube_script_generator) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/influencer-gpt/pull/1#issuecomment-1768498863) in [tuhinmallick/influencer-gpt](https://github.com/tuhinmallick/influencer-gpt) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Document_Scanner_Python/pull/1#issuecomment-1768370268) in [tuhinmallick/Document_Scanner_Python](https://github.com/tuhinmallick/Document_Scanner_Python) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit_Bank_Loan_Prediction/pull/1#issuecomment-1768364164) in [tuhinmallick/Streamlit_Bank_Loan_Prediction](https://github.com/tuhinmallick/Streamlit_Bank_Loan_Prediction) From 1854b4292823b18b2f718401067a5aadbf0bba84 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 17:14:05 +0000 Subject: [PATCH 0375/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1b270c5e..a9e02737 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Similar-Images-Search/pull/1#issuecomment-1768530528) in [tuhinmallick/Similar-Images-Search](https://github.com/tuhinmallick/Similar-Images-Search) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit/pull/1#issuecomment-1768523653) in [tuhinmallick/Youtube-Whisper-Streamlit](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/snscrape/pull/1#issuecomment-1768509215) in [tuhinmallick/snscrape](https://github.com/tuhinmallick/snscrape) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaGPT/pull/1#issuecomment-1768508806) in [tuhinmallick/MetaGPT](https://github.com/tuhinmallick/MetaGPT) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt-engineer/pull/1#issuecomment-1768505741) in [tuhinmallick/gpt-engineer](https://github.com/tuhinmallick/gpt-engineer) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/DevOpsGPT/pull/1#issuecomment-1768505033) in [tuhinmallick/DevOpsGPT](https://github.com/tuhinmallick/DevOpsGPT) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube_script_generator/pull/1#issuecomment-1768502648) in [tuhinmallick/youtube_script_generator](https://github.com/tuhinmallick/youtube_script_generator) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/influencer-gpt/pull/1#issuecomment-1768498863) in [tuhinmallick/influencer-gpt](https://github.com/tuhinmallick/influencer-gpt) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Document_Scanner_Python/pull/1#issuecomment-1768370268) in [tuhinmallick/Document_Scanner_Python](https://github.com/tuhinmallick/Document_Scanner_Python) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit_Bank_Loan_Prediction/pull/1#issuecomment-1768364164) in [tuhinmallick/Streamlit_Bank_Loan_Prediction](https://github.com/tuhinmallick/Streamlit_Bank_Loan_Prediction) +1. 🗣 Commented on [#106](https://github.com/politeauthority/cver/pull/106#issuecomment-1768828634) in [politeauthority/cver](https://github.com/politeauthority/cver) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Similar-Images-Search/pull/1#issuecomment-1768530528) in [tuhinmallick/Similar-Images-Search](https://github.com/tuhinmallick/Similar-Images-Search) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit/pull/1#issuecomment-1768523653) in [tuhinmallick/Youtube-Whisper-Streamlit](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/snscrape/pull/1#issuecomment-1768509215) in [tuhinmallick/snscrape](https://github.com/tuhinmallick/snscrape) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaGPT/pull/1#issuecomment-1768508806) in [tuhinmallick/MetaGPT](https://github.com/tuhinmallick/MetaGPT) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt-engineer/pull/1#issuecomment-1768505741) in [tuhinmallick/gpt-engineer](https://github.com/tuhinmallick/gpt-engineer) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/DevOpsGPT/pull/1#issuecomment-1768505033) in [tuhinmallick/DevOpsGPT](https://github.com/tuhinmallick/DevOpsGPT) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube_script_generator/pull/1#issuecomment-1768502648) in [tuhinmallick/youtube_script_generator](https://github.com/tuhinmallick/youtube_script_generator) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/influencer-gpt/pull/1#issuecomment-1768498863) in [tuhinmallick/influencer-gpt](https://github.com/tuhinmallick/influencer-gpt) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Document_Scanner_Python/pull/1#issuecomment-1768370268) in [tuhinmallick/Document_Scanner_Python](https://github.com/tuhinmallick/Document_Scanner_Python) From e84c1b9a8da4386a9a4e06858f976a97f4883293 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 19:12:59 +0000 Subject: [PATCH 0376/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a9e02737..18fb264d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#106](https://github.com/politeauthority/cver/pull/106#issuecomment-1768828634) in [politeauthority/cver](https://github.com/politeauthority/cver) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Similar-Images-Search/pull/1#issuecomment-1768530528) in [tuhinmallick/Similar-Images-Search](https://github.com/tuhinmallick/Similar-Images-Search) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit/pull/1#issuecomment-1768523653) in [tuhinmallick/Youtube-Whisper-Streamlit](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/snscrape/pull/1#issuecomment-1768509215) in [tuhinmallick/snscrape](https://github.com/tuhinmallick/snscrape) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaGPT/pull/1#issuecomment-1768508806) in [tuhinmallick/MetaGPT](https://github.com/tuhinmallick/MetaGPT) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt-engineer/pull/1#issuecomment-1768505741) in [tuhinmallick/gpt-engineer](https://github.com/tuhinmallick/gpt-engineer) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/DevOpsGPT/pull/1#issuecomment-1768505033) in [tuhinmallick/DevOpsGPT](https://github.com/tuhinmallick/DevOpsGPT) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube_script_generator/pull/1#issuecomment-1768502648) in [tuhinmallick/youtube_script_generator](https://github.com/tuhinmallick/youtube_script_generator) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/influencer-gpt/pull/1#issuecomment-1768498863) in [tuhinmallick/influencer-gpt](https://github.com/tuhinmallick/influencer-gpt) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Document_Scanner_Python/pull/1#issuecomment-1768370268) in [tuhinmallick/Document_Scanner_Python](https://github.com/tuhinmallick/Document_Scanner_Python) +1. 🗣 Commented on [#567](https://github.com/HEXRD/hexrd/pull/567#issuecomment-1769075091) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#106](https://github.com/politeauthority/cver/pull/106#issuecomment-1768828634) in [politeauthority/cver](https://github.com/politeauthority/cver) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Similar-Images-Search/pull/1#issuecomment-1768530528) in [tuhinmallick/Similar-Images-Search](https://github.com/tuhinmallick/Similar-Images-Search) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit/pull/1#issuecomment-1768523653) in [tuhinmallick/Youtube-Whisper-Streamlit](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/snscrape/pull/1#issuecomment-1768509215) in [tuhinmallick/snscrape](https://github.com/tuhinmallick/snscrape) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaGPT/pull/1#issuecomment-1768508806) in [tuhinmallick/MetaGPT](https://github.com/tuhinmallick/MetaGPT) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt-engineer/pull/1#issuecomment-1768505741) in [tuhinmallick/gpt-engineer](https://github.com/tuhinmallick/gpt-engineer) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/DevOpsGPT/pull/1#issuecomment-1768505033) in [tuhinmallick/DevOpsGPT](https://github.com/tuhinmallick/DevOpsGPT) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube_script_generator/pull/1#issuecomment-1768502648) in [tuhinmallick/youtube_script_generator](https://github.com/tuhinmallick/youtube_script_generator) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/influencer-gpt/pull/1#issuecomment-1768498863) in [tuhinmallick/influencer-gpt](https://github.com/tuhinmallick/influencer-gpt) From 3e3b37a30e41e070804b426d90a4672ad66661e6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 20:37:25 +0000 Subject: [PATCH 0377/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 18fb264d..cbea9853 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#567](https://github.com/HEXRD/hexrd/pull/567#issuecomment-1769075091) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#106](https://github.com/politeauthority/cver/pull/106#issuecomment-1768828634) in [politeauthority/cver](https://github.com/politeauthority/cver) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Similar-Images-Search/pull/1#issuecomment-1768530528) in [tuhinmallick/Similar-Images-Search](https://github.com/tuhinmallick/Similar-Images-Search) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit/pull/1#issuecomment-1768523653) in [tuhinmallick/Youtube-Whisper-Streamlit](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/snscrape/pull/1#issuecomment-1768509215) in [tuhinmallick/snscrape](https://github.com/tuhinmallick/snscrape) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaGPT/pull/1#issuecomment-1768508806) in [tuhinmallick/MetaGPT](https://github.com/tuhinmallick/MetaGPT) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt-engineer/pull/1#issuecomment-1768505741) in [tuhinmallick/gpt-engineer](https://github.com/tuhinmallick/gpt-engineer) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/DevOpsGPT/pull/1#issuecomment-1768505033) in [tuhinmallick/DevOpsGPT](https://github.com/tuhinmallick/DevOpsGPT) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube_script_generator/pull/1#issuecomment-1768502648) in [tuhinmallick/youtube_script_generator](https://github.com/tuhinmallick/youtube_script_generator) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/influencer-gpt/pull/1#issuecomment-1768498863) in [tuhinmallick/influencer-gpt](https://github.com/tuhinmallick/influencer-gpt) +1. 🗣 Commented on [#1](https://github.com/cirKITers/evoq/pull/1#issuecomment-1769225616) in [cirKITers/evoq](https://github.com/cirKITers/evoq) +2. 🗣 Commented on [#567](https://github.com/HEXRD/hexrd/pull/567#issuecomment-1769075091) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#106](https://github.com/politeauthority/cver/pull/106#issuecomment-1768828634) in [politeauthority/cver](https://github.com/politeauthority/cver) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Similar-Images-Search/pull/1#issuecomment-1768530528) in [tuhinmallick/Similar-Images-Search](https://github.com/tuhinmallick/Similar-Images-Search) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit/pull/1#issuecomment-1768523653) in [tuhinmallick/Youtube-Whisper-Streamlit](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/snscrape/pull/1#issuecomment-1768509215) in [tuhinmallick/snscrape](https://github.com/tuhinmallick/snscrape) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaGPT/pull/1#issuecomment-1768508806) in [tuhinmallick/MetaGPT](https://github.com/tuhinmallick/MetaGPT) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt-engineer/pull/1#issuecomment-1768505741) in [tuhinmallick/gpt-engineer](https://github.com/tuhinmallick/gpt-engineer) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/DevOpsGPT/pull/1#issuecomment-1768505033) in [tuhinmallick/DevOpsGPT](https://github.com/tuhinmallick/DevOpsGPT) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube_script_generator/pull/1#issuecomment-1768502648) in [tuhinmallick/youtube_script_generator](https://github.com/tuhinmallick/youtube_script_generator) From cc6c79fa9327df1889c73641a35e58beed1d5b4b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 22:14:46 +0000 Subject: [PATCH 0378/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cbea9853..593e76b0 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/cirKITers/evoq/pull/1#issuecomment-1769225616) in [cirKITers/evoq](https://github.com/cirKITers/evoq) -2. 🗣 Commented on [#567](https://github.com/HEXRD/hexrd/pull/567#issuecomment-1769075091) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#106](https://github.com/politeauthority/cver/pull/106#issuecomment-1768828634) in [politeauthority/cver](https://github.com/politeauthority/cver) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Similar-Images-Search/pull/1#issuecomment-1768530528) in [tuhinmallick/Similar-Images-Search](https://github.com/tuhinmallick/Similar-Images-Search) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit/pull/1#issuecomment-1768523653) in [tuhinmallick/Youtube-Whisper-Streamlit](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/snscrape/pull/1#issuecomment-1768509215) in [tuhinmallick/snscrape](https://github.com/tuhinmallick/snscrape) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaGPT/pull/1#issuecomment-1768508806) in [tuhinmallick/MetaGPT](https://github.com/tuhinmallick/MetaGPT) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt-engineer/pull/1#issuecomment-1768505741) in [tuhinmallick/gpt-engineer](https://github.com/tuhinmallick/gpt-engineer) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/DevOpsGPT/pull/1#issuecomment-1768505033) in [tuhinmallick/DevOpsGPT](https://github.com/tuhinmallick/DevOpsGPT) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube_script_generator/pull/1#issuecomment-1768502648) in [tuhinmallick/youtube_script_generator](https://github.com/tuhinmallick/youtube_script_generator) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit/pull/1#issuecomment-1769475386) in [tuhinmallick/speech-2-data-expert.ai-streamlit](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-Imagededup/pull/1#issuecomment-1769473826) in [tuhinmallick/Streamlit-Imagededup](https://github.com/tuhinmallick/Streamlit-Imagededup) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Deep-Question-Answering-System/pull/1#issuecomment-1769472074) in [tuhinmallick/Deep-Question-Answering-System](https://github.com/tuhinmallick/Deep-Question-Answering-System) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/CLIP_prefix_caption/pull/1#issuecomment-1769457368) in [tuhinmallick/CLIP_prefix_caption](https://github.com/tuhinmallick/CLIP_prefix_caption) +5. 🗣 Commented on [#107](https://github.com/politeauthority/cver/pull/107#issuecomment-1769402239) in [politeauthority/cver](https://github.com/politeauthority/cver) +6. 🗣 Commented on [#1](https://github.com/cirKITers/evoq/pull/1#issuecomment-1769225616) in [cirKITers/evoq](https://github.com/cirKITers/evoq) +7. 🗣 Commented on [#567](https://github.com/HEXRD/hexrd/pull/567#issuecomment-1769075091) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +8. 🗣 Commented on [#106](https://github.com/politeauthority/cver/pull/106#issuecomment-1768828634) in [politeauthority/cver](https://github.com/politeauthority/cver) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Similar-Images-Search/pull/1#issuecomment-1768530528) in [tuhinmallick/Similar-Images-Search](https://github.com/tuhinmallick/Similar-Images-Search) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit/pull/1#issuecomment-1768523653) in [tuhinmallick/Youtube-Whisper-Streamlit](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit) From 7627b6d451e3872354684227bc5d622e7dd26705 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 22:37:00 +0000 Subject: [PATCH 0379/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 593e76b0..30bc5882 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit/pull/1#issuecomment-1769475386) in [tuhinmallick/speech-2-data-expert.ai-streamlit](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-Imagededup/pull/1#issuecomment-1769473826) in [tuhinmallick/Streamlit-Imagededup](https://github.com/tuhinmallick/Streamlit-Imagededup) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Deep-Question-Answering-System/pull/1#issuecomment-1769472074) in [tuhinmallick/Deep-Question-Answering-System](https://github.com/tuhinmallick/Deep-Question-Answering-System) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/CLIP_prefix_caption/pull/1#issuecomment-1769457368) in [tuhinmallick/CLIP_prefix_caption](https://github.com/tuhinmallick/CLIP_prefix_caption) -5. 🗣 Commented on [#107](https://github.com/politeauthority/cver/pull/107#issuecomment-1769402239) in [politeauthority/cver](https://github.com/politeauthority/cver) -6. 🗣 Commented on [#1](https://github.com/cirKITers/evoq/pull/1#issuecomment-1769225616) in [cirKITers/evoq](https://github.com/cirKITers/evoq) -7. 🗣 Commented on [#567](https://github.com/HEXRD/hexrd/pull/567#issuecomment-1769075091) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -8. 🗣 Commented on [#106](https://github.com/politeauthority/cver/pull/106#issuecomment-1768828634) in [politeauthority/cver](https://github.com/politeauthority/cver) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Similar-Images-Search/pull/1#issuecomment-1768530528) in [tuhinmallick/Similar-Images-Search](https://github.com/tuhinmallick/Similar-Images-Search) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit/pull/1#issuecomment-1768523653) in [tuhinmallick/Youtube-Whisper-Streamlit](https://github.com/tuhinmallick/Youtube-Whisper-Streamlit) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Minimal-URL-Shortener/pull/1#issuecomment-1769501782) in [tuhinmallick/Minimal-URL-Shortener](https://github.com/tuhinmallick/Minimal-URL-Shortener) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Group-E-mail-Automation/pull/1#issuecomment-1769501226) in [tuhinmallick/Group-E-mail-Automation](https://github.com/tuhinmallick/Group-E-mail-Automation) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN/pull/1#issuecomment-1769497233) in [tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder/pull/1#issuecomment-1769497214) in [tuhinmallick/Streamlit-based-Duplicate-Images-Finder](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-based-QA-system/pull/1#issuecomment-1769496327) in [tuhinmallick/Haystack-based-QA-system](https://github.com/tuhinmallick/Haystack-based-QA-system) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit/pull/1#issuecomment-1769475386) in [tuhinmallick/speech-2-data-expert.ai-streamlit](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-Imagededup/pull/1#issuecomment-1769473826) in [tuhinmallick/Streamlit-Imagededup](https://github.com/tuhinmallick/Streamlit-Imagededup) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Deep-Question-Answering-System/pull/1#issuecomment-1769472074) in [tuhinmallick/Deep-Question-Answering-System](https://github.com/tuhinmallick/Deep-Question-Answering-System) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/CLIP_prefix_caption/pull/1#issuecomment-1769457368) in [tuhinmallick/CLIP_prefix_caption](https://github.com/tuhinmallick/CLIP_prefix_caption) +10. 🗣 Commented on [#107](https://github.com/politeauthority/cver/pull/107#issuecomment-1769402239) in [politeauthority/cver](https://github.com/politeauthority/cver) From cc35cbc4c3b4a6f9616e89f50b618f533d5a2b57 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Oct 2023 23:15:14 +0000 Subject: [PATCH 0380/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 30bc5882..f51a0f33 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Minimal-URL-Shortener/pull/1#issuecomment-1769501782) in [tuhinmallick/Minimal-URL-Shortener](https://github.com/tuhinmallick/Minimal-URL-Shortener) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Group-E-mail-Automation/pull/1#issuecomment-1769501226) in [tuhinmallick/Group-E-mail-Automation](https://github.com/tuhinmallick/Group-E-mail-Automation) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN/pull/1#issuecomment-1769497233) in [tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder/pull/1#issuecomment-1769497214) in [tuhinmallick/Streamlit-based-Duplicate-Images-Finder](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-based-QA-system/pull/1#issuecomment-1769496327) in [tuhinmallick/Haystack-based-QA-system](https://github.com/tuhinmallick/Haystack-based-QA-system) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit/pull/1#issuecomment-1769475386) in [tuhinmallick/speech-2-data-expert.ai-streamlit](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-Imagededup/pull/1#issuecomment-1769473826) in [tuhinmallick/Streamlit-Imagededup](https://github.com/tuhinmallick/Streamlit-Imagededup) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Deep-Question-Answering-System/pull/1#issuecomment-1769472074) in [tuhinmallick/Deep-Question-Answering-System](https://github.com/tuhinmallick/Deep-Question-Answering-System) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/CLIP_prefix_caption/pull/1#issuecomment-1769457368) in [tuhinmallick/CLIP_prefix_caption](https://github.com/tuhinmallick/CLIP_prefix_caption) -10. 🗣 Commented on [#107](https://github.com/politeauthority/cver/pull/107#issuecomment-1769402239) in [politeauthority/cver](https://github.com/politeauthority/cver) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/demo-face-gan/pull/1#issuecomment-1769517092) in [tuhinmallick/demo-face-gan](https://github.com/tuhinmallick/demo-face-gan) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Minimal-URL-Shortener/pull/1#issuecomment-1769501782) in [tuhinmallick/Minimal-URL-Shortener](https://github.com/tuhinmallick/Minimal-URL-Shortener) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Group-E-mail-Automation/pull/1#issuecomment-1769501226) in [tuhinmallick/Group-E-mail-Automation](https://github.com/tuhinmallick/Group-E-mail-Automation) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN/pull/1#issuecomment-1769497233) in [tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder/pull/1#issuecomment-1769497214) in [tuhinmallick/Streamlit-based-Duplicate-Images-Finder](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-based-QA-system/pull/1#issuecomment-1769496327) in [tuhinmallick/Haystack-based-QA-system](https://github.com/tuhinmallick/Haystack-based-QA-system) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit/pull/1#issuecomment-1769475386) in [tuhinmallick/speech-2-data-expert.ai-streamlit](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-Imagededup/pull/1#issuecomment-1769473826) in [tuhinmallick/Streamlit-Imagededup](https://github.com/tuhinmallick/Streamlit-Imagededup) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Deep-Question-Answering-System/pull/1#issuecomment-1769472074) in [tuhinmallick/Deep-Question-Answering-System](https://github.com/tuhinmallick/Deep-Question-Answering-System) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/CLIP_prefix_caption/pull/1#issuecomment-1769457368) in [tuhinmallick/CLIP_prefix_caption](https://github.com/tuhinmallick/CLIP_prefix_caption) From 5ca1d7a4a66b06a4c3c74bfb883cf94cfd97f172 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 01:09:56 +0000 Subject: [PATCH 0381/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f51a0f33..b0414d47 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/demo-face-gan/pull/1#issuecomment-1769517092) in [tuhinmallick/demo-face-gan](https://github.com/tuhinmallick/demo-face-gan) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Minimal-URL-Shortener/pull/1#issuecomment-1769501782) in [tuhinmallick/Minimal-URL-Shortener](https://github.com/tuhinmallick/Minimal-URL-Shortener) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Group-E-mail-Automation/pull/1#issuecomment-1769501226) in [tuhinmallick/Group-E-mail-Automation](https://github.com/tuhinmallick/Group-E-mail-Automation) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN/pull/1#issuecomment-1769497233) in [tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder/pull/1#issuecomment-1769497214) in [tuhinmallick/Streamlit-based-Duplicate-Images-Finder](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-based-QA-system/pull/1#issuecomment-1769496327) in [tuhinmallick/Haystack-based-QA-system](https://github.com/tuhinmallick/Haystack-based-QA-system) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit/pull/1#issuecomment-1769475386) in [tuhinmallick/speech-2-data-expert.ai-streamlit](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-Imagededup/pull/1#issuecomment-1769473826) in [tuhinmallick/Streamlit-Imagededup](https://github.com/tuhinmallick/Streamlit-Imagededup) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Deep-Question-Answering-System/pull/1#issuecomment-1769472074) in [tuhinmallick/Deep-Question-Answering-System](https://github.com/tuhinmallick/Deep-Question-Answering-System) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/CLIP_prefix_caption/pull/1#issuecomment-1769457368) in [tuhinmallick/CLIP_prefix_caption](https://github.com/tuhinmallick/CLIP_prefix_caption) +1. 🗣 Commented on [#2855](https://github.com/astropy/astroquery/pull/2855#issuecomment-1769654025) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/demo-face-gan/pull/1#issuecomment-1769517092) in [tuhinmallick/demo-face-gan](https://github.com/tuhinmallick/demo-face-gan) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Minimal-URL-Shortener/pull/1#issuecomment-1769501782) in [tuhinmallick/Minimal-URL-Shortener](https://github.com/tuhinmallick/Minimal-URL-Shortener) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Group-E-mail-Automation/pull/1#issuecomment-1769501226) in [tuhinmallick/Group-E-mail-Automation](https://github.com/tuhinmallick/Group-E-mail-Automation) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN/pull/1#issuecomment-1769497233) in [tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder/pull/1#issuecomment-1769497214) in [tuhinmallick/Streamlit-based-Duplicate-Images-Finder](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-based-QA-system/pull/1#issuecomment-1769496327) in [tuhinmallick/Haystack-based-QA-system](https://github.com/tuhinmallick/Haystack-based-QA-system) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit/pull/1#issuecomment-1769475386) in [tuhinmallick/speech-2-data-expert.ai-streamlit](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-Imagededup/pull/1#issuecomment-1769473826) in [tuhinmallick/Streamlit-Imagededup](https://github.com/tuhinmallick/Streamlit-Imagededup) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Deep-Question-Answering-System/pull/1#issuecomment-1769472074) in [tuhinmallick/Deep-Question-Answering-System](https://github.com/tuhinmallick/Deep-Question-Answering-System) From cd6ccc69f9ff42da15b66901e72d2849bd65acaa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 08:20:31 +0000 Subject: [PATCH 0382/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b0414d47..ef98b81e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2855](https://github.com/astropy/astroquery/pull/2855#issuecomment-1769654025) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/demo-face-gan/pull/1#issuecomment-1769517092) in [tuhinmallick/demo-face-gan](https://github.com/tuhinmallick/demo-face-gan) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Minimal-URL-Shortener/pull/1#issuecomment-1769501782) in [tuhinmallick/Minimal-URL-Shortener](https://github.com/tuhinmallick/Minimal-URL-Shortener) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Group-E-mail-Automation/pull/1#issuecomment-1769501226) in [tuhinmallick/Group-E-mail-Automation](https://github.com/tuhinmallick/Group-E-mail-Automation) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN/pull/1#issuecomment-1769497233) in [tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder/pull/1#issuecomment-1769497214) in [tuhinmallick/Streamlit-based-Duplicate-Images-Finder](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-based-QA-system/pull/1#issuecomment-1769496327) in [tuhinmallick/Haystack-based-QA-system](https://github.com/tuhinmallick/Haystack-based-QA-system) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit/pull/1#issuecomment-1769475386) in [tuhinmallick/speech-2-data-expert.ai-streamlit](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-Imagededup/pull/1#issuecomment-1769473826) in [tuhinmallick/Streamlit-Imagededup](https://github.com/tuhinmallick/Streamlit-Imagededup) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Deep-Question-Answering-System/pull/1#issuecomment-1769472074) in [tuhinmallick/Deep-Question-Answering-System](https://github.com/tuhinmallick/Deep-Question-Answering-System) +1. 🗣 Commented on [#2958](https://github.com/reframe-hpc/reframe/pull/2958#issuecomment-1770236750) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +2. 🗣 Commented on [#2855](https://github.com/astropy/astroquery/pull/2855#issuecomment-1769654025) in [astropy/astroquery](https://github.com/astropy/astroquery) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/demo-face-gan/pull/1#issuecomment-1769517092) in [tuhinmallick/demo-face-gan](https://github.com/tuhinmallick/demo-face-gan) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Minimal-URL-Shortener/pull/1#issuecomment-1769501782) in [tuhinmallick/Minimal-URL-Shortener](https://github.com/tuhinmallick/Minimal-URL-Shortener) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Group-E-mail-Automation/pull/1#issuecomment-1769501226) in [tuhinmallick/Group-E-mail-Automation](https://github.com/tuhinmallick/Group-E-mail-Automation) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN/pull/1#issuecomment-1769497233) in [tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder/pull/1#issuecomment-1769497214) in [tuhinmallick/Streamlit-based-Duplicate-Images-Finder](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-based-QA-system/pull/1#issuecomment-1769496327) in [tuhinmallick/Haystack-based-QA-system](https://github.com/tuhinmallick/Haystack-based-QA-system) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit/pull/1#issuecomment-1769475386) in [tuhinmallick/speech-2-data-expert.ai-streamlit](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-Imagededup/pull/1#issuecomment-1769473826) in [tuhinmallick/Streamlit-Imagededup](https://github.com/tuhinmallick/Streamlit-Imagededup) From 2c2647a828b38ceaa4e6245bcc529ba7389c1a93 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 09:37:35 +0000 Subject: [PATCH 0383/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ef98b81e..1656e0ef 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2958](https://github.com/reframe-hpc/reframe/pull/2958#issuecomment-1770236750) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -2. 🗣 Commented on [#2855](https://github.com/astropy/astroquery/pull/2855#issuecomment-1769654025) in [astropy/astroquery](https://github.com/astropy/astroquery) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/demo-face-gan/pull/1#issuecomment-1769517092) in [tuhinmallick/demo-face-gan](https://github.com/tuhinmallick/demo-face-gan) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Minimal-URL-Shortener/pull/1#issuecomment-1769501782) in [tuhinmallick/Minimal-URL-Shortener](https://github.com/tuhinmallick/Minimal-URL-Shortener) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Group-E-mail-Automation/pull/1#issuecomment-1769501226) in [tuhinmallick/Group-E-mail-Automation](https://github.com/tuhinmallick/Group-E-mail-Automation) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN/pull/1#issuecomment-1769497233) in [tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder/pull/1#issuecomment-1769497214) in [tuhinmallick/Streamlit-based-Duplicate-Images-Finder](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-based-QA-system/pull/1#issuecomment-1769496327) in [tuhinmallick/Haystack-based-QA-system](https://github.com/tuhinmallick/Haystack-based-QA-system) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit/pull/1#issuecomment-1769475386) in [tuhinmallick/speech-2-data-expert.ai-streamlit](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-Imagededup/pull/1#issuecomment-1769473826) in [tuhinmallick/Streamlit-Imagededup](https://github.com/tuhinmallick/Streamlit-Imagededup) +1. 🗣 Commented on [#1185](https://github.com/aimclub/FEDOT/pull/1185#issuecomment-1770399650) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#2958](https://github.com/reframe-hpc/reframe/pull/2958#issuecomment-1770236750) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +3. 🗣 Commented on [#2855](https://github.com/astropy/astroquery/pull/2855#issuecomment-1769654025) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/demo-face-gan/pull/1#issuecomment-1769517092) in [tuhinmallick/demo-face-gan](https://github.com/tuhinmallick/demo-face-gan) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Minimal-URL-Shortener/pull/1#issuecomment-1769501782) in [tuhinmallick/Minimal-URL-Shortener](https://github.com/tuhinmallick/Minimal-URL-Shortener) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Group-E-mail-Automation/pull/1#issuecomment-1769501226) in [tuhinmallick/Group-E-mail-Automation](https://github.com/tuhinmallick/Group-E-mail-Automation) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN/pull/1#issuecomment-1769497233) in [tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder/pull/1#issuecomment-1769497214) in [tuhinmallick/Streamlit-based-Duplicate-Images-Finder](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-based-QA-system/pull/1#issuecomment-1769496327) in [tuhinmallick/Haystack-based-QA-system](https://github.com/tuhinmallick/Haystack-based-QA-system) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit/pull/1#issuecomment-1769475386) in [tuhinmallick/speech-2-data-expert.ai-streamlit](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit) From a2d0f3ab081277fec5e3e594aa21445dc1281ca8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 10:16:52 +0000 Subject: [PATCH 0384/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1656e0ef..a2afda45 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1185](https://github.com/aimclub/FEDOT/pull/1185#issuecomment-1770399650) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#2958](https://github.com/reframe-hpc/reframe/pull/2958#issuecomment-1770236750) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -3. 🗣 Commented on [#2855](https://github.com/astropy/astroquery/pull/2855#issuecomment-1769654025) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/demo-face-gan/pull/1#issuecomment-1769517092) in [tuhinmallick/demo-face-gan](https://github.com/tuhinmallick/demo-face-gan) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Minimal-URL-Shortener/pull/1#issuecomment-1769501782) in [tuhinmallick/Minimal-URL-Shortener](https://github.com/tuhinmallick/Minimal-URL-Shortener) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Group-E-mail-Automation/pull/1#issuecomment-1769501226) in [tuhinmallick/Group-E-mail-Automation](https://github.com/tuhinmallick/Group-E-mail-Automation) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN/pull/1#issuecomment-1769497233) in [tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder/pull/1#issuecomment-1769497214) in [tuhinmallick/Streamlit-based-Duplicate-Images-Finder](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Haystack-based-QA-system/pull/1#issuecomment-1769496327) in [tuhinmallick/Haystack-based-QA-system](https://github.com/tuhinmallick/Haystack-based-QA-system) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit/pull/1#issuecomment-1769475386) in [tuhinmallick/speech-2-data-expert.ai-streamlit](https://github.com/tuhinmallick/speech-2-data-expert.ai-streamlit) +1. 🗣 Commented on [#223](https://github.com/my8100/scrapydweb/pull/223#issuecomment-1770497621) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +2. 🗣 Commented on [#1183](https://github.com/aimclub/FEDOT/pull/1183#issuecomment-1770442828) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#1185](https://github.com/aimclub/FEDOT/pull/1185#issuecomment-1770399650) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#2958](https://github.com/reframe-hpc/reframe/pull/2958#issuecomment-1770236750) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +5. 🗣 Commented on [#2855](https://github.com/astropy/astroquery/pull/2855#issuecomment-1769654025) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/demo-face-gan/pull/1#issuecomment-1769517092) in [tuhinmallick/demo-face-gan](https://github.com/tuhinmallick/demo-face-gan) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Minimal-URL-Shortener/pull/1#issuecomment-1769501782) in [tuhinmallick/Minimal-URL-Shortener](https://github.com/tuhinmallick/Minimal-URL-Shortener) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Group-E-mail-Automation/pull/1#issuecomment-1769501226) in [tuhinmallick/Group-E-mail-Automation](https://github.com/tuhinmallick/Group-E-mail-Automation) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN/pull/1#issuecomment-1769497233) in [tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder/pull/1#issuecomment-1769497214) in [tuhinmallick/Streamlit-based-Duplicate-Images-Finder](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder) From 8c7dc8211f7e84a45d2faad5958c636833b5a0b9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 10:37:36 +0000 Subject: [PATCH 0385/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a2afda45..54486241 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#223](https://github.com/my8100/scrapydweb/pull/223#issuecomment-1770497621) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) -2. 🗣 Commented on [#1183](https://github.com/aimclub/FEDOT/pull/1183#issuecomment-1770442828) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#1185](https://github.com/aimclub/FEDOT/pull/1185#issuecomment-1770399650) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#2958](https://github.com/reframe-hpc/reframe/pull/2958#issuecomment-1770236750) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -5. 🗣 Commented on [#2855](https://github.com/astropy/astroquery/pull/2855#issuecomment-1769654025) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/demo-face-gan/pull/1#issuecomment-1769517092) in [tuhinmallick/demo-face-gan](https://github.com/tuhinmallick/demo-face-gan) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Minimal-URL-Shortener/pull/1#issuecomment-1769501782) in [tuhinmallick/Minimal-URL-Shortener](https://github.com/tuhinmallick/Minimal-URL-Shortener) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Group-E-mail-Automation/pull/1#issuecomment-1769501226) in [tuhinmallick/Group-E-mail-Automation](https://github.com/tuhinmallick/Group-E-mail-Automation) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN/pull/1#issuecomment-1769497233) in [tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder/pull/1#issuecomment-1769497214) in [tuhinmallick/Streamlit-based-Duplicate-Images-Finder](https://github.com/tuhinmallick/Streamlit-based-Duplicate-Images-Finder) +1. 🗣 Commented on [#932](https://github.com/avaframe/AvaFrame/pull/932#issuecomment-1770519542) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#223](https://github.com/my8100/scrapydweb/pull/223#issuecomment-1770497621) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +3. 🗣 Commented on [#1183](https://github.com/aimclub/FEDOT/pull/1183#issuecomment-1770442828) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#1185](https://github.com/aimclub/FEDOT/pull/1185#issuecomment-1770399650) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#2958](https://github.com/reframe-hpc/reframe/pull/2958#issuecomment-1770236750) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +6. 🗣 Commented on [#2855](https://github.com/astropy/astroquery/pull/2855#issuecomment-1769654025) in [astropy/astroquery](https://github.com/astropy/astroquery) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/demo-face-gan/pull/1#issuecomment-1769517092) in [tuhinmallick/demo-face-gan](https://github.com/tuhinmallick/demo-face-gan) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Minimal-URL-Shortener/pull/1#issuecomment-1769501782) in [tuhinmallick/Minimal-URL-Shortener](https://github.com/tuhinmallick/Minimal-URL-Shortener) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Group-E-mail-Automation/pull/1#issuecomment-1769501226) in [tuhinmallick/Group-E-mail-Automation](https://github.com/tuhinmallick/Group-E-mail-Automation) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN/pull/1#issuecomment-1769497233) in [tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN) From e3997d33ad248e5e6d620a9a3464a5cb20b76326 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 12:32:16 +0000 Subject: [PATCH 0386/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 54486241..7cd0ea6f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#932](https://github.com/avaframe/AvaFrame/pull/932#issuecomment-1770519542) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#223](https://github.com/my8100/scrapydweb/pull/223#issuecomment-1770497621) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) -3. 🗣 Commented on [#1183](https://github.com/aimclub/FEDOT/pull/1183#issuecomment-1770442828) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#1185](https://github.com/aimclub/FEDOT/pull/1185#issuecomment-1770399650) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#2958](https://github.com/reframe-hpc/reframe/pull/2958#issuecomment-1770236750) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -6. 🗣 Commented on [#2855](https://github.com/astropy/astroquery/pull/2855#issuecomment-1769654025) in [astropy/astroquery](https://github.com/astropy/astroquery) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/demo-face-gan/pull/1#issuecomment-1769517092) in [tuhinmallick/demo-face-gan](https://github.com/tuhinmallick/demo-face-gan) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Minimal-URL-Shortener/pull/1#issuecomment-1769501782) in [tuhinmallick/Minimal-URL-Shortener](https://github.com/tuhinmallick/Minimal-URL-Shortener) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Group-E-mail-Automation/pull/1#issuecomment-1769501226) in [tuhinmallick/Group-E-mail-Automation](https://github.com/tuhinmallick/Group-E-mail-Automation) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN/pull/1#issuecomment-1769497233) in [tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN](https://github.com/tuhinmallick/Streamlit-based-Image-Super-Resolution-using-ESRGAN) +1. 🗣 Commented on [#1001](https://github.com/aramis-lab/clinica/pull/1001#issuecomment-1770876119) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +2. 🗣 Commented on [#932](https://github.com/avaframe/AvaFrame/pull/932#issuecomment-1770519542) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#223](https://github.com/my8100/scrapydweb/pull/223#issuecomment-1770497621) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +4. 🗣 Commented on [#1183](https://github.com/aimclub/FEDOT/pull/1183#issuecomment-1770442828) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#1185](https://github.com/aimclub/FEDOT/pull/1185#issuecomment-1770399650) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#2958](https://github.com/reframe-hpc/reframe/pull/2958#issuecomment-1770236750) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +7. 🗣 Commented on [#2855](https://github.com/astropy/astroquery/pull/2855#issuecomment-1769654025) in [astropy/astroquery](https://github.com/astropy/astroquery) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/demo-face-gan/pull/1#issuecomment-1769517092) in [tuhinmallick/demo-face-gan](https://github.com/tuhinmallick/demo-face-gan) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Minimal-URL-Shortener/pull/1#issuecomment-1769501782) in [tuhinmallick/Minimal-URL-Shortener](https://github.com/tuhinmallick/Minimal-URL-Shortener) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Group-E-mail-Automation/pull/1#issuecomment-1769501226) in [tuhinmallick/Group-E-mail-Automation](https://github.com/tuhinmallick/Group-E-mail-Automation) From 69bc22c80282c88cb34322284955f7851bd65ec4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 13:20:05 +0000 Subject: [PATCH 0387/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7cd0ea6f..57999871 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1001](https://github.com/aramis-lab/clinica/pull/1001#issuecomment-1770876119) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -2. 🗣 Commented on [#932](https://github.com/avaframe/AvaFrame/pull/932#issuecomment-1770519542) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#223](https://github.com/my8100/scrapydweb/pull/223#issuecomment-1770497621) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) -4. 🗣 Commented on [#1183](https://github.com/aimclub/FEDOT/pull/1183#issuecomment-1770442828) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#1185](https://github.com/aimclub/FEDOT/pull/1185#issuecomment-1770399650) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#2958](https://github.com/reframe-hpc/reframe/pull/2958#issuecomment-1770236750) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -7. 🗣 Commented on [#2855](https://github.com/astropy/astroquery/pull/2855#issuecomment-1769654025) in [astropy/astroquery](https://github.com/astropy/astroquery) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/demo-face-gan/pull/1#issuecomment-1769517092) in [tuhinmallick/demo-face-gan](https://github.com/tuhinmallick/demo-face-gan) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Minimal-URL-Shortener/pull/1#issuecomment-1769501782) in [tuhinmallick/Minimal-URL-Shortener](https://github.com/tuhinmallick/Minimal-URL-Shortener) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Group-E-mail-Automation/pull/1#issuecomment-1769501226) in [tuhinmallick/Group-E-mail-Automation](https://github.com/tuhinmallick/Group-E-mail-Automation) +1. 🗣 Commented on [#52](https://github.com/foreign-sub/aiofreepybox/pull/52#issuecomment-1770973041) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/energy-forecasting/pull/1#issuecomment-1770892973) in [tuhinmallick/energy-forecasting](https://github.com/tuhinmallick/energy-forecasting) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/hands-on-llms/pull/1#issuecomment-1770888165) in [tuhinmallick/hands-on-llms](https://github.com/tuhinmallick/hands-on-llms) +4. 🗣 Commented on [#1001](https://github.com/aramis-lab/clinica/pull/1001#issuecomment-1770876119) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +5. 🗣 Commented on [#932](https://github.com/avaframe/AvaFrame/pull/932#issuecomment-1770519542) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#223](https://github.com/my8100/scrapydweb/pull/223#issuecomment-1770497621) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +7. 🗣 Commented on [#1183](https://github.com/aimclub/FEDOT/pull/1183#issuecomment-1770442828) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#1185](https://github.com/aimclub/FEDOT/pull/1185#issuecomment-1770399650) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#2958](https://github.com/reframe-hpc/reframe/pull/2958#issuecomment-1770236750) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +10. 🗣 Commented on [#2855](https://github.com/astropy/astroquery/pull/2855#issuecomment-1769654025) in [astropy/astroquery](https://github.com/astropy/astroquery) From 4d7cfe7f0d58dc7c09730c8bdf32cc2daa543e53 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 13:37:56 +0000 Subject: [PATCH 0388/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 57999871..6fda9721 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#52](https://github.com/foreign-sub/aiofreepybox/pull/52#issuecomment-1770973041) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/energy-forecasting/pull/1#issuecomment-1770892973) in [tuhinmallick/energy-forecasting](https://github.com/tuhinmallick/energy-forecasting) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/hands-on-llms/pull/1#issuecomment-1770888165) in [tuhinmallick/hands-on-llms](https://github.com/tuhinmallick/hands-on-llms) -4. 🗣 Commented on [#1001](https://github.com/aramis-lab/clinica/pull/1001#issuecomment-1770876119) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -5. 🗣 Commented on [#932](https://github.com/avaframe/AvaFrame/pull/932#issuecomment-1770519542) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#223](https://github.com/my8100/scrapydweb/pull/223#issuecomment-1770497621) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) -7. 🗣 Commented on [#1183](https://github.com/aimclub/FEDOT/pull/1183#issuecomment-1770442828) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#1185](https://github.com/aimclub/FEDOT/pull/1185#issuecomment-1770399650) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#2958](https://github.com/reframe-hpc/reframe/pull/2958#issuecomment-1770236750) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -10. 🗣 Commented on [#2855](https://github.com/astropy/astroquery/pull/2855#issuecomment-1769654025) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#851](https://github.com/PyThaiNLP/pythainlp/pull/851#issuecomment-1770996163) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#52](https://github.com/foreign-sub/aiofreepybox/pull/52#issuecomment-1770973041) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/energy-forecasting/pull/1#issuecomment-1770892973) in [tuhinmallick/energy-forecasting](https://github.com/tuhinmallick/energy-forecasting) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/hands-on-llms/pull/1#issuecomment-1770888165) in [tuhinmallick/hands-on-llms](https://github.com/tuhinmallick/hands-on-llms) +5. 🗣 Commented on [#1001](https://github.com/aramis-lab/clinica/pull/1001#issuecomment-1770876119) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +6. 🗣 Commented on [#932](https://github.com/avaframe/AvaFrame/pull/932#issuecomment-1770519542) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#223](https://github.com/my8100/scrapydweb/pull/223#issuecomment-1770497621) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +8. 🗣 Commented on [#1183](https://github.com/aimclub/FEDOT/pull/1183#issuecomment-1770442828) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#1185](https://github.com/aimclub/FEDOT/pull/1185#issuecomment-1770399650) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#2958](https://github.com/reframe-hpc/reframe/pull/2958#issuecomment-1770236750) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) From 3502545897f05df071a842862b1f9c5713f1c1e8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 14:37:24 +0000 Subject: [PATCH 0389/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6fda9721..05e493a3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#851](https://github.com/PyThaiNLP/pythainlp/pull/851#issuecomment-1770996163) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#52](https://github.com/foreign-sub/aiofreepybox/pull/52#issuecomment-1770973041) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/energy-forecasting/pull/1#issuecomment-1770892973) in [tuhinmallick/energy-forecasting](https://github.com/tuhinmallick/energy-forecasting) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/hands-on-llms/pull/1#issuecomment-1770888165) in [tuhinmallick/hands-on-llms](https://github.com/tuhinmallick/hands-on-llms) -5. 🗣 Commented on [#1001](https://github.com/aramis-lab/clinica/pull/1001#issuecomment-1770876119) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -6. 🗣 Commented on [#932](https://github.com/avaframe/AvaFrame/pull/932#issuecomment-1770519542) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#223](https://github.com/my8100/scrapydweb/pull/223#issuecomment-1770497621) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) -8. 🗣 Commented on [#1183](https://github.com/aimclub/FEDOT/pull/1183#issuecomment-1770442828) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#1185](https://github.com/aimclub/FEDOT/pull/1185#issuecomment-1770399650) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#2958](https://github.com/reframe-hpc/reframe/pull/2958#issuecomment-1770236750) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +1. 🗣 Commented on [#2856](https://github.com/astropy/astroquery/pull/2856#issuecomment-1771072915) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#851](https://github.com/PyThaiNLP/pythainlp/pull/851#issuecomment-1770996163) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#52](https://github.com/foreign-sub/aiofreepybox/pull/52#issuecomment-1770973041) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/energy-forecasting/pull/1#issuecomment-1770892973) in [tuhinmallick/energy-forecasting](https://github.com/tuhinmallick/energy-forecasting) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/hands-on-llms/pull/1#issuecomment-1770888165) in [tuhinmallick/hands-on-llms](https://github.com/tuhinmallick/hands-on-llms) +6. 🗣 Commented on [#1001](https://github.com/aramis-lab/clinica/pull/1001#issuecomment-1770876119) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +7. 🗣 Commented on [#932](https://github.com/avaframe/AvaFrame/pull/932#issuecomment-1770519542) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#223](https://github.com/my8100/scrapydweb/pull/223#issuecomment-1770497621) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +9. 🗣 Commented on [#1183](https://github.com/aimclub/FEDOT/pull/1183#issuecomment-1770442828) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#1185](https://github.com/aimclub/FEDOT/pull/1185#issuecomment-1770399650) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From c4212368c7818f20f35650a459664867baf5994d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 15:37:23 +0000 Subject: [PATCH 0390/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 05e493a3..18c1c392 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2856](https://github.com/astropy/astroquery/pull/2856#issuecomment-1771072915) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#851](https://github.com/PyThaiNLP/pythainlp/pull/851#issuecomment-1770996163) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#52](https://github.com/foreign-sub/aiofreepybox/pull/52#issuecomment-1770973041) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/energy-forecasting/pull/1#issuecomment-1770892973) in [tuhinmallick/energy-forecasting](https://github.com/tuhinmallick/energy-forecasting) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/hands-on-llms/pull/1#issuecomment-1770888165) in [tuhinmallick/hands-on-llms](https://github.com/tuhinmallick/hands-on-llms) -6. 🗣 Commented on [#1001](https://github.com/aramis-lab/clinica/pull/1001#issuecomment-1770876119) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -7. 🗣 Commented on [#932](https://github.com/avaframe/AvaFrame/pull/932#issuecomment-1770519542) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#223](https://github.com/my8100/scrapydweb/pull/223#issuecomment-1770497621) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) -9. 🗣 Commented on [#1183](https://github.com/aimclub/FEDOT/pull/1183#issuecomment-1770442828) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#1185](https://github.com/aimclub/FEDOT/pull/1185#issuecomment-1770399650) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#561](https://github.com/quark-engine/quark-engine/pull/561#issuecomment-1771171117) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +2. 🗣 Commented on [#2856](https://github.com/astropy/astroquery/pull/2856#issuecomment-1771072915) in [astropy/astroquery](https://github.com/astropy/astroquery) +3. 🗣 Commented on [#851](https://github.com/PyThaiNLP/pythainlp/pull/851#issuecomment-1770996163) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#52](https://github.com/foreign-sub/aiofreepybox/pull/52#issuecomment-1770973041) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/energy-forecasting/pull/1#issuecomment-1770892973) in [tuhinmallick/energy-forecasting](https://github.com/tuhinmallick/energy-forecasting) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/hands-on-llms/pull/1#issuecomment-1770888165) in [tuhinmallick/hands-on-llms](https://github.com/tuhinmallick/hands-on-llms) +7. 🗣 Commented on [#1001](https://github.com/aramis-lab/clinica/pull/1001#issuecomment-1770876119) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +8. 🗣 Commented on [#932](https://github.com/avaframe/AvaFrame/pull/932#issuecomment-1770519542) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#223](https://github.com/my8100/scrapydweb/pull/223#issuecomment-1770497621) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +10. 🗣 Commented on [#1183](https://github.com/aimclub/FEDOT/pull/1183#issuecomment-1770442828) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From 132d80e25e343f587d1184793df29daf20bbe507 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 16:21:19 +0000 Subject: [PATCH 0391/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 18c1c392..f9c6a5ed 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#561](https://github.com/quark-engine/quark-engine/pull/561#issuecomment-1771171117) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -2. 🗣 Commented on [#2856](https://github.com/astropy/astroquery/pull/2856#issuecomment-1771072915) in [astropy/astroquery](https://github.com/astropy/astroquery) -3. 🗣 Commented on [#851](https://github.com/PyThaiNLP/pythainlp/pull/851#issuecomment-1770996163) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#52](https://github.com/foreign-sub/aiofreepybox/pull/52#issuecomment-1770973041) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/energy-forecasting/pull/1#issuecomment-1770892973) in [tuhinmallick/energy-forecasting](https://github.com/tuhinmallick/energy-forecasting) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/hands-on-llms/pull/1#issuecomment-1770888165) in [tuhinmallick/hands-on-llms](https://github.com/tuhinmallick/hands-on-llms) -7. 🗣 Commented on [#1001](https://github.com/aramis-lab/clinica/pull/1001#issuecomment-1770876119) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -8. 🗣 Commented on [#932](https://github.com/avaframe/AvaFrame/pull/932#issuecomment-1770519542) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#223](https://github.com/my8100/scrapydweb/pull/223#issuecomment-1770497621) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) -10. 🗣 Commented on [#1183](https://github.com/aimclub/FEDOT/pull/1183#issuecomment-1770442828) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#13](https://github.com/ITMO-NSS-team/nas-fedot/pull/13#issuecomment-1771244500) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) +2. 🗣 Commented on [#12](https://github.com/OpenFreeEnergy/kartograf/pull/12#issuecomment-1771205141) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +3. 🗣 Commented on [#561](https://github.com/quark-engine/quark-engine/pull/561#issuecomment-1771171117) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +4. 🗣 Commented on [#2856](https://github.com/astropy/astroquery/pull/2856#issuecomment-1771072915) in [astropy/astroquery](https://github.com/astropy/astroquery) +5. 🗣 Commented on [#851](https://github.com/PyThaiNLP/pythainlp/pull/851#issuecomment-1770996163) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#52](https://github.com/foreign-sub/aiofreepybox/pull/52#issuecomment-1770973041) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/energy-forecasting/pull/1#issuecomment-1770892973) in [tuhinmallick/energy-forecasting](https://github.com/tuhinmallick/energy-forecasting) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/hands-on-llms/pull/1#issuecomment-1770888165) in [tuhinmallick/hands-on-llms](https://github.com/tuhinmallick/hands-on-llms) +9. 🗣 Commented on [#1001](https://github.com/aramis-lab/clinica/pull/1001#issuecomment-1770876119) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +10. 🗣 Commented on [#932](https://github.com/avaframe/AvaFrame/pull/932#issuecomment-1770519542) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From 011de64fcdc4a1a8905850b15496e6a43f5f197a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 18:21:02 +0000 Subject: [PATCH 0392/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f9c6a5ed..af254e93 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#13](https://github.com/ITMO-NSS-team/nas-fedot/pull/13#issuecomment-1771244500) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) -2. 🗣 Commented on [#12](https://github.com/OpenFreeEnergy/kartograf/pull/12#issuecomment-1771205141) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -3. 🗣 Commented on [#561](https://github.com/quark-engine/quark-engine/pull/561#issuecomment-1771171117) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -4. 🗣 Commented on [#2856](https://github.com/astropy/astroquery/pull/2856#issuecomment-1771072915) in [astropy/astroquery](https://github.com/astropy/astroquery) -5. 🗣 Commented on [#851](https://github.com/PyThaiNLP/pythainlp/pull/851#issuecomment-1770996163) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#52](https://github.com/foreign-sub/aiofreepybox/pull/52#issuecomment-1770973041) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/energy-forecasting/pull/1#issuecomment-1770892973) in [tuhinmallick/energy-forecasting](https://github.com/tuhinmallick/energy-forecasting) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/hands-on-llms/pull/1#issuecomment-1770888165) in [tuhinmallick/hands-on-llms](https://github.com/tuhinmallick/hands-on-llms) -9. 🗣 Commented on [#1001](https://github.com/aramis-lab/clinica/pull/1001#issuecomment-1770876119) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -10. 🗣 Commented on [#932](https://github.com/avaframe/AvaFrame/pull/932#issuecomment-1770519542) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#285](https://github.com/AdvancedPhotonSource/tike/pull/285#issuecomment-1771411449) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +2. 🗣 Commented on [#47](https://github.com/Fatal1ty/aioapns/pull/47#issuecomment-1771390825) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) +3. 🗣 Commented on [#13](https://github.com/ITMO-NSS-team/nas-fedot/pull/13#issuecomment-1771244500) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) +4. 🗣 Commented on [#12](https://github.com/OpenFreeEnergy/kartograf/pull/12#issuecomment-1771205141) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +5. 🗣 Commented on [#561](https://github.com/quark-engine/quark-engine/pull/561#issuecomment-1771171117) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +6. 🗣 Commented on [#2856](https://github.com/astropy/astroquery/pull/2856#issuecomment-1771072915) in [astropy/astroquery](https://github.com/astropy/astroquery) +7. 🗣 Commented on [#851](https://github.com/PyThaiNLP/pythainlp/pull/851#issuecomment-1770996163) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +8. 🗣 Commented on [#52](https://github.com/foreign-sub/aiofreepybox/pull/52#issuecomment-1770973041) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/energy-forecasting/pull/1#issuecomment-1770892973) in [tuhinmallick/energy-forecasting](https://github.com/tuhinmallick/energy-forecasting) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/hands-on-llms/pull/1#issuecomment-1770888165) in [tuhinmallick/hands-on-llms](https://github.com/tuhinmallick/hands-on-llms) From b791cff74b775c3d7d4728c82f4e0641f1368ed9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 19:37:24 +0000 Subject: [PATCH 0393/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index af254e93..8839484d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#285](https://github.com/AdvancedPhotonSource/tike/pull/285#issuecomment-1771411449) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -2. 🗣 Commented on [#47](https://github.com/Fatal1ty/aioapns/pull/47#issuecomment-1771390825) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) -3. 🗣 Commented on [#13](https://github.com/ITMO-NSS-team/nas-fedot/pull/13#issuecomment-1771244500) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) -4. 🗣 Commented on [#12](https://github.com/OpenFreeEnergy/kartograf/pull/12#issuecomment-1771205141) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -5. 🗣 Commented on [#561](https://github.com/quark-engine/quark-engine/pull/561#issuecomment-1771171117) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -6. 🗣 Commented on [#2856](https://github.com/astropy/astroquery/pull/2856#issuecomment-1771072915) in [astropy/astroquery](https://github.com/astropy/astroquery) -7. 🗣 Commented on [#851](https://github.com/PyThaiNLP/pythainlp/pull/851#issuecomment-1770996163) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -8. 🗣 Commented on [#52](https://github.com/foreign-sub/aiofreepybox/pull/52#issuecomment-1770973041) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/energy-forecasting/pull/1#issuecomment-1770892973) in [tuhinmallick/energy-forecasting](https://github.com/tuhinmallick/energy-forecasting) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/hands-on-llms/pull/1#issuecomment-1770888165) in [tuhinmallick/hands-on-llms](https://github.com/tuhinmallick/hands-on-llms) +1. 🗣 Commented on [#32](https://github.com/oemof/oemof-network/pull/32#issuecomment-1771567536) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +2. 🗣 Commented on [#285](https://github.com/AdvancedPhotonSource/tike/pull/285#issuecomment-1771411449) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +3. 🗣 Commented on [#47](https://github.com/Fatal1ty/aioapns/pull/47#issuecomment-1771390825) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) +4. 🗣 Commented on [#13](https://github.com/ITMO-NSS-team/nas-fedot/pull/13#issuecomment-1771244500) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) +5. 🗣 Commented on [#12](https://github.com/OpenFreeEnergy/kartograf/pull/12#issuecomment-1771205141) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +6. 🗣 Commented on [#561](https://github.com/quark-engine/quark-engine/pull/561#issuecomment-1771171117) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +7. 🗣 Commented on [#2856](https://github.com/astropy/astroquery/pull/2856#issuecomment-1771072915) in [astropy/astroquery](https://github.com/astropy/astroquery) +8. 🗣 Commented on [#851](https://github.com/PyThaiNLP/pythainlp/pull/851#issuecomment-1770996163) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#52](https://github.com/foreign-sub/aiofreepybox/pull/52#issuecomment-1770973041) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/energy-forecasting/pull/1#issuecomment-1770892973) in [tuhinmallick/energy-forecasting](https://github.com/tuhinmallick/energy-forecasting) From 917cf3c7096cf52f8a37a013a172db67f4d94ea3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 21:37:18 +0000 Subject: [PATCH 0394/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8839484d..67e3c964 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#32](https://github.com/oemof/oemof-network/pull/32#issuecomment-1771567536) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -2. 🗣 Commented on [#285](https://github.com/AdvancedPhotonSource/tike/pull/285#issuecomment-1771411449) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -3. 🗣 Commented on [#47](https://github.com/Fatal1ty/aioapns/pull/47#issuecomment-1771390825) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) -4. 🗣 Commented on [#13](https://github.com/ITMO-NSS-team/nas-fedot/pull/13#issuecomment-1771244500) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) -5. 🗣 Commented on [#12](https://github.com/OpenFreeEnergy/kartograf/pull/12#issuecomment-1771205141) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -6. 🗣 Commented on [#561](https://github.com/quark-engine/quark-engine/pull/561#issuecomment-1771171117) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -7. 🗣 Commented on [#2856](https://github.com/astropy/astroquery/pull/2856#issuecomment-1771072915) in [astropy/astroquery](https://github.com/astropy/astroquery) -8. 🗣 Commented on [#851](https://github.com/PyThaiNLP/pythainlp/pull/851#issuecomment-1770996163) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#52](https://github.com/foreign-sub/aiofreepybox/pull/52#issuecomment-1770973041) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/energy-forecasting/pull/1#issuecomment-1770892973) in [tuhinmallick/energy-forecasting](https://github.com/tuhinmallick/energy-forecasting) +1. 🗣 Commented on [#989](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/989#issuecomment-1771717471) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#32](https://github.com/oemof/oemof-network/pull/32#issuecomment-1771567536) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +3. 🗣 Commented on [#285](https://github.com/AdvancedPhotonSource/tike/pull/285#issuecomment-1771411449) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +4. 🗣 Commented on [#47](https://github.com/Fatal1ty/aioapns/pull/47#issuecomment-1771390825) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) +5. 🗣 Commented on [#13](https://github.com/ITMO-NSS-team/nas-fedot/pull/13#issuecomment-1771244500) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) +6. 🗣 Commented on [#12](https://github.com/OpenFreeEnergy/kartograf/pull/12#issuecomment-1771205141) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +7. 🗣 Commented on [#561](https://github.com/quark-engine/quark-engine/pull/561#issuecomment-1771171117) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +8. 🗣 Commented on [#2856](https://github.com/astropy/astroquery/pull/2856#issuecomment-1771072915) in [astropy/astroquery](https://github.com/astropy/astroquery) +9. 🗣 Commented on [#851](https://github.com/PyThaiNLP/pythainlp/pull/851#issuecomment-1770996163) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +10. 🗣 Commented on [#52](https://github.com/foreign-sub/aiofreepybox/pull/52#issuecomment-1770973041) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) From 2a400bc7b6701c0ddcd7bf7789dcc2a674aa25db Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 22:37:20 +0000 Subject: [PATCH 0395/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 67e3c964..66422f5f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#989](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/989#issuecomment-1771717471) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#32](https://github.com/oemof/oemof-network/pull/32#issuecomment-1771567536) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -3. 🗣 Commented on [#285](https://github.com/AdvancedPhotonSource/tike/pull/285#issuecomment-1771411449) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -4. 🗣 Commented on [#47](https://github.com/Fatal1ty/aioapns/pull/47#issuecomment-1771390825) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) -5. 🗣 Commented on [#13](https://github.com/ITMO-NSS-team/nas-fedot/pull/13#issuecomment-1771244500) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) -6. 🗣 Commented on [#12](https://github.com/OpenFreeEnergy/kartograf/pull/12#issuecomment-1771205141) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -7. 🗣 Commented on [#561](https://github.com/quark-engine/quark-engine/pull/561#issuecomment-1771171117) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -8. 🗣 Commented on [#2856](https://github.com/astropy/astroquery/pull/2856#issuecomment-1771072915) in [astropy/astroquery](https://github.com/astropy/astroquery) -9. 🗣 Commented on [#851](https://github.com/PyThaiNLP/pythainlp/pull/851#issuecomment-1770996163) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -10. 🗣 Commented on [#52](https://github.com/foreign-sub/aiofreepybox/pull/52#issuecomment-1770973041) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +1. 🗣 Commented on [#53](https://github.com/foreign-sub/aiofreepybox/pull/53#issuecomment-1771785597) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +2. 🗣 Commented on [#989](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/989#issuecomment-1771717471) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#32](https://github.com/oemof/oemof-network/pull/32#issuecomment-1771567536) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +4. 🗣 Commented on [#285](https://github.com/AdvancedPhotonSource/tike/pull/285#issuecomment-1771411449) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +5. 🗣 Commented on [#47](https://github.com/Fatal1ty/aioapns/pull/47#issuecomment-1771390825) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) +6. 🗣 Commented on [#13](https://github.com/ITMO-NSS-team/nas-fedot/pull/13#issuecomment-1771244500) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) +7. 🗣 Commented on [#12](https://github.com/OpenFreeEnergy/kartograf/pull/12#issuecomment-1771205141) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +8. 🗣 Commented on [#561](https://github.com/quark-engine/quark-engine/pull/561#issuecomment-1771171117) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +9. 🗣 Commented on [#2856](https://github.com/astropy/astroquery/pull/2856#issuecomment-1771072915) in [astropy/astroquery](https://github.com/astropy/astroquery) +10. 🗣 Commented on [#851](https://github.com/PyThaiNLP/pythainlp/pull/851#issuecomment-1770996163) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) From c7acbf35d8c26a0c13401968615921b1f232d0bd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 05:37:15 +0000 Subject: [PATCH 0396/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 66422f5f..5cbb8a59 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#53](https://github.com/foreign-sub/aiofreepybox/pull/53#issuecomment-1771785597) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -2. 🗣 Commented on [#989](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/989#issuecomment-1771717471) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#32](https://github.com/oemof/oemof-network/pull/32#issuecomment-1771567536) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -4. 🗣 Commented on [#285](https://github.com/AdvancedPhotonSource/tike/pull/285#issuecomment-1771411449) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -5. 🗣 Commented on [#47](https://github.com/Fatal1ty/aioapns/pull/47#issuecomment-1771390825) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) -6. 🗣 Commented on [#13](https://github.com/ITMO-NSS-team/nas-fedot/pull/13#issuecomment-1771244500) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) -7. 🗣 Commented on [#12](https://github.com/OpenFreeEnergy/kartograf/pull/12#issuecomment-1771205141) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -8. 🗣 Commented on [#561](https://github.com/quark-engine/quark-engine/pull/561#issuecomment-1771171117) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -9. 🗣 Commented on [#2856](https://github.com/astropy/astroquery/pull/2856#issuecomment-1771072915) in [astropy/astroquery](https://github.com/astropy/astroquery) -10. 🗣 Commented on [#851](https://github.com/PyThaiNLP/pythainlp/pull/851#issuecomment-1770996163) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +1. 🗣 Commented on [#1338](https://github.com/NeuralEnsemble/python-neo/pull/1338#issuecomment-1772101245) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +2. 🗣 Commented on [#53](https://github.com/foreign-sub/aiofreepybox/pull/53#issuecomment-1771785597) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +3. 🗣 Commented on [#989](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/989#issuecomment-1771717471) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#32](https://github.com/oemof/oemof-network/pull/32#issuecomment-1771567536) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +5. 🗣 Commented on [#285](https://github.com/AdvancedPhotonSource/tike/pull/285#issuecomment-1771411449) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +6. 🗣 Commented on [#47](https://github.com/Fatal1ty/aioapns/pull/47#issuecomment-1771390825) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) +7. 🗣 Commented on [#13](https://github.com/ITMO-NSS-team/nas-fedot/pull/13#issuecomment-1771244500) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) +8. 🗣 Commented on [#12](https://github.com/OpenFreeEnergy/kartograf/pull/12#issuecomment-1771205141) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +9. 🗣 Commented on [#561](https://github.com/quark-engine/quark-engine/pull/561#issuecomment-1771171117) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +10. 🗣 Commented on [#2856](https://github.com/astropy/astroquery/pull/2856#issuecomment-1771072915) in [astropy/astroquery](https://github.com/astropy/astroquery) From 4eb8ec6371d52dfcd81e094fdcb9a1226454b9eb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 06:21:27 +0000 Subject: [PATCH 0397/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5cbb8a59..25a23fa7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1338](https://github.com/NeuralEnsemble/python-neo/pull/1338#issuecomment-1772101245) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -2. 🗣 Commented on [#53](https://github.com/foreign-sub/aiofreepybox/pull/53#issuecomment-1771785597) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -3. 🗣 Commented on [#989](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/989#issuecomment-1771717471) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#32](https://github.com/oemof/oemof-network/pull/32#issuecomment-1771567536) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -5. 🗣 Commented on [#285](https://github.com/AdvancedPhotonSource/tike/pull/285#issuecomment-1771411449) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -6. 🗣 Commented on [#47](https://github.com/Fatal1ty/aioapns/pull/47#issuecomment-1771390825) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) -7. 🗣 Commented on [#13](https://github.com/ITMO-NSS-team/nas-fedot/pull/13#issuecomment-1771244500) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) -8. 🗣 Commented on [#12](https://github.com/OpenFreeEnergy/kartograf/pull/12#issuecomment-1771205141) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -9. 🗣 Commented on [#561](https://github.com/quark-engine/quark-engine/pull/561#issuecomment-1771171117) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -10. 🗣 Commented on [#2856](https://github.com/astropy/astroquery/pull/2856#issuecomment-1771072915) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#202](https://github.com/CartoonFan/lutris/pull/202#issuecomment-1772139719) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#1338](https://github.com/NeuralEnsemble/python-neo/pull/1338#issuecomment-1772101245) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +3. 🗣 Commented on [#53](https://github.com/foreign-sub/aiofreepybox/pull/53#issuecomment-1771785597) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +4. 🗣 Commented on [#989](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/989#issuecomment-1771717471) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#32](https://github.com/oemof/oemof-network/pull/32#issuecomment-1771567536) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +6. 🗣 Commented on [#285](https://github.com/AdvancedPhotonSource/tike/pull/285#issuecomment-1771411449) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +7. 🗣 Commented on [#47](https://github.com/Fatal1ty/aioapns/pull/47#issuecomment-1771390825) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) +8. 🗣 Commented on [#13](https://github.com/ITMO-NSS-team/nas-fedot/pull/13#issuecomment-1771244500) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) +9. 🗣 Commented on [#12](https://github.com/OpenFreeEnergy/kartograf/pull/12#issuecomment-1771205141) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +10. 🗣 Commented on [#561](https://github.com/quark-engine/quark-engine/pull/561#issuecomment-1771171117) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) From 5e7976aa8fdf77daf1cb1bdf843d2fa7c18686cd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 08:19:55 +0000 Subject: [PATCH 0398/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 25a23fa7..da8dfc2c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#202](https://github.com/CartoonFan/lutris/pull/202#issuecomment-1772139719) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#1338](https://github.com/NeuralEnsemble/python-neo/pull/1338#issuecomment-1772101245) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -3. 🗣 Commented on [#53](https://github.com/foreign-sub/aiofreepybox/pull/53#issuecomment-1771785597) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -4. 🗣 Commented on [#989](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/989#issuecomment-1771717471) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#32](https://github.com/oemof/oemof-network/pull/32#issuecomment-1771567536) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -6. 🗣 Commented on [#285](https://github.com/AdvancedPhotonSource/tike/pull/285#issuecomment-1771411449) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -7. 🗣 Commented on [#47](https://github.com/Fatal1ty/aioapns/pull/47#issuecomment-1771390825) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) -8. 🗣 Commented on [#13](https://github.com/ITMO-NSS-team/nas-fedot/pull/13#issuecomment-1771244500) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) -9. 🗣 Commented on [#12](https://github.com/OpenFreeEnergy/kartograf/pull/12#issuecomment-1771205141) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -10. 🗣 Commented on [#561](https://github.com/quark-engine/quark-engine/pull/561#issuecomment-1771171117) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/sec-insights/pull/1#issuecomment-1772238355) in [tuhinmallick/sec-insights](https://github.com/tuhinmallick/sec-insights) +2. 🗣 Commented on [#202](https://github.com/CartoonFan/lutris/pull/202#issuecomment-1772139719) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#1338](https://github.com/NeuralEnsemble/python-neo/pull/1338#issuecomment-1772101245) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +4. 🗣 Commented on [#53](https://github.com/foreign-sub/aiofreepybox/pull/53#issuecomment-1771785597) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +5. 🗣 Commented on [#989](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/989#issuecomment-1771717471) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#32](https://github.com/oemof/oemof-network/pull/32#issuecomment-1771567536) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +7. 🗣 Commented on [#285](https://github.com/AdvancedPhotonSource/tike/pull/285#issuecomment-1771411449) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +8. 🗣 Commented on [#47](https://github.com/Fatal1ty/aioapns/pull/47#issuecomment-1771390825) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) +9. 🗣 Commented on [#13](https://github.com/ITMO-NSS-team/nas-fedot/pull/13#issuecomment-1771244500) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) +10. 🗣 Commented on [#12](https://github.com/OpenFreeEnergy/kartograf/pull/12#issuecomment-1771205141) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) From ae185735157b55cde3c24d593dfef7b2c49b483e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 08:37:39 +0000 Subject: [PATCH 0399/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index da8dfc2c..53e4426d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/sec-insights/pull/1#issuecomment-1772238355) in [tuhinmallick/sec-insights](https://github.com/tuhinmallick/sec-insights) -2. 🗣 Commented on [#202](https://github.com/CartoonFan/lutris/pull/202#issuecomment-1772139719) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#1338](https://github.com/NeuralEnsemble/python-neo/pull/1338#issuecomment-1772101245) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -4. 🗣 Commented on [#53](https://github.com/foreign-sub/aiofreepybox/pull/53#issuecomment-1771785597) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -5. 🗣 Commented on [#989](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/989#issuecomment-1771717471) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#32](https://github.com/oemof/oemof-network/pull/32#issuecomment-1771567536) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -7. 🗣 Commented on [#285](https://github.com/AdvancedPhotonSource/tike/pull/285#issuecomment-1771411449) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -8. 🗣 Commented on [#47](https://github.com/Fatal1ty/aioapns/pull/47#issuecomment-1771390825) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) -9. 🗣 Commented on [#13](https://github.com/ITMO-NSS-team/nas-fedot/pull/13#issuecomment-1771244500) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) -10. 🗣 Commented on [#12](https://github.com/OpenFreeEnergy/kartograf/pull/12#issuecomment-1771205141) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +1. 🗣 Commented on [#982](https://github.com/oemof/oemof-solph/pull/982#issuecomment-1772309451) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/sec-insights/pull/1#issuecomment-1772238355) in [tuhinmallick/sec-insights](https://github.com/tuhinmallick/sec-insights) +3. 🗣 Commented on [#202](https://github.com/CartoonFan/lutris/pull/202#issuecomment-1772139719) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#1338](https://github.com/NeuralEnsemble/python-neo/pull/1338#issuecomment-1772101245) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +5. 🗣 Commented on [#53](https://github.com/foreign-sub/aiofreepybox/pull/53#issuecomment-1771785597) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +6. 🗣 Commented on [#989](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/989#issuecomment-1771717471) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#32](https://github.com/oemof/oemof-network/pull/32#issuecomment-1771567536) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +8. 🗣 Commented on [#285](https://github.com/AdvancedPhotonSource/tike/pull/285#issuecomment-1771411449) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +9. 🗣 Commented on [#47](https://github.com/Fatal1ty/aioapns/pull/47#issuecomment-1771390825) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) +10. 🗣 Commented on [#13](https://github.com/ITMO-NSS-team/nas-fedot/pull/13#issuecomment-1771244500) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) From 61954e8c62f5e88bb4acadcc768e798ab1328411 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 09:37:22 +0000 Subject: [PATCH 0400/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 53e4426d..51664283 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#982](https://github.com/oemof/oemof-solph/pull/982#issuecomment-1772309451) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/sec-insights/pull/1#issuecomment-1772238355) in [tuhinmallick/sec-insights](https://github.com/tuhinmallick/sec-insights) -3. 🗣 Commented on [#202](https://github.com/CartoonFan/lutris/pull/202#issuecomment-1772139719) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#1338](https://github.com/NeuralEnsemble/python-neo/pull/1338#issuecomment-1772101245) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -5. 🗣 Commented on [#53](https://github.com/foreign-sub/aiofreepybox/pull/53#issuecomment-1771785597) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -6. 🗣 Commented on [#989](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/989#issuecomment-1771717471) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#32](https://github.com/oemof/oemof-network/pull/32#issuecomment-1771567536) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -8. 🗣 Commented on [#285](https://github.com/AdvancedPhotonSource/tike/pull/285#issuecomment-1771411449) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -9. 🗣 Commented on [#47](https://github.com/Fatal1ty/aioapns/pull/47#issuecomment-1771390825) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) -10. 🗣 Commented on [#13](https://github.com/ITMO-NSS-team/nas-fedot/pull/13#issuecomment-1771244500) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) +1. 🗣 Commented on [#39](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/39#issuecomment-1772385172) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +2. 🗣 Commented on [#44](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/44#issuecomment-1772382777) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) +3. 🗣 Commented on [#982](https://github.com/oemof/oemof-solph/pull/982#issuecomment-1772309451) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/sec-insights/pull/1#issuecomment-1772238355) in [tuhinmallick/sec-insights](https://github.com/tuhinmallick/sec-insights) +5. 🗣 Commented on [#202](https://github.com/CartoonFan/lutris/pull/202#issuecomment-1772139719) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#1338](https://github.com/NeuralEnsemble/python-neo/pull/1338#issuecomment-1772101245) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +7. 🗣 Commented on [#53](https://github.com/foreign-sub/aiofreepybox/pull/53#issuecomment-1771785597) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +8. 🗣 Commented on [#989](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/989#issuecomment-1771717471) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#32](https://github.com/oemof/oemof-network/pull/32#issuecomment-1771567536) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +10. 🗣 Commented on [#285](https://github.com/AdvancedPhotonSource/tike/pull/285#issuecomment-1771411449) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) From 7081d76386219342aa9190e08fb66ecfad3f7ede Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 10:17:05 +0000 Subject: [PATCH 0401/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 51664283..1b39d151 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#39](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/39#issuecomment-1772385172) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) -2. 🗣 Commented on [#44](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/44#issuecomment-1772382777) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) -3. 🗣 Commented on [#982](https://github.com/oemof/oemof-solph/pull/982#issuecomment-1772309451) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/sec-insights/pull/1#issuecomment-1772238355) in [tuhinmallick/sec-insights](https://github.com/tuhinmallick/sec-insights) -5. 🗣 Commented on [#202](https://github.com/CartoonFan/lutris/pull/202#issuecomment-1772139719) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#1338](https://github.com/NeuralEnsemble/python-neo/pull/1338#issuecomment-1772101245) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -7. 🗣 Commented on [#53](https://github.com/foreign-sub/aiofreepybox/pull/53#issuecomment-1771785597) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -8. 🗣 Commented on [#989](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/989#issuecomment-1771717471) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#32](https://github.com/oemof/oemof-network/pull/32#issuecomment-1771567536) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -10. 🗣 Commented on [#285](https://github.com/AdvancedPhotonSource/tike/pull/285#issuecomment-1771411449) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +1. 🗣 Commented on [#2603](https://github.com/metabrainz/listenbrainz-server/pull/2603#issuecomment-1772416210) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#39](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/39#issuecomment-1772385172) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +3. 🗣 Commented on [#44](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/44#issuecomment-1772382777) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) +4. 🗣 Commented on [#982](https://github.com/oemof/oemof-solph/pull/982#issuecomment-1772309451) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/sec-insights/pull/1#issuecomment-1772238355) in [tuhinmallick/sec-insights](https://github.com/tuhinmallick/sec-insights) +6. 🗣 Commented on [#202](https://github.com/CartoonFan/lutris/pull/202#issuecomment-1772139719) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#1338](https://github.com/NeuralEnsemble/python-neo/pull/1338#issuecomment-1772101245) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +8. 🗣 Commented on [#53](https://github.com/foreign-sub/aiofreepybox/pull/53#issuecomment-1771785597) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +9. 🗣 Commented on [#989](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/989#issuecomment-1771717471) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#32](https://github.com/oemof/oemof-network/pull/32#issuecomment-1771567536) in [oemof/oemof-network](https://github.com/oemof/oemof-network) From 86518ca5ea5eaef4a44e0450557e0ee2ef8afb2a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 11:13:00 +0000 Subject: [PATCH 0402/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1b39d151..ad84c216 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2603](https://github.com/metabrainz/listenbrainz-server/pull/2603#issuecomment-1772416210) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#39](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/39#issuecomment-1772385172) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) -3. 🗣 Commented on [#44](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/44#issuecomment-1772382777) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) -4. 🗣 Commented on [#982](https://github.com/oemof/oemof-solph/pull/982#issuecomment-1772309451) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/sec-insights/pull/1#issuecomment-1772238355) in [tuhinmallick/sec-insights](https://github.com/tuhinmallick/sec-insights) -6. 🗣 Commented on [#202](https://github.com/CartoonFan/lutris/pull/202#issuecomment-1772139719) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#1338](https://github.com/NeuralEnsemble/python-neo/pull/1338#issuecomment-1772101245) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -8. 🗣 Commented on [#53](https://github.com/foreign-sub/aiofreepybox/pull/53#issuecomment-1771785597) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -9. 🗣 Commented on [#989](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/989#issuecomment-1771717471) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#32](https://github.com/oemof/oemof-network/pull/32#issuecomment-1771567536) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +1. 🗣 Commented on [#2858](https://github.com/astropy/astroquery/pull/2858#issuecomment-1772526416) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#2603](https://github.com/metabrainz/listenbrainz-server/pull/2603#issuecomment-1772416210) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#39](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/39#issuecomment-1772385172) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +4. 🗣 Commented on [#44](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/44#issuecomment-1772382777) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) +5. 🗣 Commented on [#982](https://github.com/oemof/oemof-solph/pull/982#issuecomment-1772309451) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/sec-insights/pull/1#issuecomment-1772238355) in [tuhinmallick/sec-insights](https://github.com/tuhinmallick/sec-insights) +7. 🗣 Commented on [#202](https://github.com/CartoonFan/lutris/pull/202#issuecomment-1772139719) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#1338](https://github.com/NeuralEnsemble/python-neo/pull/1338#issuecomment-1772101245) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +9. 🗣 Commented on [#53](https://github.com/foreign-sub/aiofreepybox/pull/53#issuecomment-1771785597) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +10. 🗣 Commented on [#989](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/989#issuecomment-1771717471) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 039994cd68d956276bec5b65e7fe5c80376ba656 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 11:37:20 +0000 Subject: [PATCH 0403/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ad84c216..e2f8229d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2858](https://github.com/astropy/astroquery/pull/2858#issuecomment-1772526416) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#2603](https://github.com/metabrainz/listenbrainz-server/pull/2603#issuecomment-1772416210) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#39](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/39#issuecomment-1772385172) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) -4. 🗣 Commented on [#44](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/44#issuecomment-1772382777) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) -5. 🗣 Commented on [#982](https://github.com/oemof/oemof-solph/pull/982#issuecomment-1772309451) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/sec-insights/pull/1#issuecomment-1772238355) in [tuhinmallick/sec-insights](https://github.com/tuhinmallick/sec-insights) -7. 🗣 Commented on [#202](https://github.com/CartoonFan/lutris/pull/202#issuecomment-1772139719) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#1338](https://github.com/NeuralEnsemble/python-neo/pull/1338#issuecomment-1772101245) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -9. 🗣 Commented on [#53](https://github.com/foreign-sub/aiofreepybox/pull/53#issuecomment-1771785597) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -10. 🗣 Commented on [#989](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/989#issuecomment-1771717471) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#45](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/45#issuecomment-1772554863) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) +2. 🗣 Commented on [#40](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/40#issuecomment-1772554493) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +3. 🗣 Commented on [#2858](https://github.com/astropy/astroquery/pull/2858#issuecomment-1772526416) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#2603](https://github.com/metabrainz/listenbrainz-server/pull/2603#issuecomment-1772416210) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#39](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/39#issuecomment-1772385172) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +6. 🗣 Commented on [#44](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/44#issuecomment-1772382777) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) +7. 🗣 Commented on [#982](https://github.com/oemof/oemof-solph/pull/982#issuecomment-1772309451) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/sec-insights/pull/1#issuecomment-1772238355) in [tuhinmallick/sec-insights](https://github.com/tuhinmallick/sec-insights) +9. 🗣 Commented on [#202](https://github.com/CartoonFan/lutris/pull/202#issuecomment-1772139719) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#1338](https://github.com/NeuralEnsemble/python-neo/pull/1338#issuecomment-1772101245) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) From db5c706da696962d3a48c94bddd7abfa4003ffdf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 12:31:24 +0000 Subject: [PATCH 0404/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e2f8229d..d382fe7f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#45](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/45#issuecomment-1772554863) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) -2. 🗣 Commented on [#40](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/40#issuecomment-1772554493) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) -3. 🗣 Commented on [#2858](https://github.com/astropy/astroquery/pull/2858#issuecomment-1772526416) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#2603](https://github.com/metabrainz/listenbrainz-server/pull/2603#issuecomment-1772416210) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#39](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/39#issuecomment-1772385172) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) -6. 🗣 Commented on [#44](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/44#issuecomment-1772382777) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) -7. 🗣 Commented on [#982](https://github.com/oemof/oemof-solph/pull/982#issuecomment-1772309451) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/sec-insights/pull/1#issuecomment-1772238355) in [tuhinmallick/sec-insights](https://github.com/tuhinmallick/sec-insights) -9. 🗣 Commented on [#202](https://github.com/CartoonFan/lutris/pull/202#issuecomment-1772139719) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#1338](https://github.com/NeuralEnsemble/python-neo/pull/1338#issuecomment-1772101245) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +1. 🗣 Commented on [#2941](https://github.com/dipy/dipy/pull/2941#issuecomment-1772601370) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#2859](https://github.com/astropy/astroquery/pull/2859#issuecomment-1772581191) in [astropy/astroquery](https://github.com/astropy/astroquery) +3. 🗣 Commented on [#45](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/45#issuecomment-1772554863) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) +4. 🗣 Commented on [#40](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/40#issuecomment-1772554493) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +5. 🗣 Commented on [#2858](https://github.com/astropy/astroquery/pull/2858#issuecomment-1772526416) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#2603](https://github.com/metabrainz/listenbrainz-server/pull/2603#issuecomment-1772416210) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#39](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/39#issuecomment-1772385172) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +8. 🗣 Commented on [#44](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/44#issuecomment-1772382777) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) +9. 🗣 Commented on [#982](https://github.com/oemof/oemof-solph/pull/982#issuecomment-1772309451) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/sec-insights/pull/1#issuecomment-1772238355) in [tuhinmallick/sec-insights](https://github.com/tuhinmallick/sec-insights) From 6ed8d4fa186d8266e05ddf736c2cd10c9a018d05 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 13:19:18 +0000 Subject: [PATCH 0405/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d382fe7f..08ee90ca 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2941](https://github.com/dipy/dipy/pull/2941#issuecomment-1772601370) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#2859](https://github.com/astropy/astroquery/pull/2859#issuecomment-1772581191) in [astropy/astroquery](https://github.com/astropy/astroquery) -3. 🗣 Commented on [#45](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/45#issuecomment-1772554863) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) -4. 🗣 Commented on [#40](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/40#issuecomment-1772554493) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) -5. 🗣 Commented on [#2858](https://github.com/astropy/astroquery/pull/2858#issuecomment-1772526416) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#2603](https://github.com/metabrainz/listenbrainz-server/pull/2603#issuecomment-1772416210) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#39](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/39#issuecomment-1772385172) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) -8. 🗣 Commented on [#44](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/44#issuecomment-1772382777) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) -9. 🗣 Commented on [#982](https://github.com/oemof/oemof-solph/pull/982#issuecomment-1772309451) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/sec-insights/pull/1#issuecomment-1772238355) in [tuhinmallick/sec-insights](https://github.com/tuhinmallick/sec-insights) +1. 🗣 Commented on [#1339](https://github.com/NeuralEnsemble/python-neo/pull/1339#issuecomment-1772697726) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +2. 🗣 Commented on [#2941](https://github.com/dipy/dipy/pull/2941#issuecomment-1772601370) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#2859](https://github.com/astropy/astroquery/pull/2859#issuecomment-1772581191) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#45](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/45#issuecomment-1772554863) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) +5. 🗣 Commented on [#40](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/40#issuecomment-1772554493) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +6. 🗣 Commented on [#2858](https://github.com/astropy/astroquery/pull/2858#issuecomment-1772526416) in [astropy/astroquery](https://github.com/astropy/astroquery) +7. 🗣 Commented on [#2603](https://github.com/metabrainz/listenbrainz-server/pull/2603#issuecomment-1772416210) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#39](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/39#issuecomment-1772385172) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +9. 🗣 Commented on [#44](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/44#issuecomment-1772382777) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) +10. 🗣 Commented on [#982](https://github.com/oemof/oemof-solph/pull/982#issuecomment-1772309451) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) From a1c137cd7f0dca4641cecfdc9ec6a1837e3d6a79 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 13:37:19 +0000 Subject: [PATCH 0406/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 08ee90ca..40a231e7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1339](https://github.com/NeuralEnsemble/python-neo/pull/1339#issuecomment-1772697726) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -2. 🗣 Commented on [#2941](https://github.com/dipy/dipy/pull/2941#issuecomment-1772601370) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#2859](https://github.com/astropy/astroquery/pull/2859#issuecomment-1772581191) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#45](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/45#issuecomment-1772554863) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) -5. 🗣 Commented on [#40](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/40#issuecomment-1772554493) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) -6. 🗣 Commented on [#2858](https://github.com/astropy/astroquery/pull/2858#issuecomment-1772526416) in [astropy/astroquery](https://github.com/astropy/astroquery) -7. 🗣 Commented on [#2603](https://github.com/metabrainz/listenbrainz-server/pull/2603#issuecomment-1772416210) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#39](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/39#issuecomment-1772385172) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) -9. 🗣 Commented on [#44](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/44#issuecomment-1772382777) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) -10. 🗣 Commented on [#982](https://github.com/oemof/oemof-solph/pull/982#issuecomment-1772309451) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +1. 🗣 Commented on [#2681](https://github.com/astropy/astroquery/pull/2681#issuecomment-1772747570) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#1339](https://github.com/NeuralEnsemble/python-neo/pull/1339#issuecomment-1772697726) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +3. 🗣 Commented on [#2941](https://github.com/dipy/dipy/pull/2941#issuecomment-1772601370) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#2859](https://github.com/astropy/astroquery/pull/2859#issuecomment-1772581191) in [astropy/astroquery](https://github.com/astropy/astroquery) +5. 🗣 Commented on [#45](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/45#issuecomment-1772554863) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) +6. 🗣 Commented on [#40](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/40#issuecomment-1772554493) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +7. 🗣 Commented on [#2858](https://github.com/astropy/astroquery/pull/2858#issuecomment-1772526416) in [astropy/astroquery](https://github.com/astropy/astroquery) +8. 🗣 Commented on [#2603](https://github.com/metabrainz/listenbrainz-server/pull/2603#issuecomment-1772416210) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#39](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/39#issuecomment-1772385172) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +10. 🗣 Commented on [#44](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/44#issuecomment-1772382777) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) From 8596157a6608fcc8b66ca0560783d86538e32ad4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 14:37:20 +0000 Subject: [PATCH 0407/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 40a231e7..d59ebc47 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2681](https://github.com/astropy/astroquery/pull/2681#issuecomment-1772747570) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#1339](https://github.com/NeuralEnsemble/python-neo/pull/1339#issuecomment-1772697726) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -3. 🗣 Commented on [#2941](https://github.com/dipy/dipy/pull/2941#issuecomment-1772601370) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#2859](https://github.com/astropy/astroquery/pull/2859#issuecomment-1772581191) in [astropy/astroquery](https://github.com/astropy/astroquery) -5. 🗣 Commented on [#45](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/45#issuecomment-1772554863) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) -6. 🗣 Commented on [#40](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/40#issuecomment-1772554493) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) -7. 🗣 Commented on [#2858](https://github.com/astropy/astroquery/pull/2858#issuecomment-1772526416) in [astropy/astroquery](https://github.com/astropy/astroquery) -8. 🗣 Commented on [#2603](https://github.com/metabrainz/listenbrainz-server/pull/2603#issuecomment-1772416210) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#39](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/39#issuecomment-1772385172) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) -10. 🗣 Commented on [#44](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/44#issuecomment-1772382777) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) +1. 🗣 Commented on [#222](https://github.com/aimclub/GOLEM/pull/222#issuecomment-1772835343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#2681](https://github.com/astropy/astroquery/pull/2681#issuecomment-1772747570) in [astropy/astroquery](https://github.com/astropy/astroquery) +3. 🗣 Commented on [#1339](https://github.com/NeuralEnsemble/python-neo/pull/1339#issuecomment-1772697726) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +4. 🗣 Commented on [#2941](https://github.com/dipy/dipy/pull/2941#issuecomment-1772601370) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#2859](https://github.com/astropy/astroquery/pull/2859#issuecomment-1772581191) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#45](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/45#issuecomment-1772554863) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) +7. 🗣 Commented on [#40](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/40#issuecomment-1772554493) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +8. 🗣 Commented on [#2858](https://github.com/astropy/astroquery/pull/2858#issuecomment-1772526416) in [astropy/astroquery](https://github.com/astropy/astroquery) +9. 🗣 Commented on [#2603](https://github.com/metabrainz/listenbrainz-server/pull/2603#issuecomment-1772416210) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#39](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/39#issuecomment-1772385172) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) From 63d4311b3c6ec3c5bf7a71ee18c601c393979ba7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 16:20:29 +0000 Subject: [PATCH 0408/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d59ebc47..1c3c287b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#222](https://github.com/aimclub/GOLEM/pull/222#issuecomment-1772835343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#2681](https://github.com/astropy/astroquery/pull/2681#issuecomment-1772747570) in [astropy/astroquery](https://github.com/astropy/astroquery) -3. 🗣 Commented on [#1339](https://github.com/NeuralEnsemble/python-neo/pull/1339#issuecomment-1772697726) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -4. 🗣 Commented on [#2941](https://github.com/dipy/dipy/pull/2941#issuecomment-1772601370) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#2859](https://github.com/astropy/astroquery/pull/2859#issuecomment-1772581191) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#45](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/45#issuecomment-1772554863) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) -7. 🗣 Commented on [#40](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/40#issuecomment-1772554493) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) -8. 🗣 Commented on [#2858](https://github.com/astropy/astroquery/pull/2858#issuecomment-1772526416) in [astropy/astroquery](https://github.com/astropy/astroquery) -9. 🗣 Commented on [#2603](https://github.com/metabrainz/listenbrainz-server/pull/2603#issuecomment-1772416210) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#39](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/39#issuecomment-1772385172) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +1. 🗣 Commented on [#766](https://github.com/scilus/scilpy/pull/766#issuecomment-1773020261) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#2](https://github.com/cpp-lln-lab/Datasets/pull/2#issuecomment-1772979791) in [cpp-lln-lab/Datasets](https://github.com/cpp-lln-lab/Datasets) +3. 🗣 Commented on [#2947](https://github.com/dipy/dipy/pull/2947#issuecomment-1772974198) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#222](https://github.com/aimclub/GOLEM/pull/222#issuecomment-1772835343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#2681](https://github.com/astropy/astroquery/pull/2681#issuecomment-1772747570) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#1339](https://github.com/NeuralEnsemble/python-neo/pull/1339#issuecomment-1772697726) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +7. 🗣 Commented on [#2941](https://github.com/dipy/dipy/pull/2941#issuecomment-1772601370) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#2859](https://github.com/astropy/astroquery/pull/2859#issuecomment-1772581191) in [astropy/astroquery](https://github.com/astropy/astroquery) +9. 🗣 Commented on [#45](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/45#issuecomment-1772554863) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) +10. 🗣 Commented on [#40](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/40#issuecomment-1772554493) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) From 945d6152d69a40c678a185ebe7b327c188731f13 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 16:39:36 +0000 Subject: [PATCH 0409/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1c3c287b..20854139 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#766](https://github.com/scilus/scilpy/pull/766#issuecomment-1773020261) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#2](https://github.com/cpp-lln-lab/Datasets/pull/2#issuecomment-1772979791) in [cpp-lln-lab/Datasets](https://github.com/cpp-lln-lab/Datasets) -3. 🗣 Commented on [#2947](https://github.com/dipy/dipy/pull/2947#issuecomment-1772974198) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#222](https://github.com/aimclub/GOLEM/pull/222#issuecomment-1772835343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#2681](https://github.com/astropy/astroquery/pull/2681#issuecomment-1772747570) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#1339](https://github.com/NeuralEnsemble/python-neo/pull/1339#issuecomment-1772697726) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -7. 🗣 Commented on [#2941](https://github.com/dipy/dipy/pull/2941#issuecomment-1772601370) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#2859](https://github.com/astropy/astroquery/pull/2859#issuecomment-1772581191) in [astropy/astroquery](https://github.com/astropy/astroquery) -9. 🗣 Commented on [#45](https://github.com/eastgenomics/egg5_dias_CEN_config/pull/45#issuecomment-1772554863) in [eastgenomics/egg5_dias_CEN_config](https://github.com/eastgenomics/egg5_dias_CEN_config) -10. 🗣 Commented on [#40](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/40#issuecomment-1772554493) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +1. 🗣 Commented on [#1](https://github.com/eastgenomics/vep_issue_testing/pull/1#issuecomment-1773045802) in [eastgenomics/vep_issue_testing](https://github.com/eastgenomics/vep_issue_testing) +2. 🗣 Commented on [#43](https://github.com/eastgenomics/eris/pull/43#issuecomment-1773041697) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#766](https://github.com/scilus/scilpy/pull/766#issuecomment-1773020261) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#2](https://github.com/cpp-lln-lab/Datasets/pull/2#issuecomment-1772979791) in [cpp-lln-lab/Datasets](https://github.com/cpp-lln-lab/Datasets) +5. 🗣 Commented on [#2947](https://github.com/dipy/dipy/pull/2947#issuecomment-1772974198) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#222](https://github.com/aimclub/GOLEM/pull/222#issuecomment-1772835343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#2681](https://github.com/astropy/astroquery/pull/2681#issuecomment-1772747570) in [astropy/astroquery](https://github.com/astropy/astroquery) +8. 🗣 Commented on [#1339](https://github.com/NeuralEnsemble/python-neo/pull/1339#issuecomment-1772697726) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +9. 🗣 Commented on [#2941](https://github.com/dipy/dipy/pull/2941#issuecomment-1772601370) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#2859](https://github.com/astropy/astroquery/pull/2859#issuecomment-1772581191) in [astropy/astroquery](https://github.com/astropy/astroquery) From b2800c91988f5baf84ea88616a6635876f87fc3c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 21:13:22 +0000 Subject: [PATCH 0410/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 20854139..0b3e7c6f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/eastgenomics/vep_issue_testing/pull/1#issuecomment-1773045802) in [eastgenomics/vep_issue_testing](https://github.com/eastgenomics/vep_issue_testing) -2. 🗣 Commented on [#43](https://github.com/eastgenomics/eris/pull/43#issuecomment-1773041697) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#766](https://github.com/scilus/scilpy/pull/766#issuecomment-1773020261) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#2](https://github.com/cpp-lln-lab/Datasets/pull/2#issuecomment-1772979791) in [cpp-lln-lab/Datasets](https://github.com/cpp-lln-lab/Datasets) -5. 🗣 Commented on [#2947](https://github.com/dipy/dipy/pull/2947#issuecomment-1772974198) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#222](https://github.com/aimclub/GOLEM/pull/222#issuecomment-1772835343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#2681](https://github.com/astropy/astroquery/pull/2681#issuecomment-1772747570) in [astropy/astroquery](https://github.com/astropy/astroquery) -8. 🗣 Commented on [#1339](https://github.com/NeuralEnsemble/python-neo/pull/1339#issuecomment-1772697726) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -9. 🗣 Commented on [#2941](https://github.com/dipy/dipy/pull/2941#issuecomment-1772601370) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#2859](https://github.com/astropy/astroquery/pull/2859#issuecomment-1772581191) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#2932](https://github.com/dipy/dipy/pull/2932#issuecomment-1773378178) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#1](https://github.com/eastgenomics/vep_issue_testing/pull/1#issuecomment-1773045802) in [eastgenomics/vep_issue_testing](https://github.com/eastgenomics/vep_issue_testing) +3. 🗣 Commented on [#43](https://github.com/eastgenomics/eris/pull/43#issuecomment-1773041697) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#766](https://github.com/scilus/scilpy/pull/766#issuecomment-1773020261) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#2](https://github.com/cpp-lln-lab/Datasets/pull/2#issuecomment-1772979791) in [cpp-lln-lab/Datasets](https://github.com/cpp-lln-lab/Datasets) +6. 🗣 Commented on [#2947](https://github.com/dipy/dipy/pull/2947#issuecomment-1772974198) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#222](https://github.com/aimclub/GOLEM/pull/222#issuecomment-1772835343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +8. 🗣 Commented on [#2681](https://github.com/astropy/astroquery/pull/2681#issuecomment-1772747570) in [astropy/astroquery](https://github.com/astropy/astroquery) +9. 🗣 Commented on [#1339](https://github.com/NeuralEnsemble/python-neo/pull/1339#issuecomment-1772697726) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +10. 🗣 Commented on [#2941](https://github.com/dipy/dipy/pull/2941#issuecomment-1772601370) in [dipy/dipy](https://github.com/dipy/dipy) From 133b266ff34df6b2d0c85ffdc0d6e79b340fe107 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 21:37:09 +0000 Subject: [PATCH 0411/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0b3e7c6f..43f5ff51 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2932](https://github.com/dipy/dipy/pull/2932#issuecomment-1773378178) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#1](https://github.com/eastgenomics/vep_issue_testing/pull/1#issuecomment-1773045802) in [eastgenomics/vep_issue_testing](https://github.com/eastgenomics/vep_issue_testing) -3. 🗣 Commented on [#43](https://github.com/eastgenomics/eris/pull/43#issuecomment-1773041697) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#766](https://github.com/scilus/scilpy/pull/766#issuecomment-1773020261) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#2](https://github.com/cpp-lln-lab/Datasets/pull/2#issuecomment-1772979791) in [cpp-lln-lab/Datasets](https://github.com/cpp-lln-lab/Datasets) -6. 🗣 Commented on [#2947](https://github.com/dipy/dipy/pull/2947#issuecomment-1772974198) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#222](https://github.com/aimclub/GOLEM/pull/222#issuecomment-1772835343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -8. 🗣 Commented on [#2681](https://github.com/astropy/astroquery/pull/2681#issuecomment-1772747570) in [astropy/astroquery](https://github.com/astropy/astroquery) -9. 🗣 Commented on [#1339](https://github.com/NeuralEnsemble/python-neo/pull/1339#issuecomment-1772697726) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -10. 🗣 Commented on [#2941](https://github.com/dipy/dipy/pull/2941#issuecomment-1772601370) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#1341](https://github.com/NeuralEnsemble/python-neo/pull/1341#issuecomment-1773415494) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +2. 🗣 Commented on [#2932](https://github.com/dipy/dipy/pull/2932#issuecomment-1773378178) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#1](https://github.com/eastgenomics/vep_issue_testing/pull/1#issuecomment-1773045802) in [eastgenomics/vep_issue_testing](https://github.com/eastgenomics/vep_issue_testing) +4. 🗣 Commented on [#43](https://github.com/eastgenomics/eris/pull/43#issuecomment-1773041697) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#766](https://github.com/scilus/scilpy/pull/766#issuecomment-1773020261) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#2](https://github.com/cpp-lln-lab/Datasets/pull/2#issuecomment-1772979791) in [cpp-lln-lab/Datasets](https://github.com/cpp-lln-lab/Datasets) +7. 🗣 Commented on [#2947](https://github.com/dipy/dipy/pull/2947#issuecomment-1772974198) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#222](https://github.com/aimclub/GOLEM/pull/222#issuecomment-1772835343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#2681](https://github.com/astropy/astroquery/pull/2681#issuecomment-1772747570) in [astropy/astroquery](https://github.com/astropy/astroquery) +10. 🗣 Commented on [#1339](https://github.com/NeuralEnsemble/python-neo/pull/1339#issuecomment-1772697726) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) From 0058d4ff5f96fbfab8c9188cfbf79b4b650428b5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 22:37:15 +0000 Subject: [PATCH 0412/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 43f5ff51..eec5c504 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1341](https://github.com/NeuralEnsemble/python-neo/pull/1341#issuecomment-1773415494) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -2. 🗣 Commented on [#2932](https://github.com/dipy/dipy/pull/2932#issuecomment-1773378178) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#1](https://github.com/eastgenomics/vep_issue_testing/pull/1#issuecomment-1773045802) in [eastgenomics/vep_issue_testing](https://github.com/eastgenomics/vep_issue_testing) -4. 🗣 Commented on [#43](https://github.com/eastgenomics/eris/pull/43#issuecomment-1773041697) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#766](https://github.com/scilus/scilpy/pull/766#issuecomment-1773020261) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#2](https://github.com/cpp-lln-lab/Datasets/pull/2#issuecomment-1772979791) in [cpp-lln-lab/Datasets](https://github.com/cpp-lln-lab/Datasets) -7. 🗣 Commented on [#2947](https://github.com/dipy/dipy/pull/2947#issuecomment-1772974198) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#222](https://github.com/aimclub/GOLEM/pull/222#issuecomment-1772835343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#2681](https://github.com/astropy/astroquery/pull/2681#issuecomment-1772747570) in [astropy/astroquery](https://github.com/astropy/astroquery) -10. 🗣 Commented on [#1339](https://github.com/NeuralEnsemble/python-neo/pull/1339#issuecomment-1772697726) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +1. 🗣 Commented on [#980](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/980#issuecomment-1773459142) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#1341](https://github.com/NeuralEnsemble/python-neo/pull/1341#issuecomment-1773415494) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +3. 🗣 Commented on [#2932](https://github.com/dipy/dipy/pull/2932#issuecomment-1773378178) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#1](https://github.com/eastgenomics/vep_issue_testing/pull/1#issuecomment-1773045802) in [eastgenomics/vep_issue_testing](https://github.com/eastgenomics/vep_issue_testing) +5. 🗣 Commented on [#43](https://github.com/eastgenomics/eris/pull/43#issuecomment-1773041697) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#766](https://github.com/scilus/scilpy/pull/766#issuecomment-1773020261) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#2](https://github.com/cpp-lln-lab/Datasets/pull/2#issuecomment-1772979791) in [cpp-lln-lab/Datasets](https://github.com/cpp-lln-lab/Datasets) +8. 🗣 Commented on [#2947](https://github.com/dipy/dipy/pull/2947#issuecomment-1772974198) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#222](https://github.com/aimclub/GOLEM/pull/222#issuecomment-1772835343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#2681](https://github.com/astropy/astroquery/pull/2681#issuecomment-1772747570) in [astropy/astroquery](https://github.com/astropy/astroquery) From dd52d82c18e1ded1f012c416ffd1009c6c009243 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Oct 2023 07:37:01 +0000 Subject: [PATCH 0413/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index eec5c504..4efb14da 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#980](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/980#issuecomment-1773459142) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#1341](https://github.com/NeuralEnsemble/python-neo/pull/1341#issuecomment-1773415494) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -3. 🗣 Commented on [#2932](https://github.com/dipy/dipy/pull/2932#issuecomment-1773378178) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#1](https://github.com/eastgenomics/vep_issue_testing/pull/1#issuecomment-1773045802) in [eastgenomics/vep_issue_testing](https://github.com/eastgenomics/vep_issue_testing) -5. 🗣 Commented on [#43](https://github.com/eastgenomics/eris/pull/43#issuecomment-1773041697) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#766](https://github.com/scilus/scilpy/pull/766#issuecomment-1773020261) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#2](https://github.com/cpp-lln-lab/Datasets/pull/2#issuecomment-1772979791) in [cpp-lln-lab/Datasets](https://github.com/cpp-lln-lab/Datasets) -8. 🗣 Commented on [#2947](https://github.com/dipy/dipy/pull/2947#issuecomment-1772974198) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#222](https://github.com/aimclub/GOLEM/pull/222#issuecomment-1772835343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#2681](https://github.com/astropy/astroquery/pull/2681#issuecomment-1772747570) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#128](https://github.com/MDAnalysis/GridDataFormats/pull/128#issuecomment-1773706758) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) +2. 🗣 Commented on [#980](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/980#issuecomment-1773459142) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#1341](https://github.com/NeuralEnsemble/python-neo/pull/1341#issuecomment-1773415494) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +4. 🗣 Commented on [#2932](https://github.com/dipy/dipy/pull/2932#issuecomment-1773378178) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#1](https://github.com/eastgenomics/vep_issue_testing/pull/1#issuecomment-1773045802) in [eastgenomics/vep_issue_testing](https://github.com/eastgenomics/vep_issue_testing) +6. 🗣 Commented on [#43](https://github.com/eastgenomics/eris/pull/43#issuecomment-1773041697) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#766](https://github.com/scilus/scilpy/pull/766#issuecomment-1773020261) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#2](https://github.com/cpp-lln-lab/Datasets/pull/2#issuecomment-1772979791) in [cpp-lln-lab/Datasets](https://github.com/cpp-lln-lab/Datasets) +9. 🗣 Commented on [#2947](https://github.com/dipy/dipy/pull/2947#issuecomment-1772974198) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#222](https://github.com/aimclub/GOLEM/pull/222#issuecomment-1772835343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) From fbcb35bfe1014e78bd3650885f51382d7439ce65 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 22 Oct 2023 05:37:31 +0000 Subject: [PATCH 0414/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4efb14da..587d9e3b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#128](https://github.com/MDAnalysis/GridDataFormats/pull/128#issuecomment-1773706758) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) -2. 🗣 Commented on [#980](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/980#issuecomment-1773459142) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#1341](https://github.com/NeuralEnsemble/python-neo/pull/1341#issuecomment-1773415494) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -4. 🗣 Commented on [#2932](https://github.com/dipy/dipy/pull/2932#issuecomment-1773378178) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#1](https://github.com/eastgenomics/vep_issue_testing/pull/1#issuecomment-1773045802) in [eastgenomics/vep_issue_testing](https://github.com/eastgenomics/vep_issue_testing) -6. 🗣 Commented on [#43](https://github.com/eastgenomics/eris/pull/43#issuecomment-1773041697) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#766](https://github.com/scilus/scilpy/pull/766#issuecomment-1773020261) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#2](https://github.com/cpp-lln-lab/Datasets/pull/2#issuecomment-1772979791) in [cpp-lln-lab/Datasets](https://github.com/cpp-lln-lab/Datasets) -9. 🗣 Commented on [#2947](https://github.com/dipy/dipy/pull/2947#issuecomment-1772974198) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#222](https://github.com/aimclub/GOLEM/pull/222#issuecomment-1772835343) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +1. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/Code-United-2/pull/1#issuecomment-1774000595) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +2. 🗣 Commented on [#128](https://github.com/MDAnalysis/GridDataFormats/pull/128#issuecomment-1773706758) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) +3. 🗣 Commented on [#980](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/980#issuecomment-1773459142) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#1341](https://github.com/NeuralEnsemble/python-neo/pull/1341#issuecomment-1773415494) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +5. 🗣 Commented on [#2932](https://github.com/dipy/dipy/pull/2932#issuecomment-1773378178) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#1](https://github.com/eastgenomics/vep_issue_testing/pull/1#issuecomment-1773045802) in [eastgenomics/vep_issue_testing](https://github.com/eastgenomics/vep_issue_testing) +7. 🗣 Commented on [#43](https://github.com/eastgenomics/eris/pull/43#issuecomment-1773041697) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#766](https://github.com/scilus/scilpy/pull/766#issuecomment-1773020261) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#2](https://github.com/cpp-lln-lab/Datasets/pull/2#issuecomment-1772979791) in [cpp-lln-lab/Datasets](https://github.com/cpp-lln-lab/Datasets) +10. 🗣 Commented on [#2947](https://github.com/dipy/dipy/pull/2947#issuecomment-1772974198) in [dipy/dipy](https://github.com/dipy/dipy) From 7f8fe33d7a8f99e56358e5ddf25c6e1c18f57612 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 22 Oct 2023 06:19:45 +0000 Subject: [PATCH 0415/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 587d9e3b..a32c7119 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/Code-United-2/pull/1#issuecomment-1774000595) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -2. 🗣 Commented on [#128](https://github.com/MDAnalysis/GridDataFormats/pull/128#issuecomment-1773706758) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) -3. 🗣 Commented on [#980](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/980#issuecomment-1773459142) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#1341](https://github.com/NeuralEnsemble/python-neo/pull/1341#issuecomment-1773415494) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -5. 🗣 Commented on [#2932](https://github.com/dipy/dipy/pull/2932#issuecomment-1773378178) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#1](https://github.com/eastgenomics/vep_issue_testing/pull/1#issuecomment-1773045802) in [eastgenomics/vep_issue_testing](https://github.com/eastgenomics/vep_issue_testing) -7. 🗣 Commented on [#43](https://github.com/eastgenomics/eris/pull/43#issuecomment-1773041697) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#766](https://github.com/scilus/scilpy/pull/766#issuecomment-1773020261) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#2](https://github.com/cpp-lln-lab/Datasets/pull/2#issuecomment-1772979791) in [cpp-lln-lab/Datasets](https://github.com/cpp-lln-lab/Datasets) -10. 🗣 Commented on [#2947](https://github.com/dipy/dipy/pull/2947#issuecomment-1772974198) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/hacktoberfest-3/pull/1#issuecomment-1774001162) in [Krishna-Singhal/hacktoberfest-3](https://github.com/Krishna-Singhal/hacktoberfest-3) +2. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/Code-United-2/pull/1#issuecomment-1774000595) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +3. 🗣 Commented on [#128](https://github.com/MDAnalysis/GridDataFormats/pull/128#issuecomment-1773706758) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) +4. 🗣 Commented on [#980](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/980#issuecomment-1773459142) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1341](https://github.com/NeuralEnsemble/python-neo/pull/1341#issuecomment-1773415494) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +6. 🗣 Commented on [#2932](https://github.com/dipy/dipy/pull/2932#issuecomment-1773378178) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#1](https://github.com/eastgenomics/vep_issue_testing/pull/1#issuecomment-1773045802) in [eastgenomics/vep_issue_testing](https://github.com/eastgenomics/vep_issue_testing) +8. 🗣 Commented on [#43](https://github.com/eastgenomics/eris/pull/43#issuecomment-1773041697) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#766](https://github.com/scilus/scilpy/pull/766#issuecomment-1773020261) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#2](https://github.com/cpp-lln-lab/Datasets/pull/2#issuecomment-1772979791) in [cpp-lln-lab/Datasets](https://github.com/cpp-lln-lab/Datasets) From 28f6553babbe5cbe5b6b6c3d0d3df200f84fb1ec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 22 Oct 2023 07:37:16 +0000 Subject: [PATCH 0416/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a32c7119..4e521f0b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/hacktoberfest-3/pull/1#issuecomment-1774001162) in [Krishna-Singhal/hacktoberfest-3](https://github.com/Krishna-Singhal/hacktoberfest-3) -2. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/Code-United-2/pull/1#issuecomment-1774000595) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -3. 🗣 Commented on [#128](https://github.com/MDAnalysis/GridDataFormats/pull/128#issuecomment-1773706758) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) -4. 🗣 Commented on [#980](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/980#issuecomment-1773459142) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1341](https://github.com/NeuralEnsemble/python-neo/pull/1341#issuecomment-1773415494) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -6. 🗣 Commented on [#2932](https://github.com/dipy/dipy/pull/2932#issuecomment-1773378178) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#1](https://github.com/eastgenomics/vep_issue_testing/pull/1#issuecomment-1773045802) in [eastgenomics/vep_issue_testing](https://github.com/eastgenomics/vep_issue_testing) -8. 🗣 Commented on [#43](https://github.com/eastgenomics/eris/pull/43#issuecomment-1773041697) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#766](https://github.com/scilus/scilpy/pull/766#issuecomment-1773020261) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#2](https://github.com/cpp-lln-lab/Datasets/pull/2#issuecomment-1772979791) in [cpp-lln-lab/Datasets](https://github.com/cpp-lln-lab/Datasets) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/reliableGPT/pull/1#issuecomment-1774017712) in [tuhinmallick/reliableGPT](https://github.com/tuhinmallick/reliableGPT) +2. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/hacktoberfest-3/pull/1#issuecomment-1774001162) in [Krishna-Singhal/hacktoberfest-3](https://github.com/Krishna-Singhal/hacktoberfest-3) +3. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/Code-United-2/pull/1#issuecomment-1774000595) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +4. 🗣 Commented on [#128](https://github.com/MDAnalysis/GridDataFormats/pull/128#issuecomment-1773706758) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) +5. 🗣 Commented on [#980](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/980#issuecomment-1773459142) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#1341](https://github.com/NeuralEnsemble/python-neo/pull/1341#issuecomment-1773415494) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +7. 🗣 Commented on [#2932](https://github.com/dipy/dipy/pull/2932#issuecomment-1773378178) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#1](https://github.com/eastgenomics/vep_issue_testing/pull/1#issuecomment-1773045802) in [eastgenomics/vep_issue_testing](https://github.com/eastgenomics/vep_issue_testing) +9. 🗣 Commented on [#43](https://github.com/eastgenomics/eris/pull/43#issuecomment-1773041697) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#766](https://github.com/scilus/scilpy/pull/766#issuecomment-1773020261) in [scilus/scilpy](https://github.com/scilus/scilpy) From 2cea867e74b1a6916330585592af9973050ce62c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 22 Oct 2023 13:16:38 +0000 Subject: [PATCH 0417/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4e521f0b..6a89f1b2 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/reliableGPT/pull/1#issuecomment-1774017712) in [tuhinmallick/reliableGPT](https://github.com/tuhinmallick/reliableGPT) -2. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/hacktoberfest-3/pull/1#issuecomment-1774001162) in [Krishna-Singhal/hacktoberfest-3](https://github.com/Krishna-Singhal/hacktoberfest-3) -3. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/Code-United-2/pull/1#issuecomment-1774000595) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -4. 🗣 Commented on [#128](https://github.com/MDAnalysis/GridDataFormats/pull/128#issuecomment-1773706758) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) -5. 🗣 Commented on [#980](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/980#issuecomment-1773459142) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#1341](https://github.com/NeuralEnsemble/python-neo/pull/1341#issuecomment-1773415494) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -7. 🗣 Commented on [#2932](https://github.com/dipy/dipy/pull/2932#issuecomment-1773378178) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#1](https://github.com/eastgenomics/vep_issue_testing/pull/1#issuecomment-1773045802) in [eastgenomics/vep_issue_testing](https://github.com/eastgenomics/vep_issue_testing) -9. 🗣 Commented on [#43](https://github.com/eastgenomics/eris/pull/43#issuecomment-1773041697) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#766](https://github.com/scilus/scilpy/pull/766#issuecomment-1773020261) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#852](https://github.com/PyThaiNLP/pythainlp/pull/852#issuecomment-1774089595) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/reliableGPT/pull/1#issuecomment-1774017712) in [tuhinmallick/reliableGPT](https://github.com/tuhinmallick/reliableGPT) +3. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/hacktoberfest-3/pull/1#issuecomment-1774001162) in [Krishna-Singhal/hacktoberfest-3](https://github.com/Krishna-Singhal/hacktoberfest-3) +4. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/Code-United-2/pull/1#issuecomment-1774000595) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +5. 🗣 Commented on [#128](https://github.com/MDAnalysis/GridDataFormats/pull/128#issuecomment-1773706758) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) +6. 🗣 Commented on [#980](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/980#issuecomment-1773459142) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#1341](https://github.com/NeuralEnsemble/python-neo/pull/1341#issuecomment-1773415494) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +8. 🗣 Commented on [#2932](https://github.com/dipy/dipy/pull/2932#issuecomment-1773378178) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#1](https://github.com/eastgenomics/vep_issue_testing/pull/1#issuecomment-1773045802) in [eastgenomics/vep_issue_testing](https://github.com/eastgenomics/vep_issue_testing) +10. 🗣 Commented on [#43](https://github.com/eastgenomics/eris/pull/43#issuecomment-1773041697) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From cbb18a14865e3d6e1b81117c43faaf5ecf5b5b20 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 22 Oct 2023 21:12:36 +0000 Subject: [PATCH 0418/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6a89f1b2..a5039e62 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#852](https://github.com/PyThaiNLP/pythainlp/pull/852#issuecomment-1774089595) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/reliableGPT/pull/1#issuecomment-1774017712) in [tuhinmallick/reliableGPT](https://github.com/tuhinmallick/reliableGPT) -3. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/hacktoberfest-3/pull/1#issuecomment-1774001162) in [Krishna-Singhal/hacktoberfest-3](https://github.com/Krishna-Singhal/hacktoberfest-3) -4. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/Code-United-2/pull/1#issuecomment-1774000595) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -5. 🗣 Commented on [#128](https://github.com/MDAnalysis/GridDataFormats/pull/128#issuecomment-1773706758) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) -6. 🗣 Commented on [#980](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/980#issuecomment-1773459142) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#1341](https://github.com/NeuralEnsemble/python-neo/pull/1341#issuecomment-1773415494) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -8. 🗣 Commented on [#2932](https://github.com/dipy/dipy/pull/2932#issuecomment-1773378178) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#1](https://github.com/eastgenomics/vep_issue_testing/pull/1#issuecomment-1773045802) in [eastgenomics/vep_issue_testing](https://github.com/eastgenomics/vep_issue_testing) -10. 🗣 Commented on [#43](https://github.com/eastgenomics/eris/pull/43#issuecomment-1773041697) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#203](https://github.com/CartoonFan/lutris/pull/203#issuecomment-1774198756) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/sample-apps/pull/1#issuecomment-1774197012) in [tuhinmallick/sample-apps](https://github.com/tuhinmallick/sample-apps) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-rag-invoice-cpu/pull/1#issuecomment-1774196389) in [tuhinmallick/llm-rag-invoice-cpu](https://github.com/tuhinmallick/llm-rag-invoice-cpu) +4. 🗣 Commented on [#852](https://github.com/PyThaiNLP/pythainlp/pull/852#issuecomment-1774089595) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/reliableGPT/pull/1#issuecomment-1774017712) in [tuhinmallick/reliableGPT](https://github.com/tuhinmallick/reliableGPT) +6. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/hacktoberfest-3/pull/1#issuecomment-1774001162) in [Krishna-Singhal/hacktoberfest-3](https://github.com/Krishna-Singhal/hacktoberfest-3) +7. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/Code-United-2/pull/1#issuecomment-1774000595) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +8. 🗣 Commented on [#128](https://github.com/MDAnalysis/GridDataFormats/pull/128#issuecomment-1773706758) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) +9. 🗣 Commented on [#980](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/980#issuecomment-1773459142) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#1341](https://github.com/NeuralEnsemble/python-neo/pull/1341#issuecomment-1773415494) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) From cd205ed5e136743d65988517e8d1562c08aa9b76 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 08:20:55 +0000 Subject: [PATCH 0419/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a5039e62..d86717a3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#203](https://github.com/CartoonFan/lutris/pull/203#issuecomment-1774198756) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/sample-apps/pull/1#issuecomment-1774197012) in [tuhinmallick/sample-apps](https://github.com/tuhinmallick/sample-apps) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-rag-invoice-cpu/pull/1#issuecomment-1774196389) in [tuhinmallick/llm-rag-invoice-cpu](https://github.com/tuhinmallick/llm-rag-invoice-cpu) -4. 🗣 Commented on [#852](https://github.com/PyThaiNLP/pythainlp/pull/852#issuecomment-1774089595) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/reliableGPT/pull/1#issuecomment-1774017712) in [tuhinmallick/reliableGPT](https://github.com/tuhinmallick/reliableGPT) -6. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/hacktoberfest-3/pull/1#issuecomment-1774001162) in [Krishna-Singhal/hacktoberfest-3](https://github.com/Krishna-Singhal/hacktoberfest-3) -7. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/Code-United-2/pull/1#issuecomment-1774000595) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -8. 🗣 Commented on [#128](https://github.com/MDAnalysis/GridDataFormats/pull/128#issuecomment-1773706758) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) -9. 🗣 Commented on [#980](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/980#issuecomment-1773459142) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#1341](https://github.com/NeuralEnsemble/python-neo/pull/1341#issuecomment-1773415494) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +1. 🗣 Commented on [#854](https://github.com/PyThaiNLP/pythainlp/pull/854#issuecomment-1774655895) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#203](https://github.com/CartoonFan/lutris/pull/203#issuecomment-1774198756) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/sample-apps/pull/1#issuecomment-1774197012) in [tuhinmallick/sample-apps](https://github.com/tuhinmallick/sample-apps) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-rag-invoice-cpu/pull/1#issuecomment-1774196389) in [tuhinmallick/llm-rag-invoice-cpu](https://github.com/tuhinmallick/llm-rag-invoice-cpu) +5. 🗣 Commented on [#852](https://github.com/PyThaiNLP/pythainlp/pull/852#issuecomment-1774089595) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/reliableGPT/pull/1#issuecomment-1774017712) in [tuhinmallick/reliableGPT](https://github.com/tuhinmallick/reliableGPT) +7. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/hacktoberfest-3/pull/1#issuecomment-1774001162) in [Krishna-Singhal/hacktoberfest-3](https://github.com/Krishna-Singhal/hacktoberfest-3) +8. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/Code-United-2/pull/1#issuecomment-1774000595) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +9. 🗣 Commented on [#128](https://github.com/MDAnalysis/GridDataFormats/pull/128#issuecomment-1773706758) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) +10. 🗣 Commented on [#980](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/980#issuecomment-1773459142) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From a34f0ef64e0e240ae0bd1f7871ac2aab75ad97dc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 08:38:17 +0000 Subject: [PATCH 0420/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d86717a3..4c691c05 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#854](https://github.com/PyThaiNLP/pythainlp/pull/854#issuecomment-1774655895) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#203](https://github.com/CartoonFan/lutris/pull/203#issuecomment-1774198756) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/sample-apps/pull/1#issuecomment-1774197012) in [tuhinmallick/sample-apps](https://github.com/tuhinmallick/sample-apps) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-rag-invoice-cpu/pull/1#issuecomment-1774196389) in [tuhinmallick/llm-rag-invoice-cpu](https://github.com/tuhinmallick/llm-rag-invoice-cpu) -5. 🗣 Commented on [#852](https://github.com/PyThaiNLP/pythainlp/pull/852#issuecomment-1774089595) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/reliableGPT/pull/1#issuecomment-1774017712) in [tuhinmallick/reliableGPT](https://github.com/tuhinmallick/reliableGPT) -7. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/hacktoberfest-3/pull/1#issuecomment-1774001162) in [Krishna-Singhal/hacktoberfest-3](https://github.com/Krishna-Singhal/hacktoberfest-3) -8. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/Code-United-2/pull/1#issuecomment-1774000595) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -9. 🗣 Commented on [#128](https://github.com/MDAnalysis/GridDataFormats/pull/128#issuecomment-1773706758) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) -10. 🗣 Commented on [#980](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/980#issuecomment-1773459142) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#102](https://github.com/aimclub/Fedot.Industrial/pull/102#issuecomment-1774670084) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +2. 🗣 Commented on [#854](https://github.com/PyThaiNLP/pythainlp/pull/854#issuecomment-1774655895) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#203](https://github.com/CartoonFan/lutris/pull/203#issuecomment-1774198756) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/sample-apps/pull/1#issuecomment-1774197012) in [tuhinmallick/sample-apps](https://github.com/tuhinmallick/sample-apps) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-rag-invoice-cpu/pull/1#issuecomment-1774196389) in [tuhinmallick/llm-rag-invoice-cpu](https://github.com/tuhinmallick/llm-rag-invoice-cpu) +6. 🗣 Commented on [#852](https://github.com/PyThaiNLP/pythainlp/pull/852#issuecomment-1774089595) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/reliableGPT/pull/1#issuecomment-1774017712) in [tuhinmallick/reliableGPT](https://github.com/tuhinmallick/reliableGPT) +8. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/hacktoberfest-3/pull/1#issuecomment-1774001162) in [Krishna-Singhal/hacktoberfest-3](https://github.com/Krishna-Singhal/hacktoberfest-3) +9. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/Code-United-2/pull/1#issuecomment-1774000595) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +10. 🗣 Commented on [#128](https://github.com/MDAnalysis/GridDataFormats/pull/128#issuecomment-1773706758) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) From d3679cbe83bf4b9e6384622e520ef97015e6b675 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 10:38:09 +0000 Subject: [PATCH 0421/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4c691c05..ea56b929 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#102](https://github.com/aimclub/Fedot.Industrial/pull/102#issuecomment-1774670084) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -2. 🗣 Commented on [#854](https://github.com/PyThaiNLP/pythainlp/pull/854#issuecomment-1774655895) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#203](https://github.com/CartoonFan/lutris/pull/203#issuecomment-1774198756) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/sample-apps/pull/1#issuecomment-1774197012) in [tuhinmallick/sample-apps](https://github.com/tuhinmallick/sample-apps) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-rag-invoice-cpu/pull/1#issuecomment-1774196389) in [tuhinmallick/llm-rag-invoice-cpu](https://github.com/tuhinmallick/llm-rag-invoice-cpu) -6. 🗣 Commented on [#852](https://github.com/PyThaiNLP/pythainlp/pull/852#issuecomment-1774089595) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/reliableGPT/pull/1#issuecomment-1774017712) in [tuhinmallick/reliableGPT](https://github.com/tuhinmallick/reliableGPT) -8. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/hacktoberfest-3/pull/1#issuecomment-1774001162) in [Krishna-Singhal/hacktoberfest-3](https://github.com/Krishna-Singhal/hacktoberfest-3) -9. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/Code-United-2/pull/1#issuecomment-1774000595) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -10. 🗣 Commented on [#128](https://github.com/MDAnalysis/GridDataFormats/pull/128#issuecomment-1773706758) in [MDAnalysis/GridDataFormats](https://github.com/MDAnalysis/GridDataFormats) +1. 🗣 Commented on [#1005](https://github.com/aramis-lab/clinica/pull/1005#issuecomment-1774890091) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +2. 🗣 Commented on [#102](https://github.com/aimclub/Fedot.Industrial/pull/102#issuecomment-1774670084) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +3. 🗣 Commented on [#854](https://github.com/PyThaiNLP/pythainlp/pull/854#issuecomment-1774655895) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#203](https://github.com/CartoonFan/lutris/pull/203#issuecomment-1774198756) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/sample-apps/pull/1#issuecomment-1774197012) in [tuhinmallick/sample-apps](https://github.com/tuhinmallick/sample-apps) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-rag-invoice-cpu/pull/1#issuecomment-1774196389) in [tuhinmallick/llm-rag-invoice-cpu](https://github.com/tuhinmallick/llm-rag-invoice-cpu) +7. 🗣 Commented on [#852](https://github.com/PyThaiNLP/pythainlp/pull/852#issuecomment-1774089595) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/reliableGPT/pull/1#issuecomment-1774017712) in [tuhinmallick/reliableGPT](https://github.com/tuhinmallick/reliableGPT) +9. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/hacktoberfest-3/pull/1#issuecomment-1774001162) in [Krishna-Singhal/hacktoberfest-3](https://github.com/Krishna-Singhal/hacktoberfest-3) +10. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/Code-United-2/pull/1#issuecomment-1774000595) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) From 8ec6b2847876a1aca5789429aba461850f0ad2d6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 11:13:10 +0000 Subject: [PATCH 0422/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ea56b929..2d6f5986 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1005](https://github.com/aramis-lab/clinica/pull/1005#issuecomment-1774890091) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -2. 🗣 Commented on [#102](https://github.com/aimclub/Fedot.Industrial/pull/102#issuecomment-1774670084) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -3. 🗣 Commented on [#854](https://github.com/PyThaiNLP/pythainlp/pull/854#issuecomment-1774655895) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#203](https://github.com/CartoonFan/lutris/pull/203#issuecomment-1774198756) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/sample-apps/pull/1#issuecomment-1774197012) in [tuhinmallick/sample-apps](https://github.com/tuhinmallick/sample-apps) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-rag-invoice-cpu/pull/1#issuecomment-1774196389) in [tuhinmallick/llm-rag-invoice-cpu](https://github.com/tuhinmallick/llm-rag-invoice-cpu) -7. 🗣 Commented on [#852](https://github.com/PyThaiNLP/pythainlp/pull/852#issuecomment-1774089595) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/reliableGPT/pull/1#issuecomment-1774017712) in [tuhinmallick/reliableGPT](https://github.com/tuhinmallick/reliableGPT) -9. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/hacktoberfest-3/pull/1#issuecomment-1774001162) in [Krishna-Singhal/hacktoberfest-3](https://github.com/Krishna-Singhal/hacktoberfest-3) -10. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/Code-United-2/pull/1#issuecomment-1774000595) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +1. 🗣 Commented on [#5269](https://github.com/rhinstaller/anaconda/pull/5269#issuecomment-1774913375) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#1005](https://github.com/aramis-lab/clinica/pull/1005#issuecomment-1774890091) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +3. 🗣 Commented on [#102](https://github.com/aimclub/Fedot.Industrial/pull/102#issuecomment-1774670084) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#854](https://github.com/PyThaiNLP/pythainlp/pull/854#issuecomment-1774655895) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#203](https://github.com/CartoonFan/lutris/pull/203#issuecomment-1774198756) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/sample-apps/pull/1#issuecomment-1774197012) in [tuhinmallick/sample-apps](https://github.com/tuhinmallick/sample-apps) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-rag-invoice-cpu/pull/1#issuecomment-1774196389) in [tuhinmallick/llm-rag-invoice-cpu](https://github.com/tuhinmallick/llm-rag-invoice-cpu) +8. 🗣 Commented on [#852](https://github.com/PyThaiNLP/pythainlp/pull/852#issuecomment-1774089595) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/reliableGPT/pull/1#issuecomment-1774017712) in [tuhinmallick/reliableGPT](https://github.com/tuhinmallick/reliableGPT) +10. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/hacktoberfest-3/pull/1#issuecomment-1774001162) in [Krishna-Singhal/hacktoberfest-3](https://github.com/Krishna-Singhal/hacktoberfest-3) From 7dd5c8e29f8740f75c9b893a3f01ee47210f983d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 13:20:29 +0000 Subject: [PATCH 0423/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2d6f5986..2e54796b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5269](https://github.com/rhinstaller/anaconda/pull/5269#issuecomment-1774913375) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#1005](https://github.com/aramis-lab/clinica/pull/1005#issuecomment-1774890091) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -3. 🗣 Commented on [#102](https://github.com/aimclub/Fedot.Industrial/pull/102#issuecomment-1774670084) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#854](https://github.com/PyThaiNLP/pythainlp/pull/854#issuecomment-1774655895) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#203](https://github.com/CartoonFan/lutris/pull/203#issuecomment-1774198756) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/sample-apps/pull/1#issuecomment-1774197012) in [tuhinmallick/sample-apps](https://github.com/tuhinmallick/sample-apps) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-rag-invoice-cpu/pull/1#issuecomment-1774196389) in [tuhinmallick/llm-rag-invoice-cpu](https://github.com/tuhinmallick/llm-rag-invoice-cpu) -8. 🗣 Commented on [#852](https://github.com/PyThaiNLP/pythainlp/pull/852#issuecomment-1774089595) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/reliableGPT/pull/1#issuecomment-1774017712) in [tuhinmallick/reliableGPT](https://github.com/tuhinmallick/reliableGPT) -10. 🗣 Commented on [#1](https://github.com/Krishna-Singhal/hacktoberfest-3/pull/1#issuecomment-1774001162) in [Krishna-Singhal/hacktoberfest-3](https://github.com/Krishna-Singhal/hacktoberfest-3) +1. 🗣 Commented on [#717](https://github.com/QuantEcon/QuantEcon.py/pull/717#issuecomment-1775107053) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +2. 🗣 Commented on [#2953](https://github.com/dipy/dipy/pull/2953#issuecomment-1775106195) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#5269](https://github.com/rhinstaller/anaconda/pull/5269#issuecomment-1774913375) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#1005](https://github.com/aramis-lab/clinica/pull/1005#issuecomment-1774890091) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +5. 🗣 Commented on [#102](https://github.com/aimclub/Fedot.Industrial/pull/102#issuecomment-1774670084) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#854](https://github.com/PyThaiNLP/pythainlp/pull/854#issuecomment-1774655895) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +7. 🗣 Commented on [#203](https://github.com/CartoonFan/lutris/pull/203#issuecomment-1774198756) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/sample-apps/pull/1#issuecomment-1774197012) in [tuhinmallick/sample-apps](https://github.com/tuhinmallick/sample-apps) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-rag-invoice-cpu/pull/1#issuecomment-1774196389) in [tuhinmallick/llm-rag-invoice-cpu](https://github.com/tuhinmallick/llm-rag-invoice-cpu) +10. 🗣 Commented on [#852](https://github.com/PyThaiNLP/pythainlp/pull/852#issuecomment-1774089595) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) From f37f61db72e9f6cf52e06ffcc5bece9bb81b9c4a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 13:37:23 +0000 Subject: [PATCH 0424/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2e54796b..84f2c426 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#717](https://github.com/QuantEcon/QuantEcon.py/pull/717#issuecomment-1775107053) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -2. 🗣 Commented on [#2953](https://github.com/dipy/dipy/pull/2953#issuecomment-1775106195) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#5269](https://github.com/rhinstaller/anaconda/pull/5269#issuecomment-1774913375) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#1005](https://github.com/aramis-lab/clinica/pull/1005#issuecomment-1774890091) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -5. 🗣 Commented on [#102](https://github.com/aimclub/Fedot.Industrial/pull/102#issuecomment-1774670084) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#854](https://github.com/PyThaiNLP/pythainlp/pull/854#issuecomment-1774655895) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -7. 🗣 Commented on [#203](https://github.com/CartoonFan/lutris/pull/203#issuecomment-1774198756) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/sample-apps/pull/1#issuecomment-1774197012) in [tuhinmallick/sample-apps](https://github.com/tuhinmallick/sample-apps) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-rag-invoice-cpu/pull/1#issuecomment-1774196389) in [tuhinmallick/llm-rag-invoice-cpu](https://github.com/tuhinmallick/llm-rag-invoice-cpu) -10. 🗣 Commented on [#852](https://github.com/PyThaiNLP/pythainlp/pull/852#issuecomment-1774089595) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +1. 🗣 Commented on [#767](https://github.com/scilus/scilpy/pull/767#issuecomment-1775170591) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#717](https://github.com/QuantEcon/QuantEcon.py/pull/717#issuecomment-1775107053) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +3. 🗣 Commented on [#2953](https://github.com/dipy/dipy/pull/2953#issuecomment-1775106195) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#5269](https://github.com/rhinstaller/anaconda/pull/5269#issuecomment-1774913375) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#1005](https://github.com/aramis-lab/clinica/pull/1005#issuecomment-1774890091) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +6. 🗣 Commented on [#102](https://github.com/aimclub/Fedot.Industrial/pull/102#issuecomment-1774670084) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#854](https://github.com/PyThaiNLP/pythainlp/pull/854#issuecomment-1774655895) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +8. 🗣 Commented on [#203](https://github.com/CartoonFan/lutris/pull/203#issuecomment-1774198756) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/sample-apps/pull/1#issuecomment-1774197012) in [tuhinmallick/sample-apps](https://github.com/tuhinmallick/sample-apps) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-rag-invoice-cpu/pull/1#issuecomment-1774196389) in [tuhinmallick/llm-rag-invoice-cpu](https://github.com/tuhinmallick/llm-rag-invoice-cpu) From 3badf94e58d5e1867d44fabc3158846a54049a01 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 14:15:28 +0000 Subject: [PATCH 0425/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 84f2c426..f64c8a35 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#767](https://github.com/scilus/scilpy/pull/767#issuecomment-1775170591) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#717](https://github.com/QuantEcon/QuantEcon.py/pull/717#issuecomment-1775107053) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -3. 🗣 Commented on [#2953](https://github.com/dipy/dipy/pull/2953#issuecomment-1775106195) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#5269](https://github.com/rhinstaller/anaconda/pull/5269#issuecomment-1774913375) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#1005](https://github.com/aramis-lab/clinica/pull/1005#issuecomment-1774890091) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -6. 🗣 Commented on [#102](https://github.com/aimclub/Fedot.Industrial/pull/102#issuecomment-1774670084) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#854](https://github.com/PyThaiNLP/pythainlp/pull/854#issuecomment-1774655895) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -8. 🗣 Commented on [#203](https://github.com/CartoonFan/lutris/pull/203#issuecomment-1774198756) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/sample-apps/pull/1#issuecomment-1774197012) in [tuhinmallick/sample-apps](https://github.com/tuhinmallick/sample-apps) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-rag-invoice-cpu/pull/1#issuecomment-1774196389) in [tuhinmallick/llm-rag-invoice-cpu](https://github.com/tuhinmallick/llm-rag-invoice-cpu) +1. 🗣 Commented on [#664](https://github.com/scilus/scilpy/pull/664#issuecomment-1775198519) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#767](https://github.com/scilus/scilpy/pull/767#issuecomment-1775170591) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#717](https://github.com/QuantEcon/QuantEcon.py/pull/717#issuecomment-1775107053) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +4. 🗣 Commented on [#2953](https://github.com/dipy/dipy/pull/2953#issuecomment-1775106195) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#5269](https://github.com/rhinstaller/anaconda/pull/5269#issuecomment-1774913375) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#1005](https://github.com/aramis-lab/clinica/pull/1005#issuecomment-1774890091) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +7. 🗣 Commented on [#102](https://github.com/aimclub/Fedot.Industrial/pull/102#issuecomment-1774670084) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +8. 🗣 Commented on [#854](https://github.com/PyThaiNLP/pythainlp/pull/854#issuecomment-1774655895) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#203](https://github.com/CartoonFan/lutris/pull/203#issuecomment-1774198756) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/sample-apps/pull/1#issuecomment-1774197012) in [tuhinmallick/sample-apps](https://github.com/tuhinmallick/sample-apps) From e212a12ff6dfa7c2871e471074c1bc86d3c95149 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 14:37:27 +0000 Subject: [PATCH 0426/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f64c8a35..6c053ce3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#664](https://github.com/scilus/scilpy/pull/664#issuecomment-1775198519) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#767](https://github.com/scilus/scilpy/pull/767#issuecomment-1775170591) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#717](https://github.com/QuantEcon/QuantEcon.py/pull/717#issuecomment-1775107053) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -4. 🗣 Commented on [#2953](https://github.com/dipy/dipy/pull/2953#issuecomment-1775106195) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#5269](https://github.com/rhinstaller/anaconda/pull/5269#issuecomment-1774913375) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#1005](https://github.com/aramis-lab/clinica/pull/1005#issuecomment-1774890091) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -7. 🗣 Commented on [#102](https://github.com/aimclub/Fedot.Industrial/pull/102#issuecomment-1774670084) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -8. 🗣 Commented on [#854](https://github.com/PyThaiNLP/pythainlp/pull/854#issuecomment-1774655895) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#203](https://github.com/CartoonFan/lutris/pull/203#issuecomment-1774198756) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/sample-apps/pull/1#issuecomment-1774197012) in [tuhinmallick/sample-apps](https://github.com/tuhinmallick/sample-apps) +1. 🗣 Commented on [#768](https://github.com/scilus/scilpy/pull/768#issuecomment-1775305907) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#734](https://github.com/scilus/scilpy/pull/734#issuecomment-1775280425) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#664](https://github.com/scilus/scilpy/pull/664#issuecomment-1775198519) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#767](https://github.com/scilus/scilpy/pull/767#issuecomment-1775170591) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#717](https://github.com/QuantEcon/QuantEcon.py/pull/717#issuecomment-1775107053) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +6. 🗣 Commented on [#2953](https://github.com/dipy/dipy/pull/2953#issuecomment-1775106195) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#5269](https://github.com/rhinstaller/anaconda/pull/5269#issuecomment-1774913375) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#1005](https://github.com/aramis-lab/clinica/pull/1005#issuecomment-1774890091) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +9. 🗣 Commented on [#102](https://github.com/aimclub/Fedot.Industrial/pull/102#issuecomment-1774670084) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#854](https://github.com/PyThaiNLP/pythainlp/pull/854#issuecomment-1774655895) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) From e4a5bcafa9a0fea7a50c4b89a4fc59eab723e6eb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 15:16:06 +0000 Subject: [PATCH 0427/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6c053ce3..32017846 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#768](https://github.com/scilus/scilpy/pull/768#issuecomment-1775305907) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#734](https://github.com/scilus/scilpy/pull/734#issuecomment-1775280425) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#664](https://github.com/scilus/scilpy/pull/664#issuecomment-1775198519) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#767](https://github.com/scilus/scilpy/pull/767#issuecomment-1775170591) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#717](https://github.com/QuantEcon/QuantEcon.py/pull/717#issuecomment-1775107053) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -6. 🗣 Commented on [#2953](https://github.com/dipy/dipy/pull/2953#issuecomment-1775106195) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#5269](https://github.com/rhinstaller/anaconda/pull/5269#issuecomment-1774913375) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#1005](https://github.com/aramis-lab/clinica/pull/1005#issuecomment-1774890091) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -9. 🗣 Commented on [#102](https://github.com/aimclub/Fedot.Industrial/pull/102#issuecomment-1774670084) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#854](https://github.com/PyThaiNLP/pythainlp/pull/854#issuecomment-1774655895) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +1. 🗣 Commented on [#991](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/991#issuecomment-1775366153) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#768](https://github.com/scilus/scilpy/pull/768#issuecomment-1775305907) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#734](https://github.com/scilus/scilpy/pull/734#issuecomment-1775280425) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#664](https://github.com/scilus/scilpy/pull/664#issuecomment-1775198519) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#767](https://github.com/scilus/scilpy/pull/767#issuecomment-1775170591) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#717](https://github.com/QuantEcon/QuantEcon.py/pull/717#issuecomment-1775107053) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +7. 🗣 Commented on [#2953](https://github.com/dipy/dipy/pull/2953#issuecomment-1775106195) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#5269](https://github.com/rhinstaller/anaconda/pull/5269#issuecomment-1774913375) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#1005](https://github.com/aramis-lab/clinica/pull/1005#issuecomment-1774890091) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +10. 🗣 Commented on [#102](https://github.com/aimclub/Fedot.Industrial/pull/102#issuecomment-1774670084) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) From 33e03942c3a48766fc82cbbb69063102c9d5b58a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 15:37:24 +0000 Subject: [PATCH 0428/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 32017846..079eb2e8 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#991](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/991#issuecomment-1775366153) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#768](https://github.com/scilus/scilpy/pull/768#issuecomment-1775305907) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#734](https://github.com/scilus/scilpy/pull/734#issuecomment-1775280425) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#664](https://github.com/scilus/scilpy/pull/664#issuecomment-1775198519) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#767](https://github.com/scilus/scilpy/pull/767#issuecomment-1775170591) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#717](https://github.com/QuantEcon/QuantEcon.py/pull/717#issuecomment-1775107053) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -7. 🗣 Commented on [#2953](https://github.com/dipy/dipy/pull/2953#issuecomment-1775106195) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#5269](https://github.com/rhinstaller/anaconda/pull/5269#issuecomment-1774913375) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#1005](https://github.com/aramis-lab/clinica/pull/1005#issuecomment-1774890091) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -10. 🗣 Commented on [#102](https://github.com/aimclub/Fedot.Industrial/pull/102#issuecomment-1774670084) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +1. 🗣 Commented on [#771](https://github.com/scilus/scilpy/pull/771#issuecomment-1775421501) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#991](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/991#issuecomment-1775366153) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#768](https://github.com/scilus/scilpy/pull/768#issuecomment-1775305907) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#734](https://github.com/scilus/scilpy/pull/734#issuecomment-1775280425) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#664](https://github.com/scilus/scilpy/pull/664#issuecomment-1775198519) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#767](https://github.com/scilus/scilpy/pull/767#issuecomment-1775170591) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#717](https://github.com/QuantEcon/QuantEcon.py/pull/717#issuecomment-1775107053) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +8. 🗣 Commented on [#2953](https://github.com/dipy/dipy/pull/2953#issuecomment-1775106195) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#5269](https://github.com/rhinstaller/anaconda/pull/5269#issuecomment-1774913375) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#1005](https://github.com/aramis-lab/clinica/pull/1005#issuecomment-1774890091) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) From b0a10ac9c6679a06c06f62c0cd83873026848c17 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 16:39:32 +0000 Subject: [PATCH 0429/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 079eb2e8..6b421733 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#771](https://github.com/scilus/scilpy/pull/771#issuecomment-1775421501) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#991](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/991#issuecomment-1775366153) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#768](https://github.com/scilus/scilpy/pull/768#issuecomment-1775305907) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#734](https://github.com/scilus/scilpy/pull/734#issuecomment-1775280425) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#664](https://github.com/scilus/scilpy/pull/664#issuecomment-1775198519) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#767](https://github.com/scilus/scilpy/pull/767#issuecomment-1775170591) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#717](https://github.com/QuantEcon/QuantEcon.py/pull/717#issuecomment-1775107053) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -8. 🗣 Commented on [#2953](https://github.com/dipy/dipy/pull/2953#issuecomment-1775106195) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#5269](https://github.com/rhinstaller/anaconda/pull/5269#issuecomment-1774913375) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#1005](https://github.com/aramis-lab/clinica/pull/1005#issuecomment-1774890091) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +1. 🗣 Commented on [#774](https://github.com/scilus/scilpy/pull/774#issuecomment-1775506607) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#771](https://github.com/scilus/scilpy/pull/771#issuecomment-1775421501) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#991](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/991#issuecomment-1775366153) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#768](https://github.com/scilus/scilpy/pull/768#issuecomment-1775305907) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#734](https://github.com/scilus/scilpy/pull/734#issuecomment-1775280425) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#664](https://github.com/scilus/scilpy/pull/664#issuecomment-1775198519) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#767](https://github.com/scilus/scilpy/pull/767#issuecomment-1775170591) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#717](https://github.com/QuantEcon/QuantEcon.py/pull/717#issuecomment-1775107053) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +9. 🗣 Commented on [#2953](https://github.com/dipy/dipy/pull/2953#issuecomment-1775106195) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#5269](https://github.com/rhinstaller/anaconda/pull/5269#issuecomment-1774913375) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 95b9115a23a42de716473d4d31037ba3492b041c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 18:20:08 +0000 Subject: [PATCH 0430/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6b421733..997120ed 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#774](https://github.com/scilus/scilpy/pull/774#issuecomment-1775506607) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#771](https://github.com/scilus/scilpy/pull/771#issuecomment-1775421501) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#991](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/991#issuecomment-1775366153) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#768](https://github.com/scilus/scilpy/pull/768#issuecomment-1775305907) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#734](https://github.com/scilus/scilpy/pull/734#issuecomment-1775280425) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#664](https://github.com/scilus/scilpy/pull/664#issuecomment-1775198519) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#767](https://github.com/scilus/scilpy/pull/767#issuecomment-1775170591) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#717](https://github.com/QuantEcon/QuantEcon.py/pull/717#issuecomment-1775107053) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -9. 🗣 Commented on [#2953](https://github.com/dipy/dipy/pull/2953#issuecomment-1775106195) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#5269](https://github.com/rhinstaller/anaconda/pull/5269#issuecomment-1774913375) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#778](https://github.com/scilus/scilpy/pull/778#issuecomment-1775758157) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#777](https://github.com/scilus/scilpy/pull/777#issuecomment-1775746366) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#33](https://github.com/nstarman/utilipy/pull/33#issuecomment-1775745678) in [nstarman/utilipy](https://github.com/nstarman/utilipy) +4. 🗣 Commented on [#776](https://github.com/scilus/scilpy/pull/776#issuecomment-1775678208) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#773](https://github.com/scilus/scilpy/pull/773#issuecomment-1775670140) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#774](https://github.com/scilus/scilpy/pull/774#issuecomment-1775506607) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#771](https://github.com/scilus/scilpy/pull/771#issuecomment-1775421501) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#991](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/991#issuecomment-1775366153) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#768](https://github.com/scilus/scilpy/pull/768#issuecomment-1775305907) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#734](https://github.com/scilus/scilpy/pull/734#issuecomment-1775280425) in [scilus/scilpy](https://github.com/scilus/scilpy) From 180ce4af7151d596b8774f156571335044e37165 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 19:12:26 +0000 Subject: [PATCH 0431/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 997120ed..bc15d2ad 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#778](https://github.com/scilus/scilpy/pull/778#issuecomment-1775758157) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#777](https://github.com/scilus/scilpy/pull/777#issuecomment-1775746366) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#33](https://github.com/nstarman/utilipy/pull/33#issuecomment-1775745678) in [nstarman/utilipy](https://github.com/nstarman/utilipy) -4. 🗣 Commented on [#776](https://github.com/scilus/scilpy/pull/776#issuecomment-1775678208) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#773](https://github.com/scilus/scilpy/pull/773#issuecomment-1775670140) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#774](https://github.com/scilus/scilpy/pull/774#issuecomment-1775506607) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#771](https://github.com/scilus/scilpy/pull/771#issuecomment-1775421501) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#991](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/991#issuecomment-1775366153) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#768](https://github.com/scilus/scilpy/pull/768#issuecomment-1775305907) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#734](https://github.com/scilus/scilpy/pull/734#issuecomment-1775280425) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#785](https://github.com/scilus/scilpy/pull/785#issuecomment-1775859518) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#783](https://github.com/scilus/scilpy/pull/783#issuecomment-1775857828) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#782](https://github.com/scilus/scilpy/pull/782#issuecomment-1775856238) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit/pull/1#issuecomment-1775851248) in [tuhinmallick/haystack-search-pipeline-streamlit](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit) +5. 🗣 Commented on [#779](https://github.com/scilus/scilpy/pull/779#issuecomment-1775792657) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#778](https://github.com/scilus/scilpy/pull/778#issuecomment-1775758157) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#777](https://github.com/scilus/scilpy/pull/777#issuecomment-1775746366) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#33](https://github.com/nstarman/utilipy/pull/33#issuecomment-1775745678) in [nstarman/utilipy](https://github.com/nstarman/utilipy) +9. 🗣 Commented on [#776](https://github.com/scilus/scilpy/pull/776#issuecomment-1775678208) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#773](https://github.com/scilus/scilpy/pull/773#issuecomment-1775670140) in [scilus/scilpy](https://github.com/scilus/scilpy) From 3493f74155c7ad3b783bd14c23a044f1d3d786ba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 20:15:27 +0000 Subject: [PATCH 0432/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bc15d2ad..cb50c6c3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#785](https://github.com/scilus/scilpy/pull/785#issuecomment-1775859518) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#783](https://github.com/scilus/scilpy/pull/783#issuecomment-1775857828) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#782](https://github.com/scilus/scilpy/pull/782#issuecomment-1775856238) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit/pull/1#issuecomment-1775851248) in [tuhinmallick/haystack-search-pipeline-streamlit](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit) -5. 🗣 Commented on [#779](https://github.com/scilus/scilpy/pull/779#issuecomment-1775792657) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#778](https://github.com/scilus/scilpy/pull/778#issuecomment-1775758157) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#777](https://github.com/scilus/scilpy/pull/777#issuecomment-1775746366) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#33](https://github.com/nstarman/utilipy/pull/33#issuecomment-1775745678) in [nstarman/utilipy](https://github.com/nstarman/utilipy) -9. 🗣 Commented on [#776](https://github.com/scilus/scilpy/pull/776#issuecomment-1775678208) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#773](https://github.com/scilus/scilpy/pull/773#issuecomment-1775670140) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#769](https://github.com/scilus/scilpy/pull/769#issuecomment-1775921067) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#785](https://github.com/scilus/scilpy/pull/785#issuecomment-1775859518) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#783](https://github.com/scilus/scilpy/pull/783#issuecomment-1775857828) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#782](https://github.com/scilus/scilpy/pull/782#issuecomment-1775856238) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit/pull/1#issuecomment-1775851248) in [tuhinmallick/haystack-search-pipeline-streamlit](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit) +7. 🗣 Commented on [#779](https://github.com/scilus/scilpy/pull/779#issuecomment-1775792657) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#778](https://github.com/scilus/scilpy/pull/778#issuecomment-1775758157) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#777](https://github.com/scilus/scilpy/pull/777#issuecomment-1775746366) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#33](https://github.com/nstarman/utilipy/pull/33#issuecomment-1775745678) in [nstarman/utilipy](https://github.com/nstarman/utilipy) From b466d8c8f3cb24ad18d0dfc69e8bfc22d34adec0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 21:13:41 +0000 Subject: [PATCH 0433/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cb50c6c3..7ef50e3d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#769](https://github.com/scilus/scilpy/pull/769#issuecomment-1775921067) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#785](https://github.com/scilus/scilpy/pull/785#issuecomment-1775859518) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#783](https://github.com/scilus/scilpy/pull/783#issuecomment-1775857828) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#782](https://github.com/scilus/scilpy/pull/782#issuecomment-1775856238) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit/pull/1#issuecomment-1775851248) in [tuhinmallick/haystack-search-pipeline-streamlit](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit) -7. 🗣 Commented on [#779](https://github.com/scilus/scilpy/pull/779#issuecomment-1775792657) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#778](https://github.com/scilus/scilpy/pull/778#issuecomment-1775758157) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#777](https://github.com/scilus/scilpy/pull/777#issuecomment-1775746366) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#33](https://github.com/nstarman/utilipy/pull/33#issuecomment-1775745678) in [nstarman/utilipy](https://github.com/nstarman/utilipy) +1. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +2. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#769](https://github.com/scilus/scilpy/pull/769#issuecomment-1775921067) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#785](https://github.com/scilus/scilpy/pull/785#issuecomment-1775859518) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#783](https://github.com/scilus/scilpy/pull/783#issuecomment-1775857828) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#782](https://github.com/scilus/scilpy/pull/782#issuecomment-1775856238) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit/pull/1#issuecomment-1775851248) in [tuhinmallick/haystack-search-pipeline-streamlit](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit) +8. 🗣 Commented on [#779](https://github.com/scilus/scilpy/pull/779#issuecomment-1775792657) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#778](https://github.com/scilus/scilpy/pull/778#issuecomment-1775758157) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#777](https://github.com/scilus/scilpy/pull/777#issuecomment-1775746366) in [scilus/scilpy](https://github.com/scilus/scilpy) From a26962666ca02e5c6438e0bcae510483e9bec91d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 22:14:30 +0000 Subject: [PATCH 0434/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7ef50e3d..3c35e8ee 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -2. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#769](https://github.com/scilus/scilpy/pull/769#issuecomment-1775921067) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#785](https://github.com/scilus/scilpy/pull/785#issuecomment-1775859518) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#783](https://github.com/scilus/scilpy/pull/783#issuecomment-1775857828) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#782](https://github.com/scilus/scilpy/pull/782#issuecomment-1775856238) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit/pull/1#issuecomment-1775851248) in [tuhinmallick/haystack-search-pipeline-streamlit](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit) -8. 🗣 Commented on [#779](https://github.com/scilus/scilpy/pull/779#issuecomment-1775792657) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#778](https://github.com/scilus/scilpy/pull/778#issuecomment-1775758157) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#777](https://github.com/scilus/scilpy/pull/777#issuecomment-1775746366) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +3. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#769](https://github.com/scilus/scilpy/pull/769#issuecomment-1775921067) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#785](https://github.com/scilus/scilpy/pull/785#issuecomment-1775859518) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#783](https://github.com/scilus/scilpy/pull/783#issuecomment-1775857828) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#782](https://github.com/scilus/scilpy/pull/782#issuecomment-1775856238) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit/pull/1#issuecomment-1775851248) in [tuhinmallick/haystack-search-pipeline-streamlit](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit) +9. 🗣 Commented on [#779](https://github.com/scilus/scilpy/pull/779#issuecomment-1775792657) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#778](https://github.com/scilus/scilpy/pull/778#issuecomment-1775758157) in [scilus/scilpy](https://github.com/scilus/scilpy) From 6dfa6c636bd0f59c87618c86cd390e9b02f0a13f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 22:37:06 +0000 Subject: [PATCH 0435/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3c35e8ee..fe83598c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -3. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#769](https://github.com/scilus/scilpy/pull/769#issuecomment-1775921067) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#785](https://github.com/scilus/scilpy/pull/785#issuecomment-1775859518) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#783](https://github.com/scilus/scilpy/pull/783#issuecomment-1775857828) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#782](https://github.com/scilus/scilpy/pull/782#issuecomment-1775856238) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit/pull/1#issuecomment-1775851248) in [tuhinmallick/haystack-search-pipeline-streamlit](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit) -9. 🗣 Commented on [#779](https://github.com/scilus/scilpy/pull/779#issuecomment-1775792657) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#778](https://github.com/scilus/scilpy/pull/778#issuecomment-1775758157) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +2. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +4. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#769](https://github.com/scilus/scilpy/pull/769#issuecomment-1775921067) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#785](https://github.com/scilus/scilpy/pull/785#issuecomment-1775859518) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#783](https://github.com/scilus/scilpy/pull/783#issuecomment-1775857828) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#782](https://github.com/scilus/scilpy/pull/782#issuecomment-1775856238) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit/pull/1#issuecomment-1775851248) in [tuhinmallick/haystack-search-pipeline-streamlit](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit) +10. 🗣 Commented on [#779](https://github.com/scilus/scilpy/pull/779#issuecomment-1775792657) in [scilus/scilpy](https://github.com/scilus/scilpy) From a316b87ff3e09d0c2aa240257b2dcba65d260ea0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 08:37:41 +0000 Subject: [PATCH 0436/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fe83598c..86ab6dd5 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) -2. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -4. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#769](https://github.com/scilus/scilpy/pull/769#issuecomment-1775921067) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#785](https://github.com/scilus/scilpy/pull/785#issuecomment-1775859518) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#783](https://github.com/scilus/scilpy/pull/783#issuecomment-1775857828) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#782](https://github.com/scilus/scilpy/pull/782#issuecomment-1775856238) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit/pull/1#issuecomment-1775851248) in [tuhinmallick/haystack-search-pipeline-streamlit](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit) -10. 🗣 Commented on [#779](https://github.com/scilus/scilpy/pull/779#issuecomment-1775792657) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) +2. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +3. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +5. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#769](https://github.com/scilus/scilpy/pull/769#issuecomment-1775921067) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#785](https://github.com/scilus/scilpy/pull/785#issuecomment-1775859518) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#783](https://github.com/scilus/scilpy/pull/783#issuecomment-1775857828) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#782](https://github.com/scilus/scilpy/pull/782#issuecomment-1775856238) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit/pull/1#issuecomment-1775851248) in [tuhinmallick/haystack-search-pipeline-streamlit](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit) From 3cf90e6e965e33e73f25114c3a6c6c1840d230bd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 09:16:35 +0000 Subject: [PATCH 0437/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 86ab6dd5..07547af7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) -2. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) -3. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -5. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#769](https://github.com/scilus/scilpy/pull/769#issuecomment-1775921067) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#785](https://github.com/scilus/scilpy/pull/785#issuecomment-1775859518) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#783](https://github.com/scilus/scilpy/pull/783#issuecomment-1775857828) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#782](https://github.com/scilus/scilpy/pull/782#issuecomment-1775856238) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit/pull/1#issuecomment-1775851248) in [tuhinmallick/haystack-search-pipeline-streamlit](https://github.com/tuhinmallick/haystack-search-pipeline-streamlit) +1. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) +2. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) +3. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +4. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +6. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#769](https://github.com/scilus/scilpy/pull/769#issuecomment-1775921067) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#785](https://github.com/scilus/scilpy/pull/785#issuecomment-1775859518) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#783](https://github.com/scilus/scilpy/pull/783#issuecomment-1775857828) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#782](https://github.com/scilus/scilpy/pull/782#issuecomment-1775856238) in [scilus/scilpy](https://github.com/scilus/scilpy) From 640dd316a6c02dd5da0b982f3f786c1c82f31144 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 10:17:40 +0000 Subject: [PATCH 0438/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 07547af7..35c427fe 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) -2. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) -3. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) -4. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -6. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#769](https://github.com/scilus/scilpy/pull/769#issuecomment-1775921067) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#785](https://github.com/scilus/scilpy/pull/785#issuecomment-1775859518) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#783](https://github.com/scilus/scilpy/pull/783#issuecomment-1775857828) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#782](https://github.com/scilus/scilpy/pull/782#issuecomment-1775856238) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +2. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) +3. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) +4. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +5. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +7. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#769](https://github.com/scilus/scilpy/pull/769#issuecomment-1775921067) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#785](https://github.com/scilus/scilpy/pull/785#issuecomment-1775859518) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#783](https://github.com/scilus/scilpy/pull/783#issuecomment-1775857828) in [scilus/scilpy](https://github.com/scilus/scilpy) From 9281edb5b9ec3fd815c0a63c6b394f53ec4bfc03 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 11:12:53 +0000 Subject: [PATCH 0439/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 35c427fe..fb8827b4 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -2. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) -3. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) -4. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) -5. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -7. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#769](https://github.com/scilus/scilpy/pull/769#issuecomment-1775921067) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#785](https://github.com/scilus/scilpy/pull/785#issuecomment-1775859518) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#783](https://github.com/scilus/scilpy/pull/783#issuecomment-1775857828) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) +2. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +3. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) +4. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) +5. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +6. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +8. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#769](https://github.com/scilus/scilpy/pull/769#issuecomment-1775921067) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#785](https://github.com/scilus/scilpy/pull/785#issuecomment-1775859518) in [scilus/scilpy](https://github.com/scilus/scilpy) From 75d51130ec2f117b6b9793d76017e2864a1eb6a9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 14:13:39 +0000 Subject: [PATCH 0440/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fb8827b4..76b8836e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) -2. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -3. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) -4. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) -5. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) -6. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -8. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#769](https://github.com/scilus/scilpy/pull/769#issuecomment-1775921067) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#785](https://github.com/scilus/scilpy/pull/785#issuecomment-1775859518) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) +3. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +4. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) +5. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) +6. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +7. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +9. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#769](https://github.com/scilus/scilpy/pull/769#issuecomment-1775921067) in [scilus/scilpy](https://github.com/scilus/scilpy) From 7e0e778335bf9100e3bf09bdedd2aeda56aeafec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 14:37:30 +0000 Subject: [PATCH 0441/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 76b8836e..dbdf815f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) -3. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -4. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) -5. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) -6. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) -7. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -9. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#769](https://github.com/scilus/scilpy/pull/769#issuecomment-1775921067) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +2. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) +4. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +5. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) +6. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) +7. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +8. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +10. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) From fbb676991460912cee40f37c005ce221943a7201 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 16:40:38 +0000 Subject: [PATCH 0442/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dbdf815f..36a72f94 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -2. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) -4. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -5. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) -6. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) -7. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) -8. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -10. 🗣 Commented on [#786](https://github.com/scilus/scilpy/pull/786#issuecomment-1775925527) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +2. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +3. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) +5. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +6. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) +7. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) +8. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +9. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) From 36b08c520678ba420ab5f17024942df0e16f54ea Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 18:20:59 +0000 Subject: [PATCH 0443/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 36a72f94..35ff4f59 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) -2. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -3. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) -5. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -6. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) -7. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) -8. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) -9. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#3](https://github.com/GenevieveBuckley/micro-sam/pull/3#issuecomment-1775990532) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +1. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +3. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +4. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) +6. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +7. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) +8. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) +9. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +10. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From d3e58e41aed2beec8b0acc5ff056bac3332c737b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 20:16:50 +0000 Subject: [PATCH 0444/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 35ff4f59..ab3a740b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) -3. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -4. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) -6. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -7. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) -8. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) -9. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) -10. 🗣 Commented on [#993](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/993#issuecomment-1776069185) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#791](https://github.com/scilus/scilpy/pull/791#issuecomment-1777956166) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +4. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +5. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) +7. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +8. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) +9. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) +10. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) From fcb5bf83b227c242d77973040b2f390645b46341 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 02:04:36 +0000 Subject: [PATCH 0445/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ab3a740b..0d88c5fa 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#791](https://github.com/scilus/scilpy/pull/791#issuecomment-1777956166) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) -4. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -5. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) -7. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -8. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) -9. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) -10. 🗣 Commented on [#6](https://github.com/rasbt/cvpr2023/pull/6#issuecomment-1776119453) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +1. 🗣 Commented on [#687](https://github.com/QuantEcon/QuantEcon.py/pull/687#issuecomment-1778323344) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +2. 🗣 Commented on [#791](https://github.com/scilus/scilpy/pull/791#issuecomment-1777956166) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +5. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +6. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) +8. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +9. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) +10. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) From 649ba96c516d25f5df29131bbeeae0b37482c2b0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 09:16:11 +0000 Subject: [PATCH 0446/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0d88c5fa..46eeff6d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#687](https://github.com/QuantEcon/QuantEcon.py/pull/687#issuecomment-1778323344) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -2. 🗣 Commented on [#791](https://github.com/scilus/scilpy/pull/791#issuecomment-1777956166) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) -5. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -6. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) -8. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -9. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) -10. 🗣 Commented on [#1](https://github.com/Advik-B/librespot-python/pull/1#issuecomment-1776751378) in [Advik-B/librespot-python](https://github.com/Advik-B/librespot-python) +1. 🗣 Commented on [#4324](https://github.com/MDAnalysis/mdanalysis/pull/4324#issuecomment-1778793239) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#687](https://github.com/QuantEcon/QuantEcon.py/pull/687#issuecomment-1778323344) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +3. 🗣 Commented on [#791](https://github.com/scilus/scilpy/pull/791#issuecomment-1777956166) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +6. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +7. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) +9. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +10. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) From b0b897621d5f2f9d6a48d29522bd63cc25c7f084 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 10:37:26 +0000 Subject: [PATCH 0447/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 46eeff6d..66083ab7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4324](https://github.com/MDAnalysis/mdanalysis/pull/4324#issuecomment-1778793239) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#687](https://github.com/QuantEcon/QuantEcon.py/pull/687#issuecomment-1778323344) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -3. 🗣 Commented on [#791](https://github.com/scilus/scilpy/pull/791#issuecomment-1777956166) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) -6. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -7. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) -9. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -10. 🗣 Commented on [#2](https://github.com/pep4eto1211/ecs/pull/2#issuecomment-1776810937) in [pep4eto1211/ecs](https://github.com/pep4eto1211/ecs) +1. 🗣 Commented on [#586](https://github.com/OpenFreeEnergy/openfe/pull/586#issuecomment-1778962170) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#4324](https://github.com/MDAnalysis/mdanalysis/pull/4324#issuecomment-1778793239) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#687](https://github.com/QuantEcon/QuantEcon.py/pull/687#issuecomment-1778323344) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +4. 🗣 Commented on [#791](https://github.com/scilus/scilpy/pull/791#issuecomment-1777956166) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +7. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +8. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) +10. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) From 742941b041827f48db63f6612c7d15c81716b245 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 11:13:09 +0000 Subject: [PATCH 0448/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 66083ab7..6a16cd26 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#586](https://github.com/OpenFreeEnergy/openfe/pull/586#issuecomment-1778962170) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#4324](https://github.com/MDAnalysis/mdanalysis/pull/4324#issuecomment-1778793239) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#687](https://github.com/QuantEcon/QuantEcon.py/pull/687#issuecomment-1778323344) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -4. 🗣 Commented on [#791](https://github.com/scilus/scilpy/pull/791#issuecomment-1777956166) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) -7. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -8. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) -10. 🗣 Commented on [#53](https://github.com/cirKITers/Quafel/pull/53#issuecomment-1776907091) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +1. 🗣 Commented on [#4](https://github.com/eastgenomics/QC_Classifier/pull/4#issuecomment-1778996492) in [eastgenomics/QC_Classifier](https://github.com/eastgenomics/QC_Classifier) +2. 🗣 Commented on [#586](https://github.com/OpenFreeEnergy/openfe/pull/586#issuecomment-1778962170) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#4324](https://github.com/MDAnalysis/mdanalysis/pull/4324#issuecomment-1778793239) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#687](https://github.com/QuantEcon/QuantEcon.py/pull/687#issuecomment-1778323344) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +5. 🗣 Commented on [#791](https://github.com/scilus/scilpy/pull/791#issuecomment-1777956166) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +8. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +9. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) From 36a5d09b3067ab172c08e21fced7caff45a288df Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 14:37:20 +0000 Subject: [PATCH 0449/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6a16cd26..da2f29a4 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4](https://github.com/eastgenomics/QC_Classifier/pull/4#issuecomment-1778996492) in [eastgenomics/QC_Classifier](https://github.com/eastgenomics/QC_Classifier) -2. 🗣 Commented on [#586](https://github.com/OpenFreeEnergy/openfe/pull/586#issuecomment-1778962170) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#4324](https://github.com/MDAnalysis/mdanalysis/pull/4324#issuecomment-1778793239) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#687](https://github.com/QuantEcon/QuantEcon.py/pull/687#issuecomment-1778323344) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -5. 🗣 Commented on [#791](https://github.com/scilus/scilpy/pull/791#issuecomment-1777956166) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) -8. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -9. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#1](https://github.com/Advik-B/zspotify/pull/1#issuecomment-1776958840) in [Advik-B/zspotify](https://github.com/Advik-B/zspotify) +1. 🗣 Commented on [#2826](https://github.com/dipy/dipy/pull/2826#issuecomment-1779412695) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#4](https://github.com/eastgenomics/QC_Classifier/pull/4#issuecomment-1778996492) in [eastgenomics/QC_Classifier](https://github.com/eastgenomics/QC_Classifier) +3. 🗣 Commented on [#586](https://github.com/OpenFreeEnergy/openfe/pull/586#issuecomment-1778962170) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#4324](https://github.com/MDAnalysis/mdanalysis/pull/4324#issuecomment-1778793239) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#687](https://github.com/QuantEcon/QuantEcon.py/pull/687#issuecomment-1778323344) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +6. 🗣 Commented on [#791](https://github.com/scilus/scilpy/pull/791#issuecomment-1777956166) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +9. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +10. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 03de2539c7896c9cc81c15263b6ad0d2802c4979 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 15:16:16 +0000 Subject: [PATCH 0450/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index da2f29a4..0e8e2160 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2826](https://github.com/dipy/dipy/pull/2826#issuecomment-1779412695) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#4](https://github.com/eastgenomics/QC_Classifier/pull/4#issuecomment-1778996492) in [eastgenomics/QC_Classifier](https://github.com/eastgenomics/QC_Classifier) -3. 🗣 Commented on [#586](https://github.com/OpenFreeEnergy/openfe/pull/586#issuecomment-1778962170) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#4324](https://github.com/MDAnalysis/mdanalysis/pull/4324#issuecomment-1778793239) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#687](https://github.com/QuantEcon/QuantEcon.py/pull/687#issuecomment-1778323344) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -6. 🗣 Commented on [#791](https://github.com/scilus/scilpy/pull/791#issuecomment-1777956166) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) -9. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -10. 🗣 Commented on [#5277](https://github.com/rhinstaller/anaconda/pull/5277#issuecomment-1777245122) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#3782](https://github.com/privacyidea/privacyidea/pull/3782#issuecomment-1779502945) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#2826](https://github.com/dipy/dipy/pull/2826#issuecomment-1779412695) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#4](https://github.com/eastgenomics/QC_Classifier/pull/4#issuecomment-1778996492) in [eastgenomics/QC_Classifier](https://github.com/eastgenomics/QC_Classifier) +4. 🗣 Commented on [#586](https://github.com/OpenFreeEnergy/openfe/pull/586#issuecomment-1778962170) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#4324](https://github.com/MDAnalysis/mdanalysis/pull/4324#issuecomment-1778793239) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#687](https://github.com/QuantEcon/QuantEcon.py/pull/687#issuecomment-1778323344) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +7. 🗣 Commented on [#791](https://github.com/scilus/scilpy/pull/791#issuecomment-1777956166) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +10. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) From 38362c1d9e01bfcf7d606c1548e6477a2f49b9e7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 15:37:25 +0000 Subject: [PATCH 0451/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0e8e2160..2503fc00 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#3782](https://github.com/privacyidea/privacyidea/pull/3782#issuecomment-1779502945) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#2826](https://github.com/dipy/dipy/pull/2826#issuecomment-1779412695) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#4](https://github.com/eastgenomics/QC_Classifier/pull/4#issuecomment-1778996492) in [eastgenomics/QC_Classifier](https://github.com/eastgenomics/QC_Classifier) -4. 🗣 Commented on [#586](https://github.com/OpenFreeEnergy/openfe/pull/586#issuecomment-1778962170) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#4324](https://github.com/MDAnalysis/mdanalysis/pull/4324#issuecomment-1778793239) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#687](https://github.com/QuantEcon/QuantEcon.py/pull/687#issuecomment-1778323344) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -7. 🗣 Commented on [#791](https://github.com/scilus/scilpy/pull/791#issuecomment-1777956166) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) -10. 🗣 Commented on [#1355](https://github.com/rpm-software-management/ci-dnf-stack/pull/1355#issuecomment-1777308482) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +1. 🗣 Commented on [#2604](https://github.com/metabrainz/listenbrainz-server/pull/2604#issuecomment-1779529846) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#3782](https://github.com/privacyidea/privacyidea/pull/3782#issuecomment-1779502945) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#2826](https://github.com/dipy/dipy/pull/2826#issuecomment-1779412695) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#4](https://github.com/eastgenomics/QC_Classifier/pull/4#issuecomment-1778996492) in [eastgenomics/QC_Classifier](https://github.com/eastgenomics/QC_Classifier) +5. 🗣 Commented on [#586](https://github.com/OpenFreeEnergy/openfe/pull/586#issuecomment-1778962170) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#4324](https://github.com/MDAnalysis/mdanalysis/pull/4324#issuecomment-1778793239) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#687](https://github.com/QuantEcon/QuantEcon.py/pull/687#issuecomment-1778323344) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +8. 🗣 Commented on [#791](https://github.com/scilus/scilpy/pull/791#issuecomment-1777956166) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) From 295ac5eb9654d32eb9fda234ac0459ca297d0399 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 17:37:16 +0000 Subject: [PATCH 0452/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2503fc00..828740d0 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2604](https://github.com/metabrainz/listenbrainz-server/pull/2604#issuecomment-1779529846) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#3782](https://github.com/privacyidea/privacyidea/pull/3782#issuecomment-1779502945) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#2826](https://github.com/dipy/dipy/pull/2826#issuecomment-1779412695) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#4](https://github.com/eastgenomics/QC_Classifier/pull/4#issuecomment-1778996492) in [eastgenomics/QC_Classifier](https://github.com/eastgenomics/QC_Classifier) -5. 🗣 Commented on [#586](https://github.com/OpenFreeEnergy/openfe/pull/586#issuecomment-1778962170) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#4324](https://github.com/MDAnalysis/mdanalysis/pull/4324#issuecomment-1778793239) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#687](https://github.com/QuantEcon/QuantEcon.py/pull/687#issuecomment-1778323344) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -8. 🗣 Commented on [#791](https://github.com/scilus/scilpy/pull/791#issuecomment-1777956166) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#7](https://github.com/rasbt/cvpr2023/pull/7#issuecomment-1777613784) in [rasbt/cvpr2023](https://github.com/rasbt/cvpr2023) +1. 🗣 Commented on [#156](https://github.com/arfc/transition-scenarios/pull/156#issuecomment-1779688330) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +2. 🗣 Commented on [#2604](https://github.com/metabrainz/listenbrainz-server/pull/2604#issuecomment-1779529846) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#3782](https://github.com/privacyidea/privacyidea/pull/3782#issuecomment-1779502945) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +4. 🗣 Commented on [#2826](https://github.com/dipy/dipy/pull/2826#issuecomment-1779412695) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#4](https://github.com/eastgenomics/QC_Classifier/pull/4#issuecomment-1778996492) in [eastgenomics/QC_Classifier](https://github.com/eastgenomics/QC_Classifier) +6. 🗣 Commented on [#586](https://github.com/OpenFreeEnergy/openfe/pull/586#issuecomment-1778962170) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#4324](https://github.com/MDAnalysis/mdanalysis/pull/4324#issuecomment-1778793239) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#687](https://github.com/QuantEcon/QuantEcon.py/pull/687#issuecomment-1778323344) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +9. 🗣 Commented on [#791](https://github.com/scilus/scilpy/pull/791#issuecomment-1777956166) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) From 78b53feb02e0251bf72921c217257dac27a92e38 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 20:16:19 +0000 Subject: [PATCH 0453/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 828740d0..8ac79db9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#156](https://github.com/arfc/transition-scenarios/pull/156#issuecomment-1779688330) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -2. 🗣 Commented on [#2604](https://github.com/metabrainz/listenbrainz-server/pull/2604#issuecomment-1779529846) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#3782](https://github.com/privacyidea/privacyidea/pull/3782#issuecomment-1779502945) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -4. 🗣 Commented on [#2826](https://github.com/dipy/dipy/pull/2826#issuecomment-1779412695) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#4](https://github.com/eastgenomics/QC_Classifier/pull/4#issuecomment-1778996492) in [eastgenomics/QC_Classifier](https://github.com/eastgenomics/QC_Classifier) -6. 🗣 Commented on [#586](https://github.com/OpenFreeEnergy/openfe/pull/586#issuecomment-1778962170) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#4324](https://github.com/MDAnalysis/mdanalysis/pull/4324#issuecomment-1778793239) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#687](https://github.com/QuantEcon/QuantEcon.py/pull/687#issuecomment-1778323344) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -9. 🗣 Commented on [#791](https://github.com/scilus/scilpy/pull/791#issuecomment-1777956166) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#790](https://github.com/scilus/scilpy/pull/790#issuecomment-1777757481) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#795](https://github.com/scilus/scilpy/pull/795#issuecomment-1779961683) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#156](https://github.com/arfc/transition-scenarios/pull/156#issuecomment-1779688330) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +4. 🗣 Commented on [#2604](https://github.com/metabrainz/listenbrainz-server/pull/2604#issuecomment-1779529846) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#3782](https://github.com/privacyidea/privacyidea/pull/3782#issuecomment-1779502945) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#2826](https://github.com/dipy/dipy/pull/2826#issuecomment-1779412695) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#4](https://github.com/eastgenomics/QC_Classifier/pull/4#issuecomment-1778996492) in [eastgenomics/QC_Classifier](https://github.com/eastgenomics/QC_Classifier) +8. 🗣 Commented on [#586](https://github.com/OpenFreeEnergy/openfe/pull/586#issuecomment-1778962170) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#4324](https://github.com/MDAnalysis/mdanalysis/pull/4324#issuecomment-1778793239) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#687](https://github.com/QuantEcon/QuantEcon.py/pull/687#issuecomment-1778323344) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) From 4f700d5a730ddba9f680f1ba569d6658b59cffc2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 21:13:35 +0000 Subject: [PATCH 0454/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8ac79db9..02fa30c9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#795](https://github.com/scilus/scilpy/pull/795#issuecomment-1779961683) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#156](https://github.com/arfc/transition-scenarios/pull/156#issuecomment-1779688330) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -4. 🗣 Commented on [#2604](https://github.com/metabrainz/listenbrainz-server/pull/2604#issuecomment-1779529846) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#3782](https://github.com/privacyidea/privacyidea/pull/3782#issuecomment-1779502945) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#2826](https://github.com/dipy/dipy/pull/2826#issuecomment-1779412695) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#4](https://github.com/eastgenomics/QC_Classifier/pull/4#issuecomment-1778996492) in [eastgenomics/QC_Classifier](https://github.com/eastgenomics/QC_Classifier) -8. 🗣 Commented on [#586](https://github.com/OpenFreeEnergy/openfe/pull/586#issuecomment-1778962170) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#4324](https://github.com/MDAnalysis/mdanalysis/pull/4324#issuecomment-1778793239) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#687](https://github.com/QuantEcon/QuantEcon.py/pull/687#issuecomment-1778323344) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +1. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +2. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#795](https://github.com/scilus/scilpy/pull/795#issuecomment-1779961683) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#156](https://github.com/arfc/transition-scenarios/pull/156#issuecomment-1779688330) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +5. 🗣 Commented on [#2604](https://github.com/metabrainz/listenbrainz-server/pull/2604#issuecomment-1779529846) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#3782](https://github.com/privacyidea/privacyidea/pull/3782#issuecomment-1779502945) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +7. 🗣 Commented on [#2826](https://github.com/dipy/dipy/pull/2826#issuecomment-1779412695) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#4](https://github.com/eastgenomics/QC_Classifier/pull/4#issuecomment-1778996492) in [eastgenomics/QC_Classifier](https://github.com/eastgenomics/QC_Classifier) +9. 🗣 Commented on [#586](https://github.com/OpenFreeEnergy/openfe/pull/586#issuecomment-1778962170) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#4324](https://github.com/MDAnalysis/mdanalysis/pull/4324#issuecomment-1778793239) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 1014987bf22229047b27d8a08c317a98147a58d2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 21:37:23 +0000 Subject: [PATCH 0455/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 02fa30c9..da59339b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -2. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#795](https://github.com/scilus/scilpy/pull/795#issuecomment-1779961683) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#156](https://github.com/arfc/transition-scenarios/pull/156#issuecomment-1779688330) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -5. 🗣 Commented on [#2604](https://github.com/metabrainz/listenbrainz-server/pull/2604#issuecomment-1779529846) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#3782](https://github.com/privacyidea/privacyidea/pull/3782#issuecomment-1779502945) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -7. 🗣 Commented on [#2826](https://github.com/dipy/dipy/pull/2826#issuecomment-1779412695) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#4](https://github.com/eastgenomics/QC_Classifier/pull/4#issuecomment-1778996492) in [eastgenomics/QC_Classifier](https://github.com/eastgenomics/QC_Classifier) -9. 🗣 Commented on [#586](https://github.com/OpenFreeEnergy/openfe/pull/586#issuecomment-1778962170) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#4324](https://github.com/MDAnalysis/mdanalysis/pull/4324#issuecomment-1778793239) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +2. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +3. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#795](https://github.com/scilus/scilpy/pull/795#issuecomment-1779961683) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#156](https://github.com/arfc/transition-scenarios/pull/156#issuecomment-1779688330) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +6. 🗣 Commented on [#2604](https://github.com/metabrainz/listenbrainz-server/pull/2604#issuecomment-1779529846) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#3782](https://github.com/privacyidea/privacyidea/pull/3782#issuecomment-1779502945) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#2826](https://github.com/dipy/dipy/pull/2826#issuecomment-1779412695) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#4](https://github.com/eastgenomics/QC_Classifier/pull/4#issuecomment-1778996492) in [eastgenomics/QC_Classifier](https://github.com/eastgenomics/QC_Classifier) +10. 🗣 Commented on [#586](https://github.com/OpenFreeEnergy/openfe/pull/586#issuecomment-1778962170) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 960d1c009e18ad28f2e829ba9e2824c2a53b1f56 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 23:37:27 +0000 Subject: [PATCH 0456/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index da59339b..a3ddbfa1 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -2. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -3. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#795](https://github.com/scilus/scilpy/pull/795#issuecomment-1779961683) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#156](https://github.com/arfc/transition-scenarios/pull/156#issuecomment-1779688330) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -6. 🗣 Commented on [#2604](https://github.com/metabrainz/listenbrainz-server/pull/2604#issuecomment-1779529846) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#3782](https://github.com/privacyidea/privacyidea/pull/3782#issuecomment-1779502945) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#2826](https://github.com/dipy/dipy/pull/2826#issuecomment-1779412695) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#4](https://github.com/eastgenomics/QC_Classifier/pull/4#issuecomment-1778996492) in [eastgenomics/QC_Classifier](https://github.com/eastgenomics/QC_Classifier) -10. 🗣 Commented on [#586](https://github.com/OpenFreeEnergy/openfe/pull/586#issuecomment-1778962170) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +3. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +4. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#795](https://github.com/scilus/scilpy/pull/795#issuecomment-1779961683) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#156](https://github.com/arfc/transition-scenarios/pull/156#issuecomment-1779688330) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +7. 🗣 Commented on [#2604](https://github.com/metabrainz/listenbrainz-server/pull/2604#issuecomment-1779529846) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#3782](https://github.com/privacyidea/privacyidea/pull/3782#issuecomment-1779502945) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#2826](https://github.com/dipy/dipy/pull/2826#issuecomment-1779412695) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#4](https://github.com/eastgenomics/QC_Classifier/pull/4#issuecomment-1778996492) in [eastgenomics/QC_Classifier](https://github.com/eastgenomics/QC_Classifier) From 973d8e0fa3594c610a6b459962bb44c38b0d1c9b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Oct 2023 03:15:52 +0000 Subject: [PATCH 0457/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a3ddbfa1..d4be0d86 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -3. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -4. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#795](https://github.com/scilus/scilpy/pull/795#issuecomment-1779961683) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#156](https://github.com/arfc/transition-scenarios/pull/156#issuecomment-1779688330) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -7. 🗣 Commented on [#2604](https://github.com/metabrainz/listenbrainz-server/pull/2604#issuecomment-1779529846) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#3782](https://github.com/privacyidea/privacyidea/pull/3782#issuecomment-1779502945) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#2826](https://github.com/dipy/dipy/pull/2826#issuecomment-1779412695) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#4](https://github.com/eastgenomics/QC_Classifier/pull/4#issuecomment-1778996492) in [eastgenomics/QC_Classifier](https://github.com/eastgenomics/QC_Classifier) +1. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) +2. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +4. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +5. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#795](https://github.com/scilus/scilpy/pull/795#issuecomment-1779961683) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#156](https://github.com/arfc/transition-scenarios/pull/156#issuecomment-1779688330) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +8. 🗣 Commented on [#2604](https://github.com/metabrainz/listenbrainz-server/pull/2604#issuecomment-1779529846) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#3782](https://github.com/privacyidea/privacyidea/pull/3782#issuecomment-1779502945) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#2826](https://github.com/dipy/dipy/pull/2826#issuecomment-1779412695) in [dipy/dipy](https://github.com/dipy/dipy) From 0b73943db3905cdb746d1f5e52243e72c7a32232 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Oct 2023 07:37:22 +0000 Subject: [PATCH 0458/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d4be0d86..c4ed0e69 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) -2. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -4. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -5. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#795](https://github.com/scilus/scilpy/pull/795#issuecomment-1779961683) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#156](https://github.com/arfc/transition-scenarios/pull/156#issuecomment-1779688330) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -8. 🗣 Commented on [#2604](https://github.com/metabrainz/listenbrainz-server/pull/2604#issuecomment-1779529846) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#3782](https://github.com/privacyidea/privacyidea/pull/3782#issuecomment-1779502945) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#2826](https://github.com/dipy/dipy/pull/2826#issuecomment-1779412695) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) +2. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) +3. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +4. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +5. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +6. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#795](https://github.com/scilus/scilpy/pull/795#issuecomment-1779961683) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#156](https://github.com/arfc/transition-scenarios/pull/156#issuecomment-1779688330) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +9. 🗣 Commented on [#2604](https://github.com/metabrainz/listenbrainz-server/pull/2604#issuecomment-1779529846) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#3782](https://github.com/privacyidea/privacyidea/pull/3782#issuecomment-1779502945) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From d35906f957696a26aa752d421878450ffab02ad8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Oct 2023 08:19:36 +0000 Subject: [PATCH 0459/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c4ed0e69..3fbc1eaf 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) -2. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) -3. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -4. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -5. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -6. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#795](https://github.com/scilus/scilpy/pull/795#issuecomment-1779961683) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#156](https://github.com/arfc/transition-scenarios/pull/156#issuecomment-1779688330) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -9. 🗣 Commented on [#2604](https://github.com/metabrainz/listenbrainz-server/pull/2604#issuecomment-1779529846) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#3782](https://github.com/privacyidea/privacyidea/pull/3782#issuecomment-1779502945) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) +3. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) +4. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +6. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +7. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#795](https://github.com/scilus/scilpy/pull/795#issuecomment-1779961683) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#156](https://github.com/arfc/transition-scenarios/pull/156#issuecomment-1779688330) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +10. 🗣 Commented on [#2604](https://github.com/metabrainz/listenbrainz-server/pull/2604#issuecomment-1779529846) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From b25d3fbd38f610c087b47615f38f62bc0158c51a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Oct 2023 11:12:43 +0000 Subject: [PATCH 0460/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3fbc1eaf..5a95536d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) -3. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) -4. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -6. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -7. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#795](https://github.com/scilus/scilpy/pull/795#issuecomment-1779961683) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#156](https://github.com/arfc/transition-scenarios/pull/156#issuecomment-1779688330) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -10. 🗣 Commented on [#2604](https://github.com/metabrainz/listenbrainz-server/pull/2604#issuecomment-1779529846) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) +4. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) +5. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +7. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +8. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#795](https://github.com/scilus/scilpy/pull/795#issuecomment-1779961683) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#156](https://github.com/arfc/transition-scenarios/pull/156#issuecomment-1779688330) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) From 31cedd03c1100e26e3e7812de8f6c978d4fbd66c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Oct 2023 15:16:11 +0000 Subject: [PATCH 0461/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5a95536d..01f91aeb 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) -4. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) -5. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -7. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -8. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#795](https://github.com/scilus/scilpy/pull/795#issuecomment-1779961683) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#156](https://github.com/arfc/transition-scenarios/pull/156#issuecomment-1779688330) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +1. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) +5. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) +6. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +8. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +9. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#795](https://github.com/scilus/scilpy/pull/795#issuecomment-1779961683) in [scilus/scilpy](https://github.com/scilus/scilpy) From 2c02ccf5236447bf5bc250b9af559909228bcd88 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Oct 2023 16:20:16 +0000 Subject: [PATCH 0462/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 01f91aeb..4e42e24b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) -5. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) -6. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -8. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -9. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#795](https://github.com/scilus/scilpy/pull/795#issuecomment-1779961683) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) +6. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) +7. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +8. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +9. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +10. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From d425fc48dbb536c772208300b5fda25c8678ec80 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Oct 2023 16:38:01 +0000 Subject: [PATCH 0463/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4e42e24b..aa59a176 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) -6. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) -7. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -8. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -9. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -10. 🗣 Commented on [#583](https://github.com/OpenFreeEnergy/openfe/pull/583#issuecomment-1779961837) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) +7. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) +8. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +10. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) From 75b4d5de837c96663f319576c607beb2b9c1cf77 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Oct 2023 18:19:21 +0000 Subject: [PATCH 0464/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index aa59a176..17c72bc5 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) -7. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) -8. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -10. 🗣 Commented on [#498](https://github.com/spatialaudio/python-sounddevice/pull/498#issuecomment-1780043109) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +1. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +2. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +4. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) +8. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) +9. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) From f13db1d9aa839b96015c3060af5f6c4186d3ecce Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Oct 2023 21:13:13 +0000 Subject: [PATCH 0465/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 17c72bc5..6f2ba88c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -2. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -4. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) -8. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) -9. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#288](https://github.com/AdvancedPhotonSource/tike/pull/288#issuecomment-1780091112) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +1. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +2. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +3. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) +9. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) +10. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) From 6861f55d5f2c93d6183801dccde6fba0b506c747 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 27 Oct 2023 09:15:06 +0000 Subject: [PATCH 0466/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6f2ba88c..682bc3b4 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -2. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -3. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) -9. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) -10. 🗣 Commented on [#228](https://github.com/aimclub/GOLEM/pull/228#issuecomment-1780194563) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +1. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +2. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +3. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +4. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) +10. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) From 8cd25680be620756930879671eb520a45dc27931 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 27 Oct 2023 11:37:10 +0000 Subject: [PATCH 0467/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 682bc3b4..9fd2089b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -2. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -3. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -4. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) -10. 🗣 Commented on [#101](https://github.com/drauger-os-development/system-installer/pull/101#issuecomment-1780348154) in [drauger-os-development/system-installer](https://github.com/drauger-os-development/system-installer) +1. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +2. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +3. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +4. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +5. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) From dd3923b163f59c277383503a01ef032e1ca6eb0d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 27 Oct 2023 12:30:21 +0000 Subject: [PATCH 0468/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9fd2089b..4aee3d67 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -2. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -3. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -4. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -5. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#444](https://github.com/MTG/dunya/pull/444#issuecomment-1780554392) in [MTG/dunya](https://github.com/MTG/dunya) +1. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +3. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +4. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +5. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +6. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +8. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From c2f61b8f50c346ce5a09d50acf150a16019016ca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 27 Oct 2023 15:16:04 +0000 Subject: [PATCH 0469/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4aee3d67..d305a3a5 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -3. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -4. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -5. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -6. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -8. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#204](https://github.com/CartoonFan/lutris/pull/204#issuecomment-1780577321) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#564](https://github.com/NeuralEnsemble/elephant/pull/564#issuecomment-1783047476) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +2. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +4. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +5. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +6. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +7. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From bdb3fb3c7e323330657ae13f38045d7e5c477ec1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 27 Oct 2023 19:11:02 +0000 Subject: [PATCH 0470/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d305a3a5..e8cb8d62 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#564](https://github.com/NeuralEnsemble/elephant/pull/564#issuecomment-1783047476) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -2. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -4. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -5. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -6. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -7. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#1189](https://github.com/aimclub/FEDOT/pull/1189#issuecomment-1780883871) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#64](https://github.com/ITMO-NSS-team/GAMLET/pull/64#issuecomment-1783382080) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +2. 🗣 Commented on [#564](https://github.com/NeuralEnsemble/elephant/pull/564#issuecomment-1783047476) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +3. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +5. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +6. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +7. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +8. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) From 5ea6cd32372fb3d2b34a27b1984945dc45fd00bf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 27 Oct 2023 20:16:10 +0000 Subject: [PATCH 0471/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e8cb8d62..d33edebb 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#64](https://github.com/ITMO-NSS-team/GAMLET/pull/64#issuecomment-1783382080) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -2. 🗣 Commented on [#564](https://github.com/NeuralEnsemble/elephant/pull/564#issuecomment-1783047476) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -3. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -5. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -6. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -7. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -8. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#750](https://github.com/scilus/scilpy/pull/750#issuecomment-1781310829) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#210](https://github.com/scil-vital/dwi_ml/pull/210#issuecomment-1783433984) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +2. 🗣 Commented on [#64](https://github.com/ITMO-NSS-team/GAMLET/pull/64#issuecomment-1783382080) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +3. 🗣 Commented on [#564](https://github.com/NeuralEnsemble/elephant/pull/564#issuecomment-1783047476) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +4. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +6. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +7. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +8. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +9. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) From ee7baefc89e1f9704601a366ecc8f98ddc771c9a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 27 Oct 2023 20:37:28 +0000 Subject: [PATCH 0472/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d33edebb..b752057c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#210](https://github.com/scil-vital/dwi_ml/pull/210#issuecomment-1783433984) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -2. 🗣 Commented on [#64](https://github.com/ITMO-NSS-team/GAMLET/pull/64#issuecomment-1783382080) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -3. 🗣 Commented on [#564](https://github.com/NeuralEnsemble/elephant/pull/564#issuecomment-1783047476) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -4. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -6. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -7. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -8. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -9. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#231](https://github.com/aimclub/GOLEM/pull/231#issuecomment-1781420968) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +1. 🗣 Commented on [#35](https://github.com/oemof/oemof-network/pull/35#issuecomment-1783480633) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +2. 🗣 Commented on [#210](https://github.com/scil-vital/dwi_ml/pull/210#issuecomment-1783433984) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +3. 🗣 Commented on [#64](https://github.com/ITMO-NSS-team/GAMLET/pull/64#issuecomment-1783382080) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +4. 🗣 Commented on [#564](https://github.com/NeuralEnsemble/elephant/pull/564#issuecomment-1783047476) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +5. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +7. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +8. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +9. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +10. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 06dee6af1e55d93bad1f018db451a07c04963df0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Oct 2023 06:19:11 +0000 Subject: [PATCH 0473/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b752057c..0bf3b4f3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#35](https://github.com/oemof/oemof-network/pull/35#issuecomment-1783480633) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -2. 🗣 Commented on [#210](https://github.com/scil-vital/dwi_ml/pull/210#issuecomment-1783433984) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -3. 🗣 Commented on [#64](https://github.com/ITMO-NSS-team/GAMLET/pull/64#issuecomment-1783382080) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -4. 🗣 Commented on [#564](https://github.com/NeuralEnsemble/elephant/pull/564#issuecomment-1783047476) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -5. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -7. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -8. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -9. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -10. 🗣 Commented on [#44](https://github.com/eastgenomics/eris/pull/44#issuecomment-1781444289) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#109](https://github.com/MDAnalysis/pytng/pull/109#issuecomment-1783716755) in [MDAnalysis/pytng](https://github.com/MDAnalysis/pytng) +2. 🗣 Commented on [#35](https://github.com/oemof/oemof-network/pull/35#issuecomment-1783480633) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +3. 🗣 Commented on [#210](https://github.com/scil-vital/dwi_ml/pull/210#issuecomment-1783433984) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +4. 🗣 Commented on [#64](https://github.com/ITMO-NSS-team/GAMLET/pull/64#issuecomment-1783382080) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +5. 🗣 Commented on [#564](https://github.com/NeuralEnsemble/elephant/pull/564#issuecomment-1783047476) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +6. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +8. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +9. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +10. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) From 8f3f3470c2b8ec37084448edd40fe05a08399196 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Oct 2023 12:48:19 +0000 Subject: [PATCH 0474/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0bf3b4f3..9cb2604a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#109](https://github.com/MDAnalysis/pytng/pull/109#issuecomment-1783716755) in [MDAnalysis/pytng](https://github.com/MDAnalysis/pytng) -2. 🗣 Commented on [#35](https://github.com/oemof/oemof-network/pull/35#issuecomment-1783480633) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -3. 🗣 Commented on [#210](https://github.com/scil-vital/dwi_ml/pull/210#issuecomment-1783433984) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -4. 🗣 Commented on [#64](https://github.com/ITMO-NSS-team/GAMLET/pull/64#issuecomment-1783382080) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -5. 🗣 Commented on [#564](https://github.com/NeuralEnsemble/elephant/pull/564#issuecomment-1783047476) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -6. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -8. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -9. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -10. 🗣 Commented on [#173](https://github.com/gwpy/pyomicron/pull/173#issuecomment-1781576659) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +1. 🗣 Commented on [#649](https://github.com/sunpy/ndcube/pull/649#issuecomment-1783797559) in [sunpy/ndcube](https://github.com/sunpy/ndcube) +2. 🗣 Commented on [#109](https://github.com/MDAnalysis/pytng/pull/109#issuecomment-1783716755) in [MDAnalysis/pytng](https://github.com/MDAnalysis/pytng) +3. 🗣 Commented on [#35](https://github.com/oemof/oemof-network/pull/35#issuecomment-1783480633) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +4. 🗣 Commented on [#210](https://github.com/scil-vital/dwi_ml/pull/210#issuecomment-1783433984) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +5. 🗣 Commented on [#64](https://github.com/ITMO-NSS-team/GAMLET/pull/64#issuecomment-1783382080) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +6. 🗣 Commented on [#564](https://github.com/NeuralEnsemble/elephant/pull/564#issuecomment-1783047476) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +7. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +9. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +10. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) From 495e741d9e308a9db6f7b2a00ace112607f255d8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Oct 2023 13:16:13 +0000 Subject: [PATCH 0475/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9cb2604a..19fcbfb7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#649](https://github.com/sunpy/ndcube/pull/649#issuecomment-1783797559) in [sunpy/ndcube](https://github.com/sunpy/ndcube) -2. 🗣 Commented on [#109](https://github.com/MDAnalysis/pytng/pull/109#issuecomment-1783716755) in [MDAnalysis/pytng](https://github.com/MDAnalysis/pytng) -3. 🗣 Commented on [#35](https://github.com/oemof/oemof-network/pull/35#issuecomment-1783480633) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -4. 🗣 Commented on [#210](https://github.com/scil-vital/dwi_ml/pull/210#issuecomment-1783433984) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -5. 🗣 Commented on [#64](https://github.com/ITMO-NSS-team/GAMLET/pull/64#issuecomment-1783382080) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -6. 🗣 Commented on [#564](https://github.com/NeuralEnsemble/elephant/pull/564#issuecomment-1783047476) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -7. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -9. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -10. 🗣 Commented on [#208](https://github.com/scil-vital/dwi_ml/pull/208#issuecomment-1781868680) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +1. 🗣 Commented on [#2609](https://github.com/metabrainz/listenbrainz-server/pull/2609#issuecomment-1783807014) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#649](https://github.com/sunpy/ndcube/pull/649#issuecomment-1783797559) in [sunpy/ndcube](https://github.com/sunpy/ndcube) +3. 🗣 Commented on [#109](https://github.com/MDAnalysis/pytng/pull/109#issuecomment-1783716755) in [MDAnalysis/pytng](https://github.com/MDAnalysis/pytng) +4. 🗣 Commented on [#35](https://github.com/oemof/oemof-network/pull/35#issuecomment-1783480633) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +5. 🗣 Commented on [#210](https://github.com/scil-vital/dwi_ml/pull/210#issuecomment-1783433984) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +6. 🗣 Commented on [#64](https://github.com/ITMO-NSS-team/GAMLET/pull/64#issuecomment-1783382080) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +7. 🗣 Commented on [#564](https://github.com/NeuralEnsemble/elephant/pull/564#issuecomment-1783047476) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +8. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +10. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) From f95a06b76c03df7f91bbdf3d1398ffb7e40925f8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Oct 2023 16:18:28 +0000 Subject: [PATCH 0476/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 19fcbfb7..20789ddd 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2609](https://github.com/metabrainz/listenbrainz-server/pull/2609#issuecomment-1783807014) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#649](https://github.com/sunpy/ndcube/pull/649#issuecomment-1783797559) in [sunpy/ndcube](https://github.com/sunpy/ndcube) -3. 🗣 Commented on [#109](https://github.com/MDAnalysis/pytng/pull/109#issuecomment-1783716755) in [MDAnalysis/pytng](https://github.com/MDAnalysis/pytng) -4. 🗣 Commented on [#35](https://github.com/oemof/oemof-network/pull/35#issuecomment-1783480633) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -5. 🗣 Commented on [#210](https://github.com/scil-vital/dwi_ml/pull/210#issuecomment-1783433984) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -6. 🗣 Commented on [#64](https://github.com/ITMO-NSS-team/GAMLET/pull/64#issuecomment-1783382080) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -7. 🗣 Commented on [#564](https://github.com/NeuralEnsemble/elephant/pull/564#issuecomment-1783047476) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -8. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -10. 🗣 Commented on [#570](https://github.com/NeuralEnsemble/elephant/pull/570#issuecomment-1782574381) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +1. 🗣 Commented on [#205](https://github.com/CartoonFan/lutris/pull/205#issuecomment-1783854893) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#2609](https://github.com/metabrainz/listenbrainz-server/pull/2609#issuecomment-1783807014) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#649](https://github.com/sunpy/ndcube/pull/649#issuecomment-1783797559) in [sunpy/ndcube](https://github.com/sunpy/ndcube) +4. 🗣 Commented on [#109](https://github.com/MDAnalysis/pytng/pull/109#issuecomment-1783716755) in [MDAnalysis/pytng](https://github.com/MDAnalysis/pytng) +5. 🗣 Commented on [#35](https://github.com/oemof/oemof-network/pull/35#issuecomment-1783480633) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +6. 🗣 Commented on [#210](https://github.com/scil-vital/dwi_ml/pull/210#issuecomment-1783433984) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +7. 🗣 Commented on [#64](https://github.com/ITMO-NSS-team/GAMLET/pull/64#issuecomment-1783382080) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +8. 🗣 Commented on [#564](https://github.com/NeuralEnsemble/elephant/pull/564#issuecomment-1783047476) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +9. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) From 5307efe35d8b252aa70ce723249aa96699ba2832 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Oct 2023 17:37:16 +0000 Subject: [PATCH 0477/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 20789ddd..17385788 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#205](https://github.com/CartoonFan/lutris/pull/205#issuecomment-1783854893) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#2609](https://github.com/metabrainz/listenbrainz-server/pull/2609#issuecomment-1783807014) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#649](https://github.com/sunpy/ndcube/pull/649#issuecomment-1783797559) in [sunpy/ndcube](https://github.com/sunpy/ndcube) -4. 🗣 Commented on [#109](https://github.com/MDAnalysis/pytng/pull/109#issuecomment-1783716755) in [MDAnalysis/pytng](https://github.com/MDAnalysis/pytng) -5. 🗣 Commented on [#35](https://github.com/oemof/oemof-network/pull/35#issuecomment-1783480633) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -6. 🗣 Commented on [#210](https://github.com/scil-vital/dwi_ml/pull/210#issuecomment-1783433984) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -7. 🗣 Commented on [#64](https://github.com/ITMO-NSS-team/GAMLET/pull/64#issuecomment-1783382080) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -8. 🗣 Commented on [#564](https://github.com/NeuralEnsemble/elephant/pull/564#issuecomment-1783047476) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -9. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#455](https://github.com/VorTECHsa/python-sdk/pull/455#issuecomment-1782749836) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +1. 🗣 Commented on [#155](https://github.com/rasbt/machine-learning-book/pull/155#issuecomment-1783875697) in [rasbt/machine-learning-book](https://github.com/rasbt/machine-learning-book) +2. 🗣 Commented on [#205](https://github.com/CartoonFan/lutris/pull/205#issuecomment-1783854893) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#2609](https://github.com/metabrainz/listenbrainz-server/pull/2609#issuecomment-1783807014) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#649](https://github.com/sunpy/ndcube/pull/649#issuecomment-1783797559) in [sunpy/ndcube](https://github.com/sunpy/ndcube) +5. 🗣 Commented on [#109](https://github.com/MDAnalysis/pytng/pull/109#issuecomment-1783716755) in [MDAnalysis/pytng](https://github.com/MDAnalysis/pytng) +6. 🗣 Commented on [#35](https://github.com/oemof/oemof-network/pull/35#issuecomment-1783480633) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +7. 🗣 Commented on [#210](https://github.com/scil-vital/dwi_ml/pull/210#issuecomment-1783433984) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +8. 🗣 Commented on [#64](https://github.com/ITMO-NSS-team/GAMLET/pull/64#issuecomment-1783382080) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +9. 🗣 Commented on [#564](https://github.com/NeuralEnsemble/elephant/pull/564#issuecomment-1783047476) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +10. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 0cc6e8603498d2195c9616d10709ccd41bbb81c6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Oct 2023 20:14:54 +0000 Subject: [PATCH 0478/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 17385788..95551fce 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#155](https://github.com/rasbt/machine-learning-book/pull/155#issuecomment-1783875697) in [rasbt/machine-learning-book](https://github.com/rasbt/machine-learning-book) -2. 🗣 Commented on [#205](https://github.com/CartoonFan/lutris/pull/205#issuecomment-1783854893) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#2609](https://github.com/metabrainz/listenbrainz-server/pull/2609#issuecomment-1783807014) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#649](https://github.com/sunpy/ndcube/pull/649#issuecomment-1783797559) in [sunpy/ndcube](https://github.com/sunpy/ndcube) -5. 🗣 Commented on [#109](https://github.com/MDAnalysis/pytng/pull/109#issuecomment-1783716755) in [MDAnalysis/pytng](https://github.com/MDAnalysis/pytng) -6. 🗣 Commented on [#35](https://github.com/oemof/oemof-network/pull/35#issuecomment-1783480633) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -7. 🗣 Commented on [#210](https://github.com/scil-vital/dwi_ml/pull/210#issuecomment-1783433984) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -8. 🗣 Commented on [#64](https://github.com/ITMO-NSS-team/GAMLET/pull/64#issuecomment-1783382080) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -9. 🗣 Commented on [#564](https://github.com/NeuralEnsemble/elephant/pull/564#issuecomment-1783047476) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -10. 🗣 Commented on [#5283](https://github.com/rhinstaller/anaconda/pull/5283#issuecomment-1782765109) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) +2. 🗣 Commented on [#1657](https://github.com/OGGM/oggm/pull/1657#issuecomment-1783909526) in [OGGM/oggm](https://github.com/OGGM/oggm) +3. 🗣 Commented on [#155](https://github.com/rasbt/machine-learning-book/pull/155#issuecomment-1783875697) in [rasbt/machine-learning-book](https://github.com/rasbt/machine-learning-book) +4. 🗣 Commented on [#205](https://github.com/CartoonFan/lutris/pull/205#issuecomment-1783854893) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#2609](https://github.com/metabrainz/listenbrainz-server/pull/2609#issuecomment-1783807014) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#649](https://github.com/sunpy/ndcube/pull/649#issuecomment-1783797559) in [sunpy/ndcube](https://github.com/sunpy/ndcube) +7. 🗣 Commented on [#109](https://github.com/MDAnalysis/pytng/pull/109#issuecomment-1783716755) in [MDAnalysis/pytng](https://github.com/MDAnalysis/pytng) +8. 🗣 Commented on [#35](https://github.com/oemof/oemof-network/pull/35#issuecomment-1783480633) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +9. 🗣 Commented on [#210](https://github.com/scil-vital/dwi_ml/pull/210#issuecomment-1783433984) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +10. 🗣 Commented on [#64](https://github.com/ITMO-NSS-team/GAMLET/pull/64#issuecomment-1783382080) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) From 2404fedd6476ea7811ab9e24a59d0de2f80774b4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 06:37:21 +0000 Subject: [PATCH 0479/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 95551fce..e2bd2056 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) -2. 🗣 Commented on [#1657](https://github.com/OGGM/oggm/pull/1657#issuecomment-1783909526) in [OGGM/oggm](https://github.com/OGGM/oggm) -3. 🗣 Commented on [#155](https://github.com/rasbt/machine-learning-book/pull/155#issuecomment-1783875697) in [rasbt/machine-learning-book](https://github.com/rasbt/machine-learning-book) -4. 🗣 Commented on [#205](https://github.com/CartoonFan/lutris/pull/205#issuecomment-1783854893) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#2609](https://github.com/metabrainz/listenbrainz-server/pull/2609#issuecomment-1783807014) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#649](https://github.com/sunpy/ndcube/pull/649#issuecomment-1783797559) in [sunpy/ndcube](https://github.com/sunpy/ndcube) -7. 🗣 Commented on [#109](https://github.com/MDAnalysis/pytng/pull/109#issuecomment-1783716755) in [MDAnalysis/pytng](https://github.com/MDAnalysis/pytng) -8. 🗣 Commented on [#35](https://github.com/oemof/oemof-network/pull/35#issuecomment-1783480633) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -9. 🗣 Commented on [#210](https://github.com/scil-vital/dwi_ml/pull/210#issuecomment-1783433984) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -10. 🗣 Commented on [#64](https://github.com/ITMO-NSS-team/GAMLET/pull/64#issuecomment-1783382080) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +1. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +2. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) +3. 🗣 Commented on [#1657](https://github.com/OGGM/oggm/pull/1657#issuecomment-1783909526) in [OGGM/oggm](https://github.com/OGGM/oggm) +4. 🗣 Commented on [#155](https://github.com/rasbt/machine-learning-book/pull/155#issuecomment-1783875697) in [rasbt/machine-learning-book](https://github.com/rasbt/machine-learning-book) +5. 🗣 Commented on [#205](https://github.com/CartoonFan/lutris/pull/205#issuecomment-1783854893) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#2609](https://github.com/metabrainz/listenbrainz-server/pull/2609#issuecomment-1783807014) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#649](https://github.com/sunpy/ndcube/pull/649#issuecomment-1783797559) in [sunpy/ndcube](https://github.com/sunpy/ndcube) +8. 🗣 Commented on [#109](https://github.com/MDAnalysis/pytng/pull/109#issuecomment-1783716755) in [MDAnalysis/pytng](https://github.com/MDAnalysis/pytng) +9. 🗣 Commented on [#35](https://github.com/oemof/oemof-network/pull/35#issuecomment-1783480633) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +10. 🗣 Commented on [#210](https://github.com/scil-vital/dwi_ml/pull/210#issuecomment-1783433984) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) From d21218bdb5e4242babdb4ae66c91b8bcc79d5f3b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 07:14:10 +0000 Subject: [PATCH 0480/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e2bd2056..c01001f2 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -2. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) -3. 🗣 Commented on [#1657](https://github.com/OGGM/oggm/pull/1657#issuecomment-1783909526) in [OGGM/oggm](https://github.com/OGGM/oggm) -4. 🗣 Commented on [#155](https://github.com/rasbt/machine-learning-book/pull/155#issuecomment-1783875697) in [rasbt/machine-learning-book](https://github.com/rasbt/machine-learning-book) -5. 🗣 Commented on [#205](https://github.com/CartoonFan/lutris/pull/205#issuecomment-1783854893) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#2609](https://github.com/metabrainz/listenbrainz-server/pull/2609#issuecomment-1783807014) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#649](https://github.com/sunpy/ndcube/pull/649#issuecomment-1783797559) in [sunpy/ndcube](https://github.com/sunpy/ndcube) -8. 🗣 Commented on [#109](https://github.com/MDAnalysis/pytng/pull/109#issuecomment-1783716755) in [MDAnalysis/pytng](https://github.com/MDAnalysis/pytng) -9. 🗣 Commented on [#35](https://github.com/oemof/oemof-network/pull/35#issuecomment-1783480633) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -10. 🗣 Commented on [#210](https://github.com/scil-vital/dwi_ml/pull/210#issuecomment-1783433984) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +1. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) +2. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +3. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) +4. 🗣 Commented on [#1657](https://github.com/OGGM/oggm/pull/1657#issuecomment-1783909526) in [OGGM/oggm](https://github.com/OGGM/oggm) +5. 🗣 Commented on [#155](https://github.com/rasbt/machine-learning-book/pull/155#issuecomment-1783875697) in [rasbt/machine-learning-book](https://github.com/rasbt/machine-learning-book) +6. 🗣 Commented on [#205](https://github.com/CartoonFan/lutris/pull/205#issuecomment-1783854893) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#2609](https://github.com/metabrainz/listenbrainz-server/pull/2609#issuecomment-1783807014) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#649](https://github.com/sunpy/ndcube/pull/649#issuecomment-1783797559) in [sunpy/ndcube](https://github.com/sunpy/ndcube) +9. 🗣 Commented on [#109](https://github.com/MDAnalysis/pytng/pull/109#issuecomment-1783716755) in [MDAnalysis/pytng](https://github.com/MDAnalysis/pytng) +10. 🗣 Commented on [#35](https://github.com/oemof/oemof-network/pull/35#issuecomment-1783480633) in [oemof/oemof-network](https://github.com/oemof/oemof-network) From e33e49bfd7d01f41d60a2d982ac423db0a1bdeac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 08:17:45 +0000 Subject: [PATCH 0481/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c01001f2..e5a62ff2 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) -2. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -3. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) -4. 🗣 Commented on [#1657](https://github.com/OGGM/oggm/pull/1657#issuecomment-1783909526) in [OGGM/oggm](https://github.com/OGGM/oggm) -5. 🗣 Commented on [#155](https://github.com/rasbt/machine-learning-book/pull/155#issuecomment-1783875697) in [rasbt/machine-learning-book](https://github.com/rasbt/machine-learning-book) -6. 🗣 Commented on [#205](https://github.com/CartoonFan/lutris/pull/205#issuecomment-1783854893) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#2609](https://github.com/metabrainz/listenbrainz-server/pull/2609#issuecomment-1783807014) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#649](https://github.com/sunpy/ndcube/pull/649#issuecomment-1783797559) in [sunpy/ndcube](https://github.com/sunpy/ndcube) -9. 🗣 Commented on [#109](https://github.com/MDAnalysis/pytng/pull/109#issuecomment-1783716755) in [MDAnalysis/pytng](https://github.com/MDAnalysis/pytng) -10. 🗣 Commented on [#35](https://github.com/oemof/oemof-network/pull/35#issuecomment-1783480633) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +1. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) +2. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) +3. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +4. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) +5. 🗣 Commented on [#1657](https://github.com/OGGM/oggm/pull/1657#issuecomment-1783909526) in [OGGM/oggm](https://github.com/OGGM/oggm) +6. 🗣 Commented on [#155](https://github.com/rasbt/machine-learning-book/pull/155#issuecomment-1783875697) in [rasbt/machine-learning-book](https://github.com/rasbt/machine-learning-book) +7. 🗣 Commented on [#205](https://github.com/CartoonFan/lutris/pull/205#issuecomment-1783854893) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#2609](https://github.com/metabrainz/listenbrainz-server/pull/2609#issuecomment-1783807014) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#649](https://github.com/sunpy/ndcube/pull/649#issuecomment-1783797559) in [sunpy/ndcube](https://github.com/sunpy/ndcube) +10. 🗣 Commented on [#109](https://github.com/MDAnalysis/pytng/pull/109#issuecomment-1783716755) in [MDAnalysis/pytng](https://github.com/MDAnalysis/pytng) From 407f68983086b68244b7f7bb664b09a3a5d5dc82 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 17:37:16 +0000 Subject: [PATCH 0482/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e5a62ff2..42ae338e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) -2. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) -3. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -4. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) -5. 🗣 Commented on [#1657](https://github.com/OGGM/oggm/pull/1657#issuecomment-1783909526) in [OGGM/oggm](https://github.com/OGGM/oggm) -6. 🗣 Commented on [#155](https://github.com/rasbt/machine-learning-book/pull/155#issuecomment-1783875697) in [rasbt/machine-learning-book](https://github.com/rasbt/machine-learning-book) -7. 🗣 Commented on [#205](https://github.com/CartoonFan/lutris/pull/205#issuecomment-1783854893) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#2609](https://github.com/metabrainz/listenbrainz-server/pull/2609#issuecomment-1783807014) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#649](https://github.com/sunpy/ndcube/pull/649#issuecomment-1783797559) in [sunpy/ndcube](https://github.com/sunpy/ndcube) -10. 🗣 Commented on [#109](https://github.com/MDAnalysis/pytng/pull/109#issuecomment-1783716755) in [MDAnalysis/pytng](https://github.com/MDAnalysis/pytng) +1. 🗣 Commented on [#12](https://github.com/cdfxscrq/Telegram_Forwarder/pull/12#issuecomment-1784176139) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +2. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) +3. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) +4. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +5. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) +6. 🗣 Commented on [#1657](https://github.com/OGGM/oggm/pull/1657#issuecomment-1783909526) in [OGGM/oggm](https://github.com/OGGM/oggm) +7. 🗣 Commented on [#155](https://github.com/rasbt/machine-learning-book/pull/155#issuecomment-1783875697) in [rasbt/machine-learning-book](https://github.com/rasbt/machine-learning-book) +8. 🗣 Commented on [#205](https://github.com/CartoonFan/lutris/pull/205#issuecomment-1783854893) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#2609](https://github.com/metabrainz/listenbrainz-server/pull/2609#issuecomment-1783807014) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#649](https://github.com/sunpy/ndcube/pull/649#issuecomment-1783797559) in [sunpy/ndcube](https://github.com/sunpy/ndcube) From 6403b965ec7a7993a31f38eabb5afb0a1ba3b457 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 21:12:32 +0000 Subject: [PATCH 0483/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 42ae338e..a56d35c7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#12](https://github.com/cdfxscrq/Telegram_Forwarder/pull/12#issuecomment-1784176139) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -2. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) -3. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) -4. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -5. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) -6. 🗣 Commented on [#1657](https://github.com/OGGM/oggm/pull/1657#issuecomment-1783909526) in [OGGM/oggm](https://github.com/OGGM/oggm) -7. 🗣 Commented on [#155](https://github.com/rasbt/machine-learning-book/pull/155#issuecomment-1783875697) in [rasbt/machine-learning-book](https://github.com/rasbt/machine-learning-book) -8. 🗣 Commented on [#205](https://github.com/CartoonFan/lutris/pull/205#issuecomment-1783854893) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#2609](https://github.com/metabrainz/listenbrainz-server/pull/2609#issuecomment-1783807014) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#649](https://github.com/sunpy/ndcube/pull/649#issuecomment-1783797559) in [sunpy/ndcube](https://github.com/sunpy/ndcube) +1. 🗣 Commented on [#64](https://github.com/MDAnalysis/MDAnalysisData/pull/64#issuecomment-1784225060) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +2. 🗣 Commented on [#12](https://github.com/cdfxscrq/Telegram_Forwarder/pull/12#issuecomment-1784176139) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +3. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) +4. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) +5. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +6. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) +7. 🗣 Commented on [#1657](https://github.com/OGGM/oggm/pull/1657#issuecomment-1783909526) in [OGGM/oggm](https://github.com/OGGM/oggm) +8. 🗣 Commented on [#155](https://github.com/rasbt/machine-learning-book/pull/155#issuecomment-1783875697) in [rasbt/machine-learning-book](https://github.com/rasbt/machine-learning-book) +9. 🗣 Commented on [#205](https://github.com/CartoonFan/lutris/pull/205#issuecomment-1783854893) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#2609](https://github.com/metabrainz/listenbrainz-server/pull/2609#issuecomment-1783807014) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 643602223aede0f32f81fc57486b417f9e8200d4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 29 Oct 2023 22:13:49 +0000 Subject: [PATCH 0484/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a56d35c7..b3f3c385 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#64](https://github.com/MDAnalysis/MDAnalysisData/pull/64#issuecomment-1784225060) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -2. 🗣 Commented on [#12](https://github.com/cdfxscrq/Telegram_Forwarder/pull/12#issuecomment-1784176139) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -3. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) -4. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) -5. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -6. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) -7. 🗣 Commented on [#1657](https://github.com/OGGM/oggm/pull/1657#issuecomment-1783909526) in [OGGM/oggm](https://github.com/OGGM/oggm) -8. 🗣 Commented on [#155](https://github.com/rasbt/machine-learning-book/pull/155#issuecomment-1783875697) in [rasbt/machine-learning-book](https://github.com/rasbt/machine-learning-book) -9. 🗣 Commented on [#205](https://github.com/CartoonFan/lutris/pull/205#issuecomment-1783854893) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#2609](https://github.com/metabrainz/listenbrainz-server/pull/2609#issuecomment-1783807014) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1](https://github.com/daVinci13/WingetUI/pull/1#issuecomment-1784233545) in [daVinci13/WingetUI](https://github.com/daVinci13/WingetUI) +2. 🗣 Commented on [#64](https://github.com/MDAnalysis/MDAnalysisData/pull/64#issuecomment-1784225060) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +3. 🗣 Commented on [#12](https://github.com/cdfxscrq/Telegram_Forwarder/pull/12#issuecomment-1784176139) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +4. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) +5. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) +6. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +7. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) +8. 🗣 Commented on [#1657](https://github.com/OGGM/oggm/pull/1657#issuecomment-1783909526) in [OGGM/oggm](https://github.com/OGGM/oggm) +9. 🗣 Commented on [#155](https://github.com/rasbt/machine-learning-book/pull/155#issuecomment-1783875697) in [rasbt/machine-learning-book](https://github.com/rasbt/machine-learning-book) +10. 🗣 Commented on [#205](https://github.com/CartoonFan/lutris/pull/205#issuecomment-1783854893) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From d5ffbd0043b0cb02f01b66bf105348cf5cf5cfc5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 02:05:43 +0000 Subject: [PATCH 0485/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b3f3c385..0a51a104 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/daVinci13/WingetUI/pull/1#issuecomment-1784233545) in [daVinci13/WingetUI](https://github.com/daVinci13/WingetUI) -2. 🗣 Commented on [#64](https://github.com/MDAnalysis/MDAnalysisData/pull/64#issuecomment-1784225060) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -3. 🗣 Commented on [#12](https://github.com/cdfxscrq/Telegram_Forwarder/pull/12#issuecomment-1784176139) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -4. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) -5. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) -6. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -7. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) -8. 🗣 Commented on [#1657](https://github.com/OGGM/oggm/pull/1657#issuecomment-1783909526) in [OGGM/oggm](https://github.com/OGGM/oggm) -9. 🗣 Commented on [#155](https://github.com/rasbt/machine-learning-book/pull/155#issuecomment-1783875697) in [rasbt/machine-learning-book](https://github.com/rasbt/machine-learning-book) -10. 🗣 Commented on [#205](https://github.com/CartoonFan/lutris/pull/205#issuecomment-1783854893) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/NewsGPT/pull/1#issuecomment-1784358811) in [tuhinmallick/NewsGPT](https://github.com/tuhinmallick/NewsGPT) +2. 🗣 Commented on [#1](https://github.com/daVinci13/WingetUI/pull/1#issuecomment-1784233545) in [daVinci13/WingetUI](https://github.com/daVinci13/WingetUI) +3. 🗣 Commented on [#64](https://github.com/MDAnalysis/MDAnalysisData/pull/64#issuecomment-1784225060) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +4. 🗣 Commented on [#12](https://github.com/cdfxscrq/Telegram_Forwarder/pull/12#issuecomment-1784176139) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +5. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) +6. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) +7. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +8. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) +9. 🗣 Commented on [#1657](https://github.com/OGGM/oggm/pull/1657#issuecomment-1783909526) in [OGGM/oggm](https://github.com/OGGM/oggm) +10. 🗣 Commented on [#155](https://github.com/rasbt/machine-learning-book/pull/155#issuecomment-1783875697) in [rasbt/machine-learning-book](https://github.com/rasbt/machine-learning-book) From dd2dc18e0d3a5c50355e75d10cb75f78845bf4b1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 02:37:51 +0000 Subject: [PATCH 0486/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0a51a104..cd1127d3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/NewsGPT/pull/1#issuecomment-1784358811) in [tuhinmallick/NewsGPT](https://github.com/tuhinmallick/NewsGPT) -2. 🗣 Commented on [#1](https://github.com/daVinci13/WingetUI/pull/1#issuecomment-1784233545) in [daVinci13/WingetUI](https://github.com/daVinci13/WingetUI) -3. 🗣 Commented on [#64](https://github.com/MDAnalysis/MDAnalysisData/pull/64#issuecomment-1784225060) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -4. 🗣 Commented on [#12](https://github.com/cdfxscrq/Telegram_Forwarder/pull/12#issuecomment-1784176139) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -5. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) -6. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) -7. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -8. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) -9. 🗣 Commented on [#1657](https://github.com/OGGM/oggm/pull/1657#issuecomment-1783909526) in [OGGM/oggm](https://github.com/OGGM/oggm) -10. 🗣 Commented on [#155](https://github.com/rasbt/machine-learning-book/pull/155#issuecomment-1783875697) in [rasbt/machine-learning-book](https://github.com/rasbt/machine-learning-book) +1. 🗣 Commented on [#206](https://github.com/CartoonFan/lutris/pull/206#issuecomment-1784377705) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/NewsGPT/pull/1#issuecomment-1784358811) in [tuhinmallick/NewsGPT](https://github.com/tuhinmallick/NewsGPT) +3. 🗣 Commented on [#1](https://github.com/daVinci13/WingetUI/pull/1#issuecomment-1784233545) in [daVinci13/WingetUI](https://github.com/daVinci13/WingetUI) +4. 🗣 Commented on [#64](https://github.com/MDAnalysis/MDAnalysisData/pull/64#issuecomment-1784225060) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +5. 🗣 Commented on [#12](https://github.com/cdfxscrq/Telegram_Forwarder/pull/12#issuecomment-1784176139) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +6. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) +7. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) +8. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +9. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) +10. 🗣 Commented on [#1657](https://github.com/OGGM/oggm/pull/1657#issuecomment-1783909526) in [OGGM/oggm](https://github.com/OGGM/oggm) From e3f06c2865161129effd9de2e591fe7befe910cc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 10:17:25 +0000 Subject: [PATCH 0487/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cd1127d3..8a07b827 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#206](https://github.com/CartoonFan/lutris/pull/206#issuecomment-1784377705) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/NewsGPT/pull/1#issuecomment-1784358811) in [tuhinmallick/NewsGPT](https://github.com/tuhinmallick/NewsGPT) -3. 🗣 Commented on [#1](https://github.com/daVinci13/WingetUI/pull/1#issuecomment-1784233545) in [daVinci13/WingetUI](https://github.com/daVinci13/WingetUI) -4. 🗣 Commented on [#64](https://github.com/MDAnalysis/MDAnalysisData/pull/64#issuecomment-1784225060) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -5. 🗣 Commented on [#12](https://github.com/cdfxscrq/Telegram_Forwarder/pull/12#issuecomment-1784176139) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -6. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) -7. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) -8. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -9. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) -10. 🗣 Commented on [#1657](https://github.com/OGGM/oggm/pull/1657#issuecomment-1783909526) in [OGGM/oggm](https://github.com/OGGM/oggm) +1. 🗣 Commented on [#579](https://github.com/NeuralEnsemble/elephant/pull/579#issuecomment-1784836327) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +2. 🗣 Commented on [#206](https://github.com/CartoonFan/lutris/pull/206#issuecomment-1784377705) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/NewsGPT/pull/1#issuecomment-1784358811) in [tuhinmallick/NewsGPT](https://github.com/tuhinmallick/NewsGPT) +4. 🗣 Commented on [#1](https://github.com/daVinci13/WingetUI/pull/1#issuecomment-1784233545) in [daVinci13/WingetUI](https://github.com/daVinci13/WingetUI) +5. 🗣 Commented on [#64](https://github.com/MDAnalysis/MDAnalysisData/pull/64#issuecomment-1784225060) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +6. 🗣 Commented on [#12](https://github.com/cdfxscrq/Telegram_Forwarder/pull/12#issuecomment-1784176139) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +7. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) +8. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) +9. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +10. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) From 3072a86ab15bafc6f791b5e341d6e9f661331d96 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 12:31:24 +0000 Subject: [PATCH 0488/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8a07b827..c038eabd 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#579](https://github.com/NeuralEnsemble/elephant/pull/579#issuecomment-1784836327) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -2. 🗣 Commented on [#206](https://github.com/CartoonFan/lutris/pull/206#issuecomment-1784377705) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/NewsGPT/pull/1#issuecomment-1784358811) in [tuhinmallick/NewsGPT](https://github.com/tuhinmallick/NewsGPT) -4. 🗣 Commented on [#1](https://github.com/daVinci13/WingetUI/pull/1#issuecomment-1784233545) in [daVinci13/WingetUI](https://github.com/daVinci13/WingetUI) -5. 🗣 Commented on [#64](https://github.com/MDAnalysis/MDAnalysisData/pull/64#issuecomment-1784225060) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -6. 🗣 Commented on [#12](https://github.com/cdfxscrq/Telegram_Forwarder/pull/12#issuecomment-1784176139) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -7. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) -8. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) -9. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -10. 🗣 Commented on [#112](https://github.com/MDAnalysis/membrane-curvature/pull/112#issuecomment-1783911698) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) +1. 🗣 Commented on [#234](https://github.com/aimclub/GOLEM/pull/234#issuecomment-1785035971) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#579](https://github.com/NeuralEnsemble/elephant/pull/579#issuecomment-1784836327) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +3. 🗣 Commented on [#206](https://github.com/CartoonFan/lutris/pull/206#issuecomment-1784377705) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/NewsGPT/pull/1#issuecomment-1784358811) in [tuhinmallick/NewsGPT](https://github.com/tuhinmallick/NewsGPT) +5. 🗣 Commented on [#1](https://github.com/daVinci13/WingetUI/pull/1#issuecomment-1784233545) in [daVinci13/WingetUI](https://github.com/daVinci13/WingetUI) +6. 🗣 Commented on [#64](https://github.com/MDAnalysis/MDAnalysisData/pull/64#issuecomment-1784225060) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +7. 🗣 Commented on [#12](https://github.com/cdfxscrq/Telegram_Forwarder/pull/12#issuecomment-1784176139) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +8. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) +9. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) +10. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) From d6a8069cf256a7085c149136eae8ba8f8885ec37 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 15:16:35 +0000 Subject: [PATCH 0489/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c038eabd..31bec4b2 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#234](https://github.com/aimclub/GOLEM/pull/234#issuecomment-1785035971) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#579](https://github.com/NeuralEnsemble/elephant/pull/579#issuecomment-1784836327) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -3. 🗣 Commented on [#206](https://github.com/CartoonFan/lutris/pull/206#issuecomment-1784377705) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/NewsGPT/pull/1#issuecomment-1784358811) in [tuhinmallick/NewsGPT](https://github.com/tuhinmallick/NewsGPT) -5. 🗣 Commented on [#1](https://github.com/daVinci13/WingetUI/pull/1#issuecomment-1784233545) in [daVinci13/WingetUI](https://github.com/daVinci13/WingetUI) -6. 🗣 Commented on [#64](https://github.com/MDAnalysis/MDAnalysisData/pull/64#issuecomment-1784225060) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -7. 🗣 Commented on [#12](https://github.com/cdfxscrq/Telegram_Forwarder/pull/12#issuecomment-1784176139) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -8. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) -9. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) -10. 🗣 Commented on [#61](https://github.com/MDAnalysis/MDAnalysisData/pull/61#issuecomment-1784012713) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +1. 🗣 Commented on [#183](https://github.com/cleder/pygeoif/pull/183#issuecomment-1785413028) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +2. 🗣 Commented on [#234](https://github.com/aimclub/GOLEM/pull/234#issuecomment-1785035971) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#579](https://github.com/NeuralEnsemble/elephant/pull/579#issuecomment-1784836327) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +4. 🗣 Commented on [#206](https://github.com/CartoonFan/lutris/pull/206#issuecomment-1784377705) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/NewsGPT/pull/1#issuecomment-1784358811) in [tuhinmallick/NewsGPT](https://github.com/tuhinmallick/NewsGPT) +6. 🗣 Commented on [#1](https://github.com/daVinci13/WingetUI/pull/1#issuecomment-1784233545) in [daVinci13/WingetUI](https://github.com/daVinci13/WingetUI) +7. 🗣 Commented on [#64](https://github.com/MDAnalysis/MDAnalysisData/pull/64#issuecomment-1784225060) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +8. 🗣 Commented on [#12](https://github.com/cdfxscrq/Telegram_Forwarder/pull/12#issuecomment-1784176139) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +9. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) +10. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) From 3783ad473657899e3ef78d0f65be02bfbba67b48 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 15:37:22 +0000 Subject: [PATCH 0490/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 31bec4b2..c8c4a398 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#183](https://github.com/cleder/pygeoif/pull/183#issuecomment-1785413028) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -2. 🗣 Commented on [#234](https://github.com/aimclub/GOLEM/pull/234#issuecomment-1785035971) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#579](https://github.com/NeuralEnsemble/elephant/pull/579#issuecomment-1784836327) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -4. 🗣 Commented on [#206](https://github.com/CartoonFan/lutris/pull/206#issuecomment-1784377705) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/NewsGPT/pull/1#issuecomment-1784358811) in [tuhinmallick/NewsGPT](https://github.com/tuhinmallick/NewsGPT) -6. 🗣 Commented on [#1](https://github.com/daVinci13/WingetUI/pull/1#issuecomment-1784233545) in [daVinci13/WingetUI](https://github.com/daVinci13/WingetUI) -7. 🗣 Commented on [#64](https://github.com/MDAnalysis/MDAnalysisData/pull/64#issuecomment-1784225060) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -8. 🗣 Commented on [#12](https://github.com/cdfxscrq/Telegram_Forwarder/pull/12#issuecomment-1784176139) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -9. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) -10. 🗣 Commented on [#13](https://github.com/CartoonFan/python-libusb1/pull/13#issuecomment-1784015602) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) +1. 🗣 Commented on [#255](https://github.com/cleder/fastkml/pull/255#issuecomment-1785458437) in [cleder/fastkml](https://github.com/cleder/fastkml) +2. 🗣 Commented on [#183](https://github.com/cleder/pygeoif/pull/183#issuecomment-1785413028) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +3. 🗣 Commented on [#234](https://github.com/aimclub/GOLEM/pull/234#issuecomment-1785035971) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +4. 🗣 Commented on [#579](https://github.com/NeuralEnsemble/elephant/pull/579#issuecomment-1784836327) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +5. 🗣 Commented on [#206](https://github.com/CartoonFan/lutris/pull/206#issuecomment-1784377705) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/NewsGPT/pull/1#issuecomment-1784358811) in [tuhinmallick/NewsGPT](https://github.com/tuhinmallick/NewsGPT) +7. 🗣 Commented on [#1](https://github.com/daVinci13/WingetUI/pull/1#issuecomment-1784233545) in [daVinci13/WingetUI](https://github.com/daVinci13/WingetUI) +8. 🗣 Commented on [#64](https://github.com/MDAnalysis/MDAnalysisData/pull/64#issuecomment-1784225060) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +9. 🗣 Commented on [#12](https://github.com/cdfxscrq/Telegram_Forwarder/pull/12#issuecomment-1784176139) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) +10. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) From 3366582d234a3b2561b735cd53abc6b76d2ffaae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 16:40:19 +0000 Subject: [PATCH 0491/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c8c4a398..49b6d45e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#255](https://github.com/cleder/fastkml/pull/255#issuecomment-1785458437) in [cleder/fastkml](https://github.com/cleder/fastkml) -2. 🗣 Commented on [#183](https://github.com/cleder/pygeoif/pull/183#issuecomment-1785413028) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -3. 🗣 Commented on [#234](https://github.com/aimclub/GOLEM/pull/234#issuecomment-1785035971) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -4. 🗣 Commented on [#579](https://github.com/NeuralEnsemble/elephant/pull/579#issuecomment-1784836327) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -5. 🗣 Commented on [#206](https://github.com/CartoonFan/lutris/pull/206#issuecomment-1784377705) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/NewsGPT/pull/1#issuecomment-1784358811) in [tuhinmallick/NewsGPT](https://github.com/tuhinmallick/NewsGPT) -7. 🗣 Commented on [#1](https://github.com/daVinci13/WingetUI/pull/1#issuecomment-1784233545) in [daVinci13/WingetUI](https://github.com/daVinci13/WingetUI) -8. 🗣 Commented on [#64](https://github.com/MDAnalysis/MDAnalysisData/pull/64#issuecomment-1784225060) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -9. 🗣 Commented on [#12](https://github.com/cdfxscrq/Telegram_Forwarder/pull/12#issuecomment-1784176139) in [cdfxscrq/Telegram_Forwarder](https://github.com/cdfxscrq/Telegram_Forwarder) -10. 🗣 Commented on [#5](https://github.com/Abdur-rahmaanJ/newsmoris/pull/5#issuecomment-1784029678) in [Abdur-rahmaanJ/newsmoris](https://github.com/Abdur-rahmaanJ/newsmoris) +1. 🗣 Commented on [#631](https://github.com/tomopy/tomopy/pull/631#issuecomment-1785606859) in [tomopy/tomopy](https://github.com/tomopy/tomopy) +2. 🗣 Commented on [#468](https://github.com/aramis-lab/clinicadl/pull/468#issuecomment-1785577148) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +3. 🗣 Commented on [#255](https://github.com/cleder/fastkml/pull/255#issuecomment-1785458437) in [cleder/fastkml](https://github.com/cleder/fastkml) +4. 🗣 Commented on [#183](https://github.com/cleder/pygeoif/pull/183#issuecomment-1785413028) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +5. 🗣 Commented on [#234](https://github.com/aimclub/GOLEM/pull/234#issuecomment-1785035971) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#579](https://github.com/NeuralEnsemble/elephant/pull/579#issuecomment-1784836327) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +7. 🗣 Commented on [#206](https://github.com/CartoonFan/lutris/pull/206#issuecomment-1784377705) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/NewsGPT/pull/1#issuecomment-1784358811) in [tuhinmallick/NewsGPT](https://github.com/tuhinmallick/NewsGPT) +9. 🗣 Commented on [#1](https://github.com/daVinci13/WingetUI/pull/1#issuecomment-1784233545) in [daVinci13/WingetUI](https://github.com/daVinci13/WingetUI) +10. 🗣 Commented on [#64](https://github.com/MDAnalysis/MDAnalysisData/pull/64#issuecomment-1784225060) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) From b476f25c605a347430006fee2b2a4e341c96c4e7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 17:13:56 +0000 Subject: [PATCH 0492/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 49b6d45e..27e2ee5c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#631](https://github.com/tomopy/tomopy/pull/631#issuecomment-1785606859) in [tomopy/tomopy](https://github.com/tomopy/tomopy) -2. 🗣 Commented on [#468](https://github.com/aramis-lab/clinicadl/pull/468#issuecomment-1785577148) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -3. 🗣 Commented on [#255](https://github.com/cleder/fastkml/pull/255#issuecomment-1785458437) in [cleder/fastkml](https://github.com/cleder/fastkml) -4. 🗣 Commented on [#183](https://github.com/cleder/pygeoif/pull/183#issuecomment-1785413028) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -5. 🗣 Commented on [#234](https://github.com/aimclub/GOLEM/pull/234#issuecomment-1785035971) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#579](https://github.com/NeuralEnsemble/elephant/pull/579#issuecomment-1784836327) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -7. 🗣 Commented on [#206](https://github.com/CartoonFan/lutris/pull/206#issuecomment-1784377705) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/NewsGPT/pull/1#issuecomment-1784358811) in [tuhinmallick/NewsGPT](https://github.com/tuhinmallick/NewsGPT) -9. 🗣 Commented on [#1](https://github.com/daVinci13/WingetUI/pull/1#issuecomment-1784233545) in [daVinci13/WingetUI](https://github.com/daVinci13/WingetUI) -10. 🗣 Commented on [#64](https://github.com/MDAnalysis/MDAnalysisData/pull/64#issuecomment-1784225060) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +1. 🗣 Commented on [#558](https://github.com/OpenFreeEnergy/openfe/pull/558#issuecomment-1785674546) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#1188](https://github.com/scikit-optimize/scikit-optimize/pull/1188#issuecomment-1785657827) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +3. 🗣 Commented on [#631](https://github.com/tomopy/tomopy/pull/631#issuecomment-1785606859) in [tomopy/tomopy](https://github.com/tomopy/tomopy) +4. 🗣 Commented on [#468](https://github.com/aramis-lab/clinicadl/pull/468#issuecomment-1785577148) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +5. 🗣 Commented on [#255](https://github.com/cleder/fastkml/pull/255#issuecomment-1785458437) in [cleder/fastkml](https://github.com/cleder/fastkml) +6. 🗣 Commented on [#183](https://github.com/cleder/pygeoif/pull/183#issuecomment-1785413028) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +7. 🗣 Commented on [#234](https://github.com/aimclub/GOLEM/pull/234#issuecomment-1785035971) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +8. 🗣 Commented on [#579](https://github.com/NeuralEnsemble/elephant/pull/579#issuecomment-1784836327) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +9. 🗣 Commented on [#206](https://github.com/CartoonFan/lutris/pull/206#issuecomment-1784377705) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/NewsGPT/pull/1#issuecomment-1784358811) in [tuhinmallick/NewsGPT](https://github.com/tuhinmallick/NewsGPT) From 5e763bc83bf3ffd6d0493c3ae0313f91c21cf8e5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 19:12:14 +0000 Subject: [PATCH 0493/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 27e2ee5c..6b98233c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#558](https://github.com/OpenFreeEnergy/openfe/pull/558#issuecomment-1785674546) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#1188](https://github.com/scikit-optimize/scikit-optimize/pull/1188#issuecomment-1785657827) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) -3. 🗣 Commented on [#631](https://github.com/tomopy/tomopy/pull/631#issuecomment-1785606859) in [tomopy/tomopy](https://github.com/tomopy/tomopy) -4. 🗣 Commented on [#468](https://github.com/aramis-lab/clinicadl/pull/468#issuecomment-1785577148) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -5. 🗣 Commented on [#255](https://github.com/cleder/fastkml/pull/255#issuecomment-1785458437) in [cleder/fastkml](https://github.com/cleder/fastkml) -6. 🗣 Commented on [#183](https://github.com/cleder/pygeoif/pull/183#issuecomment-1785413028) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -7. 🗣 Commented on [#234](https://github.com/aimclub/GOLEM/pull/234#issuecomment-1785035971) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -8. 🗣 Commented on [#579](https://github.com/NeuralEnsemble/elephant/pull/579#issuecomment-1784836327) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -9. 🗣 Commented on [#206](https://github.com/CartoonFan/lutris/pull/206#issuecomment-1784377705) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/NewsGPT/pull/1#issuecomment-1784358811) in [tuhinmallick/NewsGPT](https://github.com/tuhinmallick/NewsGPT) +1. 🗣 Commented on [#998](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/998#issuecomment-1785864419) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#558](https://github.com/OpenFreeEnergy/openfe/pull/558#issuecomment-1785674546) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#1188](https://github.com/scikit-optimize/scikit-optimize/pull/1188#issuecomment-1785657827) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +4. 🗣 Commented on [#631](https://github.com/tomopy/tomopy/pull/631#issuecomment-1785606859) in [tomopy/tomopy](https://github.com/tomopy/tomopy) +5. 🗣 Commented on [#468](https://github.com/aramis-lab/clinicadl/pull/468#issuecomment-1785577148) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +6. 🗣 Commented on [#255](https://github.com/cleder/fastkml/pull/255#issuecomment-1785458437) in [cleder/fastkml](https://github.com/cleder/fastkml) +7. 🗣 Commented on [#183](https://github.com/cleder/pygeoif/pull/183#issuecomment-1785413028) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +8. 🗣 Commented on [#234](https://github.com/aimclub/GOLEM/pull/234#issuecomment-1785035971) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#579](https://github.com/NeuralEnsemble/elephant/pull/579#issuecomment-1784836327) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +10. 🗣 Commented on [#206](https://github.com/CartoonFan/lutris/pull/206#issuecomment-1784377705) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 72cff45f5475843b8033b4d71d459bcd529c0799 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 19:37:19 +0000 Subject: [PATCH 0494/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6b98233c..553d16fe 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#998](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/998#issuecomment-1785864419) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#558](https://github.com/OpenFreeEnergy/openfe/pull/558#issuecomment-1785674546) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#1188](https://github.com/scikit-optimize/scikit-optimize/pull/1188#issuecomment-1785657827) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) -4. 🗣 Commented on [#631](https://github.com/tomopy/tomopy/pull/631#issuecomment-1785606859) in [tomopy/tomopy](https://github.com/tomopy/tomopy) -5. 🗣 Commented on [#468](https://github.com/aramis-lab/clinicadl/pull/468#issuecomment-1785577148) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -6. 🗣 Commented on [#255](https://github.com/cleder/fastkml/pull/255#issuecomment-1785458437) in [cleder/fastkml](https://github.com/cleder/fastkml) -7. 🗣 Commented on [#183](https://github.com/cleder/pygeoif/pull/183#issuecomment-1785413028) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -8. 🗣 Commented on [#234](https://github.com/aimclub/GOLEM/pull/234#issuecomment-1785035971) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#579](https://github.com/NeuralEnsemble/elephant/pull/579#issuecomment-1784836327) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -10. 🗣 Commented on [#206](https://github.com/CartoonFan/lutris/pull/206#issuecomment-1784377705) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#999](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/999#issuecomment-1785882512) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#998](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/998#issuecomment-1785864419) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#558](https://github.com/OpenFreeEnergy/openfe/pull/558#issuecomment-1785674546) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#1188](https://github.com/scikit-optimize/scikit-optimize/pull/1188#issuecomment-1785657827) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +5. 🗣 Commented on [#631](https://github.com/tomopy/tomopy/pull/631#issuecomment-1785606859) in [tomopy/tomopy](https://github.com/tomopy/tomopy) +6. 🗣 Commented on [#468](https://github.com/aramis-lab/clinicadl/pull/468#issuecomment-1785577148) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +7. 🗣 Commented on [#255](https://github.com/cleder/fastkml/pull/255#issuecomment-1785458437) in [cleder/fastkml](https://github.com/cleder/fastkml) +8. 🗣 Commented on [#183](https://github.com/cleder/pygeoif/pull/183#issuecomment-1785413028) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +9. 🗣 Commented on [#234](https://github.com/aimclub/GOLEM/pull/234#issuecomment-1785035971) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#579](https://github.com/NeuralEnsemble/elephant/pull/579#issuecomment-1784836327) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) From 1406358dbff83f18514c2acbe8b1e4b623a5370c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 21:37:15 +0000 Subject: [PATCH 0495/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 553d16fe..2f18e21d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#999](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/999#issuecomment-1785882512) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#998](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/998#issuecomment-1785864419) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#558](https://github.com/OpenFreeEnergy/openfe/pull/558#issuecomment-1785674546) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#1188](https://github.com/scikit-optimize/scikit-optimize/pull/1188#issuecomment-1785657827) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) -5. 🗣 Commented on [#631](https://github.com/tomopy/tomopy/pull/631#issuecomment-1785606859) in [tomopy/tomopy](https://github.com/tomopy/tomopy) -6. 🗣 Commented on [#468](https://github.com/aramis-lab/clinicadl/pull/468#issuecomment-1785577148) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -7. 🗣 Commented on [#255](https://github.com/cleder/fastkml/pull/255#issuecomment-1785458437) in [cleder/fastkml](https://github.com/cleder/fastkml) -8. 🗣 Commented on [#183](https://github.com/cleder/pygeoif/pull/183#issuecomment-1785413028) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -9. 🗣 Commented on [#234](https://github.com/aimclub/GOLEM/pull/234#issuecomment-1785035971) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#579](https://github.com/NeuralEnsemble/elephant/pull/579#issuecomment-1784836327) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +1. 🗣 Commented on [#499](https://github.com/spatialaudio/python-sounddevice/pull/499#issuecomment-1786065825) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +2. 🗣 Commented on [#999](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/999#issuecomment-1785882512) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#998](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/998#issuecomment-1785864419) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#558](https://github.com/OpenFreeEnergy/openfe/pull/558#issuecomment-1785674546) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#1188](https://github.com/scikit-optimize/scikit-optimize/pull/1188#issuecomment-1785657827) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +6. 🗣 Commented on [#631](https://github.com/tomopy/tomopy/pull/631#issuecomment-1785606859) in [tomopy/tomopy](https://github.com/tomopy/tomopy) +7. 🗣 Commented on [#468](https://github.com/aramis-lab/clinicadl/pull/468#issuecomment-1785577148) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +8. 🗣 Commented on [#255](https://github.com/cleder/fastkml/pull/255#issuecomment-1785458437) in [cleder/fastkml](https://github.com/cleder/fastkml) +9. 🗣 Commented on [#183](https://github.com/cleder/pygeoif/pull/183#issuecomment-1785413028) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +10. 🗣 Commented on [#234](https://github.com/aimclub/GOLEM/pull/234#issuecomment-1785035971) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) From 36764410d338429798f07a698fab60f895e73a55 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 22:14:29 +0000 Subject: [PATCH 0496/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2f18e21d..42842504 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#499](https://github.com/spatialaudio/python-sounddevice/pull/499#issuecomment-1786065825) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -2. 🗣 Commented on [#999](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/999#issuecomment-1785882512) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#998](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/998#issuecomment-1785864419) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#558](https://github.com/OpenFreeEnergy/openfe/pull/558#issuecomment-1785674546) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#1188](https://github.com/scikit-optimize/scikit-optimize/pull/1188#issuecomment-1785657827) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) -6. 🗣 Commented on [#631](https://github.com/tomopy/tomopy/pull/631#issuecomment-1785606859) in [tomopy/tomopy](https://github.com/tomopy/tomopy) -7. 🗣 Commented on [#468](https://github.com/aramis-lab/clinicadl/pull/468#issuecomment-1785577148) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -8. 🗣 Commented on [#255](https://github.com/cleder/fastkml/pull/255#issuecomment-1785458437) in [cleder/fastkml](https://github.com/cleder/fastkml) -9. 🗣 Commented on [#183](https://github.com/cleder/pygeoif/pull/183#issuecomment-1785413028) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -10. 🗣 Commented on [#234](https://github.com/aimclub/GOLEM/pull/234#issuecomment-1785035971) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +1. 🗣 Commented on [#250](https://github.com/InvisibleSymbol/rocketwatch/pull/250#issuecomment-1786109768) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +2. 🗣 Commented on [#249](https://github.com/InvisibleSymbol/rocketwatch/pull/249#issuecomment-1786109560) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +3. 🗣 Commented on [#499](https://github.com/spatialaudio/python-sounddevice/pull/499#issuecomment-1786065825) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +4. 🗣 Commented on [#999](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/999#issuecomment-1785882512) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#998](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/998#issuecomment-1785864419) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#558](https://github.com/OpenFreeEnergy/openfe/pull/558#issuecomment-1785674546) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#1188](https://github.com/scikit-optimize/scikit-optimize/pull/1188#issuecomment-1785657827) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +8. 🗣 Commented on [#631](https://github.com/tomopy/tomopy/pull/631#issuecomment-1785606859) in [tomopy/tomopy](https://github.com/tomopy/tomopy) +9. 🗣 Commented on [#468](https://github.com/aramis-lab/clinicadl/pull/468#issuecomment-1785577148) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +10. 🗣 Commented on [#255](https://github.com/cleder/fastkml/pull/255#issuecomment-1785458437) in [cleder/fastkml](https://github.com/cleder/fastkml) From 2b4305ca6688354ae7f7b177799aa26476246065 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 01:10:30 +0000 Subject: [PATCH 0497/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 42842504..a726747b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#250](https://github.com/InvisibleSymbol/rocketwatch/pull/250#issuecomment-1786109768) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -2. 🗣 Commented on [#249](https://github.com/InvisibleSymbol/rocketwatch/pull/249#issuecomment-1786109560) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -3. 🗣 Commented on [#499](https://github.com/spatialaudio/python-sounddevice/pull/499#issuecomment-1786065825) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -4. 🗣 Commented on [#999](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/999#issuecomment-1785882512) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#998](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/998#issuecomment-1785864419) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#558](https://github.com/OpenFreeEnergy/openfe/pull/558#issuecomment-1785674546) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#1188](https://github.com/scikit-optimize/scikit-optimize/pull/1188#issuecomment-1785657827) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) -8. 🗣 Commented on [#631](https://github.com/tomopy/tomopy/pull/631#issuecomment-1785606859) in [tomopy/tomopy](https://github.com/tomopy/tomopy) -9. 🗣 Commented on [#468](https://github.com/aramis-lab/clinicadl/pull/468#issuecomment-1785577148) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -10. 🗣 Commented on [#255](https://github.com/cleder/fastkml/pull/255#issuecomment-1785458437) in [cleder/fastkml](https://github.com/cleder/fastkml) +1. 🗣 Commented on [#2960](https://github.com/dipy/dipy/pull/2960#issuecomment-1786245425) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#250](https://github.com/InvisibleSymbol/rocketwatch/pull/250#issuecomment-1786109768) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +3. 🗣 Commented on [#249](https://github.com/InvisibleSymbol/rocketwatch/pull/249#issuecomment-1786109560) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +4. 🗣 Commented on [#499](https://github.com/spatialaudio/python-sounddevice/pull/499#issuecomment-1786065825) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +5. 🗣 Commented on [#999](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/999#issuecomment-1785882512) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#998](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/998#issuecomment-1785864419) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#558](https://github.com/OpenFreeEnergy/openfe/pull/558#issuecomment-1785674546) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#1188](https://github.com/scikit-optimize/scikit-optimize/pull/1188#issuecomment-1785657827) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +9. 🗣 Commented on [#631](https://github.com/tomopy/tomopy/pull/631#issuecomment-1785606859) in [tomopy/tomopy](https://github.com/tomopy/tomopy) +10. 🗣 Commented on [#468](https://github.com/aramis-lab/clinicadl/pull/468#issuecomment-1785577148) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) From 0bc7078701eb028e54c4498e68584d3a896e75c2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 12:30:55 +0000 Subject: [PATCH 0498/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a726747b..da9f76f9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2960](https://github.com/dipy/dipy/pull/2960#issuecomment-1786245425) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#250](https://github.com/InvisibleSymbol/rocketwatch/pull/250#issuecomment-1786109768) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -3. 🗣 Commented on [#249](https://github.com/InvisibleSymbol/rocketwatch/pull/249#issuecomment-1786109560) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -4. 🗣 Commented on [#499](https://github.com/spatialaudio/python-sounddevice/pull/499#issuecomment-1786065825) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -5. 🗣 Commented on [#999](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/999#issuecomment-1785882512) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#998](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/998#issuecomment-1785864419) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#558](https://github.com/OpenFreeEnergy/openfe/pull/558#issuecomment-1785674546) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#1188](https://github.com/scikit-optimize/scikit-optimize/pull/1188#issuecomment-1785657827) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) -9. 🗣 Commented on [#631](https://github.com/tomopy/tomopy/pull/631#issuecomment-1785606859) in [tomopy/tomopy](https://github.com/tomopy/tomopy) -10. 🗣 Commented on [#468](https://github.com/aramis-lab/clinicadl/pull/468#issuecomment-1785577148) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +1. 🗣 Commented on [#150](https://github.com/aimclub/GOLEM/pull/150#issuecomment-1787108642) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#2960](https://github.com/dipy/dipy/pull/2960#issuecomment-1786245425) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#250](https://github.com/InvisibleSymbol/rocketwatch/pull/250#issuecomment-1786109768) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +4. 🗣 Commented on [#249](https://github.com/InvisibleSymbol/rocketwatch/pull/249#issuecomment-1786109560) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +5. 🗣 Commented on [#499](https://github.com/spatialaudio/python-sounddevice/pull/499#issuecomment-1786065825) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +6. 🗣 Commented on [#999](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/999#issuecomment-1785882512) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#998](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/998#issuecomment-1785864419) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#558](https://github.com/OpenFreeEnergy/openfe/pull/558#issuecomment-1785674546) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#1188](https://github.com/scikit-optimize/scikit-optimize/pull/1188#issuecomment-1785657827) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +10. 🗣 Commented on [#631](https://github.com/tomopy/tomopy/pull/631#issuecomment-1785606859) in [tomopy/tomopy](https://github.com/tomopy/tomopy) From 838caae140504c0b7e6f8c8932c7f44d3ab6c436 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 13:18:55 +0000 Subject: [PATCH 0499/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index da9f76f9..6fe4ada0 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#150](https://github.com/aimclub/GOLEM/pull/150#issuecomment-1787108642) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#2960](https://github.com/dipy/dipy/pull/2960#issuecomment-1786245425) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#250](https://github.com/InvisibleSymbol/rocketwatch/pull/250#issuecomment-1786109768) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -4. 🗣 Commented on [#249](https://github.com/InvisibleSymbol/rocketwatch/pull/249#issuecomment-1786109560) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -5. 🗣 Commented on [#499](https://github.com/spatialaudio/python-sounddevice/pull/499#issuecomment-1786065825) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -6. 🗣 Commented on [#999](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/999#issuecomment-1785882512) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#998](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/998#issuecomment-1785864419) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#558](https://github.com/OpenFreeEnergy/openfe/pull/558#issuecomment-1785674546) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#1188](https://github.com/scikit-optimize/scikit-optimize/pull/1188#issuecomment-1785657827) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) -10. 🗣 Commented on [#631](https://github.com/tomopy/tomopy/pull/631#issuecomment-1785606859) in [tomopy/tomopy](https://github.com/tomopy/tomopy) +1. 🗣 Commented on [#598](https://github.com/OpenFreeEnergy/openfe/pull/598#issuecomment-1787162737) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#150](https://github.com/aimclub/GOLEM/pull/150#issuecomment-1787108642) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#2960](https://github.com/dipy/dipy/pull/2960#issuecomment-1786245425) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#250](https://github.com/InvisibleSymbol/rocketwatch/pull/250#issuecomment-1786109768) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +5. 🗣 Commented on [#249](https://github.com/InvisibleSymbol/rocketwatch/pull/249#issuecomment-1786109560) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +6. 🗣 Commented on [#499](https://github.com/spatialaudio/python-sounddevice/pull/499#issuecomment-1786065825) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +7. 🗣 Commented on [#999](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/999#issuecomment-1785882512) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#998](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/998#issuecomment-1785864419) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#558](https://github.com/OpenFreeEnergy/openfe/pull/558#issuecomment-1785674546) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#1188](https://github.com/scikit-optimize/scikit-optimize/pull/1188#issuecomment-1785657827) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) From 3e9a2c893232d0914b0e9f1fd32c77674f7fd50c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 14:14:53 +0000 Subject: [PATCH 0500/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6fe4ada0..2ec9fb57 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#598](https://github.com/OpenFreeEnergy/openfe/pull/598#issuecomment-1787162737) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#150](https://github.com/aimclub/GOLEM/pull/150#issuecomment-1787108642) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#2960](https://github.com/dipy/dipy/pull/2960#issuecomment-1786245425) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#250](https://github.com/InvisibleSymbol/rocketwatch/pull/250#issuecomment-1786109768) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -5. 🗣 Commented on [#249](https://github.com/InvisibleSymbol/rocketwatch/pull/249#issuecomment-1786109560) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -6. 🗣 Commented on [#499](https://github.com/spatialaudio/python-sounddevice/pull/499#issuecomment-1786065825) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -7. 🗣 Commented on [#999](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/999#issuecomment-1785882512) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#998](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/998#issuecomment-1785864419) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#558](https://github.com/OpenFreeEnergy/openfe/pull/558#issuecomment-1785674546) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#1188](https://github.com/scikit-optimize/scikit-optimize/pull/1188#issuecomment-1785657827) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +1. 🗣 Commented on [#3](https://github.com/Krishna-Singhal/Code-United-2/pull/3#issuecomment-1787278304) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +2. 🗣 Commented on [#2](https://github.com/Krishna-Singhal/Code-United-2/pull/2#issuecomment-1787270168) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +3. 🗣 Commented on [#236](https://github.com/aimclub/GOLEM/pull/236#issuecomment-1787252243) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +4. 🗣 Commented on [#598](https://github.com/OpenFreeEnergy/openfe/pull/598#issuecomment-1787162737) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#150](https://github.com/aimclub/GOLEM/pull/150#issuecomment-1787108642) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#2960](https://github.com/dipy/dipy/pull/2960#issuecomment-1786245425) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#250](https://github.com/InvisibleSymbol/rocketwatch/pull/250#issuecomment-1786109768) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +8. 🗣 Commented on [#249](https://github.com/InvisibleSymbol/rocketwatch/pull/249#issuecomment-1786109560) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +9. 🗣 Commented on [#499](https://github.com/spatialaudio/python-sounddevice/pull/499#issuecomment-1786065825) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +10. 🗣 Commented on [#999](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/999#issuecomment-1785882512) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 9cacd293c7b8e645eee0f365d82806c6b0615dc0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 14:37:22 +0000 Subject: [PATCH 0501/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2ec9fb57..fb259652 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#3](https://github.com/Krishna-Singhal/Code-United-2/pull/3#issuecomment-1787278304) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -2. 🗣 Commented on [#2](https://github.com/Krishna-Singhal/Code-United-2/pull/2#issuecomment-1787270168) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -3. 🗣 Commented on [#236](https://github.com/aimclub/GOLEM/pull/236#issuecomment-1787252243) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -4. 🗣 Commented on [#598](https://github.com/OpenFreeEnergy/openfe/pull/598#issuecomment-1787162737) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#150](https://github.com/aimclub/GOLEM/pull/150#issuecomment-1787108642) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#2960](https://github.com/dipy/dipy/pull/2960#issuecomment-1786245425) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#250](https://github.com/InvisibleSymbol/rocketwatch/pull/250#issuecomment-1786109768) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -8. 🗣 Commented on [#249](https://github.com/InvisibleSymbol/rocketwatch/pull/249#issuecomment-1786109560) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -9. 🗣 Commented on [#499](https://github.com/spatialaudio/python-sounddevice/pull/499#issuecomment-1786065825) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -10. 🗣 Commented on [#999](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/999#issuecomment-1785882512) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#106](https://github.com/aimclub/Fedot.Industrial/pull/106#issuecomment-1787327512) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +2. 🗣 Commented on [#3](https://github.com/Krishna-Singhal/Code-United-2/pull/3#issuecomment-1787278304) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +3. 🗣 Commented on [#2](https://github.com/Krishna-Singhal/Code-United-2/pull/2#issuecomment-1787270168) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +4. 🗣 Commented on [#236](https://github.com/aimclub/GOLEM/pull/236#issuecomment-1787252243) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#598](https://github.com/OpenFreeEnergy/openfe/pull/598#issuecomment-1787162737) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#150](https://github.com/aimclub/GOLEM/pull/150#issuecomment-1787108642) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#2960](https://github.com/dipy/dipy/pull/2960#issuecomment-1786245425) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#250](https://github.com/InvisibleSymbol/rocketwatch/pull/250#issuecomment-1786109768) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +9. 🗣 Commented on [#249](https://github.com/InvisibleSymbol/rocketwatch/pull/249#issuecomment-1786109560) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +10. 🗣 Commented on [#499](https://github.com/spatialaudio/python-sounddevice/pull/499#issuecomment-1786065825) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) From 0c2fb8d9ce979d46ed1e2e78a80ddfeccf69646e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 15:16:51 +0000 Subject: [PATCH 0502/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fb259652..eaf27949 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#106](https://github.com/aimclub/Fedot.Industrial/pull/106#issuecomment-1787327512) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -2. 🗣 Commented on [#3](https://github.com/Krishna-Singhal/Code-United-2/pull/3#issuecomment-1787278304) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -3. 🗣 Commented on [#2](https://github.com/Krishna-Singhal/Code-United-2/pull/2#issuecomment-1787270168) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -4. 🗣 Commented on [#236](https://github.com/aimclub/GOLEM/pull/236#issuecomment-1787252243) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#598](https://github.com/OpenFreeEnergy/openfe/pull/598#issuecomment-1787162737) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#150](https://github.com/aimclub/GOLEM/pull/150#issuecomment-1787108642) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#2960](https://github.com/dipy/dipy/pull/2960#issuecomment-1786245425) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#250](https://github.com/InvisibleSymbol/rocketwatch/pull/250#issuecomment-1786109768) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -9. 🗣 Commented on [#249](https://github.com/InvisibleSymbol/rocketwatch/pull/249#issuecomment-1786109560) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -10. 🗣 Commented on [#499](https://github.com/spatialaudio/python-sounddevice/pull/499#issuecomment-1786065825) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +1. 🗣 Commented on [#214](https://github.com/scil-vital/dwi_ml/pull/214#issuecomment-1787393806) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +2. 🗣 Commented on [#601](https://github.com/OpenFreeEnergy/openfe/pull/601#issuecomment-1787372305) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#106](https://github.com/aimclub/Fedot.Industrial/pull/106#issuecomment-1787327512) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#3](https://github.com/Krishna-Singhal/Code-United-2/pull/3#issuecomment-1787278304) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +5. 🗣 Commented on [#2](https://github.com/Krishna-Singhal/Code-United-2/pull/2#issuecomment-1787270168) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +6. 🗣 Commented on [#236](https://github.com/aimclub/GOLEM/pull/236#issuecomment-1787252243) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#598](https://github.com/OpenFreeEnergy/openfe/pull/598#issuecomment-1787162737) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#150](https://github.com/aimclub/GOLEM/pull/150#issuecomment-1787108642) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#2960](https://github.com/dipy/dipy/pull/2960#issuecomment-1786245425) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#250](https://github.com/InvisibleSymbol/rocketwatch/pull/250#issuecomment-1786109768) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) From 558a5a7ca8328786b94e6ab7c8beed6cfdb2500d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 16:21:08 +0000 Subject: [PATCH 0503/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index eaf27949..388071e2 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#214](https://github.com/scil-vital/dwi_ml/pull/214#issuecomment-1787393806) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -2. 🗣 Commented on [#601](https://github.com/OpenFreeEnergy/openfe/pull/601#issuecomment-1787372305) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#106](https://github.com/aimclub/Fedot.Industrial/pull/106#issuecomment-1787327512) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#3](https://github.com/Krishna-Singhal/Code-United-2/pull/3#issuecomment-1787278304) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -5. 🗣 Commented on [#2](https://github.com/Krishna-Singhal/Code-United-2/pull/2#issuecomment-1787270168) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -6. 🗣 Commented on [#236](https://github.com/aimclub/GOLEM/pull/236#issuecomment-1787252243) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#598](https://github.com/OpenFreeEnergy/openfe/pull/598#issuecomment-1787162737) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#150](https://github.com/aimclub/GOLEM/pull/150#issuecomment-1787108642) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#2960](https://github.com/dipy/dipy/pull/2960#issuecomment-1786245425) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#250](https://github.com/InvisibleSymbol/rocketwatch/pull/250#issuecomment-1786109768) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +1. 🗣 Commented on [#21470](https://github.com/spyder-ide/spyder/pull/21470#issuecomment-1787514156) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#1006](https://github.com/oemof/oemof-solph/pull/1006#issuecomment-1787504134) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +3. 🗣 Commented on [#214](https://github.com/scil-vital/dwi_ml/pull/214#issuecomment-1787393806) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +4. 🗣 Commented on [#601](https://github.com/OpenFreeEnergy/openfe/pull/601#issuecomment-1787372305) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#106](https://github.com/aimclub/Fedot.Industrial/pull/106#issuecomment-1787327512) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#3](https://github.com/Krishna-Singhal/Code-United-2/pull/3#issuecomment-1787278304) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +7. 🗣 Commented on [#2](https://github.com/Krishna-Singhal/Code-United-2/pull/2#issuecomment-1787270168) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +8. 🗣 Commented on [#236](https://github.com/aimclub/GOLEM/pull/236#issuecomment-1787252243) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#598](https://github.com/OpenFreeEnergy/openfe/pull/598#issuecomment-1787162737) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#150](https://github.com/aimclub/GOLEM/pull/150#issuecomment-1787108642) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) From 0b497d4a83ac1f658e63eae6fb751b0f5a47a021 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 17:14:06 +0000 Subject: [PATCH 0504/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 388071e2..2d63f72e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#21470](https://github.com/spyder-ide/spyder/pull/21470#issuecomment-1787514156) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#1006](https://github.com/oemof/oemof-solph/pull/1006#issuecomment-1787504134) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -3. 🗣 Commented on [#214](https://github.com/scil-vital/dwi_ml/pull/214#issuecomment-1787393806) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -4. 🗣 Commented on [#601](https://github.com/OpenFreeEnergy/openfe/pull/601#issuecomment-1787372305) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#106](https://github.com/aimclub/Fedot.Industrial/pull/106#issuecomment-1787327512) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#3](https://github.com/Krishna-Singhal/Code-United-2/pull/3#issuecomment-1787278304) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -7. 🗣 Commented on [#2](https://github.com/Krishna-Singhal/Code-United-2/pull/2#issuecomment-1787270168) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -8. 🗣 Commented on [#236](https://github.com/aimclub/GOLEM/pull/236#issuecomment-1787252243) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#598](https://github.com/OpenFreeEnergy/openfe/pull/598#issuecomment-1787162737) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#150](https://github.com/aimclub/GOLEM/pull/150#issuecomment-1787108642) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +1. 🗣 Commented on [#1007](https://github.com/oemof/oemof-solph/pull/1007#issuecomment-1787602157) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +2. 🗣 Commented on [#21470](https://github.com/spyder-ide/spyder/pull/21470#issuecomment-1787514156) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#1006](https://github.com/oemof/oemof-solph/pull/1006#issuecomment-1787504134) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +4. 🗣 Commented on [#214](https://github.com/scil-vital/dwi_ml/pull/214#issuecomment-1787393806) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +5. 🗣 Commented on [#601](https://github.com/OpenFreeEnergy/openfe/pull/601#issuecomment-1787372305) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#106](https://github.com/aimclub/Fedot.Industrial/pull/106#issuecomment-1787327512) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#3](https://github.com/Krishna-Singhal/Code-United-2/pull/3#issuecomment-1787278304) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +8. 🗣 Commented on [#2](https://github.com/Krishna-Singhal/Code-United-2/pull/2#issuecomment-1787270168) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +9. 🗣 Commented on [#236](https://github.com/aimclub/GOLEM/pull/236#issuecomment-1787252243) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#598](https://github.com/OpenFreeEnergy/openfe/pull/598#issuecomment-1787162737) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 90fd71c5065a85b8ae67dfd8712fbe96682636d9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 18:20:22 +0000 Subject: [PATCH 0505/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2d63f72e..7a41e756 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1007](https://github.com/oemof/oemof-solph/pull/1007#issuecomment-1787602157) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -2. 🗣 Commented on [#21470](https://github.com/spyder-ide/spyder/pull/21470#issuecomment-1787514156) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#1006](https://github.com/oemof/oemof-solph/pull/1006#issuecomment-1787504134) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -4. 🗣 Commented on [#214](https://github.com/scil-vital/dwi_ml/pull/214#issuecomment-1787393806) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -5. 🗣 Commented on [#601](https://github.com/OpenFreeEnergy/openfe/pull/601#issuecomment-1787372305) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#106](https://github.com/aimclub/Fedot.Industrial/pull/106#issuecomment-1787327512) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#3](https://github.com/Krishna-Singhal/Code-United-2/pull/3#issuecomment-1787278304) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -8. 🗣 Commented on [#2](https://github.com/Krishna-Singhal/Code-United-2/pull/2#issuecomment-1787270168) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -9. 🗣 Commented on [#236](https://github.com/aimclub/GOLEM/pull/236#issuecomment-1787252243) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#598](https://github.com/OpenFreeEnergy/openfe/pull/598#issuecomment-1787162737) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#78](https://github.com/MDAnalysis/MDAnalysisData/pull/78#issuecomment-1787685000) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +2. 🗣 Commented on [#1007](https://github.com/oemof/oemof-solph/pull/1007#issuecomment-1787602157) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +3. 🗣 Commented on [#21470](https://github.com/spyder-ide/spyder/pull/21470#issuecomment-1787514156) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#1006](https://github.com/oemof/oemof-solph/pull/1006#issuecomment-1787504134) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +5. 🗣 Commented on [#214](https://github.com/scil-vital/dwi_ml/pull/214#issuecomment-1787393806) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +6. 🗣 Commented on [#601](https://github.com/OpenFreeEnergy/openfe/pull/601#issuecomment-1787372305) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#106](https://github.com/aimclub/Fedot.Industrial/pull/106#issuecomment-1787327512) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +8. 🗣 Commented on [#3](https://github.com/Krishna-Singhal/Code-United-2/pull/3#issuecomment-1787278304) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +9. 🗣 Commented on [#2](https://github.com/Krishna-Singhal/Code-United-2/pull/2#issuecomment-1787270168) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +10. 🗣 Commented on [#236](https://github.com/aimclub/GOLEM/pull/236#issuecomment-1787252243) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) From ebf3e5d3c455a7aaca1c2bedd67f36c5a8633967 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 20:37:20 +0000 Subject: [PATCH 0506/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7a41e756..0fc1c8e9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#78](https://github.com/MDAnalysis/MDAnalysisData/pull/78#issuecomment-1787685000) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -2. 🗣 Commented on [#1007](https://github.com/oemof/oemof-solph/pull/1007#issuecomment-1787602157) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -3. 🗣 Commented on [#21470](https://github.com/spyder-ide/spyder/pull/21470#issuecomment-1787514156) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#1006](https://github.com/oemof/oemof-solph/pull/1006#issuecomment-1787504134) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -5. 🗣 Commented on [#214](https://github.com/scil-vital/dwi_ml/pull/214#issuecomment-1787393806) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -6. 🗣 Commented on [#601](https://github.com/OpenFreeEnergy/openfe/pull/601#issuecomment-1787372305) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#106](https://github.com/aimclub/Fedot.Industrial/pull/106#issuecomment-1787327512) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -8. 🗣 Commented on [#3](https://github.com/Krishna-Singhal/Code-United-2/pull/3#issuecomment-1787278304) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -9. 🗣 Commented on [#2](https://github.com/Krishna-Singhal/Code-United-2/pull/2#issuecomment-1787270168) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -10. 🗣 Commented on [#236](https://github.com/aimclub/GOLEM/pull/236#issuecomment-1787252243) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +1. 🗣 Commented on [#810](https://github.com/fury-gl/fury/pull/810#issuecomment-1787973431) in [fury-gl/fury](https://github.com/fury-gl/fury) +2. 🗣 Commented on [#78](https://github.com/MDAnalysis/MDAnalysisData/pull/78#issuecomment-1787685000) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +3. 🗣 Commented on [#1007](https://github.com/oemof/oemof-solph/pull/1007#issuecomment-1787602157) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +4. 🗣 Commented on [#21470](https://github.com/spyder-ide/spyder/pull/21470#issuecomment-1787514156) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#1006](https://github.com/oemof/oemof-solph/pull/1006#issuecomment-1787504134) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +6. 🗣 Commented on [#214](https://github.com/scil-vital/dwi_ml/pull/214#issuecomment-1787393806) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +7. 🗣 Commented on [#601](https://github.com/OpenFreeEnergy/openfe/pull/601#issuecomment-1787372305) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#106](https://github.com/aimclub/Fedot.Industrial/pull/106#issuecomment-1787327512) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +9. 🗣 Commented on [#3](https://github.com/Krishna-Singhal/Code-United-2/pull/3#issuecomment-1787278304) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +10. 🗣 Commented on [#2](https://github.com/Krishna-Singhal/Code-United-2/pull/2#issuecomment-1787270168) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) From 2957acfe9150ffe9cbf0cc752986163a8013e1c7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 22:14:24 +0000 Subject: [PATCH 0507/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0fc1c8e9..ad4e4c98 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#810](https://github.com/fury-gl/fury/pull/810#issuecomment-1787973431) in [fury-gl/fury](https://github.com/fury-gl/fury) -2. 🗣 Commented on [#78](https://github.com/MDAnalysis/MDAnalysisData/pull/78#issuecomment-1787685000) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -3. 🗣 Commented on [#1007](https://github.com/oemof/oemof-solph/pull/1007#issuecomment-1787602157) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -4. 🗣 Commented on [#21470](https://github.com/spyder-ide/spyder/pull/21470#issuecomment-1787514156) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#1006](https://github.com/oemof/oemof-solph/pull/1006#issuecomment-1787504134) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -6. 🗣 Commented on [#214](https://github.com/scil-vital/dwi_ml/pull/214#issuecomment-1787393806) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -7. 🗣 Commented on [#601](https://github.com/OpenFreeEnergy/openfe/pull/601#issuecomment-1787372305) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#106](https://github.com/aimclub/Fedot.Industrial/pull/106#issuecomment-1787327512) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -9. 🗣 Commented on [#3](https://github.com/Krishna-Singhal/Code-United-2/pull/3#issuecomment-1787278304) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) -10. 🗣 Commented on [#2](https://github.com/Krishna-Singhal/Code-United-2/pull/2#issuecomment-1787270168) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +1. 🗣 Commented on [#21312](https://github.com/spyder-ide/spyder/pull/21312#issuecomment-1788084957) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#810](https://github.com/fury-gl/fury/pull/810#issuecomment-1787973431) in [fury-gl/fury](https://github.com/fury-gl/fury) +3. 🗣 Commented on [#78](https://github.com/MDAnalysis/MDAnalysisData/pull/78#issuecomment-1787685000) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +4. 🗣 Commented on [#1007](https://github.com/oemof/oemof-solph/pull/1007#issuecomment-1787602157) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +5. 🗣 Commented on [#21470](https://github.com/spyder-ide/spyder/pull/21470#issuecomment-1787514156) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#1006](https://github.com/oemof/oemof-solph/pull/1006#issuecomment-1787504134) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +7. 🗣 Commented on [#214](https://github.com/scil-vital/dwi_ml/pull/214#issuecomment-1787393806) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +8. 🗣 Commented on [#601](https://github.com/OpenFreeEnergy/openfe/pull/601#issuecomment-1787372305) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#106](https://github.com/aimclub/Fedot.Industrial/pull/106#issuecomment-1787327512) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#3](https://github.com/Krishna-Singhal/Code-United-2/pull/3#issuecomment-1787278304) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) From d2e2692a4086b6e029d01a262d1a4420eb62c74a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 01:14:19 +0000 Subject: [PATCH 0508/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ad4e4c98..7f4b4852 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#21312](https://github.com/spyder-ide/spyder/pull/21312#issuecomment-1788084957) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#810](https://github.com/fury-gl/fury/pull/810#issuecomment-1787973431) in [fury-gl/fury](https://github.com/fury-gl/fury) -3. 🗣 Commented on [#78](https://github.com/MDAnalysis/MDAnalysisData/pull/78#issuecomment-1787685000) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -4. 🗣 Commented on [#1007](https://github.com/oemof/oemof-solph/pull/1007#issuecomment-1787602157) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -5. 🗣 Commented on [#21470](https://github.com/spyder-ide/spyder/pull/21470#issuecomment-1787514156) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#1006](https://github.com/oemof/oemof-solph/pull/1006#issuecomment-1787504134) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -7. 🗣 Commented on [#214](https://github.com/scil-vital/dwi_ml/pull/214#issuecomment-1787393806) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -8. 🗣 Commented on [#601](https://github.com/OpenFreeEnergy/openfe/pull/601#issuecomment-1787372305) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#106](https://github.com/aimclub/Fedot.Industrial/pull/106#issuecomment-1787327512) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#3](https://github.com/Krishna-Singhal/Code-United-2/pull/3#issuecomment-1787278304) in [Krishna-Singhal/Code-United-2](https://github.com/Krishna-Singhal/Code-United-2) +1. 🗣 Commented on [#68](https://github.com/ITMO-NSS-team/GAMLET/pull/68#issuecomment-1788200396) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +2. 🗣 Commented on [#185](https://github.com/cleder/pygeoif/pull/185#issuecomment-1788180043) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +3. 🗣 Commented on [#21312](https://github.com/spyder-ide/spyder/pull/21312#issuecomment-1788084957) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#810](https://github.com/fury-gl/fury/pull/810#issuecomment-1787973431) in [fury-gl/fury](https://github.com/fury-gl/fury) +5. 🗣 Commented on [#78](https://github.com/MDAnalysis/MDAnalysisData/pull/78#issuecomment-1787685000) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +6. 🗣 Commented on [#1007](https://github.com/oemof/oemof-solph/pull/1007#issuecomment-1787602157) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +7. 🗣 Commented on [#21470](https://github.com/spyder-ide/spyder/pull/21470#issuecomment-1787514156) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#1006](https://github.com/oemof/oemof-solph/pull/1006#issuecomment-1787504134) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +9. 🗣 Commented on [#214](https://github.com/scil-vital/dwi_ml/pull/214#issuecomment-1787393806) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +10. 🗣 Commented on [#601](https://github.com/OpenFreeEnergy/openfe/pull/601#issuecomment-1787372305) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From ccaafc2ab37a64031a8b3e90f76625babc27abf7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 02:39:35 +0000 Subject: [PATCH 0509/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7f4b4852..57fee65d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#68](https://github.com/ITMO-NSS-team/GAMLET/pull/68#issuecomment-1788200396) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -2. 🗣 Commented on [#185](https://github.com/cleder/pygeoif/pull/185#issuecomment-1788180043) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -3. 🗣 Commented on [#21312](https://github.com/spyder-ide/spyder/pull/21312#issuecomment-1788084957) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#810](https://github.com/fury-gl/fury/pull/810#issuecomment-1787973431) in [fury-gl/fury](https://github.com/fury-gl/fury) -5. 🗣 Commented on [#78](https://github.com/MDAnalysis/MDAnalysisData/pull/78#issuecomment-1787685000) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -6. 🗣 Commented on [#1007](https://github.com/oemof/oemof-solph/pull/1007#issuecomment-1787602157) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -7. 🗣 Commented on [#21470](https://github.com/spyder-ide/spyder/pull/21470#issuecomment-1787514156) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#1006](https://github.com/oemof/oemof-solph/pull/1006#issuecomment-1787504134) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -9. 🗣 Commented on [#214](https://github.com/scil-vital/dwi_ml/pull/214#issuecomment-1787393806) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -10. 🗣 Commented on [#601](https://github.com/OpenFreeEnergy/openfe/pull/601#issuecomment-1787372305) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#76](https://github.com/MDAnalysis/MDAnalysisData/pull/76#issuecomment-1788293981) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +2. 🗣 Commented on [#68](https://github.com/ITMO-NSS-team/GAMLET/pull/68#issuecomment-1788200396) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +3. 🗣 Commented on [#185](https://github.com/cleder/pygeoif/pull/185#issuecomment-1788180043) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +4. 🗣 Commented on [#21312](https://github.com/spyder-ide/spyder/pull/21312#issuecomment-1788084957) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#810](https://github.com/fury-gl/fury/pull/810#issuecomment-1787973431) in [fury-gl/fury](https://github.com/fury-gl/fury) +6. 🗣 Commented on [#78](https://github.com/MDAnalysis/MDAnalysisData/pull/78#issuecomment-1787685000) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +7. 🗣 Commented on [#1007](https://github.com/oemof/oemof-solph/pull/1007#issuecomment-1787602157) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +8. 🗣 Commented on [#21470](https://github.com/spyder-ide/spyder/pull/21470#issuecomment-1787514156) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#1006](https://github.com/oemof/oemof-solph/pull/1006#issuecomment-1787504134) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +10. 🗣 Commented on [#214](https://github.com/scil-vital/dwi_ml/pull/214#issuecomment-1787393806) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) From 3cc982f6297e57f9435d7f8b65ce16a87e9d5f38 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 05:37:13 +0000 Subject: [PATCH 0510/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 57fee65d..0357bed3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#76](https://github.com/MDAnalysis/MDAnalysisData/pull/76#issuecomment-1788293981) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -2. 🗣 Commented on [#68](https://github.com/ITMO-NSS-team/GAMLET/pull/68#issuecomment-1788200396) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -3. 🗣 Commented on [#185](https://github.com/cleder/pygeoif/pull/185#issuecomment-1788180043) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -4. 🗣 Commented on [#21312](https://github.com/spyder-ide/spyder/pull/21312#issuecomment-1788084957) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#810](https://github.com/fury-gl/fury/pull/810#issuecomment-1787973431) in [fury-gl/fury](https://github.com/fury-gl/fury) -6. 🗣 Commented on [#78](https://github.com/MDAnalysis/MDAnalysisData/pull/78#issuecomment-1787685000) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -7. 🗣 Commented on [#1007](https://github.com/oemof/oemof-solph/pull/1007#issuecomment-1787602157) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -8. 🗣 Commented on [#21470](https://github.com/spyder-ide/spyder/pull/21470#issuecomment-1787514156) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#1006](https://github.com/oemof/oemof-solph/pull/1006#issuecomment-1787504134) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -10. 🗣 Commented on [#214](https://github.com/scil-vital/dwi_ml/pull/214#issuecomment-1787393806) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +1. 🗣 Commented on [#376](https://github.com/payu-org/payu/pull/376#issuecomment-1788436565) in [payu-org/payu](https://github.com/payu-org/payu) +2. 🗣 Commented on [#76](https://github.com/MDAnalysis/MDAnalysisData/pull/76#issuecomment-1788293981) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +3. 🗣 Commented on [#68](https://github.com/ITMO-NSS-team/GAMLET/pull/68#issuecomment-1788200396) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +4. 🗣 Commented on [#185](https://github.com/cleder/pygeoif/pull/185#issuecomment-1788180043) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +5. 🗣 Commented on [#21312](https://github.com/spyder-ide/spyder/pull/21312#issuecomment-1788084957) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#810](https://github.com/fury-gl/fury/pull/810#issuecomment-1787973431) in [fury-gl/fury](https://github.com/fury-gl/fury) +7. 🗣 Commented on [#78](https://github.com/MDAnalysis/MDAnalysisData/pull/78#issuecomment-1787685000) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +8. 🗣 Commented on [#1007](https://github.com/oemof/oemof-solph/pull/1007#issuecomment-1787602157) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +9. 🗣 Commented on [#21470](https://github.com/spyder-ide/spyder/pull/21470#issuecomment-1787514156) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#1006](https://github.com/oemof/oemof-solph/pull/1006#issuecomment-1787504134) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) From 4795744b3bdb27546355ddabcd58bfc71b77fdd3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 09:15:47 +0000 Subject: [PATCH 0511/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0357bed3..4979c0b9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#376](https://github.com/payu-org/payu/pull/376#issuecomment-1788436565) in [payu-org/payu](https://github.com/payu-org/payu) -2. 🗣 Commented on [#76](https://github.com/MDAnalysis/MDAnalysisData/pull/76#issuecomment-1788293981) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -3. 🗣 Commented on [#68](https://github.com/ITMO-NSS-team/GAMLET/pull/68#issuecomment-1788200396) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -4. 🗣 Commented on [#185](https://github.com/cleder/pygeoif/pull/185#issuecomment-1788180043) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -5. 🗣 Commented on [#21312](https://github.com/spyder-ide/spyder/pull/21312#issuecomment-1788084957) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#810](https://github.com/fury-gl/fury/pull/810#issuecomment-1787973431) in [fury-gl/fury](https://github.com/fury-gl/fury) -7. 🗣 Commented on [#78](https://github.com/MDAnalysis/MDAnalysisData/pull/78#issuecomment-1787685000) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -8. 🗣 Commented on [#1007](https://github.com/oemof/oemof-solph/pull/1007#issuecomment-1787602157) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -9. 🗣 Commented on [#21470](https://github.com/spyder-ide/spyder/pull/21470#issuecomment-1787514156) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#1006](https://github.com/oemof/oemof-solph/pull/1006#issuecomment-1787504134) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +1. 🗣 Commented on [#207](https://github.com/CartoonFan/lutris/pull/207#issuecomment-1788642074) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#376](https://github.com/payu-org/payu/pull/376#issuecomment-1788436565) in [payu-org/payu](https://github.com/payu-org/payu) +3. 🗣 Commented on [#76](https://github.com/MDAnalysis/MDAnalysisData/pull/76#issuecomment-1788293981) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +4. 🗣 Commented on [#68](https://github.com/ITMO-NSS-team/GAMLET/pull/68#issuecomment-1788200396) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +5. 🗣 Commented on [#185](https://github.com/cleder/pygeoif/pull/185#issuecomment-1788180043) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +6. 🗣 Commented on [#21312](https://github.com/spyder-ide/spyder/pull/21312#issuecomment-1788084957) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#810](https://github.com/fury-gl/fury/pull/810#issuecomment-1787973431) in [fury-gl/fury](https://github.com/fury-gl/fury) +8. 🗣 Commented on [#78](https://github.com/MDAnalysis/MDAnalysisData/pull/78#issuecomment-1787685000) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +9. 🗣 Commented on [#1007](https://github.com/oemof/oemof-solph/pull/1007#issuecomment-1787602157) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +10. 🗣 Commented on [#21470](https://github.com/spyder-ide/spyder/pull/21470#issuecomment-1787514156) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From ac658b6836fd0c09de3db0feebadf1e2f000bc76 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 10:16:53 +0000 Subject: [PATCH 0512/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4979c0b9..292c2ce9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#207](https://github.com/CartoonFan/lutris/pull/207#issuecomment-1788642074) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#376](https://github.com/payu-org/payu/pull/376#issuecomment-1788436565) in [payu-org/payu](https://github.com/payu-org/payu) -3. 🗣 Commented on [#76](https://github.com/MDAnalysis/MDAnalysisData/pull/76#issuecomment-1788293981) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -4. 🗣 Commented on [#68](https://github.com/ITMO-NSS-team/GAMLET/pull/68#issuecomment-1788200396) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -5. 🗣 Commented on [#185](https://github.com/cleder/pygeoif/pull/185#issuecomment-1788180043) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -6. 🗣 Commented on [#21312](https://github.com/spyder-ide/spyder/pull/21312#issuecomment-1788084957) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#810](https://github.com/fury-gl/fury/pull/810#issuecomment-1787973431) in [fury-gl/fury](https://github.com/fury-gl/fury) -8. 🗣 Commented on [#78](https://github.com/MDAnalysis/MDAnalysisData/pull/78#issuecomment-1787685000) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -9. 🗣 Commented on [#1007](https://github.com/oemof/oemof-solph/pull/1007#issuecomment-1787602157) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -10. 🗣 Commented on [#21470](https://github.com/spyder-ide/spyder/pull/21470#issuecomment-1787514156) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#19](https://github.com/munechika-koyo/cherab_phix/pull/19#issuecomment-1788712347) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) +2. 🗣 Commented on [#207](https://github.com/CartoonFan/lutris/pull/207#issuecomment-1788642074) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#376](https://github.com/payu-org/payu/pull/376#issuecomment-1788436565) in [payu-org/payu](https://github.com/payu-org/payu) +4. 🗣 Commented on [#76](https://github.com/MDAnalysis/MDAnalysisData/pull/76#issuecomment-1788293981) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +5. 🗣 Commented on [#68](https://github.com/ITMO-NSS-team/GAMLET/pull/68#issuecomment-1788200396) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +6. 🗣 Commented on [#185](https://github.com/cleder/pygeoif/pull/185#issuecomment-1788180043) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +7. 🗣 Commented on [#21312](https://github.com/spyder-ide/spyder/pull/21312#issuecomment-1788084957) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#810](https://github.com/fury-gl/fury/pull/810#issuecomment-1787973431) in [fury-gl/fury](https://github.com/fury-gl/fury) +9. 🗣 Commented on [#78](https://github.com/MDAnalysis/MDAnalysisData/pull/78#issuecomment-1787685000) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +10. 🗣 Commented on [#1007](https://github.com/oemof/oemof-solph/pull/1007#issuecomment-1787602157) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) From 9d71f708f1be6144dc2b9b0ed61d7bd625bf63c6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 11:37:17 +0000 Subject: [PATCH 0513/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 292c2ce9..4636e68d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#19](https://github.com/munechika-koyo/cherab_phix/pull/19#issuecomment-1788712347) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) -2. 🗣 Commented on [#207](https://github.com/CartoonFan/lutris/pull/207#issuecomment-1788642074) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#376](https://github.com/payu-org/payu/pull/376#issuecomment-1788436565) in [payu-org/payu](https://github.com/payu-org/payu) -4. 🗣 Commented on [#76](https://github.com/MDAnalysis/MDAnalysisData/pull/76#issuecomment-1788293981) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -5. 🗣 Commented on [#68](https://github.com/ITMO-NSS-team/GAMLET/pull/68#issuecomment-1788200396) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -6. 🗣 Commented on [#185](https://github.com/cleder/pygeoif/pull/185#issuecomment-1788180043) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -7. 🗣 Commented on [#21312](https://github.com/spyder-ide/spyder/pull/21312#issuecomment-1788084957) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#810](https://github.com/fury-gl/fury/pull/810#issuecomment-1787973431) in [fury-gl/fury](https://github.com/fury-gl/fury) -9. 🗣 Commented on [#78](https://github.com/MDAnalysis/MDAnalysisData/pull/78#issuecomment-1787685000) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -10. 🗣 Commented on [#1007](https://github.com/oemof/oemof-solph/pull/1007#issuecomment-1787602157) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +1. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/Lomap/pull/36#issuecomment-1788787211) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +2. 🗣 Commented on [#19](https://github.com/munechika-koyo/cherab_phix/pull/19#issuecomment-1788712347) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) +3. 🗣 Commented on [#207](https://github.com/CartoonFan/lutris/pull/207#issuecomment-1788642074) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#376](https://github.com/payu-org/payu/pull/376#issuecomment-1788436565) in [payu-org/payu](https://github.com/payu-org/payu) +5. 🗣 Commented on [#76](https://github.com/MDAnalysis/MDAnalysisData/pull/76#issuecomment-1788293981) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +6. 🗣 Commented on [#68](https://github.com/ITMO-NSS-team/GAMLET/pull/68#issuecomment-1788200396) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +7. 🗣 Commented on [#185](https://github.com/cleder/pygeoif/pull/185#issuecomment-1788180043) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +8. 🗣 Commented on [#21312](https://github.com/spyder-ide/spyder/pull/21312#issuecomment-1788084957) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#810](https://github.com/fury-gl/fury/pull/810#issuecomment-1787973431) in [fury-gl/fury](https://github.com/fury-gl/fury) +10. 🗣 Commented on [#78](https://github.com/MDAnalysis/MDAnalysisData/pull/78#issuecomment-1787685000) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) From 6906b0ccf5d9b452534ef1cc8091d7676fbc3594 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 12:31:14 +0000 Subject: [PATCH 0514/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4636e68d..7b963187 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/Lomap/pull/36#issuecomment-1788787211) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -2. 🗣 Commented on [#19](https://github.com/munechika-koyo/cherab_phix/pull/19#issuecomment-1788712347) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) -3. 🗣 Commented on [#207](https://github.com/CartoonFan/lutris/pull/207#issuecomment-1788642074) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#376](https://github.com/payu-org/payu/pull/376#issuecomment-1788436565) in [payu-org/payu](https://github.com/payu-org/payu) -5. 🗣 Commented on [#76](https://github.com/MDAnalysis/MDAnalysisData/pull/76#issuecomment-1788293981) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -6. 🗣 Commented on [#68](https://github.com/ITMO-NSS-team/GAMLET/pull/68#issuecomment-1788200396) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -7. 🗣 Commented on [#185](https://github.com/cleder/pygeoif/pull/185#issuecomment-1788180043) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -8. 🗣 Commented on [#21312](https://github.com/spyder-ide/spyder/pull/21312#issuecomment-1788084957) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#810](https://github.com/fury-gl/fury/pull/810#issuecomment-1787973431) in [fury-gl/fury](https://github.com/fury-gl/fury) -10. 🗣 Commented on [#78](https://github.com/MDAnalysis/MDAnalysisData/pull/78#issuecomment-1787685000) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +1. 🗣 Commented on [#856](https://github.com/PyThaiNLP/pythainlp/pull/856#issuecomment-1788825514) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#458](https://github.com/VorTECHsa/python-sdk/pull/458#issuecomment-1788814737) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +3. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/Lomap/pull/36#issuecomment-1788787211) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +4. 🗣 Commented on [#19](https://github.com/munechika-koyo/cherab_phix/pull/19#issuecomment-1788712347) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) +5. 🗣 Commented on [#207](https://github.com/CartoonFan/lutris/pull/207#issuecomment-1788642074) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#376](https://github.com/payu-org/payu/pull/376#issuecomment-1788436565) in [payu-org/payu](https://github.com/payu-org/payu) +7. 🗣 Commented on [#76](https://github.com/MDAnalysis/MDAnalysisData/pull/76#issuecomment-1788293981) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +8. 🗣 Commented on [#68](https://github.com/ITMO-NSS-team/GAMLET/pull/68#issuecomment-1788200396) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +9. 🗣 Commented on [#185](https://github.com/cleder/pygeoif/pull/185#issuecomment-1788180043) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +10. 🗣 Commented on [#21312](https://github.com/spyder-ide/spyder/pull/21312#issuecomment-1788084957) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 2d1205eb3e40b2d5e85500cd05c997d6ddd8ff55 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 15:16:39 +0000 Subject: [PATCH 0515/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7b963187..7889afb5 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#856](https://github.com/PyThaiNLP/pythainlp/pull/856#issuecomment-1788825514) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#458](https://github.com/VorTECHsa/python-sdk/pull/458#issuecomment-1788814737) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -3. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/Lomap/pull/36#issuecomment-1788787211) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -4. 🗣 Commented on [#19](https://github.com/munechika-koyo/cherab_phix/pull/19#issuecomment-1788712347) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) -5. 🗣 Commented on [#207](https://github.com/CartoonFan/lutris/pull/207#issuecomment-1788642074) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#376](https://github.com/payu-org/payu/pull/376#issuecomment-1788436565) in [payu-org/payu](https://github.com/payu-org/payu) -7. 🗣 Commented on [#76](https://github.com/MDAnalysis/MDAnalysisData/pull/76#issuecomment-1788293981) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -8. 🗣 Commented on [#68](https://github.com/ITMO-NSS-team/GAMLET/pull/68#issuecomment-1788200396) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -9. 🗣 Commented on [#185](https://github.com/cleder/pygeoif/pull/185#issuecomment-1788180043) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -10. 🗣 Commented on [#21312](https://github.com/spyder-ide/spyder/pull/21312#issuecomment-1788084957) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#1343](https://github.com/NeuralEnsemble/python-neo/pull/1343#issuecomment-1789123097) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +2. 🗣 Commented on [#856](https://github.com/PyThaiNLP/pythainlp/pull/856#issuecomment-1788825514) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#458](https://github.com/VorTECHsa/python-sdk/pull/458#issuecomment-1788814737) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +4. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/Lomap/pull/36#issuecomment-1788787211) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +5. 🗣 Commented on [#19](https://github.com/munechika-koyo/cherab_phix/pull/19#issuecomment-1788712347) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) +6. 🗣 Commented on [#207](https://github.com/CartoonFan/lutris/pull/207#issuecomment-1788642074) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#376](https://github.com/payu-org/payu/pull/376#issuecomment-1788436565) in [payu-org/payu](https://github.com/payu-org/payu) +8. 🗣 Commented on [#76](https://github.com/MDAnalysis/MDAnalysisData/pull/76#issuecomment-1788293981) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +9. 🗣 Commented on [#68](https://github.com/ITMO-NSS-team/GAMLET/pull/68#issuecomment-1788200396) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +10. 🗣 Commented on [#185](https://github.com/cleder/pygeoif/pull/185#issuecomment-1788180043) in [cleder/pygeoif](https://github.com/cleder/pygeoif) From 7037d06fcbc8c8fb7b00c0e53ca8c33c5e8537fd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 17:14:00 +0000 Subject: [PATCH 0516/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7889afb5..ead420e8 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1343](https://github.com/NeuralEnsemble/python-neo/pull/1343#issuecomment-1789123097) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -2. 🗣 Commented on [#856](https://github.com/PyThaiNLP/pythainlp/pull/856#issuecomment-1788825514) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#458](https://github.com/VorTECHsa/python-sdk/pull/458#issuecomment-1788814737) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -4. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/Lomap/pull/36#issuecomment-1788787211) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -5. 🗣 Commented on [#19](https://github.com/munechika-koyo/cherab_phix/pull/19#issuecomment-1788712347) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) -6. 🗣 Commented on [#207](https://github.com/CartoonFan/lutris/pull/207#issuecomment-1788642074) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#376](https://github.com/payu-org/payu/pull/376#issuecomment-1788436565) in [payu-org/payu](https://github.com/payu-org/payu) -8. 🗣 Commented on [#76](https://github.com/MDAnalysis/MDAnalysisData/pull/76#issuecomment-1788293981) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -9. 🗣 Commented on [#68](https://github.com/ITMO-NSS-team/GAMLET/pull/68#issuecomment-1788200396) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -10. 🗣 Commented on [#185](https://github.com/cleder/pygeoif/pull/185#issuecomment-1788180043) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +1. 🗣 Commented on [#5295](https://github.com/rhinstaller/anaconda/pull/5295#issuecomment-1789332709) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#1343](https://github.com/NeuralEnsemble/python-neo/pull/1343#issuecomment-1789123097) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +3. 🗣 Commented on [#856](https://github.com/PyThaiNLP/pythainlp/pull/856#issuecomment-1788825514) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#458](https://github.com/VorTECHsa/python-sdk/pull/458#issuecomment-1788814737) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +5. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/Lomap/pull/36#issuecomment-1788787211) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +6. 🗣 Commented on [#19](https://github.com/munechika-koyo/cherab_phix/pull/19#issuecomment-1788712347) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) +7. 🗣 Commented on [#207](https://github.com/CartoonFan/lutris/pull/207#issuecomment-1788642074) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#376](https://github.com/payu-org/payu/pull/376#issuecomment-1788436565) in [payu-org/payu](https://github.com/payu-org/payu) +9. 🗣 Commented on [#76](https://github.com/MDAnalysis/MDAnalysisData/pull/76#issuecomment-1788293981) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +10. 🗣 Commented on [#68](https://github.com/ITMO-NSS-team/GAMLET/pull/68#issuecomment-1788200396) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) From 0d5d2843c20461c8c717952d4954b33a84e9cd1d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 18:20:39 +0000 Subject: [PATCH 0517/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ead420e8..b5f9538a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5295](https://github.com/rhinstaller/anaconda/pull/5295#issuecomment-1789332709) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#1343](https://github.com/NeuralEnsemble/python-neo/pull/1343#issuecomment-1789123097) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -3. 🗣 Commented on [#856](https://github.com/PyThaiNLP/pythainlp/pull/856#issuecomment-1788825514) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#458](https://github.com/VorTECHsa/python-sdk/pull/458#issuecomment-1788814737) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -5. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/Lomap/pull/36#issuecomment-1788787211) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -6. 🗣 Commented on [#19](https://github.com/munechika-koyo/cherab_phix/pull/19#issuecomment-1788712347) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) -7. 🗣 Commented on [#207](https://github.com/CartoonFan/lutris/pull/207#issuecomment-1788642074) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#376](https://github.com/payu-org/payu/pull/376#issuecomment-1788436565) in [payu-org/payu](https://github.com/payu-org/payu) -9. 🗣 Commented on [#76](https://github.com/MDAnalysis/MDAnalysisData/pull/76#issuecomment-1788293981) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) -10. 🗣 Commented on [#68](https://github.com/ITMO-NSS-team/GAMLET/pull/68#issuecomment-1788200396) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +1. 🗣 Commented on [#1006](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1006#issuecomment-1789437266) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#5295](https://github.com/rhinstaller/anaconda/pull/5295#issuecomment-1789332709) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#1343](https://github.com/NeuralEnsemble/python-neo/pull/1343#issuecomment-1789123097) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +4. 🗣 Commented on [#856](https://github.com/PyThaiNLP/pythainlp/pull/856#issuecomment-1788825514) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#458](https://github.com/VorTECHsa/python-sdk/pull/458#issuecomment-1788814737) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +6. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/Lomap/pull/36#issuecomment-1788787211) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +7. 🗣 Commented on [#19](https://github.com/munechika-koyo/cherab_phix/pull/19#issuecomment-1788712347) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) +8. 🗣 Commented on [#207](https://github.com/CartoonFan/lutris/pull/207#issuecomment-1788642074) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#376](https://github.com/payu-org/payu/pull/376#issuecomment-1788436565) in [payu-org/payu](https://github.com/payu-org/payu) +10. 🗣 Commented on [#76](https://github.com/MDAnalysis/MDAnalysisData/pull/76#issuecomment-1788293981) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) From 95607edff749d5700d62ad71f83b29d5b6c3f950 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 18:38:02 +0000 Subject: [PATCH 0518/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b5f9538a..e23db3d0 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1006](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1006#issuecomment-1789437266) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#5295](https://github.com/rhinstaller/anaconda/pull/5295#issuecomment-1789332709) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#1343](https://github.com/NeuralEnsemble/python-neo/pull/1343#issuecomment-1789123097) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -4. 🗣 Commented on [#856](https://github.com/PyThaiNLP/pythainlp/pull/856#issuecomment-1788825514) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#458](https://github.com/VorTECHsa/python-sdk/pull/458#issuecomment-1788814737) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -6. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/Lomap/pull/36#issuecomment-1788787211) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -7. 🗣 Commented on [#19](https://github.com/munechika-koyo/cherab_phix/pull/19#issuecomment-1788712347) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) -8. 🗣 Commented on [#207](https://github.com/CartoonFan/lutris/pull/207#issuecomment-1788642074) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#376](https://github.com/payu-org/payu/pull/376#issuecomment-1788436565) in [payu-org/payu](https://github.com/payu-org/payu) -10. 🗣 Commented on [#76](https://github.com/MDAnalysis/MDAnalysisData/pull/76#issuecomment-1788293981) in [MDAnalysis/MDAnalysisData](https://github.com/MDAnalysis/MDAnalysisData) +1. 🗣 Commented on [#108](https://github.com/aimclub/Fedot.Industrial/pull/108#issuecomment-1789442446) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +2. 🗣 Commented on [#1006](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1006#issuecomment-1789437266) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#5295](https://github.com/rhinstaller/anaconda/pull/5295#issuecomment-1789332709) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#1343](https://github.com/NeuralEnsemble/python-neo/pull/1343#issuecomment-1789123097) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +5. 🗣 Commented on [#856](https://github.com/PyThaiNLP/pythainlp/pull/856#issuecomment-1788825514) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#458](https://github.com/VorTECHsa/python-sdk/pull/458#issuecomment-1788814737) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +7. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/Lomap/pull/36#issuecomment-1788787211) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +8. 🗣 Commented on [#19](https://github.com/munechika-koyo/cherab_phix/pull/19#issuecomment-1788712347) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) +9. 🗣 Commented on [#207](https://github.com/CartoonFan/lutris/pull/207#issuecomment-1788642074) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#376](https://github.com/payu-org/payu/pull/376#issuecomment-1788436565) in [payu-org/payu](https://github.com/payu-org/payu) From 84839d823ba9379cc83b7ff9ee7b9f858688f681 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 21:37:23 +0000 Subject: [PATCH 0519/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e23db3d0..c3e9ab4b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#108](https://github.com/aimclub/Fedot.Industrial/pull/108#issuecomment-1789442446) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -2. 🗣 Commented on [#1006](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1006#issuecomment-1789437266) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#5295](https://github.com/rhinstaller/anaconda/pull/5295#issuecomment-1789332709) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#1343](https://github.com/NeuralEnsemble/python-neo/pull/1343#issuecomment-1789123097) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -5. 🗣 Commented on [#856](https://github.com/PyThaiNLP/pythainlp/pull/856#issuecomment-1788825514) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#458](https://github.com/VorTECHsa/python-sdk/pull/458#issuecomment-1788814737) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -7. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/Lomap/pull/36#issuecomment-1788787211) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -8. 🗣 Commented on [#19](https://github.com/munechika-koyo/cherab_phix/pull/19#issuecomment-1788712347) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) -9. 🗣 Commented on [#207](https://github.com/CartoonFan/lutris/pull/207#issuecomment-1788642074) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#376](https://github.com/payu-org/payu/pull/376#issuecomment-1788436565) in [payu-org/payu](https://github.com/payu-org/payu) +1. 🗣 Commented on [#21483](https://github.com/spyder-ide/spyder/pull/21483#issuecomment-1789713430) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#108](https://github.com/aimclub/Fedot.Industrial/pull/108#issuecomment-1789442446) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +3. 🗣 Commented on [#1006](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1006#issuecomment-1789437266) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#5295](https://github.com/rhinstaller/anaconda/pull/5295#issuecomment-1789332709) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#1343](https://github.com/NeuralEnsemble/python-neo/pull/1343#issuecomment-1789123097) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +6. 🗣 Commented on [#856](https://github.com/PyThaiNLP/pythainlp/pull/856#issuecomment-1788825514) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +7. 🗣 Commented on [#458](https://github.com/VorTECHsa/python-sdk/pull/458#issuecomment-1788814737) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +8. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/Lomap/pull/36#issuecomment-1788787211) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +9. 🗣 Commented on [#19](https://github.com/munechika-koyo/cherab_phix/pull/19#issuecomment-1788712347) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) +10. 🗣 Commented on [#207](https://github.com/CartoonFan/lutris/pull/207#issuecomment-1788642074) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 66f537ac3791cff9d78957b751e9d9af3c3e71fb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 23:15:46 +0000 Subject: [PATCH 0520/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c3e9ab4b..4218aa28 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#21483](https://github.com/spyder-ide/spyder/pull/21483#issuecomment-1789713430) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#108](https://github.com/aimclub/Fedot.Industrial/pull/108#issuecomment-1789442446) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -3. 🗣 Commented on [#1006](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1006#issuecomment-1789437266) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#5295](https://github.com/rhinstaller/anaconda/pull/5295#issuecomment-1789332709) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#1343](https://github.com/NeuralEnsemble/python-neo/pull/1343#issuecomment-1789123097) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -6. 🗣 Commented on [#856](https://github.com/PyThaiNLP/pythainlp/pull/856#issuecomment-1788825514) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -7. 🗣 Commented on [#458](https://github.com/VorTECHsa/python-sdk/pull/458#issuecomment-1788814737) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -8. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/Lomap/pull/36#issuecomment-1788787211) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -9. 🗣 Commented on [#19](https://github.com/munechika-koyo/cherab_phix/pull/19#issuecomment-1788712347) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) -10. 🗣 Commented on [#207](https://github.com/CartoonFan/lutris/pull/207#issuecomment-1788642074) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#234](https://github.com/OpenFreeEnergy/gufe/pull/234#issuecomment-1789816250) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#21483](https://github.com/spyder-ide/spyder/pull/21483#issuecomment-1789713430) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#108](https://github.com/aimclub/Fedot.Industrial/pull/108#issuecomment-1789442446) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#1006](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1006#issuecomment-1789437266) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#5295](https://github.com/rhinstaller/anaconda/pull/5295#issuecomment-1789332709) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#1343](https://github.com/NeuralEnsemble/python-neo/pull/1343#issuecomment-1789123097) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +7. 🗣 Commented on [#856](https://github.com/PyThaiNLP/pythainlp/pull/856#issuecomment-1788825514) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +8. 🗣 Commented on [#458](https://github.com/VorTECHsa/python-sdk/pull/458#issuecomment-1788814737) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +9. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/Lomap/pull/36#issuecomment-1788787211) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +10. 🗣 Commented on [#19](https://github.com/munechika-koyo/cherab_phix/pull/19#issuecomment-1788712347) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) From 57d7daee4101c2056c75029db242f28e316d7f36 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 2 Nov 2023 01:09:48 +0000 Subject: [PATCH 0521/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4218aa28..a070216d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#234](https://github.com/OpenFreeEnergy/gufe/pull/234#issuecomment-1789816250) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#21483](https://github.com/spyder-ide/spyder/pull/21483#issuecomment-1789713430) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#108](https://github.com/aimclub/Fedot.Industrial/pull/108#issuecomment-1789442446) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#1006](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1006#issuecomment-1789437266) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#5295](https://github.com/rhinstaller/anaconda/pull/5295#issuecomment-1789332709) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#1343](https://github.com/NeuralEnsemble/python-neo/pull/1343#issuecomment-1789123097) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -7. 🗣 Commented on [#856](https://github.com/PyThaiNLP/pythainlp/pull/856#issuecomment-1788825514) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -8. 🗣 Commented on [#458](https://github.com/VorTECHsa/python-sdk/pull/458#issuecomment-1788814737) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -9. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/Lomap/pull/36#issuecomment-1788787211) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -10. 🗣 Commented on [#19](https://github.com/munechika-koyo/cherab_phix/pull/19#issuecomment-1788712347) in [munechika-koyo/cherab_phix](https://github.com/munechika-koyo/cherab_phix) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/stockpyl/pull/1#issuecomment-1789847273) in [tuhinmallick/stockpyl](https://github.com/tuhinmallick/stockpyl) +2. 🗣 Commented on [#234](https://github.com/OpenFreeEnergy/gufe/pull/234#issuecomment-1789816250) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#21483](https://github.com/spyder-ide/spyder/pull/21483#issuecomment-1789713430) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#108](https://github.com/aimclub/Fedot.Industrial/pull/108#issuecomment-1789442446) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +5. 🗣 Commented on [#1006](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1006#issuecomment-1789437266) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#5295](https://github.com/rhinstaller/anaconda/pull/5295#issuecomment-1789332709) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#1343](https://github.com/NeuralEnsemble/python-neo/pull/1343#issuecomment-1789123097) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +8. 🗣 Commented on [#856](https://github.com/PyThaiNLP/pythainlp/pull/856#issuecomment-1788825514) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#458](https://github.com/VorTECHsa/python-sdk/pull/458#issuecomment-1788814737) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +10. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/Lomap/pull/36#issuecomment-1788787211) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) From 828983b7ec98135c6dbd85b492887bff7e11017f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 2 Nov 2023 05:14:50 +0000 Subject: [PATCH 0522/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a070216d..323b65da 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/stockpyl/pull/1#issuecomment-1789847273) in [tuhinmallick/stockpyl](https://github.com/tuhinmallick/stockpyl) -2. 🗣 Commented on [#234](https://github.com/OpenFreeEnergy/gufe/pull/234#issuecomment-1789816250) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#21483](https://github.com/spyder-ide/spyder/pull/21483#issuecomment-1789713430) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#108](https://github.com/aimclub/Fedot.Industrial/pull/108#issuecomment-1789442446) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -5. 🗣 Commented on [#1006](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1006#issuecomment-1789437266) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#5295](https://github.com/rhinstaller/anaconda/pull/5295#issuecomment-1789332709) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#1343](https://github.com/NeuralEnsemble/python-neo/pull/1343#issuecomment-1789123097) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -8. 🗣 Commented on [#856](https://github.com/PyThaiNLP/pythainlp/pull/856#issuecomment-1788825514) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#458](https://github.com/VorTECHsa/python-sdk/pull/458#issuecomment-1788814737) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -10. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/Lomap/pull/36#issuecomment-1788787211) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +1. 🗣 Commented on [#21481](https://github.com/spyder-ide/spyder/pull/21481#issuecomment-1790057427) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/stockpyl/pull/1#issuecomment-1789847273) in [tuhinmallick/stockpyl](https://github.com/tuhinmallick/stockpyl) +3. 🗣 Commented on [#234](https://github.com/OpenFreeEnergy/gufe/pull/234#issuecomment-1789816250) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#21483](https://github.com/spyder-ide/spyder/pull/21483#issuecomment-1789713430) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#108](https://github.com/aimclub/Fedot.Industrial/pull/108#issuecomment-1789442446) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#1006](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1006#issuecomment-1789437266) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#5295](https://github.com/rhinstaller/anaconda/pull/5295#issuecomment-1789332709) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#1343](https://github.com/NeuralEnsemble/python-neo/pull/1343#issuecomment-1789123097) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +9. 🗣 Commented on [#856](https://github.com/PyThaiNLP/pythainlp/pull/856#issuecomment-1788825514) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +10. 🗣 Commented on [#458](https://github.com/VorTECHsa/python-sdk/pull/458#issuecomment-1788814737) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) From 5df6dd40db31bc14099ff5d6be660f32c9a103c3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 2 Nov 2023 10:17:07 +0000 Subject: [PATCH 0523/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 323b65da..75b17e63 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#21481](https://github.com/spyder-ide/spyder/pull/21481#issuecomment-1790057427) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/stockpyl/pull/1#issuecomment-1789847273) in [tuhinmallick/stockpyl](https://github.com/tuhinmallick/stockpyl) -3. 🗣 Commented on [#234](https://github.com/OpenFreeEnergy/gufe/pull/234#issuecomment-1789816250) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#21483](https://github.com/spyder-ide/spyder/pull/21483#issuecomment-1789713430) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#108](https://github.com/aimclub/Fedot.Industrial/pull/108#issuecomment-1789442446) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#1006](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1006#issuecomment-1789437266) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#5295](https://github.com/rhinstaller/anaconda/pull/5295#issuecomment-1789332709) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#1343](https://github.com/NeuralEnsemble/python-neo/pull/1343#issuecomment-1789123097) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -9. 🗣 Commented on [#856](https://github.com/PyThaiNLP/pythainlp/pull/856#issuecomment-1788825514) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -10. 🗣 Commented on [#458](https://github.com/VorTECHsa/python-sdk/pull/458#issuecomment-1788814737) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +1. 🗣 Commented on [#603](https://github.com/OpenFreeEnergy/openfe/pull/603#issuecomment-1790433291) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#1326](https://github.com/NeuralEnsemble/python-neo/pull/1326#issuecomment-1790407362) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +3. 🗣 Commented on [#21481](https://github.com/spyder-ide/spyder/pull/21481#issuecomment-1790057427) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/stockpyl/pull/1#issuecomment-1789847273) in [tuhinmallick/stockpyl](https://github.com/tuhinmallick/stockpyl) +5. 🗣 Commented on [#234](https://github.com/OpenFreeEnergy/gufe/pull/234#issuecomment-1789816250) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#21483](https://github.com/spyder-ide/spyder/pull/21483#issuecomment-1789713430) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#108](https://github.com/aimclub/Fedot.Industrial/pull/108#issuecomment-1789442446) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +8. 🗣 Commented on [#1006](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1006#issuecomment-1789437266) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#5295](https://github.com/rhinstaller/anaconda/pull/5295#issuecomment-1789332709) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#1343](https://github.com/NeuralEnsemble/python-neo/pull/1343#issuecomment-1789123097) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) From 0cbbef5c79b6bfb44bf0c095d9e64dc4b2d6ed23 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 2 Nov 2023 14:14:39 +0000 Subject: [PATCH 0524/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 75b17e63..d36360fb 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#603](https://github.com/OpenFreeEnergy/openfe/pull/603#issuecomment-1790433291) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#1326](https://github.com/NeuralEnsemble/python-neo/pull/1326#issuecomment-1790407362) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -3. 🗣 Commented on [#21481](https://github.com/spyder-ide/spyder/pull/21481#issuecomment-1790057427) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/stockpyl/pull/1#issuecomment-1789847273) in [tuhinmallick/stockpyl](https://github.com/tuhinmallick/stockpyl) -5. 🗣 Commented on [#234](https://github.com/OpenFreeEnergy/gufe/pull/234#issuecomment-1789816250) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#21483](https://github.com/spyder-ide/spyder/pull/21483#issuecomment-1789713430) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#108](https://github.com/aimclub/Fedot.Industrial/pull/108#issuecomment-1789442446) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -8. 🗣 Commented on [#1006](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1006#issuecomment-1789437266) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#5295](https://github.com/rhinstaller/anaconda/pull/5295#issuecomment-1789332709) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#1343](https://github.com/NeuralEnsemble/python-neo/pull/1343#issuecomment-1789123097) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +1. 🗣 Commented on [#5280](https://github.com/rhinstaller/anaconda/pull/5280#issuecomment-1790784399) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#603](https://github.com/OpenFreeEnergy/openfe/pull/603#issuecomment-1790433291) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#1326](https://github.com/NeuralEnsemble/python-neo/pull/1326#issuecomment-1790407362) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +4. 🗣 Commented on [#21481](https://github.com/spyder-ide/spyder/pull/21481#issuecomment-1790057427) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/stockpyl/pull/1#issuecomment-1789847273) in [tuhinmallick/stockpyl](https://github.com/tuhinmallick/stockpyl) +6. 🗣 Commented on [#234](https://github.com/OpenFreeEnergy/gufe/pull/234#issuecomment-1789816250) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#21483](https://github.com/spyder-ide/spyder/pull/21483#issuecomment-1789713430) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#108](https://github.com/aimclub/Fedot.Industrial/pull/108#issuecomment-1789442446) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +9. 🗣 Commented on [#1006](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1006#issuecomment-1789437266) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#5295](https://github.com/rhinstaller/anaconda/pull/5295#issuecomment-1789332709) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 0d3581d8c78cbd60a857b7365bd07ed5a08db908 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 2 Nov 2023 15:15:58 +0000 Subject: [PATCH 0525/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d36360fb..90066877 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5280](https://github.com/rhinstaller/anaconda/pull/5280#issuecomment-1790784399) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#603](https://github.com/OpenFreeEnergy/openfe/pull/603#issuecomment-1790433291) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#1326](https://github.com/NeuralEnsemble/python-neo/pull/1326#issuecomment-1790407362) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -4. 🗣 Commented on [#21481](https://github.com/spyder-ide/spyder/pull/21481#issuecomment-1790057427) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/stockpyl/pull/1#issuecomment-1789847273) in [tuhinmallick/stockpyl](https://github.com/tuhinmallick/stockpyl) -6. 🗣 Commented on [#234](https://github.com/OpenFreeEnergy/gufe/pull/234#issuecomment-1789816250) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#21483](https://github.com/spyder-ide/spyder/pull/21483#issuecomment-1789713430) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#108](https://github.com/aimclub/Fedot.Industrial/pull/108#issuecomment-1789442446) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -9. 🗣 Commented on [#1006](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1006#issuecomment-1789437266) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#5295](https://github.com/rhinstaller/anaconda/pull/5295#issuecomment-1789332709) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#1444](https://github.com/openSUSE/osc/pull/1444#issuecomment-1790916235) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/roop/pull/1#issuecomment-1790899948) in [tuhinmallick/roop](https://github.com/tuhinmallick/roop) +3. 🗣 Commented on [#5280](https://github.com/rhinstaller/anaconda/pull/5280#issuecomment-1790784399) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#603](https://github.com/OpenFreeEnergy/openfe/pull/603#issuecomment-1790433291) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#1326](https://github.com/NeuralEnsemble/python-neo/pull/1326#issuecomment-1790407362) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +6. 🗣 Commented on [#21481](https://github.com/spyder-ide/spyder/pull/21481#issuecomment-1790057427) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/stockpyl/pull/1#issuecomment-1789847273) in [tuhinmallick/stockpyl](https://github.com/tuhinmallick/stockpyl) +8. 🗣 Commented on [#234](https://github.com/OpenFreeEnergy/gufe/pull/234#issuecomment-1789816250) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +9. 🗣 Commented on [#21483](https://github.com/spyder-ide/spyder/pull/21483#issuecomment-1789713430) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#108](https://github.com/aimclub/Fedot.Industrial/pull/108#issuecomment-1789442446) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) From 7673a82c0f05598cb0168bd4ceceda9799c5ed8e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 2 Nov 2023 18:20:28 +0000 Subject: [PATCH 0526/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 90066877..a083df17 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1444](https://github.com/openSUSE/osc/pull/1444#issuecomment-1790916235) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/roop/pull/1#issuecomment-1790899948) in [tuhinmallick/roop](https://github.com/tuhinmallick/roop) -3. 🗣 Commented on [#5280](https://github.com/rhinstaller/anaconda/pull/5280#issuecomment-1790784399) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#603](https://github.com/OpenFreeEnergy/openfe/pull/603#issuecomment-1790433291) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#1326](https://github.com/NeuralEnsemble/python-neo/pull/1326#issuecomment-1790407362) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -6. 🗣 Commented on [#21481](https://github.com/spyder-ide/spyder/pull/21481#issuecomment-1790057427) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/stockpyl/pull/1#issuecomment-1789847273) in [tuhinmallick/stockpyl](https://github.com/tuhinmallick/stockpyl) -8. 🗣 Commented on [#234](https://github.com/OpenFreeEnergy/gufe/pull/234#issuecomment-1789816250) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -9. 🗣 Commented on [#21483](https://github.com/spyder-ide/spyder/pull/21483#issuecomment-1789713430) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#108](https://github.com/aimclub/Fedot.Industrial/pull/108#issuecomment-1789442446) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +1. 🗣 Commented on [#800](https://github.com/scilus/scilpy/pull/800#issuecomment-1791246542) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#799](https://github.com/scilus/scilpy/pull/799#issuecomment-1791242130) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#1444](https://github.com/openSUSE/osc/pull/1444#issuecomment-1790916235) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/roop/pull/1#issuecomment-1790899948) in [tuhinmallick/roop](https://github.com/tuhinmallick/roop) +5. 🗣 Commented on [#5280](https://github.com/rhinstaller/anaconda/pull/5280#issuecomment-1790784399) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#603](https://github.com/OpenFreeEnergy/openfe/pull/603#issuecomment-1790433291) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#1326](https://github.com/NeuralEnsemble/python-neo/pull/1326#issuecomment-1790407362) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +8. 🗣 Commented on [#21481](https://github.com/spyder-ide/spyder/pull/21481#issuecomment-1790057427) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/stockpyl/pull/1#issuecomment-1789847273) in [tuhinmallick/stockpyl](https://github.com/tuhinmallick/stockpyl) +10. 🗣 Commented on [#234](https://github.com/OpenFreeEnergy/gufe/pull/234#issuecomment-1789816250) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From aff25589ed12d154082258045d80fc206fea9135 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 2 Nov 2023 19:37:24 +0000 Subject: [PATCH 0527/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a083df17..81ac702c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#800](https://github.com/scilus/scilpy/pull/800#issuecomment-1791246542) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#799](https://github.com/scilus/scilpy/pull/799#issuecomment-1791242130) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#1444](https://github.com/openSUSE/osc/pull/1444#issuecomment-1790916235) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/roop/pull/1#issuecomment-1790899948) in [tuhinmallick/roop](https://github.com/tuhinmallick/roop) -5. 🗣 Commented on [#5280](https://github.com/rhinstaller/anaconda/pull/5280#issuecomment-1790784399) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#603](https://github.com/OpenFreeEnergy/openfe/pull/603#issuecomment-1790433291) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#1326](https://github.com/NeuralEnsemble/python-neo/pull/1326#issuecomment-1790407362) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -8. 🗣 Commented on [#21481](https://github.com/spyder-ide/spyder/pull/21481#issuecomment-1790057427) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/stockpyl/pull/1#issuecomment-1789847273) in [tuhinmallick/stockpyl](https://github.com/tuhinmallick/stockpyl) -10. 🗣 Commented on [#234](https://github.com/OpenFreeEnergy/gufe/pull/234#issuecomment-1789816250) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#802](https://github.com/scilus/scilpy/pull/802#issuecomment-1791412695) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#800](https://github.com/scilus/scilpy/pull/800#issuecomment-1791246542) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#799](https://github.com/scilus/scilpy/pull/799#issuecomment-1791242130) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#1444](https://github.com/openSUSE/osc/pull/1444#issuecomment-1790916235) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/roop/pull/1#issuecomment-1790899948) in [tuhinmallick/roop](https://github.com/tuhinmallick/roop) +6. 🗣 Commented on [#5280](https://github.com/rhinstaller/anaconda/pull/5280#issuecomment-1790784399) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#603](https://github.com/OpenFreeEnergy/openfe/pull/603#issuecomment-1790433291) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#1326](https://github.com/NeuralEnsemble/python-neo/pull/1326#issuecomment-1790407362) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +9. 🗣 Commented on [#21481](https://github.com/spyder-ide/spyder/pull/21481#issuecomment-1790057427) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/stockpyl/pull/1#issuecomment-1789847273) in [tuhinmallick/stockpyl](https://github.com/tuhinmallick/stockpyl) From 3ce282b43456794aa8933a5823e77fe33e3686bd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 2 Nov 2023 21:13:38 +0000 Subject: [PATCH 0528/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 81ac702c..00d96de7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#802](https://github.com/scilus/scilpy/pull/802#issuecomment-1791412695) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#800](https://github.com/scilus/scilpy/pull/800#issuecomment-1791246542) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#799](https://github.com/scilus/scilpy/pull/799#issuecomment-1791242130) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#1444](https://github.com/openSUSE/osc/pull/1444#issuecomment-1790916235) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/roop/pull/1#issuecomment-1790899948) in [tuhinmallick/roop](https://github.com/tuhinmallick/roop) -6. 🗣 Commented on [#5280](https://github.com/rhinstaller/anaconda/pull/5280#issuecomment-1790784399) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#603](https://github.com/OpenFreeEnergy/openfe/pull/603#issuecomment-1790433291) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#1326](https://github.com/NeuralEnsemble/python-neo/pull/1326#issuecomment-1790407362) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -9. 🗣 Commented on [#21481](https://github.com/spyder-ide/spyder/pull/21481#issuecomment-1790057427) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/stockpyl/pull/1#issuecomment-1789847273) in [tuhinmallick/stockpyl](https://github.com/tuhinmallick/stockpyl) +1. 🗣 Commented on [#614](https://github.com/OpenFreeEnergy/openfe/pull/614#issuecomment-1791537417) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#5298](https://github.com/rhinstaller/anaconda/pull/5298#issuecomment-1791522004) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#613](https://github.com/OpenFreeEnergy/openfe/pull/613#issuecomment-1791516377) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#802](https://github.com/scilus/scilpy/pull/802#issuecomment-1791412695) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#800](https://github.com/scilus/scilpy/pull/800#issuecomment-1791246542) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#799](https://github.com/scilus/scilpy/pull/799#issuecomment-1791242130) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#1444](https://github.com/openSUSE/osc/pull/1444#issuecomment-1790916235) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/roop/pull/1#issuecomment-1790899948) in [tuhinmallick/roop](https://github.com/tuhinmallick/roop) +9. 🗣 Commented on [#5280](https://github.com/rhinstaller/anaconda/pull/5280#issuecomment-1790784399) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#603](https://github.com/OpenFreeEnergy/openfe/pull/603#issuecomment-1790433291) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From bd95eb63bdcd86f902e61633da9b85df3f9e68a7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 2 Nov 2023 21:37:01 +0000 Subject: [PATCH 0529/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 00d96de7..d803360f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#614](https://github.com/OpenFreeEnergy/openfe/pull/614#issuecomment-1791537417) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#5298](https://github.com/rhinstaller/anaconda/pull/5298#issuecomment-1791522004) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#613](https://github.com/OpenFreeEnergy/openfe/pull/613#issuecomment-1791516377) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#802](https://github.com/scilus/scilpy/pull/802#issuecomment-1791412695) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#800](https://github.com/scilus/scilpy/pull/800#issuecomment-1791246542) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#799](https://github.com/scilus/scilpy/pull/799#issuecomment-1791242130) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#1444](https://github.com/openSUSE/osc/pull/1444#issuecomment-1790916235) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/roop/pull/1#issuecomment-1790899948) in [tuhinmallick/roop](https://github.com/tuhinmallick/roop) -9. 🗣 Commented on [#5280](https://github.com/rhinstaller/anaconda/pull/5280#issuecomment-1790784399) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#603](https://github.com/OpenFreeEnergy/openfe/pull/603#issuecomment-1790433291) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#39](https://github.com/MDAnalysis/transport-analysis/pull/39#issuecomment-1791552966) in [MDAnalysis/transport-analysis](https://github.com/MDAnalysis/transport-analysis) +2. 🗣 Commented on [#614](https://github.com/OpenFreeEnergy/openfe/pull/614#issuecomment-1791537417) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#5298](https://github.com/rhinstaller/anaconda/pull/5298#issuecomment-1791522004) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#613](https://github.com/OpenFreeEnergy/openfe/pull/613#issuecomment-1791516377) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#802](https://github.com/scilus/scilpy/pull/802#issuecomment-1791412695) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#800](https://github.com/scilus/scilpy/pull/800#issuecomment-1791246542) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#799](https://github.com/scilus/scilpy/pull/799#issuecomment-1791242130) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#1444](https://github.com/openSUSE/osc/pull/1444#issuecomment-1790916235) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/roop/pull/1#issuecomment-1790899948) in [tuhinmallick/roop](https://github.com/tuhinmallick/roop) +10. 🗣 Commented on [#5280](https://github.com/rhinstaller/anaconda/pull/5280#issuecomment-1790784399) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From ccd1f95dd448ed2c03748d2f752d1f5c92614e9e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 2 Nov 2023 23:15:49 +0000 Subject: [PATCH 0530/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d803360f..58e4c17d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#39](https://github.com/MDAnalysis/transport-analysis/pull/39#issuecomment-1791552966) in [MDAnalysis/transport-analysis](https://github.com/MDAnalysis/transport-analysis) -2. 🗣 Commented on [#614](https://github.com/OpenFreeEnergy/openfe/pull/614#issuecomment-1791537417) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#5298](https://github.com/rhinstaller/anaconda/pull/5298#issuecomment-1791522004) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#613](https://github.com/OpenFreeEnergy/openfe/pull/613#issuecomment-1791516377) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#802](https://github.com/scilus/scilpy/pull/802#issuecomment-1791412695) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#800](https://github.com/scilus/scilpy/pull/800#issuecomment-1791246542) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#799](https://github.com/scilus/scilpy/pull/799#issuecomment-1791242130) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#1444](https://github.com/openSUSE/osc/pull/1444#issuecomment-1790916235) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/roop/pull/1#issuecomment-1790899948) in [tuhinmallick/roop](https://github.com/tuhinmallick/roop) -10. 🗣 Commented on [#5280](https://github.com/rhinstaller/anaconda/pull/5280#issuecomment-1790784399) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/generative-ai/pull/1#issuecomment-1791690161) in [tuhinmallick/generative-ai](https://github.com/tuhinmallick/generative-ai) +2. 🗣 Commented on [#1007](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1007#issuecomment-1791686674) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#2962](https://github.com/dipy/dipy/pull/2962#issuecomment-1791680253) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#39](https://github.com/MDAnalysis/transport-analysis/pull/39#issuecomment-1791552966) in [MDAnalysis/transport-analysis](https://github.com/MDAnalysis/transport-analysis) +5. 🗣 Commented on [#614](https://github.com/OpenFreeEnergy/openfe/pull/614#issuecomment-1791537417) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#5298](https://github.com/rhinstaller/anaconda/pull/5298#issuecomment-1791522004) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#613](https://github.com/OpenFreeEnergy/openfe/pull/613#issuecomment-1791516377) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#802](https://github.com/scilus/scilpy/pull/802#issuecomment-1791412695) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#800](https://github.com/scilus/scilpy/pull/800#issuecomment-1791246542) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#799](https://github.com/scilus/scilpy/pull/799#issuecomment-1791242130) in [scilus/scilpy](https://github.com/scilus/scilpy) From 51a96f1ce3febfce362ec5b9ff17e220b5adc2cc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 2 Nov 2023 23:37:21 +0000 Subject: [PATCH 0531/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 58e4c17d..a1364bde 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/generative-ai/pull/1#issuecomment-1791690161) in [tuhinmallick/generative-ai](https://github.com/tuhinmallick/generative-ai) -2. 🗣 Commented on [#1007](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1007#issuecomment-1791686674) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#2962](https://github.com/dipy/dipy/pull/2962#issuecomment-1791680253) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#39](https://github.com/MDAnalysis/transport-analysis/pull/39#issuecomment-1791552966) in [MDAnalysis/transport-analysis](https://github.com/MDAnalysis/transport-analysis) -5. 🗣 Commented on [#614](https://github.com/OpenFreeEnergy/openfe/pull/614#issuecomment-1791537417) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#5298](https://github.com/rhinstaller/anaconda/pull/5298#issuecomment-1791522004) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#613](https://github.com/OpenFreeEnergy/openfe/pull/613#issuecomment-1791516377) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#802](https://github.com/scilus/scilpy/pull/802#issuecomment-1791412695) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#800](https://github.com/scilus/scilpy/pull/800#issuecomment-1791246542) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#799](https://github.com/scilus/scilpy/pull/799#issuecomment-1791242130) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/contact-center-ai-samples/pull/1#issuecomment-1791698508) in [tuhinmallick/contact-center-ai-samples](https://github.com/tuhinmallick/contact-center-ai-samples) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/genai-for-marketing/pull/1#issuecomment-1791696614) in [tuhinmallick/genai-for-marketing](https://github.com/tuhinmallick/genai-for-marketing) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/document-ai-samples/pull/1#issuecomment-1791695673) in [tuhinmallick/document-ai-samples](https://github.com/tuhinmallick/document-ai-samples) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/mlops-with-vertex-ai/pull/1#issuecomment-1791693822) in [tuhinmallick/mlops-with-vertex-ai](https://github.com/tuhinmallick/mlops-with-vertex-ai) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/generative-ai/pull/1#issuecomment-1791690161) in [tuhinmallick/generative-ai](https://github.com/tuhinmallick/generative-ai) +6. 🗣 Commented on [#1007](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1007#issuecomment-1791686674) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#2962](https://github.com/dipy/dipy/pull/2962#issuecomment-1791680253) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#39](https://github.com/MDAnalysis/transport-analysis/pull/39#issuecomment-1791552966) in [MDAnalysis/transport-analysis](https://github.com/MDAnalysis/transport-analysis) +9. 🗣 Commented on [#614](https://github.com/OpenFreeEnergy/openfe/pull/614#issuecomment-1791537417) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#5298](https://github.com/rhinstaller/anaconda/pull/5298#issuecomment-1791522004) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 37d4425ddca8295277be8e7e1236177e657355aa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 01:10:39 +0000 Subject: [PATCH 0532/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a1364bde..75b2641a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/contact-center-ai-samples/pull/1#issuecomment-1791698508) in [tuhinmallick/contact-center-ai-samples](https://github.com/tuhinmallick/contact-center-ai-samples) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/genai-for-marketing/pull/1#issuecomment-1791696614) in [tuhinmallick/genai-for-marketing](https://github.com/tuhinmallick/genai-for-marketing) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/document-ai-samples/pull/1#issuecomment-1791695673) in [tuhinmallick/document-ai-samples](https://github.com/tuhinmallick/document-ai-samples) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/mlops-with-vertex-ai/pull/1#issuecomment-1791693822) in [tuhinmallick/mlops-with-vertex-ai](https://github.com/tuhinmallick/mlops-with-vertex-ai) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/generative-ai/pull/1#issuecomment-1791690161) in [tuhinmallick/generative-ai](https://github.com/tuhinmallick/generative-ai) -6. 🗣 Commented on [#1007](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1007#issuecomment-1791686674) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#2962](https://github.com/dipy/dipy/pull/2962#issuecomment-1791680253) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#39](https://github.com/MDAnalysis/transport-analysis/pull/39#issuecomment-1791552966) in [MDAnalysis/transport-analysis](https://github.com/MDAnalysis/transport-analysis) -9. 🗣 Commented on [#614](https://github.com/OpenFreeEnergy/openfe/pull/614#issuecomment-1791537417) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#5298](https://github.com/rhinstaller/anaconda/pull/5298#issuecomment-1791522004) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#3803](https://github.com/privacyidea/privacyidea/pull/3803#issuecomment-1791735687) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/contact-center-ai-samples/pull/1#issuecomment-1791698508) in [tuhinmallick/contact-center-ai-samples](https://github.com/tuhinmallick/contact-center-ai-samples) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/genai-for-marketing/pull/1#issuecomment-1791696614) in [tuhinmallick/genai-for-marketing](https://github.com/tuhinmallick/genai-for-marketing) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/document-ai-samples/pull/1#issuecomment-1791695673) in [tuhinmallick/document-ai-samples](https://github.com/tuhinmallick/document-ai-samples) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/mlops-with-vertex-ai/pull/1#issuecomment-1791693822) in [tuhinmallick/mlops-with-vertex-ai](https://github.com/tuhinmallick/mlops-with-vertex-ai) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/generative-ai/pull/1#issuecomment-1791690161) in [tuhinmallick/generative-ai](https://github.com/tuhinmallick/generative-ai) +7. 🗣 Commented on [#1007](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1007#issuecomment-1791686674) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#2962](https://github.com/dipy/dipy/pull/2962#issuecomment-1791680253) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#39](https://github.com/MDAnalysis/transport-analysis/pull/39#issuecomment-1791552966) in [MDAnalysis/transport-analysis](https://github.com/MDAnalysis/transport-analysis) +10. 🗣 Commented on [#614](https://github.com/OpenFreeEnergy/openfe/pull/614#issuecomment-1791537417) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From f2f7b8c0f64c14b82a262dc59c1d6732310a735a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 02:05:38 +0000 Subject: [PATCH 0533/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 75b2641a..df8495cb 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#3803](https://github.com/privacyidea/privacyidea/pull/3803#issuecomment-1791735687) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/contact-center-ai-samples/pull/1#issuecomment-1791698508) in [tuhinmallick/contact-center-ai-samples](https://github.com/tuhinmallick/contact-center-ai-samples) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/genai-for-marketing/pull/1#issuecomment-1791696614) in [tuhinmallick/genai-for-marketing](https://github.com/tuhinmallick/genai-for-marketing) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/document-ai-samples/pull/1#issuecomment-1791695673) in [tuhinmallick/document-ai-samples](https://github.com/tuhinmallick/document-ai-samples) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/mlops-with-vertex-ai/pull/1#issuecomment-1791693822) in [tuhinmallick/mlops-with-vertex-ai](https://github.com/tuhinmallick/mlops-with-vertex-ai) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/generative-ai/pull/1#issuecomment-1791690161) in [tuhinmallick/generative-ai](https://github.com/tuhinmallick/generative-ai) -7. 🗣 Commented on [#1007](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1007#issuecomment-1791686674) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#2962](https://github.com/dipy/dipy/pull/2962#issuecomment-1791680253) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#39](https://github.com/MDAnalysis/transport-analysis/pull/39#issuecomment-1791552966) in [MDAnalysis/transport-analysis](https://github.com/MDAnalysis/transport-analysis) -10. 🗣 Commented on [#614](https://github.com/OpenFreeEnergy/openfe/pull/614#issuecomment-1791537417) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/stylegan3/pull/1#issuecomment-1791774747) in [tuhinmallick/stylegan3](https://github.com/tuhinmallick/stylegan3) +2. 🗣 Commented on [#3803](https://github.com/privacyidea/privacyidea/pull/3803#issuecomment-1791735687) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/contact-center-ai-samples/pull/1#issuecomment-1791698508) in [tuhinmallick/contact-center-ai-samples](https://github.com/tuhinmallick/contact-center-ai-samples) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/genai-for-marketing/pull/1#issuecomment-1791696614) in [tuhinmallick/genai-for-marketing](https://github.com/tuhinmallick/genai-for-marketing) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/document-ai-samples/pull/1#issuecomment-1791695673) in [tuhinmallick/document-ai-samples](https://github.com/tuhinmallick/document-ai-samples) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/mlops-with-vertex-ai/pull/1#issuecomment-1791693822) in [tuhinmallick/mlops-with-vertex-ai](https://github.com/tuhinmallick/mlops-with-vertex-ai) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/generative-ai/pull/1#issuecomment-1791690161) in [tuhinmallick/generative-ai](https://github.com/tuhinmallick/generative-ai) +8. 🗣 Commented on [#1007](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1007#issuecomment-1791686674) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#2962](https://github.com/dipy/dipy/pull/2962#issuecomment-1791680253) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#39](https://github.com/MDAnalysis/transport-analysis/pull/39#issuecomment-1791552966) in [MDAnalysis/transport-analysis](https://github.com/MDAnalysis/transport-analysis) From b13e7297f3fd27e515da852c185a65287a204067 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 04:18:54 +0000 Subject: [PATCH 0534/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index df8495cb..6ca479cf 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/stylegan3/pull/1#issuecomment-1791774747) in [tuhinmallick/stylegan3](https://github.com/tuhinmallick/stylegan3) -2. 🗣 Commented on [#3803](https://github.com/privacyidea/privacyidea/pull/3803#issuecomment-1791735687) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/contact-center-ai-samples/pull/1#issuecomment-1791698508) in [tuhinmallick/contact-center-ai-samples](https://github.com/tuhinmallick/contact-center-ai-samples) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/genai-for-marketing/pull/1#issuecomment-1791696614) in [tuhinmallick/genai-for-marketing](https://github.com/tuhinmallick/genai-for-marketing) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/document-ai-samples/pull/1#issuecomment-1791695673) in [tuhinmallick/document-ai-samples](https://github.com/tuhinmallick/document-ai-samples) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/mlops-with-vertex-ai/pull/1#issuecomment-1791693822) in [tuhinmallick/mlops-with-vertex-ai](https://github.com/tuhinmallick/mlops-with-vertex-ai) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/generative-ai/pull/1#issuecomment-1791690161) in [tuhinmallick/generative-ai](https://github.com/tuhinmallick/generative-ai) -8. 🗣 Commented on [#1007](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1007#issuecomment-1791686674) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#2962](https://github.com/dipy/dipy/pull/2962#issuecomment-1791680253) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#39](https://github.com/MDAnalysis/transport-analysis/pull/39#issuecomment-1791552966) in [MDAnalysis/transport-analysis](https://github.com/MDAnalysis/transport-analysis) +1. 🗣 Commented on [#4](https://github.com/Advik-B/CurseForge-API/pull/4#issuecomment-1791874616) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +2. 🗣 Commented on [#3](https://github.com/Advik-B/CurseForge-API/pull/3#issuecomment-1791874543) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/stylegan3/pull/1#issuecomment-1791774747) in [tuhinmallick/stylegan3](https://github.com/tuhinmallick/stylegan3) +4. 🗣 Commented on [#3803](https://github.com/privacyidea/privacyidea/pull/3803#issuecomment-1791735687) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/contact-center-ai-samples/pull/1#issuecomment-1791698508) in [tuhinmallick/contact-center-ai-samples](https://github.com/tuhinmallick/contact-center-ai-samples) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/genai-for-marketing/pull/1#issuecomment-1791696614) in [tuhinmallick/genai-for-marketing](https://github.com/tuhinmallick/genai-for-marketing) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/document-ai-samples/pull/1#issuecomment-1791695673) in [tuhinmallick/document-ai-samples](https://github.com/tuhinmallick/document-ai-samples) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/mlops-with-vertex-ai/pull/1#issuecomment-1791693822) in [tuhinmallick/mlops-with-vertex-ai](https://github.com/tuhinmallick/mlops-with-vertex-ai) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/generative-ai/pull/1#issuecomment-1791690161) in [tuhinmallick/generative-ai](https://github.com/tuhinmallick/generative-ai) +10. 🗣 Commented on [#1007](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1007#issuecomment-1791686674) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 107332c809195942f9dc85c26d26714c3badc04f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 07:37:25 +0000 Subject: [PATCH 0535/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6ca479cf..8315afe4 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4](https://github.com/Advik-B/CurseForge-API/pull/4#issuecomment-1791874616) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -2. 🗣 Commented on [#3](https://github.com/Advik-B/CurseForge-API/pull/3#issuecomment-1791874543) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/stylegan3/pull/1#issuecomment-1791774747) in [tuhinmallick/stylegan3](https://github.com/tuhinmallick/stylegan3) -4. 🗣 Commented on [#3803](https://github.com/privacyidea/privacyidea/pull/3803#issuecomment-1791735687) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/contact-center-ai-samples/pull/1#issuecomment-1791698508) in [tuhinmallick/contact-center-ai-samples](https://github.com/tuhinmallick/contact-center-ai-samples) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/genai-for-marketing/pull/1#issuecomment-1791696614) in [tuhinmallick/genai-for-marketing](https://github.com/tuhinmallick/genai-for-marketing) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/document-ai-samples/pull/1#issuecomment-1791695673) in [tuhinmallick/document-ai-samples](https://github.com/tuhinmallick/document-ai-samples) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/mlops-with-vertex-ai/pull/1#issuecomment-1791693822) in [tuhinmallick/mlops-with-vertex-ai](https://github.com/tuhinmallick/mlops-with-vertex-ai) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/generative-ai/pull/1#issuecomment-1791690161) in [tuhinmallick/generative-ai](https://github.com/tuhinmallick/generative-ai) -10. 🗣 Commented on [#1007](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1007#issuecomment-1791686674) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/NExT-GPT/pull/1#issuecomment-1791986608) in [tuhinmallick/NExT-GPT](https://github.com/tuhinmallick/NExT-GPT) +2. 🗣 Commented on [#4](https://github.com/Advik-B/CurseForge-API/pull/4#issuecomment-1791874616) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +3. 🗣 Commented on [#3](https://github.com/Advik-B/CurseForge-API/pull/3#issuecomment-1791874543) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/stylegan3/pull/1#issuecomment-1791774747) in [tuhinmallick/stylegan3](https://github.com/tuhinmallick/stylegan3) +5. 🗣 Commented on [#3803](https://github.com/privacyidea/privacyidea/pull/3803#issuecomment-1791735687) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/contact-center-ai-samples/pull/1#issuecomment-1791698508) in [tuhinmallick/contact-center-ai-samples](https://github.com/tuhinmallick/contact-center-ai-samples) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/genai-for-marketing/pull/1#issuecomment-1791696614) in [tuhinmallick/genai-for-marketing](https://github.com/tuhinmallick/genai-for-marketing) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/document-ai-samples/pull/1#issuecomment-1791695673) in [tuhinmallick/document-ai-samples](https://github.com/tuhinmallick/document-ai-samples) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/mlops-with-vertex-ai/pull/1#issuecomment-1791693822) in [tuhinmallick/mlops-with-vertex-ai](https://github.com/tuhinmallick/mlops-with-vertex-ai) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/generative-ai/pull/1#issuecomment-1791690161) in [tuhinmallick/generative-ai](https://github.com/tuhinmallick/generative-ai) From a5203e62af96d427192cee080622cf0fcf904dd0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 09:37:15 +0000 Subject: [PATCH 0536/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8315afe4..3fc844f3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/NExT-GPT/pull/1#issuecomment-1791986608) in [tuhinmallick/NExT-GPT](https://github.com/tuhinmallick/NExT-GPT) -2. 🗣 Commented on [#4](https://github.com/Advik-B/CurseForge-API/pull/4#issuecomment-1791874616) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -3. 🗣 Commented on [#3](https://github.com/Advik-B/CurseForge-API/pull/3#issuecomment-1791874543) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/stylegan3/pull/1#issuecomment-1791774747) in [tuhinmallick/stylegan3](https://github.com/tuhinmallick/stylegan3) -5. 🗣 Commented on [#3803](https://github.com/privacyidea/privacyidea/pull/3803#issuecomment-1791735687) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/contact-center-ai-samples/pull/1#issuecomment-1791698508) in [tuhinmallick/contact-center-ai-samples](https://github.com/tuhinmallick/contact-center-ai-samples) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/genai-for-marketing/pull/1#issuecomment-1791696614) in [tuhinmallick/genai-for-marketing](https://github.com/tuhinmallick/genai-for-marketing) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/document-ai-samples/pull/1#issuecomment-1791695673) in [tuhinmallick/document-ai-samples](https://github.com/tuhinmallick/document-ai-samples) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/mlops-with-vertex-ai/pull/1#issuecomment-1791693822) in [tuhinmallick/mlops-with-vertex-ai](https://github.com/tuhinmallick/mlops-with-vertex-ai) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/generative-ai/pull/1#issuecomment-1791690161) in [tuhinmallick/generative-ai](https://github.com/tuhinmallick/generative-ai) +1. 🗣 Commented on [#516](https://github.com/OpenFreeEnergy/openfe/pull/516#issuecomment-1792107535) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#1430](https://github.com/openSUSE/osc/pull/1430#issuecomment-1792106341) in [openSUSE/osc](https://github.com/openSUSE/osc) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/NExT-GPT/pull/1#issuecomment-1791986608) in [tuhinmallick/NExT-GPT](https://github.com/tuhinmallick/NExT-GPT) +4. 🗣 Commented on [#4](https://github.com/Advik-B/CurseForge-API/pull/4#issuecomment-1791874616) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +5. 🗣 Commented on [#3](https://github.com/Advik-B/CurseForge-API/pull/3#issuecomment-1791874543) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/stylegan3/pull/1#issuecomment-1791774747) in [tuhinmallick/stylegan3](https://github.com/tuhinmallick/stylegan3) +7. 🗣 Commented on [#3803](https://github.com/privacyidea/privacyidea/pull/3803#issuecomment-1791735687) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/contact-center-ai-samples/pull/1#issuecomment-1791698508) in [tuhinmallick/contact-center-ai-samples](https://github.com/tuhinmallick/contact-center-ai-samples) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/genai-for-marketing/pull/1#issuecomment-1791696614) in [tuhinmallick/genai-for-marketing](https://github.com/tuhinmallick/genai-for-marketing) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/document-ai-samples/pull/1#issuecomment-1791695673) in [tuhinmallick/document-ai-samples](https://github.com/tuhinmallick/document-ai-samples) From fe64e96992381a4ee578e16bc7aaec19f5addf79 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 10:17:17 +0000 Subject: [PATCH 0537/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3fc844f3..9141b914 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#516](https://github.com/OpenFreeEnergy/openfe/pull/516#issuecomment-1792107535) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#1430](https://github.com/openSUSE/osc/pull/1430#issuecomment-1792106341) in [openSUSE/osc](https://github.com/openSUSE/osc) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/NExT-GPT/pull/1#issuecomment-1791986608) in [tuhinmallick/NExT-GPT](https://github.com/tuhinmallick/NExT-GPT) -4. 🗣 Commented on [#4](https://github.com/Advik-B/CurseForge-API/pull/4#issuecomment-1791874616) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -5. 🗣 Commented on [#3](https://github.com/Advik-B/CurseForge-API/pull/3#issuecomment-1791874543) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/stylegan3/pull/1#issuecomment-1791774747) in [tuhinmallick/stylegan3](https://github.com/tuhinmallick/stylegan3) -7. 🗣 Commented on [#3803](https://github.com/privacyidea/privacyidea/pull/3803#issuecomment-1791735687) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/contact-center-ai-samples/pull/1#issuecomment-1791698508) in [tuhinmallick/contact-center-ai-samples](https://github.com/tuhinmallick/contact-center-ai-samples) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/genai-for-marketing/pull/1#issuecomment-1791696614) in [tuhinmallick/genai-for-marketing](https://github.com/tuhinmallick/genai-for-marketing) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/document-ai-samples/pull/1#issuecomment-1791695673) in [tuhinmallick/document-ai-samples](https://github.com/tuhinmallick/document-ai-samples) +1. 🗣 Commented on [#1327](https://github.com/NeuralEnsemble/python-neo/pull/1327#issuecomment-1792140405) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +2. 🗣 Commented on [#516](https://github.com/OpenFreeEnergy/openfe/pull/516#issuecomment-1792107535) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#1430](https://github.com/openSUSE/osc/pull/1430#issuecomment-1792106341) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/NExT-GPT/pull/1#issuecomment-1791986608) in [tuhinmallick/NExT-GPT](https://github.com/tuhinmallick/NExT-GPT) +5. 🗣 Commented on [#4](https://github.com/Advik-B/CurseForge-API/pull/4#issuecomment-1791874616) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +6. 🗣 Commented on [#3](https://github.com/Advik-B/CurseForge-API/pull/3#issuecomment-1791874543) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/stylegan3/pull/1#issuecomment-1791774747) in [tuhinmallick/stylegan3](https://github.com/tuhinmallick/stylegan3) +8. 🗣 Commented on [#3803](https://github.com/privacyidea/privacyidea/pull/3803#issuecomment-1791735687) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/contact-center-ai-samples/pull/1#issuecomment-1791698508) in [tuhinmallick/contact-center-ai-samples](https://github.com/tuhinmallick/contact-center-ai-samples) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/genai-for-marketing/pull/1#issuecomment-1791696614) in [tuhinmallick/genai-for-marketing](https://github.com/tuhinmallick/genai-for-marketing) From d8bff7c33dc1213ba4ba39b3d7def17b2d60cbb0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 12:31:25 +0000 Subject: [PATCH 0538/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9141b914..2a927093 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1327](https://github.com/NeuralEnsemble/python-neo/pull/1327#issuecomment-1792140405) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -2. 🗣 Commented on [#516](https://github.com/OpenFreeEnergy/openfe/pull/516#issuecomment-1792107535) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#1430](https://github.com/openSUSE/osc/pull/1430#issuecomment-1792106341) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/NExT-GPT/pull/1#issuecomment-1791986608) in [tuhinmallick/NExT-GPT](https://github.com/tuhinmallick/NExT-GPT) -5. 🗣 Commented on [#4](https://github.com/Advik-B/CurseForge-API/pull/4#issuecomment-1791874616) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -6. 🗣 Commented on [#3](https://github.com/Advik-B/CurseForge-API/pull/3#issuecomment-1791874543) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/stylegan3/pull/1#issuecomment-1791774747) in [tuhinmallick/stylegan3](https://github.com/tuhinmallick/stylegan3) -8. 🗣 Commented on [#3803](https://github.com/privacyidea/privacyidea/pull/3803#issuecomment-1791735687) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/contact-center-ai-samples/pull/1#issuecomment-1791698508) in [tuhinmallick/contact-center-ai-samples](https://github.com/tuhinmallick/contact-center-ai-samples) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/genai-for-marketing/pull/1#issuecomment-1791696614) in [tuhinmallick/genai-for-marketing](https://github.com/tuhinmallick/genai-for-marketing) +1. 🗣 Commented on [#4331](https://github.com/MDAnalysis/mdanalysis/pull/4331#issuecomment-1792350468) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#1327](https://github.com/NeuralEnsemble/python-neo/pull/1327#issuecomment-1792140405) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +3. 🗣 Commented on [#516](https://github.com/OpenFreeEnergy/openfe/pull/516#issuecomment-1792107535) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#1430](https://github.com/openSUSE/osc/pull/1430#issuecomment-1792106341) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/NExT-GPT/pull/1#issuecomment-1791986608) in [tuhinmallick/NExT-GPT](https://github.com/tuhinmallick/NExT-GPT) +6. 🗣 Commented on [#4](https://github.com/Advik-B/CurseForge-API/pull/4#issuecomment-1791874616) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +7. 🗣 Commented on [#3](https://github.com/Advik-B/CurseForge-API/pull/3#issuecomment-1791874543) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/stylegan3/pull/1#issuecomment-1791774747) in [tuhinmallick/stylegan3](https://github.com/tuhinmallick/stylegan3) +9. 🗣 Commented on [#3803](https://github.com/privacyidea/privacyidea/pull/3803#issuecomment-1791735687) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/contact-center-ai-samples/pull/1#issuecomment-1791698508) in [tuhinmallick/contact-center-ai-samples](https://github.com/tuhinmallick/contact-center-ai-samples) From a8bc8113806de0b2a53389604151cd0bc7165f81 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 15:16:12 +0000 Subject: [PATCH 0539/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2a927093..683b209f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4331](https://github.com/MDAnalysis/mdanalysis/pull/4331#issuecomment-1792350468) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#1327](https://github.com/NeuralEnsemble/python-neo/pull/1327#issuecomment-1792140405) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -3. 🗣 Commented on [#516](https://github.com/OpenFreeEnergy/openfe/pull/516#issuecomment-1792107535) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#1430](https://github.com/openSUSE/osc/pull/1430#issuecomment-1792106341) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/NExT-GPT/pull/1#issuecomment-1791986608) in [tuhinmallick/NExT-GPT](https://github.com/tuhinmallick/NExT-GPT) -6. 🗣 Commented on [#4](https://github.com/Advik-B/CurseForge-API/pull/4#issuecomment-1791874616) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -7. 🗣 Commented on [#3](https://github.com/Advik-B/CurseForge-API/pull/3#issuecomment-1791874543) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/stylegan3/pull/1#issuecomment-1791774747) in [tuhinmallick/stylegan3](https://github.com/tuhinmallick/stylegan3) -9. 🗣 Commented on [#3803](https://github.com/privacyidea/privacyidea/pull/3803#issuecomment-1791735687) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/contact-center-ai-samples/pull/1#issuecomment-1791698508) in [tuhinmallick/contact-center-ai-samples](https://github.com/tuhinmallick/contact-center-ai-samples) +1. 🗣 Commented on [#217](https://github.com/OpenSCAP/openscap-report/pull/217#issuecomment-1792591361) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +2. 🗣 Commented on [#4331](https://github.com/MDAnalysis/mdanalysis/pull/4331#issuecomment-1792350468) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#1327](https://github.com/NeuralEnsemble/python-neo/pull/1327#issuecomment-1792140405) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +4. 🗣 Commented on [#516](https://github.com/OpenFreeEnergy/openfe/pull/516#issuecomment-1792107535) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#1430](https://github.com/openSUSE/osc/pull/1430#issuecomment-1792106341) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/NExT-GPT/pull/1#issuecomment-1791986608) in [tuhinmallick/NExT-GPT](https://github.com/tuhinmallick/NExT-GPT) +7. 🗣 Commented on [#4](https://github.com/Advik-B/CurseForge-API/pull/4#issuecomment-1791874616) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +8. 🗣 Commented on [#3](https://github.com/Advik-B/CurseForge-API/pull/3#issuecomment-1791874543) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/stylegan3/pull/1#issuecomment-1791774747) in [tuhinmallick/stylegan3](https://github.com/tuhinmallick/stylegan3) +10. 🗣 Commented on [#3803](https://github.com/privacyidea/privacyidea/pull/3803#issuecomment-1791735687) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From 4fbed74c4fafd35af4471eea9cf51a8d7e4055d1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 15:37:53 +0000 Subject: [PATCH 0540/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 683b209f..092bb073 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#217](https://github.com/OpenSCAP/openscap-report/pull/217#issuecomment-1792591361) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -2. 🗣 Commented on [#4331](https://github.com/MDAnalysis/mdanalysis/pull/4331#issuecomment-1792350468) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#1327](https://github.com/NeuralEnsemble/python-neo/pull/1327#issuecomment-1792140405) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -4. 🗣 Commented on [#516](https://github.com/OpenFreeEnergy/openfe/pull/516#issuecomment-1792107535) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#1430](https://github.com/openSUSE/osc/pull/1430#issuecomment-1792106341) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/NExT-GPT/pull/1#issuecomment-1791986608) in [tuhinmallick/NExT-GPT](https://github.com/tuhinmallick/NExT-GPT) -7. 🗣 Commented on [#4](https://github.com/Advik-B/CurseForge-API/pull/4#issuecomment-1791874616) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -8. 🗣 Commented on [#3](https://github.com/Advik-B/CurseForge-API/pull/3#issuecomment-1791874543) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/stylegan3/pull/1#issuecomment-1791774747) in [tuhinmallick/stylegan3](https://github.com/tuhinmallick/stylegan3) -10. 🗣 Commented on [#3803](https://github.com/privacyidea/privacyidea/pull/3803#issuecomment-1791735687) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#2619](https://github.com/metabrainz/listenbrainz-server/pull/2619#issuecomment-1792631809) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#217](https://github.com/OpenSCAP/openscap-report/pull/217#issuecomment-1792591361) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +3. 🗣 Commented on [#4331](https://github.com/MDAnalysis/mdanalysis/pull/4331#issuecomment-1792350468) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#1327](https://github.com/NeuralEnsemble/python-neo/pull/1327#issuecomment-1792140405) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +5. 🗣 Commented on [#516](https://github.com/OpenFreeEnergy/openfe/pull/516#issuecomment-1792107535) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#1430](https://github.com/openSUSE/osc/pull/1430#issuecomment-1792106341) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/NExT-GPT/pull/1#issuecomment-1791986608) in [tuhinmallick/NExT-GPT](https://github.com/tuhinmallick/NExT-GPT) +8. 🗣 Commented on [#4](https://github.com/Advik-B/CurseForge-API/pull/4#issuecomment-1791874616) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +9. 🗣 Commented on [#3](https://github.com/Advik-B/CurseForge-API/pull/3#issuecomment-1791874543) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/stylegan3/pull/1#issuecomment-1791774747) in [tuhinmallick/stylegan3](https://github.com/tuhinmallick/stylegan3) From c80032f383cf74b9aee88e064877085deb9b254f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 18:38:33 +0000 Subject: [PATCH 0541/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 092bb073..ad1199a2 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2619](https://github.com/metabrainz/listenbrainz-server/pull/2619#issuecomment-1792631809) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#217](https://github.com/OpenSCAP/openscap-report/pull/217#issuecomment-1792591361) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -3. 🗣 Commented on [#4331](https://github.com/MDAnalysis/mdanalysis/pull/4331#issuecomment-1792350468) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#1327](https://github.com/NeuralEnsemble/python-neo/pull/1327#issuecomment-1792140405) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -5. 🗣 Commented on [#516](https://github.com/OpenFreeEnergy/openfe/pull/516#issuecomment-1792107535) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#1430](https://github.com/openSUSE/osc/pull/1430#issuecomment-1792106341) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/NExT-GPT/pull/1#issuecomment-1791986608) in [tuhinmallick/NExT-GPT](https://github.com/tuhinmallick/NExT-GPT) -8. 🗣 Commented on [#4](https://github.com/Advik-B/CurseForge-API/pull/4#issuecomment-1791874616) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -9. 🗣 Commented on [#3](https://github.com/Advik-B/CurseForge-API/pull/3#issuecomment-1791874543) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/stylegan3/pull/1#issuecomment-1791774747) in [tuhinmallick/stylegan3](https://github.com/tuhinmallick/stylegan3) +1. 🗣 Commented on [#175](https://github.com/Fatal1ty/mashumaro/pull/175#issuecomment-1792924545) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +2. 🗣 Commented on [#2619](https://github.com/metabrainz/listenbrainz-server/pull/2619#issuecomment-1792631809) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#217](https://github.com/OpenSCAP/openscap-report/pull/217#issuecomment-1792591361) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +4. 🗣 Commented on [#4331](https://github.com/MDAnalysis/mdanalysis/pull/4331#issuecomment-1792350468) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#1327](https://github.com/NeuralEnsemble/python-neo/pull/1327#issuecomment-1792140405) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +6. 🗣 Commented on [#516](https://github.com/OpenFreeEnergy/openfe/pull/516#issuecomment-1792107535) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#1430](https://github.com/openSUSE/osc/pull/1430#issuecomment-1792106341) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/NExT-GPT/pull/1#issuecomment-1791986608) in [tuhinmallick/NExT-GPT](https://github.com/tuhinmallick/NExT-GPT) +9. 🗣 Commented on [#4](https://github.com/Advik-B/CurseForge-API/pull/4#issuecomment-1791874616) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +10. 🗣 Commented on [#3](https://github.com/Advik-B/CurseForge-API/pull/3#issuecomment-1791874543) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) From 6447dc2bc7253a7648350277d7046f0f96722f44 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 19:37:13 +0000 Subject: [PATCH 0542/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ad1199a2..fcde5d11 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#175](https://github.com/Fatal1ty/mashumaro/pull/175#issuecomment-1792924545) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -2. 🗣 Commented on [#2619](https://github.com/metabrainz/listenbrainz-server/pull/2619#issuecomment-1792631809) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#217](https://github.com/OpenSCAP/openscap-report/pull/217#issuecomment-1792591361) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -4. 🗣 Commented on [#4331](https://github.com/MDAnalysis/mdanalysis/pull/4331#issuecomment-1792350468) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#1327](https://github.com/NeuralEnsemble/python-neo/pull/1327#issuecomment-1792140405) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -6. 🗣 Commented on [#516](https://github.com/OpenFreeEnergy/openfe/pull/516#issuecomment-1792107535) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#1430](https://github.com/openSUSE/osc/pull/1430#issuecomment-1792106341) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/NExT-GPT/pull/1#issuecomment-1791986608) in [tuhinmallick/NExT-GPT](https://github.com/tuhinmallick/NExT-GPT) -9. 🗣 Commented on [#4](https://github.com/Advik-B/CurseForge-API/pull/4#issuecomment-1791874616) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -10. 🗣 Commented on [#3](https://github.com/Advik-B/CurseForge-API/pull/3#issuecomment-1791874543) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +1. 🗣 Commented on [#803](https://github.com/scilus/scilpy/pull/803#issuecomment-1792976354) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#4332](https://github.com/MDAnalysis/mdanalysis/pull/4332#issuecomment-1792970220) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#175](https://github.com/Fatal1ty/mashumaro/pull/175#issuecomment-1792924545) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +4. 🗣 Commented on [#2619](https://github.com/metabrainz/listenbrainz-server/pull/2619#issuecomment-1792631809) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#217](https://github.com/OpenSCAP/openscap-report/pull/217#issuecomment-1792591361) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +6. 🗣 Commented on [#4331](https://github.com/MDAnalysis/mdanalysis/pull/4331#issuecomment-1792350468) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#1327](https://github.com/NeuralEnsemble/python-neo/pull/1327#issuecomment-1792140405) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +8. 🗣 Commented on [#516](https://github.com/OpenFreeEnergy/openfe/pull/516#issuecomment-1792107535) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#1430](https://github.com/openSUSE/osc/pull/1430#issuecomment-1792106341) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/NExT-GPT/pull/1#issuecomment-1791986608) in [tuhinmallick/NExT-GPT](https://github.com/tuhinmallick/NExT-GPT) From 1c89be8fd08af2fb3f34e595e8a97a4160904372 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 21:11:54 +0000 Subject: [PATCH 0543/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fcde5d11..88c43940 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#803](https://github.com/scilus/scilpy/pull/803#issuecomment-1792976354) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#4332](https://github.com/MDAnalysis/mdanalysis/pull/4332#issuecomment-1792970220) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#175](https://github.com/Fatal1ty/mashumaro/pull/175#issuecomment-1792924545) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -4. 🗣 Commented on [#2619](https://github.com/metabrainz/listenbrainz-server/pull/2619#issuecomment-1792631809) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#217](https://github.com/OpenSCAP/openscap-report/pull/217#issuecomment-1792591361) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -6. 🗣 Commented on [#4331](https://github.com/MDAnalysis/mdanalysis/pull/4331#issuecomment-1792350468) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#1327](https://github.com/NeuralEnsemble/python-neo/pull/1327#issuecomment-1792140405) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -8. 🗣 Commented on [#516](https://github.com/OpenFreeEnergy/openfe/pull/516#issuecomment-1792107535) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#1430](https://github.com/openSUSE/osc/pull/1430#issuecomment-1792106341) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/NExT-GPT/pull/1#issuecomment-1791986608) in [tuhinmallick/NExT-GPT](https://github.com/tuhinmallick/NExT-GPT) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA/pull/1#issuecomment-1793088401) in [tuhinmallick/LLaVA](https://github.com/tuhinmallick/LLaVA) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA-Interactive-Demo/pull/1#issuecomment-1793082661) in [tuhinmallick/LLaVA-Interactive-Demo](https://github.com/tuhinmallick/LLaVA-Interactive-Demo) +3. 🗣 Commented on [#803](https://github.com/scilus/scilpy/pull/803#issuecomment-1792976354) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#4332](https://github.com/MDAnalysis/mdanalysis/pull/4332#issuecomment-1792970220) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#175](https://github.com/Fatal1ty/mashumaro/pull/175#issuecomment-1792924545) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +6. 🗣 Commented on [#2619](https://github.com/metabrainz/listenbrainz-server/pull/2619#issuecomment-1792631809) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#217](https://github.com/OpenSCAP/openscap-report/pull/217#issuecomment-1792591361) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +8. 🗣 Commented on [#4331](https://github.com/MDAnalysis/mdanalysis/pull/4331#issuecomment-1792350468) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#1327](https://github.com/NeuralEnsemble/python-neo/pull/1327#issuecomment-1792140405) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +10. 🗣 Commented on [#516](https://github.com/OpenFreeEnergy/openfe/pull/516#issuecomment-1792107535) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From f69ecc7b8860dd92ddbb6f39b0b9eae314a9d5e5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 22:37:09 +0000 Subject: [PATCH 0544/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 88c43940..3d7e18c8 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA/pull/1#issuecomment-1793088401) in [tuhinmallick/LLaVA](https://github.com/tuhinmallick/LLaVA) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA-Interactive-Demo/pull/1#issuecomment-1793082661) in [tuhinmallick/LLaVA-Interactive-Demo](https://github.com/tuhinmallick/LLaVA-Interactive-Demo) -3. 🗣 Commented on [#803](https://github.com/scilus/scilpy/pull/803#issuecomment-1792976354) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#4332](https://github.com/MDAnalysis/mdanalysis/pull/4332#issuecomment-1792970220) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#175](https://github.com/Fatal1ty/mashumaro/pull/175#issuecomment-1792924545) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -6. 🗣 Commented on [#2619](https://github.com/metabrainz/listenbrainz-server/pull/2619#issuecomment-1792631809) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#217](https://github.com/OpenSCAP/openscap-report/pull/217#issuecomment-1792591361) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -8. 🗣 Commented on [#4331](https://github.com/MDAnalysis/mdanalysis/pull/4331#issuecomment-1792350468) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#1327](https://github.com/NeuralEnsemble/python-neo/pull/1327#issuecomment-1792140405) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -10. 🗣 Commented on [#516](https://github.com/OpenFreeEnergy/openfe/pull/516#issuecomment-1792107535) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/examples/pull/1#issuecomment-1793178308) in [tuhinmallick/examples](https://github.com/tuhinmallick/examples) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA/pull/1#issuecomment-1793088401) in [tuhinmallick/LLaVA](https://github.com/tuhinmallick/LLaVA) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA-Interactive-Demo/pull/1#issuecomment-1793082661) in [tuhinmallick/LLaVA-Interactive-Demo](https://github.com/tuhinmallick/LLaVA-Interactive-Demo) +4. 🗣 Commented on [#803](https://github.com/scilus/scilpy/pull/803#issuecomment-1792976354) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#4332](https://github.com/MDAnalysis/mdanalysis/pull/4332#issuecomment-1792970220) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#175](https://github.com/Fatal1ty/mashumaro/pull/175#issuecomment-1792924545) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +7. 🗣 Commented on [#2619](https://github.com/metabrainz/listenbrainz-server/pull/2619#issuecomment-1792631809) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#217](https://github.com/OpenSCAP/openscap-report/pull/217#issuecomment-1792591361) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +9. 🗣 Commented on [#4331](https://github.com/MDAnalysis/mdanalysis/pull/4331#issuecomment-1792350468) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#1327](https://github.com/NeuralEnsemble/python-neo/pull/1327#issuecomment-1792140405) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) From 86cc8dd32c9a59d2497faf92e6f8f8450e482d6e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 23:15:36 +0000 Subject: [PATCH 0545/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3d7e18c8..67fc7194 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/examples/pull/1#issuecomment-1793178308) in [tuhinmallick/examples](https://github.com/tuhinmallick/examples) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA/pull/1#issuecomment-1793088401) in [tuhinmallick/LLaVA](https://github.com/tuhinmallick/LLaVA) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA-Interactive-Demo/pull/1#issuecomment-1793082661) in [tuhinmallick/LLaVA-Interactive-Demo](https://github.com/tuhinmallick/LLaVA-Interactive-Demo) -4. 🗣 Commented on [#803](https://github.com/scilus/scilpy/pull/803#issuecomment-1792976354) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#4332](https://github.com/MDAnalysis/mdanalysis/pull/4332#issuecomment-1792970220) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#175](https://github.com/Fatal1ty/mashumaro/pull/175#issuecomment-1792924545) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -7. 🗣 Commented on [#2619](https://github.com/metabrainz/listenbrainz-server/pull/2619#issuecomment-1792631809) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#217](https://github.com/OpenSCAP/openscap-report/pull/217#issuecomment-1792591361) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -9. 🗣 Commented on [#4331](https://github.com/MDAnalysis/mdanalysis/pull/4331#issuecomment-1792350468) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#1327](https://github.com/NeuralEnsemble/python-neo/pull/1327#issuecomment-1792140405) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +1. 🗣 Commented on [#2963](https://github.com/dipy/dipy/pull/2963#issuecomment-1793227243) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/examples/pull/1#issuecomment-1793178308) in [tuhinmallick/examples](https://github.com/tuhinmallick/examples) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA/pull/1#issuecomment-1793088401) in [tuhinmallick/LLaVA](https://github.com/tuhinmallick/LLaVA) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA-Interactive-Demo/pull/1#issuecomment-1793082661) in [tuhinmallick/LLaVA-Interactive-Demo](https://github.com/tuhinmallick/LLaVA-Interactive-Demo) +5. 🗣 Commented on [#803](https://github.com/scilus/scilpy/pull/803#issuecomment-1792976354) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#4332](https://github.com/MDAnalysis/mdanalysis/pull/4332#issuecomment-1792970220) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#175](https://github.com/Fatal1ty/mashumaro/pull/175#issuecomment-1792924545) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +8. 🗣 Commented on [#2619](https://github.com/metabrainz/listenbrainz-server/pull/2619#issuecomment-1792631809) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#217](https://github.com/OpenSCAP/openscap-report/pull/217#issuecomment-1792591361) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +10. 🗣 Commented on [#4331](https://github.com/MDAnalysis/mdanalysis/pull/4331#issuecomment-1792350468) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From ebdb057f3585ecdef040d338750da21c79d43d42 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Nov 2023 23:37:18 +0000 Subject: [PATCH 0546/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 67fc7194..b2786a12 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2963](https://github.com/dipy/dipy/pull/2963#issuecomment-1793227243) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/examples/pull/1#issuecomment-1793178308) in [tuhinmallick/examples](https://github.com/tuhinmallick/examples) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA/pull/1#issuecomment-1793088401) in [tuhinmallick/LLaVA](https://github.com/tuhinmallick/LLaVA) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA-Interactive-Demo/pull/1#issuecomment-1793082661) in [tuhinmallick/LLaVA-Interactive-Demo](https://github.com/tuhinmallick/LLaVA-Interactive-Demo) -5. 🗣 Commented on [#803](https://github.com/scilus/scilpy/pull/803#issuecomment-1792976354) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#4332](https://github.com/MDAnalysis/mdanalysis/pull/4332#issuecomment-1792970220) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#175](https://github.com/Fatal1ty/mashumaro/pull/175#issuecomment-1792924545) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -8. 🗣 Commented on [#2619](https://github.com/metabrainz/listenbrainz-server/pull/2619#issuecomment-1792631809) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#217](https://github.com/OpenSCAP/openscap-report/pull/217#issuecomment-1792591361) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -10. 🗣 Commented on [#4331](https://github.com/MDAnalysis/mdanalysis/pull/4331#issuecomment-1792350468) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#1008](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1008#issuecomment-1793235990) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#2963](https://github.com/dipy/dipy/pull/2963#issuecomment-1793227243) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/examples/pull/1#issuecomment-1793178308) in [tuhinmallick/examples](https://github.com/tuhinmallick/examples) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA/pull/1#issuecomment-1793088401) in [tuhinmallick/LLaVA](https://github.com/tuhinmallick/LLaVA) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA-Interactive-Demo/pull/1#issuecomment-1793082661) in [tuhinmallick/LLaVA-Interactive-Demo](https://github.com/tuhinmallick/LLaVA-Interactive-Demo) +6. 🗣 Commented on [#803](https://github.com/scilus/scilpy/pull/803#issuecomment-1792976354) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#4332](https://github.com/MDAnalysis/mdanalysis/pull/4332#issuecomment-1792970220) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#175](https://github.com/Fatal1ty/mashumaro/pull/175#issuecomment-1792924545) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +9. 🗣 Commented on [#2619](https://github.com/metabrainz/listenbrainz-server/pull/2619#issuecomment-1792631809) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#217](https://github.com/OpenSCAP/openscap-report/pull/217#issuecomment-1792591361) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) From cfd91f6d00f779cbff3161b03080a33f2cbfd12c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Nov 2023 07:37:31 +0000 Subject: [PATCH 0547/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b2786a12..58ba7791 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1008](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1008#issuecomment-1793235990) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#2963](https://github.com/dipy/dipy/pull/2963#issuecomment-1793227243) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/examples/pull/1#issuecomment-1793178308) in [tuhinmallick/examples](https://github.com/tuhinmallick/examples) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA/pull/1#issuecomment-1793088401) in [tuhinmallick/LLaVA](https://github.com/tuhinmallick/LLaVA) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA-Interactive-Demo/pull/1#issuecomment-1793082661) in [tuhinmallick/LLaVA-Interactive-Demo](https://github.com/tuhinmallick/LLaVA-Interactive-Demo) -6. 🗣 Commented on [#803](https://github.com/scilus/scilpy/pull/803#issuecomment-1792976354) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#4332](https://github.com/MDAnalysis/mdanalysis/pull/4332#issuecomment-1792970220) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#175](https://github.com/Fatal1ty/mashumaro/pull/175#issuecomment-1792924545) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -9. 🗣 Commented on [#2619](https://github.com/metabrainz/listenbrainz-server/pull/2619#issuecomment-1792631809) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#217](https://github.com/OpenSCAP/openscap-report/pull/217#issuecomment-1792591361) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube-stuffs/pull/1#issuecomment-1793371287) in [tuhinmallick/youtube-stuffs](https://github.com/tuhinmallick/youtube-stuffs) +2. 🗣 Commented on [#1008](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1008#issuecomment-1793235990) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#2963](https://github.com/dipy/dipy/pull/2963#issuecomment-1793227243) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/examples/pull/1#issuecomment-1793178308) in [tuhinmallick/examples](https://github.com/tuhinmallick/examples) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA/pull/1#issuecomment-1793088401) in [tuhinmallick/LLaVA](https://github.com/tuhinmallick/LLaVA) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA-Interactive-Demo/pull/1#issuecomment-1793082661) in [tuhinmallick/LLaVA-Interactive-Demo](https://github.com/tuhinmallick/LLaVA-Interactive-Demo) +7. 🗣 Commented on [#803](https://github.com/scilus/scilpy/pull/803#issuecomment-1792976354) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#4332](https://github.com/MDAnalysis/mdanalysis/pull/4332#issuecomment-1792970220) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#175](https://github.com/Fatal1ty/mashumaro/pull/175#issuecomment-1792924545) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +10. 🗣 Commented on [#2619](https://github.com/metabrainz/listenbrainz-server/pull/2619#issuecomment-1792631809) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 7bb5a496ec88d5f9d5bc4fe8684ad7a30bc6db7a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Nov 2023 08:37:25 +0000 Subject: [PATCH 0548/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 58ba7791..d5eb5a64 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube-stuffs/pull/1#issuecomment-1793371287) in [tuhinmallick/youtube-stuffs](https://github.com/tuhinmallick/youtube-stuffs) -2. 🗣 Commented on [#1008](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1008#issuecomment-1793235990) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#2963](https://github.com/dipy/dipy/pull/2963#issuecomment-1793227243) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/examples/pull/1#issuecomment-1793178308) in [tuhinmallick/examples](https://github.com/tuhinmallick/examples) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA/pull/1#issuecomment-1793088401) in [tuhinmallick/LLaVA](https://github.com/tuhinmallick/LLaVA) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA-Interactive-Demo/pull/1#issuecomment-1793082661) in [tuhinmallick/LLaVA-Interactive-Demo](https://github.com/tuhinmallick/LLaVA-Interactive-Demo) -7. 🗣 Commented on [#803](https://github.com/scilus/scilpy/pull/803#issuecomment-1792976354) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#4332](https://github.com/MDAnalysis/mdanalysis/pull/4332#issuecomment-1792970220) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#175](https://github.com/Fatal1ty/mashumaro/pull/175#issuecomment-1792924545) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -10. 🗣 Commented on [#2619](https://github.com/metabrainz/listenbrainz-server/pull/2619#issuecomment-1792631809) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#857](https://github.com/PyThaiNLP/pythainlp/pull/857#issuecomment-1793383139) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube-stuffs/pull/1#issuecomment-1793371287) in [tuhinmallick/youtube-stuffs](https://github.com/tuhinmallick/youtube-stuffs) +3. 🗣 Commented on [#1008](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1008#issuecomment-1793235990) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#2963](https://github.com/dipy/dipy/pull/2963#issuecomment-1793227243) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/examples/pull/1#issuecomment-1793178308) in [tuhinmallick/examples](https://github.com/tuhinmallick/examples) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA/pull/1#issuecomment-1793088401) in [tuhinmallick/LLaVA](https://github.com/tuhinmallick/LLaVA) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA-Interactive-Demo/pull/1#issuecomment-1793082661) in [tuhinmallick/LLaVA-Interactive-Demo](https://github.com/tuhinmallick/LLaVA-Interactive-Demo) +8. 🗣 Commented on [#803](https://github.com/scilus/scilpy/pull/803#issuecomment-1792976354) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#4332](https://github.com/MDAnalysis/mdanalysis/pull/4332#issuecomment-1792970220) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#175](https://github.com/Fatal1ty/mashumaro/pull/175#issuecomment-1792924545) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) From ad3f25551bbeabfc5dfb4b1590a012d1476ba970 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Nov 2023 09:13:53 +0000 Subject: [PATCH 0549/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d5eb5a64..b8aad360 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#857](https://github.com/PyThaiNLP/pythainlp/pull/857#issuecomment-1793383139) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube-stuffs/pull/1#issuecomment-1793371287) in [tuhinmallick/youtube-stuffs](https://github.com/tuhinmallick/youtube-stuffs) -3. 🗣 Commented on [#1008](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1008#issuecomment-1793235990) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#2963](https://github.com/dipy/dipy/pull/2963#issuecomment-1793227243) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/examples/pull/1#issuecomment-1793178308) in [tuhinmallick/examples](https://github.com/tuhinmallick/examples) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA/pull/1#issuecomment-1793088401) in [tuhinmallick/LLaVA](https://github.com/tuhinmallick/LLaVA) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA-Interactive-Demo/pull/1#issuecomment-1793082661) in [tuhinmallick/LLaVA-Interactive-Demo](https://github.com/tuhinmallick/LLaVA-Interactive-Demo) -8. 🗣 Commented on [#803](https://github.com/scilus/scilpy/pull/803#issuecomment-1792976354) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#4332](https://github.com/MDAnalysis/mdanalysis/pull/4332#issuecomment-1792970220) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#175](https://github.com/Fatal1ty/mashumaro/pull/175#issuecomment-1792924545) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +1. 🗣 Commented on [#39](https://github.com/OpenFreeEnergy/Lomap/pull/39#issuecomment-1793387932) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +2. 🗣 Commented on [#17](https://github.com/njzjz/comparemol/pull/17#issuecomment-1793384132) in [njzjz/comparemol](https://github.com/njzjz/comparemol) +3. 🗣 Commented on [#857](https://github.com/PyThaiNLP/pythainlp/pull/857#issuecomment-1793383139) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube-stuffs/pull/1#issuecomment-1793371287) in [tuhinmallick/youtube-stuffs](https://github.com/tuhinmallick/youtube-stuffs) +5. 🗣 Commented on [#1008](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1008#issuecomment-1793235990) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#2963](https://github.com/dipy/dipy/pull/2963#issuecomment-1793227243) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/examples/pull/1#issuecomment-1793178308) in [tuhinmallick/examples](https://github.com/tuhinmallick/examples) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA/pull/1#issuecomment-1793088401) in [tuhinmallick/LLaVA](https://github.com/tuhinmallick/LLaVA) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA-Interactive-Demo/pull/1#issuecomment-1793082661) in [tuhinmallick/LLaVA-Interactive-Demo](https://github.com/tuhinmallick/LLaVA-Interactive-Demo) +10. 🗣 Commented on [#803](https://github.com/scilus/scilpy/pull/803#issuecomment-1792976354) in [scilus/scilpy](https://github.com/scilus/scilpy) From e388b06ce710828e8d6373ea0c89730a10049adb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Nov 2023 14:13:09 +0000 Subject: [PATCH 0550/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b8aad360..6732fd6c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#39](https://github.com/OpenFreeEnergy/Lomap/pull/39#issuecomment-1793387932) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -2. 🗣 Commented on [#17](https://github.com/njzjz/comparemol/pull/17#issuecomment-1793384132) in [njzjz/comparemol](https://github.com/njzjz/comparemol) -3. 🗣 Commented on [#857](https://github.com/PyThaiNLP/pythainlp/pull/857#issuecomment-1793383139) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube-stuffs/pull/1#issuecomment-1793371287) in [tuhinmallick/youtube-stuffs](https://github.com/tuhinmallick/youtube-stuffs) -5. 🗣 Commented on [#1008](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1008#issuecomment-1793235990) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#2963](https://github.com/dipy/dipy/pull/2963#issuecomment-1793227243) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/examples/pull/1#issuecomment-1793178308) in [tuhinmallick/examples](https://github.com/tuhinmallick/examples) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA/pull/1#issuecomment-1793088401) in [tuhinmallick/LLaVA](https://github.com/tuhinmallick/LLaVA) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA-Interactive-Demo/pull/1#issuecomment-1793082661) in [tuhinmallick/LLaVA-Interactive-Demo](https://github.com/tuhinmallick/LLaVA-Interactive-Demo) -10. 🗣 Commented on [#803](https://github.com/scilus/scilpy/pull/803#issuecomment-1792976354) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/autollm/pull/1#issuecomment-1793453419) in [tuhinmallick/autollm](https://github.com/tuhinmallick/autollm) +2. 🗣 Commented on [#39](https://github.com/OpenFreeEnergy/Lomap/pull/39#issuecomment-1793387932) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +3. 🗣 Commented on [#17](https://github.com/njzjz/comparemol/pull/17#issuecomment-1793384132) in [njzjz/comparemol](https://github.com/njzjz/comparemol) +4. 🗣 Commented on [#857](https://github.com/PyThaiNLP/pythainlp/pull/857#issuecomment-1793383139) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube-stuffs/pull/1#issuecomment-1793371287) in [tuhinmallick/youtube-stuffs](https://github.com/tuhinmallick/youtube-stuffs) +6. 🗣 Commented on [#1008](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1008#issuecomment-1793235990) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#2963](https://github.com/dipy/dipy/pull/2963#issuecomment-1793227243) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/examples/pull/1#issuecomment-1793178308) in [tuhinmallick/examples](https://github.com/tuhinmallick/examples) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA/pull/1#issuecomment-1793088401) in [tuhinmallick/LLaVA](https://github.com/tuhinmallick/LLaVA) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA-Interactive-Demo/pull/1#issuecomment-1793082661) in [tuhinmallick/LLaVA-Interactive-Demo](https://github.com/tuhinmallick/LLaVA-Interactive-Demo) From 4e551eab4fed01d1206719ea9330ccef6e7ebf90 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Nov 2023 19:11:32 +0000 Subject: [PATCH 0551/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6732fd6c..c4c6fb5e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/autollm/pull/1#issuecomment-1793453419) in [tuhinmallick/autollm](https://github.com/tuhinmallick/autollm) -2. 🗣 Commented on [#39](https://github.com/OpenFreeEnergy/Lomap/pull/39#issuecomment-1793387932) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -3. 🗣 Commented on [#17](https://github.com/njzjz/comparemol/pull/17#issuecomment-1793384132) in [njzjz/comparemol](https://github.com/njzjz/comparemol) -4. 🗣 Commented on [#857](https://github.com/PyThaiNLP/pythainlp/pull/857#issuecomment-1793383139) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube-stuffs/pull/1#issuecomment-1793371287) in [tuhinmallick/youtube-stuffs](https://github.com/tuhinmallick/youtube-stuffs) -6. 🗣 Commented on [#1008](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1008#issuecomment-1793235990) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#2963](https://github.com/dipy/dipy/pull/2963#issuecomment-1793227243) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/examples/pull/1#issuecomment-1793178308) in [tuhinmallick/examples](https://github.com/tuhinmallick/examples) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA/pull/1#issuecomment-1793088401) in [tuhinmallick/LLaVA](https://github.com/tuhinmallick/LLaVA) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaVA-Interactive-Demo/pull/1#issuecomment-1793082661) in [tuhinmallick/LLaVA-Interactive-Demo](https://github.com/tuhinmallick/LLaVA-Interactive-Demo) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-italian/pull/1#issuecomment-1793522941) in [tuhinmallick/clip-italian](https://github.com/tuhinmallick/clip-italian) +3. 🗣 Commented on [#40](https://github.com/OpenFreeEnergy/Lomap/pull/40#issuecomment-1793522782) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/autollm/pull/1#issuecomment-1793453419) in [tuhinmallick/autollm](https://github.com/tuhinmallick/autollm) +5. 🗣 Commented on [#39](https://github.com/OpenFreeEnergy/Lomap/pull/39#issuecomment-1793387932) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +6. 🗣 Commented on [#17](https://github.com/njzjz/comparemol/pull/17#issuecomment-1793384132) in [njzjz/comparemol](https://github.com/njzjz/comparemol) +7. 🗣 Commented on [#857](https://github.com/PyThaiNLP/pythainlp/pull/857#issuecomment-1793383139) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube-stuffs/pull/1#issuecomment-1793371287) in [tuhinmallick/youtube-stuffs](https://github.com/tuhinmallick/youtube-stuffs) +9. 🗣 Commented on [#1008](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1008#issuecomment-1793235990) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#2963](https://github.com/dipy/dipy/pull/2963#issuecomment-1793227243) in [dipy/dipy](https://github.com/dipy/dipy) From dfe9eaf09af828ee0e723e4260d10191e3fbcdaa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Nov 2023 23:14:48 +0000 Subject: [PATCH 0552/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c4c6fb5e..c4817971 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-italian/pull/1#issuecomment-1793522941) in [tuhinmallick/clip-italian](https://github.com/tuhinmallick/clip-italian) -3. 🗣 Commented on [#40](https://github.com/OpenFreeEnergy/Lomap/pull/40#issuecomment-1793522782) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/autollm/pull/1#issuecomment-1793453419) in [tuhinmallick/autollm](https://github.com/tuhinmallick/autollm) -5. 🗣 Commented on [#39](https://github.com/OpenFreeEnergy/Lomap/pull/39#issuecomment-1793387932) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -6. 🗣 Commented on [#17](https://github.com/njzjz/comparemol/pull/17#issuecomment-1793384132) in [njzjz/comparemol](https://github.com/njzjz/comparemol) -7. 🗣 Commented on [#857](https://github.com/PyThaiNLP/pythainlp/pull/857#issuecomment-1793383139) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube-stuffs/pull/1#issuecomment-1793371287) in [tuhinmallick/youtube-stuffs](https://github.com/tuhinmallick/youtube-stuffs) -9. 🗣 Commented on [#1008](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1008#issuecomment-1793235990) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#2963](https://github.com/dipy/dipy/pull/2963#issuecomment-1793227243) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-italian/pull/1#issuecomment-1793522941) in [tuhinmallick/clip-italian](https://github.com/tuhinmallick/clip-italian) +4. 🗣 Commented on [#40](https://github.com/OpenFreeEnergy/Lomap/pull/40#issuecomment-1793522782) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/autollm/pull/1#issuecomment-1793453419) in [tuhinmallick/autollm](https://github.com/tuhinmallick/autollm) +6. 🗣 Commented on [#39](https://github.com/OpenFreeEnergy/Lomap/pull/39#issuecomment-1793387932) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +7. 🗣 Commented on [#17](https://github.com/njzjz/comparemol/pull/17#issuecomment-1793384132) in [njzjz/comparemol](https://github.com/njzjz/comparemol) +8. 🗣 Commented on [#857](https://github.com/PyThaiNLP/pythainlp/pull/857#issuecomment-1793383139) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube-stuffs/pull/1#issuecomment-1793371287) in [tuhinmallick/youtube-stuffs](https://github.com/tuhinmallick/youtube-stuffs) +10. 🗣 Commented on [#1008](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1008#issuecomment-1793235990) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From a2416c9ba0100cdb37129fca74bd46ad028f7671 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Nov 2023 23:37:13 +0000 Subject: [PATCH 0553/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c4817971..390f2620 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-italian/pull/1#issuecomment-1793522941) in [tuhinmallick/clip-italian](https://github.com/tuhinmallick/clip-italian) -4. 🗣 Commented on [#40](https://github.com/OpenFreeEnergy/Lomap/pull/40#issuecomment-1793522782) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/autollm/pull/1#issuecomment-1793453419) in [tuhinmallick/autollm](https://github.com/tuhinmallick/autollm) -6. 🗣 Commented on [#39](https://github.com/OpenFreeEnergy/Lomap/pull/39#issuecomment-1793387932) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -7. 🗣 Commented on [#17](https://github.com/njzjz/comparemol/pull/17#issuecomment-1793384132) in [njzjz/comparemol](https://github.com/njzjz/comparemol) -8. 🗣 Commented on [#857](https://github.com/PyThaiNLP/pythainlp/pull/857#issuecomment-1793383139) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube-stuffs/pull/1#issuecomment-1793371287) in [tuhinmallick/youtube-stuffs](https://github.com/tuhinmallick/youtube-stuffs) -10. 🗣 Commented on [#1008](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1008#issuecomment-1793235990) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama.cpp/pull/1#issuecomment-1793578915) in [tuhinmallick/llama.cpp](https://github.com/tuhinmallick/llama.cpp) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-italian/pull/1#issuecomment-1793522941) in [tuhinmallick/clip-italian](https://github.com/tuhinmallick/clip-italian) +5. 🗣 Commented on [#40](https://github.com/OpenFreeEnergy/Lomap/pull/40#issuecomment-1793522782) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/autollm/pull/1#issuecomment-1793453419) in [tuhinmallick/autollm](https://github.com/tuhinmallick/autollm) +7. 🗣 Commented on [#39](https://github.com/OpenFreeEnergy/Lomap/pull/39#issuecomment-1793387932) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +8. 🗣 Commented on [#17](https://github.com/njzjz/comparemol/pull/17#issuecomment-1793384132) in [njzjz/comparemol](https://github.com/njzjz/comparemol) +9. 🗣 Commented on [#857](https://github.com/PyThaiNLP/pythainlp/pull/857#issuecomment-1793383139) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube-stuffs/pull/1#issuecomment-1793371287) in [tuhinmallick/youtube-stuffs](https://github.com/tuhinmallick/youtube-stuffs) From bc0d1b48b594e0c5724631e9c7426139eee561d3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 5 Nov 2023 07:13:23 +0000 Subject: [PATCH 0554/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 390f2620..1cb53956 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama.cpp/pull/1#issuecomment-1793578915) in [tuhinmallick/llama.cpp](https://github.com/tuhinmallick/llama.cpp) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-italian/pull/1#issuecomment-1793522941) in [tuhinmallick/clip-italian](https://github.com/tuhinmallick/clip-italian) -5. 🗣 Commented on [#40](https://github.com/OpenFreeEnergy/Lomap/pull/40#issuecomment-1793522782) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/autollm/pull/1#issuecomment-1793453419) in [tuhinmallick/autollm](https://github.com/tuhinmallick/autollm) -7. 🗣 Commented on [#39](https://github.com/OpenFreeEnergy/Lomap/pull/39#issuecomment-1793387932) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -8. 🗣 Commented on [#17](https://github.com/njzjz/comparemol/pull/17#issuecomment-1793384132) in [njzjz/comparemol](https://github.com/njzjz/comparemol) -9. 🗣 Commented on [#857](https://github.com/PyThaiNLP/pythainlp/pull/857#issuecomment-1793383139) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/youtube-stuffs/pull/1#issuecomment-1793371287) in [tuhinmallick/youtube-stuffs](https://github.com/tuhinmallick/youtube-stuffs) +1. 🗣 Commented on [#1](https://github.com/Advik-B/register/pull/1#issuecomment-1793653425) in [Advik-B/register](https://github.com/Advik-B/register) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama.cpp/pull/1#issuecomment-1793578915) in [tuhinmallick/llama.cpp](https://github.com/tuhinmallick/llama.cpp) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-italian/pull/1#issuecomment-1793522941) in [tuhinmallick/clip-italian](https://github.com/tuhinmallick/clip-italian) +6. 🗣 Commented on [#40](https://github.com/OpenFreeEnergy/Lomap/pull/40#issuecomment-1793522782) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/autollm/pull/1#issuecomment-1793453419) in [tuhinmallick/autollm](https://github.com/tuhinmallick/autollm) +8. 🗣 Commented on [#39](https://github.com/OpenFreeEnergy/Lomap/pull/39#issuecomment-1793387932) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +9. 🗣 Commented on [#17](https://github.com/njzjz/comparemol/pull/17#issuecomment-1793384132) in [njzjz/comparemol](https://github.com/njzjz/comparemol) +10. 🗣 Commented on [#857](https://github.com/PyThaiNLP/pythainlp/pull/857#issuecomment-1793383139) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) From e1781d999b7208a704cf7adb8aa7584ca0b7b948 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 5 Nov 2023 08:18:19 +0000 Subject: [PATCH 0555/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1cb53956..24dbcdee 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/Advik-B/register/pull/1#issuecomment-1793653425) in [Advik-B/register](https://github.com/Advik-B/register) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama.cpp/pull/1#issuecomment-1793578915) in [tuhinmallick/llama.cpp](https://github.com/tuhinmallick/llama.cpp) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-italian/pull/1#issuecomment-1793522941) in [tuhinmallick/clip-italian](https://github.com/tuhinmallick/clip-italian) -6. 🗣 Commented on [#40](https://github.com/OpenFreeEnergy/Lomap/pull/40#issuecomment-1793522782) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/autollm/pull/1#issuecomment-1793453419) in [tuhinmallick/autollm](https://github.com/tuhinmallick/autollm) -8. 🗣 Commented on [#39](https://github.com/OpenFreeEnergy/Lomap/pull/39#issuecomment-1793387932) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -9. 🗣 Commented on [#17](https://github.com/njzjz/comparemol/pull/17#issuecomment-1793384132) in [njzjz/comparemol](https://github.com/njzjz/comparemol) -10. 🗣 Commented on [#857](https://github.com/PyThaiNLP/pythainlp/pull/857#issuecomment-1793383139) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +1. 🗣 Commented on [#4333](https://github.com/MDAnalysis/mdanalysis/pull/4333#issuecomment-1793667621) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#1](https://github.com/Advik-B/register/pull/1#issuecomment-1793653425) in [Advik-B/register](https://github.com/Advik-B/register) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama.cpp/pull/1#issuecomment-1793578915) in [tuhinmallick/llama.cpp](https://github.com/tuhinmallick/llama.cpp) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-italian/pull/1#issuecomment-1793522941) in [tuhinmallick/clip-italian](https://github.com/tuhinmallick/clip-italian) +7. 🗣 Commented on [#40](https://github.com/OpenFreeEnergy/Lomap/pull/40#issuecomment-1793522782) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/autollm/pull/1#issuecomment-1793453419) in [tuhinmallick/autollm](https://github.com/tuhinmallick/autollm) +9. 🗣 Commented on [#39](https://github.com/OpenFreeEnergy/Lomap/pull/39#issuecomment-1793387932) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +10. 🗣 Commented on [#17](https://github.com/njzjz/comparemol/pull/17#issuecomment-1793384132) in [njzjz/comparemol](https://github.com/njzjz/comparemol) From dacb2719a7ca8ed7c2e711c2a045ff25ee121d76 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 5 Nov 2023 10:37:24 +0000 Subject: [PATCH 0556/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 24dbcdee..56118ec2 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4333](https://github.com/MDAnalysis/mdanalysis/pull/4333#issuecomment-1793667621) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#1](https://github.com/Advik-B/register/pull/1#issuecomment-1793653425) in [Advik-B/register](https://github.com/Advik-B/register) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama.cpp/pull/1#issuecomment-1793578915) in [tuhinmallick/llama.cpp](https://github.com/tuhinmallick/llama.cpp) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-italian/pull/1#issuecomment-1793522941) in [tuhinmallick/clip-italian](https://github.com/tuhinmallick/clip-italian) -7. 🗣 Commented on [#40](https://github.com/OpenFreeEnergy/Lomap/pull/40#issuecomment-1793522782) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/autollm/pull/1#issuecomment-1793453419) in [tuhinmallick/autollm](https://github.com/tuhinmallick/autollm) -9. 🗣 Commented on [#39](https://github.com/OpenFreeEnergy/Lomap/pull/39#issuecomment-1793387932) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -10. 🗣 Commented on [#17](https://github.com/njzjz/comparemol/pull/17#issuecomment-1793384132) in [njzjz/comparemol](https://github.com/njzjz/comparemol) +1. 🗣 Commented on [#443](https://github.com/oemof/tespy/pull/443#issuecomment-1793695369) in [oemof/tespy](https://github.com/oemof/tespy) +2. 🗣 Commented on [#4333](https://github.com/MDAnalysis/mdanalysis/pull/4333#issuecomment-1793667621) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#1](https://github.com/Advik-B/register/pull/1#issuecomment-1793653425) in [Advik-B/register](https://github.com/Advik-B/register) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama.cpp/pull/1#issuecomment-1793578915) in [tuhinmallick/llama.cpp](https://github.com/tuhinmallick/llama.cpp) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-italian/pull/1#issuecomment-1793522941) in [tuhinmallick/clip-italian](https://github.com/tuhinmallick/clip-italian) +8. 🗣 Commented on [#40](https://github.com/OpenFreeEnergy/Lomap/pull/40#issuecomment-1793522782) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/autollm/pull/1#issuecomment-1793453419) in [tuhinmallick/autollm](https://github.com/tuhinmallick/autollm) +10. 🗣 Commented on [#39](https://github.com/OpenFreeEnergy/Lomap/pull/39#issuecomment-1793387932) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) From bfb94fbae6c783fe923d6998352a79794f14f341 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 5 Nov 2023 12:28:28 +0000 Subject: [PATCH 0557/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 56118ec2..4e9179e3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#443](https://github.com/oemof/tespy/pull/443#issuecomment-1793695369) in [oemof/tespy](https://github.com/oemof/tespy) -2. 🗣 Commented on [#4333](https://github.com/MDAnalysis/mdanalysis/pull/4333#issuecomment-1793667621) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#1](https://github.com/Advik-B/register/pull/1#issuecomment-1793653425) in [Advik-B/register](https://github.com/Advik-B/register) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama.cpp/pull/1#issuecomment-1793578915) in [tuhinmallick/llama.cpp](https://github.com/tuhinmallick/llama.cpp) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-italian/pull/1#issuecomment-1793522941) in [tuhinmallick/clip-italian](https://github.com/tuhinmallick/clip-italian) -8. 🗣 Commented on [#40](https://github.com/OpenFreeEnergy/Lomap/pull/40#issuecomment-1793522782) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/autollm/pull/1#issuecomment-1793453419) in [tuhinmallick/autollm](https://github.com/tuhinmallick/autollm) -10. 🗣 Commented on [#39](https://github.com/OpenFreeEnergy/Lomap/pull/39#issuecomment-1793387932) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +1. 🗣 Commented on [#4340](https://github.com/MDAnalysis/mdanalysis/pull/4340#issuecomment-1793714745) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#443](https://github.com/oemof/tespy/pull/443#issuecomment-1793695369) in [oemof/tespy](https://github.com/oemof/tespy) +3. 🗣 Commented on [#4333](https://github.com/MDAnalysis/mdanalysis/pull/4333#issuecomment-1793667621) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#1](https://github.com/Advik-B/register/pull/1#issuecomment-1793653425) in [Advik-B/register](https://github.com/Advik-B/register) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama.cpp/pull/1#issuecomment-1793578915) in [tuhinmallick/llama.cpp](https://github.com/tuhinmallick/llama.cpp) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-italian/pull/1#issuecomment-1793522941) in [tuhinmallick/clip-italian](https://github.com/tuhinmallick/clip-italian) +9. 🗣 Commented on [#40](https://github.com/OpenFreeEnergy/Lomap/pull/40#issuecomment-1793522782) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/autollm/pull/1#issuecomment-1793453419) in [tuhinmallick/autollm](https://github.com/tuhinmallick/autollm) From 4246bf9ff64c15dbe7ed7575dbf00f0829198b30 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 5 Nov 2023 19:12:06 +0000 Subject: [PATCH 0558/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4e9179e3..98f9ca48 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4340](https://github.com/MDAnalysis/mdanalysis/pull/4340#issuecomment-1793714745) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#443](https://github.com/oemof/tespy/pull/443#issuecomment-1793695369) in [oemof/tespy](https://github.com/oemof/tespy) -3. 🗣 Commented on [#4333](https://github.com/MDAnalysis/mdanalysis/pull/4333#issuecomment-1793667621) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#1](https://github.com/Advik-B/register/pull/1#issuecomment-1793653425) in [Advik-B/register](https://github.com/Advik-B/register) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama.cpp/pull/1#issuecomment-1793578915) in [tuhinmallick/llama.cpp](https://github.com/tuhinmallick/llama.cpp) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-italian/pull/1#issuecomment-1793522941) in [tuhinmallick/clip-italian](https://github.com/tuhinmallick/clip-italian) -9. 🗣 Commented on [#40](https://github.com/OpenFreeEnergy/Lomap/pull/40#issuecomment-1793522782) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/autollm/pull/1#issuecomment-1793453419) in [tuhinmallick/autollm](https://github.com/tuhinmallick/autollm) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/tiktok-analytics/pull/1#issuecomment-1793819124) in [tuhinmallick/tiktok-analytics](https://github.com/tuhinmallick/tiktok-analytics) +2. 🗣 Commented on [#4340](https://github.com/MDAnalysis/mdanalysis/pull/4340#issuecomment-1793714745) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#443](https://github.com/oemof/tespy/pull/443#issuecomment-1793695369) in [oemof/tespy](https://github.com/oemof/tespy) +4. 🗣 Commented on [#4333](https://github.com/MDAnalysis/mdanalysis/pull/4333#issuecomment-1793667621) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#1](https://github.com/Advik-B/register/pull/1#issuecomment-1793653425) in [Advik-B/register](https://github.com/Advik-B/register) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama.cpp/pull/1#issuecomment-1793578915) in [tuhinmallick/llama.cpp](https://github.com/tuhinmallick/llama.cpp) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-italian/pull/1#issuecomment-1793522941) in [tuhinmallick/clip-italian](https://github.com/tuhinmallick/clip-italian) +10. 🗣 Commented on [#40](https://github.com/OpenFreeEnergy/Lomap/pull/40#issuecomment-1793522782) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) From 4e9bc282beca4afa012a07876d34299925ae19fb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 5 Nov 2023 19:37:10 +0000 Subject: [PATCH 0559/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 98f9ca48..c4f83d6e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/tiktok-analytics/pull/1#issuecomment-1793819124) in [tuhinmallick/tiktok-analytics](https://github.com/tuhinmallick/tiktok-analytics) -2. 🗣 Commented on [#4340](https://github.com/MDAnalysis/mdanalysis/pull/4340#issuecomment-1793714745) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#443](https://github.com/oemof/tespy/pull/443#issuecomment-1793695369) in [oemof/tespy](https://github.com/oemof/tespy) -4. 🗣 Commented on [#4333](https://github.com/MDAnalysis/mdanalysis/pull/4333#issuecomment-1793667621) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#1](https://github.com/Advik-B/register/pull/1#issuecomment-1793653425) in [Advik-B/register](https://github.com/Advik-B/register) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama.cpp/pull/1#issuecomment-1793578915) in [tuhinmallick/llama.cpp](https://github.com/tuhinmallick/llama.cpp) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-italian/pull/1#issuecomment-1793522941) in [tuhinmallick/clip-italian](https://github.com/tuhinmallick/clip-italian) -10. 🗣 Commented on [#40](https://github.com/OpenFreeEnergy/Lomap/pull/40#issuecomment-1793522782) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +1. 🗣 Commented on [#74](https://github.com/MDAnalysis/panedr/pull/74#issuecomment-1793824287) in [MDAnalysis/panedr](https://github.com/MDAnalysis/panedr) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/tiktok-analytics/pull/1#issuecomment-1793819124) in [tuhinmallick/tiktok-analytics](https://github.com/tuhinmallick/tiktok-analytics) +3. 🗣 Commented on [#4340](https://github.com/MDAnalysis/mdanalysis/pull/4340#issuecomment-1793714745) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#443](https://github.com/oemof/tespy/pull/443#issuecomment-1793695369) in [oemof/tespy](https://github.com/oemof/tespy) +5. 🗣 Commented on [#4333](https://github.com/MDAnalysis/mdanalysis/pull/4333#issuecomment-1793667621) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#1](https://github.com/Advik-B/register/pull/1#issuecomment-1793653425) in [Advik-B/register](https://github.com/Advik-B/register) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama.cpp/pull/1#issuecomment-1793578915) in [tuhinmallick/llama.cpp](https://github.com/tuhinmallick/llama.cpp) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-italian/pull/1#issuecomment-1793522941) in [tuhinmallick/clip-italian](https://github.com/tuhinmallick/clip-italian) From cbcb093b262b382edd9e5c133c0bf4c016b42c00 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 5 Nov 2023 20:15:42 +0000 Subject: [PATCH 0560/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c4f83d6e..bf0b5306 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#74](https://github.com/MDAnalysis/panedr/pull/74#issuecomment-1793824287) in [MDAnalysis/panedr](https://github.com/MDAnalysis/panedr) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/tiktok-analytics/pull/1#issuecomment-1793819124) in [tuhinmallick/tiktok-analytics](https://github.com/tuhinmallick/tiktok-analytics) -3. 🗣 Commented on [#4340](https://github.com/MDAnalysis/mdanalysis/pull/4340#issuecomment-1793714745) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#443](https://github.com/oemof/tespy/pull/443#issuecomment-1793695369) in [oemof/tespy](https://github.com/oemof/tespy) -5. 🗣 Commented on [#4333](https://github.com/MDAnalysis/mdanalysis/pull/4333#issuecomment-1793667621) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#1](https://github.com/Advik-B/register/pull/1#issuecomment-1793653425) in [Advik-B/register](https://github.com/Advik-B/register) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama.cpp/pull/1#issuecomment-1793578915) in [tuhinmallick/llama.cpp](https://github.com/tuhinmallick/llama.cpp) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-italian/pull/1#issuecomment-1793522941) in [tuhinmallick/clip-italian](https://github.com/tuhinmallick/clip-italian) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App/pull/1#issuecomment-1793827889) in [tuhinmallick/LIDA-Demo-Streamlit-App](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App) +2. 🗣 Commented on [#74](https://github.com/MDAnalysis/panedr/pull/74#issuecomment-1793824287) in [MDAnalysis/panedr](https://github.com/MDAnalysis/panedr) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/tiktok-analytics/pull/1#issuecomment-1793819124) in [tuhinmallick/tiktok-analytics](https://github.com/tuhinmallick/tiktok-analytics) +4. 🗣 Commented on [#4340](https://github.com/MDAnalysis/mdanalysis/pull/4340#issuecomment-1793714745) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#443](https://github.com/oemof/tespy/pull/443#issuecomment-1793695369) in [oemof/tespy](https://github.com/oemof/tespy) +6. 🗣 Commented on [#4333](https://github.com/MDAnalysis/mdanalysis/pull/4333#issuecomment-1793667621) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#1](https://github.com/Advik-B/register/pull/1#issuecomment-1793653425) in [Advik-B/register](https://github.com/Advik-B/register) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama.cpp/pull/1#issuecomment-1793578915) in [tuhinmallick/llama.cpp](https://github.com/tuhinmallick/llama.cpp) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) From 1926fa8f2fc54af44910912645d4dc3300e50d30 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 01:13:03 +0000 Subject: [PATCH 0561/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bf0b5306..de121b20 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App/pull/1#issuecomment-1793827889) in [tuhinmallick/LIDA-Demo-Streamlit-App](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App) -2. 🗣 Commented on [#74](https://github.com/MDAnalysis/panedr/pull/74#issuecomment-1793824287) in [MDAnalysis/panedr](https://github.com/MDAnalysis/panedr) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/tiktok-analytics/pull/1#issuecomment-1793819124) in [tuhinmallick/tiktok-analytics](https://github.com/tuhinmallick/tiktok-analytics) -4. 🗣 Commented on [#4340](https://github.com/MDAnalysis/mdanalysis/pull/4340#issuecomment-1793714745) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#443](https://github.com/oemof/tespy/pull/443#issuecomment-1793695369) in [oemof/tespy](https://github.com/oemof/tespy) -6. 🗣 Commented on [#4333](https://github.com/MDAnalysis/mdanalysis/pull/4333#issuecomment-1793667621) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#1](https://github.com/Advik-B/register/pull/1#issuecomment-1793653425) in [Advik-B/register](https://github.com/Advik-B/register) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama.cpp/pull/1#issuecomment-1793578915) in [tuhinmallick/llama.cpp](https://github.com/tuhinmallick/llama.cpp) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/InstaloaderScripts/pull/1#issuecomment-1793527682) in [tuhinmallick/InstaloaderScripts](https://github.com/tuhinmallick/InstaloaderScripts) +1. 🗣 Commented on [#17](https://github.com/OpenFreeEnergy/kartograf/pull/17#issuecomment-1793885602) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App/pull/1#issuecomment-1793827889) in [tuhinmallick/LIDA-Demo-Streamlit-App](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App) +3. 🗣 Commented on [#74](https://github.com/MDAnalysis/panedr/pull/74#issuecomment-1793824287) in [MDAnalysis/panedr](https://github.com/MDAnalysis/panedr) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/tiktok-analytics/pull/1#issuecomment-1793819124) in [tuhinmallick/tiktok-analytics](https://github.com/tuhinmallick/tiktok-analytics) +5. 🗣 Commented on [#4340](https://github.com/MDAnalysis/mdanalysis/pull/4340#issuecomment-1793714745) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#443](https://github.com/oemof/tespy/pull/443#issuecomment-1793695369) in [oemof/tespy](https://github.com/oemof/tespy) +7. 🗣 Commented on [#4333](https://github.com/MDAnalysis/mdanalysis/pull/4333#issuecomment-1793667621) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#1](https://github.com/Advik-B/register/pull/1#issuecomment-1793653425) in [Advik-B/register](https://github.com/Advik-B/register) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama.cpp/pull/1#issuecomment-1793578915) in [tuhinmallick/llama.cpp](https://github.com/tuhinmallick/llama.cpp) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) From 0ce379700461c37b93a1e50c5e1f857b90ee700a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 12:33:02 +0000 Subject: [PATCH 0562/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index de121b20..b1936ba7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#17](https://github.com/OpenFreeEnergy/kartograf/pull/17#issuecomment-1793885602) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App/pull/1#issuecomment-1793827889) in [tuhinmallick/LIDA-Demo-Streamlit-App](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App) -3. 🗣 Commented on [#74](https://github.com/MDAnalysis/panedr/pull/74#issuecomment-1793824287) in [MDAnalysis/panedr](https://github.com/MDAnalysis/panedr) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/tiktok-analytics/pull/1#issuecomment-1793819124) in [tuhinmallick/tiktok-analytics](https://github.com/tuhinmallick/tiktok-analytics) -5. 🗣 Commented on [#4340](https://github.com/MDAnalysis/mdanalysis/pull/4340#issuecomment-1793714745) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#443](https://github.com/oemof/tespy/pull/443#issuecomment-1793695369) in [oemof/tespy](https://github.com/oemof/tespy) -7. 🗣 Commented on [#4333](https://github.com/MDAnalysis/mdanalysis/pull/4333#issuecomment-1793667621) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#1](https://github.com/Advik-B/register/pull/1#issuecomment-1793653425) in [Advik-B/register](https://github.com/Advik-B/register) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama.cpp/pull/1#issuecomment-1793578915) in [tuhinmallick/llama.cpp](https://github.com/tuhinmallick/llama.cpp) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/llama-cpp-python/pull/1#issuecomment-1793577177) in [tuhinmallick/llama-cpp-python](https://github.com/tuhinmallick/llama-cpp-python) +1. 🗣 Commented on [#107](https://github.com/OpenFreeEnergy/cinnabar/pull/107#issuecomment-1794694715) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +2. 🗣 Commented on [#8](https://github.com/cirKITers/quantum-siren/pull/8#issuecomment-1794676598) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) +3. 🗣 Commented on [#17](https://github.com/OpenFreeEnergy/kartograf/pull/17#issuecomment-1793885602) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App/pull/1#issuecomment-1793827889) in [tuhinmallick/LIDA-Demo-Streamlit-App](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App) +5. 🗣 Commented on [#74](https://github.com/MDAnalysis/panedr/pull/74#issuecomment-1793824287) in [MDAnalysis/panedr](https://github.com/MDAnalysis/panedr) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/tiktok-analytics/pull/1#issuecomment-1793819124) in [tuhinmallick/tiktok-analytics](https://github.com/tuhinmallick/tiktok-analytics) +7. 🗣 Commented on [#4340](https://github.com/MDAnalysis/mdanalysis/pull/4340#issuecomment-1793714745) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#443](https://github.com/oemof/tespy/pull/443#issuecomment-1793695369) in [oemof/tespy](https://github.com/oemof/tespy) +9. 🗣 Commented on [#4333](https://github.com/MDAnalysis/mdanalysis/pull/4333#issuecomment-1793667621) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#1](https://github.com/Advik-B/register/pull/1#issuecomment-1793653425) in [Advik-B/register](https://github.com/Advik-B/register) From b0a4f9f5900a194801774a0f24c4510c0d4dea3e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 14:15:47 +0000 Subject: [PATCH 0563/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b1936ba7..8328936b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#107](https://github.com/OpenFreeEnergy/cinnabar/pull/107#issuecomment-1794694715) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -2. 🗣 Commented on [#8](https://github.com/cirKITers/quantum-siren/pull/8#issuecomment-1794676598) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) -3. 🗣 Commented on [#17](https://github.com/OpenFreeEnergy/kartograf/pull/17#issuecomment-1793885602) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App/pull/1#issuecomment-1793827889) in [tuhinmallick/LIDA-Demo-Streamlit-App](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App) -5. 🗣 Commented on [#74](https://github.com/MDAnalysis/panedr/pull/74#issuecomment-1793824287) in [MDAnalysis/panedr](https://github.com/MDAnalysis/panedr) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/tiktok-analytics/pull/1#issuecomment-1793819124) in [tuhinmallick/tiktok-analytics](https://github.com/tuhinmallick/tiktok-analytics) -7. 🗣 Commented on [#4340](https://github.com/MDAnalysis/mdanalysis/pull/4340#issuecomment-1793714745) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#443](https://github.com/oemof/tespy/pull/443#issuecomment-1793695369) in [oemof/tespy](https://github.com/oemof/tespy) -9. 🗣 Commented on [#4333](https://github.com/MDAnalysis/mdanalysis/pull/4333#issuecomment-1793667621) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#1](https://github.com/Advik-B/register/pull/1#issuecomment-1793653425) in [Advik-B/register](https://github.com/Advik-B/register) +1. 🗣 Commented on [#21494](https://github.com/spyder-ide/spyder/pull/21494#issuecomment-1794912051) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#213](https://github.com/epfl-theos/koopmans/pull/213#issuecomment-1794901125) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +3. 🗣 Commented on [#488](https://github.com/NeuralEnsemble/elephant/pull/488#issuecomment-1794868424) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +4. 🗣 Commented on [#107](https://github.com/OpenFreeEnergy/cinnabar/pull/107#issuecomment-1794694715) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +5. 🗣 Commented on [#8](https://github.com/cirKITers/quantum-siren/pull/8#issuecomment-1794676598) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) +6. 🗣 Commented on [#17](https://github.com/OpenFreeEnergy/kartograf/pull/17#issuecomment-1793885602) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App/pull/1#issuecomment-1793827889) in [tuhinmallick/LIDA-Demo-Streamlit-App](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App) +8. 🗣 Commented on [#74](https://github.com/MDAnalysis/panedr/pull/74#issuecomment-1793824287) in [MDAnalysis/panedr](https://github.com/MDAnalysis/panedr) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/tiktok-analytics/pull/1#issuecomment-1793819124) in [tuhinmallick/tiktok-analytics](https://github.com/tuhinmallick/tiktok-analytics) +10. 🗣 Commented on [#4340](https://github.com/MDAnalysis/mdanalysis/pull/4340#issuecomment-1793714745) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 559a3609b6111d7cf64eb9521d4f71f128a499f9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 14:38:14 +0000 Subject: [PATCH 0564/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8328936b..c98406b6 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#21494](https://github.com/spyder-ide/spyder/pull/21494#issuecomment-1794912051) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#213](https://github.com/epfl-theos/koopmans/pull/213#issuecomment-1794901125) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -3. 🗣 Commented on [#488](https://github.com/NeuralEnsemble/elephant/pull/488#issuecomment-1794868424) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -4. 🗣 Commented on [#107](https://github.com/OpenFreeEnergy/cinnabar/pull/107#issuecomment-1794694715) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -5. 🗣 Commented on [#8](https://github.com/cirKITers/quantum-siren/pull/8#issuecomment-1794676598) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) -6. 🗣 Commented on [#17](https://github.com/OpenFreeEnergy/kartograf/pull/17#issuecomment-1793885602) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App/pull/1#issuecomment-1793827889) in [tuhinmallick/LIDA-Demo-Streamlit-App](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App) -8. 🗣 Commented on [#74](https://github.com/MDAnalysis/panedr/pull/74#issuecomment-1793824287) in [MDAnalysis/panedr](https://github.com/MDAnalysis/panedr) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/tiktok-analytics/pull/1#issuecomment-1793819124) in [tuhinmallick/tiktok-analytics](https://github.com/tuhinmallick/tiktok-analytics) -10. 🗣 Commented on [#4340](https://github.com/MDAnalysis/mdanalysis/pull/4340#issuecomment-1793714745) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#45](https://github.com/eastgenomics/eris/pull/45#issuecomment-1794961043) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#21494](https://github.com/spyder-ide/spyder/pull/21494#issuecomment-1794912051) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#213](https://github.com/epfl-theos/koopmans/pull/213#issuecomment-1794901125) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +4. 🗣 Commented on [#488](https://github.com/NeuralEnsemble/elephant/pull/488#issuecomment-1794868424) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +5. 🗣 Commented on [#107](https://github.com/OpenFreeEnergy/cinnabar/pull/107#issuecomment-1794694715) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +6. 🗣 Commented on [#8](https://github.com/cirKITers/quantum-siren/pull/8#issuecomment-1794676598) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) +7. 🗣 Commented on [#17](https://github.com/OpenFreeEnergy/kartograf/pull/17#issuecomment-1793885602) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App/pull/1#issuecomment-1793827889) in [tuhinmallick/LIDA-Demo-Streamlit-App](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App) +9. 🗣 Commented on [#74](https://github.com/MDAnalysis/panedr/pull/74#issuecomment-1793824287) in [MDAnalysis/panedr](https://github.com/MDAnalysis/panedr) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/tiktok-analytics/pull/1#issuecomment-1793819124) in [tuhinmallick/tiktok-analytics](https://github.com/tuhinmallick/tiktok-analytics) From c92bdfad67ff5d019b595f6447c5364a4c0905ba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 15:17:47 +0000 Subject: [PATCH 0565/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c98406b6..1bd27293 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#45](https://github.com/eastgenomics/eris/pull/45#issuecomment-1794961043) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#21494](https://github.com/spyder-ide/spyder/pull/21494#issuecomment-1794912051) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#213](https://github.com/epfl-theos/koopmans/pull/213#issuecomment-1794901125) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -4. 🗣 Commented on [#488](https://github.com/NeuralEnsemble/elephant/pull/488#issuecomment-1794868424) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -5. 🗣 Commented on [#107](https://github.com/OpenFreeEnergy/cinnabar/pull/107#issuecomment-1794694715) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -6. 🗣 Commented on [#8](https://github.com/cirKITers/quantum-siren/pull/8#issuecomment-1794676598) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) -7. 🗣 Commented on [#17](https://github.com/OpenFreeEnergy/kartograf/pull/17#issuecomment-1793885602) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App/pull/1#issuecomment-1793827889) in [tuhinmallick/LIDA-Demo-Streamlit-App](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App) -9. 🗣 Commented on [#74](https://github.com/MDAnalysis/panedr/pull/74#issuecomment-1793824287) in [MDAnalysis/panedr](https://github.com/MDAnalysis/panedr) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/tiktok-analytics/pull/1#issuecomment-1793819124) in [tuhinmallick/tiktok-analytics](https://github.com/tuhinmallick/tiktok-analytics) +1. 🗣 Commented on [#137](https://github.com/eastgenomics/dias_batch_running/pull/137#issuecomment-1794983580) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#45](https://github.com/eastgenomics/eris/pull/45#issuecomment-1794961043) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#21494](https://github.com/spyder-ide/spyder/pull/21494#issuecomment-1794912051) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#213](https://github.com/epfl-theos/koopmans/pull/213#issuecomment-1794901125) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +5. 🗣 Commented on [#488](https://github.com/NeuralEnsemble/elephant/pull/488#issuecomment-1794868424) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +6. 🗣 Commented on [#107](https://github.com/OpenFreeEnergy/cinnabar/pull/107#issuecomment-1794694715) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +7. 🗣 Commented on [#8](https://github.com/cirKITers/quantum-siren/pull/8#issuecomment-1794676598) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) +8. 🗣 Commented on [#17](https://github.com/OpenFreeEnergy/kartograf/pull/17#issuecomment-1793885602) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App/pull/1#issuecomment-1793827889) in [tuhinmallick/LIDA-Demo-Streamlit-App](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App) +10. 🗣 Commented on [#74](https://github.com/MDAnalysis/panedr/pull/74#issuecomment-1793824287) in [MDAnalysis/panedr](https://github.com/MDAnalysis/panedr) From 15fe1fc5df224900b8aa07189e7353c330b14dc9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 15:37:36 +0000 Subject: [PATCH 0566/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1bd27293..87f4fae3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#137](https://github.com/eastgenomics/dias_batch_running/pull/137#issuecomment-1794983580) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#45](https://github.com/eastgenomics/eris/pull/45#issuecomment-1794961043) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#21494](https://github.com/spyder-ide/spyder/pull/21494#issuecomment-1794912051) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#213](https://github.com/epfl-theos/koopmans/pull/213#issuecomment-1794901125) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -5. 🗣 Commented on [#488](https://github.com/NeuralEnsemble/elephant/pull/488#issuecomment-1794868424) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -6. 🗣 Commented on [#107](https://github.com/OpenFreeEnergy/cinnabar/pull/107#issuecomment-1794694715) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -7. 🗣 Commented on [#8](https://github.com/cirKITers/quantum-siren/pull/8#issuecomment-1794676598) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) -8. 🗣 Commented on [#17](https://github.com/OpenFreeEnergy/kartograf/pull/17#issuecomment-1793885602) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App/pull/1#issuecomment-1793827889) in [tuhinmallick/LIDA-Demo-Streamlit-App](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App) -10. 🗣 Commented on [#74](https://github.com/MDAnalysis/panedr/pull/74#issuecomment-1793824287) in [MDAnalysis/panedr](https://github.com/MDAnalysis/panedr) +1. 🗣 Commented on [#3776](https://github.com/privacyidea/privacyidea/pull/3776#issuecomment-1795044411) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#137](https://github.com/eastgenomics/dias_batch_running/pull/137#issuecomment-1794983580) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#45](https://github.com/eastgenomics/eris/pull/45#issuecomment-1794961043) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#21494](https://github.com/spyder-ide/spyder/pull/21494#issuecomment-1794912051) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#213](https://github.com/epfl-theos/koopmans/pull/213#issuecomment-1794901125) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +6. 🗣 Commented on [#488](https://github.com/NeuralEnsemble/elephant/pull/488#issuecomment-1794868424) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +7. 🗣 Commented on [#107](https://github.com/OpenFreeEnergy/cinnabar/pull/107#issuecomment-1794694715) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +8. 🗣 Commented on [#8](https://github.com/cirKITers/quantum-siren/pull/8#issuecomment-1794676598) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) +9. 🗣 Commented on [#17](https://github.com/OpenFreeEnergy/kartograf/pull/17#issuecomment-1793885602) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App/pull/1#issuecomment-1793827889) in [tuhinmallick/LIDA-Demo-Streamlit-App](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App) From 1795f70b4ff6cd640dbf2fd0eeeaeb9eb952cd82 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 19:37:10 +0000 Subject: [PATCH 0567/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 87f4fae3..b05bb5f0 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#3776](https://github.com/privacyidea/privacyidea/pull/3776#issuecomment-1795044411) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#137](https://github.com/eastgenomics/dias_batch_running/pull/137#issuecomment-1794983580) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#45](https://github.com/eastgenomics/eris/pull/45#issuecomment-1794961043) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#21494](https://github.com/spyder-ide/spyder/pull/21494#issuecomment-1794912051) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#213](https://github.com/epfl-theos/koopmans/pull/213#issuecomment-1794901125) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -6. 🗣 Commented on [#488](https://github.com/NeuralEnsemble/elephant/pull/488#issuecomment-1794868424) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -7. 🗣 Commented on [#107](https://github.com/OpenFreeEnergy/cinnabar/pull/107#issuecomment-1794694715) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -8. 🗣 Commented on [#8](https://github.com/cirKITers/quantum-siren/pull/8#issuecomment-1794676598) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) -9. 🗣 Commented on [#17](https://github.com/OpenFreeEnergy/kartograf/pull/17#issuecomment-1793885602) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App/pull/1#issuecomment-1793827889) in [tuhinmallick/LIDA-Demo-Streamlit-App](https://github.com/tuhinmallick/LIDA-Demo-Streamlit-App) +1. 🗣 Commented on [#1394](https://github.com/spacetelescope/jwql/pull/1394#issuecomment-1796137391) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#3776](https://github.com/privacyidea/privacyidea/pull/3776#issuecomment-1795044411) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#137](https://github.com/eastgenomics/dias_batch_running/pull/137#issuecomment-1794983580) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +4. 🗣 Commented on [#45](https://github.com/eastgenomics/eris/pull/45#issuecomment-1794961043) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#21494](https://github.com/spyder-ide/spyder/pull/21494#issuecomment-1794912051) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#213](https://github.com/epfl-theos/koopmans/pull/213#issuecomment-1794901125) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +7. 🗣 Commented on [#488](https://github.com/NeuralEnsemble/elephant/pull/488#issuecomment-1794868424) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +8. 🗣 Commented on [#107](https://github.com/OpenFreeEnergy/cinnabar/pull/107#issuecomment-1794694715) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +9. 🗣 Commented on [#8](https://github.com/cirKITers/quantum-siren/pull/8#issuecomment-1794676598) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) +10. 🗣 Commented on [#17](https://github.com/OpenFreeEnergy/kartograf/pull/17#issuecomment-1793885602) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) From d0f27b085b18419c7aec437da4e1b16a3247cb2f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 20:16:43 +0000 Subject: [PATCH 0568/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b05bb5f0..f88045b2 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1394](https://github.com/spacetelescope/jwql/pull/1394#issuecomment-1796137391) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#3776](https://github.com/privacyidea/privacyidea/pull/3776#issuecomment-1795044411) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#137](https://github.com/eastgenomics/dias_batch_running/pull/137#issuecomment-1794983580) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -4. 🗣 Commented on [#45](https://github.com/eastgenomics/eris/pull/45#issuecomment-1794961043) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#21494](https://github.com/spyder-ide/spyder/pull/21494#issuecomment-1794912051) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#213](https://github.com/epfl-theos/koopmans/pull/213#issuecomment-1794901125) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -7. 🗣 Commented on [#488](https://github.com/NeuralEnsemble/elephant/pull/488#issuecomment-1794868424) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -8. 🗣 Commented on [#107](https://github.com/OpenFreeEnergy/cinnabar/pull/107#issuecomment-1794694715) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -9. 🗣 Commented on [#8](https://github.com/cirKITers/quantum-siren/pull/8#issuecomment-1794676598) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) -10. 🗣 Commented on [#17](https://github.com/OpenFreeEnergy/kartograf/pull/17#issuecomment-1793885602) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +1. 🗣 Commented on [#18](https://github.com/gagnonanthony/CCPM/pull/18#issuecomment-1796227664) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +2. 🗣 Commented on [#1394](https://github.com/spacetelescope/jwql/pull/1394#issuecomment-1796137391) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#3776](https://github.com/privacyidea/privacyidea/pull/3776#issuecomment-1795044411) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +4. 🗣 Commented on [#137](https://github.com/eastgenomics/dias_batch_running/pull/137#issuecomment-1794983580) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#45](https://github.com/eastgenomics/eris/pull/45#issuecomment-1794961043) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#21494](https://github.com/spyder-ide/spyder/pull/21494#issuecomment-1794912051) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#213](https://github.com/epfl-theos/koopmans/pull/213#issuecomment-1794901125) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +8. 🗣 Commented on [#488](https://github.com/NeuralEnsemble/elephant/pull/488#issuecomment-1794868424) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +9. 🗣 Commented on [#107](https://github.com/OpenFreeEnergy/cinnabar/pull/107#issuecomment-1794694715) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +10. 🗣 Commented on [#8](https://github.com/cirKITers/quantum-siren/pull/8#issuecomment-1794676598) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) From e3cbc5c8dae4d49a3777b83f66886b5d26c8d357 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 21:13:40 +0000 Subject: [PATCH 0569/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f88045b2..2fec7170 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#18](https://github.com/gagnonanthony/CCPM/pull/18#issuecomment-1796227664) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -2. 🗣 Commented on [#1394](https://github.com/spacetelescope/jwql/pull/1394#issuecomment-1796137391) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#3776](https://github.com/privacyidea/privacyidea/pull/3776#issuecomment-1795044411) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -4. 🗣 Commented on [#137](https://github.com/eastgenomics/dias_batch_running/pull/137#issuecomment-1794983580) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#45](https://github.com/eastgenomics/eris/pull/45#issuecomment-1794961043) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#21494](https://github.com/spyder-ide/spyder/pull/21494#issuecomment-1794912051) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#213](https://github.com/epfl-theos/koopmans/pull/213#issuecomment-1794901125) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -8. 🗣 Commented on [#488](https://github.com/NeuralEnsemble/elephant/pull/488#issuecomment-1794868424) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -9. 🗣 Commented on [#107](https://github.com/OpenFreeEnergy/cinnabar/pull/107#issuecomment-1794694715) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -10. 🗣 Commented on [#8](https://github.com/cirKITers/quantum-siren/pull/8#issuecomment-1794676598) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) +1. 🗣 Commented on [#1195](https://github.com/tableau/connector-plugin-sdk/pull/1195#issuecomment-1796397862) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +2. 🗣 Commented on [#18](https://github.com/gagnonanthony/CCPM/pull/18#issuecomment-1796227664) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +3. 🗣 Commented on [#1394](https://github.com/spacetelescope/jwql/pull/1394#issuecomment-1796137391) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#3776](https://github.com/privacyidea/privacyidea/pull/3776#issuecomment-1795044411) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#137](https://github.com/eastgenomics/dias_batch_running/pull/137#issuecomment-1794983580) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#45](https://github.com/eastgenomics/eris/pull/45#issuecomment-1794961043) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#21494](https://github.com/spyder-ide/spyder/pull/21494#issuecomment-1794912051) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#213](https://github.com/epfl-theos/koopmans/pull/213#issuecomment-1794901125) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +9. 🗣 Commented on [#488](https://github.com/NeuralEnsemble/elephant/pull/488#issuecomment-1794868424) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +10. 🗣 Commented on [#107](https://github.com/OpenFreeEnergy/cinnabar/pull/107#issuecomment-1794694715) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) From 7c62f99c9c19a3af9b73198cb5250f68c7d7da17 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 22:14:43 +0000 Subject: [PATCH 0570/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2fec7170..98aa303c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1195](https://github.com/tableau/connector-plugin-sdk/pull/1195#issuecomment-1796397862) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -2. 🗣 Commented on [#18](https://github.com/gagnonanthony/CCPM/pull/18#issuecomment-1796227664) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -3. 🗣 Commented on [#1394](https://github.com/spacetelescope/jwql/pull/1394#issuecomment-1796137391) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#3776](https://github.com/privacyidea/privacyidea/pull/3776#issuecomment-1795044411) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#137](https://github.com/eastgenomics/dias_batch_running/pull/137#issuecomment-1794983580) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#45](https://github.com/eastgenomics/eris/pull/45#issuecomment-1794961043) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#21494](https://github.com/spyder-ide/spyder/pull/21494#issuecomment-1794912051) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#213](https://github.com/epfl-theos/koopmans/pull/213#issuecomment-1794901125) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -9. 🗣 Commented on [#488](https://github.com/NeuralEnsemble/elephant/pull/488#issuecomment-1794868424) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -10. 🗣 Commented on [#107](https://github.com/OpenFreeEnergy/cinnabar/pull/107#issuecomment-1794694715) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +1. 🗣 Commented on [#253](https://github.com/InvisibleSymbol/rocketwatch/pull/253#issuecomment-1796725220) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +2. 🗣 Commented on [#252](https://github.com/InvisibleSymbol/rocketwatch/pull/252#issuecomment-1796723143) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +3. 🗣 Commented on [#1195](https://github.com/tableau/connector-plugin-sdk/pull/1195#issuecomment-1796397862) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +4. 🗣 Commented on [#18](https://github.com/gagnonanthony/CCPM/pull/18#issuecomment-1796227664) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +5. 🗣 Commented on [#1394](https://github.com/spacetelescope/jwql/pull/1394#issuecomment-1796137391) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#3776](https://github.com/privacyidea/privacyidea/pull/3776#issuecomment-1795044411) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +7. 🗣 Commented on [#137](https://github.com/eastgenomics/dias_batch_running/pull/137#issuecomment-1794983580) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#45](https://github.com/eastgenomics/eris/pull/45#issuecomment-1794961043) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#21494](https://github.com/spyder-ide/spyder/pull/21494#issuecomment-1794912051) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#213](https://github.com/epfl-theos/koopmans/pull/213#issuecomment-1794901125) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) From b57b7a7f53379b9fd2a4a0cf40001db1397bdb35 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Nov 2023 23:15:45 +0000 Subject: [PATCH 0571/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 98aa303c..613cafe9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#253](https://github.com/InvisibleSymbol/rocketwatch/pull/253#issuecomment-1796725220) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -2. 🗣 Commented on [#252](https://github.com/InvisibleSymbol/rocketwatch/pull/252#issuecomment-1796723143) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -3. 🗣 Commented on [#1195](https://github.com/tableau/connector-plugin-sdk/pull/1195#issuecomment-1796397862) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -4. 🗣 Commented on [#18](https://github.com/gagnonanthony/CCPM/pull/18#issuecomment-1796227664) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -5. 🗣 Commented on [#1394](https://github.com/spacetelescope/jwql/pull/1394#issuecomment-1796137391) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#3776](https://github.com/privacyidea/privacyidea/pull/3776#issuecomment-1795044411) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -7. 🗣 Commented on [#137](https://github.com/eastgenomics/dias_batch_running/pull/137#issuecomment-1794983580) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#45](https://github.com/eastgenomics/eris/pull/45#issuecomment-1794961043) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#21494](https://github.com/spyder-ide/spyder/pull/21494#issuecomment-1794912051) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#213](https://github.com/epfl-theos/koopmans/pull/213#issuecomment-1794901125) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/dalle2-in-python/pull/1#issuecomment-1797008537) in [tuhinmallick/dalle2-in-python](https://github.com/tuhinmallick/dalle2-in-python) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/DALLE2-pytorch/pull/1#issuecomment-1797008246) in [tuhinmallick/DALLE2-pytorch](https://github.com/tuhinmallick/DALLE2-pytorch) +3. 🗣 Commented on [#16](https://github.com/gagnonanthony/CCPM/pull/16#issuecomment-1796978262) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +4. 🗣 Commented on [#253](https://github.com/InvisibleSymbol/rocketwatch/pull/253#issuecomment-1796725220) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +5. 🗣 Commented on [#252](https://github.com/InvisibleSymbol/rocketwatch/pull/252#issuecomment-1796723143) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +6. 🗣 Commented on [#1195](https://github.com/tableau/connector-plugin-sdk/pull/1195#issuecomment-1796397862) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +7. 🗣 Commented on [#18](https://github.com/gagnonanthony/CCPM/pull/18#issuecomment-1796227664) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +8. 🗣 Commented on [#1394](https://github.com/spacetelescope/jwql/pull/1394#issuecomment-1796137391) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#3776](https://github.com/privacyidea/privacyidea/pull/3776#issuecomment-1795044411) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#137](https://github.com/eastgenomics/dias_batch_running/pull/137#issuecomment-1794983580) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From 587be9e49cd959d1e72790f708d9ccea107c906f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Nov 2023 01:11:55 +0000 Subject: [PATCH 0572/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 613cafe9..59d9e09b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/dalle2-in-python/pull/1#issuecomment-1797008537) in [tuhinmallick/dalle2-in-python](https://github.com/tuhinmallick/dalle2-in-python) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/DALLE2-pytorch/pull/1#issuecomment-1797008246) in [tuhinmallick/DALLE2-pytorch](https://github.com/tuhinmallick/DALLE2-pytorch) -3. 🗣 Commented on [#16](https://github.com/gagnonanthony/CCPM/pull/16#issuecomment-1796978262) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -4. 🗣 Commented on [#253](https://github.com/InvisibleSymbol/rocketwatch/pull/253#issuecomment-1796725220) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -5. 🗣 Commented on [#252](https://github.com/InvisibleSymbol/rocketwatch/pull/252#issuecomment-1796723143) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -6. 🗣 Commented on [#1195](https://github.com/tableau/connector-plugin-sdk/pull/1195#issuecomment-1796397862) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -7. 🗣 Commented on [#18](https://github.com/gagnonanthony/CCPM/pull/18#issuecomment-1796227664) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -8. 🗣 Commented on [#1394](https://github.com/spacetelescope/jwql/pull/1394#issuecomment-1796137391) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#3776](https://github.com/privacyidea/privacyidea/pull/3776#issuecomment-1795044411) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#137](https://github.com/eastgenomics/dias_batch_running/pull/137#issuecomment-1794983580) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#1049](https://github.com/yeatmanlab/pyAFQ/pull/1049#issuecomment-1797062354) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Rembg-Online/pull/1#issuecomment-1797040038) in [tuhinmallick/Rembg-Online](https://github.com/tuhinmallick/Rembg-Online) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/BackgroundRemoval/pull/1#issuecomment-1797037672) in [tuhinmallick/BackgroundRemoval](https://github.com/tuhinmallick/BackgroundRemoval) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/dalle2-in-python/pull/1#issuecomment-1797008537) in [tuhinmallick/dalle2-in-python](https://github.com/tuhinmallick/dalle2-in-python) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/DALLE2-pytorch/pull/1#issuecomment-1797008246) in [tuhinmallick/DALLE2-pytorch](https://github.com/tuhinmallick/DALLE2-pytorch) +6. 🗣 Commented on [#16](https://github.com/gagnonanthony/CCPM/pull/16#issuecomment-1796978262) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +7. 🗣 Commented on [#253](https://github.com/InvisibleSymbol/rocketwatch/pull/253#issuecomment-1796725220) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +8. 🗣 Commented on [#252](https://github.com/InvisibleSymbol/rocketwatch/pull/252#issuecomment-1796723143) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +9. 🗣 Commented on [#1195](https://github.com/tableau/connector-plugin-sdk/pull/1195#issuecomment-1796397862) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +10. 🗣 Commented on [#18](https://github.com/gagnonanthony/CCPM/pull/18#issuecomment-1796227664) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) From d5eb06b83b396dccd036d727565703162046edbd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Nov 2023 02:07:16 +0000 Subject: [PATCH 0573/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 59d9e09b..ae2d38a9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1049](https://github.com/yeatmanlab/pyAFQ/pull/1049#issuecomment-1797062354) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Rembg-Online/pull/1#issuecomment-1797040038) in [tuhinmallick/Rembg-Online](https://github.com/tuhinmallick/Rembg-Online) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/BackgroundRemoval/pull/1#issuecomment-1797037672) in [tuhinmallick/BackgroundRemoval](https://github.com/tuhinmallick/BackgroundRemoval) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/dalle2-in-python/pull/1#issuecomment-1797008537) in [tuhinmallick/dalle2-in-python](https://github.com/tuhinmallick/dalle2-in-python) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/DALLE2-pytorch/pull/1#issuecomment-1797008246) in [tuhinmallick/DALLE2-pytorch](https://github.com/tuhinmallick/DALLE2-pytorch) -6. 🗣 Commented on [#16](https://github.com/gagnonanthony/CCPM/pull/16#issuecomment-1796978262) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -7. 🗣 Commented on [#253](https://github.com/InvisibleSymbol/rocketwatch/pull/253#issuecomment-1796725220) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -8. 🗣 Commented on [#252](https://github.com/InvisibleSymbol/rocketwatch/pull/252#issuecomment-1796723143) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -9. 🗣 Commented on [#1195](https://github.com/tableau/connector-plugin-sdk/pull/1195#issuecomment-1796397862) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -10. 🗣 Commented on [#18](https://github.com/gagnonanthony/CCPM/pull/18#issuecomment-1796227664) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +1. 🗣 Commented on [#256](https://github.com/InvisibleSymbol/rocketwatch/pull/256#issuecomment-1797121689) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +2. 🗣 Commented on [#255](https://github.com/InvisibleSymbol/rocketwatch/pull/255#issuecomment-1797121561) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +3. 🗣 Commented on [#1049](https://github.com/yeatmanlab/pyAFQ/pull/1049#issuecomment-1797062354) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Rembg-Online/pull/1#issuecomment-1797040038) in [tuhinmallick/Rembg-Online](https://github.com/tuhinmallick/Rembg-Online) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/BackgroundRemoval/pull/1#issuecomment-1797037672) in [tuhinmallick/BackgroundRemoval](https://github.com/tuhinmallick/BackgroundRemoval) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/dalle2-in-python/pull/1#issuecomment-1797008537) in [tuhinmallick/dalle2-in-python](https://github.com/tuhinmallick/dalle2-in-python) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/DALLE2-pytorch/pull/1#issuecomment-1797008246) in [tuhinmallick/DALLE2-pytorch](https://github.com/tuhinmallick/DALLE2-pytorch) +8. 🗣 Commented on [#16](https://github.com/gagnonanthony/CCPM/pull/16#issuecomment-1796978262) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +9. 🗣 Commented on [#253](https://github.com/InvisibleSymbol/rocketwatch/pull/253#issuecomment-1796725220) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +10. 🗣 Commented on [#252](https://github.com/InvisibleSymbol/rocketwatch/pull/252#issuecomment-1796723143) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) From 464738969c9ee36daac08f6348c6ebae948d4034 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Nov 2023 11:13:01 +0000 Subject: [PATCH 0574/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ae2d38a9..6c0ac847 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#256](https://github.com/InvisibleSymbol/rocketwatch/pull/256#issuecomment-1797121689) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -2. 🗣 Commented on [#255](https://github.com/InvisibleSymbol/rocketwatch/pull/255#issuecomment-1797121561) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -3. 🗣 Commented on [#1049](https://github.com/yeatmanlab/pyAFQ/pull/1049#issuecomment-1797062354) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Rembg-Online/pull/1#issuecomment-1797040038) in [tuhinmallick/Rembg-Online](https://github.com/tuhinmallick/Rembg-Online) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/BackgroundRemoval/pull/1#issuecomment-1797037672) in [tuhinmallick/BackgroundRemoval](https://github.com/tuhinmallick/BackgroundRemoval) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/dalle2-in-python/pull/1#issuecomment-1797008537) in [tuhinmallick/dalle2-in-python](https://github.com/tuhinmallick/dalle2-in-python) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/DALLE2-pytorch/pull/1#issuecomment-1797008246) in [tuhinmallick/DALLE2-pytorch](https://github.com/tuhinmallick/DALLE2-pytorch) -8. 🗣 Commented on [#16](https://github.com/gagnonanthony/CCPM/pull/16#issuecomment-1796978262) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -9. 🗣 Commented on [#253](https://github.com/InvisibleSymbol/rocketwatch/pull/253#issuecomment-1796725220) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -10. 🗣 Commented on [#252](https://github.com/InvisibleSymbol/rocketwatch/pull/252#issuecomment-1796723143) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/segment-anything/pull/1#issuecomment-1798255769) in [tuhinmallick/segment-anything](https://github.com/tuhinmallick/segment-anything) +2. 🗣 Commented on [#256](https://github.com/InvisibleSymbol/rocketwatch/pull/256#issuecomment-1797121689) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +3. 🗣 Commented on [#255](https://github.com/InvisibleSymbol/rocketwatch/pull/255#issuecomment-1797121561) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +4. 🗣 Commented on [#1049](https://github.com/yeatmanlab/pyAFQ/pull/1049#issuecomment-1797062354) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Rembg-Online/pull/1#issuecomment-1797040038) in [tuhinmallick/Rembg-Online](https://github.com/tuhinmallick/Rembg-Online) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/BackgroundRemoval/pull/1#issuecomment-1797037672) in [tuhinmallick/BackgroundRemoval](https://github.com/tuhinmallick/BackgroundRemoval) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/dalle2-in-python/pull/1#issuecomment-1797008537) in [tuhinmallick/dalle2-in-python](https://github.com/tuhinmallick/dalle2-in-python) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/DALLE2-pytorch/pull/1#issuecomment-1797008246) in [tuhinmallick/DALLE2-pytorch](https://github.com/tuhinmallick/DALLE2-pytorch) +9. 🗣 Commented on [#16](https://github.com/gagnonanthony/CCPM/pull/16#issuecomment-1796978262) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +10. 🗣 Commented on [#253](https://github.com/InvisibleSymbol/rocketwatch/pull/253#issuecomment-1796725220) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) From ddb7fa139b8d645de04ee28c9962dd16e2f0c589 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Nov 2023 12:30:54 +0000 Subject: [PATCH 0575/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6c0ac847..cc850de0 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/segment-anything/pull/1#issuecomment-1798255769) in [tuhinmallick/segment-anything](https://github.com/tuhinmallick/segment-anything) -2. 🗣 Commented on [#256](https://github.com/InvisibleSymbol/rocketwatch/pull/256#issuecomment-1797121689) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -3. 🗣 Commented on [#255](https://github.com/InvisibleSymbol/rocketwatch/pull/255#issuecomment-1797121561) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -4. 🗣 Commented on [#1049](https://github.com/yeatmanlab/pyAFQ/pull/1049#issuecomment-1797062354) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Rembg-Online/pull/1#issuecomment-1797040038) in [tuhinmallick/Rembg-Online](https://github.com/tuhinmallick/Rembg-Online) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/BackgroundRemoval/pull/1#issuecomment-1797037672) in [tuhinmallick/BackgroundRemoval](https://github.com/tuhinmallick/BackgroundRemoval) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/dalle2-in-python/pull/1#issuecomment-1797008537) in [tuhinmallick/dalle2-in-python](https://github.com/tuhinmallick/dalle2-in-python) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/DALLE2-pytorch/pull/1#issuecomment-1797008246) in [tuhinmallick/DALLE2-pytorch](https://github.com/tuhinmallick/DALLE2-pytorch) -9. 🗣 Commented on [#16](https://github.com/gagnonanthony/CCPM/pull/16#issuecomment-1796978262) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -10. 🗣 Commented on [#253](https://github.com/InvisibleSymbol/rocketwatch/pull/253#issuecomment-1796725220) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +1. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798349602) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/segment-anything/pull/1#issuecomment-1798255769) in [tuhinmallick/segment-anything](https://github.com/tuhinmallick/segment-anything) +3. 🗣 Commented on [#256](https://github.com/InvisibleSymbol/rocketwatch/pull/256#issuecomment-1797121689) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +4. 🗣 Commented on [#255](https://github.com/InvisibleSymbol/rocketwatch/pull/255#issuecomment-1797121561) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +5. 🗣 Commented on [#1049](https://github.com/yeatmanlab/pyAFQ/pull/1049#issuecomment-1797062354) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Rembg-Online/pull/1#issuecomment-1797040038) in [tuhinmallick/Rembg-Online](https://github.com/tuhinmallick/Rembg-Online) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/BackgroundRemoval/pull/1#issuecomment-1797037672) in [tuhinmallick/BackgroundRemoval](https://github.com/tuhinmallick/BackgroundRemoval) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/dalle2-in-python/pull/1#issuecomment-1797008537) in [tuhinmallick/dalle2-in-python](https://github.com/tuhinmallick/dalle2-in-python) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/DALLE2-pytorch/pull/1#issuecomment-1797008246) in [tuhinmallick/DALLE2-pytorch](https://github.com/tuhinmallick/DALLE2-pytorch) +10. 🗣 Commented on [#16](https://github.com/gagnonanthony/CCPM/pull/16#issuecomment-1796978262) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) From e7a37997762787616f7589d2fd8a06e8056ee084 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Nov 2023 14:37:18 +0000 Subject: [PATCH 0576/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cc850de0..eb23cdb1 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798349602) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/segment-anything/pull/1#issuecomment-1798255769) in [tuhinmallick/segment-anything](https://github.com/tuhinmallick/segment-anything) -3. 🗣 Commented on [#256](https://github.com/InvisibleSymbol/rocketwatch/pull/256#issuecomment-1797121689) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -4. 🗣 Commented on [#255](https://github.com/InvisibleSymbol/rocketwatch/pull/255#issuecomment-1797121561) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -5. 🗣 Commented on [#1049](https://github.com/yeatmanlab/pyAFQ/pull/1049#issuecomment-1797062354) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Rembg-Online/pull/1#issuecomment-1797040038) in [tuhinmallick/Rembg-Online](https://github.com/tuhinmallick/Rembg-Online) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/BackgroundRemoval/pull/1#issuecomment-1797037672) in [tuhinmallick/BackgroundRemoval](https://github.com/tuhinmallick/BackgroundRemoval) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/dalle2-in-python/pull/1#issuecomment-1797008537) in [tuhinmallick/dalle2-in-python](https://github.com/tuhinmallick/dalle2-in-python) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/DALLE2-pytorch/pull/1#issuecomment-1797008246) in [tuhinmallick/DALLE2-pytorch](https://github.com/tuhinmallick/DALLE2-pytorch) -10. 🗣 Commented on [#16](https://github.com/gagnonanthony/CCPM/pull/16#issuecomment-1796978262) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +1. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798620233) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +2. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798349602) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/segment-anything/pull/1#issuecomment-1798255769) in [tuhinmallick/segment-anything](https://github.com/tuhinmallick/segment-anything) +4. 🗣 Commented on [#256](https://github.com/InvisibleSymbol/rocketwatch/pull/256#issuecomment-1797121689) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +5. 🗣 Commented on [#255](https://github.com/InvisibleSymbol/rocketwatch/pull/255#issuecomment-1797121561) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +6. 🗣 Commented on [#1049](https://github.com/yeatmanlab/pyAFQ/pull/1049#issuecomment-1797062354) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Rembg-Online/pull/1#issuecomment-1797040038) in [tuhinmallick/Rembg-Online](https://github.com/tuhinmallick/Rembg-Online) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/BackgroundRemoval/pull/1#issuecomment-1797037672) in [tuhinmallick/BackgroundRemoval](https://github.com/tuhinmallick/BackgroundRemoval) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/dalle2-in-python/pull/1#issuecomment-1797008537) in [tuhinmallick/dalle2-in-python](https://github.com/tuhinmallick/dalle2-in-python) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/DALLE2-pytorch/pull/1#issuecomment-1797008246) in [tuhinmallick/DALLE2-pytorch](https://github.com/tuhinmallick/DALLE2-pytorch) From 5bfd0d83559107e85f3c4442fefa05258c67a032 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Nov 2023 20:37:27 +0000 Subject: [PATCH 0577/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index eb23cdb1..d4af6260 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798620233) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -2. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798349602) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/segment-anything/pull/1#issuecomment-1798255769) in [tuhinmallick/segment-anything](https://github.com/tuhinmallick/segment-anything) -4. 🗣 Commented on [#256](https://github.com/InvisibleSymbol/rocketwatch/pull/256#issuecomment-1797121689) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -5. 🗣 Commented on [#255](https://github.com/InvisibleSymbol/rocketwatch/pull/255#issuecomment-1797121561) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -6. 🗣 Commented on [#1049](https://github.com/yeatmanlab/pyAFQ/pull/1049#issuecomment-1797062354) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Rembg-Online/pull/1#issuecomment-1797040038) in [tuhinmallick/Rembg-Online](https://github.com/tuhinmallick/Rembg-Online) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/BackgroundRemoval/pull/1#issuecomment-1797037672) in [tuhinmallick/BackgroundRemoval](https://github.com/tuhinmallick/BackgroundRemoval) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/dalle2-in-python/pull/1#issuecomment-1797008537) in [tuhinmallick/dalle2-in-python](https://github.com/tuhinmallick/dalle2-in-python) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/DALLE2-pytorch/pull/1#issuecomment-1797008246) in [tuhinmallick/DALLE2-pytorch](https://github.com/tuhinmallick/DALLE2-pytorch) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/autoxgb/pull/1#issuecomment-1799930433) in [tuhinmallick/autoxgb](https://github.com/tuhinmallick/autoxgb) +2. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798620233) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +3. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798349602) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/segment-anything/pull/1#issuecomment-1798255769) in [tuhinmallick/segment-anything](https://github.com/tuhinmallick/segment-anything) +5. 🗣 Commented on [#256](https://github.com/InvisibleSymbol/rocketwatch/pull/256#issuecomment-1797121689) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +6. 🗣 Commented on [#255](https://github.com/InvisibleSymbol/rocketwatch/pull/255#issuecomment-1797121561) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +7. 🗣 Commented on [#1049](https://github.com/yeatmanlab/pyAFQ/pull/1049#issuecomment-1797062354) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Rembg-Online/pull/1#issuecomment-1797040038) in [tuhinmallick/Rembg-Online](https://github.com/tuhinmallick/Rembg-Online) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/BackgroundRemoval/pull/1#issuecomment-1797037672) in [tuhinmallick/BackgroundRemoval](https://github.com/tuhinmallick/BackgroundRemoval) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/dalle2-in-python/pull/1#issuecomment-1797008537) in [tuhinmallick/dalle2-in-python](https://github.com/tuhinmallick/dalle2-in-python) From de7cd68752e2346ff7bb2ad78a278ac018a52c70 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Nov 2023 21:13:40 +0000 Subject: [PATCH 0578/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d4af6260..346fcce7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/autoxgb/pull/1#issuecomment-1799930433) in [tuhinmallick/autoxgb](https://github.com/tuhinmallick/autoxgb) -2. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798620233) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -3. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798349602) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/segment-anything/pull/1#issuecomment-1798255769) in [tuhinmallick/segment-anything](https://github.com/tuhinmallick/segment-anything) -5. 🗣 Commented on [#256](https://github.com/InvisibleSymbol/rocketwatch/pull/256#issuecomment-1797121689) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -6. 🗣 Commented on [#255](https://github.com/InvisibleSymbol/rocketwatch/pull/255#issuecomment-1797121561) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -7. 🗣 Commented on [#1049](https://github.com/yeatmanlab/pyAFQ/pull/1049#issuecomment-1797062354) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Rembg-Online/pull/1#issuecomment-1797040038) in [tuhinmallick/Rembg-Online](https://github.com/tuhinmallick/Rembg-Online) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/BackgroundRemoval/pull/1#issuecomment-1797037672) in [tuhinmallick/BackgroundRemoval](https://github.com/tuhinmallick/BackgroundRemoval) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/dalle2-in-python/pull/1#issuecomment-1797008537) in [tuhinmallick/dalle2-in-python](https://github.com/tuhinmallick/dalle2-in-python) +1. 🗣 Commented on [#804](https://github.com/scilus/scilpy/pull/804#issuecomment-1800119191) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/autoxgb/pull/1#issuecomment-1799930433) in [tuhinmallick/autoxgb](https://github.com/tuhinmallick/autoxgb) +3. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798620233) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +4. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798349602) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/segment-anything/pull/1#issuecomment-1798255769) in [tuhinmallick/segment-anything](https://github.com/tuhinmallick/segment-anything) +6. 🗣 Commented on [#256](https://github.com/InvisibleSymbol/rocketwatch/pull/256#issuecomment-1797121689) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +7. 🗣 Commented on [#255](https://github.com/InvisibleSymbol/rocketwatch/pull/255#issuecomment-1797121561) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +8. 🗣 Commented on [#1049](https://github.com/yeatmanlab/pyAFQ/pull/1049#issuecomment-1797062354) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Rembg-Online/pull/1#issuecomment-1797040038) in [tuhinmallick/Rembg-Online](https://github.com/tuhinmallick/Rembg-Online) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/BackgroundRemoval/pull/1#issuecomment-1797037672) in [tuhinmallick/BackgroundRemoval](https://github.com/tuhinmallick/BackgroundRemoval) From df3ba8ebaffb80abc38dca63ee1cf51b2fb66680 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Nov 2023 01:10:58 +0000 Subject: [PATCH 0579/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 346fcce7..ea4e6e2c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#804](https://github.com/scilus/scilpy/pull/804#issuecomment-1800119191) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/autoxgb/pull/1#issuecomment-1799930433) in [tuhinmallick/autoxgb](https://github.com/tuhinmallick/autoxgb) -3. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798620233) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -4. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798349602) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/segment-anything/pull/1#issuecomment-1798255769) in [tuhinmallick/segment-anything](https://github.com/tuhinmallick/segment-anything) -6. 🗣 Commented on [#256](https://github.com/InvisibleSymbol/rocketwatch/pull/256#issuecomment-1797121689) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -7. 🗣 Commented on [#255](https://github.com/InvisibleSymbol/rocketwatch/pull/255#issuecomment-1797121561) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -8. 🗣 Commented on [#1049](https://github.com/yeatmanlab/pyAFQ/pull/1049#issuecomment-1797062354) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Rembg-Online/pull/1#issuecomment-1797040038) in [tuhinmallick/Rembg-Online](https://github.com/tuhinmallick/Rembg-Online) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/BackgroundRemoval/pull/1#issuecomment-1797037672) in [tuhinmallick/BackgroundRemoval](https://github.com/tuhinmallick/BackgroundRemoval) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog-sdxl-inpainting/pull/1#issuecomment-1800838165) in [tuhinmallick/cog-sdxl-inpainting](https://github.com/tuhinmallick/cog-sdxl-inpainting) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Chat2VIS_Streamlit/pull/1#issuecomment-1800803934) in [tuhinmallick/Chat2VIS_Streamlit](https://github.com/tuhinmallick/Chat2VIS_Streamlit) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/stable-diffusion/pull/1#issuecomment-1800731969) in [tuhinmallick/stable-diffusion](https://github.com/tuhinmallick/stable-diffusion) +4. 🗣 Commented on [#804](https://github.com/scilus/scilpy/pull/804#issuecomment-1800119191) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/autoxgb/pull/1#issuecomment-1799930433) in [tuhinmallick/autoxgb](https://github.com/tuhinmallick/autoxgb) +6. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798620233) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +7. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798349602) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/segment-anything/pull/1#issuecomment-1798255769) in [tuhinmallick/segment-anything](https://github.com/tuhinmallick/segment-anything) +9. 🗣 Commented on [#256](https://github.com/InvisibleSymbol/rocketwatch/pull/256#issuecomment-1797121689) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +10. 🗣 Commented on [#255](https://github.com/InvisibleSymbol/rocketwatch/pull/255#issuecomment-1797121561) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) From e7d7783772195393507753a83556c7867c1906a2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Nov 2023 02:06:23 +0000 Subject: [PATCH 0580/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ea4e6e2c..f38f8270 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog-sdxl-inpainting/pull/1#issuecomment-1800838165) in [tuhinmallick/cog-sdxl-inpainting](https://github.com/tuhinmallick/cog-sdxl-inpainting) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Chat2VIS_Streamlit/pull/1#issuecomment-1800803934) in [tuhinmallick/Chat2VIS_Streamlit](https://github.com/tuhinmallick/Chat2VIS_Streamlit) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/stable-diffusion/pull/1#issuecomment-1800731969) in [tuhinmallick/stable-diffusion](https://github.com/tuhinmallick/stable-diffusion) -4. 🗣 Commented on [#804](https://github.com/scilus/scilpy/pull/804#issuecomment-1800119191) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/autoxgb/pull/1#issuecomment-1799930433) in [tuhinmallick/autoxgb](https://github.com/tuhinmallick/autoxgb) -6. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798620233) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -7. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798349602) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/segment-anything/pull/1#issuecomment-1798255769) in [tuhinmallick/segment-anything](https://github.com/tuhinmallick/segment-anything) -9. 🗣 Commented on [#256](https://github.com/InvisibleSymbol/rocketwatch/pull/256#issuecomment-1797121689) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -10. 🗣 Commented on [#255](https://github.com/InvisibleSymbol/rocketwatch/pull/255#issuecomment-1797121561) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLM-groundedDiffusion/pull/1#issuecomment-1800884086) in [tuhinmallick/LLM-groundedDiffusion](https://github.com/tuhinmallick/LLM-groundedDiffusion) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/stablediffusion/pull/1#issuecomment-1800850644) in [tuhinmallick/stablediffusion](https://github.com/tuhinmallick/stablediffusion) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/bark/pull/1#issuecomment-1800846715) in [tuhinmallick/bark](https://github.com/tuhinmallick/bark) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Hotshot-XL/pull/1#issuecomment-1800845113) in [tuhinmallick/Hotshot-XL](https://github.com/tuhinmallick/Hotshot-XL) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog-sdxl-inpainting/pull/1#issuecomment-1800838165) in [tuhinmallick/cog-sdxl-inpainting](https://github.com/tuhinmallick/cog-sdxl-inpainting) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Chat2VIS_Streamlit/pull/1#issuecomment-1800803934) in [tuhinmallick/Chat2VIS_Streamlit](https://github.com/tuhinmallick/Chat2VIS_Streamlit) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/stable-diffusion/pull/1#issuecomment-1800731969) in [tuhinmallick/stable-diffusion](https://github.com/tuhinmallick/stable-diffusion) +8. 🗣 Commented on [#804](https://github.com/scilus/scilpy/pull/804#issuecomment-1800119191) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/autoxgb/pull/1#issuecomment-1799930433) in [tuhinmallick/autoxgb](https://github.com/tuhinmallick/autoxgb) +10. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798620233) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) From 7d1631f810580e86cd8f6b72897e45f3032a9883 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Nov 2023 08:20:07 +0000 Subject: [PATCH 0581/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f38f8270..da6b2b17 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLM-groundedDiffusion/pull/1#issuecomment-1800884086) in [tuhinmallick/LLM-groundedDiffusion](https://github.com/tuhinmallick/LLM-groundedDiffusion) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/stablediffusion/pull/1#issuecomment-1800850644) in [tuhinmallick/stablediffusion](https://github.com/tuhinmallick/stablediffusion) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/bark/pull/1#issuecomment-1800846715) in [tuhinmallick/bark](https://github.com/tuhinmallick/bark) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Hotshot-XL/pull/1#issuecomment-1800845113) in [tuhinmallick/Hotshot-XL](https://github.com/tuhinmallick/Hotshot-XL) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog-sdxl-inpainting/pull/1#issuecomment-1800838165) in [tuhinmallick/cog-sdxl-inpainting](https://github.com/tuhinmallick/cog-sdxl-inpainting) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Chat2VIS_Streamlit/pull/1#issuecomment-1800803934) in [tuhinmallick/Chat2VIS_Streamlit](https://github.com/tuhinmallick/Chat2VIS_Streamlit) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/stable-diffusion/pull/1#issuecomment-1800731969) in [tuhinmallick/stable-diffusion](https://github.com/tuhinmallick/stable-diffusion) -8. 🗣 Commented on [#804](https://github.com/scilus/scilpy/pull/804#issuecomment-1800119191) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/autoxgb/pull/1#issuecomment-1799930433) in [tuhinmallick/autoxgb](https://github.com/tuhinmallick/autoxgb) -10. 🗣 Commented on [#2048](https://github.com/OpenSCAP/openscap/pull/2048#issuecomment-1798620233) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +1. 🗣 Commented on [#933](https://github.com/avaframe/AvaFrame/pull/933#issuecomment-1801271161) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLM-groundedDiffusion/pull/1#issuecomment-1800884086) in [tuhinmallick/LLM-groundedDiffusion](https://github.com/tuhinmallick/LLM-groundedDiffusion) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/stablediffusion/pull/1#issuecomment-1800850644) in [tuhinmallick/stablediffusion](https://github.com/tuhinmallick/stablediffusion) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/bark/pull/1#issuecomment-1800846715) in [tuhinmallick/bark](https://github.com/tuhinmallick/bark) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Hotshot-XL/pull/1#issuecomment-1800845113) in [tuhinmallick/Hotshot-XL](https://github.com/tuhinmallick/Hotshot-XL) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog-sdxl-inpainting/pull/1#issuecomment-1800838165) in [tuhinmallick/cog-sdxl-inpainting](https://github.com/tuhinmallick/cog-sdxl-inpainting) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Chat2VIS_Streamlit/pull/1#issuecomment-1800803934) in [tuhinmallick/Chat2VIS_Streamlit](https://github.com/tuhinmallick/Chat2VIS_Streamlit) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/stable-diffusion/pull/1#issuecomment-1800731969) in [tuhinmallick/stable-diffusion](https://github.com/tuhinmallick/stable-diffusion) +9. 🗣 Commented on [#804](https://github.com/scilus/scilpy/pull/804#issuecomment-1800119191) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/autoxgb/pull/1#issuecomment-1799930433) in [tuhinmallick/autoxgb](https://github.com/tuhinmallick/autoxgb) From 011c6f4009661b8d51e848991b1f7432fe201875 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Nov 2023 11:13:04 +0000 Subject: [PATCH 0582/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index da6b2b17..909e1fa7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#933](https://github.com/avaframe/AvaFrame/pull/933#issuecomment-1801271161) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLM-groundedDiffusion/pull/1#issuecomment-1800884086) in [tuhinmallick/LLM-groundedDiffusion](https://github.com/tuhinmallick/LLM-groundedDiffusion) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/stablediffusion/pull/1#issuecomment-1800850644) in [tuhinmallick/stablediffusion](https://github.com/tuhinmallick/stablediffusion) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/bark/pull/1#issuecomment-1800846715) in [tuhinmallick/bark](https://github.com/tuhinmallick/bark) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Hotshot-XL/pull/1#issuecomment-1800845113) in [tuhinmallick/Hotshot-XL](https://github.com/tuhinmallick/Hotshot-XL) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog-sdxl-inpainting/pull/1#issuecomment-1800838165) in [tuhinmallick/cog-sdxl-inpainting](https://github.com/tuhinmallick/cog-sdxl-inpainting) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Chat2VIS_Streamlit/pull/1#issuecomment-1800803934) in [tuhinmallick/Chat2VIS_Streamlit](https://github.com/tuhinmallick/Chat2VIS_Streamlit) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/stable-diffusion/pull/1#issuecomment-1800731969) in [tuhinmallick/stable-diffusion](https://github.com/tuhinmallick/stable-diffusion) -9. 🗣 Commented on [#804](https://github.com/scilus/scilpy/pull/804#issuecomment-1800119191) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/autoxgb/pull/1#issuecomment-1799930433) in [tuhinmallick/autoxgb](https://github.com/tuhinmallick/autoxgb) +1. 🗣 Commented on [#871](https://github.com/ToFuProject/tofu/pull/871#issuecomment-1801592882) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#933](https://github.com/avaframe/AvaFrame/pull/933#issuecomment-1801271161) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLM-groundedDiffusion/pull/1#issuecomment-1800884086) in [tuhinmallick/LLM-groundedDiffusion](https://github.com/tuhinmallick/LLM-groundedDiffusion) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/stablediffusion/pull/1#issuecomment-1800850644) in [tuhinmallick/stablediffusion](https://github.com/tuhinmallick/stablediffusion) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/bark/pull/1#issuecomment-1800846715) in [tuhinmallick/bark](https://github.com/tuhinmallick/bark) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Hotshot-XL/pull/1#issuecomment-1800845113) in [tuhinmallick/Hotshot-XL](https://github.com/tuhinmallick/Hotshot-XL) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog-sdxl-inpainting/pull/1#issuecomment-1800838165) in [tuhinmallick/cog-sdxl-inpainting](https://github.com/tuhinmallick/cog-sdxl-inpainting) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Chat2VIS_Streamlit/pull/1#issuecomment-1800803934) in [tuhinmallick/Chat2VIS_Streamlit](https://github.com/tuhinmallick/Chat2VIS_Streamlit) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/stable-diffusion/pull/1#issuecomment-1800731969) in [tuhinmallick/stable-diffusion](https://github.com/tuhinmallick/stable-diffusion) +10. 🗣 Commented on [#804](https://github.com/scilus/scilpy/pull/804#issuecomment-1800119191) in [scilus/scilpy](https://github.com/scilus/scilpy) From 1ed85295b3db6c00c58225dd9dc946d9fad422e5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Nov 2023 14:37:21 +0000 Subject: [PATCH 0583/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 909e1fa7..041263f5 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#871](https://github.com/ToFuProject/tofu/pull/871#issuecomment-1801592882) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#933](https://github.com/avaframe/AvaFrame/pull/933#issuecomment-1801271161) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLM-groundedDiffusion/pull/1#issuecomment-1800884086) in [tuhinmallick/LLM-groundedDiffusion](https://github.com/tuhinmallick/LLM-groundedDiffusion) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/stablediffusion/pull/1#issuecomment-1800850644) in [tuhinmallick/stablediffusion](https://github.com/tuhinmallick/stablediffusion) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/bark/pull/1#issuecomment-1800846715) in [tuhinmallick/bark](https://github.com/tuhinmallick/bark) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Hotshot-XL/pull/1#issuecomment-1800845113) in [tuhinmallick/Hotshot-XL](https://github.com/tuhinmallick/Hotshot-XL) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog-sdxl-inpainting/pull/1#issuecomment-1800838165) in [tuhinmallick/cog-sdxl-inpainting](https://github.com/tuhinmallick/cog-sdxl-inpainting) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Chat2VIS_Streamlit/pull/1#issuecomment-1800803934) in [tuhinmallick/Chat2VIS_Streamlit](https://github.com/tuhinmallick/Chat2VIS_Streamlit) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/stable-diffusion/pull/1#issuecomment-1800731969) in [tuhinmallick/stable-diffusion](https://github.com/tuhinmallick/stable-diffusion) -10. 🗣 Commented on [#804](https://github.com/scilus/scilpy/pull/804#issuecomment-1800119191) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#2622](https://github.com/metabrainz/listenbrainz-server/pull/2622#issuecomment-1802007935) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog/pull/1#issuecomment-1801982453) in [tuhinmallick/cog](https://github.com/tuhinmallick/cog) +3. 🗣 Commented on [#871](https://github.com/ToFuProject/tofu/pull/871#issuecomment-1801592882) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#933](https://github.com/avaframe/AvaFrame/pull/933#issuecomment-1801271161) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLM-groundedDiffusion/pull/1#issuecomment-1800884086) in [tuhinmallick/LLM-groundedDiffusion](https://github.com/tuhinmallick/LLM-groundedDiffusion) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/stablediffusion/pull/1#issuecomment-1800850644) in [tuhinmallick/stablediffusion](https://github.com/tuhinmallick/stablediffusion) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/bark/pull/1#issuecomment-1800846715) in [tuhinmallick/bark](https://github.com/tuhinmallick/bark) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Hotshot-XL/pull/1#issuecomment-1800845113) in [tuhinmallick/Hotshot-XL](https://github.com/tuhinmallick/Hotshot-XL) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog-sdxl-inpainting/pull/1#issuecomment-1800838165) in [tuhinmallick/cog-sdxl-inpainting](https://github.com/tuhinmallick/cog-sdxl-inpainting) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Chat2VIS_Streamlit/pull/1#issuecomment-1800803934) in [tuhinmallick/Chat2VIS_Streamlit](https://github.com/tuhinmallick/Chat2VIS_Streamlit) From 67b8537aa5c86fb0e52b7e61c92e87d39381f13b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Nov 2023 16:21:12 +0000 Subject: [PATCH 0584/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 041263f5..c90e57fc 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2622](https://github.com/metabrainz/listenbrainz-server/pull/2622#issuecomment-1802007935) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog/pull/1#issuecomment-1801982453) in [tuhinmallick/cog](https://github.com/tuhinmallick/cog) -3. 🗣 Commented on [#871](https://github.com/ToFuProject/tofu/pull/871#issuecomment-1801592882) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#933](https://github.com/avaframe/AvaFrame/pull/933#issuecomment-1801271161) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLM-groundedDiffusion/pull/1#issuecomment-1800884086) in [tuhinmallick/LLM-groundedDiffusion](https://github.com/tuhinmallick/LLM-groundedDiffusion) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/stablediffusion/pull/1#issuecomment-1800850644) in [tuhinmallick/stablediffusion](https://github.com/tuhinmallick/stablediffusion) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/bark/pull/1#issuecomment-1800846715) in [tuhinmallick/bark](https://github.com/tuhinmallick/bark) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Hotshot-XL/pull/1#issuecomment-1800845113) in [tuhinmallick/Hotshot-XL](https://github.com/tuhinmallick/Hotshot-XL) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog-sdxl-inpainting/pull/1#issuecomment-1800838165) in [tuhinmallick/cog-sdxl-inpainting](https://github.com/tuhinmallick/cog-sdxl-inpainting) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Chat2VIS_Streamlit/pull/1#issuecomment-1800803934) in [tuhinmallick/Chat2VIS_Streamlit](https://github.com/tuhinmallick/Chat2VIS_Streamlit) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/lama-cleaner/pull/1#issuecomment-1802208338) in [tuhinmallick/lama-cleaner](https://github.com/tuhinmallick/lama-cleaner) +2. 🗣 Commented on [#2622](https://github.com/metabrainz/listenbrainz-server/pull/2622#issuecomment-1802007935) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog/pull/1#issuecomment-1801982453) in [tuhinmallick/cog](https://github.com/tuhinmallick/cog) +4. 🗣 Commented on [#871](https://github.com/ToFuProject/tofu/pull/871#issuecomment-1801592882) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#933](https://github.com/avaframe/AvaFrame/pull/933#issuecomment-1801271161) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLM-groundedDiffusion/pull/1#issuecomment-1800884086) in [tuhinmallick/LLM-groundedDiffusion](https://github.com/tuhinmallick/LLM-groundedDiffusion) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/stablediffusion/pull/1#issuecomment-1800850644) in [tuhinmallick/stablediffusion](https://github.com/tuhinmallick/stablediffusion) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/bark/pull/1#issuecomment-1800846715) in [tuhinmallick/bark](https://github.com/tuhinmallick/bark) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Hotshot-XL/pull/1#issuecomment-1800845113) in [tuhinmallick/Hotshot-XL](https://github.com/tuhinmallick/Hotshot-XL) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog-sdxl-inpainting/pull/1#issuecomment-1800838165) in [tuhinmallick/cog-sdxl-inpainting](https://github.com/tuhinmallick/cog-sdxl-inpainting) From 544e6895399ff8a8ddff83c4b67e58dbc82bdf8c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Nov 2023 16:40:50 +0000 Subject: [PATCH 0585/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c90e57fc..c87f2883 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/lama-cleaner/pull/1#issuecomment-1802208338) in [tuhinmallick/lama-cleaner](https://github.com/tuhinmallick/lama-cleaner) -2. 🗣 Commented on [#2622](https://github.com/metabrainz/listenbrainz-server/pull/2622#issuecomment-1802007935) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog/pull/1#issuecomment-1801982453) in [tuhinmallick/cog](https://github.com/tuhinmallick/cog) -4. 🗣 Commented on [#871](https://github.com/ToFuProject/tofu/pull/871#issuecomment-1801592882) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#933](https://github.com/avaframe/AvaFrame/pull/933#issuecomment-1801271161) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLM-groundedDiffusion/pull/1#issuecomment-1800884086) in [tuhinmallick/LLM-groundedDiffusion](https://github.com/tuhinmallick/LLM-groundedDiffusion) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/stablediffusion/pull/1#issuecomment-1800850644) in [tuhinmallick/stablediffusion](https://github.com/tuhinmallick/stablediffusion) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/bark/pull/1#issuecomment-1800846715) in [tuhinmallick/bark](https://github.com/tuhinmallick/bark) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Hotshot-XL/pull/1#issuecomment-1800845113) in [tuhinmallick/Hotshot-XL](https://github.com/tuhinmallick/Hotshot-XL) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog-sdxl-inpainting/pull/1#issuecomment-1800838165) in [tuhinmallick/cog-sdxl-inpainting](https://github.com/tuhinmallick/cog-sdxl-inpainting) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy/pull/1#issuecomment-1802225134) in [tuhinmallick/LCM_Inpaint_Outpaint_Comfy](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/lama-cleaner/pull/1#issuecomment-1802208338) in [tuhinmallick/lama-cleaner](https://github.com/tuhinmallick/lama-cleaner) +3. 🗣 Commented on [#2622](https://github.com/metabrainz/listenbrainz-server/pull/2622#issuecomment-1802007935) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog/pull/1#issuecomment-1801982453) in [tuhinmallick/cog](https://github.com/tuhinmallick/cog) +5. 🗣 Commented on [#871](https://github.com/ToFuProject/tofu/pull/871#issuecomment-1801592882) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#933](https://github.com/avaframe/AvaFrame/pull/933#issuecomment-1801271161) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLM-groundedDiffusion/pull/1#issuecomment-1800884086) in [tuhinmallick/LLM-groundedDiffusion](https://github.com/tuhinmallick/LLM-groundedDiffusion) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/stablediffusion/pull/1#issuecomment-1800850644) in [tuhinmallick/stablediffusion](https://github.com/tuhinmallick/stablediffusion) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/bark/pull/1#issuecomment-1800846715) in [tuhinmallick/bark](https://github.com/tuhinmallick/bark) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Hotshot-XL/pull/1#issuecomment-1800845113) in [tuhinmallick/Hotshot-XL](https://github.com/tuhinmallick/Hotshot-XL) From 0fc6554c4c5859566c0364fd09eaff7b9467bffb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Nov 2023 17:37:12 +0000 Subject: [PATCH 0586/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c87f2883..907c3b4b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy/pull/1#issuecomment-1802225134) in [tuhinmallick/LCM_Inpaint_Outpaint_Comfy](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/lama-cleaner/pull/1#issuecomment-1802208338) in [tuhinmallick/lama-cleaner](https://github.com/tuhinmallick/lama-cleaner) -3. 🗣 Commented on [#2622](https://github.com/metabrainz/listenbrainz-server/pull/2622#issuecomment-1802007935) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog/pull/1#issuecomment-1801982453) in [tuhinmallick/cog](https://github.com/tuhinmallick/cog) -5. 🗣 Commented on [#871](https://github.com/ToFuProject/tofu/pull/871#issuecomment-1801592882) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#933](https://github.com/avaframe/AvaFrame/pull/933#issuecomment-1801271161) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLM-groundedDiffusion/pull/1#issuecomment-1800884086) in [tuhinmallick/LLM-groundedDiffusion](https://github.com/tuhinmallick/LLM-groundedDiffusion) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/stablediffusion/pull/1#issuecomment-1800850644) in [tuhinmallick/stablediffusion](https://github.com/tuhinmallick/stablediffusion) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/bark/pull/1#issuecomment-1800846715) in [tuhinmallick/bark](https://github.com/tuhinmallick/bark) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Hotshot-XL/pull/1#issuecomment-1800845113) in [tuhinmallick/Hotshot-XL](https://github.com/tuhinmallick/Hotshot-XL) +1. 🗣 Commented on [#2](https://github.com/nsryan2/transition-scenarios/pull/2#issuecomment-1802327605) in [nsryan2/transition-scenarios](https://github.com/nsryan2/transition-scenarios) +2. 🗣 Commented on [#1396](https://github.com/spacetelescope/jwql/pull/1396#issuecomment-1802324680) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy/pull/1#issuecomment-1802225134) in [tuhinmallick/LCM_Inpaint_Outpaint_Comfy](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/lama-cleaner/pull/1#issuecomment-1802208338) in [tuhinmallick/lama-cleaner](https://github.com/tuhinmallick/lama-cleaner) +5. 🗣 Commented on [#2622](https://github.com/metabrainz/listenbrainz-server/pull/2622#issuecomment-1802007935) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog/pull/1#issuecomment-1801982453) in [tuhinmallick/cog](https://github.com/tuhinmallick/cog) +7. 🗣 Commented on [#871](https://github.com/ToFuProject/tofu/pull/871#issuecomment-1801592882) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#933](https://github.com/avaframe/AvaFrame/pull/933#issuecomment-1801271161) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLM-groundedDiffusion/pull/1#issuecomment-1800884086) in [tuhinmallick/LLM-groundedDiffusion](https://github.com/tuhinmallick/LLM-groundedDiffusion) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/stablediffusion/pull/1#issuecomment-1800850644) in [tuhinmallick/stablediffusion](https://github.com/tuhinmallick/stablediffusion) From 2d13c4cf43e9dcbd4ebd7b0393c1c110081fa2b8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Nov 2023 19:37:04 +0000 Subject: [PATCH 0587/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 907c3b4b..4dc30b82 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2](https://github.com/nsryan2/transition-scenarios/pull/2#issuecomment-1802327605) in [nsryan2/transition-scenarios](https://github.com/nsryan2/transition-scenarios) -2. 🗣 Commented on [#1396](https://github.com/spacetelescope/jwql/pull/1396#issuecomment-1802324680) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy/pull/1#issuecomment-1802225134) in [tuhinmallick/LCM_Inpaint_Outpaint_Comfy](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/lama-cleaner/pull/1#issuecomment-1802208338) in [tuhinmallick/lama-cleaner](https://github.com/tuhinmallick/lama-cleaner) -5. 🗣 Commented on [#2622](https://github.com/metabrainz/listenbrainz-server/pull/2622#issuecomment-1802007935) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog/pull/1#issuecomment-1801982453) in [tuhinmallick/cog](https://github.com/tuhinmallick/cog) -7. 🗣 Commented on [#871](https://github.com/ToFuProject/tofu/pull/871#issuecomment-1801592882) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#933](https://github.com/avaframe/AvaFrame/pull/933#issuecomment-1801271161) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLM-groundedDiffusion/pull/1#issuecomment-1800884086) in [tuhinmallick/LLM-groundedDiffusion](https://github.com/tuhinmallick/LLM-groundedDiffusion) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/stablediffusion/pull/1#issuecomment-1800850644) in [tuhinmallick/stablediffusion](https://github.com/tuhinmallick/stablediffusion) +1. 🗣 Commented on [#51](https://github.com/MDAnalysis/mdaencore/pull/51#issuecomment-1802520165) in [MDAnalysis/mdaencore](https://github.com/MDAnalysis/mdaencore) +2. 🗣 Commented on [#2](https://github.com/nsryan2/transition-scenarios/pull/2#issuecomment-1802327605) in [nsryan2/transition-scenarios](https://github.com/nsryan2/transition-scenarios) +3. 🗣 Commented on [#1396](https://github.com/spacetelescope/jwql/pull/1396#issuecomment-1802324680) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy/pull/1#issuecomment-1802225134) in [tuhinmallick/LCM_Inpaint_Outpaint_Comfy](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/lama-cleaner/pull/1#issuecomment-1802208338) in [tuhinmallick/lama-cleaner](https://github.com/tuhinmallick/lama-cleaner) +6. 🗣 Commented on [#2622](https://github.com/metabrainz/listenbrainz-server/pull/2622#issuecomment-1802007935) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog/pull/1#issuecomment-1801982453) in [tuhinmallick/cog](https://github.com/tuhinmallick/cog) +8. 🗣 Commented on [#871](https://github.com/ToFuProject/tofu/pull/871#issuecomment-1801592882) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#933](https://github.com/avaframe/AvaFrame/pull/933#issuecomment-1801271161) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLM-groundedDiffusion/pull/1#issuecomment-1800884086) in [tuhinmallick/LLM-groundedDiffusion](https://github.com/tuhinmallick/LLM-groundedDiffusion) From d65c8061f56f4495e43e73a462d077cf4f48552c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Nov 2023 21:37:00 +0000 Subject: [PATCH 0588/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4dc30b82..bdd31967 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#51](https://github.com/MDAnalysis/mdaencore/pull/51#issuecomment-1802520165) in [MDAnalysis/mdaencore](https://github.com/MDAnalysis/mdaencore) -2. 🗣 Commented on [#2](https://github.com/nsryan2/transition-scenarios/pull/2#issuecomment-1802327605) in [nsryan2/transition-scenarios](https://github.com/nsryan2/transition-scenarios) -3. 🗣 Commented on [#1396](https://github.com/spacetelescope/jwql/pull/1396#issuecomment-1802324680) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy/pull/1#issuecomment-1802225134) in [tuhinmallick/LCM_Inpaint_Outpaint_Comfy](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/lama-cleaner/pull/1#issuecomment-1802208338) in [tuhinmallick/lama-cleaner](https://github.com/tuhinmallick/lama-cleaner) -6. 🗣 Commented on [#2622](https://github.com/metabrainz/listenbrainz-server/pull/2622#issuecomment-1802007935) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog/pull/1#issuecomment-1801982453) in [tuhinmallick/cog](https://github.com/tuhinmallick/cog) -8. 🗣 Commented on [#871](https://github.com/ToFuProject/tofu/pull/871#issuecomment-1801592882) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#933](https://github.com/avaframe/AvaFrame/pull/933#issuecomment-1801271161) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLM-groundedDiffusion/pull/1#issuecomment-1800884086) in [tuhinmallick/LLM-groundedDiffusion](https://github.com/tuhinmallick/LLM-groundedDiffusion) +1. 🗣 Commented on [#1397](https://github.com/spacetelescope/jwql/pull/1397#issuecomment-1802701841) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#51](https://github.com/MDAnalysis/mdaencore/pull/51#issuecomment-1802520165) in [MDAnalysis/mdaencore](https://github.com/MDAnalysis/mdaencore) +3. 🗣 Commented on [#2](https://github.com/nsryan2/transition-scenarios/pull/2#issuecomment-1802327605) in [nsryan2/transition-scenarios](https://github.com/nsryan2/transition-scenarios) +4. 🗣 Commented on [#1396](https://github.com/spacetelescope/jwql/pull/1396#issuecomment-1802324680) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy/pull/1#issuecomment-1802225134) in [tuhinmallick/LCM_Inpaint_Outpaint_Comfy](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/lama-cleaner/pull/1#issuecomment-1802208338) in [tuhinmallick/lama-cleaner](https://github.com/tuhinmallick/lama-cleaner) +7. 🗣 Commented on [#2622](https://github.com/metabrainz/listenbrainz-server/pull/2622#issuecomment-1802007935) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog/pull/1#issuecomment-1801982453) in [tuhinmallick/cog](https://github.com/tuhinmallick/cog) +9. 🗣 Commented on [#871](https://github.com/ToFuProject/tofu/pull/871#issuecomment-1801592882) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#933](https://github.com/avaframe/AvaFrame/pull/933#issuecomment-1801271161) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From eae1b212152d6855e0f593f5dcd60ffcf43f2eab Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Nov 2023 22:14:52 +0000 Subject: [PATCH 0589/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bdd31967..dd25c09c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1397](https://github.com/spacetelescope/jwql/pull/1397#issuecomment-1802701841) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#51](https://github.com/MDAnalysis/mdaencore/pull/51#issuecomment-1802520165) in [MDAnalysis/mdaencore](https://github.com/MDAnalysis/mdaencore) -3. 🗣 Commented on [#2](https://github.com/nsryan2/transition-scenarios/pull/2#issuecomment-1802327605) in [nsryan2/transition-scenarios](https://github.com/nsryan2/transition-scenarios) -4. 🗣 Commented on [#1396](https://github.com/spacetelescope/jwql/pull/1396#issuecomment-1802324680) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy/pull/1#issuecomment-1802225134) in [tuhinmallick/LCM_Inpaint_Outpaint_Comfy](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/lama-cleaner/pull/1#issuecomment-1802208338) in [tuhinmallick/lama-cleaner](https://github.com/tuhinmallick/lama-cleaner) -7. 🗣 Commented on [#2622](https://github.com/metabrainz/listenbrainz-server/pull/2622#issuecomment-1802007935) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog/pull/1#issuecomment-1801982453) in [tuhinmallick/cog](https://github.com/tuhinmallick/cog) -9. 🗣 Commented on [#871](https://github.com/ToFuProject/tofu/pull/871#issuecomment-1801592882) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#933](https://github.com/avaframe/AvaFrame/pull/933#issuecomment-1801271161) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#511](https://github.com/njzjz/reacnetgenerator/pull/511#issuecomment-1802721453) in [njzjz/reacnetgenerator](https://github.com/njzjz/reacnetgenerator) +2. 🗣 Commented on [#1397](https://github.com/spacetelescope/jwql/pull/1397#issuecomment-1802701841) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#51](https://github.com/MDAnalysis/mdaencore/pull/51#issuecomment-1802520165) in [MDAnalysis/mdaencore](https://github.com/MDAnalysis/mdaencore) +4. 🗣 Commented on [#2](https://github.com/nsryan2/transition-scenarios/pull/2#issuecomment-1802327605) in [nsryan2/transition-scenarios](https://github.com/nsryan2/transition-scenarios) +5. 🗣 Commented on [#1396](https://github.com/spacetelescope/jwql/pull/1396#issuecomment-1802324680) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy/pull/1#issuecomment-1802225134) in [tuhinmallick/LCM_Inpaint_Outpaint_Comfy](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/lama-cleaner/pull/1#issuecomment-1802208338) in [tuhinmallick/lama-cleaner](https://github.com/tuhinmallick/lama-cleaner) +8. 🗣 Commented on [#2622](https://github.com/metabrainz/listenbrainz-server/pull/2622#issuecomment-1802007935) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog/pull/1#issuecomment-1801982453) in [tuhinmallick/cog](https://github.com/tuhinmallick/cog) +10. 🗣 Commented on [#871](https://github.com/ToFuProject/tofu/pull/871#issuecomment-1801592882) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From a5292f1a0213a8ef709369a0cd95e84eec0a3fd1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Nov 2023 01:11:41 +0000 Subject: [PATCH 0590/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dd25c09c..00d5d744 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#511](https://github.com/njzjz/reacnetgenerator/pull/511#issuecomment-1802721453) in [njzjz/reacnetgenerator](https://github.com/njzjz/reacnetgenerator) -2. 🗣 Commented on [#1397](https://github.com/spacetelescope/jwql/pull/1397#issuecomment-1802701841) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#51](https://github.com/MDAnalysis/mdaencore/pull/51#issuecomment-1802520165) in [MDAnalysis/mdaencore](https://github.com/MDAnalysis/mdaencore) -4. 🗣 Commented on [#2](https://github.com/nsryan2/transition-scenarios/pull/2#issuecomment-1802327605) in [nsryan2/transition-scenarios](https://github.com/nsryan2/transition-scenarios) -5. 🗣 Commented on [#1396](https://github.com/spacetelescope/jwql/pull/1396#issuecomment-1802324680) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy/pull/1#issuecomment-1802225134) in [tuhinmallick/LCM_Inpaint_Outpaint_Comfy](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/lama-cleaner/pull/1#issuecomment-1802208338) in [tuhinmallick/lama-cleaner](https://github.com/tuhinmallick/lama-cleaner) -8. 🗣 Commented on [#2622](https://github.com/metabrainz/listenbrainz-server/pull/2622#issuecomment-1802007935) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/cog/pull/1#issuecomment-1801982453) in [tuhinmallick/cog](https://github.com/tuhinmallick/cog) -10. 🗣 Commented on [#871](https://github.com/ToFuProject/tofu/pull/871#issuecomment-1801592882) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/fforma/pull/1#issuecomment-1802939548) in [tuhinmallick/fforma](https://github.com/tuhinmallick/fforma) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/esrnn_torch/pull/1#issuecomment-1802935096) in [tuhinmallick/esrnn_torch](https://github.com/tuhinmallick/esrnn_torch) +3. 🗣 Commented on [#511](https://github.com/njzjz/reacnetgenerator/pull/511#issuecomment-1802721453) in [njzjz/reacnetgenerator](https://github.com/njzjz/reacnetgenerator) +4. 🗣 Commented on [#1397](https://github.com/spacetelescope/jwql/pull/1397#issuecomment-1802701841) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#51](https://github.com/MDAnalysis/mdaencore/pull/51#issuecomment-1802520165) in [MDAnalysis/mdaencore](https://github.com/MDAnalysis/mdaencore) +6. 🗣 Commented on [#2](https://github.com/nsryan2/transition-scenarios/pull/2#issuecomment-1802327605) in [nsryan2/transition-scenarios](https://github.com/nsryan2/transition-scenarios) +7. 🗣 Commented on [#1396](https://github.com/spacetelescope/jwql/pull/1396#issuecomment-1802324680) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy/pull/1#issuecomment-1802225134) in [tuhinmallick/LCM_Inpaint_Outpaint_Comfy](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/lama-cleaner/pull/1#issuecomment-1802208338) in [tuhinmallick/lama-cleaner](https://github.com/tuhinmallick/lama-cleaner) +10. 🗣 Commented on [#2622](https://github.com/metabrainz/listenbrainz-server/pull/2622#issuecomment-1802007935) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From a7b14a007e0b0ecd4b80bcf1ee1891d4c451d10e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Nov 2023 06:37:42 +0000 Subject: [PATCH 0591/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 00d5d744..f58d78ad 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/fforma/pull/1#issuecomment-1802939548) in [tuhinmallick/fforma](https://github.com/tuhinmallick/fforma) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/esrnn_torch/pull/1#issuecomment-1802935096) in [tuhinmallick/esrnn_torch](https://github.com/tuhinmallick/esrnn_torch) -3. 🗣 Commented on [#511](https://github.com/njzjz/reacnetgenerator/pull/511#issuecomment-1802721453) in [njzjz/reacnetgenerator](https://github.com/njzjz/reacnetgenerator) -4. 🗣 Commented on [#1397](https://github.com/spacetelescope/jwql/pull/1397#issuecomment-1802701841) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#51](https://github.com/MDAnalysis/mdaencore/pull/51#issuecomment-1802520165) in [MDAnalysis/mdaencore](https://github.com/MDAnalysis/mdaencore) -6. 🗣 Commented on [#2](https://github.com/nsryan2/transition-scenarios/pull/2#issuecomment-1802327605) in [nsryan2/transition-scenarios](https://github.com/nsryan2/transition-scenarios) -7. 🗣 Commented on [#1396](https://github.com/spacetelescope/jwql/pull/1396#issuecomment-1802324680) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy/pull/1#issuecomment-1802225134) in [tuhinmallick/LCM_Inpaint_Outpaint_Comfy](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/lama-cleaner/pull/1#issuecomment-1802208338) in [tuhinmallick/lama-cleaner](https://github.com/tuhinmallick/lama-cleaner) -10. 🗣 Commented on [#2622](https://github.com/metabrainz/listenbrainz-server/pull/2622#issuecomment-1802007935) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/SoM/pull/1#issuecomment-1803231369) in [tuhinmallick/SoM](https://github.com/tuhinmallick/SoM) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/fforma/pull/1#issuecomment-1802939548) in [tuhinmallick/fforma](https://github.com/tuhinmallick/fforma) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/esrnn_torch/pull/1#issuecomment-1802935096) in [tuhinmallick/esrnn_torch](https://github.com/tuhinmallick/esrnn_torch) +4. 🗣 Commented on [#511](https://github.com/njzjz/reacnetgenerator/pull/511#issuecomment-1802721453) in [njzjz/reacnetgenerator](https://github.com/njzjz/reacnetgenerator) +5. 🗣 Commented on [#1397](https://github.com/spacetelescope/jwql/pull/1397#issuecomment-1802701841) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#51](https://github.com/MDAnalysis/mdaencore/pull/51#issuecomment-1802520165) in [MDAnalysis/mdaencore](https://github.com/MDAnalysis/mdaencore) +7. 🗣 Commented on [#2](https://github.com/nsryan2/transition-scenarios/pull/2#issuecomment-1802327605) in [nsryan2/transition-scenarios](https://github.com/nsryan2/transition-scenarios) +8. 🗣 Commented on [#1396](https://github.com/spacetelescope/jwql/pull/1396#issuecomment-1802324680) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy/pull/1#issuecomment-1802225134) in [tuhinmallick/LCM_Inpaint_Outpaint_Comfy](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/lama-cleaner/pull/1#issuecomment-1802208338) in [tuhinmallick/lama-cleaner](https://github.com/tuhinmallick/lama-cleaner) From caaf0e1114d5c87749e715c223ea6d8330debaa9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Nov 2023 11:37:18 +0000 Subject: [PATCH 0592/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f58d78ad..e35dabe4 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/SoM/pull/1#issuecomment-1803231369) in [tuhinmallick/SoM](https://github.com/tuhinmallick/SoM) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/fforma/pull/1#issuecomment-1802939548) in [tuhinmallick/fforma](https://github.com/tuhinmallick/fforma) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/esrnn_torch/pull/1#issuecomment-1802935096) in [tuhinmallick/esrnn_torch](https://github.com/tuhinmallick/esrnn_torch) -4. 🗣 Commented on [#511](https://github.com/njzjz/reacnetgenerator/pull/511#issuecomment-1802721453) in [njzjz/reacnetgenerator](https://github.com/njzjz/reacnetgenerator) -5. 🗣 Commented on [#1397](https://github.com/spacetelescope/jwql/pull/1397#issuecomment-1802701841) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#51](https://github.com/MDAnalysis/mdaencore/pull/51#issuecomment-1802520165) in [MDAnalysis/mdaencore](https://github.com/MDAnalysis/mdaencore) -7. 🗣 Commented on [#2](https://github.com/nsryan2/transition-scenarios/pull/2#issuecomment-1802327605) in [nsryan2/transition-scenarios](https://github.com/nsryan2/transition-scenarios) -8. 🗣 Commented on [#1396](https://github.com/spacetelescope/jwql/pull/1396#issuecomment-1802324680) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy/pull/1#issuecomment-1802225134) in [tuhinmallick/LCM_Inpaint_Outpaint_Comfy](https://github.com/tuhinmallick/LCM_Inpaint_Outpaint_Comfy) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/lama-cleaner/pull/1#issuecomment-1802208338) in [tuhinmallick/lama-cleaner](https://github.com/tuhinmallick/lama-cleaner) +1. 🗣 Commented on [#2145](https://github.com/astropy/astroquery/pull/2145#issuecomment-1803659022) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#1013](https://github.com/aramis-lab/clinica/pull/1013#issuecomment-1803636167) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/SoM/pull/1#issuecomment-1803231369) in [tuhinmallick/SoM](https://github.com/tuhinmallick/SoM) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/fforma/pull/1#issuecomment-1802939548) in [tuhinmallick/fforma](https://github.com/tuhinmallick/fforma) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/esrnn_torch/pull/1#issuecomment-1802935096) in [tuhinmallick/esrnn_torch](https://github.com/tuhinmallick/esrnn_torch) +6. 🗣 Commented on [#511](https://github.com/njzjz/reacnetgenerator/pull/511#issuecomment-1802721453) in [njzjz/reacnetgenerator](https://github.com/njzjz/reacnetgenerator) +7. 🗣 Commented on [#1397](https://github.com/spacetelescope/jwql/pull/1397#issuecomment-1802701841) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#51](https://github.com/MDAnalysis/mdaencore/pull/51#issuecomment-1802520165) in [MDAnalysis/mdaencore](https://github.com/MDAnalysis/mdaencore) +9. 🗣 Commented on [#2](https://github.com/nsryan2/transition-scenarios/pull/2#issuecomment-1802327605) in [nsryan2/transition-scenarios](https://github.com/nsryan2/transition-scenarios) +10. 🗣 Commented on [#1396](https://github.com/spacetelescope/jwql/pull/1396#issuecomment-1802324680) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 8add28d113a52d3383c5cf96afaf748c67765ced Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Nov 2023 13:18:50 +0000 Subject: [PATCH 0593/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e35dabe4..184c3379 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2145](https://github.com/astropy/astroquery/pull/2145#issuecomment-1803659022) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#1013](https://github.com/aramis-lab/clinica/pull/1013#issuecomment-1803636167) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/SoM/pull/1#issuecomment-1803231369) in [tuhinmallick/SoM](https://github.com/tuhinmallick/SoM) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/fforma/pull/1#issuecomment-1802939548) in [tuhinmallick/fforma](https://github.com/tuhinmallick/fforma) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/esrnn_torch/pull/1#issuecomment-1802935096) in [tuhinmallick/esrnn_torch](https://github.com/tuhinmallick/esrnn_torch) -6. 🗣 Commented on [#511](https://github.com/njzjz/reacnetgenerator/pull/511#issuecomment-1802721453) in [njzjz/reacnetgenerator](https://github.com/njzjz/reacnetgenerator) -7. 🗣 Commented on [#1397](https://github.com/spacetelescope/jwql/pull/1397#issuecomment-1802701841) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#51](https://github.com/MDAnalysis/mdaencore/pull/51#issuecomment-1802520165) in [MDAnalysis/mdaencore](https://github.com/MDAnalysis/mdaencore) -9. 🗣 Commented on [#2](https://github.com/nsryan2/transition-scenarios/pull/2#issuecomment-1802327605) in [nsryan2/transition-scenarios](https://github.com/nsryan2/transition-scenarios) -10. 🗣 Commented on [#1396](https://github.com/spacetelescope/jwql/pull/1396#issuecomment-1802324680) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#1404](https://github.com/rpm-software-management/ci-dnf-stack/pull/1404#issuecomment-1803752478) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +2. 🗣 Commented on [#2145](https://github.com/astropy/astroquery/pull/2145#issuecomment-1803659022) in [astropy/astroquery](https://github.com/astropy/astroquery) +3. 🗣 Commented on [#1013](https://github.com/aramis-lab/clinica/pull/1013#issuecomment-1803636167) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/SoM/pull/1#issuecomment-1803231369) in [tuhinmallick/SoM](https://github.com/tuhinmallick/SoM) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/fforma/pull/1#issuecomment-1802939548) in [tuhinmallick/fforma](https://github.com/tuhinmallick/fforma) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/esrnn_torch/pull/1#issuecomment-1802935096) in [tuhinmallick/esrnn_torch](https://github.com/tuhinmallick/esrnn_torch) +7. 🗣 Commented on [#511](https://github.com/njzjz/reacnetgenerator/pull/511#issuecomment-1802721453) in [njzjz/reacnetgenerator](https://github.com/njzjz/reacnetgenerator) +8. 🗣 Commented on [#1397](https://github.com/spacetelescope/jwql/pull/1397#issuecomment-1802701841) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#51](https://github.com/MDAnalysis/mdaencore/pull/51#issuecomment-1802520165) in [MDAnalysis/mdaencore](https://github.com/MDAnalysis/mdaencore) +10. 🗣 Commented on [#2](https://github.com/nsryan2/transition-scenarios/pull/2#issuecomment-1802327605) in [nsryan2/transition-scenarios](https://github.com/nsryan2/transition-scenarios) From 7ead033edfbcf5402c4ccc9f4ce3ef67ef13e5b2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Nov 2023 13:37:17 +0000 Subject: [PATCH 0594/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 184c3379..43971c93 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1404](https://github.com/rpm-software-management/ci-dnf-stack/pull/1404#issuecomment-1803752478) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -2. 🗣 Commented on [#2145](https://github.com/astropy/astroquery/pull/2145#issuecomment-1803659022) in [astropy/astroquery](https://github.com/astropy/astroquery) -3. 🗣 Commented on [#1013](https://github.com/aramis-lab/clinica/pull/1013#issuecomment-1803636167) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/SoM/pull/1#issuecomment-1803231369) in [tuhinmallick/SoM](https://github.com/tuhinmallick/SoM) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/fforma/pull/1#issuecomment-1802939548) in [tuhinmallick/fforma](https://github.com/tuhinmallick/fforma) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/esrnn_torch/pull/1#issuecomment-1802935096) in [tuhinmallick/esrnn_torch](https://github.com/tuhinmallick/esrnn_torch) -7. 🗣 Commented on [#511](https://github.com/njzjz/reacnetgenerator/pull/511#issuecomment-1802721453) in [njzjz/reacnetgenerator](https://github.com/njzjz/reacnetgenerator) -8. 🗣 Commented on [#1397](https://github.com/spacetelescope/jwql/pull/1397#issuecomment-1802701841) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#51](https://github.com/MDAnalysis/mdaencore/pull/51#issuecomment-1802520165) in [MDAnalysis/mdaencore](https://github.com/MDAnalysis/mdaencore) -10. 🗣 Commented on [#2](https://github.com/nsryan2/transition-scenarios/pull/2#issuecomment-1802327605) in [nsryan2/transition-scenarios](https://github.com/nsryan2/transition-scenarios) +1. 🗣 Commented on [#21](https://github.com/dvolgyes/zenodo_get/pull/21#issuecomment-1803818483) in [dvolgyes/zenodo_get](https://github.com/dvolgyes/zenodo_get) +2. 🗣 Commented on [#1404](https://github.com/rpm-software-management/ci-dnf-stack/pull/1404#issuecomment-1803752478) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +3. 🗣 Commented on [#2145](https://github.com/astropy/astroquery/pull/2145#issuecomment-1803659022) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#1013](https://github.com/aramis-lab/clinica/pull/1013#issuecomment-1803636167) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/SoM/pull/1#issuecomment-1803231369) in [tuhinmallick/SoM](https://github.com/tuhinmallick/SoM) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/fforma/pull/1#issuecomment-1802939548) in [tuhinmallick/fforma](https://github.com/tuhinmallick/fforma) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/esrnn_torch/pull/1#issuecomment-1802935096) in [tuhinmallick/esrnn_torch](https://github.com/tuhinmallick/esrnn_torch) +8. 🗣 Commented on [#511](https://github.com/njzjz/reacnetgenerator/pull/511#issuecomment-1802721453) in [njzjz/reacnetgenerator](https://github.com/njzjz/reacnetgenerator) +9. 🗣 Commented on [#1397](https://github.com/spacetelescope/jwql/pull/1397#issuecomment-1802701841) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#51](https://github.com/MDAnalysis/mdaencore/pull/51#issuecomment-1802520165) in [MDAnalysis/mdaencore](https://github.com/MDAnalysis/mdaencore) From eecb721d1a197e97eacba21d8cd9d16f2384f343 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Nov 2023 14:37:24 +0000 Subject: [PATCH 0595/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 43971c93..73e049d3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#21](https://github.com/dvolgyes/zenodo_get/pull/21#issuecomment-1803818483) in [dvolgyes/zenodo_get](https://github.com/dvolgyes/zenodo_get) -2. 🗣 Commented on [#1404](https://github.com/rpm-software-management/ci-dnf-stack/pull/1404#issuecomment-1803752478) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -3. 🗣 Commented on [#2145](https://github.com/astropy/astroquery/pull/2145#issuecomment-1803659022) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#1013](https://github.com/aramis-lab/clinica/pull/1013#issuecomment-1803636167) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/SoM/pull/1#issuecomment-1803231369) in [tuhinmallick/SoM](https://github.com/tuhinmallick/SoM) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/fforma/pull/1#issuecomment-1802939548) in [tuhinmallick/fforma](https://github.com/tuhinmallick/fforma) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/esrnn_torch/pull/1#issuecomment-1802935096) in [tuhinmallick/esrnn_torch](https://github.com/tuhinmallick/esrnn_torch) -8. 🗣 Commented on [#511](https://github.com/njzjz/reacnetgenerator/pull/511#issuecomment-1802721453) in [njzjz/reacnetgenerator](https://github.com/njzjz/reacnetgenerator) -9. 🗣 Commented on [#1397](https://github.com/spacetelescope/jwql/pull/1397#issuecomment-1802701841) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#51](https://github.com/MDAnalysis/mdaencore/pull/51#issuecomment-1802520165) in [MDAnalysis/mdaencore](https://github.com/MDAnalysis/mdaencore) +1. 🗣 Commented on [#5305](https://github.com/rhinstaller/anaconda/pull/5305#issuecomment-1803930443) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#21](https://github.com/dvolgyes/zenodo_get/pull/21#issuecomment-1803818483) in [dvolgyes/zenodo_get](https://github.com/dvolgyes/zenodo_get) +3. 🗣 Commented on [#1404](https://github.com/rpm-software-management/ci-dnf-stack/pull/1404#issuecomment-1803752478) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +4. 🗣 Commented on [#2145](https://github.com/astropy/astroquery/pull/2145#issuecomment-1803659022) in [astropy/astroquery](https://github.com/astropy/astroquery) +5. 🗣 Commented on [#1013](https://github.com/aramis-lab/clinica/pull/1013#issuecomment-1803636167) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/SoM/pull/1#issuecomment-1803231369) in [tuhinmallick/SoM](https://github.com/tuhinmallick/SoM) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/fforma/pull/1#issuecomment-1802939548) in [tuhinmallick/fforma](https://github.com/tuhinmallick/fforma) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/esrnn_torch/pull/1#issuecomment-1802935096) in [tuhinmallick/esrnn_torch](https://github.com/tuhinmallick/esrnn_torch) +9. 🗣 Commented on [#511](https://github.com/njzjz/reacnetgenerator/pull/511#issuecomment-1802721453) in [njzjz/reacnetgenerator](https://github.com/njzjz/reacnetgenerator) +10. 🗣 Commented on [#1397](https://github.com/spacetelescope/jwql/pull/1397#issuecomment-1802701841) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 25de39ce0f1155bc922ae187a2703fc1210b7db2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Nov 2023 16:21:07 +0000 Subject: [PATCH 0596/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 73e049d3..98b4261f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5305](https://github.com/rhinstaller/anaconda/pull/5305#issuecomment-1803930443) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#21](https://github.com/dvolgyes/zenodo_get/pull/21#issuecomment-1803818483) in [dvolgyes/zenodo_get](https://github.com/dvolgyes/zenodo_get) -3. 🗣 Commented on [#1404](https://github.com/rpm-software-management/ci-dnf-stack/pull/1404#issuecomment-1803752478) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -4. 🗣 Commented on [#2145](https://github.com/astropy/astroquery/pull/2145#issuecomment-1803659022) in [astropy/astroquery](https://github.com/astropy/astroquery) -5. 🗣 Commented on [#1013](https://github.com/aramis-lab/clinica/pull/1013#issuecomment-1803636167) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/SoM/pull/1#issuecomment-1803231369) in [tuhinmallick/SoM](https://github.com/tuhinmallick/SoM) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/fforma/pull/1#issuecomment-1802939548) in [tuhinmallick/fforma](https://github.com/tuhinmallick/fforma) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/esrnn_torch/pull/1#issuecomment-1802935096) in [tuhinmallick/esrnn_torch](https://github.com/tuhinmallick/esrnn_torch) -9. 🗣 Commented on [#511](https://github.com/njzjz/reacnetgenerator/pull/511#issuecomment-1802721453) in [njzjz/reacnetgenerator](https://github.com/njzjz/reacnetgenerator) -10. 🗣 Commented on [#1397](https://github.com/spacetelescope/jwql/pull/1397#issuecomment-1802701841) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#410](https://github.com/xarray-contrib/xskillscore/pull/410#issuecomment-1804132749) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) +2. 🗣 Commented on [#5305](https://github.com/rhinstaller/anaconda/pull/5305#issuecomment-1803930443) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#21](https://github.com/dvolgyes/zenodo_get/pull/21#issuecomment-1803818483) in [dvolgyes/zenodo_get](https://github.com/dvolgyes/zenodo_get) +4. 🗣 Commented on [#1404](https://github.com/rpm-software-management/ci-dnf-stack/pull/1404#issuecomment-1803752478) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +5. 🗣 Commented on [#2145](https://github.com/astropy/astroquery/pull/2145#issuecomment-1803659022) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#1013](https://github.com/aramis-lab/clinica/pull/1013#issuecomment-1803636167) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/SoM/pull/1#issuecomment-1803231369) in [tuhinmallick/SoM](https://github.com/tuhinmallick/SoM) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/fforma/pull/1#issuecomment-1802939548) in [tuhinmallick/fforma](https://github.com/tuhinmallick/fforma) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/esrnn_torch/pull/1#issuecomment-1802935096) in [tuhinmallick/esrnn_torch](https://github.com/tuhinmallick/esrnn_torch) +10. 🗣 Commented on [#511](https://github.com/njzjz/reacnetgenerator/pull/511#issuecomment-1802721453) in [njzjz/reacnetgenerator](https://github.com/njzjz/reacnetgenerator) From 80135ad8d8db74a0b885c677837d5220e44d9c13 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Nov 2023 17:14:09 +0000 Subject: [PATCH 0597/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 98b4261f..3028df94 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#410](https://github.com/xarray-contrib/xskillscore/pull/410#issuecomment-1804132749) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) -2. 🗣 Commented on [#5305](https://github.com/rhinstaller/anaconda/pull/5305#issuecomment-1803930443) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#21](https://github.com/dvolgyes/zenodo_get/pull/21#issuecomment-1803818483) in [dvolgyes/zenodo_get](https://github.com/dvolgyes/zenodo_get) -4. 🗣 Commented on [#1404](https://github.com/rpm-software-management/ci-dnf-stack/pull/1404#issuecomment-1803752478) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -5. 🗣 Commented on [#2145](https://github.com/astropy/astroquery/pull/2145#issuecomment-1803659022) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#1013](https://github.com/aramis-lab/clinica/pull/1013#issuecomment-1803636167) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/SoM/pull/1#issuecomment-1803231369) in [tuhinmallick/SoM](https://github.com/tuhinmallick/SoM) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/fforma/pull/1#issuecomment-1802939548) in [tuhinmallick/fforma](https://github.com/tuhinmallick/fforma) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/esrnn_torch/pull/1#issuecomment-1802935096) in [tuhinmallick/esrnn_torch](https://github.com/tuhinmallick/esrnn_torch) -10. 🗣 Commented on [#511](https://github.com/njzjz/reacnetgenerator/pull/511#issuecomment-1802721453) in [njzjz/reacnetgenerator](https://github.com/njzjz/reacnetgenerator) +1. 🗣 Commented on [#862](https://github.com/PyThaiNLP/pythainlp/pull/862#issuecomment-1804180874) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#410](https://github.com/xarray-contrib/xskillscore/pull/410#issuecomment-1804132749) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) +3. 🗣 Commented on [#5305](https://github.com/rhinstaller/anaconda/pull/5305#issuecomment-1803930443) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#21](https://github.com/dvolgyes/zenodo_get/pull/21#issuecomment-1803818483) in [dvolgyes/zenodo_get](https://github.com/dvolgyes/zenodo_get) +5. 🗣 Commented on [#1404](https://github.com/rpm-software-management/ci-dnf-stack/pull/1404#issuecomment-1803752478) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +6. 🗣 Commented on [#2145](https://github.com/astropy/astroquery/pull/2145#issuecomment-1803659022) in [astropy/astroquery](https://github.com/astropy/astroquery) +7. 🗣 Commented on [#1013](https://github.com/aramis-lab/clinica/pull/1013#issuecomment-1803636167) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/SoM/pull/1#issuecomment-1803231369) in [tuhinmallick/SoM](https://github.com/tuhinmallick/SoM) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/fforma/pull/1#issuecomment-1802939548) in [tuhinmallick/fforma](https://github.com/tuhinmallick/fforma) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/esrnn_torch/pull/1#issuecomment-1802935096) in [tuhinmallick/esrnn_torch](https://github.com/tuhinmallick/esrnn_torch) From 44c54fa8b62f26f8a0bf8d126f896e85b4e90207 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Nov 2023 17:37:18 +0000 Subject: [PATCH 0598/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3028df94..3c445278 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#862](https://github.com/PyThaiNLP/pythainlp/pull/862#issuecomment-1804180874) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#410](https://github.com/xarray-contrib/xskillscore/pull/410#issuecomment-1804132749) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) -3. 🗣 Commented on [#5305](https://github.com/rhinstaller/anaconda/pull/5305#issuecomment-1803930443) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#21](https://github.com/dvolgyes/zenodo_get/pull/21#issuecomment-1803818483) in [dvolgyes/zenodo_get](https://github.com/dvolgyes/zenodo_get) -5. 🗣 Commented on [#1404](https://github.com/rpm-software-management/ci-dnf-stack/pull/1404#issuecomment-1803752478) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -6. 🗣 Commented on [#2145](https://github.com/astropy/astroquery/pull/2145#issuecomment-1803659022) in [astropy/astroquery](https://github.com/astropy/astroquery) -7. 🗣 Commented on [#1013](https://github.com/aramis-lab/clinica/pull/1013#issuecomment-1803636167) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/SoM/pull/1#issuecomment-1803231369) in [tuhinmallick/SoM](https://github.com/tuhinmallick/SoM) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/fforma/pull/1#issuecomment-1802939548) in [tuhinmallick/fforma](https://github.com/tuhinmallick/fforma) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/esrnn_torch/pull/1#issuecomment-1802935096) in [tuhinmallick/esrnn_torch](https://github.com/tuhinmallick/esrnn_torch) +1. 🗣 Commented on [#47](https://github.com/eastgenomics/eris/pull/47#issuecomment-1804262951) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#862](https://github.com/PyThaiNLP/pythainlp/pull/862#issuecomment-1804180874) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#410](https://github.com/xarray-contrib/xskillscore/pull/410#issuecomment-1804132749) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) +4. 🗣 Commented on [#5305](https://github.com/rhinstaller/anaconda/pull/5305#issuecomment-1803930443) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#21](https://github.com/dvolgyes/zenodo_get/pull/21#issuecomment-1803818483) in [dvolgyes/zenodo_get](https://github.com/dvolgyes/zenodo_get) +6. 🗣 Commented on [#1404](https://github.com/rpm-software-management/ci-dnf-stack/pull/1404#issuecomment-1803752478) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +7. 🗣 Commented on [#2145](https://github.com/astropy/astroquery/pull/2145#issuecomment-1803659022) in [astropy/astroquery](https://github.com/astropy/astroquery) +8. 🗣 Commented on [#1013](https://github.com/aramis-lab/clinica/pull/1013#issuecomment-1803636167) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/SoM/pull/1#issuecomment-1803231369) in [tuhinmallick/SoM](https://github.com/tuhinmallick/SoM) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/fforma/pull/1#issuecomment-1802939548) in [tuhinmallick/fforma](https://github.com/tuhinmallick/fforma) From 3c8df0615170fe00852d6874f1e6f77c7285e62d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Nov 2023 18:20:11 +0000 Subject: [PATCH 0599/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3c445278..e93e45b6 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#47](https://github.com/eastgenomics/eris/pull/47#issuecomment-1804262951) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#862](https://github.com/PyThaiNLP/pythainlp/pull/862#issuecomment-1804180874) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#410](https://github.com/xarray-contrib/xskillscore/pull/410#issuecomment-1804132749) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) -4. 🗣 Commented on [#5305](https://github.com/rhinstaller/anaconda/pull/5305#issuecomment-1803930443) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#21](https://github.com/dvolgyes/zenodo_get/pull/21#issuecomment-1803818483) in [dvolgyes/zenodo_get](https://github.com/dvolgyes/zenodo_get) -6. 🗣 Commented on [#1404](https://github.com/rpm-software-management/ci-dnf-stack/pull/1404#issuecomment-1803752478) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -7. 🗣 Commented on [#2145](https://github.com/astropy/astroquery/pull/2145#issuecomment-1803659022) in [astropy/astroquery](https://github.com/astropy/astroquery) -8. 🗣 Commented on [#1013](https://github.com/aramis-lab/clinica/pull/1013#issuecomment-1803636167) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/SoM/pull/1#issuecomment-1803231369) in [tuhinmallick/SoM](https://github.com/tuhinmallick/SoM) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/fforma/pull/1#issuecomment-1802939548) in [tuhinmallick/fforma](https://github.com/tuhinmallick/fforma) +1. 🗣 Commented on [#26](https://github.com/bento-dbaas/vip-provider/pull/26#issuecomment-1804294659) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +2. 🗣 Commented on [#49](https://github.com/bento-dbaas/volume-provider/pull/49#issuecomment-1804294615) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) +3. 🗣 Commented on [#61](https://github.com/bento-dbaas/host-provider/pull/61#issuecomment-1804294508) in [bento-dbaas/host-provider](https://github.com/bento-dbaas/host-provider) +4. 🗣 Commented on [#47](https://github.com/eastgenomics/eris/pull/47#issuecomment-1804262951) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#862](https://github.com/PyThaiNLP/pythainlp/pull/862#issuecomment-1804180874) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#410](https://github.com/xarray-contrib/xskillscore/pull/410#issuecomment-1804132749) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) +7. 🗣 Commented on [#5305](https://github.com/rhinstaller/anaconda/pull/5305#issuecomment-1803930443) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#21](https://github.com/dvolgyes/zenodo_get/pull/21#issuecomment-1803818483) in [dvolgyes/zenodo_get](https://github.com/dvolgyes/zenodo_get) +9. 🗣 Commented on [#1404](https://github.com/rpm-software-management/ci-dnf-stack/pull/1404#issuecomment-1803752478) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +10. 🗣 Commented on [#2145](https://github.com/astropy/astroquery/pull/2145#issuecomment-1803659022) in [astropy/astroquery](https://github.com/astropy/astroquery) From 861b3c871ac2a8c63ccc190cdbe4ea0e27fafe41 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Nov 2023 22:14:41 +0000 Subject: [PATCH 0600/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e93e45b6..b750afe1 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#26](https://github.com/bento-dbaas/vip-provider/pull/26#issuecomment-1804294659) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) -2. 🗣 Commented on [#49](https://github.com/bento-dbaas/volume-provider/pull/49#issuecomment-1804294615) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) -3. 🗣 Commented on [#61](https://github.com/bento-dbaas/host-provider/pull/61#issuecomment-1804294508) in [bento-dbaas/host-provider](https://github.com/bento-dbaas/host-provider) -4. 🗣 Commented on [#47](https://github.com/eastgenomics/eris/pull/47#issuecomment-1804262951) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#862](https://github.com/PyThaiNLP/pythainlp/pull/862#issuecomment-1804180874) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#410](https://github.com/xarray-contrib/xskillscore/pull/410#issuecomment-1804132749) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) -7. 🗣 Commented on [#5305](https://github.com/rhinstaller/anaconda/pull/5305#issuecomment-1803930443) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#21](https://github.com/dvolgyes/zenodo_get/pull/21#issuecomment-1803818483) in [dvolgyes/zenodo_get](https://github.com/dvolgyes/zenodo_get) -9. 🗣 Commented on [#1404](https://github.com/rpm-software-management/ci-dnf-stack/pull/1404#issuecomment-1803752478) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -10. 🗣 Commented on [#2145](https://github.com/astropy/astroquery/pull/2145#issuecomment-1803659022) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/streamlit-app/pull/1#issuecomment-1804762595) in [tuhinmallick/streamlit-app](https://github.com/tuhinmallick/streamlit-app) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-api/pull/1#issuecomment-1804762247) in [tuhinmallick/llm-api](https://github.com/tuhinmallick/llm-api) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-app-/pull/1#issuecomment-1804761538) in [tuhinmallick/llm-app-](https://github.com/tuhinmallick/llm-app-) +4. 🗣 Commented on [#26](https://github.com/bento-dbaas/vip-provider/pull/26#issuecomment-1804294659) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +5. 🗣 Commented on [#49](https://github.com/bento-dbaas/volume-provider/pull/49#issuecomment-1804294615) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) +6. 🗣 Commented on [#61](https://github.com/bento-dbaas/host-provider/pull/61#issuecomment-1804294508) in [bento-dbaas/host-provider](https://github.com/bento-dbaas/host-provider) +7. 🗣 Commented on [#47](https://github.com/eastgenomics/eris/pull/47#issuecomment-1804262951) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#862](https://github.com/PyThaiNLP/pythainlp/pull/862#issuecomment-1804180874) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#410](https://github.com/xarray-contrib/xskillscore/pull/410#issuecomment-1804132749) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) +10. 🗣 Commented on [#5305](https://github.com/rhinstaller/anaconda/pull/5305#issuecomment-1803930443) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 402f680e20967f82dbc477eab3816571fb5b79dd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Nov 2023 22:37:15 +0000 Subject: [PATCH 0601/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b750afe1..235b026c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/streamlit-app/pull/1#issuecomment-1804762595) in [tuhinmallick/streamlit-app](https://github.com/tuhinmallick/streamlit-app) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-api/pull/1#issuecomment-1804762247) in [tuhinmallick/llm-api](https://github.com/tuhinmallick/llm-api) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-app-/pull/1#issuecomment-1804761538) in [tuhinmallick/llm-app-](https://github.com/tuhinmallick/llm-app-) -4. 🗣 Commented on [#26](https://github.com/bento-dbaas/vip-provider/pull/26#issuecomment-1804294659) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) -5. 🗣 Commented on [#49](https://github.com/bento-dbaas/volume-provider/pull/49#issuecomment-1804294615) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) -6. 🗣 Commented on [#61](https://github.com/bento-dbaas/host-provider/pull/61#issuecomment-1804294508) in [bento-dbaas/host-provider](https://github.com/bento-dbaas/host-provider) -7. 🗣 Commented on [#47](https://github.com/eastgenomics/eris/pull/47#issuecomment-1804262951) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#862](https://github.com/PyThaiNLP/pythainlp/pull/862#issuecomment-1804180874) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#410](https://github.com/xarray-contrib/xskillscore/pull/410#issuecomment-1804132749) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) -10. 🗣 Commented on [#5305](https://github.com/rhinstaller/anaconda/pull/5305#issuecomment-1803930443) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#577](https://github.com/HEXRD/hexrd/pull/577#issuecomment-1804782911) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/streamlit-app/pull/1#issuecomment-1804762595) in [tuhinmallick/streamlit-app](https://github.com/tuhinmallick/streamlit-app) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-api/pull/1#issuecomment-1804762247) in [tuhinmallick/llm-api](https://github.com/tuhinmallick/llm-api) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-app-/pull/1#issuecomment-1804761538) in [tuhinmallick/llm-app-](https://github.com/tuhinmallick/llm-app-) +5. 🗣 Commented on [#26](https://github.com/bento-dbaas/vip-provider/pull/26#issuecomment-1804294659) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +6. 🗣 Commented on [#49](https://github.com/bento-dbaas/volume-provider/pull/49#issuecomment-1804294615) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) +7. 🗣 Commented on [#61](https://github.com/bento-dbaas/host-provider/pull/61#issuecomment-1804294508) in [bento-dbaas/host-provider](https://github.com/bento-dbaas/host-provider) +8. 🗣 Commented on [#47](https://github.com/eastgenomics/eris/pull/47#issuecomment-1804262951) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#862](https://github.com/PyThaiNLP/pythainlp/pull/862#issuecomment-1804180874) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +10. 🗣 Commented on [#410](https://github.com/xarray-contrib/xskillscore/pull/410#issuecomment-1804132749) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) From 54bd379584079600ca42fb93b10968a357494b03 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Nov 2023 23:16:34 +0000 Subject: [PATCH 0602/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 235b026c..17069d00 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#577](https://github.com/HEXRD/hexrd/pull/577#issuecomment-1804782911) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/streamlit-app/pull/1#issuecomment-1804762595) in [tuhinmallick/streamlit-app](https://github.com/tuhinmallick/streamlit-app) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-api/pull/1#issuecomment-1804762247) in [tuhinmallick/llm-api](https://github.com/tuhinmallick/llm-api) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-app-/pull/1#issuecomment-1804761538) in [tuhinmallick/llm-app-](https://github.com/tuhinmallick/llm-app-) -5. 🗣 Commented on [#26](https://github.com/bento-dbaas/vip-provider/pull/26#issuecomment-1804294659) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) -6. 🗣 Commented on [#49](https://github.com/bento-dbaas/volume-provider/pull/49#issuecomment-1804294615) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) -7. 🗣 Commented on [#61](https://github.com/bento-dbaas/host-provider/pull/61#issuecomment-1804294508) in [bento-dbaas/host-provider](https://github.com/bento-dbaas/host-provider) -8. 🗣 Commented on [#47](https://github.com/eastgenomics/eris/pull/47#issuecomment-1804262951) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#862](https://github.com/PyThaiNLP/pythainlp/pull/862#issuecomment-1804180874) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -10. 🗣 Commented on [#410](https://github.com/xarray-contrib/xskillscore/pull/410#issuecomment-1804132749) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) +1. 🗣 Commented on [#620](https://github.com/OpenFreeEnergy/openfe/pull/620#issuecomment-1804795582) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#577](https://github.com/HEXRD/hexrd/pull/577#issuecomment-1804782911) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/streamlit-app/pull/1#issuecomment-1804762595) in [tuhinmallick/streamlit-app](https://github.com/tuhinmallick/streamlit-app) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-api/pull/1#issuecomment-1804762247) in [tuhinmallick/llm-api](https://github.com/tuhinmallick/llm-api) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-app-/pull/1#issuecomment-1804761538) in [tuhinmallick/llm-app-](https://github.com/tuhinmallick/llm-app-) +6. 🗣 Commented on [#26](https://github.com/bento-dbaas/vip-provider/pull/26#issuecomment-1804294659) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +7. 🗣 Commented on [#49](https://github.com/bento-dbaas/volume-provider/pull/49#issuecomment-1804294615) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) +8. 🗣 Commented on [#61](https://github.com/bento-dbaas/host-provider/pull/61#issuecomment-1804294508) in [bento-dbaas/host-provider](https://github.com/bento-dbaas/host-provider) +9. 🗣 Commented on [#47](https://github.com/eastgenomics/eris/pull/47#issuecomment-1804262951) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#862](https://github.com/PyThaiNLP/pythainlp/pull/862#issuecomment-1804180874) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) From 6f4dde4b7593158653889ed8b75b4484017d042c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Nov 2023 01:10:58 +0000 Subject: [PATCH 0603/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 17069d00..6322bebd 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#620](https://github.com/OpenFreeEnergy/openfe/pull/620#issuecomment-1804795582) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#577](https://github.com/HEXRD/hexrd/pull/577#issuecomment-1804782911) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/streamlit-app/pull/1#issuecomment-1804762595) in [tuhinmallick/streamlit-app](https://github.com/tuhinmallick/streamlit-app) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-api/pull/1#issuecomment-1804762247) in [tuhinmallick/llm-api](https://github.com/tuhinmallick/llm-api) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-app-/pull/1#issuecomment-1804761538) in [tuhinmallick/llm-app-](https://github.com/tuhinmallick/llm-app-) -6. 🗣 Commented on [#26](https://github.com/bento-dbaas/vip-provider/pull/26#issuecomment-1804294659) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) -7. 🗣 Commented on [#49](https://github.com/bento-dbaas/volume-provider/pull/49#issuecomment-1804294615) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) -8. 🗣 Commented on [#61](https://github.com/bento-dbaas/host-provider/pull/61#issuecomment-1804294508) in [bento-dbaas/host-provider](https://github.com/bento-dbaas/host-provider) -9. 🗣 Commented on [#47](https://github.com/eastgenomics/eris/pull/47#issuecomment-1804262951) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#862](https://github.com/PyThaiNLP/pythainlp/pull/862#issuecomment-1804180874) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/gorilla/pull/1#issuecomment-1804903837) in [tuhinmallick/gorilla](https://github.com/tuhinmallick/gorilla) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN_/pull/1#issuecomment-1804901146) in [tuhinmallick/DragGAN_](https://github.com/tuhinmallick/DragGAN_) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN/pull/1#issuecomment-1804900497) in [tuhinmallick/DragGAN](https://github.com/tuhinmallick/DragGAN) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnomalyGPT/pull/1#issuecomment-1804898784) in [tuhinmallick/AnomalyGPT](https://github.com/tuhinmallick/AnomalyGPT) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/FastSAM/pull/1#issuecomment-1804895098) in [tuhinmallick/FastSAM](https://github.com/tuhinmallick/FastSAM) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/sd-webui-roop/pull/1#issuecomment-1804893340) in [tuhinmallick/sd-webui-roop](https://github.com/tuhinmallick/sd-webui-roop) +7. 🗣 Commented on [#620](https://github.com/OpenFreeEnergy/openfe/pull/620#issuecomment-1804795582) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#577](https://github.com/HEXRD/hexrd/pull/577#issuecomment-1804782911) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/streamlit-app/pull/1#issuecomment-1804762595) in [tuhinmallick/streamlit-app](https://github.com/tuhinmallick/streamlit-app) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-api/pull/1#issuecomment-1804762247) in [tuhinmallick/llm-api](https://github.com/tuhinmallick/llm-api) From ec19ac10255fc86293c84d4193f1cb6a7c38a830 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Nov 2023 02:06:31 +0000 Subject: [PATCH 0604/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6322bebd..1709e029 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/gorilla/pull/1#issuecomment-1804903837) in [tuhinmallick/gorilla](https://github.com/tuhinmallick/gorilla) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN_/pull/1#issuecomment-1804901146) in [tuhinmallick/DragGAN_](https://github.com/tuhinmallick/DragGAN_) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN/pull/1#issuecomment-1804900497) in [tuhinmallick/DragGAN](https://github.com/tuhinmallick/DragGAN) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnomalyGPT/pull/1#issuecomment-1804898784) in [tuhinmallick/AnomalyGPT](https://github.com/tuhinmallick/AnomalyGPT) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/FastSAM/pull/1#issuecomment-1804895098) in [tuhinmallick/FastSAM](https://github.com/tuhinmallick/FastSAM) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/sd-webui-roop/pull/1#issuecomment-1804893340) in [tuhinmallick/sd-webui-roop](https://github.com/tuhinmallick/sd-webui-roop) -7. 🗣 Commented on [#620](https://github.com/OpenFreeEnergy/openfe/pull/620#issuecomment-1804795582) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#577](https://github.com/HEXRD/hexrd/pull/577#issuecomment-1804782911) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/streamlit-app/pull/1#issuecomment-1804762595) in [tuhinmallick/streamlit-app](https://github.com/tuhinmallick/streamlit-app) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-api/pull/1#issuecomment-1804762247) in [tuhinmallick/llm-api](https://github.com/tuhinmallick/llm-api) +1. 🗣 Commented on [#21511](https://github.com/spyder-ide/spyder/pull/21511#issuecomment-1804962201) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#4350](https://github.com/uwcirg/truenth-portal/pull/4350#issuecomment-1804930265) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/gorilla/pull/1#issuecomment-1804903837) in [tuhinmallick/gorilla](https://github.com/tuhinmallick/gorilla) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN_/pull/1#issuecomment-1804901146) in [tuhinmallick/DragGAN_](https://github.com/tuhinmallick/DragGAN_) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN/pull/1#issuecomment-1804900497) in [tuhinmallick/DragGAN](https://github.com/tuhinmallick/DragGAN) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnomalyGPT/pull/1#issuecomment-1804898784) in [tuhinmallick/AnomalyGPT](https://github.com/tuhinmallick/AnomalyGPT) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/FastSAM/pull/1#issuecomment-1804895098) in [tuhinmallick/FastSAM](https://github.com/tuhinmallick/FastSAM) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/sd-webui-roop/pull/1#issuecomment-1804893340) in [tuhinmallick/sd-webui-roop](https://github.com/tuhinmallick/sd-webui-roop) +9. 🗣 Commented on [#620](https://github.com/OpenFreeEnergy/openfe/pull/620#issuecomment-1804795582) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#577](https://github.com/HEXRD/hexrd/pull/577#issuecomment-1804782911) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) From f2d2e83b9ebe1f9417d14184b1dba123c32a8001 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Nov 2023 07:37:17 +0000 Subject: [PATCH 0605/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1709e029..fb5eeecb 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#21511](https://github.com/spyder-ide/spyder/pull/21511#issuecomment-1804962201) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#4350](https://github.com/uwcirg/truenth-portal/pull/4350#issuecomment-1804930265) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/gorilla/pull/1#issuecomment-1804903837) in [tuhinmallick/gorilla](https://github.com/tuhinmallick/gorilla) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN_/pull/1#issuecomment-1804901146) in [tuhinmallick/DragGAN_](https://github.com/tuhinmallick/DragGAN_) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN/pull/1#issuecomment-1804900497) in [tuhinmallick/DragGAN](https://github.com/tuhinmallick/DragGAN) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnomalyGPT/pull/1#issuecomment-1804898784) in [tuhinmallick/AnomalyGPT](https://github.com/tuhinmallick/AnomalyGPT) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/FastSAM/pull/1#issuecomment-1804895098) in [tuhinmallick/FastSAM](https://github.com/tuhinmallick/FastSAM) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/sd-webui-roop/pull/1#issuecomment-1804893340) in [tuhinmallick/sd-webui-roop](https://github.com/tuhinmallick/sd-webui-roop) -9. 🗣 Commented on [#620](https://github.com/OpenFreeEnergy/openfe/pull/620#issuecomment-1804795582) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#577](https://github.com/HEXRD/hexrd/pull/577#issuecomment-1804782911) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/BetterOCR/pull/1#issuecomment-1805221098) in [tuhinmallick/BetterOCR](https://github.com/tuhinmallick/BetterOCR) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Yi/pull/1#issuecomment-1805216249) in [tuhinmallick/Yi](https://github.com/tuhinmallick/Yi) +3. 🗣 Commented on [#21511](https://github.com/spyder-ide/spyder/pull/21511#issuecomment-1804962201) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#4350](https://github.com/uwcirg/truenth-portal/pull/4350#issuecomment-1804930265) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/gorilla/pull/1#issuecomment-1804903837) in [tuhinmallick/gorilla](https://github.com/tuhinmallick/gorilla) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN_/pull/1#issuecomment-1804901146) in [tuhinmallick/DragGAN_](https://github.com/tuhinmallick/DragGAN_) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN/pull/1#issuecomment-1804900497) in [tuhinmallick/DragGAN](https://github.com/tuhinmallick/DragGAN) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnomalyGPT/pull/1#issuecomment-1804898784) in [tuhinmallick/AnomalyGPT](https://github.com/tuhinmallick/AnomalyGPT) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/FastSAM/pull/1#issuecomment-1804895098) in [tuhinmallick/FastSAM](https://github.com/tuhinmallick/FastSAM) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/sd-webui-roop/pull/1#issuecomment-1804893340) in [tuhinmallick/sd-webui-roop](https://github.com/tuhinmallick/sd-webui-roop) From 055b6b72306bb2a978dc588f7e1ff92f1dac9563 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Nov 2023 12:30:40 +0000 Subject: [PATCH 0606/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fb5eeecb..cff84593 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/BetterOCR/pull/1#issuecomment-1805221098) in [tuhinmallick/BetterOCR](https://github.com/tuhinmallick/BetterOCR) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Yi/pull/1#issuecomment-1805216249) in [tuhinmallick/Yi](https://github.com/tuhinmallick/Yi) -3. 🗣 Commented on [#21511](https://github.com/spyder-ide/spyder/pull/21511#issuecomment-1804962201) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#4350](https://github.com/uwcirg/truenth-portal/pull/4350#issuecomment-1804930265) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/gorilla/pull/1#issuecomment-1804903837) in [tuhinmallick/gorilla](https://github.com/tuhinmallick/gorilla) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN_/pull/1#issuecomment-1804901146) in [tuhinmallick/DragGAN_](https://github.com/tuhinmallick/DragGAN_) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN/pull/1#issuecomment-1804900497) in [tuhinmallick/DragGAN](https://github.com/tuhinmallick/DragGAN) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnomalyGPT/pull/1#issuecomment-1804898784) in [tuhinmallick/AnomalyGPT](https://github.com/tuhinmallick/AnomalyGPT) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/FastSAM/pull/1#issuecomment-1804895098) in [tuhinmallick/FastSAM](https://github.com/tuhinmallick/FastSAM) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/sd-webui-roop/pull/1#issuecomment-1804893340) in [tuhinmallick/sd-webui-roop](https://github.com/tuhinmallick/sd-webui-roop) +1. 🗣 Commented on [#19](https://github.com/ITMO-NSS-team/pytsbe/pull/19#issuecomment-1805641081) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/BetterOCR/pull/1#issuecomment-1805221098) in [tuhinmallick/BetterOCR](https://github.com/tuhinmallick/BetterOCR) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Yi/pull/1#issuecomment-1805216249) in [tuhinmallick/Yi](https://github.com/tuhinmallick/Yi) +4. 🗣 Commented on [#21511](https://github.com/spyder-ide/spyder/pull/21511#issuecomment-1804962201) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#4350](https://github.com/uwcirg/truenth-portal/pull/4350#issuecomment-1804930265) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/gorilla/pull/1#issuecomment-1804903837) in [tuhinmallick/gorilla](https://github.com/tuhinmallick/gorilla) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN_/pull/1#issuecomment-1804901146) in [tuhinmallick/DragGAN_](https://github.com/tuhinmallick/DragGAN_) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN/pull/1#issuecomment-1804900497) in [tuhinmallick/DragGAN](https://github.com/tuhinmallick/DragGAN) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnomalyGPT/pull/1#issuecomment-1804898784) in [tuhinmallick/AnomalyGPT](https://github.com/tuhinmallick/AnomalyGPT) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/FastSAM/pull/1#issuecomment-1804895098) in [tuhinmallick/FastSAM](https://github.com/tuhinmallick/FastSAM) From e952e64e3757b14fef7b3d1514b1a51b282b4297 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Nov 2023 15:16:25 +0000 Subject: [PATCH 0607/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cff84593..eef5a359 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#19](https://github.com/ITMO-NSS-team/pytsbe/pull/19#issuecomment-1805641081) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/BetterOCR/pull/1#issuecomment-1805221098) in [tuhinmallick/BetterOCR](https://github.com/tuhinmallick/BetterOCR) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Yi/pull/1#issuecomment-1805216249) in [tuhinmallick/Yi](https://github.com/tuhinmallick/Yi) -4. 🗣 Commented on [#21511](https://github.com/spyder-ide/spyder/pull/21511#issuecomment-1804962201) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#4350](https://github.com/uwcirg/truenth-portal/pull/4350#issuecomment-1804930265) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/gorilla/pull/1#issuecomment-1804903837) in [tuhinmallick/gorilla](https://github.com/tuhinmallick/gorilla) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN_/pull/1#issuecomment-1804901146) in [tuhinmallick/DragGAN_](https://github.com/tuhinmallick/DragGAN_) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN/pull/1#issuecomment-1804900497) in [tuhinmallick/DragGAN](https://github.com/tuhinmallick/DragGAN) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnomalyGPT/pull/1#issuecomment-1804898784) in [tuhinmallick/AnomalyGPT](https://github.com/tuhinmallick/AnomalyGPT) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/FastSAM/pull/1#issuecomment-1804895098) in [tuhinmallick/FastSAM](https://github.com/tuhinmallick/FastSAM) +1. 🗣 Commented on [#48](https://github.com/eastgenomics/eris/pull/48#issuecomment-1805884936) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#19](https://github.com/ITMO-NSS-team/pytsbe/pull/19#issuecomment-1805641081) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/BetterOCR/pull/1#issuecomment-1805221098) in [tuhinmallick/BetterOCR](https://github.com/tuhinmallick/BetterOCR) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Yi/pull/1#issuecomment-1805216249) in [tuhinmallick/Yi](https://github.com/tuhinmallick/Yi) +5. 🗣 Commented on [#21511](https://github.com/spyder-ide/spyder/pull/21511#issuecomment-1804962201) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#4350](https://github.com/uwcirg/truenth-portal/pull/4350#issuecomment-1804930265) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/gorilla/pull/1#issuecomment-1804903837) in [tuhinmallick/gorilla](https://github.com/tuhinmallick/gorilla) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN_/pull/1#issuecomment-1804901146) in [tuhinmallick/DragGAN_](https://github.com/tuhinmallick/DragGAN_) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN/pull/1#issuecomment-1804900497) in [tuhinmallick/DragGAN](https://github.com/tuhinmallick/DragGAN) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnomalyGPT/pull/1#issuecomment-1804898784) in [tuhinmallick/AnomalyGPT](https://github.com/tuhinmallick/AnomalyGPT) From df33623eb991bac819572b487cf993df1c710f0f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Nov 2023 16:20:41 +0000 Subject: [PATCH 0608/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index eef5a359..6d4af7e7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#48](https://github.com/eastgenomics/eris/pull/48#issuecomment-1805884936) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#19](https://github.com/ITMO-NSS-team/pytsbe/pull/19#issuecomment-1805641081) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/BetterOCR/pull/1#issuecomment-1805221098) in [tuhinmallick/BetterOCR](https://github.com/tuhinmallick/BetterOCR) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Yi/pull/1#issuecomment-1805216249) in [tuhinmallick/Yi](https://github.com/tuhinmallick/Yi) -5. 🗣 Commented on [#21511](https://github.com/spyder-ide/spyder/pull/21511#issuecomment-1804962201) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#4350](https://github.com/uwcirg/truenth-portal/pull/4350#issuecomment-1804930265) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/gorilla/pull/1#issuecomment-1804903837) in [tuhinmallick/gorilla](https://github.com/tuhinmallick/gorilla) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN_/pull/1#issuecomment-1804901146) in [tuhinmallick/DragGAN_](https://github.com/tuhinmallick/DragGAN_) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN/pull/1#issuecomment-1804900497) in [tuhinmallick/DragGAN](https://github.com/tuhinmallick/DragGAN) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnomalyGPT/pull/1#issuecomment-1804898784) in [tuhinmallick/AnomalyGPT](https://github.com/tuhinmallick/AnomalyGPT) +1. 🗣 Commented on [#60](https://github.com/cirKITers/Quafel/pull/60#issuecomment-1805967440) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +2. 🗣 Commented on [#48](https://github.com/eastgenomics/eris/pull/48#issuecomment-1805884936) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#19](https://github.com/ITMO-NSS-team/pytsbe/pull/19#issuecomment-1805641081) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/BetterOCR/pull/1#issuecomment-1805221098) in [tuhinmallick/BetterOCR](https://github.com/tuhinmallick/BetterOCR) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Yi/pull/1#issuecomment-1805216249) in [tuhinmallick/Yi](https://github.com/tuhinmallick/Yi) +6. 🗣 Commented on [#21511](https://github.com/spyder-ide/spyder/pull/21511#issuecomment-1804962201) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#4350](https://github.com/uwcirg/truenth-portal/pull/4350#issuecomment-1804930265) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/gorilla/pull/1#issuecomment-1804903837) in [tuhinmallick/gorilla](https://github.com/tuhinmallick/gorilla) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN_/pull/1#issuecomment-1804901146) in [tuhinmallick/DragGAN_](https://github.com/tuhinmallick/DragGAN_) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN/pull/1#issuecomment-1804900497) in [tuhinmallick/DragGAN](https://github.com/tuhinmallick/DragGAN) From 53c6d6ea1c7ba4a7623d38e59d65fc692868076b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Nov 2023 18:37:29 +0000 Subject: [PATCH 0609/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6d4af7e7..bbcd6c8e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#60](https://github.com/cirKITers/Quafel/pull/60#issuecomment-1805967440) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -2. 🗣 Commented on [#48](https://github.com/eastgenomics/eris/pull/48#issuecomment-1805884936) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#19](https://github.com/ITMO-NSS-team/pytsbe/pull/19#issuecomment-1805641081) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/BetterOCR/pull/1#issuecomment-1805221098) in [tuhinmallick/BetterOCR](https://github.com/tuhinmallick/BetterOCR) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Yi/pull/1#issuecomment-1805216249) in [tuhinmallick/Yi](https://github.com/tuhinmallick/Yi) -6. 🗣 Commented on [#21511](https://github.com/spyder-ide/spyder/pull/21511#issuecomment-1804962201) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#4350](https://github.com/uwcirg/truenth-portal/pull/4350#issuecomment-1804930265) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/gorilla/pull/1#issuecomment-1804903837) in [tuhinmallick/gorilla](https://github.com/tuhinmallick/gorilla) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN_/pull/1#issuecomment-1804901146) in [tuhinmallick/DragGAN_](https://github.com/tuhinmallick/DragGAN_) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/DragGAN/pull/1#issuecomment-1804900497) in [tuhinmallick/DragGAN](https://github.com/tuhinmallick/DragGAN) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/CogVLM/pull/1#issuecomment-1806233125) in [tuhinmallick/CogVLM](https://github.com/tuhinmallick/CogVLM) +2. 🗣 Commented on [#2615](https://github.com/metabrainz/listenbrainz-server/pull/2615#issuecomment-1806207048) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#60](https://github.com/cirKITers/Quafel/pull/60#issuecomment-1805967440) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +4. 🗣 Commented on [#48](https://github.com/eastgenomics/eris/pull/48#issuecomment-1805884936) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#19](https://github.com/ITMO-NSS-team/pytsbe/pull/19#issuecomment-1805641081) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/BetterOCR/pull/1#issuecomment-1805221098) in [tuhinmallick/BetterOCR](https://github.com/tuhinmallick/BetterOCR) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Yi/pull/1#issuecomment-1805216249) in [tuhinmallick/Yi](https://github.com/tuhinmallick/Yi) +8. 🗣 Commented on [#21511](https://github.com/spyder-ide/spyder/pull/21511#issuecomment-1804962201) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#4350](https://github.com/uwcirg/truenth-portal/pull/4350#issuecomment-1804930265) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/gorilla/pull/1#issuecomment-1804903837) in [tuhinmallick/gorilla](https://github.com/tuhinmallick/gorilla) From 51752e0e4c49f8df96fce490522402b7176c8926 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Nov 2023 19:12:32 +0000 Subject: [PATCH 0610/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bbcd6c8e..eb1275ad 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/CogVLM/pull/1#issuecomment-1806233125) in [tuhinmallick/CogVLM](https://github.com/tuhinmallick/CogVLM) -2. 🗣 Commented on [#2615](https://github.com/metabrainz/listenbrainz-server/pull/2615#issuecomment-1806207048) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#60](https://github.com/cirKITers/Quafel/pull/60#issuecomment-1805967440) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -4. 🗣 Commented on [#48](https://github.com/eastgenomics/eris/pull/48#issuecomment-1805884936) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#19](https://github.com/ITMO-NSS-team/pytsbe/pull/19#issuecomment-1805641081) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/BetterOCR/pull/1#issuecomment-1805221098) in [tuhinmallick/BetterOCR](https://github.com/tuhinmallick/BetterOCR) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Yi/pull/1#issuecomment-1805216249) in [tuhinmallick/Yi](https://github.com/tuhinmallick/Yi) -8. 🗣 Commented on [#21511](https://github.com/spyder-ide/spyder/pull/21511#issuecomment-1804962201) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#4350](https://github.com/uwcirg/truenth-portal/pull/4350#issuecomment-1804930265) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/gorilla/pull/1#issuecomment-1804903837) in [tuhinmallick/gorilla](https://github.com/tuhinmallick/gorilla) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/alignment-handbook/pull/1#issuecomment-1806285282) in [tuhinmallick/alignment-handbook](https://github.com/tuhinmallick/alignment-handbook) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAI_Agent_Swarm/pull/1#issuecomment-1806260174) in [tuhinmallick/OpenAI_Agent_Swarm](https://github.com/tuhinmallick/OpenAI_Agent_Swarm) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/VisionAPI/pull/1#issuecomment-1806254442) in [tuhinmallick/VisionAPI](https://github.com/tuhinmallick/VisionAPI) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPTCaption/pull/1#issuecomment-1806239930) in [tuhinmallick/GPTCaption](https://github.com/tuhinmallick/GPTCaption) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/CogVLM/pull/1#issuecomment-1806233125) in [tuhinmallick/CogVLM](https://github.com/tuhinmallick/CogVLM) +6. 🗣 Commented on [#2615](https://github.com/metabrainz/listenbrainz-server/pull/2615#issuecomment-1806207048) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#60](https://github.com/cirKITers/Quafel/pull/60#issuecomment-1805967440) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +8. 🗣 Commented on [#48](https://github.com/eastgenomics/eris/pull/48#issuecomment-1805884936) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#19](https://github.com/ITMO-NSS-team/pytsbe/pull/19#issuecomment-1805641081) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/BetterOCR/pull/1#issuecomment-1805221098) in [tuhinmallick/BetterOCR](https://github.com/tuhinmallick/BetterOCR) From e865e5fc85db5e2444b76b5996a1e454d5099fd2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Nov 2023 20:16:23 +0000 Subject: [PATCH 0611/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index eb1275ad..e1ef3b5e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/alignment-handbook/pull/1#issuecomment-1806285282) in [tuhinmallick/alignment-handbook](https://github.com/tuhinmallick/alignment-handbook) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAI_Agent_Swarm/pull/1#issuecomment-1806260174) in [tuhinmallick/OpenAI_Agent_Swarm](https://github.com/tuhinmallick/OpenAI_Agent_Swarm) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/VisionAPI/pull/1#issuecomment-1806254442) in [tuhinmallick/VisionAPI](https://github.com/tuhinmallick/VisionAPI) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPTCaption/pull/1#issuecomment-1806239930) in [tuhinmallick/GPTCaption](https://github.com/tuhinmallick/GPTCaption) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/CogVLM/pull/1#issuecomment-1806233125) in [tuhinmallick/CogVLM](https://github.com/tuhinmallick/CogVLM) -6. 🗣 Commented on [#2615](https://github.com/metabrainz/listenbrainz-server/pull/2615#issuecomment-1806207048) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#60](https://github.com/cirKITers/Quafel/pull/60#issuecomment-1805967440) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -8. 🗣 Commented on [#48](https://github.com/eastgenomics/eris/pull/48#issuecomment-1805884936) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#19](https://github.com/ITMO-NSS-team/pytsbe/pull/19#issuecomment-1805641081) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/BetterOCR/pull/1#issuecomment-1805221098) in [tuhinmallick/BetterOCR](https://github.com/tuhinmallick/BetterOCR) +1. 🗣 Commented on [#1614](https://github.com/HEXRD/hexrdgui/pull/1614#issuecomment-1806351379) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/alignment-handbook/pull/1#issuecomment-1806285282) in [tuhinmallick/alignment-handbook](https://github.com/tuhinmallick/alignment-handbook) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAI_Agent_Swarm/pull/1#issuecomment-1806260174) in [tuhinmallick/OpenAI_Agent_Swarm](https://github.com/tuhinmallick/OpenAI_Agent_Swarm) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/VisionAPI/pull/1#issuecomment-1806254442) in [tuhinmallick/VisionAPI](https://github.com/tuhinmallick/VisionAPI) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPTCaption/pull/1#issuecomment-1806239930) in [tuhinmallick/GPTCaption](https://github.com/tuhinmallick/GPTCaption) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/CogVLM/pull/1#issuecomment-1806233125) in [tuhinmallick/CogVLM](https://github.com/tuhinmallick/CogVLM) +7. 🗣 Commented on [#2615](https://github.com/metabrainz/listenbrainz-server/pull/2615#issuecomment-1806207048) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#60](https://github.com/cirKITers/Quafel/pull/60#issuecomment-1805967440) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +9. 🗣 Commented on [#48](https://github.com/eastgenomics/eris/pull/48#issuecomment-1805884936) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#19](https://github.com/ITMO-NSS-team/pytsbe/pull/19#issuecomment-1805641081) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) From 51067b4db2089aae94a95a19c8896b34c8cbf168 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Nov 2023 11:37:03 +0000 Subject: [PATCH 0612/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e1ef3b5e..daf7b5ab 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1614](https://github.com/HEXRD/hexrdgui/pull/1614#issuecomment-1806351379) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/alignment-handbook/pull/1#issuecomment-1806285282) in [tuhinmallick/alignment-handbook](https://github.com/tuhinmallick/alignment-handbook) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAI_Agent_Swarm/pull/1#issuecomment-1806260174) in [tuhinmallick/OpenAI_Agent_Swarm](https://github.com/tuhinmallick/OpenAI_Agent_Swarm) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/VisionAPI/pull/1#issuecomment-1806254442) in [tuhinmallick/VisionAPI](https://github.com/tuhinmallick/VisionAPI) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPTCaption/pull/1#issuecomment-1806239930) in [tuhinmallick/GPTCaption](https://github.com/tuhinmallick/GPTCaption) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/CogVLM/pull/1#issuecomment-1806233125) in [tuhinmallick/CogVLM](https://github.com/tuhinmallick/CogVLM) -7. 🗣 Commented on [#2615](https://github.com/metabrainz/listenbrainz-server/pull/2615#issuecomment-1806207048) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#60](https://github.com/cirKITers/Quafel/pull/60#issuecomment-1805967440) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -9. 🗣 Commented on [#48](https://github.com/eastgenomics/eris/pull/48#issuecomment-1805884936) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#19](https://github.com/ITMO-NSS-team/pytsbe/pull/19#issuecomment-1805641081) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Fashion-Rec-Sys/pull/1#issuecomment-1806791697) in [tuhinmallick/Fashion-Rec-Sys](https://github.com/tuhinmallick/Fashion-Rec-Sys) +2. 🗣 Commented on [#1614](https://github.com/HEXRD/hexrdgui/pull/1614#issuecomment-1806351379) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/alignment-handbook/pull/1#issuecomment-1806285282) in [tuhinmallick/alignment-handbook](https://github.com/tuhinmallick/alignment-handbook) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAI_Agent_Swarm/pull/1#issuecomment-1806260174) in [tuhinmallick/OpenAI_Agent_Swarm](https://github.com/tuhinmallick/OpenAI_Agent_Swarm) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/VisionAPI/pull/1#issuecomment-1806254442) in [tuhinmallick/VisionAPI](https://github.com/tuhinmallick/VisionAPI) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPTCaption/pull/1#issuecomment-1806239930) in [tuhinmallick/GPTCaption](https://github.com/tuhinmallick/GPTCaption) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/CogVLM/pull/1#issuecomment-1806233125) in [tuhinmallick/CogVLM](https://github.com/tuhinmallick/CogVLM) +8. 🗣 Commented on [#2615](https://github.com/metabrainz/listenbrainz-server/pull/2615#issuecomment-1806207048) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#60](https://github.com/cirKITers/Quafel/pull/60#issuecomment-1805967440) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +10. 🗣 Commented on [#48](https://github.com/eastgenomics/eris/pull/48#issuecomment-1805884936) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From f2d49e023750f5a5495b9fea05d6686a029d99fc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Nov 2023 13:37:19 +0000 Subject: [PATCH 0613/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index daf7b5ab..59a92703 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Fashion-Rec-Sys/pull/1#issuecomment-1806791697) in [tuhinmallick/Fashion-Rec-Sys](https://github.com/tuhinmallick/Fashion-Rec-Sys) -2. 🗣 Commented on [#1614](https://github.com/HEXRD/hexrdgui/pull/1614#issuecomment-1806351379) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/alignment-handbook/pull/1#issuecomment-1806285282) in [tuhinmallick/alignment-handbook](https://github.com/tuhinmallick/alignment-handbook) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAI_Agent_Swarm/pull/1#issuecomment-1806260174) in [tuhinmallick/OpenAI_Agent_Swarm](https://github.com/tuhinmallick/OpenAI_Agent_Swarm) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/VisionAPI/pull/1#issuecomment-1806254442) in [tuhinmallick/VisionAPI](https://github.com/tuhinmallick/VisionAPI) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPTCaption/pull/1#issuecomment-1806239930) in [tuhinmallick/GPTCaption](https://github.com/tuhinmallick/GPTCaption) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/CogVLM/pull/1#issuecomment-1806233125) in [tuhinmallick/CogVLM](https://github.com/tuhinmallick/CogVLM) -8. 🗣 Commented on [#2615](https://github.com/metabrainz/listenbrainz-server/pull/2615#issuecomment-1806207048) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#60](https://github.com/cirKITers/Quafel/pull/60#issuecomment-1805967440) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -10. 🗣 Commented on [#48](https://github.com/eastgenomics/eris/pull/48#issuecomment-1805884936) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#4343](https://github.com/MDAnalysis/mdanalysis/pull/4343#issuecomment-1806815544) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Fashion-Rec-Sys/pull/1#issuecomment-1806791697) in [tuhinmallick/Fashion-Rec-Sys](https://github.com/tuhinmallick/Fashion-Rec-Sys) +3. 🗣 Commented on [#1614](https://github.com/HEXRD/hexrdgui/pull/1614#issuecomment-1806351379) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/alignment-handbook/pull/1#issuecomment-1806285282) in [tuhinmallick/alignment-handbook](https://github.com/tuhinmallick/alignment-handbook) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAI_Agent_Swarm/pull/1#issuecomment-1806260174) in [tuhinmallick/OpenAI_Agent_Swarm](https://github.com/tuhinmallick/OpenAI_Agent_Swarm) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/VisionAPI/pull/1#issuecomment-1806254442) in [tuhinmallick/VisionAPI](https://github.com/tuhinmallick/VisionAPI) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPTCaption/pull/1#issuecomment-1806239930) in [tuhinmallick/GPTCaption](https://github.com/tuhinmallick/GPTCaption) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/CogVLM/pull/1#issuecomment-1806233125) in [tuhinmallick/CogVLM](https://github.com/tuhinmallick/CogVLM) +9. 🗣 Commented on [#2615](https://github.com/metabrainz/listenbrainz-server/pull/2615#issuecomment-1806207048) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#60](https://github.com/cirKITers/Quafel/pull/60#issuecomment-1805967440) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) From 945b6f424f5f2b77171869f49f0c11ba8c461752 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Nov 2023 15:14:40 +0000 Subject: [PATCH 0614/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 59a92703..d514705d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4343](https://github.com/MDAnalysis/mdanalysis/pull/4343#issuecomment-1806815544) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Fashion-Rec-Sys/pull/1#issuecomment-1806791697) in [tuhinmallick/Fashion-Rec-Sys](https://github.com/tuhinmallick/Fashion-Rec-Sys) -3. 🗣 Commented on [#1614](https://github.com/HEXRD/hexrdgui/pull/1614#issuecomment-1806351379) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/alignment-handbook/pull/1#issuecomment-1806285282) in [tuhinmallick/alignment-handbook](https://github.com/tuhinmallick/alignment-handbook) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAI_Agent_Swarm/pull/1#issuecomment-1806260174) in [tuhinmallick/OpenAI_Agent_Swarm](https://github.com/tuhinmallick/OpenAI_Agent_Swarm) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/VisionAPI/pull/1#issuecomment-1806254442) in [tuhinmallick/VisionAPI](https://github.com/tuhinmallick/VisionAPI) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPTCaption/pull/1#issuecomment-1806239930) in [tuhinmallick/GPTCaption](https://github.com/tuhinmallick/GPTCaption) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/CogVLM/pull/1#issuecomment-1806233125) in [tuhinmallick/CogVLM](https://github.com/tuhinmallick/CogVLM) -9. 🗣 Commented on [#2615](https://github.com/metabrainz/listenbrainz-server/pull/2615#issuecomment-1806207048) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#60](https://github.com/cirKITers/Quafel/pull/60#issuecomment-1805967440) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +1. 🗣 Commented on [#863](https://github.com/PyThaiNLP/pythainlp/pull/863#issuecomment-1806833890) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#4343](https://github.com/MDAnalysis/mdanalysis/pull/4343#issuecomment-1806815544) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Fashion-Rec-Sys/pull/1#issuecomment-1806791697) in [tuhinmallick/Fashion-Rec-Sys](https://github.com/tuhinmallick/Fashion-Rec-Sys) +4. 🗣 Commented on [#1614](https://github.com/HEXRD/hexrdgui/pull/1614#issuecomment-1806351379) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/alignment-handbook/pull/1#issuecomment-1806285282) in [tuhinmallick/alignment-handbook](https://github.com/tuhinmallick/alignment-handbook) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAI_Agent_Swarm/pull/1#issuecomment-1806260174) in [tuhinmallick/OpenAI_Agent_Swarm](https://github.com/tuhinmallick/OpenAI_Agent_Swarm) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/VisionAPI/pull/1#issuecomment-1806254442) in [tuhinmallick/VisionAPI](https://github.com/tuhinmallick/VisionAPI) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPTCaption/pull/1#issuecomment-1806239930) in [tuhinmallick/GPTCaption](https://github.com/tuhinmallick/GPTCaption) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/CogVLM/pull/1#issuecomment-1806233125) in [tuhinmallick/CogVLM](https://github.com/tuhinmallick/CogVLM) +10. 🗣 Commented on [#2615](https://github.com/metabrainz/listenbrainz-server/pull/2615#issuecomment-1806207048) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 74a3f38cd2f02f6b1e630736896b06276cac1a80 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Nov 2023 16:18:53 +0000 Subject: [PATCH 0615/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d514705d..792db26d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#863](https://github.com/PyThaiNLP/pythainlp/pull/863#issuecomment-1806833890) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#4343](https://github.com/MDAnalysis/mdanalysis/pull/4343#issuecomment-1806815544) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Fashion-Rec-Sys/pull/1#issuecomment-1806791697) in [tuhinmallick/Fashion-Rec-Sys](https://github.com/tuhinmallick/Fashion-Rec-Sys) -4. 🗣 Commented on [#1614](https://github.com/HEXRD/hexrdgui/pull/1614#issuecomment-1806351379) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/alignment-handbook/pull/1#issuecomment-1806285282) in [tuhinmallick/alignment-handbook](https://github.com/tuhinmallick/alignment-handbook) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAI_Agent_Swarm/pull/1#issuecomment-1806260174) in [tuhinmallick/OpenAI_Agent_Swarm](https://github.com/tuhinmallick/OpenAI_Agent_Swarm) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/VisionAPI/pull/1#issuecomment-1806254442) in [tuhinmallick/VisionAPI](https://github.com/tuhinmallick/VisionAPI) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPTCaption/pull/1#issuecomment-1806239930) in [tuhinmallick/GPTCaption](https://github.com/tuhinmallick/GPTCaption) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/CogVLM/pull/1#issuecomment-1806233125) in [tuhinmallick/CogVLM](https://github.com/tuhinmallick/CogVLM) -10. 🗣 Commented on [#2615](https://github.com/metabrainz/listenbrainz-server/pull/2615#issuecomment-1806207048) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1191](https://github.com/scikit-optimize/scikit-optimize/pull/1191#issuecomment-1806852796) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +2. 🗣 Commented on [#863](https://github.com/PyThaiNLP/pythainlp/pull/863#issuecomment-1806833890) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#4343](https://github.com/MDAnalysis/mdanalysis/pull/4343#issuecomment-1806815544) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Fashion-Rec-Sys/pull/1#issuecomment-1806791697) in [tuhinmallick/Fashion-Rec-Sys](https://github.com/tuhinmallick/Fashion-Rec-Sys) +5. 🗣 Commented on [#1614](https://github.com/HEXRD/hexrdgui/pull/1614#issuecomment-1806351379) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/alignment-handbook/pull/1#issuecomment-1806285282) in [tuhinmallick/alignment-handbook](https://github.com/tuhinmallick/alignment-handbook) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAI_Agent_Swarm/pull/1#issuecomment-1806260174) in [tuhinmallick/OpenAI_Agent_Swarm](https://github.com/tuhinmallick/OpenAI_Agent_Swarm) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/VisionAPI/pull/1#issuecomment-1806254442) in [tuhinmallick/VisionAPI](https://github.com/tuhinmallick/VisionAPI) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPTCaption/pull/1#issuecomment-1806239930) in [tuhinmallick/GPTCaption](https://github.com/tuhinmallick/GPTCaption) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/CogVLM/pull/1#issuecomment-1806233125) in [tuhinmallick/CogVLM](https://github.com/tuhinmallick/CogVLM) From e80852508fc0f8a20ced87e2aefab17dce88c547 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Nov 2023 17:12:49 +0000 Subject: [PATCH 0616/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 792db26d..c60ae1da 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1191](https://github.com/scikit-optimize/scikit-optimize/pull/1191#issuecomment-1806852796) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) -2. 🗣 Commented on [#863](https://github.com/PyThaiNLP/pythainlp/pull/863#issuecomment-1806833890) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#4343](https://github.com/MDAnalysis/mdanalysis/pull/4343#issuecomment-1806815544) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Fashion-Rec-Sys/pull/1#issuecomment-1806791697) in [tuhinmallick/Fashion-Rec-Sys](https://github.com/tuhinmallick/Fashion-Rec-Sys) -5. 🗣 Commented on [#1614](https://github.com/HEXRD/hexrdgui/pull/1614#issuecomment-1806351379) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/alignment-handbook/pull/1#issuecomment-1806285282) in [tuhinmallick/alignment-handbook](https://github.com/tuhinmallick/alignment-handbook) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAI_Agent_Swarm/pull/1#issuecomment-1806260174) in [tuhinmallick/OpenAI_Agent_Swarm](https://github.com/tuhinmallick/OpenAI_Agent_Swarm) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/VisionAPI/pull/1#issuecomment-1806254442) in [tuhinmallick/VisionAPI](https://github.com/tuhinmallick/VisionAPI) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPTCaption/pull/1#issuecomment-1806239930) in [tuhinmallick/GPTCaption](https://github.com/tuhinmallick/GPTCaption) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/CogVLM/pull/1#issuecomment-1806233125) in [tuhinmallick/CogVLM](https://github.com/tuhinmallick/CogVLM) +1. 🗣 Commented on [#45](https://github.com/tj-python/cpython/pull/45#issuecomment-1806863471) in [tj-python/cpython](https://github.com/tj-python/cpython) +2. 🗣 Commented on [#1191](https://github.com/scikit-optimize/scikit-optimize/pull/1191#issuecomment-1806852796) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +3. 🗣 Commented on [#863](https://github.com/PyThaiNLP/pythainlp/pull/863#issuecomment-1806833890) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#4343](https://github.com/MDAnalysis/mdanalysis/pull/4343#issuecomment-1806815544) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Fashion-Rec-Sys/pull/1#issuecomment-1806791697) in [tuhinmallick/Fashion-Rec-Sys](https://github.com/tuhinmallick/Fashion-Rec-Sys) +6. 🗣 Commented on [#1614](https://github.com/HEXRD/hexrdgui/pull/1614#issuecomment-1806351379) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/alignment-handbook/pull/1#issuecomment-1806285282) in [tuhinmallick/alignment-handbook](https://github.com/tuhinmallick/alignment-handbook) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAI_Agent_Swarm/pull/1#issuecomment-1806260174) in [tuhinmallick/OpenAI_Agent_Swarm](https://github.com/tuhinmallick/OpenAI_Agent_Swarm) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/VisionAPI/pull/1#issuecomment-1806254442) in [tuhinmallick/VisionAPI](https://github.com/tuhinmallick/VisionAPI) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPTCaption/pull/1#issuecomment-1806239930) in [tuhinmallick/GPTCaption](https://github.com/tuhinmallick/GPTCaption) From ba66b3acae55dc8edc31fc3f842ed41c40ede422 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 12 Nov 2023 01:15:54 +0000 Subject: [PATCH 0617/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c60ae1da..f6d0e97f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#45](https://github.com/tj-python/cpython/pull/45#issuecomment-1806863471) in [tj-python/cpython](https://github.com/tj-python/cpython) -2. 🗣 Commented on [#1191](https://github.com/scikit-optimize/scikit-optimize/pull/1191#issuecomment-1806852796) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) -3. 🗣 Commented on [#863](https://github.com/PyThaiNLP/pythainlp/pull/863#issuecomment-1806833890) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#4343](https://github.com/MDAnalysis/mdanalysis/pull/4343#issuecomment-1806815544) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Fashion-Rec-Sys/pull/1#issuecomment-1806791697) in [tuhinmallick/Fashion-Rec-Sys](https://github.com/tuhinmallick/Fashion-Rec-Sys) -6. 🗣 Commented on [#1614](https://github.com/HEXRD/hexrdgui/pull/1614#issuecomment-1806351379) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/alignment-handbook/pull/1#issuecomment-1806285282) in [tuhinmallick/alignment-handbook](https://github.com/tuhinmallick/alignment-handbook) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAI_Agent_Swarm/pull/1#issuecomment-1806260174) in [tuhinmallick/OpenAI_Agent_Swarm](https://github.com/tuhinmallick/OpenAI_Agent_Swarm) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/VisionAPI/pull/1#issuecomment-1806254442) in [tuhinmallick/VisionAPI](https://github.com/tuhinmallick/VisionAPI) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPTCaption/pull/1#issuecomment-1806239930) in [tuhinmallick/GPTCaption](https://github.com/tuhinmallick/GPTCaption) +1. 🗣 Commented on [#81](https://github.com/Dog-Face-Development/Craft-Clash/pull/81#issuecomment-1806951376) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/tldream/pull/1#issuecomment-1806951190) in [tuhinmallick/tldream](https://github.com/tuhinmallick/tldream) +3. 🗣 Commented on [#80](https://github.com/Dog-Face-Development/Craft-Clash/pull/80#issuecomment-1806950589) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) +4. 🗣 Commented on [#79](https://github.com/Dog-Face-Development/Craft-Clash/pull/79#issuecomment-1806950401) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) +5. 🗣 Commented on [#106](https://github.com/Dog-Face-Development/Auto-Anouncements/pull/106#issuecomment-1806944495) in [Dog-Face-Development/Auto-Anouncements](https://github.com/Dog-Face-Development/Auto-Anouncements) +6. 🗣 Commented on [#45](https://github.com/tj-python/cpython/pull/45#issuecomment-1806863471) in [tj-python/cpython](https://github.com/tj-python/cpython) +7. 🗣 Commented on [#1191](https://github.com/scikit-optimize/scikit-optimize/pull/1191#issuecomment-1806852796) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +8. 🗣 Commented on [#863](https://github.com/PyThaiNLP/pythainlp/pull/863#issuecomment-1806833890) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#4343](https://github.com/MDAnalysis/mdanalysis/pull/4343#issuecomment-1806815544) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Fashion-Rec-Sys/pull/1#issuecomment-1806791697) in [tuhinmallick/Fashion-Rec-Sys](https://github.com/tuhinmallick/Fashion-Rec-Sys) From 01a6a4b3279a88a93f2acfcdae8075e573c286bb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 12 Nov 2023 02:09:46 +0000 Subject: [PATCH 0618/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f6d0e97f..6be85172 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#81](https://github.com/Dog-Face-Development/Craft-Clash/pull/81#issuecomment-1806951376) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/tldream/pull/1#issuecomment-1806951190) in [tuhinmallick/tldream](https://github.com/tuhinmallick/tldream) -3. 🗣 Commented on [#80](https://github.com/Dog-Face-Development/Craft-Clash/pull/80#issuecomment-1806950589) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) -4. 🗣 Commented on [#79](https://github.com/Dog-Face-Development/Craft-Clash/pull/79#issuecomment-1806950401) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) -5. 🗣 Commented on [#106](https://github.com/Dog-Face-Development/Auto-Anouncements/pull/106#issuecomment-1806944495) in [Dog-Face-Development/Auto-Anouncements](https://github.com/Dog-Face-Development/Auto-Anouncements) -6. 🗣 Commented on [#45](https://github.com/tj-python/cpython/pull/45#issuecomment-1806863471) in [tj-python/cpython](https://github.com/tj-python/cpython) -7. 🗣 Commented on [#1191](https://github.com/scikit-optimize/scikit-optimize/pull/1191#issuecomment-1806852796) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) -8. 🗣 Commented on [#863](https://github.com/PyThaiNLP/pythainlp/pull/863#issuecomment-1806833890) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#4343](https://github.com/MDAnalysis/mdanalysis/pull/4343#issuecomment-1806815544) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Fashion-Rec-Sys/pull/1#issuecomment-1806791697) in [tuhinmallick/Fashion-Rec-Sys](https://github.com/tuhinmallick/Fashion-Rec-Sys) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Paint-by-Example/pull/1#issuecomment-1806974592) in [tuhinmallick/Paint-by-Example](https://github.com/tuhinmallick/Paint-by-Example) +2. 🗣 Commented on [#209](https://github.com/CartoonFan/lutris/pull/209#issuecomment-1806973786) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#81](https://github.com/Dog-Face-Development/Craft-Clash/pull/81#issuecomment-1806951376) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/tldream/pull/1#issuecomment-1806951190) in [tuhinmallick/tldream](https://github.com/tuhinmallick/tldream) +5. 🗣 Commented on [#80](https://github.com/Dog-Face-Development/Craft-Clash/pull/80#issuecomment-1806950589) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) +6. 🗣 Commented on [#79](https://github.com/Dog-Face-Development/Craft-Clash/pull/79#issuecomment-1806950401) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) +7. 🗣 Commented on [#106](https://github.com/Dog-Face-Development/Auto-Anouncements/pull/106#issuecomment-1806944495) in [Dog-Face-Development/Auto-Anouncements](https://github.com/Dog-Face-Development/Auto-Anouncements) +8. 🗣 Commented on [#45](https://github.com/tj-python/cpython/pull/45#issuecomment-1806863471) in [tj-python/cpython](https://github.com/tj-python/cpython) +9. 🗣 Commented on [#1191](https://github.com/scikit-optimize/scikit-optimize/pull/1191#issuecomment-1806852796) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +10. 🗣 Commented on [#863](https://github.com/PyThaiNLP/pythainlp/pull/863#issuecomment-1806833890) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) From babc1d0b14d1775ad7b65288ce54c0d2e25f7e6e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 12 Nov 2023 03:15:54 +0000 Subject: [PATCH 0619/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6be85172..6bfa2091 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Paint-by-Example/pull/1#issuecomment-1806974592) in [tuhinmallick/Paint-by-Example](https://github.com/tuhinmallick/Paint-by-Example) -2. 🗣 Commented on [#209](https://github.com/CartoonFan/lutris/pull/209#issuecomment-1806973786) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#81](https://github.com/Dog-Face-Development/Craft-Clash/pull/81#issuecomment-1806951376) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/tldream/pull/1#issuecomment-1806951190) in [tuhinmallick/tldream](https://github.com/tuhinmallick/tldream) -5. 🗣 Commented on [#80](https://github.com/Dog-Face-Development/Craft-Clash/pull/80#issuecomment-1806950589) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) -6. 🗣 Commented on [#79](https://github.com/Dog-Face-Development/Craft-Clash/pull/79#issuecomment-1806950401) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) -7. 🗣 Commented on [#106](https://github.com/Dog-Face-Development/Auto-Anouncements/pull/106#issuecomment-1806944495) in [Dog-Face-Development/Auto-Anouncements](https://github.com/Dog-Face-Development/Auto-Anouncements) -8. 🗣 Commented on [#45](https://github.com/tj-python/cpython/pull/45#issuecomment-1806863471) in [tj-python/cpython](https://github.com/tj-python/cpython) -9. 🗣 Commented on [#1191](https://github.com/scikit-optimize/scikit-optimize/pull/1191#issuecomment-1806852796) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) -10. 🗣 Commented on [#863](https://github.com/PyThaiNLP/pythainlp/pull/863#issuecomment-1806833890) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +1. 🗣 Commented on [#2625](https://github.com/metabrainz/listenbrainz-server/pull/2625#issuecomment-1806981820) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Paint-by-Example/pull/1#issuecomment-1806974592) in [tuhinmallick/Paint-by-Example](https://github.com/tuhinmallick/Paint-by-Example) +3. 🗣 Commented on [#209](https://github.com/CartoonFan/lutris/pull/209#issuecomment-1806973786) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#81](https://github.com/Dog-Face-Development/Craft-Clash/pull/81#issuecomment-1806951376) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/tldream/pull/1#issuecomment-1806951190) in [tuhinmallick/tldream](https://github.com/tuhinmallick/tldream) +6. 🗣 Commented on [#80](https://github.com/Dog-Face-Development/Craft-Clash/pull/80#issuecomment-1806950589) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) +7. 🗣 Commented on [#79](https://github.com/Dog-Face-Development/Craft-Clash/pull/79#issuecomment-1806950401) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) +8. 🗣 Commented on [#106](https://github.com/Dog-Face-Development/Auto-Anouncements/pull/106#issuecomment-1806944495) in [Dog-Face-Development/Auto-Anouncements](https://github.com/Dog-Face-Development/Auto-Anouncements) +9. 🗣 Commented on [#45](https://github.com/tj-python/cpython/pull/45#issuecomment-1806863471) in [tj-python/cpython](https://github.com/tj-python/cpython) +10. 🗣 Commented on [#1191](https://github.com/scikit-optimize/scikit-optimize/pull/1191#issuecomment-1806852796) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) From 38b283f3b49b40060c03c15d713804c276efdd34 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 12 Nov 2023 06:37:22 +0000 Subject: [PATCH 0620/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6bfa2091..1ae0c44f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2625](https://github.com/metabrainz/listenbrainz-server/pull/2625#issuecomment-1806981820) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Paint-by-Example/pull/1#issuecomment-1806974592) in [tuhinmallick/Paint-by-Example](https://github.com/tuhinmallick/Paint-by-Example) -3. 🗣 Commented on [#209](https://github.com/CartoonFan/lutris/pull/209#issuecomment-1806973786) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#81](https://github.com/Dog-Face-Development/Craft-Clash/pull/81#issuecomment-1806951376) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/tldream/pull/1#issuecomment-1806951190) in [tuhinmallick/tldream](https://github.com/tuhinmallick/tldream) -6. 🗣 Commented on [#80](https://github.com/Dog-Face-Development/Craft-Clash/pull/80#issuecomment-1806950589) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) -7. 🗣 Commented on [#79](https://github.com/Dog-Face-Development/Craft-Clash/pull/79#issuecomment-1806950401) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) -8. 🗣 Commented on [#106](https://github.com/Dog-Face-Development/Auto-Anouncements/pull/106#issuecomment-1806944495) in [Dog-Face-Development/Auto-Anouncements](https://github.com/Dog-Face-Development/Auto-Anouncements) -9. 🗣 Commented on [#45](https://github.com/tj-python/cpython/pull/45#issuecomment-1806863471) in [tj-python/cpython](https://github.com/tj-python/cpython) -10. 🗣 Commented on [#1191](https://github.com/scikit-optimize/scikit-optimize/pull/1191#issuecomment-1806852796) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/MergeLM/pull/1#issuecomment-1807020065) in [tuhinmallick/MergeLM](https://github.com/tuhinmallick/MergeLM) +2. 🗣 Commented on [#2625](https://github.com/metabrainz/listenbrainz-server/pull/2625#issuecomment-1806981820) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Paint-by-Example/pull/1#issuecomment-1806974592) in [tuhinmallick/Paint-by-Example](https://github.com/tuhinmallick/Paint-by-Example) +4. 🗣 Commented on [#209](https://github.com/CartoonFan/lutris/pull/209#issuecomment-1806973786) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#81](https://github.com/Dog-Face-Development/Craft-Clash/pull/81#issuecomment-1806951376) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/tldream/pull/1#issuecomment-1806951190) in [tuhinmallick/tldream](https://github.com/tuhinmallick/tldream) +7. 🗣 Commented on [#80](https://github.com/Dog-Face-Development/Craft-Clash/pull/80#issuecomment-1806950589) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) +8. 🗣 Commented on [#79](https://github.com/Dog-Face-Development/Craft-Clash/pull/79#issuecomment-1806950401) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) +9. 🗣 Commented on [#106](https://github.com/Dog-Face-Development/Auto-Anouncements/pull/106#issuecomment-1806944495) in [Dog-Face-Development/Auto-Anouncements](https://github.com/Dog-Face-Development/Auto-Anouncements) +10. 🗣 Commented on [#45](https://github.com/tj-python/cpython/pull/45#issuecomment-1806863471) in [tj-python/cpython](https://github.com/tj-python/cpython) From 0a3b99338738836b18e060fb1cba9b02a3e01d1b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 12 Nov 2023 07:15:00 +0000 Subject: [PATCH 0621/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1ae0c44f..154fec74 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/MergeLM/pull/1#issuecomment-1807020065) in [tuhinmallick/MergeLM](https://github.com/tuhinmallick/MergeLM) -2. 🗣 Commented on [#2625](https://github.com/metabrainz/listenbrainz-server/pull/2625#issuecomment-1806981820) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Paint-by-Example/pull/1#issuecomment-1806974592) in [tuhinmallick/Paint-by-Example](https://github.com/tuhinmallick/Paint-by-Example) -4. 🗣 Commented on [#209](https://github.com/CartoonFan/lutris/pull/209#issuecomment-1806973786) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#81](https://github.com/Dog-Face-Development/Craft-Clash/pull/81#issuecomment-1806951376) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/tldream/pull/1#issuecomment-1806951190) in [tuhinmallick/tldream](https://github.com/tuhinmallick/tldream) -7. 🗣 Commented on [#80](https://github.com/Dog-Face-Development/Craft-Clash/pull/80#issuecomment-1806950589) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) -8. 🗣 Commented on [#79](https://github.com/Dog-Face-Development/Craft-Clash/pull/79#issuecomment-1806950401) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) -9. 🗣 Commented on [#106](https://github.com/Dog-Face-Development/Auto-Anouncements/pull/106#issuecomment-1806944495) in [Dog-Face-Development/Auto-Anouncements](https://github.com/Dog-Face-Development/Auto-Anouncements) -10. 🗣 Commented on [#45](https://github.com/tj-python/cpython/pull/45#issuecomment-1806863471) in [tj-python/cpython](https://github.com/tj-python/cpython) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project/pull/1#issuecomment-1807029756) in [tuhinmallick/Data-Engineering-Streaming-Project](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Nanbeige/pull/1#issuecomment-1807022636) in [tuhinmallick/Nanbeige](https://github.com/tuhinmallick/Nanbeige) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos/pull/1#issuecomment-1807022194) in [tuhinmallick/OPENAI_Assistant_Python_API_Demos](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/SSD-1B/pull/1#issuecomment-1807021376) in [tuhinmallick/SSD-1B](https://github.com/tuhinmallick/SSD-1B) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/comfy-consistency-vae/pull/1#issuecomment-1807020686) in [tuhinmallick/comfy-consistency-vae](https://github.com/tuhinmallick/comfy-consistency-vae) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/MergeLM/pull/1#issuecomment-1807020065) in [tuhinmallick/MergeLM](https://github.com/tuhinmallick/MergeLM) +7. 🗣 Commented on [#2625](https://github.com/metabrainz/listenbrainz-server/pull/2625#issuecomment-1806981820) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Paint-by-Example/pull/1#issuecomment-1806974592) in [tuhinmallick/Paint-by-Example](https://github.com/tuhinmallick/Paint-by-Example) +9. 🗣 Commented on [#209](https://github.com/CartoonFan/lutris/pull/209#issuecomment-1806973786) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#81](https://github.com/Dog-Face-Development/Craft-Clash/pull/81#issuecomment-1806951376) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) From 5ce40b0e0d3e8d6ff2ca62b5b440bcf712d80cd6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 12 Nov 2023 22:13:58 +0000 Subject: [PATCH 0622/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 154fec74..a3cd6c3d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project/pull/1#issuecomment-1807029756) in [tuhinmallick/Data-Engineering-Streaming-Project](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Nanbeige/pull/1#issuecomment-1807022636) in [tuhinmallick/Nanbeige](https://github.com/tuhinmallick/Nanbeige) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos/pull/1#issuecomment-1807022194) in [tuhinmallick/OPENAI_Assistant_Python_API_Demos](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/SSD-1B/pull/1#issuecomment-1807021376) in [tuhinmallick/SSD-1B](https://github.com/tuhinmallick/SSD-1B) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/comfy-consistency-vae/pull/1#issuecomment-1807020686) in [tuhinmallick/comfy-consistency-vae](https://github.com/tuhinmallick/comfy-consistency-vae) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/MergeLM/pull/1#issuecomment-1807020065) in [tuhinmallick/MergeLM](https://github.com/tuhinmallick/MergeLM) -7. 🗣 Commented on [#2625](https://github.com/metabrainz/listenbrainz-server/pull/2625#issuecomment-1806981820) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Paint-by-Example/pull/1#issuecomment-1806974592) in [tuhinmallick/Paint-by-Example](https://github.com/tuhinmallick/Paint-by-Example) -9. 🗣 Commented on [#209](https://github.com/CartoonFan/lutris/pull/209#issuecomment-1806973786) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#81](https://github.com/Dog-Face-Development/Craft-Clash/pull/81#issuecomment-1806951376) in [Dog-Face-Development/Craft-Clash](https://github.com/Dog-Face-Development/Craft-Clash) +1. 🗣 Commented on [#189](https://github.com/cleder/pygeoif/pull/189#issuecomment-1807257977) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +2. 🗣 Commented on [#188](https://github.com/cleder/pygeoif/pull/188#issuecomment-1807257932) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project/pull/1#issuecomment-1807029756) in [tuhinmallick/Data-Engineering-Streaming-Project](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Nanbeige/pull/1#issuecomment-1807022636) in [tuhinmallick/Nanbeige](https://github.com/tuhinmallick/Nanbeige) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos/pull/1#issuecomment-1807022194) in [tuhinmallick/OPENAI_Assistant_Python_API_Demos](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/SSD-1B/pull/1#issuecomment-1807021376) in [tuhinmallick/SSD-1B](https://github.com/tuhinmallick/SSD-1B) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/comfy-consistency-vae/pull/1#issuecomment-1807020686) in [tuhinmallick/comfy-consistency-vae](https://github.com/tuhinmallick/comfy-consistency-vae) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/MergeLM/pull/1#issuecomment-1807020065) in [tuhinmallick/MergeLM](https://github.com/tuhinmallick/MergeLM) +9. 🗣 Commented on [#2625](https://github.com/metabrainz/listenbrainz-server/pull/2625#issuecomment-1806981820) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Paint-by-Example/pull/1#issuecomment-1806974592) in [tuhinmallick/Paint-by-Example](https://github.com/tuhinmallick/Paint-by-Example) From 3a5de8f6d0164b95bff8e62d7989df518d8adc8f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 12 Nov 2023 23:15:07 +0000 Subject: [PATCH 0623/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a3cd6c3d..406f0474 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#189](https://github.com/cleder/pygeoif/pull/189#issuecomment-1807257977) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -2. 🗣 Commented on [#188](https://github.com/cleder/pygeoif/pull/188#issuecomment-1807257932) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project/pull/1#issuecomment-1807029756) in [tuhinmallick/Data-Engineering-Streaming-Project](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Nanbeige/pull/1#issuecomment-1807022636) in [tuhinmallick/Nanbeige](https://github.com/tuhinmallick/Nanbeige) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos/pull/1#issuecomment-1807022194) in [tuhinmallick/OPENAI_Assistant_Python_API_Demos](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/SSD-1B/pull/1#issuecomment-1807021376) in [tuhinmallick/SSD-1B](https://github.com/tuhinmallick/SSD-1B) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/comfy-consistency-vae/pull/1#issuecomment-1807020686) in [tuhinmallick/comfy-consistency-vae](https://github.com/tuhinmallick/comfy-consistency-vae) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/MergeLM/pull/1#issuecomment-1807020065) in [tuhinmallick/MergeLM](https://github.com/tuhinmallick/MergeLM) -9. 🗣 Commented on [#2625](https://github.com/metabrainz/listenbrainz-server/pull/2625#issuecomment-1806981820) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Paint-by-Example/pull/1#issuecomment-1806974592) in [tuhinmallick/Paint-by-Example](https://github.com/tuhinmallick/Paint-by-Example) +1. 🗣 Commented on [#939](https://github.com/WesternFriend/WF-website/pull/939#issuecomment-1807273537) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/tarsier/pull/1#issuecomment-1807271405) in [tuhinmallick/tarsier](https://github.com/tuhinmallick/tarsier) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/open_clip/pull/1#issuecomment-1807269638) in [tuhinmallick/open_clip](https://github.com/tuhinmallick/open_clip) +4. 🗣 Commented on [#189](https://github.com/cleder/pygeoif/pull/189#issuecomment-1807257977) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +5. 🗣 Commented on [#188](https://github.com/cleder/pygeoif/pull/188#issuecomment-1807257932) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project/pull/1#issuecomment-1807029756) in [tuhinmallick/Data-Engineering-Streaming-Project](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Nanbeige/pull/1#issuecomment-1807022636) in [tuhinmallick/Nanbeige](https://github.com/tuhinmallick/Nanbeige) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos/pull/1#issuecomment-1807022194) in [tuhinmallick/OPENAI_Assistant_Python_API_Demos](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/SSD-1B/pull/1#issuecomment-1807021376) in [tuhinmallick/SSD-1B](https://github.com/tuhinmallick/SSD-1B) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/comfy-consistency-vae/pull/1#issuecomment-1807020686) in [tuhinmallick/comfy-consistency-vae](https://github.com/tuhinmallick/comfy-consistency-vae) From 6e16f8b7f738784daa515cbbbd8dddfbc0d39a6f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 06:38:38 +0000 Subject: [PATCH 0624/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 406f0474..73adce4a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#939](https://github.com/WesternFriend/WF-website/pull/939#issuecomment-1807273537) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/tarsier/pull/1#issuecomment-1807271405) in [tuhinmallick/tarsier](https://github.com/tuhinmallick/tarsier) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/open_clip/pull/1#issuecomment-1807269638) in [tuhinmallick/open_clip](https://github.com/tuhinmallick/open_clip) -4. 🗣 Commented on [#189](https://github.com/cleder/pygeoif/pull/189#issuecomment-1807257977) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -5. 🗣 Commented on [#188](https://github.com/cleder/pygeoif/pull/188#issuecomment-1807257932) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project/pull/1#issuecomment-1807029756) in [tuhinmallick/Data-Engineering-Streaming-Project](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Nanbeige/pull/1#issuecomment-1807022636) in [tuhinmallick/Nanbeige](https://github.com/tuhinmallick/Nanbeige) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos/pull/1#issuecomment-1807022194) in [tuhinmallick/OPENAI_Assistant_Python_API_Demos](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/SSD-1B/pull/1#issuecomment-1807021376) in [tuhinmallick/SSD-1B](https://github.com/tuhinmallick/SSD-1B) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/comfy-consistency-vae/pull/1#issuecomment-1807020686) in [tuhinmallick/comfy-consistency-vae](https://github.com/tuhinmallick/comfy-consistency-vae) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/whisper.cpp/pull/1#issuecomment-1807544152) in [tuhinmallick/whisper.cpp](https://github.com/tuhinmallick/whisper.cpp) +2. 🗣 Commented on [#939](https://github.com/WesternFriend/WF-website/pull/939#issuecomment-1807273537) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/tarsier/pull/1#issuecomment-1807271405) in [tuhinmallick/tarsier](https://github.com/tuhinmallick/tarsier) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/open_clip/pull/1#issuecomment-1807269638) in [tuhinmallick/open_clip](https://github.com/tuhinmallick/open_clip) +5. 🗣 Commented on [#189](https://github.com/cleder/pygeoif/pull/189#issuecomment-1807257977) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +6. 🗣 Commented on [#188](https://github.com/cleder/pygeoif/pull/188#issuecomment-1807257932) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project/pull/1#issuecomment-1807029756) in [tuhinmallick/Data-Engineering-Streaming-Project](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Nanbeige/pull/1#issuecomment-1807022636) in [tuhinmallick/Nanbeige](https://github.com/tuhinmallick/Nanbeige) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos/pull/1#issuecomment-1807022194) in [tuhinmallick/OPENAI_Assistant_Python_API_Demos](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/SSD-1B/pull/1#issuecomment-1807021376) in [tuhinmallick/SSD-1B](https://github.com/tuhinmallick/SSD-1B) From 2c08aa66f773c81ea3688109b8e2210ef577102a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 07:36:57 +0000 Subject: [PATCH 0625/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 73adce4a..164f94b3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/whisper.cpp/pull/1#issuecomment-1807544152) in [tuhinmallick/whisper.cpp](https://github.com/tuhinmallick/whisper.cpp) -2. 🗣 Commented on [#939](https://github.com/WesternFriend/WF-website/pull/939#issuecomment-1807273537) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/tarsier/pull/1#issuecomment-1807271405) in [tuhinmallick/tarsier](https://github.com/tuhinmallick/tarsier) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/open_clip/pull/1#issuecomment-1807269638) in [tuhinmallick/open_clip](https://github.com/tuhinmallick/open_clip) -5. 🗣 Commented on [#189](https://github.com/cleder/pygeoif/pull/189#issuecomment-1807257977) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -6. 🗣 Commented on [#188](https://github.com/cleder/pygeoif/pull/188#issuecomment-1807257932) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project/pull/1#issuecomment-1807029756) in [tuhinmallick/Data-Engineering-Streaming-Project](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Nanbeige/pull/1#issuecomment-1807022636) in [tuhinmallick/Nanbeige](https://github.com/tuhinmallick/Nanbeige) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos/pull/1#issuecomment-1807022194) in [tuhinmallick/OPENAI_Assistant_Python_API_Demos](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/SSD-1B/pull/1#issuecomment-1807021376) in [tuhinmallick/SSD-1B](https://github.com/tuhinmallick/SSD-1B) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPT-4-Web-Browsing/pull/1#issuecomment-1807600832) in [tuhinmallick/GPT-4-Web-Browsing](https://github.com/tuhinmallick/GPT-4-Web-Browsing) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/whisper.cpp/pull/1#issuecomment-1807544152) in [tuhinmallick/whisper.cpp](https://github.com/tuhinmallick/whisper.cpp) +3. 🗣 Commented on [#939](https://github.com/WesternFriend/WF-website/pull/939#issuecomment-1807273537) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/tarsier/pull/1#issuecomment-1807271405) in [tuhinmallick/tarsier](https://github.com/tuhinmallick/tarsier) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/open_clip/pull/1#issuecomment-1807269638) in [tuhinmallick/open_clip](https://github.com/tuhinmallick/open_clip) +6. 🗣 Commented on [#189](https://github.com/cleder/pygeoif/pull/189#issuecomment-1807257977) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +7. 🗣 Commented on [#188](https://github.com/cleder/pygeoif/pull/188#issuecomment-1807257932) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project/pull/1#issuecomment-1807029756) in [tuhinmallick/Data-Engineering-Streaming-Project](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Nanbeige/pull/1#issuecomment-1807022636) in [tuhinmallick/Nanbeige](https://github.com/tuhinmallick/Nanbeige) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos/pull/1#issuecomment-1807022194) in [tuhinmallick/OPENAI_Assistant_Python_API_Demos](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos) From 02520797cfe5382eafc09176f3961f1ec371d0ec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 08:21:01 +0000 Subject: [PATCH 0626/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 164f94b3..a2e573f7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPT-4-Web-Browsing/pull/1#issuecomment-1807600832) in [tuhinmallick/GPT-4-Web-Browsing](https://github.com/tuhinmallick/GPT-4-Web-Browsing) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/whisper.cpp/pull/1#issuecomment-1807544152) in [tuhinmallick/whisper.cpp](https://github.com/tuhinmallick/whisper.cpp) -3. 🗣 Commented on [#939](https://github.com/WesternFriend/WF-website/pull/939#issuecomment-1807273537) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/tarsier/pull/1#issuecomment-1807271405) in [tuhinmallick/tarsier](https://github.com/tuhinmallick/tarsier) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/open_clip/pull/1#issuecomment-1807269638) in [tuhinmallick/open_clip](https://github.com/tuhinmallick/open_clip) -6. 🗣 Commented on [#189](https://github.com/cleder/pygeoif/pull/189#issuecomment-1807257977) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -7. 🗣 Commented on [#188](https://github.com/cleder/pygeoif/pull/188#issuecomment-1807257932) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project/pull/1#issuecomment-1807029756) in [tuhinmallick/Data-Engineering-Streaming-Project](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Nanbeige/pull/1#issuecomment-1807022636) in [tuhinmallick/Nanbeige](https://github.com/tuhinmallick/Nanbeige) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos/pull/1#issuecomment-1807022194) in [tuhinmallick/OPENAI_Assistant_Python_API_Demos](https://github.com/tuhinmallick/OPENAI_Assistant_Python_API_Demos) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/axolotl/pull/1#issuecomment-1807606423) in [tuhinmallick/axolotl](https://github.com/tuhinmallick/axolotl) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPT-4-Web-Browsing/pull/1#issuecomment-1807600832) in [tuhinmallick/GPT-4-Web-Browsing](https://github.com/tuhinmallick/GPT-4-Web-Browsing) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/whisper.cpp/pull/1#issuecomment-1807544152) in [tuhinmallick/whisper.cpp](https://github.com/tuhinmallick/whisper.cpp) +4. 🗣 Commented on [#939](https://github.com/WesternFriend/WF-website/pull/939#issuecomment-1807273537) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/tarsier/pull/1#issuecomment-1807271405) in [tuhinmallick/tarsier](https://github.com/tuhinmallick/tarsier) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/open_clip/pull/1#issuecomment-1807269638) in [tuhinmallick/open_clip](https://github.com/tuhinmallick/open_clip) +7. 🗣 Commented on [#189](https://github.com/cleder/pygeoif/pull/189#issuecomment-1807257977) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +8. 🗣 Commented on [#188](https://github.com/cleder/pygeoif/pull/188#issuecomment-1807257932) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project/pull/1#issuecomment-1807029756) in [tuhinmallick/Data-Engineering-Streaming-Project](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Nanbeige/pull/1#issuecomment-1807022636) in [tuhinmallick/Nanbeige](https://github.com/tuhinmallick/Nanbeige) From d562fae9b861ad1b07d1969dd6552c9c23181d61 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 11:13:40 +0000 Subject: [PATCH 0627/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a2e573f7..33c73235 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/axolotl/pull/1#issuecomment-1807606423) in [tuhinmallick/axolotl](https://github.com/tuhinmallick/axolotl) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPT-4-Web-Browsing/pull/1#issuecomment-1807600832) in [tuhinmallick/GPT-4-Web-Browsing](https://github.com/tuhinmallick/GPT-4-Web-Browsing) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/whisper.cpp/pull/1#issuecomment-1807544152) in [tuhinmallick/whisper.cpp](https://github.com/tuhinmallick/whisper.cpp) -4. 🗣 Commented on [#939](https://github.com/WesternFriend/WF-website/pull/939#issuecomment-1807273537) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/tarsier/pull/1#issuecomment-1807271405) in [tuhinmallick/tarsier](https://github.com/tuhinmallick/tarsier) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/open_clip/pull/1#issuecomment-1807269638) in [tuhinmallick/open_clip](https://github.com/tuhinmallick/open_clip) -7. 🗣 Commented on [#189](https://github.com/cleder/pygeoif/pull/189#issuecomment-1807257977) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -8. 🗣 Commented on [#188](https://github.com/cleder/pygeoif/pull/188#issuecomment-1807257932) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project/pull/1#issuecomment-1807029756) in [tuhinmallick/Data-Engineering-Streaming-Project](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Nanbeige/pull/1#issuecomment-1807022636) in [tuhinmallick/Nanbeige](https://github.com/tuhinmallick/Nanbeige) +1. 🗣 Commented on [#1](https://github.com/eastgenomics/single_variant_vcf/pull/1#issuecomment-1807927526) in [eastgenomics/single_variant_vcf](https://github.com/eastgenomics/single_variant_vcf) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/axolotl/pull/1#issuecomment-1807606423) in [tuhinmallick/axolotl](https://github.com/tuhinmallick/axolotl) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPT-4-Web-Browsing/pull/1#issuecomment-1807600832) in [tuhinmallick/GPT-4-Web-Browsing](https://github.com/tuhinmallick/GPT-4-Web-Browsing) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/whisper.cpp/pull/1#issuecomment-1807544152) in [tuhinmallick/whisper.cpp](https://github.com/tuhinmallick/whisper.cpp) +5. 🗣 Commented on [#939](https://github.com/WesternFriend/WF-website/pull/939#issuecomment-1807273537) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/tarsier/pull/1#issuecomment-1807271405) in [tuhinmallick/tarsier](https://github.com/tuhinmallick/tarsier) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/open_clip/pull/1#issuecomment-1807269638) in [tuhinmallick/open_clip](https://github.com/tuhinmallick/open_clip) +8. 🗣 Commented on [#189](https://github.com/cleder/pygeoif/pull/189#issuecomment-1807257977) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +9. 🗣 Commented on [#188](https://github.com/cleder/pygeoif/pull/188#issuecomment-1807257932) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project/pull/1#issuecomment-1807029756) in [tuhinmallick/Data-Engineering-Streaming-Project](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project) From c19ea77b6687033003f5cd3d2bced0acac3b732e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 12:31:56 +0000 Subject: [PATCH 0628/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 33c73235..5e7579e4 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/eastgenomics/single_variant_vcf/pull/1#issuecomment-1807927526) in [eastgenomics/single_variant_vcf](https://github.com/eastgenomics/single_variant_vcf) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/axolotl/pull/1#issuecomment-1807606423) in [tuhinmallick/axolotl](https://github.com/tuhinmallick/axolotl) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPT-4-Web-Browsing/pull/1#issuecomment-1807600832) in [tuhinmallick/GPT-4-Web-Browsing](https://github.com/tuhinmallick/GPT-4-Web-Browsing) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/whisper.cpp/pull/1#issuecomment-1807544152) in [tuhinmallick/whisper.cpp](https://github.com/tuhinmallick/whisper.cpp) -5. 🗣 Commented on [#939](https://github.com/WesternFriend/WF-website/pull/939#issuecomment-1807273537) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/tarsier/pull/1#issuecomment-1807271405) in [tuhinmallick/tarsier](https://github.com/tuhinmallick/tarsier) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/open_clip/pull/1#issuecomment-1807269638) in [tuhinmallick/open_clip](https://github.com/tuhinmallick/open_clip) -8. 🗣 Commented on [#189](https://github.com/cleder/pygeoif/pull/189#issuecomment-1807257977) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -9. 🗣 Commented on [#188](https://github.com/cleder/pygeoif/pull/188#issuecomment-1807257932) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project/pull/1#issuecomment-1807029756) in [tuhinmallick/Data-Engineering-Streaming-Project](https://github.com/tuhinmallick/Data-Engineering-Streaming-Project) +1. 🗣 Commented on [#1196](https://github.com/aimclub/FEDOT/pull/1196#issuecomment-1808018564) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#1](https://github.com/eastgenomics/single_variant_vcf/pull/1#issuecomment-1807927526) in [eastgenomics/single_variant_vcf](https://github.com/eastgenomics/single_variant_vcf) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/axolotl/pull/1#issuecomment-1807606423) in [tuhinmallick/axolotl](https://github.com/tuhinmallick/axolotl) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPT-4-Web-Browsing/pull/1#issuecomment-1807600832) in [tuhinmallick/GPT-4-Web-Browsing](https://github.com/tuhinmallick/GPT-4-Web-Browsing) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/whisper.cpp/pull/1#issuecomment-1807544152) in [tuhinmallick/whisper.cpp](https://github.com/tuhinmallick/whisper.cpp) +6. 🗣 Commented on [#939](https://github.com/WesternFriend/WF-website/pull/939#issuecomment-1807273537) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/tarsier/pull/1#issuecomment-1807271405) in [tuhinmallick/tarsier](https://github.com/tuhinmallick/tarsier) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/open_clip/pull/1#issuecomment-1807269638) in [tuhinmallick/open_clip](https://github.com/tuhinmallick/open_clip) +9. 🗣 Commented on [#189](https://github.com/cleder/pygeoif/pull/189#issuecomment-1807257977) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +10. 🗣 Commented on [#188](https://github.com/cleder/pygeoif/pull/188#issuecomment-1807257932) in [cleder/pygeoif](https://github.com/cleder/pygeoif) From 1b739c33f283a2211f99519b68597413bfe51327 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 13:19:47 +0000 Subject: [PATCH 0629/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5e7579e4..2d5b3fac 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1196](https://github.com/aimclub/FEDOT/pull/1196#issuecomment-1808018564) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#1](https://github.com/eastgenomics/single_variant_vcf/pull/1#issuecomment-1807927526) in [eastgenomics/single_variant_vcf](https://github.com/eastgenomics/single_variant_vcf) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/axolotl/pull/1#issuecomment-1807606423) in [tuhinmallick/axolotl](https://github.com/tuhinmallick/axolotl) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPT-4-Web-Browsing/pull/1#issuecomment-1807600832) in [tuhinmallick/GPT-4-Web-Browsing](https://github.com/tuhinmallick/GPT-4-Web-Browsing) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/whisper.cpp/pull/1#issuecomment-1807544152) in [tuhinmallick/whisper.cpp](https://github.com/tuhinmallick/whisper.cpp) -6. 🗣 Commented on [#939](https://github.com/WesternFriend/WF-website/pull/939#issuecomment-1807273537) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/tarsier/pull/1#issuecomment-1807271405) in [tuhinmallick/tarsier](https://github.com/tuhinmallick/tarsier) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/open_clip/pull/1#issuecomment-1807269638) in [tuhinmallick/open_clip](https://github.com/tuhinmallick/open_clip) -9. 🗣 Commented on [#189](https://github.com/cleder/pygeoif/pull/189#issuecomment-1807257977) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -10. 🗣 Commented on [#188](https://github.com/cleder/pygeoif/pull/188#issuecomment-1807257932) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +1. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#31](https://github.com/eastgenomics/trendyQC/pull/31#issuecomment-1808080103) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +3. 🗣 Commented on [#1196](https://github.com/aimclub/FEDOT/pull/1196#issuecomment-1808018564) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#1](https://github.com/eastgenomics/single_variant_vcf/pull/1#issuecomment-1807927526) in [eastgenomics/single_variant_vcf](https://github.com/eastgenomics/single_variant_vcf) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/axolotl/pull/1#issuecomment-1807606423) in [tuhinmallick/axolotl](https://github.com/tuhinmallick/axolotl) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPT-4-Web-Browsing/pull/1#issuecomment-1807600832) in [tuhinmallick/GPT-4-Web-Browsing](https://github.com/tuhinmallick/GPT-4-Web-Browsing) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/whisper.cpp/pull/1#issuecomment-1807544152) in [tuhinmallick/whisper.cpp](https://github.com/tuhinmallick/whisper.cpp) +8. 🗣 Commented on [#939](https://github.com/WesternFriend/WF-website/pull/939#issuecomment-1807273537) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/tarsier/pull/1#issuecomment-1807271405) in [tuhinmallick/tarsier](https://github.com/tuhinmallick/tarsier) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/open_clip/pull/1#issuecomment-1807269638) in [tuhinmallick/open_clip](https://github.com/tuhinmallick/open_clip) From b24f193fcfef2f5fec16bafe3fcacb0a275a0597 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 15:17:12 +0000 Subject: [PATCH 0630/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2d5b3fac..c03455e7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#31](https://github.com/eastgenomics/trendyQC/pull/31#issuecomment-1808080103) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -3. 🗣 Commented on [#1196](https://github.com/aimclub/FEDOT/pull/1196#issuecomment-1808018564) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#1](https://github.com/eastgenomics/single_variant_vcf/pull/1#issuecomment-1807927526) in [eastgenomics/single_variant_vcf](https://github.com/eastgenomics/single_variant_vcf) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/axolotl/pull/1#issuecomment-1807606423) in [tuhinmallick/axolotl](https://github.com/tuhinmallick/axolotl) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPT-4-Web-Browsing/pull/1#issuecomment-1807600832) in [tuhinmallick/GPT-4-Web-Browsing](https://github.com/tuhinmallick/GPT-4-Web-Browsing) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/whisper.cpp/pull/1#issuecomment-1807544152) in [tuhinmallick/whisper.cpp](https://github.com/tuhinmallick/whisper.cpp) -8. 🗣 Commented on [#939](https://github.com/WesternFriend/WF-website/pull/939#issuecomment-1807273537) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/tarsier/pull/1#issuecomment-1807271405) in [tuhinmallick/tarsier](https://github.com/tuhinmallick/tarsier) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/open_clip/pull/1#issuecomment-1807269638) in [tuhinmallick/open_clip](https://github.com/tuhinmallick/open_clip) +1. 🗣 Commented on [#61](https://github.com/cirKITers/Quafel/pull/61#issuecomment-1808347548) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +2. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#31](https://github.com/eastgenomics/trendyQC/pull/31#issuecomment-1808080103) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +4. 🗣 Commented on [#1196](https://github.com/aimclub/FEDOT/pull/1196#issuecomment-1808018564) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#1](https://github.com/eastgenomics/single_variant_vcf/pull/1#issuecomment-1807927526) in [eastgenomics/single_variant_vcf](https://github.com/eastgenomics/single_variant_vcf) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/axolotl/pull/1#issuecomment-1807606423) in [tuhinmallick/axolotl](https://github.com/tuhinmallick/axolotl) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPT-4-Web-Browsing/pull/1#issuecomment-1807600832) in [tuhinmallick/GPT-4-Web-Browsing](https://github.com/tuhinmallick/GPT-4-Web-Browsing) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/whisper.cpp/pull/1#issuecomment-1807544152) in [tuhinmallick/whisper.cpp](https://github.com/tuhinmallick/whisper.cpp) +9. 🗣 Commented on [#939](https://github.com/WesternFriend/WF-website/pull/939#issuecomment-1807273537) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/tarsier/pull/1#issuecomment-1807271405) in [tuhinmallick/tarsier](https://github.com/tuhinmallick/tarsier) From 22f8b4a043978b1ac7becc54bdafe8a6656c44a4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 15:37:27 +0000 Subject: [PATCH 0631/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c03455e7..51ab0ab0 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#61](https://github.com/cirKITers/Quafel/pull/61#issuecomment-1808347548) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -2. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#31](https://github.com/eastgenomics/trendyQC/pull/31#issuecomment-1808080103) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -4. 🗣 Commented on [#1196](https://github.com/aimclub/FEDOT/pull/1196#issuecomment-1808018564) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#1](https://github.com/eastgenomics/single_variant_vcf/pull/1#issuecomment-1807927526) in [eastgenomics/single_variant_vcf](https://github.com/eastgenomics/single_variant_vcf) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/axolotl/pull/1#issuecomment-1807606423) in [tuhinmallick/axolotl](https://github.com/tuhinmallick/axolotl) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPT-4-Web-Browsing/pull/1#issuecomment-1807600832) in [tuhinmallick/GPT-4-Web-Browsing](https://github.com/tuhinmallick/GPT-4-Web-Browsing) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/whisper.cpp/pull/1#issuecomment-1807544152) in [tuhinmallick/whisper.cpp](https://github.com/tuhinmallick/whisper.cpp) -9. 🗣 Commented on [#939](https://github.com/WesternFriend/WF-website/pull/939#issuecomment-1807273537) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/tarsier/pull/1#issuecomment-1807271405) in [tuhinmallick/tarsier](https://github.com/tuhinmallick/tarsier) +1. 🗣 Commented on [#62](https://github.com/cirKITers/Quafel/pull/62#issuecomment-1808379988) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +2. 🗣 Commented on [#61](https://github.com/cirKITers/Quafel/pull/61#issuecomment-1808347548) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +3. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#31](https://github.com/eastgenomics/trendyQC/pull/31#issuecomment-1808080103) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +5. 🗣 Commented on [#1196](https://github.com/aimclub/FEDOT/pull/1196#issuecomment-1808018564) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#1](https://github.com/eastgenomics/single_variant_vcf/pull/1#issuecomment-1807927526) in [eastgenomics/single_variant_vcf](https://github.com/eastgenomics/single_variant_vcf) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/axolotl/pull/1#issuecomment-1807606423) in [tuhinmallick/axolotl](https://github.com/tuhinmallick/axolotl) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPT-4-Web-Browsing/pull/1#issuecomment-1807600832) in [tuhinmallick/GPT-4-Web-Browsing](https://github.com/tuhinmallick/GPT-4-Web-Browsing) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/whisper.cpp/pull/1#issuecomment-1807544152) in [tuhinmallick/whisper.cpp](https://github.com/tuhinmallick/whisper.cpp) +10. 🗣 Commented on [#939](https://github.com/WesternFriend/WF-website/pull/939#issuecomment-1807273537) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) From 1fa640e5c095d51314b1b49a1f964431987aecad Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 16:21:38 +0000 Subject: [PATCH 0632/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 51ab0ab0..f26d04ea 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#62](https://github.com/cirKITers/Quafel/pull/62#issuecomment-1808379988) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -2. 🗣 Commented on [#61](https://github.com/cirKITers/Quafel/pull/61#issuecomment-1808347548) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -3. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#31](https://github.com/eastgenomics/trendyQC/pull/31#issuecomment-1808080103) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -5. 🗣 Commented on [#1196](https://github.com/aimclub/FEDOT/pull/1196#issuecomment-1808018564) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#1](https://github.com/eastgenomics/single_variant_vcf/pull/1#issuecomment-1807927526) in [eastgenomics/single_variant_vcf](https://github.com/eastgenomics/single_variant_vcf) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/axolotl/pull/1#issuecomment-1807606423) in [tuhinmallick/axolotl](https://github.com/tuhinmallick/axolotl) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPT-4-Web-Browsing/pull/1#issuecomment-1807600832) in [tuhinmallick/GPT-4-Web-Browsing](https://github.com/tuhinmallick/GPT-4-Web-Browsing) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/whisper.cpp/pull/1#issuecomment-1807544152) in [tuhinmallick/whisper.cpp](https://github.com/tuhinmallick/whisper.cpp) -10. 🗣 Commented on [#939](https://github.com/WesternFriend/WF-website/pull/939#issuecomment-1807273537) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +1. 🗣 Commented on [#2](https://github.com/tzamalisp/crossai/pull/2#issuecomment-1808479146) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +2. 🗣 Commented on [#62](https://github.com/cirKITers/Quafel/pull/62#issuecomment-1808379988) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +3. 🗣 Commented on [#61](https://github.com/cirKITers/Quafel/pull/61#issuecomment-1808347548) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +4. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#31](https://github.com/eastgenomics/trendyQC/pull/31#issuecomment-1808080103) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +6. 🗣 Commented on [#1196](https://github.com/aimclub/FEDOT/pull/1196#issuecomment-1808018564) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#1](https://github.com/eastgenomics/single_variant_vcf/pull/1#issuecomment-1807927526) in [eastgenomics/single_variant_vcf](https://github.com/eastgenomics/single_variant_vcf) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/axolotl/pull/1#issuecomment-1807606423) in [tuhinmallick/axolotl](https://github.com/tuhinmallick/axolotl) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPT-4-Web-Browsing/pull/1#issuecomment-1807600832) in [tuhinmallick/GPT-4-Web-Browsing](https://github.com/tuhinmallick/GPT-4-Web-Browsing) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/whisper.cpp/pull/1#issuecomment-1807544152) in [tuhinmallick/whisper.cpp](https://github.com/tuhinmallick/whisper.cpp) From da2bef0183a2bb43e8828ad5c1259ef9e20ec291 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 16:40:53 +0000 Subject: [PATCH 0633/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f26d04ea..92b27c1d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2](https://github.com/tzamalisp/crossai/pull/2#issuecomment-1808479146) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -2. 🗣 Commented on [#62](https://github.com/cirKITers/Quafel/pull/62#issuecomment-1808379988) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -3. 🗣 Commented on [#61](https://github.com/cirKITers/Quafel/pull/61#issuecomment-1808347548) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -4. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#31](https://github.com/eastgenomics/trendyQC/pull/31#issuecomment-1808080103) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -6. 🗣 Commented on [#1196](https://github.com/aimclub/FEDOT/pull/1196#issuecomment-1808018564) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#1](https://github.com/eastgenomics/single_variant_vcf/pull/1#issuecomment-1807927526) in [eastgenomics/single_variant_vcf](https://github.com/eastgenomics/single_variant_vcf) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/axolotl/pull/1#issuecomment-1807606423) in [tuhinmallick/axolotl](https://github.com/tuhinmallick/axolotl) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPT-4-Web-Browsing/pull/1#issuecomment-1807600832) in [tuhinmallick/GPT-4-Web-Browsing](https://github.com/tuhinmallick/GPT-4-Web-Browsing) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/whisper.cpp/pull/1#issuecomment-1807544152) in [tuhinmallick/whisper.cpp](https://github.com/tuhinmallick/whisper.cpp) +1. 🗣 Commented on [#807](https://github.com/scilus/scilpy/pull/807#issuecomment-1808509194) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#2](https://github.com/tzamalisp/crossai/pull/2#issuecomment-1808479146) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +3. 🗣 Commented on [#62](https://github.com/cirKITers/Quafel/pull/62#issuecomment-1808379988) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +4. 🗣 Commented on [#61](https://github.com/cirKITers/Quafel/pull/61#issuecomment-1808347548) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +5. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#31](https://github.com/eastgenomics/trendyQC/pull/31#issuecomment-1808080103) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +7. 🗣 Commented on [#1196](https://github.com/aimclub/FEDOT/pull/1196#issuecomment-1808018564) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#1](https://github.com/eastgenomics/single_variant_vcf/pull/1#issuecomment-1807927526) in [eastgenomics/single_variant_vcf](https://github.com/eastgenomics/single_variant_vcf) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/axolotl/pull/1#issuecomment-1807606423) in [tuhinmallick/axolotl](https://github.com/tuhinmallick/axolotl) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPT-4-Web-Browsing/pull/1#issuecomment-1807600832) in [tuhinmallick/GPT-4-Web-Browsing](https://github.com/tuhinmallick/GPT-4-Web-Browsing) From bee0c4565c8057da3d4084b058efd14492ff8e83 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 17:14:16 +0000 Subject: [PATCH 0634/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 92b27c1d..2f67f0ce 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#807](https://github.com/scilus/scilpy/pull/807#issuecomment-1808509194) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#2](https://github.com/tzamalisp/crossai/pull/2#issuecomment-1808479146) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -3. 🗣 Commented on [#62](https://github.com/cirKITers/Quafel/pull/62#issuecomment-1808379988) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -4. 🗣 Commented on [#61](https://github.com/cirKITers/Quafel/pull/61#issuecomment-1808347548) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -5. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#31](https://github.com/eastgenomics/trendyQC/pull/31#issuecomment-1808080103) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -7. 🗣 Commented on [#1196](https://github.com/aimclub/FEDOT/pull/1196#issuecomment-1808018564) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#1](https://github.com/eastgenomics/single_variant_vcf/pull/1#issuecomment-1807927526) in [eastgenomics/single_variant_vcf](https://github.com/eastgenomics/single_variant_vcf) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/axolotl/pull/1#issuecomment-1807606423) in [tuhinmallick/axolotl](https://github.com/tuhinmallick/axolotl) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/GPT-4-Web-Browsing/pull/1#issuecomment-1807600832) in [tuhinmallick/GPT-4-Web-Browsing](https://github.com/tuhinmallick/GPT-4-Web-Browsing) +1. 🗣 Commented on [#806](https://github.com/scilus/scilpy/pull/806#issuecomment-1808613990) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#807](https://github.com/scilus/scilpy/pull/807#issuecomment-1808509194) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#2](https://github.com/tzamalisp/crossai/pull/2#issuecomment-1808479146) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +4. 🗣 Commented on [#62](https://github.com/cirKITers/Quafel/pull/62#issuecomment-1808379988) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +5. 🗣 Commented on [#61](https://github.com/cirKITers/Quafel/pull/61#issuecomment-1808347548) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +6. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#31](https://github.com/eastgenomics/trendyQC/pull/31#issuecomment-1808080103) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +8. 🗣 Commented on [#1196](https://github.com/aimclub/FEDOT/pull/1196#issuecomment-1808018564) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#1](https://github.com/eastgenomics/single_variant_vcf/pull/1#issuecomment-1807927526) in [eastgenomics/single_variant_vcf](https://github.com/eastgenomics/single_variant_vcf) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/axolotl/pull/1#issuecomment-1807606423) in [tuhinmallick/axolotl](https://github.com/tuhinmallick/axolotl) From 514714d99d90fd300aa236f23372103e603f948f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 18:38:00 +0000 Subject: [PATCH 0635/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2f67f0ce..2e8c69ac 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#806](https://github.com/scilus/scilpy/pull/806#issuecomment-1808613990) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#807](https://github.com/scilus/scilpy/pull/807#issuecomment-1808509194) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#2](https://github.com/tzamalisp/crossai/pull/2#issuecomment-1808479146) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -4. 🗣 Commented on [#62](https://github.com/cirKITers/Quafel/pull/62#issuecomment-1808379988) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -5. 🗣 Commented on [#61](https://github.com/cirKITers/Quafel/pull/61#issuecomment-1808347548) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -6. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#31](https://github.com/eastgenomics/trendyQC/pull/31#issuecomment-1808080103) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -8. 🗣 Commented on [#1196](https://github.com/aimclub/FEDOT/pull/1196#issuecomment-1808018564) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#1](https://github.com/eastgenomics/single_variant_vcf/pull/1#issuecomment-1807927526) in [eastgenomics/single_variant_vcf](https://github.com/eastgenomics/single_variant_vcf) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/axolotl/pull/1#issuecomment-1807606423) in [tuhinmallick/axolotl](https://github.com/tuhinmallick/axolotl) +1. 🗣 Commented on [#1052](https://github.com/yeatmanlab/pyAFQ/pull/1052#issuecomment-1808766474) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +2. 🗣 Commented on [#806](https://github.com/scilus/scilpy/pull/806#issuecomment-1808613990) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#807](https://github.com/scilus/scilpy/pull/807#issuecomment-1808509194) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#2](https://github.com/tzamalisp/crossai/pull/2#issuecomment-1808479146) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +5. 🗣 Commented on [#62](https://github.com/cirKITers/Quafel/pull/62#issuecomment-1808379988) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +6. 🗣 Commented on [#61](https://github.com/cirKITers/Quafel/pull/61#issuecomment-1808347548) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +7. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#31](https://github.com/eastgenomics/trendyQC/pull/31#issuecomment-1808080103) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +9. 🗣 Commented on [#1196](https://github.com/aimclub/FEDOT/pull/1196#issuecomment-1808018564) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#1](https://github.com/eastgenomics/single_variant_vcf/pull/1#issuecomment-1807927526) in [eastgenomics/single_variant_vcf](https://github.com/eastgenomics/single_variant_vcf) From 3e8572c238628abdbaeb67cd92b7e375c6b016fc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 20:15:43 +0000 Subject: [PATCH 0636/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2e8c69ac..bdf94376 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1052](https://github.com/yeatmanlab/pyAFQ/pull/1052#issuecomment-1808766474) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -2. 🗣 Commented on [#806](https://github.com/scilus/scilpy/pull/806#issuecomment-1808613990) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#807](https://github.com/scilus/scilpy/pull/807#issuecomment-1808509194) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#2](https://github.com/tzamalisp/crossai/pull/2#issuecomment-1808479146) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -5. 🗣 Commented on [#62](https://github.com/cirKITers/Quafel/pull/62#issuecomment-1808379988) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -6. 🗣 Commented on [#61](https://github.com/cirKITers/Quafel/pull/61#issuecomment-1808347548) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -7. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#31](https://github.com/eastgenomics/trendyQC/pull/31#issuecomment-1808080103) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -9. 🗣 Commented on [#1196](https://github.com/aimclub/FEDOT/pull/1196#issuecomment-1808018564) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#1](https://github.com/eastgenomics/single_variant_vcf/pull/1#issuecomment-1807927526) in [eastgenomics/single_variant_vcf](https://github.com/eastgenomics/single_variant_vcf) +1. 🗣 Commented on [#1398](https://github.com/spacetelescope/jwql/pull/1398#issuecomment-1808925712) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#1052](https://github.com/yeatmanlab/pyAFQ/pull/1052#issuecomment-1808766474) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +3. 🗣 Commented on [#806](https://github.com/scilus/scilpy/pull/806#issuecomment-1808613990) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#807](https://github.com/scilus/scilpy/pull/807#issuecomment-1808509194) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#2](https://github.com/tzamalisp/crossai/pull/2#issuecomment-1808479146) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +6. 🗣 Commented on [#62](https://github.com/cirKITers/Quafel/pull/62#issuecomment-1808379988) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +7. 🗣 Commented on [#61](https://github.com/cirKITers/Quafel/pull/61#issuecomment-1808347548) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +8. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#31](https://github.com/eastgenomics/trendyQC/pull/31#issuecomment-1808080103) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +10. 🗣 Commented on [#1196](https://github.com/aimclub/FEDOT/pull/1196#issuecomment-1808018564) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From 3db45b4d2416dcbbf1d8b0ed78da1938f01bf785 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 21:14:39 +0000 Subject: [PATCH 0637/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bdf94376..401b72b5 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1398](https://github.com/spacetelescope/jwql/pull/1398#issuecomment-1808925712) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#1052](https://github.com/yeatmanlab/pyAFQ/pull/1052#issuecomment-1808766474) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -3. 🗣 Commented on [#806](https://github.com/scilus/scilpy/pull/806#issuecomment-1808613990) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#807](https://github.com/scilus/scilpy/pull/807#issuecomment-1808509194) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#2](https://github.com/tzamalisp/crossai/pull/2#issuecomment-1808479146) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -6. 🗣 Commented on [#62](https://github.com/cirKITers/Quafel/pull/62#issuecomment-1808379988) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -7. 🗣 Commented on [#61](https://github.com/cirKITers/Quafel/pull/61#issuecomment-1808347548) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -8. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#31](https://github.com/eastgenomics/trendyQC/pull/31#issuecomment-1808080103) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -10. 🗣 Commented on [#1196](https://github.com/aimclub/FEDOT/pull/1196#issuecomment-1808018564) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#1399](https://github.com/spacetelescope/jwql/pull/1399#issuecomment-1809122920) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#1398](https://github.com/spacetelescope/jwql/pull/1398#issuecomment-1808925712) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#1052](https://github.com/yeatmanlab/pyAFQ/pull/1052#issuecomment-1808766474) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +4. 🗣 Commented on [#806](https://github.com/scilus/scilpy/pull/806#issuecomment-1808613990) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#807](https://github.com/scilus/scilpy/pull/807#issuecomment-1808509194) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#2](https://github.com/tzamalisp/crossai/pull/2#issuecomment-1808479146) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +7. 🗣 Commented on [#62](https://github.com/cirKITers/Quafel/pull/62#issuecomment-1808379988) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +8. 🗣 Commented on [#61](https://github.com/cirKITers/Quafel/pull/61#issuecomment-1808347548) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +9. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#31](https://github.com/eastgenomics/trendyQC/pull/31#issuecomment-1808080103) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) From 3ddc17105a5fa7b58da6bebfb54d3b69974d1641 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 21:37:06 +0000 Subject: [PATCH 0638/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 401b72b5..e6cf46f2 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1399](https://github.com/spacetelescope/jwql/pull/1399#issuecomment-1809122920) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#1398](https://github.com/spacetelescope/jwql/pull/1398#issuecomment-1808925712) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#1052](https://github.com/yeatmanlab/pyAFQ/pull/1052#issuecomment-1808766474) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -4. 🗣 Commented on [#806](https://github.com/scilus/scilpy/pull/806#issuecomment-1808613990) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#807](https://github.com/scilus/scilpy/pull/807#issuecomment-1808509194) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#2](https://github.com/tzamalisp/crossai/pull/2#issuecomment-1808479146) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -7. 🗣 Commented on [#62](https://github.com/cirKITers/Quafel/pull/62#issuecomment-1808379988) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -8. 🗣 Commented on [#61](https://github.com/cirKITers/Quafel/pull/61#issuecomment-1808347548) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -9. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#31](https://github.com/eastgenomics/trendyQC/pull/31#issuecomment-1808080103) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +1. 🗣 Commented on [#1391](https://github.com/spacetelescope/jwql/pull/1391#issuecomment-1809152859) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#1399](https://github.com/spacetelescope/jwql/pull/1399#issuecomment-1809122920) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#1398](https://github.com/spacetelescope/jwql/pull/1398#issuecomment-1808925712) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#1052](https://github.com/yeatmanlab/pyAFQ/pull/1052#issuecomment-1808766474) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +5. 🗣 Commented on [#806](https://github.com/scilus/scilpy/pull/806#issuecomment-1808613990) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#807](https://github.com/scilus/scilpy/pull/807#issuecomment-1808509194) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#2](https://github.com/tzamalisp/crossai/pull/2#issuecomment-1808479146) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +8. 🗣 Commented on [#62](https://github.com/cirKITers/Quafel/pull/62#issuecomment-1808379988) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +9. 🗣 Commented on [#61](https://github.com/cirKITers/Quafel/pull/61#issuecomment-1808347548) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +10. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 36a4403b690c6b85442b9b87535ac90c6101cbab Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 03:16:29 +0000 Subject: [PATCH 0639/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e6cf46f2..5bf53630 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1391](https://github.com/spacetelescope/jwql/pull/1391#issuecomment-1809152859) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#1399](https://github.com/spacetelescope/jwql/pull/1399#issuecomment-1809122920) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#1398](https://github.com/spacetelescope/jwql/pull/1398#issuecomment-1808925712) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#1052](https://github.com/yeatmanlab/pyAFQ/pull/1052#issuecomment-1808766474) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -5. 🗣 Commented on [#806](https://github.com/scilus/scilpy/pull/806#issuecomment-1808613990) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#807](https://github.com/scilus/scilpy/pull/807#issuecomment-1808509194) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#2](https://github.com/tzamalisp/crossai/pull/2#issuecomment-1808479146) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -8. 🗣 Commented on [#62](https://github.com/cirKITers/Quafel/pull/62#issuecomment-1808379988) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -9. 🗣 Commented on [#61](https://github.com/cirKITers/Quafel/pull/61#issuecomment-1808347548) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -10. 🗣 Commented on [#5314](https://github.com/rhinstaller/anaconda/pull/5314#issuecomment-1808119951) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#1658](https://github.com/astropy/photutils/pull/1658#issuecomment-1809477345) in [astropy/photutils](https://github.com/astropy/photutils) +2. 🗣 Commented on [#873](https://github.com/ToFuProject/tofu/pull/873#issuecomment-1809460872) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#1391](https://github.com/spacetelescope/jwql/pull/1391#issuecomment-1809152859) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#1399](https://github.com/spacetelescope/jwql/pull/1399#issuecomment-1809122920) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#1398](https://github.com/spacetelescope/jwql/pull/1398#issuecomment-1808925712) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#1052](https://github.com/yeatmanlab/pyAFQ/pull/1052#issuecomment-1808766474) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +7. 🗣 Commented on [#806](https://github.com/scilus/scilpy/pull/806#issuecomment-1808613990) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#807](https://github.com/scilus/scilpy/pull/807#issuecomment-1808509194) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#2](https://github.com/tzamalisp/crossai/pull/2#issuecomment-1808479146) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +10. 🗣 Commented on [#62](https://github.com/cirKITers/Quafel/pull/62#issuecomment-1808379988) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) From 4ecfb72d95e419c5ed1e42e5b49418cb9c3a4a26 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 05:14:54 +0000 Subject: [PATCH 0640/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5bf53630..7f6d6a7e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1658](https://github.com/astropy/photutils/pull/1658#issuecomment-1809477345) in [astropy/photutils](https://github.com/astropy/photutils) -2. 🗣 Commented on [#873](https://github.com/ToFuProject/tofu/pull/873#issuecomment-1809460872) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#1391](https://github.com/spacetelescope/jwql/pull/1391#issuecomment-1809152859) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#1399](https://github.com/spacetelescope/jwql/pull/1399#issuecomment-1809122920) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#1398](https://github.com/spacetelescope/jwql/pull/1398#issuecomment-1808925712) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#1052](https://github.com/yeatmanlab/pyAFQ/pull/1052#issuecomment-1808766474) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -7. 🗣 Commented on [#806](https://github.com/scilus/scilpy/pull/806#issuecomment-1808613990) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#807](https://github.com/scilus/scilpy/pull/807#issuecomment-1808509194) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#2](https://github.com/tzamalisp/crossai/pull/2#issuecomment-1808479146) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -10. 🗣 Commented on [#62](https://github.com/cirKITers/Quafel/pull/62#issuecomment-1808379988) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +1. 🗣 Commented on [#865](https://github.com/PyThaiNLP/pythainlp/pull/865#issuecomment-1809552014) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#1658](https://github.com/astropy/photutils/pull/1658#issuecomment-1809477345) in [astropy/photutils](https://github.com/astropy/photutils) +3. 🗣 Commented on [#873](https://github.com/ToFuProject/tofu/pull/873#issuecomment-1809460872) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#1391](https://github.com/spacetelescope/jwql/pull/1391#issuecomment-1809152859) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#1399](https://github.com/spacetelescope/jwql/pull/1399#issuecomment-1809122920) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#1398](https://github.com/spacetelescope/jwql/pull/1398#issuecomment-1808925712) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#1052](https://github.com/yeatmanlab/pyAFQ/pull/1052#issuecomment-1808766474) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +8. 🗣 Commented on [#806](https://github.com/scilus/scilpy/pull/806#issuecomment-1808613990) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#807](https://github.com/scilus/scilpy/pull/807#issuecomment-1808509194) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#2](https://github.com/tzamalisp/crossai/pull/2#issuecomment-1808479146) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) From dd86a545f2f1ffe679e5179b37551795e871a5a4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 10:38:29 +0000 Subject: [PATCH 0641/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7f6d6a7e..64802bd6 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#865](https://github.com/PyThaiNLP/pythainlp/pull/865#issuecomment-1809552014) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#1658](https://github.com/astropy/photutils/pull/1658#issuecomment-1809477345) in [astropy/photutils](https://github.com/astropy/photutils) -3. 🗣 Commented on [#873](https://github.com/ToFuProject/tofu/pull/873#issuecomment-1809460872) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#1391](https://github.com/spacetelescope/jwql/pull/1391#issuecomment-1809152859) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#1399](https://github.com/spacetelescope/jwql/pull/1399#issuecomment-1809122920) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#1398](https://github.com/spacetelescope/jwql/pull/1398#issuecomment-1808925712) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#1052](https://github.com/yeatmanlab/pyAFQ/pull/1052#issuecomment-1808766474) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -8. 🗣 Commented on [#806](https://github.com/scilus/scilpy/pull/806#issuecomment-1808613990) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#807](https://github.com/scilus/scilpy/pull/807#issuecomment-1808509194) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#2](https://github.com/tzamalisp/crossai/pull/2#issuecomment-1808479146) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +1. 🗣 Commented on [#4345](https://github.com/MDAnalysis/mdanalysis/pull/4345#issuecomment-1809935868) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#865](https://github.com/PyThaiNLP/pythainlp/pull/865#issuecomment-1809552014) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#1658](https://github.com/astropy/photutils/pull/1658#issuecomment-1809477345) in [astropy/photutils](https://github.com/astropy/photutils) +4. 🗣 Commented on [#873](https://github.com/ToFuProject/tofu/pull/873#issuecomment-1809460872) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#1391](https://github.com/spacetelescope/jwql/pull/1391#issuecomment-1809152859) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#1399](https://github.com/spacetelescope/jwql/pull/1399#issuecomment-1809122920) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#1398](https://github.com/spacetelescope/jwql/pull/1398#issuecomment-1808925712) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#1052](https://github.com/yeatmanlab/pyAFQ/pull/1052#issuecomment-1808766474) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +9. 🗣 Commented on [#806](https://github.com/scilus/scilpy/pull/806#issuecomment-1808613990) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#807](https://github.com/scilus/scilpy/pull/807#issuecomment-1808509194) in [scilus/scilpy](https://github.com/scilus/scilpy) From c8b260e6ed637976afa8510833654565b884fe3d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 12:31:03 +0000 Subject: [PATCH 0642/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 64802bd6..c910c9f1 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4345](https://github.com/MDAnalysis/mdanalysis/pull/4345#issuecomment-1809935868) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#865](https://github.com/PyThaiNLP/pythainlp/pull/865#issuecomment-1809552014) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#1658](https://github.com/astropy/photutils/pull/1658#issuecomment-1809477345) in [astropy/photutils](https://github.com/astropy/photutils) -4. 🗣 Commented on [#873](https://github.com/ToFuProject/tofu/pull/873#issuecomment-1809460872) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#1391](https://github.com/spacetelescope/jwql/pull/1391#issuecomment-1809152859) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#1399](https://github.com/spacetelescope/jwql/pull/1399#issuecomment-1809122920) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#1398](https://github.com/spacetelescope/jwql/pull/1398#issuecomment-1808925712) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#1052](https://github.com/yeatmanlab/pyAFQ/pull/1052#issuecomment-1808766474) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -9. 🗣 Commented on [#806](https://github.com/scilus/scilpy/pull/806#issuecomment-1808613990) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#807](https://github.com/scilus/scilpy/pull/807#issuecomment-1808509194) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#85](https://github.com/eastgenomics/athena/pull/85#issuecomment-1810068435) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +2. 🗣 Commented on [#4345](https://github.com/MDAnalysis/mdanalysis/pull/4345#issuecomment-1809935868) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#865](https://github.com/PyThaiNLP/pythainlp/pull/865#issuecomment-1809552014) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#1658](https://github.com/astropy/photutils/pull/1658#issuecomment-1809477345) in [astropy/photutils](https://github.com/astropy/photutils) +5. 🗣 Commented on [#873](https://github.com/ToFuProject/tofu/pull/873#issuecomment-1809460872) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#1391](https://github.com/spacetelescope/jwql/pull/1391#issuecomment-1809152859) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#1399](https://github.com/spacetelescope/jwql/pull/1399#issuecomment-1809122920) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#1398](https://github.com/spacetelescope/jwql/pull/1398#issuecomment-1808925712) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#1052](https://github.com/yeatmanlab/pyAFQ/pull/1052#issuecomment-1808766474) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +10. 🗣 Commented on [#806](https://github.com/scilus/scilpy/pull/806#issuecomment-1808613990) in [scilus/scilpy](https://github.com/scilus/scilpy) From e8218597670e4bed8db4d38553aeb9fd0e240748 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 13:20:08 +0000 Subject: [PATCH 0643/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c910c9f1..c116d459 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#85](https://github.com/eastgenomics/athena/pull/85#issuecomment-1810068435) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -2. 🗣 Commented on [#4345](https://github.com/MDAnalysis/mdanalysis/pull/4345#issuecomment-1809935868) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#865](https://github.com/PyThaiNLP/pythainlp/pull/865#issuecomment-1809552014) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#1658](https://github.com/astropy/photutils/pull/1658#issuecomment-1809477345) in [astropy/photutils](https://github.com/astropy/photutils) -5. 🗣 Commented on [#873](https://github.com/ToFuProject/tofu/pull/873#issuecomment-1809460872) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#1391](https://github.com/spacetelescope/jwql/pull/1391#issuecomment-1809152859) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#1399](https://github.com/spacetelescope/jwql/pull/1399#issuecomment-1809122920) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#1398](https://github.com/spacetelescope/jwql/pull/1398#issuecomment-1808925712) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#1052](https://github.com/yeatmanlab/pyAFQ/pull/1052#issuecomment-1808766474) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -10. 🗣 Commented on [#806](https://github.com/scilus/scilpy/pull/806#issuecomment-1808613990) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#4292](https://github.com/MDAnalysis/mdanalysis/pull/4292#issuecomment-1810120732) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#85](https://github.com/eastgenomics/athena/pull/85#issuecomment-1810068435) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +3. 🗣 Commented on [#4345](https://github.com/MDAnalysis/mdanalysis/pull/4345#issuecomment-1809935868) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#865](https://github.com/PyThaiNLP/pythainlp/pull/865#issuecomment-1809552014) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#1658](https://github.com/astropy/photutils/pull/1658#issuecomment-1809477345) in [astropy/photutils](https://github.com/astropy/photutils) +6. 🗣 Commented on [#873](https://github.com/ToFuProject/tofu/pull/873#issuecomment-1809460872) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#1391](https://github.com/spacetelescope/jwql/pull/1391#issuecomment-1809152859) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#1399](https://github.com/spacetelescope/jwql/pull/1399#issuecomment-1809122920) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#1398](https://github.com/spacetelescope/jwql/pull/1398#issuecomment-1808925712) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#1052](https://github.com/yeatmanlab/pyAFQ/pull/1052#issuecomment-1808766474) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) From 1878ce1925a25b7ae4fc529b06582628943cecd6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 14:15:02 +0000 Subject: [PATCH 0644/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c116d459..77fdd750 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4292](https://github.com/MDAnalysis/mdanalysis/pull/4292#issuecomment-1810120732) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#85](https://github.com/eastgenomics/athena/pull/85#issuecomment-1810068435) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -3. 🗣 Commented on [#4345](https://github.com/MDAnalysis/mdanalysis/pull/4345#issuecomment-1809935868) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#865](https://github.com/PyThaiNLP/pythainlp/pull/865#issuecomment-1809552014) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#1658](https://github.com/astropy/photutils/pull/1658#issuecomment-1809477345) in [astropy/photutils](https://github.com/astropy/photutils) -6. 🗣 Commented on [#873](https://github.com/ToFuProject/tofu/pull/873#issuecomment-1809460872) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#1391](https://github.com/spacetelescope/jwql/pull/1391#issuecomment-1809152859) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#1399](https://github.com/spacetelescope/jwql/pull/1399#issuecomment-1809122920) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#1398](https://github.com/spacetelescope/jwql/pull/1398#issuecomment-1808925712) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#1052](https://github.com/yeatmanlab/pyAFQ/pull/1052#issuecomment-1808766474) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +1. 🗣 Commented on [#2019](https://github.com/rpm-software-management/dnf/pull/2019#issuecomment-1810236763) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +2. 🗣 Commented on [#4292](https://github.com/MDAnalysis/mdanalysis/pull/4292#issuecomment-1810120732) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#85](https://github.com/eastgenomics/athena/pull/85#issuecomment-1810068435) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +4. 🗣 Commented on [#4345](https://github.com/MDAnalysis/mdanalysis/pull/4345#issuecomment-1809935868) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#865](https://github.com/PyThaiNLP/pythainlp/pull/865#issuecomment-1809552014) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#1658](https://github.com/astropy/photutils/pull/1658#issuecomment-1809477345) in [astropy/photutils](https://github.com/astropy/photutils) +7. 🗣 Commented on [#873](https://github.com/ToFuProject/tofu/pull/873#issuecomment-1809460872) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#1391](https://github.com/spacetelescope/jwql/pull/1391#issuecomment-1809152859) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#1399](https://github.com/spacetelescope/jwql/pull/1399#issuecomment-1809122920) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#1398](https://github.com/spacetelescope/jwql/pull/1398#issuecomment-1808925712) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 8253759b976c620f0477029b413229a496fbcee4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 16:17:47 +0000 Subject: [PATCH 0645/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 77fdd750..0527b1f7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2019](https://github.com/rpm-software-management/dnf/pull/2019#issuecomment-1810236763) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -2. 🗣 Commented on [#4292](https://github.com/MDAnalysis/mdanalysis/pull/4292#issuecomment-1810120732) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#85](https://github.com/eastgenomics/athena/pull/85#issuecomment-1810068435) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -4. 🗣 Commented on [#4345](https://github.com/MDAnalysis/mdanalysis/pull/4345#issuecomment-1809935868) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#865](https://github.com/PyThaiNLP/pythainlp/pull/865#issuecomment-1809552014) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#1658](https://github.com/astropy/photutils/pull/1658#issuecomment-1809477345) in [astropy/photutils](https://github.com/astropy/photutils) -7. 🗣 Commented on [#873](https://github.com/ToFuProject/tofu/pull/873#issuecomment-1809460872) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#1391](https://github.com/spacetelescope/jwql/pull/1391#issuecomment-1809152859) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#1399](https://github.com/spacetelescope/jwql/pull/1399#issuecomment-1809122920) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#1398](https://github.com/spacetelescope/jwql/pull/1398#issuecomment-1808925712) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#1011](https://github.com/oemof/oemof-solph/pull/1011#issuecomment-1810508923) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +2. 🗣 Commented on [#5324](https://github.com/rhinstaller/anaconda/pull/5324#issuecomment-1810494902) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#2019](https://github.com/rpm-software-management/dnf/pull/2019#issuecomment-1810236763) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +4. 🗣 Commented on [#4292](https://github.com/MDAnalysis/mdanalysis/pull/4292#issuecomment-1810120732) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#85](https://github.com/eastgenomics/athena/pull/85#issuecomment-1810068435) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +6. 🗣 Commented on [#4345](https://github.com/MDAnalysis/mdanalysis/pull/4345#issuecomment-1809935868) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#865](https://github.com/PyThaiNLP/pythainlp/pull/865#issuecomment-1809552014) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +8. 🗣 Commented on [#1658](https://github.com/astropy/photutils/pull/1658#issuecomment-1809477345) in [astropy/photutils](https://github.com/astropy/photutils) +9. 🗣 Commented on [#873](https://github.com/ToFuProject/tofu/pull/873#issuecomment-1809460872) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#1391](https://github.com/spacetelescope/jwql/pull/1391#issuecomment-1809152859) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From e26fbc23a167771bc9c1e2147d957525a3517334 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 22:37:14 +0000 Subject: [PATCH 0646/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0527b1f7..fba45247 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1011](https://github.com/oemof/oemof-solph/pull/1011#issuecomment-1810508923) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -2. 🗣 Commented on [#5324](https://github.com/rhinstaller/anaconda/pull/5324#issuecomment-1810494902) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#2019](https://github.com/rpm-software-management/dnf/pull/2019#issuecomment-1810236763) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -4. 🗣 Commented on [#4292](https://github.com/MDAnalysis/mdanalysis/pull/4292#issuecomment-1810120732) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#85](https://github.com/eastgenomics/athena/pull/85#issuecomment-1810068435) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -6. 🗣 Commented on [#4345](https://github.com/MDAnalysis/mdanalysis/pull/4345#issuecomment-1809935868) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#865](https://github.com/PyThaiNLP/pythainlp/pull/865#issuecomment-1809552014) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -8. 🗣 Commented on [#1658](https://github.com/astropy/photutils/pull/1658#issuecomment-1809477345) in [astropy/photutils](https://github.com/astropy/photutils) -9. 🗣 Commented on [#873](https://github.com/ToFuProject/tofu/pull/873#issuecomment-1809460872) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#1391](https://github.com/spacetelescope/jwql/pull/1391#issuecomment-1809152859) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#1012](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1012#issuecomment-1811489986) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#1011](https://github.com/oemof/oemof-solph/pull/1011#issuecomment-1810508923) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +3. 🗣 Commented on [#5324](https://github.com/rhinstaller/anaconda/pull/5324#issuecomment-1810494902) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#2019](https://github.com/rpm-software-management/dnf/pull/2019#issuecomment-1810236763) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +5. 🗣 Commented on [#4292](https://github.com/MDAnalysis/mdanalysis/pull/4292#issuecomment-1810120732) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#85](https://github.com/eastgenomics/athena/pull/85#issuecomment-1810068435) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +7. 🗣 Commented on [#4345](https://github.com/MDAnalysis/mdanalysis/pull/4345#issuecomment-1809935868) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#865](https://github.com/PyThaiNLP/pythainlp/pull/865#issuecomment-1809552014) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#1658](https://github.com/astropy/photutils/pull/1658#issuecomment-1809477345) in [astropy/photutils](https://github.com/astropy/photutils) +10. 🗣 Commented on [#873](https://github.com/ToFuProject/tofu/pull/873#issuecomment-1809460872) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From ca0542194671ba28807deb4415f2d194f9dbc2c2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 09:17:16 +0000 Subject: [PATCH 0647/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fba45247..b9cc30de 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1012](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1012#issuecomment-1811489986) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#1011](https://github.com/oemof/oemof-solph/pull/1011#issuecomment-1810508923) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -3. 🗣 Commented on [#5324](https://github.com/rhinstaller/anaconda/pull/5324#issuecomment-1810494902) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#2019](https://github.com/rpm-software-management/dnf/pull/2019#issuecomment-1810236763) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -5. 🗣 Commented on [#4292](https://github.com/MDAnalysis/mdanalysis/pull/4292#issuecomment-1810120732) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#85](https://github.com/eastgenomics/athena/pull/85#issuecomment-1810068435) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -7. 🗣 Commented on [#4345](https://github.com/MDAnalysis/mdanalysis/pull/4345#issuecomment-1809935868) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#865](https://github.com/PyThaiNLP/pythainlp/pull/865#issuecomment-1809552014) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#1658](https://github.com/astropy/photutils/pull/1658#issuecomment-1809477345) in [astropy/photutils](https://github.com/astropy/photutils) -10. 🗣 Commented on [#873](https://github.com/ToFuProject/tofu/pull/873#issuecomment-1809460872) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#21528](https://github.com/spyder-ide/spyder/pull/21528#issuecomment-1812047539) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#4](https://github.com/tzamalisp/crossai/pull/4#issuecomment-1812046047) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +3. 🗣 Commented on [#3](https://github.com/tzamalisp/crossai/pull/3#issuecomment-1812044864) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +4. 🗣 Commented on [#1012](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1012#issuecomment-1811489986) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1011](https://github.com/oemof/oemof-solph/pull/1011#issuecomment-1810508923) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +6. 🗣 Commented on [#5324](https://github.com/rhinstaller/anaconda/pull/5324#issuecomment-1810494902) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#2019](https://github.com/rpm-software-management/dnf/pull/2019#issuecomment-1810236763) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +8. 🗣 Commented on [#4292](https://github.com/MDAnalysis/mdanalysis/pull/4292#issuecomment-1810120732) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#85](https://github.com/eastgenomics/athena/pull/85#issuecomment-1810068435) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +10. 🗣 Commented on [#4345](https://github.com/MDAnalysis/mdanalysis/pull/4345#issuecomment-1809935868) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From b7368d75d3e4cbd3c12602f3d1313a4a1473791e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 09:37:24 +0000 Subject: [PATCH 0648/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b9cc30de..00c08647 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#21528](https://github.com/spyder-ide/spyder/pull/21528#issuecomment-1812047539) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#4](https://github.com/tzamalisp/crossai/pull/4#issuecomment-1812046047) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -3. 🗣 Commented on [#3](https://github.com/tzamalisp/crossai/pull/3#issuecomment-1812044864) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -4. 🗣 Commented on [#1012](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1012#issuecomment-1811489986) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1011](https://github.com/oemof/oemof-solph/pull/1011#issuecomment-1810508923) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -6. 🗣 Commented on [#5324](https://github.com/rhinstaller/anaconda/pull/5324#issuecomment-1810494902) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#2019](https://github.com/rpm-software-management/dnf/pull/2019#issuecomment-1810236763) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -8. 🗣 Commented on [#4292](https://github.com/MDAnalysis/mdanalysis/pull/4292#issuecomment-1810120732) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#85](https://github.com/eastgenomics/athena/pull/85#issuecomment-1810068435) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -10. 🗣 Commented on [#4345](https://github.com/MDAnalysis/mdanalysis/pull/4345#issuecomment-1809935868) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#12](https://github.com/cirKITers/quantum-siren/pull/12#issuecomment-1812095256) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) +2. 🗣 Commented on [#937](https://github.com/avaframe/AvaFrame/pull/937#issuecomment-1812075566) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#21528](https://github.com/spyder-ide/spyder/pull/21528#issuecomment-1812047539) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#4](https://github.com/tzamalisp/crossai/pull/4#issuecomment-1812046047) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +5. 🗣 Commented on [#3](https://github.com/tzamalisp/crossai/pull/3#issuecomment-1812044864) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +6. 🗣 Commented on [#1012](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1012#issuecomment-1811489986) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#1011](https://github.com/oemof/oemof-solph/pull/1011#issuecomment-1810508923) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +8. 🗣 Commented on [#5324](https://github.com/rhinstaller/anaconda/pull/5324#issuecomment-1810494902) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#2019](https://github.com/rpm-software-management/dnf/pull/2019#issuecomment-1810236763) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +10. 🗣 Commented on [#4292](https://github.com/MDAnalysis/mdanalysis/pull/4292#issuecomment-1810120732) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 25e4165d5ee76c09b6eade2b71f7b0cc3a7fc42e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 11:14:05 +0000 Subject: [PATCH 0649/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 00c08647..22441c5d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#12](https://github.com/cirKITers/quantum-siren/pull/12#issuecomment-1812095256) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) -2. 🗣 Commented on [#937](https://github.com/avaframe/AvaFrame/pull/937#issuecomment-1812075566) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#21528](https://github.com/spyder-ide/spyder/pull/21528#issuecomment-1812047539) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#4](https://github.com/tzamalisp/crossai/pull/4#issuecomment-1812046047) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -5. 🗣 Commented on [#3](https://github.com/tzamalisp/crossai/pull/3#issuecomment-1812044864) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -6. 🗣 Commented on [#1012](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1012#issuecomment-1811489986) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#1011](https://github.com/oemof/oemof-solph/pull/1011#issuecomment-1810508923) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -8. 🗣 Commented on [#5324](https://github.com/rhinstaller/anaconda/pull/5324#issuecomment-1810494902) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#2019](https://github.com/rpm-software-management/dnf/pull/2019#issuecomment-1810236763) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -10. 🗣 Commented on [#4292](https://github.com/MDAnalysis/mdanalysis/pull/4292#issuecomment-1810120732) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#5](https://github.com/tzamalisp/crossai/pull/5#issuecomment-1812230650) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +2. 🗣 Commented on [#12](https://github.com/cirKITers/quantum-siren/pull/12#issuecomment-1812095256) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) +3. 🗣 Commented on [#937](https://github.com/avaframe/AvaFrame/pull/937#issuecomment-1812075566) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#21528](https://github.com/spyder-ide/spyder/pull/21528#issuecomment-1812047539) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#4](https://github.com/tzamalisp/crossai/pull/4#issuecomment-1812046047) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +6. 🗣 Commented on [#3](https://github.com/tzamalisp/crossai/pull/3#issuecomment-1812044864) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +7. 🗣 Commented on [#1012](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1012#issuecomment-1811489986) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#1011](https://github.com/oemof/oemof-solph/pull/1011#issuecomment-1810508923) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +9. 🗣 Commented on [#5324](https://github.com/rhinstaller/anaconda/pull/5324#issuecomment-1810494902) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#2019](https://github.com/rpm-software-management/dnf/pull/2019#issuecomment-1810236763) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) From 02aa5c107bb07b048fc92966fe5a14cf5ba7d5b2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 14:15:23 +0000 Subject: [PATCH 0650/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 22441c5d..97738dee 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5](https://github.com/tzamalisp/crossai/pull/5#issuecomment-1812230650) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -2. 🗣 Commented on [#12](https://github.com/cirKITers/quantum-siren/pull/12#issuecomment-1812095256) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) -3. 🗣 Commented on [#937](https://github.com/avaframe/AvaFrame/pull/937#issuecomment-1812075566) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#21528](https://github.com/spyder-ide/spyder/pull/21528#issuecomment-1812047539) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#4](https://github.com/tzamalisp/crossai/pull/4#issuecomment-1812046047) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -6. 🗣 Commented on [#3](https://github.com/tzamalisp/crossai/pull/3#issuecomment-1812044864) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -7. 🗣 Commented on [#1012](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1012#issuecomment-1811489986) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#1011](https://github.com/oemof/oemof-solph/pull/1011#issuecomment-1810508923) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -9. 🗣 Commented on [#5324](https://github.com/rhinstaller/anaconda/pull/5324#issuecomment-1810494902) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#2019](https://github.com/rpm-software-management/dnf/pull/2019#issuecomment-1810236763) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +1. 🗣 Commented on [#6](https://github.com/tzamalisp/crossai/pull/6#issuecomment-1812584277) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +2. 🗣 Commented on [#5](https://github.com/tzamalisp/crossai/pull/5#issuecomment-1812230650) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +3. 🗣 Commented on [#12](https://github.com/cirKITers/quantum-siren/pull/12#issuecomment-1812095256) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) +4. 🗣 Commented on [#937](https://github.com/avaframe/AvaFrame/pull/937#issuecomment-1812075566) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#21528](https://github.com/spyder-ide/spyder/pull/21528#issuecomment-1812047539) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#4](https://github.com/tzamalisp/crossai/pull/4#issuecomment-1812046047) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +7. 🗣 Commented on [#3](https://github.com/tzamalisp/crossai/pull/3#issuecomment-1812044864) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +8. 🗣 Commented on [#1012](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1012#issuecomment-1811489986) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#1011](https://github.com/oemof/oemof-solph/pull/1011#issuecomment-1810508923) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +10. 🗣 Commented on [#5324](https://github.com/rhinstaller/anaconda/pull/5324#issuecomment-1810494902) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From f9d34ff07a8bc01c09df3136b6daa76091146ad5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 15:17:30 +0000 Subject: [PATCH 0651/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 97738dee..62771246 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#6](https://github.com/tzamalisp/crossai/pull/6#issuecomment-1812584277) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -2. 🗣 Commented on [#5](https://github.com/tzamalisp/crossai/pull/5#issuecomment-1812230650) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -3. 🗣 Commented on [#12](https://github.com/cirKITers/quantum-siren/pull/12#issuecomment-1812095256) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) -4. 🗣 Commented on [#937](https://github.com/avaframe/AvaFrame/pull/937#issuecomment-1812075566) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#21528](https://github.com/spyder-ide/spyder/pull/21528#issuecomment-1812047539) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#4](https://github.com/tzamalisp/crossai/pull/4#issuecomment-1812046047) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -7. 🗣 Commented on [#3](https://github.com/tzamalisp/crossai/pull/3#issuecomment-1812044864) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -8. 🗣 Commented on [#1012](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1012#issuecomment-1811489986) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#1011](https://github.com/oemof/oemof-solph/pull/1011#issuecomment-1810508923) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -10. 🗣 Commented on [#5324](https://github.com/rhinstaller/anaconda/pull/5324#issuecomment-1810494902) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#1016](https://github.com/aramis-lab/clinica/pull/1016#issuecomment-1812701574) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +2. 🗣 Commented on [#6](https://github.com/tzamalisp/crossai/pull/6#issuecomment-1812584277) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +3. 🗣 Commented on [#5](https://github.com/tzamalisp/crossai/pull/5#issuecomment-1812230650) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +4. 🗣 Commented on [#12](https://github.com/cirKITers/quantum-siren/pull/12#issuecomment-1812095256) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) +5. 🗣 Commented on [#937](https://github.com/avaframe/AvaFrame/pull/937#issuecomment-1812075566) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#21528](https://github.com/spyder-ide/spyder/pull/21528#issuecomment-1812047539) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#4](https://github.com/tzamalisp/crossai/pull/4#issuecomment-1812046047) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +8. 🗣 Commented on [#3](https://github.com/tzamalisp/crossai/pull/3#issuecomment-1812044864) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +9. 🗣 Commented on [#1012](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1012#issuecomment-1811489986) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#1011](https://github.com/oemof/oemof-solph/pull/1011#issuecomment-1810508923) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) From bfc2668c7d44f3b310d6dbde53f0fb07d40091ef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 15:37:34 +0000 Subject: [PATCH 0652/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 62771246..e1833adb 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1016](https://github.com/aramis-lab/clinica/pull/1016#issuecomment-1812701574) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -2. 🗣 Commented on [#6](https://github.com/tzamalisp/crossai/pull/6#issuecomment-1812584277) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -3. 🗣 Commented on [#5](https://github.com/tzamalisp/crossai/pull/5#issuecomment-1812230650) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -4. 🗣 Commented on [#12](https://github.com/cirKITers/quantum-siren/pull/12#issuecomment-1812095256) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) -5. 🗣 Commented on [#937](https://github.com/avaframe/AvaFrame/pull/937#issuecomment-1812075566) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#21528](https://github.com/spyder-ide/spyder/pull/21528#issuecomment-1812047539) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#4](https://github.com/tzamalisp/crossai/pull/4#issuecomment-1812046047) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -8. 🗣 Commented on [#3](https://github.com/tzamalisp/crossai/pull/3#issuecomment-1812044864) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -9. 🗣 Commented on [#1012](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1012#issuecomment-1811489986) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#1011](https://github.com/oemof/oemof-solph/pull/1011#issuecomment-1810508923) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +1. 🗣 Commented on [#12](https://github.com/eastgenomics/g2t_ops/pull/12#issuecomment-1812757587) in [eastgenomics/g2t_ops](https://github.com/eastgenomics/g2t_ops) +2. 🗣 Commented on [#1016](https://github.com/aramis-lab/clinica/pull/1016#issuecomment-1812701574) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +3. 🗣 Commented on [#6](https://github.com/tzamalisp/crossai/pull/6#issuecomment-1812584277) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +4. 🗣 Commented on [#5](https://github.com/tzamalisp/crossai/pull/5#issuecomment-1812230650) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +5. 🗣 Commented on [#12](https://github.com/cirKITers/quantum-siren/pull/12#issuecomment-1812095256) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) +6. 🗣 Commented on [#937](https://github.com/avaframe/AvaFrame/pull/937#issuecomment-1812075566) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#21528](https://github.com/spyder-ide/spyder/pull/21528#issuecomment-1812047539) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#4](https://github.com/tzamalisp/crossai/pull/4#issuecomment-1812046047) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +9. 🗣 Commented on [#3](https://github.com/tzamalisp/crossai/pull/3#issuecomment-1812044864) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +10. 🗣 Commented on [#1012](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1012#issuecomment-1811489986) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From ddfa78a4d15211790a48b058be72e96c8598c5c1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 16:22:16 +0000 Subject: [PATCH 0653/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e1833adb..628ff216 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#12](https://github.com/eastgenomics/g2t_ops/pull/12#issuecomment-1812757587) in [eastgenomics/g2t_ops](https://github.com/eastgenomics/g2t_ops) -2. 🗣 Commented on [#1016](https://github.com/aramis-lab/clinica/pull/1016#issuecomment-1812701574) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -3. 🗣 Commented on [#6](https://github.com/tzamalisp/crossai/pull/6#issuecomment-1812584277) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -4. 🗣 Commented on [#5](https://github.com/tzamalisp/crossai/pull/5#issuecomment-1812230650) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -5. 🗣 Commented on [#12](https://github.com/cirKITers/quantum-siren/pull/12#issuecomment-1812095256) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) -6. 🗣 Commented on [#937](https://github.com/avaframe/AvaFrame/pull/937#issuecomment-1812075566) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#21528](https://github.com/spyder-ide/spyder/pull/21528#issuecomment-1812047539) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#4](https://github.com/tzamalisp/crossai/pull/4#issuecomment-1812046047) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -9. 🗣 Commented on [#3](https://github.com/tzamalisp/crossai/pull/3#issuecomment-1812044864) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -10. 🗣 Commented on [#1012](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1012#issuecomment-1811489986) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#390](https://github.com/NASA-Planetary-Science/sbpy/pull/390#issuecomment-1812801094) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +2. 🗣 Commented on [#26](https://github.com/avaframe/QGisAF/pull/26#issuecomment-1812781356) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +3. 🗣 Commented on [#12](https://github.com/eastgenomics/g2t_ops/pull/12#issuecomment-1812757587) in [eastgenomics/g2t_ops](https://github.com/eastgenomics/g2t_ops) +4. 🗣 Commented on [#1016](https://github.com/aramis-lab/clinica/pull/1016#issuecomment-1812701574) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +5. 🗣 Commented on [#6](https://github.com/tzamalisp/crossai/pull/6#issuecomment-1812584277) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +6. 🗣 Commented on [#5](https://github.com/tzamalisp/crossai/pull/5#issuecomment-1812230650) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +7. 🗣 Commented on [#12](https://github.com/cirKITers/quantum-siren/pull/12#issuecomment-1812095256) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) +8. 🗣 Commented on [#937](https://github.com/avaframe/AvaFrame/pull/937#issuecomment-1812075566) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#21528](https://github.com/spyder-ide/spyder/pull/21528#issuecomment-1812047539) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#4](https://github.com/tzamalisp/crossai/pull/4#issuecomment-1812046047) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) From ccbd386c477bc068620d0c4a00ed0d7947cf269a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 17:15:08 +0000 Subject: [PATCH 0654/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 628ff216..96f90323 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#390](https://github.com/NASA-Planetary-Science/sbpy/pull/390#issuecomment-1812801094) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -2. 🗣 Commented on [#26](https://github.com/avaframe/QGisAF/pull/26#issuecomment-1812781356) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) -3. 🗣 Commented on [#12](https://github.com/eastgenomics/g2t_ops/pull/12#issuecomment-1812757587) in [eastgenomics/g2t_ops](https://github.com/eastgenomics/g2t_ops) -4. 🗣 Commented on [#1016](https://github.com/aramis-lab/clinica/pull/1016#issuecomment-1812701574) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -5. 🗣 Commented on [#6](https://github.com/tzamalisp/crossai/pull/6#issuecomment-1812584277) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -6. 🗣 Commented on [#5](https://github.com/tzamalisp/crossai/pull/5#issuecomment-1812230650) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -7. 🗣 Commented on [#12](https://github.com/cirKITers/quantum-siren/pull/12#issuecomment-1812095256) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) -8. 🗣 Commented on [#937](https://github.com/avaframe/AvaFrame/pull/937#issuecomment-1812075566) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#21528](https://github.com/spyder-ide/spyder/pull/21528#issuecomment-1812047539) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#4](https://github.com/tzamalisp/crossai/pull/4#issuecomment-1812046047) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +1. 🗣 Commented on [#6](https://github.com/eastgenomics/optimised_filtering/pull/6#issuecomment-1812874939) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +2. 🗣 Commented on [#390](https://github.com/NASA-Planetary-Science/sbpy/pull/390#issuecomment-1812801094) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +3. 🗣 Commented on [#26](https://github.com/avaframe/QGisAF/pull/26#issuecomment-1812781356) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +4. 🗣 Commented on [#12](https://github.com/eastgenomics/g2t_ops/pull/12#issuecomment-1812757587) in [eastgenomics/g2t_ops](https://github.com/eastgenomics/g2t_ops) +5. 🗣 Commented on [#1016](https://github.com/aramis-lab/clinica/pull/1016#issuecomment-1812701574) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +6. 🗣 Commented on [#6](https://github.com/tzamalisp/crossai/pull/6#issuecomment-1812584277) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +7. 🗣 Commented on [#5](https://github.com/tzamalisp/crossai/pull/5#issuecomment-1812230650) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +8. 🗣 Commented on [#12](https://github.com/cirKITers/quantum-siren/pull/12#issuecomment-1812095256) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) +9. 🗣 Commented on [#937](https://github.com/avaframe/AvaFrame/pull/937#issuecomment-1812075566) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#21528](https://github.com/spyder-ide/spyder/pull/21528#issuecomment-1812047539) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From de5bd87d716e5ea7f7375d1d3235bd6eda98624e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 18:19:39 +0000 Subject: [PATCH 0655/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 96f90323..b4b3a06b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#6](https://github.com/eastgenomics/optimised_filtering/pull/6#issuecomment-1812874939) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -2. 🗣 Commented on [#390](https://github.com/NASA-Planetary-Science/sbpy/pull/390#issuecomment-1812801094) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -3. 🗣 Commented on [#26](https://github.com/avaframe/QGisAF/pull/26#issuecomment-1812781356) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) -4. 🗣 Commented on [#12](https://github.com/eastgenomics/g2t_ops/pull/12#issuecomment-1812757587) in [eastgenomics/g2t_ops](https://github.com/eastgenomics/g2t_ops) -5. 🗣 Commented on [#1016](https://github.com/aramis-lab/clinica/pull/1016#issuecomment-1812701574) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -6. 🗣 Commented on [#6](https://github.com/tzamalisp/crossai/pull/6#issuecomment-1812584277) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -7. 🗣 Commented on [#5](https://github.com/tzamalisp/crossai/pull/5#issuecomment-1812230650) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -8. 🗣 Commented on [#12](https://github.com/cirKITers/quantum-siren/pull/12#issuecomment-1812095256) in [cirKITers/quantum-siren](https://github.com/cirKITers/quantum-siren) -9. 🗣 Commented on [#937](https://github.com/avaframe/AvaFrame/pull/937#issuecomment-1812075566) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#21528](https://github.com/spyder-ide/spyder/pull/21528#issuecomment-1812047539) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#1348](https://github.com/NeuralEnsemble/python-neo/pull/1348#issuecomment-1813016662) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +2. 🗣 Commented on [#2629](https://github.com/metabrainz/listenbrainz-server/pull/2629#issuecomment-1813005980) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#49](https://github.com/eastgenomics/eris/pull/49#issuecomment-1812971027) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#6](https://github.com/eastgenomics/optimised_filtering/pull/6#issuecomment-1812874939) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +5. 🗣 Commented on [#390](https://github.com/NASA-Planetary-Science/sbpy/pull/390#issuecomment-1812801094) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +6. 🗣 Commented on [#26](https://github.com/avaframe/QGisAF/pull/26#issuecomment-1812781356) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +7. 🗣 Commented on [#12](https://github.com/eastgenomics/g2t_ops/pull/12#issuecomment-1812757587) in [eastgenomics/g2t_ops](https://github.com/eastgenomics/g2t_ops) +8. 🗣 Commented on [#1016](https://github.com/aramis-lab/clinica/pull/1016#issuecomment-1812701574) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +9. 🗣 Commented on [#6](https://github.com/tzamalisp/crossai/pull/6#issuecomment-1812584277) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +10. 🗣 Commented on [#5](https://github.com/tzamalisp/crossai/pull/5#issuecomment-1812230650) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) From edb810aca7fcd91102ec073eb224678507be07bf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 20:17:31 +0000 Subject: [PATCH 0656/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b4b3a06b..1716983c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1348](https://github.com/NeuralEnsemble/python-neo/pull/1348#issuecomment-1813016662) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -2. 🗣 Commented on [#2629](https://github.com/metabrainz/listenbrainz-server/pull/2629#issuecomment-1813005980) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#49](https://github.com/eastgenomics/eris/pull/49#issuecomment-1812971027) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#6](https://github.com/eastgenomics/optimised_filtering/pull/6#issuecomment-1812874939) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -5. 🗣 Commented on [#390](https://github.com/NASA-Planetary-Science/sbpy/pull/390#issuecomment-1812801094) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -6. 🗣 Commented on [#26](https://github.com/avaframe/QGisAF/pull/26#issuecomment-1812781356) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) -7. 🗣 Commented on [#12](https://github.com/eastgenomics/g2t_ops/pull/12#issuecomment-1812757587) in [eastgenomics/g2t_ops](https://github.com/eastgenomics/g2t_ops) -8. 🗣 Commented on [#1016](https://github.com/aramis-lab/clinica/pull/1016#issuecomment-1812701574) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -9. 🗣 Commented on [#6](https://github.com/tzamalisp/crossai/pull/6#issuecomment-1812584277) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -10. 🗣 Commented on [#5](https://github.com/tzamalisp/crossai/pull/5#issuecomment-1812230650) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +1. 🗣 Commented on [#2628](https://github.com/metabrainz/listenbrainz-server/pull/2628#issuecomment-1813192765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#1348](https://github.com/NeuralEnsemble/python-neo/pull/1348#issuecomment-1813016662) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +3. 🗣 Commented on [#2629](https://github.com/metabrainz/listenbrainz-server/pull/2629#issuecomment-1813005980) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#49](https://github.com/eastgenomics/eris/pull/49#issuecomment-1812971027) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#6](https://github.com/eastgenomics/optimised_filtering/pull/6#issuecomment-1812874939) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +6. 🗣 Commented on [#390](https://github.com/NASA-Planetary-Science/sbpy/pull/390#issuecomment-1812801094) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +7. 🗣 Commented on [#26](https://github.com/avaframe/QGisAF/pull/26#issuecomment-1812781356) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +8. 🗣 Commented on [#12](https://github.com/eastgenomics/g2t_ops/pull/12#issuecomment-1812757587) in [eastgenomics/g2t_ops](https://github.com/eastgenomics/g2t_ops) +9. 🗣 Commented on [#1016](https://github.com/aramis-lab/clinica/pull/1016#issuecomment-1812701574) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +10. 🗣 Commented on [#6](https://github.com/tzamalisp/crossai/pull/6#issuecomment-1812584277) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) From 1b0140f91cafc69bf670be6aa40807a317c60b1f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 21:37:19 +0000 Subject: [PATCH 0657/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1716983c..4649c1a3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2628](https://github.com/metabrainz/listenbrainz-server/pull/2628#issuecomment-1813192765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#1348](https://github.com/NeuralEnsemble/python-neo/pull/1348#issuecomment-1813016662) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -3. 🗣 Commented on [#2629](https://github.com/metabrainz/listenbrainz-server/pull/2629#issuecomment-1813005980) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#49](https://github.com/eastgenomics/eris/pull/49#issuecomment-1812971027) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#6](https://github.com/eastgenomics/optimised_filtering/pull/6#issuecomment-1812874939) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -6. 🗣 Commented on [#390](https://github.com/NASA-Planetary-Science/sbpy/pull/390#issuecomment-1812801094) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -7. 🗣 Commented on [#26](https://github.com/avaframe/QGisAF/pull/26#issuecomment-1812781356) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) -8. 🗣 Commented on [#12](https://github.com/eastgenomics/g2t_ops/pull/12#issuecomment-1812757587) in [eastgenomics/g2t_ops](https://github.com/eastgenomics/g2t_ops) -9. 🗣 Commented on [#1016](https://github.com/aramis-lab/clinica/pull/1016#issuecomment-1812701574) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -10. 🗣 Commented on [#6](https://github.com/tzamalisp/crossai/pull/6#issuecomment-1812584277) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +1. 🗣 Commented on [#94](https://github.com/njzjz/deepmd-kit/pull/94#issuecomment-1813276806) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) +2. 🗣 Commented on [#2628](https://github.com/metabrainz/listenbrainz-server/pull/2628#issuecomment-1813192765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#1348](https://github.com/NeuralEnsemble/python-neo/pull/1348#issuecomment-1813016662) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +4. 🗣 Commented on [#2629](https://github.com/metabrainz/listenbrainz-server/pull/2629#issuecomment-1813005980) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#49](https://github.com/eastgenomics/eris/pull/49#issuecomment-1812971027) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#6](https://github.com/eastgenomics/optimised_filtering/pull/6#issuecomment-1812874939) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +7. 🗣 Commented on [#390](https://github.com/NASA-Planetary-Science/sbpy/pull/390#issuecomment-1812801094) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +8. 🗣 Commented on [#26](https://github.com/avaframe/QGisAF/pull/26#issuecomment-1812781356) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +9. 🗣 Commented on [#12](https://github.com/eastgenomics/g2t_ops/pull/12#issuecomment-1812757587) in [eastgenomics/g2t_ops](https://github.com/eastgenomics/g2t_ops) +10. 🗣 Commented on [#1016](https://github.com/aramis-lab/clinica/pull/1016#issuecomment-1812701574) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) From 938ac8a8b18018bd946259aac8a42808f167acf2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 22:37:13 +0000 Subject: [PATCH 0658/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4649c1a3..f246f47b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#94](https://github.com/njzjz/deepmd-kit/pull/94#issuecomment-1813276806) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) -2. 🗣 Commented on [#2628](https://github.com/metabrainz/listenbrainz-server/pull/2628#issuecomment-1813192765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#1348](https://github.com/NeuralEnsemble/python-neo/pull/1348#issuecomment-1813016662) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -4. 🗣 Commented on [#2629](https://github.com/metabrainz/listenbrainz-server/pull/2629#issuecomment-1813005980) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#49](https://github.com/eastgenomics/eris/pull/49#issuecomment-1812971027) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#6](https://github.com/eastgenomics/optimised_filtering/pull/6#issuecomment-1812874939) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -7. 🗣 Commented on [#390](https://github.com/NASA-Planetary-Science/sbpy/pull/390#issuecomment-1812801094) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -8. 🗣 Commented on [#26](https://github.com/avaframe/QGisAF/pull/26#issuecomment-1812781356) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) -9. 🗣 Commented on [#12](https://github.com/eastgenomics/g2t_ops/pull/12#issuecomment-1812757587) in [eastgenomics/g2t_ops](https://github.com/eastgenomics/g2t_ops) -10. 🗣 Commented on [#1016](https://github.com/aramis-lab/clinica/pull/1016#issuecomment-1812701574) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +1. 🗣 Commented on [#4394](https://github.com/pyload/pyload/pull/4394#issuecomment-1813372055) in [pyload/pyload](https://github.com/pyload/pyload) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/xllm/pull/1#issuecomment-1813370036) in [tuhinmallick/xllm](https://github.com/tuhinmallick/xllm) +3. 🗣 Commented on [#94](https://github.com/njzjz/deepmd-kit/pull/94#issuecomment-1813276806) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) +4. 🗣 Commented on [#2628](https://github.com/metabrainz/listenbrainz-server/pull/2628#issuecomment-1813192765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#1348](https://github.com/NeuralEnsemble/python-neo/pull/1348#issuecomment-1813016662) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +6. 🗣 Commented on [#2629](https://github.com/metabrainz/listenbrainz-server/pull/2629#issuecomment-1813005980) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#49](https://github.com/eastgenomics/eris/pull/49#issuecomment-1812971027) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#6](https://github.com/eastgenomics/optimised_filtering/pull/6#issuecomment-1812874939) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +9. 🗣 Commented on [#390](https://github.com/NASA-Planetary-Science/sbpy/pull/390#issuecomment-1812801094) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +10. 🗣 Commented on [#26](https://github.com/avaframe/QGisAF/pull/26#issuecomment-1812781356) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) From fce8d6a24ea218f10014236ef93a166ff3d643d6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 23:16:23 +0000 Subject: [PATCH 0659/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f246f47b..cafd372b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4394](https://github.com/pyload/pyload/pull/4394#issuecomment-1813372055) in [pyload/pyload](https://github.com/pyload/pyload) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/xllm/pull/1#issuecomment-1813370036) in [tuhinmallick/xllm](https://github.com/tuhinmallick/xllm) -3. 🗣 Commented on [#94](https://github.com/njzjz/deepmd-kit/pull/94#issuecomment-1813276806) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) -4. 🗣 Commented on [#2628](https://github.com/metabrainz/listenbrainz-server/pull/2628#issuecomment-1813192765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#1348](https://github.com/NeuralEnsemble/python-neo/pull/1348#issuecomment-1813016662) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -6. 🗣 Commented on [#2629](https://github.com/metabrainz/listenbrainz-server/pull/2629#issuecomment-1813005980) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#49](https://github.com/eastgenomics/eris/pull/49#issuecomment-1812971027) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#6](https://github.com/eastgenomics/optimised_filtering/pull/6#issuecomment-1812874939) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -9. 🗣 Commented on [#390](https://github.com/NASA-Planetary-Science/sbpy/pull/390#issuecomment-1812801094) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -10. 🗣 Commented on [#26](https://github.com/avaframe/QGisAF/pull/26#issuecomment-1812781356) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/myla/pull/1#issuecomment-1813405679) in [tuhinmallick/myla](https://github.com/tuhinmallick/myla) +2. 🗣 Commented on [#4394](https://github.com/pyload/pyload/pull/4394#issuecomment-1813372055) in [pyload/pyload](https://github.com/pyload/pyload) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/xllm/pull/1#issuecomment-1813370036) in [tuhinmallick/xllm](https://github.com/tuhinmallick/xllm) +4. 🗣 Commented on [#94](https://github.com/njzjz/deepmd-kit/pull/94#issuecomment-1813276806) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) +5. 🗣 Commented on [#2628](https://github.com/metabrainz/listenbrainz-server/pull/2628#issuecomment-1813192765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#1348](https://github.com/NeuralEnsemble/python-neo/pull/1348#issuecomment-1813016662) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +7. 🗣 Commented on [#2629](https://github.com/metabrainz/listenbrainz-server/pull/2629#issuecomment-1813005980) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#49](https://github.com/eastgenomics/eris/pull/49#issuecomment-1812971027) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#6](https://github.com/eastgenomics/optimised_filtering/pull/6#issuecomment-1812874939) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +10. 🗣 Commented on [#390](https://github.com/NASA-Planetary-Science/sbpy/pull/390#issuecomment-1812801094) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) From 73fe5ab8a92cee457ffa851a016aada2db506083 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 16 Nov 2023 05:15:34 +0000 Subject: [PATCH 0660/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cafd372b..8ff3abac 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/myla/pull/1#issuecomment-1813405679) in [tuhinmallick/myla](https://github.com/tuhinmallick/myla) -2. 🗣 Commented on [#4394](https://github.com/pyload/pyload/pull/4394#issuecomment-1813372055) in [pyload/pyload](https://github.com/pyload/pyload) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/xllm/pull/1#issuecomment-1813370036) in [tuhinmallick/xllm](https://github.com/tuhinmallick/xllm) -4. 🗣 Commented on [#94](https://github.com/njzjz/deepmd-kit/pull/94#issuecomment-1813276806) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) -5. 🗣 Commented on [#2628](https://github.com/metabrainz/listenbrainz-server/pull/2628#issuecomment-1813192765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#1348](https://github.com/NeuralEnsemble/python-neo/pull/1348#issuecomment-1813016662) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -7. 🗣 Commented on [#2629](https://github.com/metabrainz/listenbrainz-server/pull/2629#issuecomment-1813005980) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#49](https://github.com/eastgenomics/eris/pull/49#issuecomment-1812971027) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#6](https://github.com/eastgenomics/optimised_filtering/pull/6#issuecomment-1812874939) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -10. 🗣 Commented on [#390](https://github.com/NASA-Planetary-Science/sbpy/pull/390#issuecomment-1812801094) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +1. 🗣 Commented on [#20151](https://github.com/spyder-ide/spyder/pull/20151#issuecomment-1813784464) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/myla/pull/1#issuecomment-1813405679) in [tuhinmallick/myla](https://github.com/tuhinmallick/myla) +3. 🗣 Commented on [#4394](https://github.com/pyload/pyload/pull/4394#issuecomment-1813372055) in [pyload/pyload](https://github.com/pyload/pyload) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/xllm/pull/1#issuecomment-1813370036) in [tuhinmallick/xllm](https://github.com/tuhinmallick/xllm) +5. 🗣 Commented on [#94](https://github.com/njzjz/deepmd-kit/pull/94#issuecomment-1813276806) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) +6. 🗣 Commented on [#2628](https://github.com/metabrainz/listenbrainz-server/pull/2628#issuecomment-1813192765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#1348](https://github.com/NeuralEnsemble/python-neo/pull/1348#issuecomment-1813016662) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +8. 🗣 Commented on [#2629](https://github.com/metabrainz/listenbrainz-server/pull/2629#issuecomment-1813005980) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#49](https://github.com/eastgenomics/eris/pull/49#issuecomment-1812971027) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#6](https://github.com/eastgenomics/optimised_filtering/pull/6#issuecomment-1812874939) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) From 35b96da89a0629020ab7421fe651bd478c622131 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 16 Nov 2023 09:16:26 +0000 Subject: [PATCH 0661/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8ff3abac..78e91046 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#20151](https://github.com/spyder-ide/spyder/pull/20151#issuecomment-1813784464) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/myla/pull/1#issuecomment-1813405679) in [tuhinmallick/myla](https://github.com/tuhinmallick/myla) -3. 🗣 Commented on [#4394](https://github.com/pyload/pyload/pull/4394#issuecomment-1813372055) in [pyload/pyload](https://github.com/pyload/pyload) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/xllm/pull/1#issuecomment-1813370036) in [tuhinmallick/xllm](https://github.com/tuhinmallick/xllm) -5. 🗣 Commented on [#94](https://github.com/njzjz/deepmd-kit/pull/94#issuecomment-1813276806) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) -6. 🗣 Commented on [#2628](https://github.com/metabrainz/listenbrainz-server/pull/2628#issuecomment-1813192765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#1348](https://github.com/NeuralEnsemble/python-neo/pull/1348#issuecomment-1813016662) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -8. 🗣 Commented on [#2629](https://github.com/metabrainz/listenbrainz-server/pull/2629#issuecomment-1813005980) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#49](https://github.com/eastgenomics/eris/pull/49#issuecomment-1812971027) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#6](https://github.com/eastgenomics/optimised_filtering/pull/6#issuecomment-1812874939) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +1. 🗣 Commented on [#3046](https://github.com/reframe-hpc/reframe/pull/3046#issuecomment-1814029269) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +2. 🗣 Commented on [#20151](https://github.com/spyder-ide/spyder/pull/20151#issuecomment-1813784464) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/myla/pull/1#issuecomment-1813405679) in [tuhinmallick/myla](https://github.com/tuhinmallick/myla) +4. 🗣 Commented on [#4394](https://github.com/pyload/pyload/pull/4394#issuecomment-1813372055) in [pyload/pyload](https://github.com/pyload/pyload) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/xllm/pull/1#issuecomment-1813370036) in [tuhinmallick/xllm](https://github.com/tuhinmallick/xllm) +6. 🗣 Commented on [#94](https://github.com/njzjz/deepmd-kit/pull/94#issuecomment-1813276806) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) +7. 🗣 Commented on [#2628](https://github.com/metabrainz/listenbrainz-server/pull/2628#issuecomment-1813192765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#1348](https://github.com/NeuralEnsemble/python-neo/pull/1348#issuecomment-1813016662) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +9. 🗣 Commented on [#2629](https://github.com/metabrainz/listenbrainz-server/pull/2629#issuecomment-1813005980) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#49](https://github.com/eastgenomics/eris/pull/49#issuecomment-1812971027) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From dbe46efa49d4eb417ded8d46efb5a70285f762c3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 16 Nov 2023 13:21:35 +0000 Subject: [PATCH 0662/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 78e91046..0f2355cf 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#3046](https://github.com/reframe-hpc/reframe/pull/3046#issuecomment-1814029269) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -2. 🗣 Commented on [#20151](https://github.com/spyder-ide/spyder/pull/20151#issuecomment-1813784464) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/myla/pull/1#issuecomment-1813405679) in [tuhinmallick/myla](https://github.com/tuhinmallick/myla) -4. 🗣 Commented on [#4394](https://github.com/pyload/pyload/pull/4394#issuecomment-1813372055) in [pyload/pyload](https://github.com/pyload/pyload) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/xllm/pull/1#issuecomment-1813370036) in [tuhinmallick/xllm](https://github.com/tuhinmallick/xllm) -6. 🗣 Commented on [#94](https://github.com/njzjz/deepmd-kit/pull/94#issuecomment-1813276806) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) -7. 🗣 Commented on [#2628](https://github.com/metabrainz/listenbrainz-server/pull/2628#issuecomment-1813192765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#1348](https://github.com/NeuralEnsemble/python-neo/pull/1348#issuecomment-1813016662) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -9. 🗣 Commented on [#2629](https://github.com/metabrainz/listenbrainz-server/pull/2629#issuecomment-1813005980) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#49](https://github.com/eastgenomics/eris/pull/49#issuecomment-1812971027) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#5329](https://github.com/rhinstaller/anaconda/pull/5329#issuecomment-1814380839) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#3046](https://github.com/reframe-hpc/reframe/pull/3046#issuecomment-1814029269) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +3. 🗣 Commented on [#20151](https://github.com/spyder-ide/spyder/pull/20151#issuecomment-1813784464) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/myla/pull/1#issuecomment-1813405679) in [tuhinmallick/myla](https://github.com/tuhinmallick/myla) +5. 🗣 Commented on [#4394](https://github.com/pyload/pyload/pull/4394#issuecomment-1813372055) in [pyload/pyload](https://github.com/pyload/pyload) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/xllm/pull/1#issuecomment-1813370036) in [tuhinmallick/xllm](https://github.com/tuhinmallick/xllm) +7. 🗣 Commented on [#94](https://github.com/njzjz/deepmd-kit/pull/94#issuecomment-1813276806) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) +8. 🗣 Commented on [#2628](https://github.com/metabrainz/listenbrainz-server/pull/2628#issuecomment-1813192765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#1348](https://github.com/NeuralEnsemble/python-neo/pull/1348#issuecomment-1813016662) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +10. 🗣 Commented on [#2629](https://github.com/metabrainz/listenbrainz-server/pull/2629#issuecomment-1813005980) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 39de0ae3dc47f194917c5638f51594db3bd942b8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 16 Nov 2023 14:15:45 +0000 Subject: [PATCH 0663/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0f2355cf..229c52ee 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5329](https://github.com/rhinstaller/anaconda/pull/5329#issuecomment-1814380839) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#3046](https://github.com/reframe-hpc/reframe/pull/3046#issuecomment-1814029269) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -3. 🗣 Commented on [#20151](https://github.com/spyder-ide/spyder/pull/20151#issuecomment-1813784464) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/myla/pull/1#issuecomment-1813405679) in [tuhinmallick/myla](https://github.com/tuhinmallick/myla) -5. 🗣 Commented on [#4394](https://github.com/pyload/pyload/pull/4394#issuecomment-1813372055) in [pyload/pyload](https://github.com/pyload/pyload) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/xllm/pull/1#issuecomment-1813370036) in [tuhinmallick/xllm](https://github.com/tuhinmallick/xllm) -7. 🗣 Commented on [#94](https://github.com/njzjz/deepmd-kit/pull/94#issuecomment-1813276806) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) -8. 🗣 Commented on [#2628](https://github.com/metabrainz/listenbrainz-server/pull/2628#issuecomment-1813192765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#1348](https://github.com/NeuralEnsemble/python-neo/pull/1348#issuecomment-1813016662) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -10. 🗣 Commented on [#2629](https://github.com/metabrainz/listenbrainz-server/pull/2629#issuecomment-1813005980) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#5331](https://github.com/rhinstaller/anaconda/pull/5331#issuecomment-1814486195) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#5329](https://github.com/rhinstaller/anaconda/pull/5329#issuecomment-1814380839) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#3046](https://github.com/reframe-hpc/reframe/pull/3046#issuecomment-1814029269) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +4. 🗣 Commented on [#20151](https://github.com/spyder-ide/spyder/pull/20151#issuecomment-1813784464) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/myla/pull/1#issuecomment-1813405679) in [tuhinmallick/myla](https://github.com/tuhinmallick/myla) +6. 🗣 Commented on [#4394](https://github.com/pyload/pyload/pull/4394#issuecomment-1813372055) in [pyload/pyload](https://github.com/pyload/pyload) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/xllm/pull/1#issuecomment-1813370036) in [tuhinmallick/xllm](https://github.com/tuhinmallick/xllm) +8. 🗣 Commented on [#94](https://github.com/njzjz/deepmd-kit/pull/94#issuecomment-1813276806) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) +9. 🗣 Commented on [#2628](https://github.com/metabrainz/listenbrainz-server/pull/2628#issuecomment-1813192765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#1348](https://github.com/NeuralEnsemble/python-neo/pull/1348#issuecomment-1813016662) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) From 4eaa511290f6d86848af9d0b472863a009a0acb4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 16 Nov 2023 18:21:08 +0000 Subject: [PATCH 0664/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 229c52ee..178c1e50 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5331](https://github.com/rhinstaller/anaconda/pull/5331#issuecomment-1814486195) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#5329](https://github.com/rhinstaller/anaconda/pull/5329#issuecomment-1814380839) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#3046](https://github.com/reframe-hpc/reframe/pull/3046#issuecomment-1814029269) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -4. 🗣 Commented on [#20151](https://github.com/spyder-ide/spyder/pull/20151#issuecomment-1813784464) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/myla/pull/1#issuecomment-1813405679) in [tuhinmallick/myla](https://github.com/tuhinmallick/myla) -6. 🗣 Commented on [#4394](https://github.com/pyload/pyload/pull/4394#issuecomment-1813372055) in [pyload/pyload](https://github.com/pyload/pyload) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/xllm/pull/1#issuecomment-1813370036) in [tuhinmallick/xllm](https://github.com/tuhinmallick/xllm) -8. 🗣 Commented on [#94](https://github.com/njzjz/deepmd-kit/pull/94#issuecomment-1813276806) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) -9. 🗣 Commented on [#2628](https://github.com/metabrainz/listenbrainz-server/pull/2628#issuecomment-1813192765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#1348](https://github.com/NeuralEnsemble/python-neo/pull/1348#issuecomment-1813016662) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/latent-consistency-model/pull/1#issuecomment-1814992748) in [tuhinmallick/latent-consistency-model](https://github.com/tuhinmallick/latent-consistency-model) +2. 🗣 Commented on [#5331](https://github.com/rhinstaller/anaconda/pull/5331#issuecomment-1814486195) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#5329](https://github.com/rhinstaller/anaconda/pull/5329#issuecomment-1814380839) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#3046](https://github.com/reframe-hpc/reframe/pull/3046#issuecomment-1814029269) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +5. 🗣 Commented on [#20151](https://github.com/spyder-ide/spyder/pull/20151#issuecomment-1813784464) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/myla/pull/1#issuecomment-1813405679) in [tuhinmallick/myla](https://github.com/tuhinmallick/myla) +7. 🗣 Commented on [#4394](https://github.com/pyload/pyload/pull/4394#issuecomment-1813372055) in [pyload/pyload](https://github.com/pyload/pyload) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/xllm/pull/1#issuecomment-1813370036) in [tuhinmallick/xllm](https://github.com/tuhinmallick/xllm) +9. 🗣 Commented on [#94](https://github.com/njzjz/deepmd-kit/pull/94#issuecomment-1813276806) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) +10. 🗣 Commented on [#2628](https://github.com/metabrainz/listenbrainz-server/pull/2628#issuecomment-1813192765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 0bd19cfa95cf81e4965c95ab9f310e09cb4183a8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 16 Nov 2023 18:38:42 +0000 Subject: [PATCH 0665/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 178c1e50..0868ab68 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/latent-consistency-model/pull/1#issuecomment-1814992748) in [tuhinmallick/latent-consistency-model](https://github.com/tuhinmallick/latent-consistency-model) -2. 🗣 Commented on [#5331](https://github.com/rhinstaller/anaconda/pull/5331#issuecomment-1814486195) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#5329](https://github.com/rhinstaller/anaconda/pull/5329#issuecomment-1814380839) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#3046](https://github.com/reframe-hpc/reframe/pull/3046#issuecomment-1814029269) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -5. 🗣 Commented on [#20151](https://github.com/spyder-ide/spyder/pull/20151#issuecomment-1813784464) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/myla/pull/1#issuecomment-1813405679) in [tuhinmallick/myla](https://github.com/tuhinmallick/myla) -7. 🗣 Commented on [#4394](https://github.com/pyload/pyload/pull/4394#issuecomment-1813372055) in [pyload/pyload](https://github.com/pyload/pyload) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/xllm/pull/1#issuecomment-1813370036) in [tuhinmallick/xllm](https://github.com/tuhinmallick/xllm) -9. 🗣 Commented on [#94](https://github.com/njzjz/deepmd-kit/pull/94#issuecomment-1813276806) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) -10. 🗣 Commented on [#2628](https://github.com/metabrainz/listenbrainz-server/pull/2628#issuecomment-1813192765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) +2. 🗣 Commented on [#5309](https://github.com/rhinstaller/anaconda/pull/5309#issuecomment-1815003079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/latent-consistency-model/pull/1#issuecomment-1814992748) in [tuhinmallick/latent-consistency-model](https://github.com/tuhinmallick/latent-consistency-model) +4. 🗣 Commented on [#5331](https://github.com/rhinstaller/anaconda/pull/5331#issuecomment-1814486195) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#5329](https://github.com/rhinstaller/anaconda/pull/5329#issuecomment-1814380839) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#3046](https://github.com/reframe-hpc/reframe/pull/3046#issuecomment-1814029269) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +7. 🗣 Commented on [#20151](https://github.com/spyder-ide/spyder/pull/20151#issuecomment-1813784464) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/myla/pull/1#issuecomment-1813405679) in [tuhinmallick/myla](https://github.com/tuhinmallick/myla) +9. 🗣 Commented on [#4394](https://github.com/pyload/pyload/pull/4394#issuecomment-1813372055) in [pyload/pyload](https://github.com/pyload/pyload) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/xllm/pull/1#issuecomment-1813370036) in [tuhinmallick/xllm](https://github.com/tuhinmallick/xllm) From 97e6ecedcc674fecdc5cb9edbd79b7bda7487a3f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 16 Nov 2023 19:10:55 +0000 Subject: [PATCH 0666/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0868ab68..456195b5 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) -2. 🗣 Commented on [#5309](https://github.com/rhinstaller/anaconda/pull/5309#issuecomment-1815003079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/latent-consistency-model/pull/1#issuecomment-1814992748) in [tuhinmallick/latent-consistency-model](https://github.com/tuhinmallick/latent-consistency-model) -4. 🗣 Commented on [#5331](https://github.com/rhinstaller/anaconda/pull/5331#issuecomment-1814486195) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#5329](https://github.com/rhinstaller/anaconda/pull/5329#issuecomment-1814380839) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#3046](https://github.com/reframe-hpc/reframe/pull/3046#issuecomment-1814029269) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -7. 🗣 Commented on [#20151](https://github.com/spyder-ide/spyder/pull/20151#issuecomment-1813784464) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/myla/pull/1#issuecomment-1813405679) in [tuhinmallick/myla](https://github.com/tuhinmallick/myla) -9. 🗣 Commented on [#4394](https://github.com/pyload/pyload/pull/4394#issuecomment-1813372055) in [pyload/pyload](https://github.com/pyload/pyload) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/xllm/pull/1#issuecomment-1813370036) in [tuhinmallick/xllm](https://github.com/tuhinmallick/xllm) +1. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) +3. 🗣 Commented on [#5309](https://github.com/rhinstaller/anaconda/pull/5309#issuecomment-1815003079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/latent-consistency-model/pull/1#issuecomment-1814992748) in [tuhinmallick/latent-consistency-model](https://github.com/tuhinmallick/latent-consistency-model) +5. 🗣 Commented on [#5331](https://github.com/rhinstaller/anaconda/pull/5331#issuecomment-1814486195) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#5329](https://github.com/rhinstaller/anaconda/pull/5329#issuecomment-1814380839) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#3046](https://github.com/reframe-hpc/reframe/pull/3046#issuecomment-1814029269) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +8. 🗣 Commented on [#20151](https://github.com/spyder-ide/spyder/pull/20151#issuecomment-1813784464) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/myla/pull/1#issuecomment-1813405679) in [tuhinmallick/myla](https://github.com/tuhinmallick/myla) +10. 🗣 Commented on [#4394](https://github.com/pyload/pyload/pull/4394#issuecomment-1813372055) in [pyload/pyload](https://github.com/pyload/pyload) From e3ac67255680d94b5e559dac2c6d5c5b04d0c3a9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 16 Nov 2023 20:17:21 +0000 Subject: [PATCH 0667/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 456195b5..725ca7f6 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) -3. 🗣 Commented on [#5309](https://github.com/rhinstaller/anaconda/pull/5309#issuecomment-1815003079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/latent-consistency-model/pull/1#issuecomment-1814992748) in [tuhinmallick/latent-consistency-model](https://github.com/tuhinmallick/latent-consistency-model) -5. 🗣 Commented on [#5331](https://github.com/rhinstaller/anaconda/pull/5331#issuecomment-1814486195) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#5329](https://github.com/rhinstaller/anaconda/pull/5329#issuecomment-1814380839) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#3046](https://github.com/reframe-hpc/reframe/pull/3046#issuecomment-1814029269) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -8. 🗣 Commented on [#20151](https://github.com/spyder-ide/spyder/pull/20151#issuecomment-1813784464) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/myla/pull/1#issuecomment-1813405679) in [tuhinmallick/myla](https://github.com/tuhinmallick/myla) -10. 🗣 Commented on [#4394](https://github.com/pyload/pyload/pull/4394#issuecomment-1813372055) in [pyload/pyload](https://github.com/pyload/pyload) +1. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) +4. 🗣 Commented on [#5309](https://github.com/rhinstaller/anaconda/pull/5309#issuecomment-1815003079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/latent-consistency-model/pull/1#issuecomment-1814992748) in [tuhinmallick/latent-consistency-model](https://github.com/tuhinmallick/latent-consistency-model) +6. 🗣 Commented on [#5331](https://github.com/rhinstaller/anaconda/pull/5331#issuecomment-1814486195) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#5329](https://github.com/rhinstaller/anaconda/pull/5329#issuecomment-1814380839) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#3046](https://github.com/reframe-hpc/reframe/pull/3046#issuecomment-1814029269) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +9. 🗣 Commented on [#20151](https://github.com/spyder-ide/spyder/pull/20151#issuecomment-1813784464) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/myla/pull/1#issuecomment-1813405679) in [tuhinmallick/myla](https://github.com/tuhinmallick/myla) From 9e1d20c1b8714c001de8669b87a33504f136d536 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 16 Nov 2023 20:37:18 +0000 Subject: [PATCH 0668/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 725ca7f6..c68d62bd 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) -4. 🗣 Commented on [#5309](https://github.com/rhinstaller/anaconda/pull/5309#issuecomment-1815003079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/latent-consistency-model/pull/1#issuecomment-1814992748) in [tuhinmallick/latent-consistency-model](https://github.com/tuhinmallick/latent-consistency-model) -6. 🗣 Commented on [#5331](https://github.com/rhinstaller/anaconda/pull/5331#issuecomment-1814486195) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#5329](https://github.com/rhinstaller/anaconda/pull/5329#issuecomment-1814380839) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#3046](https://github.com/reframe-hpc/reframe/pull/3046#issuecomment-1814029269) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -9. 🗣 Commented on [#20151](https://github.com/spyder-ide/spyder/pull/20151#issuecomment-1813784464) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/myla/pull/1#issuecomment-1813405679) in [tuhinmallick/myla](https://github.com/tuhinmallick/myla) +1. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) +5. 🗣 Commented on [#5309](https://github.com/rhinstaller/anaconda/pull/5309#issuecomment-1815003079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/latent-consistency-model/pull/1#issuecomment-1814992748) in [tuhinmallick/latent-consistency-model](https://github.com/tuhinmallick/latent-consistency-model) +7. 🗣 Commented on [#5331](https://github.com/rhinstaller/anaconda/pull/5331#issuecomment-1814486195) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#5329](https://github.com/rhinstaller/anaconda/pull/5329#issuecomment-1814380839) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#3046](https://github.com/reframe-hpc/reframe/pull/3046#issuecomment-1814029269) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +10. 🗣 Commented on [#20151](https://github.com/spyder-ide/spyder/pull/20151#issuecomment-1813784464) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 76875a2f40bf156007092ab849134d51ee8338c4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 16 Nov 2023 22:37:21 +0000 Subject: [PATCH 0669/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c68d62bd..a809e93c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) -5. 🗣 Commented on [#5309](https://github.com/rhinstaller/anaconda/pull/5309#issuecomment-1815003079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/latent-consistency-model/pull/1#issuecomment-1814992748) in [tuhinmallick/latent-consistency-model](https://github.com/tuhinmallick/latent-consistency-model) -7. 🗣 Commented on [#5331](https://github.com/rhinstaller/anaconda/pull/5331#issuecomment-1814486195) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#5329](https://github.com/rhinstaller/anaconda/pull/5329#issuecomment-1814380839) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#3046](https://github.com/reframe-hpc/reframe/pull/3046#issuecomment-1814029269) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -10. 🗣 Commented on [#20151](https://github.com/spyder-ide/spyder/pull/20151#issuecomment-1813784464) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +2. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) +6. 🗣 Commented on [#5309](https://github.com/rhinstaller/anaconda/pull/5309#issuecomment-1815003079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/latent-consistency-model/pull/1#issuecomment-1814992748) in [tuhinmallick/latent-consistency-model](https://github.com/tuhinmallick/latent-consistency-model) +8. 🗣 Commented on [#5331](https://github.com/rhinstaller/anaconda/pull/5331#issuecomment-1814486195) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#5329](https://github.com/rhinstaller/anaconda/pull/5329#issuecomment-1814380839) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#3046](https://github.com/reframe-hpc/reframe/pull/3046#issuecomment-1814029269) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) From e9081c4dccb4af14346d52f1a9cc908661beb926 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 17 Nov 2023 10:38:32 +0000 Subject: [PATCH 0670/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a809e93c..1f1767ee 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -2. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) -6. 🗣 Commented on [#5309](https://github.com/rhinstaller/anaconda/pull/5309#issuecomment-1815003079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/latent-consistency-model/pull/1#issuecomment-1814992748) in [tuhinmallick/latent-consistency-model](https://github.com/tuhinmallick/latent-consistency-model) -8. 🗣 Commented on [#5331](https://github.com/rhinstaller/anaconda/pull/5331#issuecomment-1814486195) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#5329](https://github.com/rhinstaller/anaconda/pull/5329#issuecomment-1814380839) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#3046](https://github.com/reframe-hpc/reframe/pull/3046#issuecomment-1814029269) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +1. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +2. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +3. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) +7. 🗣 Commented on [#5309](https://github.com/rhinstaller/anaconda/pull/5309#issuecomment-1815003079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/latent-consistency-model/pull/1#issuecomment-1814992748) in [tuhinmallick/latent-consistency-model](https://github.com/tuhinmallick/latent-consistency-model) +9. 🗣 Commented on [#5331](https://github.com/rhinstaller/anaconda/pull/5331#issuecomment-1814486195) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#5329](https://github.com/rhinstaller/anaconda/pull/5329#issuecomment-1814380839) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From eb8eaaf3a15b18abd24057f14bbfe603bb36689a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 17 Nov 2023 11:13:52 +0000 Subject: [PATCH 0671/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1f1767ee..d6aee6c1 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -2. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -3. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) -7. 🗣 Commented on [#5309](https://github.com/rhinstaller/anaconda/pull/5309#issuecomment-1815003079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/latent-consistency-model/pull/1#issuecomment-1814992748) in [tuhinmallick/latent-consistency-model](https://github.com/tuhinmallick/latent-consistency-model) -9. 🗣 Commented on [#5331](https://github.com/rhinstaller/anaconda/pull/5331#issuecomment-1814486195) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#5329](https://github.com/rhinstaller/anaconda/pull/5329#issuecomment-1814380839) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +2. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +3. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +4. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) +8. 🗣 Commented on [#5309](https://github.com/rhinstaller/anaconda/pull/5309#issuecomment-1815003079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/latent-consistency-model/pull/1#issuecomment-1814992748) in [tuhinmallick/latent-consistency-model](https://github.com/tuhinmallick/latent-consistency-model) +10. 🗣 Commented on [#5331](https://github.com/rhinstaller/anaconda/pull/5331#issuecomment-1814486195) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 340e479902938492e8ea177a90145ef6869d2f94 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 17 Nov 2023 15:37:42 +0000 Subject: [PATCH 0672/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d6aee6c1..4f3ac4be 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -2. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -3. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -4. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) -8. 🗣 Commented on [#5309](https://github.com/rhinstaller/anaconda/pull/5309#issuecomment-1815003079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/latent-consistency-model/pull/1#issuecomment-1814992748) in [tuhinmallick/latent-consistency-model](https://github.com/tuhinmallick/latent-consistency-model) -10. 🗣 Commented on [#5331](https://github.com/rhinstaller/anaconda/pull/5331#issuecomment-1814486195) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +2. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +3. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +4. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +5. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) +9. 🗣 Commented on [#5309](https://github.com/rhinstaller/anaconda/pull/5309#issuecomment-1815003079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/latent-consistency-model/pull/1#issuecomment-1814992748) in [tuhinmallick/latent-consistency-model](https://github.com/tuhinmallick/latent-consistency-model) From fb5e665d95066dcefa04546b23df9fda95bafa95 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 17 Nov 2023 17:15:09 +0000 Subject: [PATCH 0673/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4f3ac4be..f7914317 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -2. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -3. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -4. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -5. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) -9. 🗣 Commented on [#5309](https://github.com/rhinstaller/anaconda/pull/5309#issuecomment-1815003079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/latent-consistency-model/pull/1#issuecomment-1814992748) in [tuhinmallick/latent-consistency-model](https://github.com/tuhinmallick/latent-consistency-model) +1. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +2. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +3. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +4. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +5. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +6. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) +10. 🗣 Commented on [#5309](https://github.com/rhinstaller/anaconda/pull/5309#issuecomment-1815003079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From f1c30473c1d75550f35ae953b1db55818618762c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 17 Nov 2023 17:37:16 +0000 Subject: [PATCH 0674/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f7914317..6ed0f087 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -2. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -3. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -4. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -5. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -6. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) -10. 🗣 Commented on [#5309](https://github.com/rhinstaller/anaconda/pull/5309#issuecomment-1815003079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +3. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +4. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +5. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +6. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +7. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) From acd4656c56e6b2a835aa2e573a931c980ccd3def Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 17 Nov 2023 21:14:09 +0000 Subject: [PATCH 0675/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6ed0f087..6cc04b4e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -3. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -4. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -5. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -6. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -7. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/fastapi-rocket-boilerplate/pull/1#issuecomment-1815011484) in [tuhinmallick/fastapi-rocket-boilerplate](https://github.com/tuhinmallick/fastapi-rocket-boilerplate) +1. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +4. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +5. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +6. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +7. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +8. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 4de705218ae02fbf60dcfdf1417b58eaa328f2f4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 17 Nov 2023 21:37:13 +0000 Subject: [PATCH 0676/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6cc04b4e..f07f1ffb 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -4. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -5. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -6. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -7. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -8. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#1013](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1013#issuecomment-1815033033) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +2. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +5. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +6. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +7. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +8. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +9. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From 8762aaa691ccc93111aa2f82c54a6db508fe48d3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Nov 2023 07:37:09 +0000 Subject: [PATCH 0677/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f07f1ffb..14edd0f2 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -2. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -5. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -6. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -7. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -8. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -9. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#940](https://github.com/avaframe/AvaFrame/pull/940#issuecomment-1815211343) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#364](https://github.com/FOSSEE/xcos_on_cloud/pull/364#issuecomment-1817424135) in [FOSSEE/xcos_on_cloud](https://github.com/FOSSEE/xcos_on_cloud) +2. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +3. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +4. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +6. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +7. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +8. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +9. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +10. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) From 6d802250ecbd410122bee9ece8d7a3563f6f81b9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Nov 2023 08:37:15 +0000 Subject: [PATCH 0678/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 14edd0f2..54e4b86e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#364](https://github.com/FOSSEE/xcos_on_cloud/pull/364#issuecomment-1817424135) in [FOSSEE/xcos_on_cloud](https://github.com/FOSSEE/xcos_on_cloud) -2. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -3. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -4. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -6. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -7. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -8. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -9. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -10. 🗣 Commented on [#810](https://github.com/scilus/scilpy/pull/810#issuecomment-1815255079) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#1072](https://github.com/rasbt/mlxtend/pull/1072#issuecomment-1817445276) in [rasbt/mlxtend](https://github.com/rasbt/mlxtend) +2. 🗣 Commented on [#364](https://github.com/FOSSEE/xcos_on_cloud/pull/364#issuecomment-1817424135) in [FOSSEE/xcos_on_cloud](https://github.com/FOSSEE/xcos_on_cloud) +3. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +4. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +7. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +8. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +9. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +10. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) From d9827609a062efddc782cb06819a4dea6662160c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Nov 2023 14:37:17 +0000 Subject: [PATCH 0679/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 54e4b86e..a6d9e15c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1072](https://github.com/rasbt/mlxtend/pull/1072#issuecomment-1817445276) in [rasbt/mlxtend](https://github.com/rasbt/mlxtend) -2. 🗣 Commented on [#364](https://github.com/FOSSEE/xcos_on_cloud/pull/364#issuecomment-1817424135) in [FOSSEE/xcos_on_cloud](https://github.com/FOSSEE/xcos_on_cloud) -3. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -4. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -7. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -8. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -9. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -10. 🗣 Commented on [#1622](https://github.com/HEXRD/hexrdgui/pull/1622#issuecomment-1815412489) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +1. 🗣 Commented on [#19](https://github.com/Borda/pyRepoStats/pull/19#issuecomment-1817523646) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +2. 🗣 Commented on [#1072](https://github.com/rasbt/mlxtend/pull/1072#issuecomment-1817445276) in [rasbt/mlxtend](https://github.com/rasbt/mlxtend) +3. 🗣 Commented on [#364](https://github.com/FOSSEE/xcos_on_cloud/pull/364#issuecomment-1817424135) in [FOSSEE/xcos_on_cloud](https://github.com/FOSSEE/xcos_on_cloud) +4. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +5. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +6. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +8. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +9. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +10. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) From 8ee4c9afedcefa06e90a2814d8120199c2e7112f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Nov 2023 16:38:46 +0000 Subject: [PATCH 0680/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a6d9e15c..6673875c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#19](https://github.com/Borda/pyRepoStats/pull/19#issuecomment-1817523646) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -2. 🗣 Commented on [#1072](https://github.com/rasbt/mlxtend/pull/1072#issuecomment-1817445276) in [rasbt/mlxtend](https://github.com/rasbt/mlxtend) -3. 🗣 Commented on [#364](https://github.com/FOSSEE/xcos_on_cloud/pull/364#issuecomment-1817424135) in [FOSSEE/xcos_on_cloud](https://github.com/FOSSEE/xcos_on_cloud) -4. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -5. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -6. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -8. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -9. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -10. 🗣 Commented on [#502](https://github.com/aramis-lab/clinicadl/pull/502#issuecomment-1816110020) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +1. 🗣 Commented on [#20](https://github.com/Borda/pyRepoStats/pull/20#issuecomment-1817551016) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +2. 🗣 Commented on [#19](https://github.com/Borda/pyRepoStats/pull/19#issuecomment-1817523646) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +3. 🗣 Commented on [#1072](https://github.com/rasbt/mlxtend/pull/1072#issuecomment-1817445276) in [rasbt/mlxtend](https://github.com/rasbt/mlxtend) +4. 🗣 Commented on [#364](https://github.com/FOSSEE/xcos_on_cloud/pull/364#issuecomment-1817424135) in [FOSSEE/xcos_on_cloud](https://github.com/FOSSEE/xcos_on_cloud) +5. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +6. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +7. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +9. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +10. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) From fe5985db821b66bd70feb9aa689072f313fb9bc6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 19 Nov 2023 01:18:18 +0000 Subject: [PATCH 0681/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6673875c..3913659e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#20](https://github.com/Borda/pyRepoStats/pull/20#issuecomment-1817551016) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -2. 🗣 Commented on [#19](https://github.com/Borda/pyRepoStats/pull/19#issuecomment-1817523646) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -3. 🗣 Commented on [#1072](https://github.com/rasbt/mlxtend/pull/1072#issuecomment-1817445276) in [rasbt/mlxtend](https://github.com/rasbt/mlxtend) -4. 🗣 Commented on [#364](https://github.com/FOSSEE/xcos_on_cloud/pull/364#issuecomment-1817424135) in [FOSSEE/xcos_on_cloud](https://github.com/FOSSEE/xcos_on_cloud) -5. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -6. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -7. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -9. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -10. 🗣 Commented on [#81](https://github.com/ITMO-NSS-team/GAMLET/pull/81#issuecomment-1816152054) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +1. 🗣 Commented on [#271](https://github.com/cleder/fastkml/pull/271#issuecomment-1817680800) in [cleder/fastkml](https://github.com/cleder/fastkml) +2. 🗣 Commented on [#20](https://github.com/Borda/pyRepoStats/pull/20#issuecomment-1817551016) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +3. 🗣 Commented on [#19](https://github.com/Borda/pyRepoStats/pull/19#issuecomment-1817523646) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +4. 🗣 Commented on [#1072](https://github.com/rasbt/mlxtend/pull/1072#issuecomment-1817445276) in [rasbt/mlxtend](https://github.com/rasbt/mlxtend) +5. 🗣 Commented on [#364](https://github.com/FOSSEE/xcos_on_cloud/pull/364#issuecomment-1817424135) in [FOSSEE/xcos_on_cloud](https://github.com/FOSSEE/xcos_on_cloud) +6. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +7. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +8. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +10. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) From ff6716d06beea731642105fabd08938fb3e9715e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 19 Nov 2023 03:37:25 +0000 Subject: [PATCH 0682/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3913659e..c17c47f4 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#271](https://github.com/cleder/fastkml/pull/271#issuecomment-1817680800) in [cleder/fastkml](https://github.com/cleder/fastkml) -2. 🗣 Commented on [#20](https://github.com/Borda/pyRepoStats/pull/20#issuecomment-1817551016) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -3. 🗣 Commented on [#19](https://github.com/Borda/pyRepoStats/pull/19#issuecomment-1817523646) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -4. 🗣 Commented on [#1072](https://github.com/rasbt/mlxtend/pull/1072#issuecomment-1817445276) in [rasbt/mlxtend](https://github.com/rasbt/mlxtend) -5. 🗣 Commented on [#364](https://github.com/FOSSEE/xcos_on_cloud/pull/364#issuecomment-1817424135) in [FOSSEE/xcos_on_cloud](https://github.com/FOSSEE/xcos_on_cloud) -6. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -7. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -8. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -10. 🗣 Commented on [#9](https://github.com/tzamalisp/crossai/pull/9#issuecomment-1816627285) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +1. 🗣 Commented on [#191](https://github.com/mcdougallab/modeldb/pull/191#issuecomment-1817732744) in [mcdougallab/modeldb](https://github.com/mcdougallab/modeldb) +2. 🗣 Commented on [#271](https://github.com/cleder/fastkml/pull/271#issuecomment-1817680800) in [cleder/fastkml](https://github.com/cleder/fastkml) +3. 🗣 Commented on [#20](https://github.com/Borda/pyRepoStats/pull/20#issuecomment-1817551016) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +4. 🗣 Commented on [#19](https://github.com/Borda/pyRepoStats/pull/19#issuecomment-1817523646) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +5. 🗣 Commented on [#1072](https://github.com/rasbt/mlxtend/pull/1072#issuecomment-1817445276) in [rasbt/mlxtend](https://github.com/rasbt/mlxtend) +6. 🗣 Commented on [#364](https://github.com/FOSSEE/xcos_on_cloud/pull/364#issuecomment-1817424135) in [FOSSEE/xcos_on_cloud](https://github.com/FOSSEE/xcos_on_cloud) +7. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +8. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +9. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) From 6cd592ae542bdb6d6d4d8286ad4ae87bcab3e7ea Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 19 Nov 2023 17:13:28 +0000 Subject: [PATCH 0683/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c17c47f4..eaceb2fc 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#191](https://github.com/mcdougallab/modeldb/pull/191#issuecomment-1817732744) in [mcdougallab/modeldb](https://github.com/mcdougallab/modeldb) -2. 🗣 Commented on [#271](https://github.com/cleder/fastkml/pull/271#issuecomment-1817680800) in [cleder/fastkml](https://github.com/cleder/fastkml) -3. 🗣 Commented on [#20](https://github.com/Borda/pyRepoStats/pull/20#issuecomment-1817551016) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -4. 🗣 Commented on [#19](https://github.com/Borda/pyRepoStats/pull/19#issuecomment-1817523646) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -5. 🗣 Commented on [#1072](https://github.com/rasbt/mlxtend/pull/1072#issuecomment-1817445276) in [rasbt/mlxtend](https://github.com/rasbt/mlxtend) -6. 🗣 Commented on [#364](https://github.com/FOSSEE/xcos_on_cloud/pull/364#issuecomment-1817424135) in [FOSSEE/xcos_on_cloud](https://github.com/FOSSEE/xcos_on_cloud) -7. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -8. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -9. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#1350](https://github.com/NeuralEnsemble/python-neo/pull/1350#issuecomment-1816784370) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +1. 🗣 Commented on [#575](https://github.com/quark-engine/quark-engine/pull/575#issuecomment-1817916661) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +2. 🗣 Commented on [#191](https://github.com/mcdougallab/modeldb/pull/191#issuecomment-1817732744) in [mcdougallab/modeldb](https://github.com/mcdougallab/modeldb) +3. 🗣 Commented on [#271](https://github.com/cleder/fastkml/pull/271#issuecomment-1817680800) in [cleder/fastkml](https://github.com/cleder/fastkml) +4. 🗣 Commented on [#20](https://github.com/Borda/pyRepoStats/pull/20#issuecomment-1817551016) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +5. 🗣 Commented on [#19](https://github.com/Borda/pyRepoStats/pull/19#issuecomment-1817523646) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +6. 🗣 Commented on [#1072](https://github.com/rasbt/mlxtend/pull/1072#issuecomment-1817445276) in [rasbt/mlxtend](https://github.com/rasbt/mlxtend) +7. 🗣 Commented on [#364](https://github.com/FOSSEE/xcos_on_cloud/pull/364#issuecomment-1817424135) in [FOSSEE/xcos_on_cloud](https://github.com/FOSSEE/xcos_on_cloud) +8. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +9. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +10. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 273491efe4212af3cbcd93761af10a203a69b785 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 03:17:28 +0000 Subject: [PATCH 0684/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index eaceb2fc..aeeb4d67 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#575](https://github.com/quark-engine/quark-engine/pull/575#issuecomment-1817916661) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -2. 🗣 Commented on [#191](https://github.com/mcdougallab/modeldb/pull/191#issuecomment-1817732744) in [mcdougallab/modeldb](https://github.com/mcdougallab/modeldb) -3. 🗣 Commented on [#271](https://github.com/cleder/fastkml/pull/271#issuecomment-1817680800) in [cleder/fastkml](https://github.com/cleder/fastkml) -4. 🗣 Commented on [#20](https://github.com/Borda/pyRepoStats/pull/20#issuecomment-1817551016) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -5. 🗣 Commented on [#19](https://github.com/Borda/pyRepoStats/pull/19#issuecomment-1817523646) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -6. 🗣 Commented on [#1072](https://github.com/rasbt/mlxtend/pull/1072#issuecomment-1817445276) in [rasbt/mlxtend](https://github.com/rasbt/mlxtend) -7. 🗣 Commented on [#364](https://github.com/FOSSEE/xcos_on_cloud/pull/364#issuecomment-1817424135) in [FOSSEE/xcos_on_cloud](https://github.com/FOSSEE/xcos_on_cloud) -8. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -9. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -10. 🗣 Commented on [#50](https://github.com/eastgenomics/eris/pull/50#issuecomment-1816819846) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#384](https://github.com/payu-org/payu/pull/384#issuecomment-1818155770) in [payu-org/payu](https://github.com/payu-org/payu) +2. 🗣 Commented on [#575](https://github.com/quark-engine/quark-engine/pull/575#issuecomment-1817916661) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +3. 🗣 Commented on [#191](https://github.com/mcdougallab/modeldb/pull/191#issuecomment-1817732744) in [mcdougallab/modeldb](https://github.com/mcdougallab/modeldb) +4. 🗣 Commented on [#271](https://github.com/cleder/fastkml/pull/271#issuecomment-1817680800) in [cleder/fastkml](https://github.com/cleder/fastkml) +5. 🗣 Commented on [#20](https://github.com/Borda/pyRepoStats/pull/20#issuecomment-1817551016) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +6. 🗣 Commented on [#19](https://github.com/Borda/pyRepoStats/pull/19#issuecomment-1817523646) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +7. 🗣 Commented on [#1072](https://github.com/rasbt/mlxtend/pull/1072#issuecomment-1817445276) in [rasbt/mlxtend](https://github.com/rasbt/mlxtend) +8. 🗣 Commented on [#364](https://github.com/FOSSEE/xcos_on_cloud/pull/364#issuecomment-1817424135) in [FOSSEE/xcos_on_cloud](https://github.com/FOSSEE/xcos_on_cloud) +9. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +10. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) From f28afa131ebf1124da612e136fe8bacdce8bed5f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 06:22:26 +0000 Subject: [PATCH 0685/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index aeeb4d67..f65532ef 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#384](https://github.com/payu-org/payu/pull/384#issuecomment-1818155770) in [payu-org/payu](https://github.com/payu-org/payu) -2. 🗣 Commented on [#575](https://github.com/quark-engine/quark-engine/pull/575#issuecomment-1817916661) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -3. 🗣 Commented on [#191](https://github.com/mcdougallab/modeldb/pull/191#issuecomment-1817732744) in [mcdougallab/modeldb](https://github.com/mcdougallab/modeldb) -4. 🗣 Commented on [#271](https://github.com/cleder/fastkml/pull/271#issuecomment-1817680800) in [cleder/fastkml](https://github.com/cleder/fastkml) -5. 🗣 Commented on [#20](https://github.com/Borda/pyRepoStats/pull/20#issuecomment-1817551016) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -6. 🗣 Commented on [#19](https://github.com/Borda/pyRepoStats/pull/19#issuecomment-1817523646) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -7. 🗣 Commented on [#1072](https://github.com/rasbt/mlxtend/pull/1072#issuecomment-1817445276) in [rasbt/mlxtend](https://github.com/rasbt/mlxtend) -8. 🗣 Commented on [#364](https://github.com/FOSSEE/xcos_on_cloud/pull/364#issuecomment-1817424135) in [FOSSEE/xcos_on_cloud](https://github.com/FOSSEE/xcos_on_cloud) -9. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -10. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1817096275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Chat-UniVi/pull/1#issuecomment-1818295208) in [tuhinmallick/Chat-UniVi](https://github.com/tuhinmallick/Chat-UniVi) +2. 🗣 Commented on [#384](https://github.com/payu-org/payu/pull/384#issuecomment-1818155770) in [payu-org/payu](https://github.com/payu-org/payu) +3. 🗣 Commented on [#575](https://github.com/quark-engine/quark-engine/pull/575#issuecomment-1817916661) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +4. 🗣 Commented on [#191](https://github.com/mcdougallab/modeldb/pull/191#issuecomment-1817732744) in [mcdougallab/modeldb](https://github.com/mcdougallab/modeldb) +5. 🗣 Commented on [#271](https://github.com/cleder/fastkml/pull/271#issuecomment-1817680800) in [cleder/fastkml](https://github.com/cleder/fastkml) +6. 🗣 Commented on [#20](https://github.com/Borda/pyRepoStats/pull/20#issuecomment-1817551016) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +7. 🗣 Commented on [#19](https://github.com/Borda/pyRepoStats/pull/19#issuecomment-1817523646) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +8. 🗣 Commented on [#1072](https://github.com/rasbt/mlxtend/pull/1072#issuecomment-1817445276) in [rasbt/mlxtend](https://github.com/rasbt/mlxtend) +9. 🗣 Commented on [#364](https://github.com/FOSSEE/xcos_on_cloud/pull/364#issuecomment-1817424135) in [FOSSEE/xcos_on_cloud](https://github.com/FOSSEE/xcos_on_cloud) +10. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) From 1ed4810ff15190d06f473f272b9d84e1a425ecba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 06:39:54 +0000 Subject: [PATCH 0686/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f65532ef..3443e639 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Chat-UniVi/pull/1#issuecomment-1818295208) in [tuhinmallick/Chat-UniVi](https://github.com/tuhinmallick/Chat-UniVi) -2. 🗣 Commented on [#384](https://github.com/payu-org/payu/pull/384#issuecomment-1818155770) in [payu-org/payu](https://github.com/payu-org/payu) -3. 🗣 Commented on [#575](https://github.com/quark-engine/quark-engine/pull/575#issuecomment-1817916661) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -4. 🗣 Commented on [#191](https://github.com/mcdougallab/modeldb/pull/191#issuecomment-1817732744) in [mcdougallab/modeldb](https://github.com/mcdougallab/modeldb) -5. 🗣 Commented on [#271](https://github.com/cleder/fastkml/pull/271#issuecomment-1817680800) in [cleder/fastkml](https://github.com/cleder/fastkml) -6. 🗣 Commented on [#20](https://github.com/Borda/pyRepoStats/pull/20#issuecomment-1817551016) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -7. 🗣 Commented on [#19](https://github.com/Borda/pyRepoStats/pull/19#issuecomment-1817523646) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -8. 🗣 Commented on [#1072](https://github.com/rasbt/mlxtend/pull/1072#issuecomment-1817445276) in [rasbt/mlxtend](https://github.com/rasbt/mlxtend) -9. 🗣 Commented on [#364](https://github.com/FOSSEE/xcos_on_cloud/pull/364#issuecomment-1817424135) in [FOSSEE/xcos_on_cloud](https://github.com/FOSSEE/xcos_on_cloud) -10. 🗣 Commented on [#26](https://github.com/MDAnalysis/waterdynamics/pull/26#issuecomment-1817131110) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/lcm-demo/pull/1#issuecomment-1818309431) in [tuhinmallick/lcm-demo](https://github.com/tuhinmallick/lcm-demo) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Ollama/pull/1#issuecomment-1818307777) in [tuhinmallick/Ollama](https://github.com/tuhinmallick/Ollama) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/OllamaPY/pull/1#issuecomment-1818307095) in [tuhinmallick/OllamaPY](https://github.com/tuhinmallick/OllamaPY) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaCLIP/pull/1#issuecomment-1818306403) in [tuhinmallick/MetaCLIP](https://github.com/tuhinmallick/MetaCLIP) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models/pull/1#issuecomment-1818306216) in [tuhinmallick/awesome-foundation-and-multimodal-models](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval/pull/1#issuecomment-1818298923) in [tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain2api/pull/1#issuecomment-1818297119) in [tuhinmallick/langchain2api](https://github.com/tuhinmallick/langchain2api) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/a-person-mask-generator/pull/1#issuecomment-1818296863) in [tuhinmallick/a-person-mask-generator](https://github.com/tuhinmallick/a-person-mask-generator) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Chat-UniVi/pull/1#issuecomment-1818295208) in [tuhinmallick/Chat-UniVi](https://github.com/tuhinmallick/Chat-UniVi) +10. 🗣 Commented on [#384](https://github.com/payu-org/payu/pull/384#issuecomment-1818155770) in [payu-org/payu](https://github.com/payu-org/payu) From dda031fe28c24ebe822ff16952be3f462efd5bcf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 09:17:39 +0000 Subject: [PATCH 0687/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3443e639..b27ce826 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/lcm-demo/pull/1#issuecomment-1818309431) in [tuhinmallick/lcm-demo](https://github.com/tuhinmallick/lcm-demo) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Ollama/pull/1#issuecomment-1818307777) in [tuhinmallick/Ollama](https://github.com/tuhinmallick/Ollama) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/OllamaPY/pull/1#issuecomment-1818307095) in [tuhinmallick/OllamaPY](https://github.com/tuhinmallick/OllamaPY) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaCLIP/pull/1#issuecomment-1818306403) in [tuhinmallick/MetaCLIP](https://github.com/tuhinmallick/MetaCLIP) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models/pull/1#issuecomment-1818306216) in [tuhinmallick/awesome-foundation-and-multimodal-models](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval/pull/1#issuecomment-1818298923) in [tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain2api/pull/1#issuecomment-1818297119) in [tuhinmallick/langchain2api](https://github.com/tuhinmallick/langchain2api) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/a-person-mask-generator/pull/1#issuecomment-1818296863) in [tuhinmallick/a-person-mask-generator](https://github.com/tuhinmallick/a-person-mask-generator) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Chat-UniVi/pull/1#issuecomment-1818295208) in [tuhinmallick/Chat-UniVi](https://github.com/tuhinmallick/Chat-UniVi) -10. 🗣 Commented on [#384](https://github.com/payu-org/payu/pull/384#issuecomment-1818155770) in [payu-org/payu](https://github.com/payu-org/payu) +1. 🗣 Commented on [#3813](https://github.com/privacyidea/privacyidea/pull/3813#issuecomment-1818508564) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/lcm-demo/pull/1#issuecomment-1818309431) in [tuhinmallick/lcm-demo](https://github.com/tuhinmallick/lcm-demo) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Ollama/pull/1#issuecomment-1818307777) in [tuhinmallick/Ollama](https://github.com/tuhinmallick/Ollama) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/OllamaPY/pull/1#issuecomment-1818307095) in [tuhinmallick/OllamaPY](https://github.com/tuhinmallick/OllamaPY) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaCLIP/pull/1#issuecomment-1818306403) in [tuhinmallick/MetaCLIP](https://github.com/tuhinmallick/MetaCLIP) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models/pull/1#issuecomment-1818306216) in [tuhinmallick/awesome-foundation-and-multimodal-models](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval/pull/1#issuecomment-1818298923) in [tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain2api/pull/1#issuecomment-1818297119) in [tuhinmallick/langchain2api](https://github.com/tuhinmallick/langchain2api) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/a-person-mask-generator/pull/1#issuecomment-1818296863) in [tuhinmallick/a-person-mask-generator](https://github.com/tuhinmallick/a-person-mask-generator) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Chat-UniVi/pull/1#issuecomment-1818295208) in [tuhinmallick/Chat-UniVi](https://github.com/tuhinmallick/Chat-UniVi) From d689aecd54842b74cd49344c81dbb09ed150c9f5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 14:37:59 +0000 Subject: [PATCH 0688/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b27ce826..01fe11d0 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#3813](https://github.com/privacyidea/privacyidea/pull/3813#issuecomment-1818508564) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/lcm-demo/pull/1#issuecomment-1818309431) in [tuhinmallick/lcm-demo](https://github.com/tuhinmallick/lcm-demo) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Ollama/pull/1#issuecomment-1818307777) in [tuhinmallick/Ollama](https://github.com/tuhinmallick/Ollama) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/OllamaPY/pull/1#issuecomment-1818307095) in [tuhinmallick/OllamaPY](https://github.com/tuhinmallick/OllamaPY) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaCLIP/pull/1#issuecomment-1818306403) in [tuhinmallick/MetaCLIP](https://github.com/tuhinmallick/MetaCLIP) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models/pull/1#issuecomment-1818306216) in [tuhinmallick/awesome-foundation-and-multimodal-models](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval/pull/1#issuecomment-1818298923) in [tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain2api/pull/1#issuecomment-1818297119) in [tuhinmallick/langchain2api](https://github.com/tuhinmallick/langchain2api) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/a-person-mask-generator/pull/1#issuecomment-1818296863) in [tuhinmallick/a-person-mask-generator](https://github.com/tuhinmallick/a-person-mask-generator) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Chat-UniVi/pull/1#issuecomment-1818295208) in [tuhinmallick/Chat-UniVi](https://github.com/tuhinmallick/Chat-UniVi) +1. 🗣 Commented on [#647](https://github.com/OpenFreeEnergy/openfe/pull/647#issuecomment-1819167804) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#3813](https://github.com/privacyidea/privacyidea/pull/3813#issuecomment-1818508564) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/lcm-demo/pull/1#issuecomment-1818309431) in [tuhinmallick/lcm-demo](https://github.com/tuhinmallick/lcm-demo) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Ollama/pull/1#issuecomment-1818307777) in [tuhinmallick/Ollama](https://github.com/tuhinmallick/Ollama) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/OllamaPY/pull/1#issuecomment-1818307095) in [tuhinmallick/OllamaPY](https://github.com/tuhinmallick/OllamaPY) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaCLIP/pull/1#issuecomment-1818306403) in [tuhinmallick/MetaCLIP](https://github.com/tuhinmallick/MetaCLIP) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models/pull/1#issuecomment-1818306216) in [tuhinmallick/awesome-foundation-and-multimodal-models](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval/pull/1#issuecomment-1818298923) in [tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain2api/pull/1#issuecomment-1818297119) in [tuhinmallick/langchain2api](https://github.com/tuhinmallick/langchain2api) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/a-person-mask-generator/pull/1#issuecomment-1818296863) in [tuhinmallick/a-person-mask-generator](https://github.com/tuhinmallick/a-person-mask-generator) From da263e709d8a5bccf72add42695abcf49c4ac26a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 16:22:01 +0000 Subject: [PATCH 0689/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 01fe11d0..1053a43e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#647](https://github.com/OpenFreeEnergy/openfe/pull/647#issuecomment-1819167804) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#3813](https://github.com/privacyidea/privacyidea/pull/3813#issuecomment-1818508564) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/lcm-demo/pull/1#issuecomment-1818309431) in [tuhinmallick/lcm-demo](https://github.com/tuhinmallick/lcm-demo) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Ollama/pull/1#issuecomment-1818307777) in [tuhinmallick/Ollama](https://github.com/tuhinmallick/Ollama) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/OllamaPY/pull/1#issuecomment-1818307095) in [tuhinmallick/OllamaPY](https://github.com/tuhinmallick/OllamaPY) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaCLIP/pull/1#issuecomment-1818306403) in [tuhinmallick/MetaCLIP](https://github.com/tuhinmallick/MetaCLIP) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models/pull/1#issuecomment-1818306216) in [tuhinmallick/awesome-foundation-and-multimodal-models](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval/pull/1#issuecomment-1818298923) in [tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain2api/pull/1#issuecomment-1818297119) in [tuhinmallick/langchain2api](https://github.com/tuhinmallick/langchain2api) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/a-person-mask-generator/pull/1#issuecomment-1818296863) in [tuhinmallick/a-person-mask-generator](https://github.com/tuhinmallick/a-person-mask-generator) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/privateGPT/pull/1#issuecomment-1819348300) in [tuhinmallick/privateGPT](https://github.com/tuhinmallick/privateGPT) +2. 🗣 Commented on [#647](https://github.com/OpenFreeEnergy/openfe/pull/647#issuecomment-1819167804) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#3813](https://github.com/privacyidea/privacyidea/pull/3813#issuecomment-1818508564) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/lcm-demo/pull/1#issuecomment-1818309431) in [tuhinmallick/lcm-demo](https://github.com/tuhinmallick/lcm-demo) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Ollama/pull/1#issuecomment-1818307777) in [tuhinmallick/Ollama](https://github.com/tuhinmallick/Ollama) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/OllamaPY/pull/1#issuecomment-1818307095) in [tuhinmallick/OllamaPY](https://github.com/tuhinmallick/OllamaPY) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaCLIP/pull/1#issuecomment-1818306403) in [tuhinmallick/MetaCLIP](https://github.com/tuhinmallick/MetaCLIP) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models/pull/1#issuecomment-1818306216) in [tuhinmallick/awesome-foundation-and-multimodal-models](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval/pull/1#issuecomment-1818298923) in [tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain2api/pull/1#issuecomment-1818297119) in [tuhinmallick/langchain2api](https://github.com/tuhinmallick/langchain2api) From b3313d77112b6eb00307684f45d3f72cee9b8649 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 18:21:20 +0000 Subject: [PATCH 0690/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1053a43e..dffd3b3a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/privateGPT/pull/1#issuecomment-1819348300) in [tuhinmallick/privateGPT](https://github.com/tuhinmallick/privateGPT) -2. 🗣 Commented on [#647](https://github.com/OpenFreeEnergy/openfe/pull/647#issuecomment-1819167804) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#3813](https://github.com/privacyidea/privacyidea/pull/3813#issuecomment-1818508564) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/lcm-demo/pull/1#issuecomment-1818309431) in [tuhinmallick/lcm-demo](https://github.com/tuhinmallick/lcm-demo) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Ollama/pull/1#issuecomment-1818307777) in [tuhinmallick/Ollama](https://github.com/tuhinmallick/Ollama) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/OllamaPY/pull/1#issuecomment-1818307095) in [tuhinmallick/OllamaPY](https://github.com/tuhinmallick/OllamaPY) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaCLIP/pull/1#issuecomment-1818306403) in [tuhinmallick/MetaCLIP](https://github.com/tuhinmallick/MetaCLIP) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models/pull/1#issuecomment-1818306216) in [tuhinmallick/awesome-foundation-and-multimodal-models](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval/pull/1#issuecomment-1818298923) in [tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/langchain2api/pull/1#issuecomment-1818297119) in [tuhinmallick/langchain2api](https://github.com/tuhinmallick/langchain2api) +1. 🗣 Commented on [#255](https://github.com/OpenFreeEnergy/gufe/pull/255#issuecomment-1819570285) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/privateGPT/pull/1#issuecomment-1819348300) in [tuhinmallick/privateGPT](https://github.com/tuhinmallick/privateGPT) +3. 🗣 Commented on [#647](https://github.com/OpenFreeEnergy/openfe/pull/647#issuecomment-1819167804) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#3813](https://github.com/privacyidea/privacyidea/pull/3813#issuecomment-1818508564) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/lcm-demo/pull/1#issuecomment-1818309431) in [tuhinmallick/lcm-demo](https://github.com/tuhinmallick/lcm-demo) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Ollama/pull/1#issuecomment-1818307777) in [tuhinmallick/Ollama](https://github.com/tuhinmallick/Ollama) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/OllamaPY/pull/1#issuecomment-1818307095) in [tuhinmallick/OllamaPY](https://github.com/tuhinmallick/OllamaPY) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaCLIP/pull/1#issuecomment-1818306403) in [tuhinmallick/MetaCLIP](https://github.com/tuhinmallick/MetaCLIP) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models/pull/1#issuecomment-1818306216) in [tuhinmallick/awesome-foundation-and-multimodal-models](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval/pull/1#issuecomment-1818298923) in [tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval) From c229625ace8954b1f1480a0c6895ed5c6ad4ee54 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 18:39:13 +0000 Subject: [PATCH 0691/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dffd3b3a..3f8989dc 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#255](https://github.com/OpenFreeEnergy/gufe/pull/255#issuecomment-1819570285) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/privateGPT/pull/1#issuecomment-1819348300) in [tuhinmallick/privateGPT](https://github.com/tuhinmallick/privateGPT) -3. 🗣 Commented on [#647](https://github.com/OpenFreeEnergy/openfe/pull/647#issuecomment-1819167804) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#3813](https://github.com/privacyidea/privacyidea/pull/3813#issuecomment-1818508564) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/lcm-demo/pull/1#issuecomment-1818309431) in [tuhinmallick/lcm-demo](https://github.com/tuhinmallick/lcm-demo) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Ollama/pull/1#issuecomment-1818307777) in [tuhinmallick/Ollama](https://github.com/tuhinmallick/Ollama) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/OllamaPY/pull/1#issuecomment-1818307095) in [tuhinmallick/OllamaPY](https://github.com/tuhinmallick/OllamaPY) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaCLIP/pull/1#issuecomment-1818306403) in [tuhinmallick/MetaCLIP](https://github.com/tuhinmallick/MetaCLIP) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models/pull/1#issuecomment-1818306216) in [tuhinmallick/awesome-foundation-and-multimodal-models](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval/pull/1#issuecomment-1818298923) in [tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval](https://github.com/tuhinmallick/dstoolkit-ComputerVision-ImageRetrieval) +1. 🗣 Commented on [#1014](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1014#issuecomment-1819586485) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#255](https://github.com/OpenFreeEnergy/gufe/pull/255#issuecomment-1819570285) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/privateGPT/pull/1#issuecomment-1819348300) in [tuhinmallick/privateGPT](https://github.com/tuhinmallick/privateGPT) +4. 🗣 Commented on [#647](https://github.com/OpenFreeEnergy/openfe/pull/647#issuecomment-1819167804) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#3813](https://github.com/privacyidea/privacyidea/pull/3813#issuecomment-1818508564) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/lcm-demo/pull/1#issuecomment-1818309431) in [tuhinmallick/lcm-demo](https://github.com/tuhinmallick/lcm-demo) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Ollama/pull/1#issuecomment-1818307777) in [tuhinmallick/Ollama](https://github.com/tuhinmallick/Ollama) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/OllamaPY/pull/1#issuecomment-1818307095) in [tuhinmallick/OllamaPY](https://github.com/tuhinmallick/OllamaPY) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaCLIP/pull/1#issuecomment-1818306403) in [tuhinmallick/MetaCLIP](https://github.com/tuhinmallick/MetaCLIP) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models/pull/1#issuecomment-1818306216) in [tuhinmallick/awesome-foundation-and-multimodal-models](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models) From cdd255094af84483e78e3ee08b03a4dca6361e3a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Nov 2023 01:16:01 +0000 Subject: [PATCH 0692/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3f8989dc..9647a786 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1014](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1014#issuecomment-1819586485) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#255](https://github.com/OpenFreeEnergy/gufe/pull/255#issuecomment-1819570285) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/privateGPT/pull/1#issuecomment-1819348300) in [tuhinmallick/privateGPT](https://github.com/tuhinmallick/privateGPT) -4. 🗣 Commented on [#647](https://github.com/OpenFreeEnergy/openfe/pull/647#issuecomment-1819167804) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#3813](https://github.com/privacyidea/privacyidea/pull/3813#issuecomment-1818508564) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/lcm-demo/pull/1#issuecomment-1818309431) in [tuhinmallick/lcm-demo](https://github.com/tuhinmallick/lcm-demo) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Ollama/pull/1#issuecomment-1818307777) in [tuhinmallick/Ollama](https://github.com/tuhinmallick/Ollama) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/OllamaPY/pull/1#issuecomment-1818307095) in [tuhinmallick/OllamaPY](https://github.com/tuhinmallick/OllamaPY) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/MetaCLIP/pull/1#issuecomment-1818306403) in [tuhinmallick/MetaCLIP](https://github.com/tuhinmallick/MetaCLIP) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models/pull/1#issuecomment-1818306216) in [tuhinmallick/awesome-foundation-and-multimodal-models](https://github.com/tuhinmallick/awesome-foundation-and-multimodal-models) +1. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1820046009) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#116](https://github.com/MDAnalysis/membrane-curvature/pull/116#issuecomment-1819997636) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) +3. 🗣 Commented on [#1014](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1014#issuecomment-1819586485) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#255](https://github.com/OpenFreeEnergy/gufe/pull/255#issuecomment-1819570285) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/privateGPT/pull/1#issuecomment-1819348300) in [tuhinmallick/privateGPT](https://github.com/tuhinmallick/privateGPT) +6. 🗣 Commented on [#647](https://github.com/OpenFreeEnergy/openfe/pull/647#issuecomment-1819167804) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#3813](https://github.com/privacyidea/privacyidea/pull/3813#issuecomment-1818508564) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/lcm-demo/pull/1#issuecomment-1818309431) in [tuhinmallick/lcm-demo](https://github.com/tuhinmallick/lcm-demo) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Ollama/pull/1#issuecomment-1818307777) in [tuhinmallick/Ollama](https://github.com/tuhinmallick/Ollama) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/OllamaPY/pull/1#issuecomment-1818307095) in [tuhinmallick/OllamaPY](https://github.com/tuhinmallick/OllamaPY) From 1c812c3473921e5e1a0cd4764a7c1613ddbef87f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Nov 2023 03:37:30 +0000 Subject: [PATCH 0693/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9647a786..dd86d972 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1820046009) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#116](https://github.com/MDAnalysis/membrane-curvature/pull/116#issuecomment-1819997636) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) -3. 🗣 Commented on [#1014](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1014#issuecomment-1819586485) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#255](https://github.com/OpenFreeEnergy/gufe/pull/255#issuecomment-1819570285) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/privateGPT/pull/1#issuecomment-1819348300) in [tuhinmallick/privateGPT](https://github.com/tuhinmallick/privateGPT) -6. 🗣 Commented on [#647](https://github.com/OpenFreeEnergy/openfe/pull/647#issuecomment-1819167804) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#3813](https://github.com/privacyidea/privacyidea/pull/3813#issuecomment-1818508564) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/lcm-demo/pull/1#issuecomment-1818309431) in [tuhinmallick/lcm-demo](https://github.com/tuhinmallick/lcm-demo) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Ollama/pull/1#issuecomment-1818307777) in [tuhinmallick/Ollama](https://github.com/tuhinmallick/Ollama) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/OllamaPY/pull/1#issuecomment-1818307095) in [tuhinmallick/OllamaPY](https://github.com/tuhinmallick/OllamaPY) +1. 🗣 Commented on [#8](https://github.com/tilde-lab/pytopas/pull/8#issuecomment-1820156951) in [tilde-lab/pytopas](https://github.com/tilde-lab/pytopas) +2. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1820046009) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#116](https://github.com/MDAnalysis/membrane-curvature/pull/116#issuecomment-1819997636) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) +4. 🗣 Commented on [#1014](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1014#issuecomment-1819586485) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#255](https://github.com/OpenFreeEnergy/gufe/pull/255#issuecomment-1819570285) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/privateGPT/pull/1#issuecomment-1819348300) in [tuhinmallick/privateGPT](https://github.com/tuhinmallick/privateGPT) +7. 🗣 Commented on [#647](https://github.com/OpenFreeEnergy/openfe/pull/647#issuecomment-1819167804) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#3813](https://github.com/privacyidea/privacyidea/pull/3813#issuecomment-1818508564) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/lcm-demo/pull/1#issuecomment-1818309431) in [tuhinmallick/lcm-demo](https://github.com/tuhinmallick/lcm-demo) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Ollama/pull/1#issuecomment-1818307777) in [tuhinmallick/Ollama](https://github.com/tuhinmallick/Ollama) From 907fd3597cef3ab7b38ea409b853a7e05ef81d46 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Nov 2023 11:14:18 +0000 Subject: [PATCH 0694/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dd86d972..f07864ff 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#8](https://github.com/tilde-lab/pytopas/pull/8#issuecomment-1820156951) in [tilde-lab/pytopas](https://github.com/tilde-lab/pytopas) -2. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1820046009) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#116](https://github.com/MDAnalysis/membrane-curvature/pull/116#issuecomment-1819997636) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) -4. 🗣 Commented on [#1014](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1014#issuecomment-1819586485) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#255](https://github.com/OpenFreeEnergy/gufe/pull/255#issuecomment-1819570285) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/privateGPT/pull/1#issuecomment-1819348300) in [tuhinmallick/privateGPT](https://github.com/tuhinmallick/privateGPT) -7. 🗣 Commented on [#647](https://github.com/OpenFreeEnergy/openfe/pull/647#issuecomment-1819167804) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#3813](https://github.com/privacyidea/privacyidea/pull/3813#issuecomment-1818508564) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/lcm-demo/pull/1#issuecomment-1818309431) in [tuhinmallick/lcm-demo](https://github.com/tuhinmallick/lcm-demo) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Ollama/pull/1#issuecomment-1818307777) in [tuhinmallick/Ollama](https://github.com/tuhinmallick/Ollama) +1. 🗣 Commented on [#14](https://github.com/tzamalisp/crossai/pull/14#issuecomment-1820680046) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +2. 🗣 Commented on [#8](https://github.com/tilde-lab/pytopas/pull/8#issuecomment-1820156951) in [tilde-lab/pytopas](https://github.com/tilde-lab/pytopas) +3. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1820046009) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +4. 🗣 Commented on [#116](https://github.com/MDAnalysis/membrane-curvature/pull/116#issuecomment-1819997636) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) +5. 🗣 Commented on [#1014](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1014#issuecomment-1819586485) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#255](https://github.com/OpenFreeEnergy/gufe/pull/255#issuecomment-1819570285) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/privateGPT/pull/1#issuecomment-1819348300) in [tuhinmallick/privateGPT](https://github.com/tuhinmallick/privateGPT) +8. 🗣 Commented on [#647](https://github.com/OpenFreeEnergy/openfe/pull/647#issuecomment-1819167804) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#3813](https://github.com/privacyidea/privacyidea/pull/3813#issuecomment-1818508564) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/lcm-demo/pull/1#issuecomment-1818309431) in [tuhinmallick/lcm-demo](https://github.com/tuhinmallick/lcm-demo) From c6cdfa31c42e478fc2dfc29fc6f27acdf35ed941 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Nov 2023 13:20:52 +0000 Subject: [PATCH 0695/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f07864ff..fdeabba5 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#14](https://github.com/tzamalisp/crossai/pull/14#issuecomment-1820680046) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -2. 🗣 Commented on [#8](https://github.com/tilde-lab/pytopas/pull/8#issuecomment-1820156951) in [tilde-lab/pytopas](https://github.com/tilde-lab/pytopas) -3. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1820046009) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -4. 🗣 Commented on [#116](https://github.com/MDAnalysis/membrane-curvature/pull/116#issuecomment-1819997636) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) -5. 🗣 Commented on [#1014](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1014#issuecomment-1819586485) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#255](https://github.com/OpenFreeEnergy/gufe/pull/255#issuecomment-1819570285) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/privateGPT/pull/1#issuecomment-1819348300) in [tuhinmallick/privateGPT](https://github.com/tuhinmallick/privateGPT) -8. 🗣 Commented on [#647](https://github.com/OpenFreeEnergy/openfe/pull/647#issuecomment-1819167804) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#3813](https://github.com/privacyidea/privacyidea/pull/3813#issuecomment-1818508564) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/lcm-demo/pull/1#issuecomment-1818309431) in [tuhinmallick/lcm-demo](https://github.com/tuhinmallick/lcm-demo) +1. 🗣 Commented on [#52](https://github.com/eastgenomics/eris/pull/52#issuecomment-1820855056) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#14](https://github.com/tzamalisp/crossai/pull/14#issuecomment-1820680046) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +3. 🗣 Commented on [#8](https://github.com/tilde-lab/pytopas/pull/8#issuecomment-1820156951) in [tilde-lab/pytopas](https://github.com/tilde-lab/pytopas) +4. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1820046009) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#116](https://github.com/MDAnalysis/membrane-curvature/pull/116#issuecomment-1819997636) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) +6. 🗣 Commented on [#1014](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1014#issuecomment-1819586485) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#255](https://github.com/OpenFreeEnergy/gufe/pull/255#issuecomment-1819570285) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/privateGPT/pull/1#issuecomment-1819348300) in [tuhinmallick/privateGPT](https://github.com/tuhinmallick/privateGPT) +9. 🗣 Commented on [#647](https://github.com/OpenFreeEnergy/openfe/pull/647#issuecomment-1819167804) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#3813](https://github.com/privacyidea/privacyidea/pull/3813#issuecomment-1818508564) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From edb3e7e8aeede286aab42bc69812fdf5e83bfa77 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Nov 2023 14:15:59 +0000 Subject: [PATCH 0696/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fdeabba5..3bf10c02 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#52](https://github.com/eastgenomics/eris/pull/52#issuecomment-1820855056) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#14](https://github.com/tzamalisp/crossai/pull/14#issuecomment-1820680046) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -3. 🗣 Commented on [#8](https://github.com/tilde-lab/pytopas/pull/8#issuecomment-1820156951) in [tilde-lab/pytopas](https://github.com/tilde-lab/pytopas) -4. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1820046009) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#116](https://github.com/MDAnalysis/membrane-curvature/pull/116#issuecomment-1819997636) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) -6. 🗣 Commented on [#1014](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1014#issuecomment-1819586485) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#255](https://github.com/OpenFreeEnergy/gufe/pull/255#issuecomment-1819570285) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/privateGPT/pull/1#issuecomment-1819348300) in [tuhinmallick/privateGPT](https://github.com/tuhinmallick/privateGPT) -9. 🗣 Commented on [#647](https://github.com/OpenFreeEnergy/openfe/pull/647#issuecomment-1819167804) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#3813](https://github.com/privacyidea/privacyidea/pull/3813#issuecomment-1818508564) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#9](https://github.com/eastgenomics/optimised_filtering/pull/9#issuecomment-1820972459) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +2. 🗣 Commented on [#7](https://github.com/eastgenomics/optimised_filtering/pull/7#issuecomment-1820966521) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +3. 🗣 Commented on [#52](https://github.com/eastgenomics/eris/pull/52#issuecomment-1820855056) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#14](https://github.com/tzamalisp/crossai/pull/14#issuecomment-1820680046) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +5. 🗣 Commented on [#8](https://github.com/tilde-lab/pytopas/pull/8#issuecomment-1820156951) in [tilde-lab/pytopas](https://github.com/tilde-lab/pytopas) +6. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1820046009) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +7. 🗣 Commented on [#116](https://github.com/MDAnalysis/membrane-curvature/pull/116#issuecomment-1819997636) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) +8. 🗣 Commented on [#1014](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1014#issuecomment-1819586485) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#255](https://github.com/OpenFreeEnergy/gufe/pull/255#issuecomment-1819570285) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/privateGPT/pull/1#issuecomment-1819348300) in [tuhinmallick/privateGPT](https://github.com/tuhinmallick/privateGPT) From 4082c6e32797185e07b1445a09b57af2a98350d0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Nov 2023 15:17:19 +0000 Subject: [PATCH 0697/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3bf10c02..1feb0ca6 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#9](https://github.com/eastgenomics/optimised_filtering/pull/9#issuecomment-1820972459) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -2. 🗣 Commented on [#7](https://github.com/eastgenomics/optimised_filtering/pull/7#issuecomment-1820966521) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -3. 🗣 Commented on [#52](https://github.com/eastgenomics/eris/pull/52#issuecomment-1820855056) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#14](https://github.com/tzamalisp/crossai/pull/14#issuecomment-1820680046) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -5. 🗣 Commented on [#8](https://github.com/tilde-lab/pytopas/pull/8#issuecomment-1820156951) in [tilde-lab/pytopas](https://github.com/tilde-lab/pytopas) -6. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1820046009) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -7. 🗣 Commented on [#116](https://github.com/MDAnalysis/membrane-curvature/pull/116#issuecomment-1819997636) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) -8. 🗣 Commented on [#1014](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1014#issuecomment-1819586485) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#255](https://github.com/OpenFreeEnergy/gufe/pull/255#issuecomment-1819570285) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/privateGPT/pull/1#issuecomment-1819348300) in [tuhinmallick/privateGPT](https://github.com/tuhinmallick/privateGPT) +1. 🗣 Commented on [#953](https://github.com/WesternFriend/WF-website/pull/953#issuecomment-1821050429) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +2. 🗣 Commented on [#9](https://github.com/eastgenomics/optimised_filtering/pull/9#issuecomment-1820972459) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +3. 🗣 Commented on [#7](https://github.com/eastgenomics/optimised_filtering/pull/7#issuecomment-1820966521) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +4. 🗣 Commented on [#52](https://github.com/eastgenomics/eris/pull/52#issuecomment-1820855056) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#14](https://github.com/tzamalisp/crossai/pull/14#issuecomment-1820680046) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +6. 🗣 Commented on [#8](https://github.com/tilde-lab/pytopas/pull/8#issuecomment-1820156951) in [tilde-lab/pytopas](https://github.com/tilde-lab/pytopas) +7. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1820046009) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +8. 🗣 Commented on [#116](https://github.com/MDAnalysis/membrane-curvature/pull/116#issuecomment-1819997636) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) +9. 🗣 Commented on [#1014](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1014#issuecomment-1819586485) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#255](https://github.com/OpenFreeEnergy/gufe/pull/255#issuecomment-1819570285) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From d0d32264be8aee4a39dde75bec369f7e29b447a6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Nov 2023 16:23:10 +0000 Subject: [PATCH 0698/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1feb0ca6..6e94f7ae 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#953](https://github.com/WesternFriend/WF-website/pull/953#issuecomment-1821050429) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -2. 🗣 Commented on [#9](https://github.com/eastgenomics/optimised_filtering/pull/9#issuecomment-1820972459) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -3. 🗣 Commented on [#7](https://github.com/eastgenomics/optimised_filtering/pull/7#issuecomment-1820966521) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -4. 🗣 Commented on [#52](https://github.com/eastgenomics/eris/pull/52#issuecomment-1820855056) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#14](https://github.com/tzamalisp/crossai/pull/14#issuecomment-1820680046) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -6. 🗣 Commented on [#8](https://github.com/tilde-lab/pytopas/pull/8#issuecomment-1820156951) in [tilde-lab/pytopas](https://github.com/tilde-lab/pytopas) -7. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1820046009) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -8. 🗣 Commented on [#116](https://github.com/MDAnalysis/membrane-curvature/pull/116#issuecomment-1819997636) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) -9. 🗣 Commented on [#1014](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1014#issuecomment-1819586485) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#255](https://github.com/OpenFreeEnergy/gufe/pull/255#issuecomment-1819570285) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#53](https://github.com/eastgenomics/eris/pull/53#issuecomment-1821184987) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#787](https://github.com/scilus/scilpy/pull/787#issuecomment-1821160321) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#953](https://github.com/WesternFriend/WF-website/pull/953#issuecomment-1821050429) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +4. 🗣 Commented on [#9](https://github.com/eastgenomics/optimised_filtering/pull/9#issuecomment-1820972459) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +5. 🗣 Commented on [#7](https://github.com/eastgenomics/optimised_filtering/pull/7#issuecomment-1820966521) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +6. 🗣 Commented on [#52](https://github.com/eastgenomics/eris/pull/52#issuecomment-1820855056) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#14](https://github.com/tzamalisp/crossai/pull/14#issuecomment-1820680046) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +8. 🗣 Commented on [#8](https://github.com/tilde-lab/pytopas/pull/8#issuecomment-1820156951) in [tilde-lab/pytopas](https://github.com/tilde-lab/pytopas) +9. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1820046009) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +10. 🗣 Commented on [#116](https://github.com/MDAnalysis/membrane-curvature/pull/116#issuecomment-1819997636) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) From 22b1568167364f6dd8d7b2fa2b7b222e45efe038 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Nov 2023 22:15:37 +0000 Subject: [PATCH 0699/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6e94f7ae..ef5170a3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#53](https://github.com/eastgenomics/eris/pull/53#issuecomment-1821184987) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#787](https://github.com/scilus/scilpy/pull/787#issuecomment-1821160321) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#953](https://github.com/WesternFriend/WF-website/pull/953#issuecomment-1821050429) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -4. 🗣 Commented on [#9](https://github.com/eastgenomics/optimised_filtering/pull/9#issuecomment-1820972459) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -5. 🗣 Commented on [#7](https://github.com/eastgenomics/optimised_filtering/pull/7#issuecomment-1820966521) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -6. 🗣 Commented on [#52](https://github.com/eastgenomics/eris/pull/52#issuecomment-1820855056) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#14](https://github.com/tzamalisp/crossai/pull/14#issuecomment-1820680046) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -8. 🗣 Commented on [#8](https://github.com/tilde-lab/pytopas/pull/8#issuecomment-1820156951) in [tilde-lab/pytopas](https://github.com/tilde-lab/pytopas) -9. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1820046009) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -10. 🗣 Commented on [#116](https://github.com/MDAnalysis/membrane-curvature/pull/116#issuecomment-1819997636) in [MDAnalysis/membrane-curvature](https://github.com/MDAnalysis/membrane-curvature) +1. 🗣 Commented on [#210](https://github.com/CartoonFan/lutris/pull/210#issuecomment-1821786549) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#53](https://github.com/eastgenomics/eris/pull/53#issuecomment-1821184987) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#787](https://github.com/scilus/scilpy/pull/787#issuecomment-1821160321) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#953](https://github.com/WesternFriend/WF-website/pull/953#issuecomment-1821050429) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +5. 🗣 Commented on [#9](https://github.com/eastgenomics/optimised_filtering/pull/9#issuecomment-1820972459) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +6. 🗣 Commented on [#7](https://github.com/eastgenomics/optimised_filtering/pull/7#issuecomment-1820966521) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +7. 🗣 Commented on [#52](https://github.com/eastgenomics/eris/pull/52#issuecomment-1820855056) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#14](https://github.com/tzamalisp/crossai/pull/14#issuecomment-1820680046) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +9. 🗣 Commented on [#8](https://github.com/tilde-lab/pytopas/pull/8#issuecomment-1820156951) in [tilde-lab/pytopas](https://github.com/tilde-lab/pytopas) +10. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1820046009) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) From e9628d36ac1a97d933290dce2301611ff2c38327 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Nov 2023 12:32:42 +0000 Subject: [PATCH 0700/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ef5170a3..1409aaf6 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#210](https://github.com/CartoonFan/lutris/pull/210#issuecomment-1821786549) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#53](https://github.com/eastgenomics/eris/pull/53#issuecomment-1821184987) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#787](https://github.com/scilus/scilpy/pull/787#issuecomment-1821160321) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#953](https://github.com/WesternFriend/WF-website/pull/953#issuecomment-1821050429) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -5. 🗣 Commented on [#9](https://github.com/eastgenomics/optimised_filtering/pull/9#issuecomment-1820972459) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -6. 🗣 Commented on [#7](https://github.com/eastgenomics/optimised_filtering/pull/7#issuecomment-1820966521) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -7. 🗣 Commented on [#52](https://github.com/eastgenomics/eris/pull/52#issuecomment-1820855056) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#14](https://github.com/tzamalisp/crossai/pull/14#issuecomment-1820680046) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -9. 🗣 Commented on [#8](https://github.com/tilde-lab/pytopas/pull/8#issuecomment-1820156951) in [tilde-lab/pytopas](https://github.com/tilde-lab/pytopas) -10. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1820046009) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +1. 🗣 Commented on [#4](https://github.com/GenevieveBuckley/micro-sam/pull/4#issuecomment-1822635961) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +2. 🗣 Commented on [#210](https://github.com/CartoonFan/lutris/pull/210#issuecomment-1821786549) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#53](https://github.com/eastgenomics/eris/pull/53#issuecomment-1821184987) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#787](https://github.com/scilus/scilpy/pull/787#issuecomment-1821160321) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#953](https://github.com/WesternFriend/WF-website/pull/953#issuecomment-1821050429) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +6. 🗣 Commented on [#9](https://github.com/eastgenomics/optimised_filtering/pull/9#issuecomment-1820972459) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +7. 🗣 Commented on [#7](https://github.com/eastgenomics/optimised_filtering/pull/7#issuecomment-1820966521) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +8. 🗣 Commented on [#52](https://github.com/eastgenomics/eris/pull/52#issuecomment-1820855056) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#14](https://github.com/tzamalisp/crossai/pull/14#issuecomment-1820680046) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +10. 🗣 Commented on [#8](https://github.com/tilde-lab/pytopas/pull/8#issuecomment-1820156951) in [tilde-lab/pytopas](https://github.com/tilde-lab/pytopas) From cbe6d42d95f88799b24483633655fa097f8a0e37 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Nov 2023 13:21:12 +0000 Subject: [PATCH 0701/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1409aaf6..4bb4e1cf 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4](https://github.com/GenevieveBuckley/micro-sam/pull/4#issuecomment-1822635961) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -2. 🗣 Commented on [#210](https://github.com/CartoonFan/lutris/pull/210#issuecomment-1821786549) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#53](https://github.com/eastgenomics/eris/pull/53#issuecomment-1821184987) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#787](https://github.com/scilus/scilpy/pull/787#issuecomment-1821160321) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#953](https://github.com/WesternFriend/WF-website/pull/953#issuecomment-1821050429) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -6. 🗣 Commented on [#9](https://github.com/eastgenomics/optimised_filtering/pull/9#issuecomment-1820972459) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -7. 🗣 Commented on [#7](https://github.com/eastgenomics/optimised_filtering/pull/7#issuecomment-1820966521) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -8. 🗣 Commented on [#52](https://github.com/eastgenomics/eris/pull/52#issuecomment-1820855056) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#14](https://github.com/tzamalisp/crossai/pull/14#issuecomment-1820680046) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -10. 🗣 Commented on [#8](https://github.com/tilde-lab/pytopas/pull/8#issuecomment-1820156951) in [tilde-lab/pytopas](https://github.com/tilde-lab/pytopas) +1. 🗣 Commented on [#55](https://github.com/eastgenomics/eris/pull/55#issuecomment-1822727797) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#54](https://github.com/eastgenomics/eris/pull/54#issuecomment-1822694980) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#4](https://github.com/GenevieveBuckley/micro-sam/pull/4#issuecomment-1822635961) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +4. 🗣 Commented on [#210](https://github.com/CartoonFan/lutris/pull/210#issuecomment-1821786549) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#53](https://github.com/eastgenomics/eris/pull/53#issuecomment-1821184987) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#787](https://github.com/scilus/scilpy/pull/787#issuecomment-1821160321) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#953](https://github.com/WesternFriend/WF-website/pull/953#issuecomment-1821050429) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +8. 🗣 Commented on [#9](https://github.com/eastgenomics/optimised_filtering/pull/9#issuecomment-1820972459) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +9. 🗣 Commented on [#7](https://github.com/eastgenomics/optimised_filtering/pull/7#issuecomment-1820966521) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +10. 🗣 Commented on [#52](https://github.com/eastgenomics/eris/pull/52#issuecomment-1820855056) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From c362adf7035d9215764ac9a1ed7d3dfe5ac4f895 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Nov 2023 15:16:47 +0000 Subject: [PATCH 0702/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4bb4e1cf..048c469c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#55](https://github.com/eastgenomics/eris/pull/55#issuecomment-1822727797) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#54](https://github.com/eastgenomics/eris/pull/54#issuecomment-1822694980) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#4](https://github.com/GenevieveBuckley/micro-sam/pull/4#issuecomment-1822635961) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -4. 🗣 Commented on [#210](https://github.com/CartoonFan/lutris/pull/210#issuecomment-1821786549) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#53](https://github.com/eastgenomics/eris/pull/53#issuecomment-1821184987) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#787](https://github.com/scilus/scilpy/pull/787#issuecomment-1821160321) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#953](https://github.com/WesternFriend/WF-website/pull/953#issuecomment-1821050429) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -8. 🗣 Commented on [#9](https://github.com/eastgenomics/optimised_filtering/pull/9#issuecomment-1820972459) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -9. 🗣 Commented on [#7](https://github.com/eastgenomics/optimised_filtering/pull/7#issuecomment-1820966521) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -10. 🗣 Commented on [#52](https://github.com/eastgenomics/eris/pull/52#issuecomment-1820855056) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#12](https://github.com/jnsebgosselin/qtapputils/pull/12#issuecomment-1822961011) in [jnsebgosselin/qtapputils](https://github.com/jnsebgosselin/qtapputils) +2. 🗣 Commented on [#55](https://github.com/eastgenomics/eris/pull/55#issuecomment-1822727797) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#54](https://github.com/eastgenomics/eris/pull/54#issuecomment-1822694980) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#4](https://github.com/GenevieveBuckley/micro-sam/pull/4#issuecomment-1822635961) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +5. 🗣 Commented on [#210](https://github.com/CartoonFan/lutris/pull/210#issuecomment-1821786549) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#53](https://github.com/eastgenomics/eris/pull/53#issuecomment-1821184987) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#787](https://github.com/scilus/scilpy/pull/787#issuecomment-1821160321) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#953](https://github.com/WesternFriend/WF-website/pull/953#issuecomment-1821050429) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +9. 🗣 Commented on [#9](https://github.com/eastgenomics/optimised_filtering/pull/9#issuecomment-1820972459) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +10. 🗣 Commented on [#7](https://github.com/eastgenomics/optimised_filtering/pull/7#issuecomment-1820966521) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) From 5992de25f6ea3a5ef66b0f7be39f58cb540a859b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Nov 2023 17:15:24 +0000 Subject: [PATCH 0703/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 048c469c..3d3d4936 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#12](https://github.com/jnsebgosselin/qtapputils/pull/12#issuecomment-1822961011) in [jnsebgosselin/qtapputils](https://github.com/jnsebgosselin/qtapputils) -2. 🗣 Commented on [#55](https://github.com/eastgenomics/eris/pull/55#issuecomment-1822727797) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#54](https://github.com/eastgenomics/eris/pull/54#issuecomment-1822694980) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#4](https://github.com/GenevieveBuckley/micro-sam/pull/4#issuecomment-1822635961) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -5. 🗣 Commented on [#210](https://github.com/CartoonFan/lutris/pull/210#issuecomment-1821786549) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#53](https://github.com/eastgenomics/eris/pull/53#issuecomment-1821184987) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#787](https://github.com/scilus/scilpy/pull/787#issuecomment-1821160321) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#953](https://github.com/WesternFriend/WF-website/pull/953#issuecomment-1821050429) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -9. 🗣 Commented on [#9](https://github.com/eastgenomics/optimised_filtering/pull/9#issuecomment-1820972459) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) -10. 🗣 Commented on [#7](https://github.com/eastgenomics/optimised_filtering/pull/7#issuecomment-1820966521) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +1. 🗣 Commented on [#2](https://github.com/Code-Institute-Solutions/blog/pull/2#issuecomment-1823173064) in [Code-Institute-Solutions/blog](https://github.com/Code-Institute-Solutions/blog) +2. 🗣 Commented on [#12](https://github.com/jnsebgosselin/qtapputils/pull/12#issuecomment-1822961011) in [jnsebgosselin/qtapputils](https://github.com/jnsebgosselin/qtapputils) +3. 🗣 Commented on [#55](https://github.com/eastgenomics/eris/pull/55#issuecomment-1822727797) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#54](https://github.com/eastgenomics/eris/pull/54#issuecomment-1822694980) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#4](https://github.com/GenevieveBuckley/micro-sam/pull/4#issuecomment-1822635961) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +6. 🗣 Commented on [#210](https://github.com/CartoonFan/lutris/pull/210#issuecomment-1821786549) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#53](https://github.com/eastgenomics/eris/pull/53#issuecomment-1821184987) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#787](https://github.com/scilus/scilpy/pull/787#issuecomment-1821160321) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#953](https://github.com/WesternFriend/WF-website/pull/953#issuecomment-1821050429) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) +10. 🗣 Commented on [#9](https://github.com/eastgenomics/optimised_filtering/pull/9#issuecomment-1820972459) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) From b7699e76d6b5709bc73a1154a12fb78bb5943dfc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Nov 2023 18:20:59 +0000 Subject: [PATCH 0704/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3d3d4936..91a229c8 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2](https://github.com/Code-Institute-Solutions/blog/pull/2#issuecomment-1823173064) in [Code-Institute-Solutions/blog](https://github.com/Code-Institute-Solutions/blog) -2. 🗣 Commented on [#12](https://github.com/jnsebgosselin/qtapputils/pull/12#issuecomment-1822961011) in [jnsebgosselin/qtapputils](https://github.com/jnsebgosselin/qtapputils) -3. 🗣 Commented on [#55](https://github.com/eastgenomics/eris/pull/55#issuecomment-1822727797) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#54](https://github.com/eastgenomics/eris/pull/54#issuecomment-1822694980) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#4](https://github.com/GenevieveBuckley/micro-sam/pull/4#issuecomment-1822635961) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -6. 🗣 Commented on [#210](https://github.com/CartoonFan/lutris/pull/210#issuecomment-1821786549) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#53](https://github.com/eastgenomics/eris/pull/53#issuecomment-1821184987) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#787](https://github.com/scilus/scilpy/pull/787#issuecomment-1821160321) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#953](https://github.com/WesternFriend/WF-website/pull/953#issuecomment-1821050429) in [WesternFriend/WF-website](https://github.com/WesternFriend/WF-website) -10. 🗣 Commented on [#9](https://github.com/eastgenomics/optimised_filtering/pull/9#issuecomment-1820972459) in [eastgenomics/optimised_filtering](https://github.com/eastgenomics/optimised_filtering) +1. 🗣 Commented on [#8](https://github.com/Richard-Sti/DMprofile/pull/8#issuecomment-1823236167) in [Richard-Sti/DMprofile](https://github.com/Richard-Sti/DMprofile) +2. 🗣 Commented on [#140](https://github.com/eastgenomics/dias_batch_running/pull/140#issuecomment-1823221452) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#2](https://github.com/Code-Institute-Solutions/blog/pull/2#issuecomment-1823173064) in [Code-Institute-Solutions/blog](https://github.com/Code-Institute-Solutions/blog) +4. 🗣 Commented on [#12](https://github.com/jnsebgosselin/qtapputils/pull/12#issuecomment-1822961011) in [jnsebgosselin/qtapputils](https://github.com/jnsebgosselin/qtapputils) +5. 🗣 Commented on [#55](https://github.com/eastgenomics/eris/pull/55#issuecomment-1822727797) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#54](https://github.com/eastgenomics/eris/pull/54#issuecomment-1822694980) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#4](https://github.com/GenevieveBuckley/micro-sam/pull/4#issuecomment-1822635961) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +8. 🗣 Commented on [#210](https://github.com/CartoonFan/lutris/pull/210#issuecomment-1821786549) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#53](https://github.com/eastgenomics/eris/pull/53#issuecomment-1821184987) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#787](https://github.com/scilus/scilpy/pull/787#issuecomment-1821160321) in [scilus/scilpy](https://github.com/scilus/scilpy) From 4f1b3c8ce344fe4400af8bd4f2b145acbae6c908 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Nov 2023 23:16:16 +0000 Subject: [PATCH 0705/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 91a229c8..0487d238 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#8](https://github.com/Richard-Sti/DMprofile/pull/8#issuecomment-1823236167) in [Richard-Sti/DMprofile](https://github.com/Richard-Sti/DMprofile) -2. 🗣 Commented on [#140](https://github.com/eastgenomics/dias_batch_running/pull/140#issuecomment-1823221452) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#2](https://github.com/Code-Institute-Solutions/blog/pull/2#issuecomment-1823173064) in [Code-Institute-Solutions/blog](https://github.com/Code-Institute-Solutions/blog) -4. 🗣 Commented on [#12](https://github.com/jnsebgosselin/qtapputils/pull/12#issuecomment-1822961011) in [jnsebgosselin/qtapputils](https://github.com/jnsebgosselin/qtapputils) -5. 🗣 Commented on [#55](https://github.com/eastgenomics/eris/pull/55#issuecomment-1822727797) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#54](https://github.com/eastgenomics/eris/pull/54#issuecomment-1822694980) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#4](https://github.com/GenevieveBuckley/micro-sam/pull/4#issuecomment-1822635961) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -8. 🗣 Commented on [#210](https://github.com/CartoonFan/lutris/pull/210#issuecomment-1821786549) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#53](https://github.com/eastgenomics/eris/pull/53#issuecomment-1821184987) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#787](https://github.com/scilus/scilpy/pull/787#issuecomment-1821160321) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#252](https://github.com/Sage-Bionetworks/challengeutils/pull/252#issuecomment-1823596906) in [Sage-Bionetworks/challengeutils](https://github.com/Sage-Bionetworks/challengeutils) +2. 🗣 Commented on [#8](https://github.com/Richard-Sti/DMprofile/pull/8#issuecomment-1823236167) in [Richard-Sti/DMprofile](https://github.com/Richard-Sti/DMprofile) +3. 🗣 Commented on [#140](https://github.com/eastgenomics/dias_batch_running/pull/140#issuecomment-1823221452) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +4. 🗣 Commented on [#2](https://github.com/Code-Institute-Solutions/blog/pull/2#issuecomment-1823173064) in [Code-Institute-Solutions/blog](https://github.com/Code-Institute-Solutions/blog) +5. 🗣 Commented on [#12](https://github.com/jnsebgosselin/qtapputils/pull/12#issuecomment-1822961011) in [jnsebgosselin/qtapputils](https://github.com/jnsebgosselin/qtapputils) +6. 🗣 Commented on [#55](https://github.com/eastgenomics/eris/pull/55#issuecomment-1822727797) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#54](https://github.com/eastgenomics/eris/pull/54#issuecomment-1822694980) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#4](https://github.com/GenevieveBuckley/micro-sam/pull/4#issuecomment-1822635961) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +9. 🗣 Commented on [#210](https://github.com/CartoonFan/lutris/pull/210#issuecomment-1821786549) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#53](https://github.com/eastgenomics/eris/pull/53#issuecomment-1821184987) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From e66ffa769c1f3fcc19ca4d6b1e228810f77ba9c3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Nov 2023 01:13:16 +0000 Subject: [PATCH 0706/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0487d238..3ff557c4 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#252](https://github.com/Sage-Bionetworks/challengeutils/pull/252#issuecomment-1823596906) in [Sage-Bionetworks/challengeutils](https://github.com/Sage-Bionetworks/challengeutils) -2. 🗣 Commented on [#8](https://github.com/Richard-Sti/DMprofile/pull/8#issuecomment-1823236167) in [Richard-Sti/DMprofile](https://github.com/Richard-Sti/DMprofile) -3. 🗣 Commented on [#140](https://github.com/eastgenomics/dias_batch_running/pull/140#issuecomment-1823221452) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -4. 🗣 Commented on [#2](https://github.com/Code-Institute-Solutions/blog/pull/2#issuecomment-1823173064) in [Code-Institute-Solutions/blog](https://github.com/Code-Institute-Solutions/blog) -5. 🗣 Commented on [#12](https://github.com/jnsebgosselin/qtapputils/pull/12#issuecomment-1822961011) in [jnsebgosselin/qtapputils](https://github.com/jnsebgosselin/qtapputils) -6. 🗣 Commented on [#55](https://github.com/eastgenomics/eris/pull/55#issuecomment-1822727797) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#54](https://github.com/eastgenomics/eris/pull/54#issuecomment-1822694980) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#4](https://github.com/GenevieveBuckley/micro-sam/pull/4#issuecomment-1822635961) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -9. 🗣 Commented on [#210](https://github.com/CartoonFan/lutris/pull/210#issuecomment-1821786549) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#53](https://github.com/eastgenomics/eris/pull/53#issuecomment-1821184987) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1823713952) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#252](https://github.com/Sage-Bionetworks/challengeutils/pull/252#issuecomment-1823596906) in [Sage-Bionetworks/challengeutils](https://github.com/Sage-Bionetworks/challengeutils) +3. 🗣 Commented on [#8](https://github.com/Richard-Sti/DMprofile/pull/8#issuecomment-1823236167) in [Richard-Sti/DMprofile](https://github.com/Richard-Sti/DMprofile) +4. 🗣 Commented on [#140](https://github.com/eastgenomics/dias_batch_running/pull/140#issuecomment-1823221452) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#2](https://github.com/Code-Institute-Solutions/blog/pull/2#issuecomment-1823173064) in [Code-Institute-Solutions/blog](https://github.com/Code-Institute-Solutions/blog) +6. 🗣 Commented on [#12](https://github.com/jnsebgosselin/qtapputils/pull/12#issuecomment-1822961011) in [jnsebgosselin/qtapputils](https://github.com/jnsebgosselin/qtapputils) +7. 🗣 Commented on [#55](https://github.com/eastgenomics/eris/pull/55#issuecomment-1822727797) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#54](https://github.com/eastgenomics/eris/pull/54#issuecomment-1822694980) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#4](https://github.com/GenevieveBuckley/micro-sam/pull/4#issuecomment-1822635961) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +10. 🗣 Commented on [#210](https://github.com/CartoonFan/lutris/pull/210#issuecomment-1821786549) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From dbab0d761b97a9f0a042144d8d71be577904e5f7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Nov 2023 07:37:21 +0000 Subject: [PATCH 0707/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3ff557c4..10ddb7db 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1823713952) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#252](https://github.com/Sage-Bionetworks/challengeutils/pull/252#issuecomment-1823596906) in [Sage-Bionetworks/challengeutils](https://github.com/Sage-Bionetworks/challengeutils) -3. 🗣 Commented on [#8](https://github.com/Richard-Sti/DMprofile/pull/8#issuecomment-1823236167) in [Richard-Sti/DMprofile](https://github.com/Richard-Sti/DMprofile) -4. 🗣 Commented on [#140](https://github.com/eastgenomics/dias_batch_running/pull/140#issuecomment-1823221452) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#2](https://github.com/Code-Institute-Solutions/blog/pull/2#issuecomment-1823173064) in [Code-Institute-Solutions/blog](https://github.com/Code-Institute-Solutions/blog) -6. 🗣 Commented on [#12](https://github.com/jnsebgosselin/qtapputils/pull/12#issuecomment-1822961011) in [jnsebgosselin/qtapputils](https://github.com/jnsebgosselin/qtapputils) -7. 🗣 Commented on [#55](https://github.com/eastgenomics/eris/pull/55#issuecomment-1822727797) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#54](https://github.com/eastgenomics/eris/pull/54#issuecomment-1822694980) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#4](https://github.com/GenevieveBuckley/micro-sam/pull/4#issuecomment-1822635961) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -10. 🗣 Commented on [#210](https://github.com/CartoonFan/lutris/pull/210#issuecomment-1821786549) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#5339](https://github.com/rhinstaller/anaconda/pull/5339#issuecomment-1823914284) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1823713952) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#252](https://github.com/Sage-Bionetworks/challengeutils/pull/252#issuecomment-1823596906) in [Sage-Bionetworks/challengeutils](https://github.com/Sage-Bionetworks/challengeutils) +4. 🗣 Commented on [#8](https://github.com/Richard-Sti/DMprofile/pull/8#issuecomment-1823236167) in [Richard-Sti/DMprofile](https://github.com/Richard-Sti/DMprofile) +5. 🗣 Commented on [#140](https://github.com/eastgenomics/dias_batch_running/pull/140#issuecomment-1823221452) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#2](https://github.com/Code-Institute-Solutions/blog/pull/2#issuecomment-1823173064) in [Code-Institute-Solutions/blog](https://github.com/Code-Institute-Solutions/blog) +7. 🗣 Commented on [#12](https://github.com/jnsebgosselin/qtapputils/pull/12#issuecomment-1822961011) in [jnsebgosselin/qtapputils](https://github.com/jnsebgosselin/qtapputils) +8. 🗣 Commented on [#55](https://github.com/eastgenomics/eris/pull/55#issuecomment-1822727797) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#54](https://github.com/eastgenomics/eris/pull/54#issuecomment-1822694980) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#4](https://github.com/GenevieveBuckley/micro-sam/pull/4#issuecomment-1822635961) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) From 14ce0b5afe029b13c00125de0593c33a50af5235 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Nov 2023 11:13:29 +0000 Subject: [PATCH 0708/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 10ddb7db..c370b35d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5339](https://github.com/rhinstaller/anaconda/pull/5339#issuecomment-1823914284) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1823713952) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#252](https://github.com/Sage-Bionetworks/challengeutils/pull/252#issuecomment-1823596906) in [Sage-Bionetworks/challengeutils](https://github.com/Sage-Bionetworks/challengeutils) -4. 🗣 Commented on [#8](https://github.com/Richard-Sti/DMprofile/pull/8#issuecomment-1823236167) in [Richard-Sti/DMprofile](https://github.com/Richard-Sti/DMprofile) -5. 🗣 Commented on [#140](https://github.com/eastgenomics/dias_batch_running/pull/140#issuecomment-1823221452) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#2](https://github.com/Code-Institute-Solutions/blog/pull/2#issuecomment-1823173064) in [Code-Institute-Solutions/blog](https://github.com/Code-Institute-Solutions/blog) -7. 🗣 Commented on [#12](https://github.com/jnsebgosselin/qtapputils/pull/12#issuecomment-1822961011) in [jnsebgosselin/qtapputils](https://github.com/jnsebgosselin/qtapputils) -8. 🗣 Commented on [#55](https://github.com/eastgenomics/eris/pull/55#issuecomment-1822727797) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#54](https://github.com/eastgenomics/eris/pull/54#issuecomment-1822694980) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#4](https://github.com/GenevieveBuckley/micro-sam/pull/4#issuecomment-1822635961) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +1. 🗣 Commented on [#16](https://github.com/tzamalisp/crossai/pull/16#issuecomment-1824195283) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +2. 🗣 Commented on [#5339](https://github.com/rhinstaller/anaconda/pull/5339#issuecomment-1823914284) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1823713952) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +4. 🗣 Commented on [#252](https://github.com/Sage-Bionetworks/challengeutils/pull/252#issuecomment-1823596906) in [Sage-Bionetworks/challengeutils](https://github.com/Sage-Bionetworks/challengeutils) +5. 🗣 Commented on [#8](https://github.com/Richard-Sti/DMprofile/pull/8#issuecomment-1823236167) in [Richard-Sti/DMprofile](https://github.com/Richard-Sti/DMprofile) +6. 🗣 Commented on [#140](https://github.com/eastgenomics/dias_batch_running/pull/140#issuecomment-1823221452) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#2](https://github.com/Code-Institute-Solutions/blog/pull/2#issuecomment-1823173064) in [Code-Institute-Solutions/blog](https://github.com/Code-Institute-Solutions/blog) +8. 🗣 Commented on [#12](https://github.com/jnsebgosselin/qtapputils/pull/12#issuecomment-1822961011) in [jnsebgosselin/qtapputils](https://github.com/jnsebgosselin/qtapputils) +9. 🗣 Commented on [#55](https://github.com/eastgenomics/eris/pull/55#issuecomment-1822727797) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#54](https://github.com/eastgenomics/eris/pull/54#issuecomment-1822694980) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 705627073b1827a7c73abb61f997cdb660062c75 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Nov 2023 12:32:02 +0000 Subject: [PATCH 0709/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c370b35d..ac913399 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#16](https://github.com/tzamalisp/crossai/pull/16#issuecomment-1824195283) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -2. 🗣 Commented on [#5339](https://github.com/rhinstaller/anaconda/pull/5339#issuecomment-1823914284) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1823713952) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -4. 🗣 Commented on [#252](https://github.com/Sage-Bionetworks/challengeutils/pull/252#issuecomment-1823596906) in [Sage-Bionetworks/challengeutils](https://github.com/Sage-Bionetworks/challengeutils) -5. 🗣 Commented on [#8](https://github.com/Richard-Sti/DMprofile/pull/8#issuecomment-1823236167) in [Richard-Sti/DMprofile](https://github.com/Richard-Sti/DMprofile) -6. 🗣 Commented on [#140](https://github.com/eastgenomics/dias_batch_running/pull/140#issuecomment-1823221452) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#2](https://github.com/Code-Institute-Solutions/blog/pull/2#issuecomment-1823173064) in [Code-Institute-Solutions/blog](https://github.com/Code-Institute-Solutions/blog) -8. 🗣 Commented on [#12](https://github.com/jnsebgosselin/qtapputils/pull/12#issuecomment-1822961011) in [jnsebgosselin/qtapputils](https://github.com/jnsebgosselin/qtapputils) -9. 🗣 Commented on [#55](https://github.com/eastgenomics/eris/pull/55#issuecomment-1822727797) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#54](https://github.com/eastgenomics/eris/pull/54#issuecomment-1822694980) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#42](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/42#issuecomment-1824278074) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +2. 🗣 Commented on [#16](https://github.com/tzamalisp/crossai/pull/16#issuecomment-1824195283) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +3. 🗣 Commented on [#5339](https://github.com/rhinstaller/anaconda/pull/5339#issuecomment-1823914284) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1823713952) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#252](https://github.com/Sage-Bionetworks/challengeutils/pull/252#issuecomment-1823596906) in [Sage-Bionetworks/challengeutils](https://github.com/Sage-Bionetworks/challengeutils) +6. 🗣 Commented on [#8](https://github.com/Richard-Sti/DMprofile/pull/8#issuecomment-1823236167) in [Richard-Sti/DMprofile](https://github.com/Richard-Sti/DMprofile) +7. 🗣 Commented on [#140](https://github.com/eastgenomics/dias_batch_running/pull/140#issuecomment-1823221452) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#2](https://github.com/Code-Institute-Solutions/blog/pull/2#issuecomment-1823173064) in [Code-Institute-Solutions/blog](https://github.com/Code-Institute-Solutions/blog) +9. 🗣 Commented on [#12](https://github.com/jnsebgosselin/qtapputils/pull/12#issuecomment-1822961011) in [jnsebgosselin/qtapputils](https://github.com/jnsebgosselin/qtapputils) +10. 🗣 Commented on [#55](https://github.com/eastgenomics/eris/pull/55#issuecomment-1822727797) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From d5ca242b0706febcc7948d29e93d98c48c97e0bc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Nov 2023 13:20:29 +0000 Subject: [PATCH 0710/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ac913399..42f14c8c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#42](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/42#issuecomment-1824278074) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) -2. 🗣 Commented on [#16](https://github.com/tzamalisp/crossai/pull/16#issuecomment-1824195283) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -3. 🗣 Commented on [#5339](https://github.com/rhinstaller/anaconda/pull/5339#issuecomment-1823914284) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1823713952) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#252](https://github.com/Sage-Bionetworks/challengeutils/pull/252#issuecomment-1823596906) in [Sage-Bionetworks/challengeutils](https://github.com/Sage-Bionetworks/challengeutils) -6. 🗣 Commented on [#8](https://github.com/Richard-Sti/DMprofile/pull/8#issuecomment-1823236167) in [Richard-Sti/DMprofile](https://github.com/Richard-Sti/DMprofile) -7. 🗣 Commented on [#140](https://github.com/eastgenomics/dias_batch_running/pull/140#issuecomment-1823221452) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#2](https://github.com/Code-Institute-Solutions/blog/pull/2#issuecomment-1823173064) in [Code-Institute-Solutions/blog](https://github.com/Code-Institute-Solutions/blog) -9. 🗣 Commented on [#12](https://github.com/jnsebgosselin/qtapputils/pull/12#issuecomment-1822961011) in [jnsebgosselin/qtapputils](https://github.com/jnsebgosselin/qtapputils) -10. 🗣 Commented on [#55](https://github.com/eastgenomics/eris/pull/55#issuecomment-1822727797) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#939](https://github.com/avaframe/AvaFrame/pull/939#issuecomment-1824372976) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#42](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/42#issuecomment-1824278074) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +3. 🗣 Commented on [#16](https://github.com/tzamalisp/crossai/pull/16#issuecomment-1824195283) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +4. 🗣 Commented on [#5339](https://github.com/rhinstaller/anaconda/pull/5339#issuecomment-1823914284) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1823713952) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +6. 🗣 Commented on [#252](https://github.com/Sage-Bionetworks/challengeutils/pull/252#issuecomment-1823596906) in [Sage-Bionetworks/challengeutils](https://github.com/Sage-Bionetworks/challengeutils) +7. 🗣 Commented on [#8](https://github.com/Richard-Sti/DMprofile/pull/8#issuecomment-1823236167) in [Richard-Sti/DMprofile](https://github.com/Richard-Sti/DMprofile) +8. 🗣 Commented on [#140](https://github.com/eastgenomics/dias_batch_running/pull/140#issuecomment-1823221452) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#2](https://github.com/Code-Institute-Solutions/blog/pull/2#issuecomment-1823173064) in [Code-Institute-Solutions/blog](https://github.com/Code-Institute-Solutions/blog) +10. 🗣 Commented on [#12](https://github.com/jnsebgosselin/qtapputils/pull/12#issuecomment-1822961011) in [jnsebgosselin/qtapputils](https://github.com/jnsebgosselin/qtapputils) From 133af2d8be19889d4a6823e9fd9af0ffbcff7266 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Nov 2023 14:37:11 +0000 Subject: [PATCH 0711/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 42f14c8c..92b91ce8 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#939](https://github.com/avaframe/AvaFrame/pull/939#issuecomment-1824372976) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#42](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/42#issuecomment-1824278074) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) -3. 🗣 Commented on [#16](https://github.com/tzamalisp/crossai/pull/16#issuecomment-1824195283) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -4. 🗣 Commented on [#5339](https://github.com/rhinstaller/anaconda/pull/5339#issuecomment-1823914284) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1823713952) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -6. 🗣 Commented on [#252](https://github.com/Sage-Bionetworks/challengeutils/pull/252#issuecomment-1823596906) in [Sage-Bionetworks/challengeutils](https://github.com/Sage-Bionetworks/challengeutils) -7. 🗣 Commented on [#8](https://github.com/Richard-Sti/DMprofile/pull/8#issuecomment-1823236167) in [Richard-Sti/DMprofile](https://github.com/Richard-Sti/DMprofile) -8. 🗣 Commented on [#140](https://github.com/eastgenomics/dias_batch_running/pull/140#issuecomment-1823221452) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#2](https://github.com/Code-Institute-Solutions/blog/pull/2#issuecomment-1823173064) in [Code-Institute-Solutions/blog](https://github.com/Code-Institute-Solutions/blog) -10. 🗣 Commented on [#12](https://github.com/jnsebgosselin/qtapputils/pull/12#issuecomment-1822961011) in [jnsebgosselin/qtapputils](https://github.com/jnsebgosselin/qtapputils) +1. 🗣 Commented on [#1409](https://github.com/rpm-software-management/ci-dnf-stack/pull/1409#issuecomment-1824533470) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +2. 🗣 Commented on [#5342](https://github.com/rhinstaller/anaconda/pull/5342#issuecomment-1824510651) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#1408](https://github.com/rpm-software-management/ci-dnf-stack/pull/1408#issuecomment-1824510136) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +4. 🗣 Commented on [#939](https://github.com/avaframe/AvaFrame/pull/939#issuecomment-1824372976) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#42](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/42#issuecomment-1824278074) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +6. 🗣 Commented on [#16](https://github.com/tzamalisp/crossai/pull/16#issuecomment-1824195283) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +7. 🗣 Commented on [#5339](https://github.com/rhinstaller/anaconda/pull/5339#issuecomment-1823914284) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1823713952) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +9. 🗣 Commented on [#252](https://github.com/Sage-Bionetworks/challengeutils/pull/252#issuecomment-1823596906) in [Sage-Bionetworks/challengeutils](https://github.com/Sage-Bionetworks/challengeutils) +10. 🗣 Commented on [#8](https://github.com/Richard-Sti/DMprofile/pull/8#issuecomment-1823236167) in [Richard-Sti/DMprofile](https://github.com/Richard-Sti/DMprofile) From 038d13c15cbba39c8db1bbfa6bd856f1ede5bb5d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Nov 2023 16:21:09 +0000 Subject: [PATCH 0712/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 92b91ce8..627ae0fd 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1409](https://github.com/rpm-software-management/ci-dnf-stack/pull/1409#issuecomment-1824533470) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -2. 🗣 Commented on [#5342](https://github.com/rhinstaller/anaconda/pull/5342#issuecomment-1824510651) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#1408](https://github.com/rpm-software-management/ci-dnf-stack/pull/1408#issuecomment-1824510136) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -4. 🗣 Commented on [#939](https://github.com/avaframe/AvaFrame/pull/939#issuecomment-1824372976) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#42](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/42#issuecomment-1824278074) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) -6. 🗣 Commented on [#16](https://github.com/tzamalisp/crossai/pull/16#issuecomment-1824195283) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -7. 🗣 Commented on [#5339](https://github.com/rhinstaller/anaconda/pull/5339#issuecomment-1823914284) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1823713952) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -9. 🗣 Commented on [#252](https://github.com/Sage-Bionetworks/challengeutils/pull/252#issuecomment-1823596906) in [Sage-Bionetworks/challengeutils](https://github.com/Sage-Bionetworks/challengeutils) -10. 🗣 Commented on [#8](https://github.com/Richard-Sti/DMprofile/pull/8#issuecomment-1823236167) in [Richard-Sti/DMprofile](https://github.com/Richard-Sti/DMprofile) +1. 🗣 Commented on [#583](https://github.com/quark-engine/quark-engine/pull/583#issuecomment-1824657944) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Resume-Matcher/pull/1#issuecomment-1824656924) in [tuhinmallick/Resume-Matcher](https://github.com/tuhinmallick/Resume-Matcher) +3. 🗣 Commented on [#1409](https://github.com/rpm-software-management/ci-dnf-stack/pull/1409#issuecomment-1824533470) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +4. 🗣 Commented on [#5342](https://github.com/rhinstaller/anaconda/pull/5342#issuecomment-1824510651) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#1408](https://github.com/rpm-software-management/ci-dnf-stack/pull/1408#issuecomment-1824510136) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +6. 🗣 Commented on [#939](https://github.com/avaframe/AvaFrame/pull/939#issuecomment-1824372976) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#42](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/42#issuecomment-1824278074) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +8. 🗣 Commented on [#16](https://github.com/tzamalisp/crossai/pull/16#issuecomment-1824195283) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +9. 🗣 Commented on [#5339](https://github.com/rhinstaller/anaconda/pull/5339#issuecomment-1823914284) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1823713952) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) From 89b41e8920bea120b40fde8fe11c336a599f2549 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Nov 2023 19:12:45 +0000 Subject: [PATCH 0713/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 627ae0fd..40a31174 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#583](https://github.com/quark-engine/quark-engine/pull/583#issuecomment-1824657944) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Resume-Matcher/pull/1#issuecomment-1824656924) in [tuhinmallick/Resume-Matcher](https://github.com/tuhinmallick/Resume-Matcher) -3. 🗣 Commented on [#1409](https://github.com/rpm-software-management/ci-dnf-stack/pull/1409#issuecomment-1824533470) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -4. 🗣 Commented on [#5342](https://github.com/rhinstaller/anaconda/pull/5342#issuecomment-1824510651) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#1408](https://github.com/rpm-software-management/ci-dnf-stack/pull/1408#issuecomment-1824510136) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -6. 🗣 Commented on [#939](https://github.com/avaframe/AvaFrame/pull/939#issuecomment-1824372976) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#42](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/42#issuecomment-1824278074) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) -8. 🗣 Commented on [#16](https://github.com/tzamalisp/crossai/pull/16#issuecomment-1824195283) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -9. 🗣 Commented on [#5339](https://github.com/rhinstaller/anaconda/pull/5339#issuecomment-1823914284) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#584](https://github.com/HEXRD/hexrd/pull/584#issuecomment-1823713952) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +1. 🗣 Commented on [#220](https://github.com/scil-vital/dwi_ml/pull/220#issuecomment-1824821282) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +2. 🗣 Commented on [#583](https://github.com/quark-engine/quark-engine/pull/583#issuecomment-1824657944) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Resume-Matcher/pull/1#issuecomment-1824656924) in [tuhinmallick/Resume-Matcher](https://github.com/tuhinmallick/Resume-Matcher) +4. 🗣 Commented on [#1409](https://github.com/rpm-software-management/ci-dnf-stack/pull/1409#issuecomment-1824533470) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +5. 🗣 Commented on [#5342](https://github.com/rhinstaller/anaconda/pull/5342#issuecomment-1824510651) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#1408](https://github.com/rpm-software-management/ci-dnf-stack/pull/1408#issuecomment-1824510136) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +7. 🗣 Commented on [#939](https://github.com/avaframe/AvaFrame/pull/939#issuecomment-1824372976) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#42](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/42#issuecomment-1824278074) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +9. 🗣 Commented on [#16](https://github.com/tzamalisp/crossai/pull/16#issuecomment-1824195283) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +10. 🗣 Commented on [#5339](https://github.com/rhinstaller/anaconda/pull/5339#issuecomment-1823914284) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 4f81bec8ea7329a0cbe8fa398cd916b3b4f95e28 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Nov 2023 22:15:30 +0000 Subject: [PATCH 0714/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 40a31174..154b4c53 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#220](https://github.com/scil-vital/dwi_ml/pull/220#issuecomment-1824821282) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -2. 🗣 Commented on [#583](https://github.com/quark-engine/quark-engine/pull/583#issuecomment-1824657944) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Resume-Matcher/pull/1#issuecomment-1824656924) in [tuhinmallick/Resume-Matcher](https://github.com/tuhinmallick/Resume-Matcher) -4. 🗣 Commented on [#1409](https://github.com/rpm-software-management/ci-dnf-stack/pull/1409#issuecomment-1824533470) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -5. 🗣 Commented on [#5342](https://github.com/rhinstaller/anaconda/pull/5342#issuecomment-1824510651) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#1408](https://github.com/rpm-software-management/ci-dnf-stack/pull/1408#issuecomment-1824510136) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -7. 🗣 Commented on [#939](https://github.com/avaframe/AvaFrame/pull/939#issuecomment-1824372976) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#42](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/42#issuecomment-1824278074) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) -9. 🗣 Commented on [#16](https://github.com/tzamalisp/crossai/pull/16#issuecomment-1824195283) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -10. 🗣 Commented on [#5339](https://github.com/rhinstaller/anaconda/pull/5339#issuecomment-1823914284) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1824959178) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +2. 🗣 Commented on [#220](https://github.com/scil-vital/dwi_ml/pull/220#issuecomment-1824821282) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +3. 🗣 Commented on [#583](https://github.com/quark-engine/quark-engine/pull/583#issuecomment-1824657944) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Resume-Matcher/pull/1#issuecomment-1824656924) in [tuhinmallick/Resume-Matcher](https://github.com/tuhinmallick/Resume-Matcher) +5. 🗣 Commented on [#1409](https://github.com/rpm-software-management/ci-dnf-stack/pull/1409#issuecomment-1824533470) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +6. 🗣 Commented on [#5342](https://github.com/rhinstaller/anaconda/pull/5342#issuecomment-1824510651) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#1408](https://github.com/rpm-software-management/ci-dnf-stack/pull/1408#issuecomment-1824510136) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +8. 🗣 Commented on [#939](https://github.com/avaframe/AvaFrame/pull/939#issuecomment-1824372976) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#42](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/42#issuecomment-1824278074) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +10. 🗣 Commented on [#16](https://github.com/tzamalisp/crossai/pull/16#issuecomment-1824195283) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) From 12bccfa95b811cdd841a6c18ad152e661d98fd91 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 24 Nov 2023 11:13:56 +0000 Subject: [PATCH 0715/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 154b4c53..caa662e9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1824959178) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -2. 🗣 Commented on [#220](https://github.com/scil-vital/dwi_ml/pull/220#issuecomment-1824821282) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -3. 🗣 Commented on [#583](https://github.com/quark-engine/quark-engine/pull/583#issuecomment-1824657944) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Resume-Matcher/pull/1#issuecomment-1824656924) in [tuhinmallick/Resume-Matcher](https://github.com/tuhinmallick/Resume-Matcher) -5. 🗣 Commented on [#1409](https://github.com/rpm-software-management/ci-dnf-stack/pull/1409#issuecomment-1824533470) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -6. 🗣 Commented on [#5342](https://github.com/rhinstaller/anaconda/pull/5342#issuecomment-1824510651) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#1408](https://github.com/rpm-software-management/ci-dnf-stack/pull/1408#issuecomment-1824510136) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -8. 🗣 Commented on [#939](https://github.com/avaframe/AvaFrame/pull/939#issuecomment-1824372976) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#42](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/42#issuecomment-1824278074) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) -10. 🗣 Commented on [#16](https://github.com/tzamalisp/crossai/pull/16#issuecomment-1824195283) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +1. 🗣 Commented on [#80](https://github.com/ITMO-NSS-team/GAMLET/pull/80#issuecomment-1825513773) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +2. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1824959178) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +3. 🗣 Commented on [#220](https://github.com/scil-vital/dwi_ml/pull/220#issuecomment-1824821282) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +4. 🗣 Commented on [#583](https://github.com/quark-engine/quark-engine/pull/583#issuecomment-1824657944) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Resume-Matcher/pull/1#issuecomment-1824656924) in [tuhinmallick/Resume-Matcher](https://github.com/tuhinmallick/Resume-Matcher) +6. 🗣 Commented on [#1409](https://github.com/rpm-software-management/ci-dnf-stack/pull/1409#issuecomment-1824533470) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +7. 🗣 Commented on [#5342](https://github.com/rhinstaller/anaconda/pull/5342#issuecomment-1824510651) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#1408](https://github.com/rpm-software-management/ci-dnf-stack/pull/1408#issuecomment-1824510136) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +9. 🗣 Commented on [#939](https://github.com/avaframe/AvaFrame/pull/939#issuecomment-1824372976) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#42](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/42#issuecomment-1824278074) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) From dff8c5f65556a6371000f95933c90b3af379c263 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 24 Nov 2023 12:31:01 +0000 Subject: [PATCH 0716/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index caa662e9..d0722858 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#80](https://github.com/ITMO-NSS-team/GAMLET/pull/80#issuecomment-1825513773) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -2. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1824959178) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -3. 🗣 Commented on [#220](https://github.com/scil-vital/dwi_ml/pull/220#issuecomment-1824821282) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -4. 🗣 Commented on [#583](https://github.com/quark-engine/quark-engine/pull/583#issuecomment-1824657944) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Resume-Matcher/pull/1#issuecomment-1824656924) in [tuhinmallick/Resume-Matcher](https://github.com/tuhinmallick/Resume-Matcher) -6. 🗣 Commented on [#1409](https://github.com/rpm-software-management/ci-dnf-stack/pull/1409#issuecomment-1824533470) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -7. 🗣 Commented on [#5342](https://github.com/rhinstaller/anaconda/pull/5342#issuecomment-1824510651) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#1408](https://github.com/rpm-software-management/ci-dnf-stack/pull/1408#issuecomment-1824510136) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -9. 🗣 Commented on [#939](https://github.com/avaframe/AvaFrame/pull/939#issuecomment-1824372976) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#42](https://github.com/eastgenomics/egg4_dias_TWE_config/pull/42#issuecomment-1824278074) in [eastgenomics/egg4_dias_TWE_config](https://github.com/eastgenomics/egg4_dias_TWE_config) +1. 🗣 Commented on [#1024](https://github.com/oemof/oemof-solph/pull/1024#issuecomment-1825574614) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +2. 🗣 Commented on [#80](https://github.com/ITMO-NSS-team/GAMLET/pull/80#issuecomment-1825513773) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +3. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1824959178) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +4. 🗣 Commented on [#220](https://github.com/scil-vital/dwi_ml/pull/220#issuecomment-1824821282) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +5. 🗣 Commented on [#583](https://github.com/quark-engine/quark-engine/pull/583#issuecomment-1824657944) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Resume-Matcher/pull/1#issuecomment-1824656924) in [tuhinmallick/Resume-Matcher](https://github.com/tuhinmallick/Resume-Matcher) +7. 🗣 Commented on [#1409](https://github.com/rpm-software-management/ci-dnf-stack/pull/1409#issuecomment-1824533470) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +8. 🗣 Commented on [#5342](https://github.com/rhinstaller/anaconda/pull/5342#issuecomment-1824510651) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#1408](https://github.com/rpm-software-management/ci-dnf-stack/pull/1408#issuecomment-1824510136) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +10. 🗣 Commented on [#939](https://github.com/avaframe/AvaFrame/pull/939#issuecomment-1824372976) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From fa61eb55e083fead01547d4dd17a513737735ca5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 24 Nov 2023 14:14:39 +0000 Subject: [PATCH 0717/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d0722858..30b13a9f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1024](https://github.com/oemof/oemof-solph/pull/1024#issuecomment-1825574614) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -2. 🗣 Commented on [#80](https://github.com/ITMO-NSS-team/GAMLET/pull/80#issuecomment-1825513773) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -3. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1824959178) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -4. 🗣 Commented on [#220](https://github.com/scil-vital/dwi_ml/pull/220#issuecomment-1824821282) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -5. 🗣 Commented on [#583](https://github.com/quark-engine/quark-engine/pull/583#issuecomment-1824657944) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Resume-Matcher/pull/1#issuecomment-1824656924) in [tuhinmallick/Resume-Matcher](https://github.com/tuhinmallick/Resume-Matcher) -7. 🗣 Commented on [#1409](https://github.com/rpm-software-management/ci-dnf-stack/pull/1409#issuecomment-1824533470) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -8. 🗣 Commented on [#5342](https://github.com/rhinstaller/anaconda/pull/5342#issuecomment-1824510651) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#1408](https://github.com/rpm-software-management/ci-dnf-stack/pull/1408#issuecomment-1824510136) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -10. 🗣 Commented on [#939](https://github.com/avaframe/AvaFrame/pull/939#issuecomment-1824372976) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#83](https://github.com/ITMO-NSS-team/GAMLET/pull/83#issuecomment-1825731742) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +2. 🗣 Commented on [#1026](https://github.com/oemof/oemof-solph/pull/1026#issuecomment-1825691255) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +3. 🗣 Commented on [#1024](https://github.com/oemof/oemof-solph/pull/1024#issuecomment-1825574614) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +4. 🗣 Commented on [#80](https://github.com/ITMO-NSS-team/GAMLET/pull/80#issuecomment-1825513773) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +5. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1824959178) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +6. 🗣 Commented on [#220](https://github.com/scil-vital/dwi_ml/pull/220#issuecomment-1824821282) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +7. 🗣 Commented on [#583](https://github.com/quark-engine/quark-engine/pull/583#issuecomment-1824657944) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Resume-Matcher/pull/1#issuecomment-1824656924) in [tuhinmallick/Resume-Matcher](https://github.com/tuhinmallick/Resume-Matcher) +9. 🗣 Commented on [#1409](https://github.com/rpm-software-management/ci-dnf-stack/pull/1409#issuecomment-1824533470) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +10. 🗣 Commented on [#5342](https://github.com/rhinstaller/anaconda/pull/5342#issuecomment-1824510651) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 7682a97b399728f81de7c66fb2379d3d46a94f8e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 24 Nov 2023 14:37:17 +0000 Subject: [PATCH 0718/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 30b13a9f..11218b41 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#83](https://github.com/ITMO-NSS-team/GAMLET/pull/83#issuecomment-1825731742) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -2. 🗣 Commented on [#1026](https://github.com/oemof/oemof-solph/pull/1026#issuecomment-1825691255) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -3. 🗣 Commented on [#1024](https://github.com/oemof/oemof-solph/pull/1024#issuecomment-1825574614) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -4. 🗣 Commented on [#80](https://github.com/ITMO-NSS-team/GAMLET/pull/80#issuecomment-1825513773) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -5. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1824959178) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -6. 🗣 Commented on [#220](https://github.com/scil-vital/dwi_ml/pull/220#issuecomment-1824821282) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -7. 🗣 Commented on [#583](https://github.com/quark-engine/quark-engine/pull/583#issuecomment-1824657944) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Resume-Matcher/pull/1#issuecomment-1824656924) in [tuhinmallick/Resume-Matcher](https://github.com/tuhinmallick/Resume-Matcher) -9. 🗣 Commented on [#1409](https://github.com/rpm-software-management/ci-dnf-stack/pull/1409#issuecomment-1824533470) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -10. 🗣 Commented on [#5342](https://github.com/rhinstaller/anaconda/pull/5342#issuecomment-1824510651) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#148](https://github.com/lettucecfd/lettuce/pull/148#issuecomment-1825756534) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +2. 🗣 Commented on [#86](https://github.com/eastgenomics/athena/pull/86#issuecomment-1825740205) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +3. 🗣 Commented on [#83](https://github.com/ITMO-NSS-team/GAMLET/pull/83#issuecomment-1825731742) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +4. 🗣 Commented on [#1026](https://github.com/oemof/oemof-solph/pull/1026#issuecomment-1825691255) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +5. 🗣 Commented on [#1024](https://github.com/oemof/oemof-solph/pull/1024#issuecomment-1825574614) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +6. 🗣 Commented on [#80](https://github.com/ITMO-NSS-team/GAMLET/pull/80#issuecomment-1825513773) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +7. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1824959178) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +8. 🗣 Commented on [#220](https://github.com/scil-vital/dwi_ml/pull/220#issuecomment-1824821282) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +9. 🗣 Commented on [#583](https://github.com/quark-engine/quark-engine/pull/583#issuecomment-1824657944) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Resume-Matcher/pull/1#issuecomment-1824656924) in [tuhinmallick/Resume-Matcher](https://github.com/tuhinmallick/Resume-Matcher) From 6cafbb302a3ef4646533b3096aa7ab1408681867 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 24 Nov 2023 15:16:27 +0000 Subject: [PATCH 0719/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 11218b41..c91371b9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#148](https://github.com/lettucecfd/lettuce/pull/148#issuecomment-1825756534) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -2. 🗣 Commented on [#86](https://github.com/eastgenomics/athena/pull/86#issuecomment-1825740205) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -3. 🗣 Commented on [#83](https://github.com/ITMO-NSS-team/GAMLET/pull/83#issuecomment-1825731742) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -4. 🗣 Commented on [#1026](https://github.com/oemof/oemof-solph/pull/1026#issuecomment-1825691255) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -5. 🗣 Commented on [#1024](https://github.com/oemof/oemof-solph/pull/1024#issuecomment-1825574614) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -6. 🗣 Commented on [#80](https://github.com/ITMO-NSS-team/GAMLET/pull/80#issuecomment-1825513773) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -7. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1824959178) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -8. 🗣 Commented on [#220](https://github.com/scil-vital/dwi_ml/pull/220#issuecomment-1824821282) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -9. 🗣 Commented on [#583](https://github.com/quark-engine/quark-engine/pull/583#issuecomment-1824657944) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Resume-Matcher/pull/1#issuecomment-1824656924) in [tuhinmallick/Resume-Matcher](https://github.com/tuhinmallick/Resume-Matcher) +1. 🗣 Commented on [#1021](https://github.com/oemof/oemof-solph/pull/1021#issuecomment-1825764821) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +2. 🗣 Commented on [#148](https://github.com/lettucecfd/lettuce/pull/148#issuecomment-1825756534) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +3. 🗣 Commented on [#86](https://github.com/eastgenomics/athena/pull/86#issuecomment-1825740205) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +4. 🗣 Commented on [#83](https://github.com/ITMO-NSS-team/GAMLET/pull/83#issuecomment-1825731742) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +5. 🗣 Commented on [#1026](https://github.com/oemof/oemof-solph/pull/1026#issuecomment-1825691255) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +6. 🗣 Commented on [#1024](https://github.com/oemof/oemof-solph/pull/1024#issuecomment-1825574614) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +7. 🗣 Commented on [#80](https://github.com/ITMO-NSS-team/GAMLET/pull/80#issuecomment-1825513773) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +8. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1824959178) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +9. 🗣 Commented on [#220](https://github.com/scil-vital/dwi_ml/pull/220#issuecomment-1824821282) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +10. 🗣 Commented on [#583](https://github.com/quark-engine/quark-engine/pull/583#issuecomment-1824657944) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) From f9fdce35155a95c8817c30fd911924ddc4d6f29a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 24 Nov 2023 17:14:14 +0000 Subject: [PATCH 0720/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c91371b9..9258b1f9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1021](https://github.com/oemof/oemof-solph/pull/1021#issuecomment-1825764821) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -2. 🗣 Commented on [#148](https://github.com/lettucecfd/lettuce/pull/148#issuecomment-1825756534) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -3. 🗣 Commented on [#86](https://github.com/eastgenomics/athena/pull/86#issuecomment-1825740205) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -4. 🗣 Commented on [#83](https://github.com/ITMO-NSS-team/GAMLET/pull/83#issuecomment-1825731742) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -5. 🗣 Commented on [#1026](https://github.com/oemof/oemof-solph/pull/1026#issuecomment-1825691255) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -6. 🗣 Commented on [#1024](https://github.com/oemof/oemof-solph/pull/1024#issuecomment-1825574614) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -7. 🗣 Commented on [#80](https://github.com/ITMO-NSS-team/GAMLET/pull/80#issuecomment-1825513773) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -8. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1824959178) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -9. 🗣 Commented on [#220](https://github.com/scil-vital/dwi_ml/pull/220#issuecomment-1824821282) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -10. 🗣 Commented on [#583](https://github.com/quark-engine/quark-engine/pull/583#issuecomment-1824657944) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +1. 🗣 Commented on [#143](https://github.com/eastgenomics/dias_batch_running/pull/143#issuecomment-1825931086) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#657](https://github.com/OpenFreeEnergy/openfe/pull/657#issuecomment-1825929906) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#1021](https://github.com/oemof/oemof-solph/pull/1021#issuecomment-1825764821) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +4. 🗣 Commented on [#148](https://github.com/lettucecfd/lettuce/pull/148#issuecomment-1825756534) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +5. 🗣 Commented on [#86](https://github.com/eastgenomics/athena/pull/86#issuecomment-1825740205) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +6. 🗣 Commented on [#83](https://github.com/ITMO-NSS-team/GAMLET/pull/83#issuecomment-1825731742) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +7. 🗣 Commented on [#1026](https://github.com/oemof/oemof-solph/pull/1026#issuecomment-1825691255) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +8. 🗣 Commented on [#1024](https://github.com/oemof/oemof-solph/pull/1024#issuecomment-1825574614) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +9. 🗣 Commented on [#80](https://github.com/ITMO-NSS-team/GAMLET/pull/80#issuecomment-1825513773) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +10. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1824959178) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) From 836e0b44475a1eb9708fe00a5fab063e84e6627f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 24 Nov 2023 19:37:15 +0000 Subject: [PATCH 0721/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9258b1f9..ef6ab885 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#143](https://github.com/eastgenomics/dias_batch_running/pull/143#issuecomment-1825931086) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#657](https://github.com/OpenFreeEnergy/openfe/pull/657#issuecomment-1825929906) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#1021](https://github.com/oemof/oemof-solph/pull/1021#issuecomment-1825764821) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -4. 🗣 Commented on [#148](https://github.com/lettucecfd/lettuce/pull/148#issuecomment-1825756534) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -5. 🗣 Commented on [#86](https://github.com/eastgenomics/athena/pull/86#issuecomment-1825740205) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -6. 🗣 Commented on [#83](https://github.com/ITMO-NSS-team/GAMLET/pull/83#issuecomment-1825731742) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -7. 🗣 Commented on [#1026](https://github.com/oemof/oemof-solph/pull/1026#issuecomment-1825691255) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -8. 🗣 Commented on [#1024](https://github.com/oemof/oemof-solph/pull/1024#issuecomment-1825574614) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -9. 🗣 Commented on [#80](https://github.com/ITMO-NSS-team/GAMLET/pull/80#issuecomment-1825513773) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -10. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1824959178) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +1. 🗣 Commented on [#21555](https://github.com/spyder-ide/spyder/pull/21555#issuecomment-1826032109) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#143](https://github.com/eastgenomics/dias_batch_running/pull/143#issuecomment-1825931086) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#657](https://github.com/OpenFreeEnergy/openfe/pull/657#issuecomment-1825929906) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#1021](https://github.com/oemof/oemof-solph/pull/1021#issuecomment-1825764821) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +5. 🗣 Commented on [#148](https://github.com/lettucecfd/lettuce/pull/148#issuecomment-1825756534) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +6. 🗣 Commented on [#86](https://github.com/eastgenomics/athena/pull/86#issuecomment-1825740205) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +7. 🗣 Commented on [#83](https://github.com/ITMO-NSS-team/GAMLET/pull/83#issuecomment-1825731742) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +8. 🗣 Commented on [#1026](https://github.com/oemof/oemof-solph/pull/1026#issuecomment-1825691255) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +9. 🗣 Commented on [#1024](https://github.com/oemof/oemof-solph/pull/1024#issuecomment-1825574614) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +10. 🗣 Commented on [#80](https://github.com/ITMO-NSS-team/GAMLET/pull/80#issuecomment-1825513773) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) From 98b427245e5009e89b3b46326f5e7140dea8027c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 24 Nov 2023 21:13:15 +0000 Subject: [PATCH 0722/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ef6ab885..64223bc6 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#21555](https://github.com/spyder-ide/spyder/pull/21555#issuecomment-1826032109) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#143](https://github.com/eastgenomics/dias_batch_running/pull/143#issuecomment-1825931086) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#657](https://github.com/OpenFreeEnergy/openfe/pull/657#issuecomment-1825929906) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#1021](https://github.com/oemof/oemof-solph/pull/1021#issuecomment-1825764821) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -5. 🗣 Commented on [#148](https://github.com/lettucecfd/lettuce/pull/148#issuecomment-1825756534) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -6. 🗣 Commented on [#86](https://github.com/eastgenomics/athena/pull/86#issuecomment-1825740205) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -7. 🗣 Commented on [#83](https://github.com/ITMO-NSS-team/GAMLET/pull/83#issuecomment-1825731742) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -8. 🗣 Commented on [#1026](https://github.com/oemof/oemof-solph/pull/1026#issuecomment-1825691255) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -9. 🗣 Commented on [#1024](https://github.com/oemof/oemof-solph/pull/1024#issuecomment-1825574614) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -10. 🗣 Commented on [#80](https://github.com/ITMO-NSS-team/GAMLET/pull/80#issuecomment-1825513773) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +1. 🗣 Commented on [#1192](https://github.com/scikit-optimize/scikit-optimize/pull/1192#issuecomment-1826087421) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +2. 🗣 Commented on [#21555](https://github.com/spyder-ide/spyder/pull/21555#issuecomment-1826032109) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#143](https://github.com/eastgenomics/dias_batch_running/pull/143#issuecomment-1825931086) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +4. 🗣 Commented on [#657](https://github.com/OpenFreeEnergy/openfe/pull/657#issuecomment-1825929906) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#1021](https://github.com/oemof/oemof-solph/pull/1021#issuecomment-1825764821) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +6. 🗣 Commented on [#148](https://github.com/lettucecfd/lettuce/pull/148#issuecomment-1825756534) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +7. 🗣 Commented on [#86](https://github.com/eastgenomics/athena/pull/86#issuecomment-1825740205) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +8. 🗣 Commented on [#83](https://github.com/ITMO-NSS-team/GAMLET/pull/83#issuecomment-1825731742) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +9. 🗣 Commented on [#1026](https://github.com/oemof/oemof-solph/pull/1026#issuecomment-1825691255) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +10. 🗣 Commented on [#1024](https://github.com/oemof/oemof-solph/pull/1024#issuecomment-1825574614) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) From 6b5c5651af7dd618644377610f26d699e4781a55 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Nov 2023 11:12:27 +0000 Subject: [PATCH 0723/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 64223bc6..ae86518e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1192](https://github.com/scikit-optimize/scikit-optimize/pull/1192#issuecomment-1826087421) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) -2. 🗣 Commented on [#21555](https://github.com/spyder-ide/spyder/pull/21555#issuecomment-1826032109) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#143](https://github.com/eastgenomics/dias_batch_running/pull/143#issuecomment-1825931086) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -4. 🗣 Commented on [#657](https://github.com/OpenFreeEnergy/openfe/pull/657#issuecomment-1825929906) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#1021](https://github.com/oemof/oemof-solph/pull/1021#issuecomment-1825764821) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -6. 🗣 Commented on [#148](https://github.com/lettucecfd/lettuce/pull/148#issuecomment-1825756534) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -7. 🗣 Commented on [#86](https://github.com/eastgenomics/athena/pull/86#issuecomment-1825740205) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -8. 🗣 Commented on [#83](https://github.com/ITMO-NSS-team/GAMLET/pull/83#issuecomment-1825731742) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -9. 🗣 Commented on [#1026](https://github.com/oemof/oemof-solph/pull/1026#issuecomment-1825691255) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -10. 🗣 Commented on [#1024](https://github.com/oemof/oemof-solph/pull/1024#issuecomment-1825574614) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +1. 🗣 Commented on [#58](https://github.com/DeMarcoLab/juno/pull/58#issuecomment-1826280279) in [DeMarcoLab/juno](https://github.com/DeMarcoLab/juno) +2. 🗣 Commented on [#1192](https://github.com/scikit-optimize/scikit-optimize/pull/1192#issuecomment-1826087421) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +3. 🗣 Commented on [#21555](https://github.com/spyder-ide/spyder/pull/21555#issuecomment-1826032109) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#143](https://github.com/eastgenomics/dias_batch_running/pull/143#issuecomment-1825931086) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#657](https://github.com/OpenFreeEnergy/openfe/pull/657#issuecomment-1825929906) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#1021](https://github.com/oemof/oemof-solph/pull/1021#issuecomment-1825764821) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +7. 🗣 Commented on [#148](https://github.com/lettucecfd/lettuce/pull/148#issuecomment-1825756534) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +8. 🗣 Commented on [#86](https://github.com/eastgenomics/athena/pull/86#issuecomment-1825740205) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +9. 🗣 Commented on [#83](https://github.com/ITMO-NSS-team/GAMLET/pull/83#issuecomment-1825731742) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +10. 🗣 Commented on [#1026](https://github.com/oemof/oemof-solph/pull/1026#issuecomment-1825691255) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) From e16b9ff44bea01ae1ae00e5ff18cdf56541346f0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Nov 2023 13:17:11 +0000 Subject: [PATCH 0724/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ae86518e..27512285 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#58](https://github.com/DeMarcoLab/juno/pull/58#issuecomment-1826280279) in [DeMarcoLab/juno](https://github.com/DeMarcoLab/juno) -2. 🗣 Commented on [#1192](https://github.com/scikit-optimize/scikit-optimize/pull/1192#issuecomment-1826087421) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) -3. 🗣 Commented on [#21555](https://github.com/spyder-ide/spyder/pull/21555#issuecomment-1826032109) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#143](https://github.com/eastgenomics/dias_batch_running/pull/143#issuecomment-1825931086) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#657](https://github.com/OpenFreeEnergy/openfe/pull/657#issuecomment-1825929906) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#1021](https://github.com/oemof/oemof-solph/pull/1021#issuecomment-1825764821) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -7. 🗣 Commented on [#148](https://github.com/lettucecfd/lettuce/pull/148#issuecomment-1825756534) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -8. 🗣 Commented on [#86](https://github.com/eastgenomics/athena/pull/86#issuecomment-1825740205) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -9. 🗣 Commented on [#83](https://github.com/ITMO-NSS-team/GAMLET/pull/83#issuecomment-1825731742) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -10. 🗣 Commented on [#1026](https://github.com/oemof/oemof-solph/pull/1026#issuecomment-1825691255) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/LookaheadDecoding/pull/1#issuecomment-1826304446) in [tuhinmallick/LookaheadDecoding](https://github.com/tuhinmallick/LookaheadDecoding) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/rags/pull/1#issuecomment-1826304408) in [tuhinmallick/rags](https://github.com/tuhinmallick/rags) +3. 🗣 Commented on [#58](https://github.com/DeMarcoLab/juno/pull/58#issuecomment-1826280279) in [DeMarcoLab/juno](https://github.com/DeMarcoLab/juno) +4. 🗣 Commented on [#1192](https://github.com/scikit-optimize/scikit-optimize/pull/1192#issuecomment-1826087421) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +5. 🗣 Commented on [#21555](https://github.com/spyder-ide/spyder/pull/21555#issuecomment-1826032109) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#143](https://github.com/eastgenomics/dias_batch_running/pull/143#issuecomment-1825931086) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#657](https://github.com/OpenFreeEnergy/openfe/pull/657#issuecomment-1825929906) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#1021](https://github.com/oemof/oemof-solph/pull/1021#issuecomment-1825764821) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +9. 🗣 Commented on [#148](https://github.com/lettucecfd/lettuce/pull/148#issuecomment-1825756534) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +10. 🗣 Commented on [#86](https://github.com/eastgenomics/athena/pull/86#issuecomment-1825740205) in [eastgenomics/athena](https://github.com/eastgenomics/athena) From 4a3b1894c665f7933b93b1e79d1886b3a2e2b789 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Nov 2023 15:37:07 +0000 Subject: [PATCH 0725/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 27512285..4cf1d855 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/LookaheadDecoding/pull/1#issuecomment-1826304446) in [tuhinmallick/LookaheadDecoding](https://github.com/tuhinmallick/LookaheadDecoding) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/rags/pull/1#issuecomment-1826304408) in [tuhinmallick/rags](https://github.com/tuhinmallick/rags) -3. 🗣 Commented on [#58](https://github.com/DeMarcoLab/juno/pull/58#issuecomment-1826280279) in [DeMarcoLab/juno](https://github.com/DeMarcoLab/juno) -4. 🗣 Commented on [#1192](https://github.com/scikit-optimize/scikit-optimize/pull/1192#issuecomment-1826087421) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) -5. 🗣 Commented on [#21555](https://github.com/spyder-ide/spyder/pull/21555#issuecomment-1826032109) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#143](https://github.com/eastgenomics/dias_batch_running/pull/143#issuecomment-1825931086) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#657](https://github.com/OpenFreeEnergy/openfe/pull/657#issuecomment-1825929906) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#1021](https://github.com/oemof/oemof-solph/pull/1021#issuecomment-1825764821) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -9. 🗣 Commented on [#148](https://github.com/lettucecfd/lettuce/pull/148#issuecomment-1825756534) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -10. 🗣 Commented on [#86](https://github.com/eastgenomics/athena/pull/86#issuecomment-1825740205) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/auto-cot/pull/1#issuecomment-1826358076) in [tuhinmallick/auto-cot](https://github.com/tuhinmallick/auto-cot) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/LookaheadDecoding/pull/1#issuecomment-1826304446) in [tuhinmallick/LookaheadDecoding](https://github.com/tuhinmallick/LookaheadDecoding) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/rags/pull/1#issuecomment-1826304408) in [tuhinmallick/rags](https://github.com/tuhinmallick/rags) +4. 🗣 Commented on [#58](https://github.com/DeMarcoLab/juno/pull/58#issuecomment-1826280279) in [DeMarcoLab/juno](https://github.com/DeMarcoLab/juno) +5. 🗣 Commented on [#1192](https://github.com/scikit-optimize/scikit-optimize/pull/1192#issuecomment-1826087421) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +6. 🗣 Commented on [#21555](https://github.com/spyder-ide/spyder/pull/21555#issuecomment-1826032109) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#143](https://github.com/eastgenomics/dias_batch_running/pull/143#issuecomment-1825931086) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#657](https://github.com/OpenFreeEnergy/openfe/pull/657#issuecomment-1825929906) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#1021](https://github.com/oemof/oemof-solph/pull/1021#issuecomment-1825764821) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +10. 🗣 Commented on [#148](https://github.com/lettucecfd/lettuce/pull/148#issuecomment-1825756534) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) From 901e0af33514ea98a778befff63b8234a92d0821 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Nov 2023 20:37:29 +0000 Subject: [PATCH 0726/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4cf1d855..c6ea56b6 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/auto-cot/pull/1#issuecomment-1826358076) in [tuhinmallick/auto-cot](https://github.com/tuhinmallick/auto-cot) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/LookaheadDecoding/pull/1#issuecomment-1826304446) in [tuhinmallick/LookaheadDecoding](https://github.com/tuhinmallick/LookaheadDecoding) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/rags/pull/1#issuecomment-1826304408) in [tuhinmallick/rags](https://github.com/tuhinmallick/rags) -4. 🗣 Commented on [#58](https://github.com/DeMarcoLab/juno/pull/58#issuecomment-1826280279) in [DeMarcoLab/juno](https://github.com/DeMarcoLab/juno) -5. 🗣 Commented on [#1192](https://github.com/scikit-optimize/scikit-optimize/pull/1192#issuecomment-1826087421) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) -6. 🗣 Commented on [#21555](https://github.com/spyder-ide/spyder/pull/21555#issuecomment-1826032109) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#143](https://github.com/eastgenomics/dias_batch_running/pull/143#issuecomment-1825931086) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#657](https://github.com/OpenFreeEnergy/openfe/pull/657#issuecomment-1825929906) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#1021](https://github.com/oemof/oemof-solph/pull/1021#issuecomment-1825764821) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -10. 🗣 Commented on [#148](https://github.com/lettucecfd/lettuce/pull/148#issuecomment-1825756534) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/lm-format-enforcer/pull/1#issuecomment-1826413950) in [tuhinmallick/lm-format-enforcer](https://github.com/tuhinmallick/lm-format-enforcer) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/auto-cot/pull/1#issuecomment-1826358076) in [tuhinmallick/auto-cot](https://github.com/tuhinmallick/auto-cot) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/LookaheadDecoding/pull/1#issuecomment-1826304446) in [tuhinmallick/LookaheadDecoding](https://github.com/tuhinmallick/LookaheadDecoding) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/rags/pull/1#issuecomment-1826304408) in [tuhinmallick/rags](https://github.com/tuhinmallick/rags) +5. 🗣 Commented on [#58](https://github.com/DeMarcoLab/juno/pull/58#issuecomment-1826280279) in [DeMarcoLab/juno](https://github.com/DeMarcoLab/juno) +6. 🗣 Commented on [#1192](https://github.com/scikit-optimize/scikit-optimize/pull/1192#issuecomment-1826087421) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +7. 🗣 Commented on [#21555](https://github.com/spyder-ide/spyder/pull/21555#issuecomment-1826032109) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#143](https://github.com/eastgenomics/dias_batch_running/pull/143#issuecomment-1825931086) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#657](https://github.com/OpenFreeEnergy/openfe/pull/657#issuecomment-1825929906) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#1021](https://github.com/oemof/oemof-solph/pull/1021#issuecomment-1825764821) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) From 9464145a34cd5e92a24eaf57f19ee51c4c6c8d02 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Nov 2023 23:15:12 +0000 Subject: [PATCH 0727/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c6ea56b6..daa49899 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/lm-format-enforcer/pull/1#issuecomment-1826413950) in [tuhinmallick/lm-format-enforcer](https://github.com/tuhinmallick/lm-format-enforcer) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/auto-cot/pull/1#issuecomment-1826358076) in [tuhinmallick/auto-cot](https://github.com/tuhinmallick/auto-cot) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/LookaheadDecoding/pull/1#issuecomment-1826304446) in [tuhinmallick/LookaheadDecoding](https://github.com/tuhinmallick/LookaheadDecoding) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/rags/pull/1#issuecomment-1826304408) in [tuhinmallick/rags](https://github.com/tuhinmallick/rags) -5. 🗣 Commented on [#58](https://github.com/DeMarcoLab/juno/pull/58#issuecomment-1826280279) in [DeMarcoLab/juno](https://github.com/DeMarcoLab/juno) -6. 🗣 Commented on [#1192](https://github.com/scikit-optimize/scikit-optimize/pull/1192#issuecomment-1826087421) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) -7. 🗣 Commented on [#21555](https://github.com/spyder-ide/spyder/pull/21555#issuecomment-1826032109) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#143](https://github.com/eastgenomics/dias_batch_running/pull/143#issuecomment-1825931086) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#657](https://github.com/OpenFreeEnergy/openfe/pull/657#issuecomment-1825929906) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#1021](https://github.com/oemof/oemof-solph/pull/1021#issuecomment-1825764821) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +1. 🗣 Commented on [#211](https://github.com/CartoonFan/lutris/pull/211#issuecomment-1826437833) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/image-search/pull/1#issuecomment-1826437574) in [tuhinmallick/image-search](https://github.com/tuhinmallick/image-search) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/lm-format-enforcer/pull/1#issuecomment-1826413950) in [tuhinmallick/lm-format-enforcer](https://github.com/tuhinmallick/lm-format-enforcer) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/auto-cot/pull/1#issuecomment-1826358076) in [tuhinmallick/auto-cot](https://github.com/tuhinmallick/auto-cot) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/LookaheadDecoding/pull/1#issuecomment-1826304446) in [tuhinmallick/LookaheadDecoding](https://github.com/tuhinmallick/LookaheadDecoding) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/rags/pull/1#issuecomment-1826304408) in [tuhinmallick/rags](https://github.com/tuhinmallick/rags) +7. 🗣 Commented on [#58](https://github.com/DeMarcoLab/juno/pull/58#issuecomment-1826280279) in [DeMarcoLab/juno](https://github.com/DeMarcoLab/juno) +8. 🗣 Commented on [#1192](https://github.com/scikit-optimize/scikit-optimize/pull/1192#issuecomment-1826087421) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +9. 🗣 Commented on [#21555](https://github.com/spyder-ide/spyder/pull/21555#issuecomment-1826032109) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#143](https://github.com/eastgenomics/dias_batch_running/pull/143#issuecomment-1825931086) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From a0c125bdb3c523a29a0139888862c3b0e8dea570 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 26 Nov 2023 04:19:00 +0000 Subject: [PATCH 0728/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index daa49899..82566316 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#211](https://github.com/CartoonFan/lutris/pull/211#issuecomment-1826437833) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/image-search/pull/1#issuecomment-1826437574) in [tuhinmallick/image-search](https://github.com/tuhinmallick/image-search) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/lm-format-enforcer/pull/1#issuecomment-1826413950) in [tuhinmallick/lm-format-enforcer](https://github.com/tuhinmallick/lm-format-enforcer) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/auto-cot/pull/1#issuecomment-1826358076) in [tuhinmallick/auto-cot](https://github.com/tuhinmallick/auto-cot) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/LookaheadDecoding/pull/1#issuecomment-1826304446) in [tuhinmallick/LookaheadDecoding](https://github.com/tuhinmallick/LookaheadDecoding) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/rags/pull/1#issuecomment-1826304408) in [tuhinmallick/rags](https://github.com/tuhinmallick/rags) -7. 🗣 Commented on [#58](https://github.com/DeMarcoLab/juno/pull/58#issuecomment-1826280279) in [DeMarcoLab/juno](https://github.com/DeMarcoLab/juno) -8. 🗣 Commented on [#1192](https://github.com/scikit-optimize/scikit-optimize/pull/1192#issuecomment-1826087421) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) -9. 🗣 Commented on [#21555](https://github.com/spyder-ide/spyder/pull/21555#issuecomment-1826032109) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#143](https://github.com/eastgenomics/dias_batch_running/pull/143#issuecomment-1825931086) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#27](https://github.com/CartoonFan/libloot/pull/27#issuecomment-1826488085) in [CartoonFan/libloot](https://github.com/CartoonFan/libloot) +2. 🗣 Commented on [#211](https://github.com/CartoonFan/lutris/pull/211#issuecomment-1826437833) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/image-search/pull/1#issuecomment-1826437574) in [tuhinmallick/image-search](https://github.com/tuhinmallick/image-search) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/lm-format-enforcer/pull/1#issuecomment-1826413950) in [tuhinmallick/lm-format-enforcer](https://github.com/tuhinmallick/lm-format-enforcer) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/auto-cot/pull/1#issuecomment-1826358076) in [tuhinmallick/auto-cot](https://github.com/tuhinmallick/auto-cot) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/LookaheadDecoding/pull/1#issuecomment-1826304446) in [tuhinmallick/LookaheadDecoding](https://github.com/tuhinmallick/LookaheadDecoding) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/rags/pull/1#issuecomment-1826304408) in [tuhinmallick/rags](https://github.com/tuhinmallick/rags) +8. 🗣 Commented on [#58](https://github.com/DeMarcoLab/juno/pull/58#issuecomment-1826280279) in [DeMarcoLab/juno](https://github.com/DeMarcoLab/juno) +9. 🗣 Commented on [#1192](https://github.com/scikit-optimize/scikit-optimize/pull/1192#issuecomment-1826087421) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +10. 🗣 Commented on [#21555](https://github.com/spyder-ide/spyder/pull/21555#issuecomment-1826032109) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 32f4d43818a1c734929e22e6a93498f1bb1a675f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 26 Nov 2023 07:37:03 +0000 Subject: [PATCH 0729/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 82566316..e78fd54d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#27](https://github.com/CartoonFan/libloot/pull/27#issuecomment-1826488085) in [CartoonFan/libloot](https://github.com/CartoonFan/libloot) -2. 🗣 Commented on [#211](https://github.com/CartoonFan/lutris/pull/211#issuecomment-1826437833) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/image-search/pull/1#issuecomment-1826437574) in [tuhinmallick/image-search](https://github.com/tuhinmallick/image-search) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/lm-format-enforcer/pull/1#issuecomment-1826413950) in [tuhinmallick/lm-format-enforcer](https://github.com/tuhinmallick/lm-format-enforcer) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/auto-cot/pull/1#issuecomment-1826358076) in [tuhinmallick/auto-cot](https://github.com/tuhinmallick/auto-cot) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/LookaheadDecoding/pull/1#issuecomment-1826304446) in [tuhinmallick/LookaheadDecoding](https://github.com/tuhinmallick/LookaheadDecoding) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/rags/pull/1#issuecomment-1826304408) in [tuhinmallick/rags](https://github.com/tuhinmallick/rags) -8. 🗣 Commented on [#58](https://github.com/DeMarcoLab/juno/pull/58#issuecomment-1826280279) in [DeMarcoLab/juno](https://github.com/DeMarcoLab/juno) -9. 🗣 Commented on [#1192](https://github.com/scikit-optimize/scikit-optimize/pull/1192#issuecomment-1826087421) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) -10. 🗣 Commented on [#21555](https://github.com/spyder-ide/spyder/pull/21555#issuecomment-1826032109) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/SalesGPT/pull/1#issuecomment-1826705902) in [tuhinmallick/SalesGPT](https://github.com/tuhinmallick/SalesGPT) +2. 🗣 Commented on [#27](https://github.com/CartoonFan/libloot/pull/27#issuecomment-1826488085) in [CartoonFan/libloot](https://github.com/CartoonFan/libloot) +3. 🗣 Commented on [#211](https://github.com/CartoonFan/lutris/pull/211#issuecomment-1826437833) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/image-search/pull/1#issuecomment-1826437574) in [tuhinmallick/image-search](https://github.com/tuhinmallick/image-search) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/lm-format-enforcer/pull/1#issuecomment-1826413950) in [tuhinmallick/lm-format-enforcer](https://github.com/tuhinmallick/lm-format-enforcer) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/auto-cot/pull/1#issuecomment-1826358076) in [tuhinmallick/auto-cot](https://github.com/tuhinmallick/auto-cot) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/LookaheadDecoding/pull/1#issuecomment-1826304446) in [tuhinmallick/LookaheadDecoding](https://github.com/tuhinmallick/LookaheadDecoding) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/rags/pull/1#issuecomment-1826304408) in [tuhinmallick/rags](https://github.com/tuhinmallick/rags) +9. 🗣 Commented on [#58](https://github.com/DeMarcoLab/juno/pull/58#issuecomment-1826280279) in [DeMarcoLab/juno](https://github.com/DeMarcoLab/juno) +10. 🗣 Commented on [#1192](https://github.com/scikit-optimize/scikit-optimize/pull/1192#issuecomment-1826087421) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) From 71af96ade9b8af4d08aa6a80b457e1fac34b8257 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 26 Nov 2023 13:17:50 +0000 Subject: [PATCH 0730/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e78fd54d..4721bfd7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/SalesGPT/pull/1#issuecomment-1826705902) in [tuhinmallick/SalesGPT](https://github.com/tuhinmallick/SalesGPT) -2. 🗣 Commented on [#27](https://github.com/CartoonFan/libloot/pull/27#issuecomment-1826488085) in [CartoonFan/libloot](https://github.com/CartoonFan/libloot) -3. 🗣 Commented on [#211](https://github.com/CartoonFan/lutris/pull/211#issuecomment-1826437833) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/image-search/pull/1#issuecomment-1826437574) in [tuhinmallick/image-search](https://github.com/tuhinmallick/image-search) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/lm-format-enforcer/pull/1#issuecomment-1826413950) in [tuhinmallick/lm-format-enforcer](https://github.com/tuhinmallick/lm-format-enforcer) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/auto-cot/pull/1#issuecomment-1826358076) in [tuhinmallick/auto-cot](https://github.com/tuhinmallick/auto-cot) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/LookaheadDecoding/pull/1#issuecomment-1826304446) in [tuhinmallick/LookaheadDecoding](https://github.com/tuhinmallick/LookaheadDecoding) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/rags/pull/1#issuecomment-1826304408) in [tuhinmallick/rags](https://github.com/tuhinmallick/rags) -9. 🗣 Commented on [#58](https://github.com/DeMarcoLab/juno/pull/58#issuecomment-1826280279) in [DeMarcoLab/juno](https://github.com/DeMarcoLab/juno) -10. 🗣 Commented on [#1192](https://github.com/scikit-optimize/scikit-optimize/pull/1192#issuecomment-1826087421) in [scikit-optimize/scikit-optimize](https://github.com/scikit-optimize/scikit-optimize) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/langflow/pull/1#issuecomment-1826782200) in [tuhinmallick/langflow](https://github.com/tuhinmallick/langflow) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/AgentGPT/pull/1#issuecomment-1826777622) in [tuhinmallick/AgentGPT](https://github.com/tuhinmallick/AgentGPT) +3. 🗣 Commented on [#170](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/170#issuecomment-1826777574) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/SalesGPT/pull/1#issuecomment-1826705902) in [tuhinmallick/SalesGPT](https://github.com/tuhinmallick/SalesGPT) +5. 🗣 Commented on [#27](https://github.com/CartoonFan/libloot/pull/27#issuecomment-1826488085) in [CartoonFan/libloot](https://github.com/CartoonFan/libloot) +6. 🗣 Commented on [#211](https://github.com/CartoonFan/lutris/pull/211#issuecomment-1826437833) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/image-search/pull/1#issuecomment-1826437574) in [tuhinmallick/image-search](https://github.com/tuhinmallick/image-search) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/lm-format-enforcer/pull/1#issuecomment-1826413950) in [tuhinmallick/lm-format-enforcer](https://github.com/tuhinmallick/lm-format-enforcer) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/auto-cot/pull/1#issuecomment-1826358076) in [tuhinmallick/auto-cot](https://github.com/tuhinmallick/auto-cot) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/LookaheadDecoding/pull/1#issuecomment-1826304446) in [tuhinmallick/LookaheadDecoding](https://github.com/tuhinmallick/LookaheadDecoding) From b31be96b9a6ecb6f1918294070d23cfe51233c56 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 26 Nov 2023 17:13:17 +0000 Subject: [PATCH 0731/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4721bfd7..3826aacf 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/langflow/pull/1#issuecomment-1826782200) in [tuhinmallick/langflow](https://github.com/tuhinmallick/langflow) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/AgentGPT/pull/1#issuecomment-1826777622) in [tuhinmallick/AgentGPT](https://github.com/tuhinmallick/AgentGPT) -3. 🗣 Commented on [#170](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/170#issuecomment-1826777574) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/SalesGPT/pull/1#issuecomment-1826705902) in [tuhinmallick/SalesGPT](https://github.com/tuhinmallick/SalesGPT) -5. 🗣 Commented on [#27](https://github.com/CartoonFan/libloot/pull/27#issuecomment-1826488085) in [CartoonFan/libloot](https://github.com/CartoonFan/libloot) -6. 🗣 Commented on [#211](https://github.com/CartoonFan/lutris/pull/211#issuecomment-1826437833) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/image-search/pull/1#issuecomment-1826437574) in [tuhinmallick/image-search](https://github.com/tuhinmallick/image-search) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/lm-format-enforcer/pull/1#issuecomment-1826413950) in [tuhinmallick/lm-format-enforcer](https://github.com/tuhinmallick/lm-format-enforcer) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/auto-cot/pull/1#issuecomment-1826358076) in [tuhinmallick/auto-cot](https://github.com/tuhinmallick/auto-cot) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/LookaheadDecoding/pull/1#issuecomment-1826304446) in [tuhinmallick/LookaheadDecoding](https://github.com/tuhinmallick/LookaheadDecoding) +1. 🗣 Commented on [#21557](https://github.com/spyder-ide/spyder/pull/21557#issuecomment-1826835594) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/langflow/pull/1#issuecomment-1826782200) in [tuhinmallick/langflow](https://github.com/tuhinmallick/langflow) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/AgentGPT/pull/1#issuecomment-1826777622) in [tuhinmallick/AgentGPT](https://github.com/tuhinmallick/AgentGPT) +4. 🗣 Commented on [#170](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/170#issuecomment-1826777574) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/SalesGPT/pull/1#issuecomment-1826705902) in [tuhinmallick/SalesGPT](https://github.com/tuhinmallick/SalesGPT) +6. 🗣 Commented on [#27](https://github.com/CartoonFan/libloot/pull/27#issuecomment-1826488085) in [CartoonFan/libloot](https://github.com/CartoonFan/libloot) +7. 🗣 Commented on [#211](https://github.com/CartoonFan/lutris/pull/211#issuecomment-1826437833) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/image-search/pull/1#issuecomment-1826437574) in [tuhinmallick/image-search](https://github.com/tuhinmallick/image-search) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/lm-format-enforcer/pull/1#issuecomment-1826413950) in [tuhinmallick/lm-format-enforcer](https://github.com/tuhinmallick/lm-format-enforcer) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/auto-cot/pull/1#issuecomment-1826358076) in [tuhinmallick/auto-cot](https://github.com/tuhinmallick/auto-cot) From 7e4a8f43b3bc32f33d6caf7cf55b71860265e1cb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 26 Nov 2023 22:37:10 +0000 Subject: [PATCH 0732/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3826aacf..a09baad5 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#21557](https://github.com/spyder-ide/spyder/pull/21557#issuecomment-1826835594) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/langflow/pull/1#issuecomment-1826782200) in [tuhinmallick/langflow](https://github.com/tuhinmallick/langflow) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/AgentGPT/pull/1#issuecomment-1826777622) in [tuhinmallick/AgentGPT](https://github.com/tuhinmallick/AgentGPT) -4. 🗣 Commented on [#170](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/170#issuecomment-1826777574) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/SalesGPT/pull/1#issuecomment-1826705902) in [tuhinmallick/SalesGPT](https://github.com/tuhinmallick/SalesGPT) -6. 🗣 Commented on [#27](https://github.com/CartoonFan/libloot/pull/27#issuecomment-1826488085) in [CartoonFan/libloot](https://github.com/CartoonFan/libloot) -7. 🗣 Commented on [#211](https://github.com/CartoonFan/lutris/pull/211#issuecomment-1826437833) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/image-search/pull/1#issuecomment-1826437574) in [tuhinmallick/image-search](https://github.com/tuhinmallick/image-search) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/lm-format-enforcer/pull/1#issuecomment-1826413950) in [tuhinmallick/lm-format-enforcer](https://github.com/tuhinmallick/lm-format-enforcer) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/auto-cot/pull/1#issuecomment-1826358076) in [tuhinmallick/auto-cot](https://github.com/tuhinmallick/auto-cot) +1. 🗣 Commented on [#241](https://github.com/aimclub/GOLEM/pull/241#issuecomment-1826914929) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#21557](https://github.com/spyder-ide/spyder/pull/21557#issuecomment-1826835594) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/langflow/pull/1#issuecomment-1826782200) in [tuhinmallick/langflow](https://github.com/tuhinmallick/langflow) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/AgentGPT/pull/1#issuecomment-1826777622) in [tuhinmallick/AgentGPT](https://github.com/tuhinmallick/AgentGPT) +5. 🗣 Commented on [#170](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/170#issuecomment-1826777574) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/SalesGPT/pull/1#issuecomment-1826705902) in [tuhinmallick/SalesGPT](https://github.com/tuhinmallick/SalesGPT) +7. 🗣 Commented on [#27](https://github.com/CartoonFan/libloot/pull/27#issuecomment-1826488085) in [CartoonFan/libloot](https://github.com/CartoonFan/libloot) +8. 🗣 Commented on [#211](https://github.com/CartoonFan/lutris/pull/211#issuecomment-1826437833) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/image-search/pull/1#issuecomment-1826437574) in [tuhinmallick/image-search](https://github.com/tuhinmallick/image-search) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/lm-format-enforcer/pull/1#issuecomment-1826413950) in [tuhinmallick/lm-format-enforcer](https://github.com/tuhinmallick/lm-format-enforcer) From 0ee17e3ec566656de7935a1163fe74cd571a18f3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 26 Nov 2023 23:15:29 +0000 Subject: [PATCH 0733/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a09baad5..c3fc3958 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#241](https://github.com/aimclub/GOLEM/pull/241#issuecomment-1826914929) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#21557](https://github.com/spyder-ide/spyder/pull/21557#issuecomment-1826835594) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/langflow/pull/1#issuecomment-1826782200) in [tuhinmallick/langflow](https://github.com/tuhinmallick/langflow) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/AgentGPT/pull/1#issuecomment-1826777622) in [tuhinmallick/AgentGPT](https://github.com/tuhinmallick/AgentGPT) -5. 🗣 Commented on [#170](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/170#issuecomment-1826777574) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/SalesGPT/pull/1#issuecomment-1826705902) in [tuhinmallick/SalesGPT](https://github.com/tuhinmallick/SalesGPT) -7. 🗣 Commented on [#27](https://github.com/CartoonFan/libloot/pull/27#issuecomment-1826488085) in [CartoonFan/libloot](https://github.com/CartoonFan/libloot) -8. 🗣 Commented on [#211](https://github.com/CartoonFan/lutris/pull/211#issuecomment-1826437833) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/image-search/pull/1#issuecomment-1826437574) in [tuhinmallick/image-search](https://github.com/tuhinmallick/image-search) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/lm-format-enforcer/pull/1#issuecomment-1826413950) in [tuhinmallick/lm-format-enforcer](https://github.com/tuhinmallick/lm-format-enforcer) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Prompt4LLM-Eval/pull/1#issuecomment-1826926284) in [tuhinmallick/Prompt4LLM-Eval](https://github.com/tuhinmallick/Prompt4LLM-Eval) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt4v-browsing/pull/1#issuecomment-1826925698) in [tuhinmallick/gpt4v-browsing](https://github.com/tuhinmallick/gpt4v-browsing) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/ChainFury/pull/1#issuecomment-1826922825) in [tuhinmallick/ChainFury](https://github.com/tuhinmallick/ChainFury) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/lollms-webui/pull/1#issuecomment-1826922475) in [tuhinmallick/lollms-webui](https://github.com/tuhinmallick/lollms-webui) +5. 🗣 Commented on [#241](https://github.com/aimclub/GOLEM/pull/241#issuecomment-1826914929) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#21557](https://github.com/spyder-ide/spyder/pull/21557#issuecomment-1826835594) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/langflow/pull/1#issuecomment-1826782200) in [tuhinmallick/langflow](https://github.com/tuhinmallick/langflow) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/AgentGPT/pull/1#issuecomment-1826777622) in [tuhinmallick/AgentGPT](https://github.com/tuhinmallick/AgentGPT) +9. 🗣 Commented on [#170](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/170#issuecomment-1826777574) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/SalesGPT/pull/1#issuecomment-1826705902) in [tuhinmallick/SalesGPT](https://github.com/tuhinmallick/SalesGPT) From d9350a49ae6252f7c7c8dd9a2559add5f97aee30 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 06:21:58 +0000 Subject: [PATCH 0734/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c3fc3958..6b6bd572 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Prompt4LLM-Eval/pull/1#issuecomment-1826926284) in [tuhinmallick/Prompt4LLM-Eval](https://github.com/tuhinmallick/Prompt4LLM-Eval) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt4v-browsing/pull/1#issuecomment-1826925698) in [tuhinmallick/gpt4v-browsing](https://github.com/tuhinmallick/gpt4v-browsing) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/ChainFury/pull/1#issuecomment-1826922825) in [tuhinmallick/ChainFury](https://github.com/tuhinmallick/ChainFury) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/lollms-webui/pull/1#issuecomment-1826922475) in [tuhinmallick/lollms-webui](https://github.com/tuhinmallick/lollms-webui) -5. 🗣 Commented on [#241](https://github.com/aimclub/GOLEM/pull/241#issuecomment-1826914929) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#21557](https://github.com/spyder-ide/spyder/pull/21557#issuecomment-1826835594) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/langflow/pull/1#issuecomment-1826782200) in [tuhinmallick/langflow](https://github.com/tuhinmallick/langflow) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/AgentGPT/pull/1#issuecomment-1826777622) in [tuhinmallick/AgentGPT](https://github.com/tuhinmallick/AgentGPT) -9. 🗣 Commented on [#170](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/170#issuecomment-1826777574) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/SalesGPT/pull/1#issuecomment-1826705902) in [tuhinmallick/SalesGPT](https://github.com/tuhinmallick/SalesGPT) +1. 🗣 Commented on [#171](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/171#issuecomment-1827165681) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Prompt4LLM-Eval/pull/1#issuecomment-1826926284) in [tuhinmallick/Prompt4LLM-Eval](https://github.com/tuhinmallick/Prompt4LLM-Eval) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt4v-browsing/pull/1#issuecomment-1826925698) in [tuhinmallick/gpt4v-browsing](https://github.com/tuhinmallick/gpt4v-browsing) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/ChainFury/pull/1#issuecomment-1826922825) in [tuhinmallick/ChainFury](https://github.com/tuhinmallick/ChainFury) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/lollms-webui/pull/1#issuecomment-1826922475) in [tuhinmallick/lollms-webui](https://github.com/tuhinmallick/lollms-webui) +6. 🗣 Commented on [#241](https://github.com/aimclub/GOLEM/pull/241#issuecomment-1826914929) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#21557](https://github.com/spyder-ide/spyder/pull/21557#issuecomment-1826835594) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/langflow/pull/1#issuecomment-1826782200) in [tuhinmallick/langflow](https://github.com/tuhinmallick/langflow) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/AgentGPT/pull/1#issuecomment-1826777622) in [tuhinmallick/AgentGPT](https://github.com/tuhinmallick/AgentGPT) +10. 🗣 Commented on [#170](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/170#issuecomment-1826777574) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) From 4720152c313948faf3ef325e97ac38b22ef916c9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 08:21:57 +0000 Subject: [PATCH 0735/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6b6bd572..886ad348 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#171](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/171#issuecomment-1827165681) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Prompt4LLM-Eval/pull/1#issuecomment-1826926284) in [tuhinmallick/Prompt4LLM-Eval](https://github.com/tuhinmallick/Prompt4LLM-Eval) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt4v-browsing/pull/1#issuecomment-1826925698) in [tuhinmallick/gpt4v-browsing](https://github.com/tuhinmallick/gpt4v-browsing) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/ChainFury/pull/1#issuecomment-1826922825) in [tuhinmallick/ChainFury](https://github.com/tuhinmallick/ChainFury) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/lollms-webui/pull/1#issuecomment-1826922475) in [tuhinmallick/lollms-webui](https://github.com/tuhinmallick/lollms-webui) -6. 🗣 Commented on [#241](https://github.com/aimclub/GOLEM/pull/241#issuecomment-1826914929) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#21557](https://github.com/spyder-ide/spyder/pull/21557#issuecomment-1826835594) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/langflow/pull/1#issuecomment-1826782200) in [tuhinmallick/langflow](https://github.com/tuhinmallick/langflow) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/AgentGPT/pull/1#issuecomment-1826777622) in [tuhinmallick/AgentGPT](https://github.com/tuhinmallick/AgentGPT) -10. 🗣 Commented on [#170](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/170#issuecomment-1826777574) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) +1. 🗣 Commented on [#10](https://github.com/tzamalisp/crossai/pull/10#issuecomment-1827288168) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +2. 🗣 Commented on [#171](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/171#issuecomment-1827165681) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Prompt4LLM-Eval/pull/1#issuecomment-1826926284) in [tuhinmallick/Prompt4LLM-Eval](https://github.com/tuhinmallick/Prompt4LLM-Eval) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt4v-browsing/pull/1#issuecomment-1826925698) in [tuhinmallick/gpt4v-browsing](https://github.com/tuhinmallick/gpt4v-browsing) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/ChainFury/pull/1#issuecomment-1826922825) in [tuhinmallick/ChainFury](https://github.com/tuhinmallick/ChainFury) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/lollms-webui/pull/1#issuecomment-1826922475) in [tuhinmallick/lollms-webui](https://github.com/tuhinmallick/lollms-webui) +7. 🗣 Commented on [#241](https://github.com/aimclub/GOLEM/pull/241#issuecomment-1826914929) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +8. 🗣 Commented on [#21557](https://github.com/spyder-ide/spyder/pull/21557#issuecomment-1826835594) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/langflow/pull/1#issuecomment-1826782200) in [tuhinmallick/langflow](https://github.com/tuhinmallick/langflow) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/AgentGPT/pull/1#issuecomment-1826777622) in [tuhinmallick/AgentGPT](https://github.com/tuhinmallick/AgentGPT) From 0218e60291aad25b4289f433929654c0b1cfc603 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 13:20:20 +0000 Subject: [PATCH 0736/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 886ad348..9bb08644 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#10](https://github.com/tzamalisp/crossai/pull/10#issuecomment-1827288168) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -2. 🗣 Commented on [#171](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/171#issuecomment-1827165681) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Prompt4LLM-Eval/pull/1#issuecomment-1826926284) in [tuhinmallick/Prompt4LLM-Eval](https://github.com/tuhinmallick/Prompt4LLM-Eval) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt4v-browsing/pull/1#issuecomment-1826925698) in [tuhinmallick/gpt4v-browsing](https://github.com/tuhinmallick/gpt4v-browsing) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/ChainFury/pull/1#issuecomment-1826922825) in [tuhinmallick/ChainFury](https://github.com/tuhinmallick/ChainFury) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/lollms-webui/pull/1#issuecomment-1826922475) in [tuhinmallick/lollms-webui](https://github.com/tuhinmallick/lollms-webui) -7. 🗣 Commented on [#241](https://github.com/aimclub/GOLEM/pull/241#issuecomment-1826914929) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -8. 🗣 Commented on [#21557](https://github.com/spyder-ide/spyder/pull/21557#issuecomment-1826835594) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/langflow/pull/1#issuecomment-1826782200) in [tuhinmallick/langflow](https://github.com/tuhinmallick/langflow) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/AgentGPT/pull/1#issuecomment-1826777622) in [tuhinmallick/AgentGPT](https://github.com/tuhinmallick/AgentGPT) +1. 🗣 Commented on [#58](https://github.com/eastgenomics/eris/pull/58#issuecomment-1827805786) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#10](https://github.com/tzamalisp/crossai/pull/10#issuecomment-1827288168) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +3. 🗣 Commented on [#171](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/171#issuecomment-1827165681) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Prompt4LLM-Eval/pull/1#issuecomment-1826926284) in [tuhinmallick/Prompt4LLM-Eval](https://github.com/tuhinmallick/Prompt4LLM-Eval) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt4v-browsing/pull/1#issuecomment-1826925698) in [tuhinmallick/gpt4v-browsing](https://github.com/tuhinmallick/gpt4v-browsing) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/ChainFury/pull/1#issuecomment-1826922825) in [tuhinmallick/ChainFury](https://github.com/tuhinmallick/ChainFury) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/lollms-webui/pull/1#issuecomment-1826922475) in [tuhinmallick/lollms-webui](https://github.com/tuhinmallick/lollms-webui) +8. 🗣 Commented on [#241](https://github.com/aimclub/GOLEM/pull/241#issuecomment-1826914929) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#21557](https://github.com/spyder-ide/spyder/pull/21557#issuecomment-1826835594) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/langflow/pull/1#issuecomment-1826782200) in [tuhinmallick/langflow](https://github.com/tuhinmallick/langflow) From a15cb21dd12fca37faed4dc198dad549702be4fc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 14:15:54 +0000 Subject: [PATCH 0737/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9bb08644..b221eaec 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#58](https://github.com/eastgenomics/eris/pull/58#issuecomment-1827805786) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#10](https://github.com/tzamalisp/crossai/pull/10#issuecomment-1827288168) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -3. 🗣 Commented on [#171](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/171#issuecomment-1827165681) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Prompt4LLM-Eval/pull/1#issuecomment-1826926284) in [tuhinmallick/Prompt4LLM-Eval](https://github.com/tuhinmallick/Prompt4LLM-Eval) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt4v-browsing/pull/1#issuecomment-1826925698) in [tuhinmallick/gpt4v-browsing](https://github.com/tuhinmallick/gpt4v-browsing) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/ChainFury/pull/1#issuecomment-1826922825) in [tuhinmallick/ChainFury](https://github.com/tuhinmallick/ChainFury) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/lollms-webui/pull/1#issuecomment-1826922475) in [tuhinmallick/lollms-webui](https://github.com/tuhinmallick/lollms-webui) -8. 🗣 Commented on [#241](https://github.com/aimclub/GOLEM/pull/241#issuecomment-1826914929) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#21557](https://github.com/spyder-ide/spyder/pull/21557#issuecomment-1826835594) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/langflow/pull/1#issuecomment-1826782200) in [tuhinmallick/langflow](https://github.com/tuhinmallick/langflow) +1. 🗣 Commented on [#59](https://github.com/eastgenomics/eris/pull/59#issuecomment-1827857984) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#58](https://github.com/eastgenomics/eris/pull/58#issuecomment-1827805786) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#10](https://github.com/tzamalisp/crossai/pull/10#issuecomment-1827288168) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +4. 🗣 Commented on [#171](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/171#issuecomment-1827165681) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Prompt4LLM-Eval/pull/1#issuecomment-1826926284) in [tuhinmallick/Prompt4LLM-Eval](https://github.com/tuhinmallick/Prompt4LLM-Eval) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt4v-browsing/pull/1#issuecomment-1826925698) in [tuhinmallick/gpt4v-browsing](https://github.com/tuhinmallick/gpt4v-browsing) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/ChainFury/pull/1#issuecomment-1826922825) in [tuhinmallick/ChainFury](https://github.com/tuhinmallick/ChainFury) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/lollms-webui/pull/1#issuecomment-1826922475) in [tuhinmallick/lollms-webui](https://github.com/tuhinmallick/lollms-webui) +9. 🗣 Commented on [#241](https://github.com/aimclub/GOLEM/pull/241#issuecomment-1826914929) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#21557](https://github.com/spyder-ide/spyder/pull/21557#issuecomment-1826835594) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 980d4e3bf9d48fe801dbcc21268f873c20ae267e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 14:37:36 +0000 Subject: [PATCH 0738/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b221eaec..5ef4d8e3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#59](https://github.com/eastgenomics/eris/pull/59#issuecomment-1827857984) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#58](https://github.com/eastgenomics/eris/pull/58#issuecomment-1827805786) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#10](https://github.com/tzamalisp/crossai/pull/10#issuecomment-1827288168) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -4. 🗣 Commented on [#171](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/171#issuecomment-1827165681) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Prompt4LLM-Eval/pull/1#issuecomment-1826926284) in [tuhinmallick/Prompt4LLM-Eval](https://github.com/tuhinmallick/Prompt4LLM-Eval) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt4v-browsing/pull/1#issuecomment-1826925698) in [tuhinmallick/gpt4v-browsing](https://github.com/tuhinmallick/gpt4v-browsing) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/ChainFury/pull/1#issuecomment-1826922825) in [tuhinmallick/ChainFury](https://github.com/tuhinmallick/ChainFury) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/lollms-webui/pull/1#issuecomment-1826922475) in [tuhinmallick/lollms-webui](https://github.com/tuhinmallick/lollms-webui) -9. 🗣 Commented on [#241](https://github.com/aimclub/GOLEM/pull/241#issuecomment-1826914929) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#21557](https://github.com/spyder-ide/spyder/pull/21557#issuecomment-1826835594) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#5345](https://github.com/rhinstaller/anaconda/pull/5345#issuecomment-1827927588) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#59](https://github.com/eastgenomics/eris/pull/59#issuecomment-1827857984) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#58](https://github.com/eastgenomics/eris/pull/58#issuecomment-1827805786) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#10](https://github.com/tzamalisp/crossai/pull/10#issuecomment-1827288168) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +5. 🗣 Commented on [#171](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/171#issuecomment-1827165681) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Prompt4LLM-Eval/pull/1#issuecomment-1826926284) in [tuhinmallick/Prompt4LLM-Eval](https://github.com/tuhinmallick/Prompt4LLM-Eval) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt4v-browsing/pull/1#issuecomment-1826925698) in [tuhinmallick/gpt4v-browsing](https://github.com/tuhinmallick/gpt4v-browsing) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/ChainFury/pull/1#issuecomment-1826922825) in [tuhinmallick/ChainFury](https://github.com/tuhinmallick/ChainFury) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/lollms-webui/pull/1#issuecomment-1826922475) in [tuhinmallick/lollms-webui](https://github.com/tuhinmallick/lollms-webui) +10. 🗣 Commented on [#241](https://github.com/aimclub/GOLEM/pull/241#issuecomment-1826914929) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) From 57c065e0335ed636d4051dee4bfbedf557fec8cb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 16:22:11 +0000 Subject: [PATCH 0739/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5ef4d8e3..9c483855 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5345](https://github.com/rhinstaller/anaconda/pull/5345#issuecomment-1827927588) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#59](https://github.com/eastgenomics/eris/pull/59#issuecomment-1827857984) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#58](https://github.com/eastgenomics/eris/pull/58#issuecomment-1827805786) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#10](https://github.com/tzamalisp/crossai/pull/10#issuecomment-1827288168) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -5. 🗣 Commented on [#171](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/171#issuecomment-1827165681) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Prompt4LLM-Eval/pull/1#issuecomment-1826926284) in [tuhinmallick/Prompt4LLM-Eval](https://github.com/tuhinmallick/Prompt4LLM-Eval) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt4v-browsing/pull/1#issuecomment-1826925698) in [tuhinmallick/gpt4v-browsing](https://github.com/tuhinmallick/gpt4v-browsing) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/ChainFury/pull/1#issuecomment-1826922825) in [tuhinmallick/ChainFury](https://github.com/tuhinmallick/ChainFury) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/lollms-webui/pull/1#issuecomment-1826922475) in [tuhinmallick/lollms-webui](https://github.com/tuhinmallick/lollms-webui) -10. 🗣 Commented on [#241](https://github.com/aimclub/GOLEM/pull/241#issuecomment-1826914929) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +1. 🗣 Commented on [#60](https://github.com/eastgenomics/eris/pull/60#issuecomment-1828138738) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#184](https://github.com/damnever/pigar/pull/184#issuecomment-1828136324) in [damnever/pigar](https://github.com/damnever/pigar) +3. 🗣 Commented on [#1209](https://github.com/aimclub/FEDOT/pull/1209#issuecomment-1828113824) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#5345](https://github.com/rhinstaller/anaconda/pull/5345#issuecomment-1827927588) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#59](https://github.com/eastgenomics/eris/pull/59#issuecomment-1827857984) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#58](https://github.com/eastgenomics/eris/pull/58#issuecomment-1827805786) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#10](https://github.com/tzamalisp/crossai/pull/10#issuecomment-1827288168) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +8. 🗣 Commented on [#171](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/171#issuecomment-1827165681) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Prompt4LLM-Eval/pull/1#issuecomment-1826926284) in [tuhinmallick/Prompt4LLM-Eval](https://github.com/tuhinmallick/Prompt4LLM-Eval) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt4v-browsing/pull/1#issuecomment-1826925698) in [tuhinmallick/gpt4v-browsing](https://github.com/tuhinmallick/gpt4v-browsing) From a3e93a86c7ec81c79755255a690a77fb9666f613 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 18:20:51 +0000 Subject: [PATCH 0740/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9c483855..1df6a5dd 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#60](https://github.com/eastgenomics/eris/pull/60#issuecomment-1828138738) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#184](https://github.com/damnever/pigar/pull/184#issuecomment-1828136324) in [damnever/pigar](https://github.com/damnever/pigar) -3. 🗣 Commented on [#1209](https://github.com/aimclub/FEDOT/pull/1209#issuecomment-1828113824) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#5345](https://github.com/rhinstaller/anaconda/pull/5345#issuecomment-1827927588) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#59](https://github.com/eastgenomics/eris/pull/59#issuecomment-1827857984) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#58](https://github.com/eastgenomics/eris/pull/58#issuecomment-1827805786) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#10](https://github.com/tzamalisp/crossai/pull/10#issuecomment-1827288168) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -8. 🗣 Commented on [#171](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/171#issuecomment-1827165681) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Prompt4LLM-Eval/pull/1#issuecomment-1826926284) in [tuhinmallick/Prompt4LLM-Eval](https://github.com/tuhinmallick/Prompt4LLM-Eval) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/gpt4v-browsing/pull/1#issuecomment-1826925698) in [tuhinmallick/gpt4v-browsing](https://github.com/tuhinmallick/gpt4v-browsing) +1. 🗣 Commented on [#2886](https://github.com/astropy/astroquery/pull/2886#issuecomment-1828369924) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#60](https://github.com/eastgenomics/eris/pull/60#issuecomment-1828138738) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#184](https://github.com/damnever/pigar/pull/184#issuecomment-1828136324) in [damnever/pigar](https://github.com/damnever/pigar) +4. 🗣 Commented on [#1209](https://github.com/aimclub/FEDOT/pull/1209#issuecomment-1828113824) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#5345](https://github.com/rhinstaller/anaconda/pull/5345#issuecomment-1827927588) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#59](https://github.com/eastgenomics/eris/pull/59#issuecomment-1827857984) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#58](https://github.com/eastgenomics/eris/pull/58#issuecomment-1827805786) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#10](https://github.com/tzamalisp/crossai/pull/10#issuecomment-1827288168) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +9. 🗣 Commented on [#171](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/171#issuecomment-1827165681) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Prompt4LLM-Eval/pull/1#issuecomment-1826926284) in [tuhinmallick/Prompt4LLM-Eval](https://github.com/tuhinmallick/Prompt4LLM-Eval) From 9e8a3e171c3efb4579262a11a6c9d66eb022c846 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 22:14:24 +0000 Subject: [PATCH 0741/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1df6a5dd..bbc39d9e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2886](https://github.com/astropy/astroquery/pull/2886#issuecomment-1828369924) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#60](https://github.com/eastgenomics/eris/pull/60#issuecomment-1828138738) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#184](https://github.com/damnever/pigar/pull/184#issuecomment-1828136324) in [damnever/pigar](https://github.com/damnever/pigar) -4. 🗣 Commented on [#1209](https://github.com/aimclub/FEDOT/pull/1209#issuecomment-1828113824) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#5345](https://github.com/rhinstaller/anaconda/pull/5345#issuecomment-1827927588) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#59](https://github.com/eastgenomics/eris/pull/59#issuecomment-1827857984) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#58](https://github.com/eastgenomics/eris/pull/58#issuecomment-1827805786) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#10](https://github.com/tzamalisp/crossai/pull/10#issuecomment-1827288168) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -9. 🗣 Commented on [#171](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/171#issuecomment-1827165681) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Prompt4LLM-Eval/pull/1#issuecomment-1826926284) in [tuhinmallick/Prompt4LLM-Eval](https://github.com/tuhinmallick/Prompt4LLM-Eval) +1. 🗣 Commented on [#148](https://github.com/eastgenomics/dias_batch_running/pull/148#issuecomment-1828685253) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#2886](https://github.com/astropy/astroquery/pull/2886#issuecomment-1828369924) in [astropy/astroquery](https://github.com/astropy/astroquery) +3. 🗣 Commented on [#60](https://github.com/eastgenomics/eris/pull/60#issuecomment-1828138738) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#184](https://github.com/damnever/pigar/pull/184#issuecomment-1828136324) in [damnever/pigar](https://github.com/damnever/pigar) +5. 🗣 Commented on [#1209](https://github.com/aimclub/FEDOT/pull/1209#issuecomment-1828113824) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#5345](https://github.com/rhinstaller/anaconda/pull/5345#issuecomment-1827927588) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#59](https://github.com/eastgenomics/eris/pull/59#issuecomment-1827857984) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#58](https://github.com/eastgenomics/eris/pull/58#issuecomment-1827805786) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#10](https://github.com/tzamalisp/crossai/pull/10#issuecomment-1827288168) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +10. 🗣 Commented on [#171](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/171#issuecomment-1827165681) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) From 3fe04f29c7538a8b6c64e276b0de1128f9b49b11 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 23:16:58 +0000 Subject: [PATCH 0742/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bbc39d9e..308174f1 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#148](https://github.com/eastgenomics/dias_batch_running/pull/148#issuecomment-1828685253) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#2886](https://github.com/astropy/astroquery/pull/2886#issuecomment-1828369924) in [astropy/astroquery](https://github.com/astropy/astroquery) -3. 🗣 Commented on [#60](https://github.com/eastgenomics/eris/pull/60#issuecomment-1828138738) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#184](https://github.com/damnever/pigar/pull/184#issuecomment-1828136324) in [damnever/pigar](https://github.com/damnever/pigar) -5. 🗣 Commented on [#1209](https://github.com/aimclub/FEDOT/pull/1209#issuecomment-1828113824) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#5345](https://github.com/rhinstaller/anaconda/pull/5345#issuecomment-1827927588) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#59](https://github.com/eastgenomics/eris/pull/59#issuecomment-1827857984) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#58](https://github.com/eastgenomics/eris/pull/58#issuecomment-1827805786) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#10](https://github.com/tzamalisp/crossai/pull/10#issuecomment-1827288168) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -10. 🗣 Commented on [#171](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/171#issuecomment-1827165681) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) +1. 🗣 Commented on [#291](https://github.com/AdvancedPhotonSource/tike/pull/291#issuecomment-1828745280) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +2. 🗣 Commented on [#148](https://github.com/eastgenomics/dias_batch_running/pull/148#issuecomment-1828685253) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#2886](https://github.com/astropy/astroquery/pull/2886#issuecomment-1828369924) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#60](https://github.com/eastgenomics/eris/pull/60#issuecomment-1828138738) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#184](https://github.com/damnever/pigar/pull/184#issuecomment-1828136324) in [damnever/pigar](https://github.com/damnever/pigar) +6. 🗣 Commented on [#1209](https://github.com/aimclub/FEDOT/pull/1209#issuecomment-1828113824) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#5345](https://github.com/rhinstaller/anaconda/pull/5345#issuecomment-1827927588) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#59](https://github.com/eastgenomics/eris/pull/59#issuecomment-1827857984) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#58](https://github.com/eastgenomics/eris/pull/58#issuecomment-1827805786) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#10](https://github.com/tzamalisp/crossai/pull/10#issuecomment-1827288168) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) From 35153d57d35eb5a086cbbaafa117210208ff786e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Nov 2023 01:14:21 +0000 Subject: [PATCH 0743/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 308174f1..daeed662 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#291](https://github.com/AdvancedPhotonSource/tike/pull/291#issuecomment-1828745280) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -2. 🗣 Commented on [#148](https://github.com/eastgenomics/dias_batch_running/pull/148#issuecomment-1828685253) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#2886](https://github.com/astropy/astroquery/pull/2886#issuecomment-1828369924) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#60](https://github.com/eastgenomics/eris/pull/60#issuecomment-1828138738) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#184](https://github.com/damnever/pigar/pull/184#issuecomment-1828136324) in [damnever/pigar](https://github.com/damnever/pigar) -6. 🗣 Commented on [#1209](https://github.com/aimclub/FEDOT/pull/1209#issuecomment-1828113824) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#5345](https://github.com/rhinstaller/anaconda/pull/5345#issuecomment-1827927588) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#59](https://github.com/eastgenomics/eris/pull/59#issuecomment-1827857984) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#58](https://github.com/eastgenomics/eris/pull/58#issuecomment-1827805786) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#10](https://github.com/tzamalisp/crossai/pull/10#issuecomment-1827288168) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +1. 🗣 Commented on [#243](https://github.com/aimclub/GOLEM/pull/243#issuecomment-1828835192) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#291](https://github.com/AdvancedPhotonSource/tike/pull/291#issuecomment-1828745280) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +3. 🗣 Commented on [#148](https://github.com/eastgenomics/dias_batch_running/pull/148#issuecomment-1828685253) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +4. 🗣 Commented on [#2886](https://github.com/astropy/astroquery/pull/2886#issuecomment-1828369924) in [astropy/astroquery](https://github.com/astropy/astroquery) +5. 🗣 Commented on [#60](https://github.com/eastgenomics/eris/pull/60#issuecomment-1828138738) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#184](https://github.com/damnever/pigar/pull/184#issuecomment-1828136324) in [damnever/pigar](https://github.com/damnever/pigar) +7. 🗣 Commented on [#1209](https://github.com/aimclub/FEDOT/pull/1209#issuecomment-1828113824) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#5345](https://github.com/rhinstaller/anaconda/pull/5345#issuecomment-1827927588) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#59](https://github.com/eastgenomics/eris/pull/59#issuecomment-1827857984) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#58](https://github.com/eastgenomics/eris/pull/58#issuecomment-1827805786) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 834da87c677f0e96179ff8e7be67817ad65068a5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Nov 2023 10:18:12 +0000 Subject: [PATCH 0744/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index daeed662..7281c385 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#243](https://github.com/aimclub/GOLEM/pull/243#issuecomment-1828835192) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#291](https://github.com/AdvancedPhotonSource/tike/pull/291#issuecomment-1828745280) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -3. 🗣 Commented on [#148](https://github.com/eastgenomics/dias_batch_running/pull/148#issuecomment-1828685253) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -4. 🗣 Commented on [#2886](https://github.com/astropy/astroquery/pull/2886#issuecomment-1828369924) in [astropy/astroquery](https://github.com/astropy/astroquery) -5. 🗣 Commented on [#60](https://github.com/eastgenomics/eris/pull/60#issuecomment-1828138738) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#184](https://github.com/damnever/pigar/pull/184#issuecomment-1828136324) in [damnever/pigar](https://github.com/damnever/pigar) -7. 🗣 Commented on [#1209](https://github.com/aimclub/FEDOT/pull/1209#issuecomment-1828113824) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#5345](https://github.com/rhinstaller/anaconda/pull/5345#issuecomment-1827927588) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#59](https://github.com/eastgenomics/eris/pull/59#issuecomment-1827857984) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#58](https://github.com/eastgenomics/eris/pull/58#issuecomment-1827805786) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#1353](https://github.com/NeuralEnsemble/python-neo/pull/1353#issuecomment-1829478438) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +2. 🗣 Commented on [#243](https://github.com/aimclub/GOLEM/pull/243#issuecomment-1828835192) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#291](https://github.com/AdvancedPhotonSource/tike/pull/291#issuecomment-1828745280) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +4. 🗣 Commented on [#148](https://github.com/eastgenomics/dias_batch_running/pull/148#issuecomment-1828685253) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#2886](https://github.com/astropy/astroquery/pull/2886#issuecomment-1828369924) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#60](https://github.com/eastgenomics/eris/pull/60#issuecomment-1828138738) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#184](https://github.com/damnever/pigar/pull/184#issuecomment-1828136324) in [damnever/pigar](https://github.com/damnever/pigar) +8. 🗣 Commented on [#1209](https://github.com/aimclub/FEDOT/pull/1209#issuecomment-1828113824) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#5345](https://github.com/rhinstaller/anaconda/pull/5345#issuecomment-1827927588) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#59](https://github.com/eastgenomics/eris/pull/59#issuecomment-1827857984) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 74cbfe6cfa9f83ee7842d0765d0babf67113343f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Nov 2023 12:32:02 +0000 Subject: [PATCH 0745/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7281c385..a3f74470 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1353](https://github.com/NeuralEnsemble/python-neo/pull/1353#issuecomment-1829478438) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -2. 🗣 Commented on [#243](https://github.com/aimclub/GOLEM/pull/243#issuecomment-1828835192) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#291](https://github.com/AdvancedPhotonSource/tike/pull/291#issuecomment-1828745280) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -4. 🗣 Commented on [#148](https://github.com/eastgenomics/dias_batch_running/pull/148#issuecomment-1828685253) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#2886](https://github.com/astropy/astroquery/pull/2886#issuecomment-1828369924) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#60](https://github.com/eastgenomics/eris/pull/60#issuecomment-1828138738) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#184](https://github.com/damnever/pigar/pull/184#issuecomment-1828136324) in [damnever/pigar](https://github.com/damnever/pigar) -8. 🗣 Commented on [#1209](https://github.com/aimclub/FEDOT/pull/1209#issuecomment-1828113824) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#5345](https://github.com/rhinstaller/anaconda/pull/5345#issuecomment-1827927588) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#59](https://github.com/eastgenomics/eris/pull/59#issuecomment-1827857984) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#5351](https://github.com/rhinstaller/anaconda/pull/5351#issuecomment-1829723677) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#5350](https://github.com/rhinstaller/anaconda/pull/5350#issuecomment-1829717723) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#217](https://github.com/UKRIN-MAPS/ukat/pull/217#issuecomment-1829707848) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) +4. 🗣 Commented on [#1353](https://github.com/NeuralEnsemble/python-neo/pull/1353#issuecomment-1829478438) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +5. 🗣 Commented on [#243](https://github.com/aimclub/GOLEM/pull/243#issuecomment-1828835192) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#291](https://github.com/AdvancedPhotonSource/tike/pull/291#issuecomment-1828745280) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +7. 🗣 Commented on [#148](https://github.com/eastgenomics/dias_batch_running/pull/148#issuecomment-1828685253) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#2886](https://github.com/astropy/astroquery/pull/2886#issuecomment-1828369924) in [astropy/astroquery](https://github.com/astropy/astroquery) +9. 🗣 Commented on [#60](https://github.com/eastgenomics/eris/pull/60#issuecomment-1828138738) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#184](https://github.com/damnever/pigar/pull/184#issuecomment-1828136324) in [damnever/pigar](https://github.com/damnever/pigar) From 968a40f0aa31f9235ee1275a783a7eb384307882 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Nov 2023 13:37:13 +0000 Subject: [PATCH 0746/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a3f74470..2542b54e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#5351](https://github.com/rhinstaller/anaconda/pull/5351#issuecomment-1829723677) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#5350](https://github.com/rhinstaller/anaconda/pull/5350#issuecomment-1829717723) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#217](https://github.com/UKRIN-MAPS/ukat/pull/217#issuecomment-1829707848) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) -4. 🗣 Commented on [#1353](https://github.com/NeuralEnsemble/python-neo/pull/1353#issuecomment-1829478438) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -5. 🗣 Commented on [#243](https://github.com/aimclub/GOLEM/pull/243#issuecomment-1828835192) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#291](https://github.com/AdvancedPhotonSource/tike/pull/291#issuecomment-1828745280) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -7. 🗣 Commented on [#148](https://github.com/eastgenomics/dias_batch_running/pull/148#issuecomment-1828685253) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#2886](https://github.com/astropy/astroquery/pull/2886#issuecomment-1828369924) in [astropy/astroquery](https://github.com/astropy/astroquery) -9. 🗣 Commented on [#60](https://github.com/eastgenomics/eris/pull/60#issuecomment-1828138738) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#184](https://github.com/damnever/pigar/pull/184#issuecomment-1828136324) in [damnever/pigar](https://github.com/damnever/pigar) +1. 🗣 Commented on [#875](https://github.com/ToFuProject/tofu/pull/875#issuecomment-1829846563) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#5351](https://github.com/rhinstaller/anaconda/pull/5351#issuecomment-1829723677) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#5350](https://github.com/rhinstaller/anaconda/pull/5350#issuecomment-1829717723) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#217](https://github.com/UKRIN-MAPS/ukat/pull/217#issuecomment-1829707848) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) +5. 🗣 Commented on [#1353](https://github.com/NeuralEnsemble/python-neo/pull/1353#issuecomment-1829478438) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +6. 🗣 Commented on [#243](https://github.com/aimclub/GOLEM/pull/243#issuecomment-1828835192) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#291](https://github.com/AdvancedPhotonSource/tike/pull/291#issuecomment-1828745280) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +8. 🗣 Commented on [#148](https://github.com/eastgenomics/dias_batch_running/pull/148#issuecomment-1828685253) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#2886](https://github.com/astropy/astroquery/pull/2886#issuecomment-1828369924) in [astropy/astroquery](https://github.com/astropy/astroquery) +10. 🗣 Commented on [#60](https://github.com/eastgenomics/eris/pull/60#issuecomment-1828138738) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 73c673a672a1da1af476e4313698c2e7735a80a7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Nov 2023 14:15:37 +0000 Subject: [PATCH 0747/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2542b54e..76722128 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#875](https://github.com/ToFuProject/tofu/pull/875#issuecomment-1829846563) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#5351](https://github.com/rhinstaller/anaconda/pull/5351#issuecomment-1829723677) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#5350](https://github.com/rhinstaller/anaconda/pull/5350#issuecomment-1829717723) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#217](https://github.com/UKRIN-MAPS/ukat/pull/217#issuecomment-1829707848) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) -5. 🗣 Commented on [#1353](https://github.com/NeuralEnsemble/python-neo/pull/1353#issuecomment-1829478438) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -6. 🗣 Commented on [#243](https://github.com/aimclub/GOLEM/pull/243#issuecomment-1828835192) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#291](https://github.com/AdvancedPhotonSource/tike/pull/291#issuecomment-1828745280) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -8. 🗣 Commented on [#148](https://github.com/eastgenomics/dias_batch_running/pull/148#issuecomment-1828685253) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#2886](https://github.com/astropy/astroquery/pull/2886#issuecomment-1828369924) in [astropy/astroquery](https://github.com/astropy/astroquery) -10. 🗣 Commented on [#60](https://github.com/eastgenomics/eris/pull/60#issuecomment-1828138738) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#85](https://github.com/ITMO-NSS-team/GAMLET/pull/85#issuecomment-1829882890) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +2. 🗣 Commented on [#875](https://github.com/ToFuProject/tofu/pull/875#issuecomment-1829846563) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#5351](https://github.com/rhinstaller/anaconda/pull/5351#issuecomment-1829723677) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#5350](https://github.com/rhinstaller/anaconda/pull/5350#issuecomment-1829717723) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#217](https://github.com/UKRIN-MAPS/ukat/pull/217#issuecomment-1829707848) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) +6. 🗣 Commented on [#1353](https://github.com/NeuralEnsemble/python-neo/pull/1353#issuecomment-1829478438) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +7. 🗣 Commented on [#243](https://github.com/aimclub/GOLEM/pull/243#issuecomment-1828835192) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +8. 🗣 Commented on [#291](https://github.com/AdvancedPhotonSource/tike/pull/291#issuecomment-1828745280) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +9. 🗣 Commented on [#148](https://github.com/eastgenomics/dias_batch_running/pull/148#issuecomment-1828685253) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#2886](https://github.com/astropy/astroquery/pull/2886#issuecomment-1828369924) in [astropy/astroquery](https://github.com/astropy/astroquery) From 8aed84d5887a9e413d31218a3c1128e63315b168 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Nov 2023 17:14:37 +0000 Subject: [PATCH 0748/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 76722128..94ac1edc 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#85](https://github.com/ITMO-NSS-team/GAMLET/pull/85#issuecomment-1829882890) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -2. 🗣 Commented on [#875](https://github.com/ToFuProject/tofu/pull/875#issuecomment-1829846563) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#5351](https://github.com/rhinstaller/anaconda/pull/5351#issuecomment-1829723677) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#5350](https://github.com/rhinstaller/anaconda/pull/5350#issuecomment-1829717723) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#217](https://github.com/UKRIN-MAPS/ukat/pull/217#issuecomment-1829707848) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) -6. 🗣 Commented on [#1353](https://github.com/NeuralEnsemble/python-neo/pull/1353#issuecomment-1829478438) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -7. 🗣 Commented on [#243](https://github.com/aimclub/GOLEM/pull/243#issuecomment-1828835192) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -8. 🗣 Commented on [#291](https://github.com/AdvancedPhotonSource/tike/pull/291#issuecomment-1828745280) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -9. 🗣 Commented on [#148](https://github.com/eastgenomics/dias_batch_running/pull/148#issuecomment-1828685253) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#2886](https://github.com/astropy/astroquery/pull/2886#issuecomment-1828369924) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#158](https://github.com/StingraySoftware/HENDRICS/pull/158#issuecomment-1830306605) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) +2. 🗣 Commented on [#85](https://github.com/ITMO-NSS-team/GAMLET/pull/85#issuecomment-1829882890) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +3. 🗣 Commented on [#875](https://github.com/ToFuProject/tofu/pull/875#issuecomment-1829846563) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#5351](https://github.com/rhinstaller/anaconda/pull/5351#issuecomment-1829723677) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#5350](https://github.com/rhinstaller/anaconda/pull/5350#issuecomment-1829717723) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#217](https://github.com/UKRIN-MAPS/ukat/pull/217#issuecomment-1829707848) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) +7. 🗣 Commented on [#1353](https://github.com/NeuralEnsemble/python-neo/pull/1353#issuecomment-1829478438) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +8. 🗣 Commented on [#243](https://github.com/aimclub/GOLEM/pull/243#issuecomment-1828835192) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#291](https://github.com/AdvancedPhotonSource/tike/pull/291#issuecomment-1828745280) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +10. 🗣 Commented on [#148](https://github.com/eastgenomics/dias_batch_running/pull/148#issuecomment-1828685253) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From da29d55f3ff1cbca5f02222a5755c5cff6e47fa2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Nov 2023 18:21:10 +0000 Subject: [PATCH 0749/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 94ac1edc..d7d9c9bb 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#158](https://github.com/StingraySoftware/HENDRICS/pull/158#issuecomment-1830306605) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) -2. 🗣 Commented on [#85](https://github.com/ITMO-NSS-team/GAMLET/pull/85#issuecomment-1829882890) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -3. 🗣 Commented on [#875](https://github.com/ToFuProject/tofu/pull/875#issuecomment-1829846563) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#5351](https://github.com/rhinstaller/anaconda/pull/5351#issuecomment-1829723677) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#5350](https://github.com/rhinstaller/anaconda/pull/5350#issuecomment-1829717723) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#217](https://github.com/UKRIN-MAPS/ukat/pull/217#issuecomment-1829707848) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) -7. 🗣 Commented on [#1353](https://github.com/NeuralEnsemble/python-neo/pull/1353#issuecomment-1829478438) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -8. 🗣 Commented on [#243](https://github.com/aimclub/GOLEM/pull/243#issuecomment-1828835192) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#291](https://github.com/AdvancedPhotonSource/tike/pull/291#issuecomment-1828745280) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -10. 🗣 Commented on [#148](https://github.com/eastgenomics/dias_batch_running/pull/148#issuecomment-1828685253) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#1664](https://github.com/OGGM/oggm/pull/1664#issuecomment-1830417163) in [OGGM/oggm](https://github.com/OGGM/oggm) +2. 🗣 Commented on [#158](https://github.com/StingraySoftware/HENDRICS/pull/158#issuecomment-1830306605) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) +3. 🗣 Commented on [#85](https://github.com/ITMO-NSS-team/GAMLET/pull/85#issuecomment-1829882890) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +4. 🗣 Commented on [#875](https://github.com/ToFuProject/tofu/pull/875#issuecomment-1829846563) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#5351](https://github.com/rhinstaller/anaconda/pull/5351#issuecomment-1829723677) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#5350](https://github.com/rhinstaller/anaconda/pull/5350#issuecomment-1829717723) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#217](https://github.com/UKRIN-MAPS/ukat/pull/217#issuecomment-1829707848) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) +8. 🗣 Commented on [#1353](https://github.com/NeuralEnsemble/python-neo/pull/1353#issuecomment-1829478438) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +9. 🗣 Commented on [#243](https://github.com/aimclub/GOLEM/pull/243#issuecomment-1828835192) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#291](https://github.com/AdvancedPhotonSource/tike/pull/291#issuecomment-1828745280) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) From 68dd07655e4f0eccb6d73aa75cb21e6a92f34f97 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Nov 2023 20:17:51 +0000 Subject: [PATCH 0750/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d7d9c9bb..01f821dd 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1664](https://github.com/OGGM/oggm/pull/1664#issuecomment-1830417163) in [OGGM/oggm](https://github.com/OGGM/oggm) -2. 🗣 Commented on [#158](https://github.com/StingraySoftware/HENDRICS/pull/158#issuecomment-1830306605) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) -3. 🗣 Commented on [#85](https://github.com/ITMO-NSS-team/GAMLET/pull/85#issuecomment-1829882890) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -4. 🗣 Commented on [#875](https://github.com/ToFuProject/tofu/pull/875#issuecomment-1829846563) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#5351](https://github.com/rhinstaller/anaconda/pull/5351#issuecomment-1829723677) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#5350](https://github.com/rhinstaller/anaconda/pull/5350#issuecomment-1829717723) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#217](https://github.com/UKRIN-MAPS/ukat/pull/217#issuecomment-1829707848) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) -8. 🗣 Commented on [#1353](https://github.com/NeuralEnsemble/python-neo/pull/1353#issuecomment-1829478438) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -9. 🗣 Commented on [#243](https://github.com/aimclub/GOLEM/pull/243#issuecomment-1828835192) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#291](https://github.com/AdvancedPhotonSource/tike/pull/291#issuecomment-1828745280) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +1. 🗣 Commented on [#818](https://github.com/scilus/scilpy/pull/818#issuecomment-1830652783) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#21](https://github.com/tzamalisp/crossai/pull/21#issuecomment-1830630697) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +3. 🗣 Commented on [#1664](https://github.com/OGGM/oggm/pull/1664#issuecomment-1830417163) in [OGGM/oggm](https://github.com/OGGM/oggm) +4. 🗣 Commented on [#158](https://github.com/StingraySoftware/HENDRICS/pull/158#issuecomment-1830306605) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) +5. 🗣 Commented on [#85](https://github.com/ITMO-NSS-team/GAMLET/pull/85#issuecomment-1829882890) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +6. 🗣 Commented on [#875](https://github.com/ToFuProject/tofu/pull/875#issuecomment-1829846563) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#5351](https://github.com/rhinstaller/anaconda/pull/5351#issuecomment-1829723677) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#5350](https://github.com/rhinstaller/anaconda/pull/5350#issuecomment-1829717723) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#217](https://github.com/UKRIN-MAPS/ukat/pull/217#issuecomment-1829707848) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) +10. 🗣 Commented on [#1353](https://github.com/NeuralEnsemble/python-neo/pull/1353#issuecomment-1829478438) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) From acc63b04e964763e53bdc6b02fb1472b7d6618f2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Nov 2023 21:14:31 +0000 Subject: [PATCH 0751/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 01f821dd..4e384f15 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#818](https://github.com/scilus/scilpy/pull/818#issuecomment-1830652783) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#21](https://github.com/tzamalisp/crossai/pull/21#issuecomment-1830630697) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -3. 🗣 Commented on [#1664](https://github.com/OGGM/oggm/pull/1664#issuecomment-1830417163) in [OGGM/oggm](https://github.com/OGGM/oggm) -4. 🗣 Commented on [#158](https://github.com/StingraySoftware/HENDRICS/pull/158#issuecomment-1830306605) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) -5. 🗣 Commented on [#85](https://github.com/ITMO-NSS-team/GAMLET/pull/85#issuecomment-1829882890) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -6. 🗣 Commented on [#875](https://github.com/ToFuProject/tofu/pull/875#issuecomment-1829846563) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#5351](https://github.com/rhinstaller/anaconda/pull/5351#issuecomment-1829723677) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#5350](https://github.com/rhinstaller/anaconda/pull/5350#issuecomment-1829717723) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#217](https://github.com/UKRIN-MAPS/ukat/pull/217#issuecomment-1829707848) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) -10. 🗣 Commented on [#1353](https://github.com/NeuralEnsemble/python-neo/pull/1353#issuecomment-1829478438) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +1. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1830710599) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +2. 🗣 Commented on [#818](https://github.com/scilus/scilpy/pull/818#issuecomment-1830652783) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#21](https://github.com/tzamalisp/crossai/pull/21#issuecomment-1830630697) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +4. 🗣 Commented on [#1664](https://github.com/OGGM/oggm/pull/1664#issuecomment-1830417163) in [OGGM/oggm](https://github.com/OGGM/oggm) +5. 🗣 Commented on [#158](https://github.com/StingraySoftware/HENDRICS/pull/158#issuecomment-1830306605) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) +6. 🗣 Commented on [#85](https://github.com/ITMO-NSS-team/GAMLET/pull/85#issuecomment-1829882890) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +7. 🗣 Commented on [#875](https://github.com/ToFuProject/tofu/pull/875#issuecomment-1829846563) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#5351](https://github.com/rhinstaller/anaconda/pull/5351#issuecomment-1829723677) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#5350](https://github.com/rhinstaller/anaconda/pull/5350#issuecomment-1829717723) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#217](https://github.com/UKRIN-MAPS/ukat/pull/217#issuecomment-1829707848) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) From b8760b5c709eaddf73618e1b4c544585e45e91af Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Nov 2023 22:15:30 +0000 Subject: [PATCH 0752/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4e384f15..4e359c2b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1830710599) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -2. 🗣 Commented on [#818](https://github.com/scilus/scilpy/pull/818#issuecomment-1830652783) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#21](https://github.com/tzamalisp/crossai/pull/21#issuecomment-1830630697) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -4. 🗣 Commented on [#1664](https://github.com/OGGM/oggm/pull/1664#issuecomment-1830417163) in [OGGM/oggm](https://github.com/OGGM/oggm) -5. 🗣 Commented on [#158](https://github.com/StingraySoftware/HENDRICS/pull/158#issuecomment-1830306605) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) -6. 🗣 Commented on [#85](https://github.com/ITMO-NSS-team/GAMLET/pull/85#issuecomment-1829882890) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -7. 🗣 Commented on [#875](https://github.com/ToFuProject/tofu/pull/875#issuecomment-1829846563) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#5351](https://github.com/rhinstaller/anaconda/pull/5351#issuecomment-1829723677) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#5350](https://github.com/rhinstaller/anaconda/pull/5350#issuecomment-1829717723) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#217](https://github.com/UKRIN-MAPS/ukat/pull/217#issuecomment-1829707848) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) +1. 🗣 Commented on [#945](https://github.com/avaframe/AvaFrame/pull/945#issuecomment-1830812751) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1830710599) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +3. 🗣 Commented on [#818](https://github.com/scilus/scilpy/pull/818#issuecomment-1830652783) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#21](https://github.com/tzamalisp/crossai/pull/21#issuecomment-1830630697) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +5. 🗣 Commented on [#1664](https://github.com/OGGM/oggm/pull/1664#issuecomment-1830417163) in [OGGM/oggm](https://github.com/OGGM/oggm) +6. 🗣 Commented on [#158](https://github.com/StingraySoftware/HENDRICS/pull/158#issuecomment-1830306605) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) +7. 🗣 Commented on [#85](https://github.com/ITMO-NSS-team/GAMLET/pull/85#issuecomment-1829882890) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +8. 🗣 Commented on [#875](https://github.com/ToFuProject/tofu/pull/875#issuecomment-1829846563) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#5351](https://github.com/rhinstaller/anaconda/pull/5351#issuecomment-1829723677) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#5350](https://github.com/rhinstaller/anaconda/pull/5350#issuecomment-1829717723) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From affd15eb5a856c6b8924e74d8e25d39c5110d508 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Nov 2023 23:16:04 +0000 Subject: [PATCH 0753/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4e359c2b..6cfaeb17 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#945](https://github.com/avaframe/AvaFrame/pull/945#issuecomment-1830812751) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1830710599) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -3. 🗣 Commented on [#818](https://github.com/scilus/scilpy/pull/818#issuecomment-1830652783) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#21](https://github.com/tzamalisp/crossai/pull/21#issuecomment-1830630697) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -5. 🗣 Commented on [#1664](https://github.com/OGGM/oggm/pull/1664#issuecomment-1830417163) in [OGGM/oggm](https://github.com/OGGM/oggm) -6. 🗣 Commented on [#158](https://github.com/StingraySoftware/HENDRICS/pull/158#issuecomment-1830306605) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) -7. 🗣 Commented on [#85](https://github.com/ITMO-NSS-team/GAMLET/pull/85#issuecomment-1829882890) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -8. 🗣 Commented on [#875](https://github.com/ToFuProject/tofu/pull/875#issuecomment-1829846563) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#5351](https://github.com/rhinstaller/anaconda/pull/5351#issuecomment-1829723677) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#5350](https://github.com/rhinstaller/anaconda/pull/5350#issuecomment-1829717723) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#4402](https://github.com/pyload/pyload/pull/4402#issuecomment-1830906348) in [pyload/pyload](https://github.com/pyload/pyload) +2. 🗣 Commented on [#945](https://github.com/avaframe/AvaFrame/pull/945#issuecomment-1830812751) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1830710599) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +4. 🗣 Commented on [#818](https://github.com/scilus/scilpy/pull/818#issuecomment-1830652783) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#21](https://github.com/tzamalisp/crossai/pull/21#issuecomment-1830630697) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +6. 🗣 Commented on [#1664](https://github.com/OGGM/oggm/pull/1664#issuecomment-1830417163) in [OGGM/oggm](https://github.com/OGGM/oggm) +7. 🗣 Commented on [#158](https://github.com/StingraySoftware/HENDRICS/pull/158#issuecomment-1830306605) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) +8. 🗣 Commented on [#85](https://github.com/ITMO-NSS-team/GAMLET/pull/85#issuecomment-1829882890) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +9. 🗣 Commented on [#875](https://github.com/ToFuProject/tofu/pull/875#issuecomment-1829846563) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#5351](https://github.com/rhinstaller/anaconda/pull/5351#issuecomment-1829723677) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 2096c7002f64ee80dc7d07f047a96f61e411bd2a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Nov 2023 01:14:20 +0000 Subject: [PATCH 0754/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6cfaeb17..87d11a85 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4402](https://github.com/pyload/pyload/pull/4402#issuecomment-1830906348) in [pyload/pyload](https://github.com/pyload/pyload) -2. 🗣 Commented on [#945](https://github.com/avaframe/AvaFrame/pull/945#issuecomment-1830812751) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1830710599) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -4. 🗣 Commented on [#818](https://github.com/scilus/scilpy/pull/818#issuecomment-1830652783) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#21](https://github.com/tzamalisp/crossai/pull/21#issuecomment-1830630697) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -6. 🗣 Commented on [#1664](https://github.com/OGGM/oggm/pull/1664#issuecomment-1830417163) in [OGGM/oggm](https://github.com/OGGM/oggm) -7. 🗣 Commented on [#158](https://github.com/StingraySoftware/HENDRICS/pull/158#issuecomment-1830306605) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) -8. 🗣 Commented on [#85](https://github.com/ITMO-NSS-team/GAMLET/pull/85#issuecomment-1829882890) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -9. 🗣 Commented on [#875](https://github.com/ToFuProject/tofu/pull/875#issuecomment-1829846563) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#5351](https://github.com/rhinstaller/anaconda/pull/5351#issuecomment-1829723677) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#4403](https://github.com/pyload/pyload/pull/4403#issuecomment-1830942060) in [pyload/pyload](https://github.com/pyload/pyload) +2. 🗣 Commented on [#4402](https://github.com/pyload/pyload/pull/4402#issuecomment-1830906348) in [pyload/pyload](https://github.com/pyload/pyload) +3. 🗣 Commented on [#945](https://github.com/avaframe/AvaFrame/pull/945#issuecomment-1830812751) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1830710599) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +5. 🗣 Commented on [#818](https://github.com/scilus/scilpy/pull/818#issuecomment-1830652783) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#21](https://github.com/tzamalisp/crossai/pull/21#issuecomment-1830630697) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +7. 🗣 Commented on [#1664](https://github.com/OGGM/oggm/pull/1664#issuecomment-1830417163) in [OGGM/oggm](https://github.com/OGGM/oggm) +8. 🗣 Commented on [#158](https://github.com/StingraySoftware/HENDRICS/pull/158#issuecomment-1830306605) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) +9. 🗣 Commented on [#85](https://github.com/ITMO-NSS-team/GAMLET/pull/85#issuecomment-1829882890) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +10. 🗣 Commented on [#875](https://github.com/ToFuProject/tofu/pull/875#issuecomment-1829846563) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From a1517178a645c4c35a62815f7feac06ef8d19af9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Nov 2023 06:21:43 +0000 Subject: [PATCH 0755/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 87d11a85..ef14e1dc 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4403](https://github.com/pyload/pyload/pull/4403#issuecomment-1830942060) in [pyload/pyload](https://github.com/pyload/pyload) -2. 🗣 Commented on [#4402](https://github.com/pyload/pyload/pull/4402#issuecomment-1830906348) in [pyload/pyload](https://github.com/pyload/pyload) -3. 🗣 Commented on [#945](https://github.com/avaframe/AvaFrame/pull/945#issuecomment-1830812751) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1830710599) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -5. 🗣 Commented on [#818](https://github.com/scilus/scilpy/pull/818#issuecomment-1830652783) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#21](https://github.com/tzamalisp/crossai/pull/21#issuecomment-1830630697) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -7. 🗣 Commented on [#1664](https://github.com/OGGM/oggm/pull/1664#issuecomment-1830417163) in [OGGM/oggm](https://github.com/OGGM/oggm) -8. 🗣 Commented on [#158](https://github.com/StingraySoftware/HENDRICS/pull/158#issuecomment-1830306605) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) -9. 🗣 Commented on [#85](https://github.com/ITMO-NSS-team/GAMLET/pull/85#issuecomment-1829882890) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -10. 🗣 Commented on [#875](https://github.com/ToFuProject/tofu/pull/875#issuecomment-1829846563) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#212](https://github.com/CartoonFan/lutris/pull/212#issuecomment-1831262631) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#4403](https://github.com/pyload/pyload/pull/4403#issuecomment-1830942060) in [pyload/pyload](https://github.com/pyload/pyload) +3. 🗣 Commented on [#4402](https://github.com/pyload/pyload/pull/4402#issuecomment-1830906348) in [pyload/pyload](https://github.com/pyload/pyload) +4. 🗣 Commented on [#945](https://github.com/avaframe/AvaFrame/pull/945#issuecomment-1830812751) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1830710599) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +6. 🗣 Commented on [#818](https://github.com/scilus/scilpy/pull/818#issuecomment-1830652783) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#21](https://github.com/tzamalisp/crossai/pull/21#issuecomment-1830630697) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +8. 🗣 Commented on [#1664](https://github.com/OGGM/oggm/pull/1664#issuecomment-1830417163) in [OGGM/oggm](https://github.com/OGGM/oggm) +9. 🗣 Commented on [#158](https://github.com/StingraySoftware/HENDRICS/pull/158#issuecomment-1830306605) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) +10. 🗣 Commented on [#85](https://github.com/ITMO-NSS-team/GAMLET/pull/85#issuecomment-1829882890) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) From f6824941b41b72afae776fc0508a151b4bc8d0f4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Nov 2023 06:38:37 +0000 Subject: [PATCH 0756/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ef14e1dc..7b8e2a96 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#212](https://github.com/CartoonFan/lutris/pull/212#issuecomment-1831262631) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#4403](https://github.com/pyload/pyload/pull/4403#issuecomment-1830942060) in [pyload/pyload](https://github.com/pyload/pyload) -3. 🗣 Commented on [#4402](https://github.com/pyload/pyload/pull/4402#issuecomment-1830906348) in [pyload/pyload](https://github.com/pyload/pyload) -4. 🗣 Commented on [#945](https://github.com/avaframe/AvaFrame/pull/945#issuecomment-1830812751) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1830710599) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -6. 🗣 Commented on [#818](https://github.com/scilus/scilpy/pull/818#issuecomment-1830652783) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#21](https://github.com/tzamalisp/crossai/pull/21#issuecomment-1830630697) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -8. 🗣 Commented on [#1664](https://github.com/OGGM/oggm/pull/1664#issuecomment-1830417163) in [OGGM/oggm](https://github.com/OGGM/oggm) -9. 🗣 Commented on [#158](https://github.com/StingraySoftware/HENDRICS/pull/158#issuecomment-1830306605) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) -10. 🗣 Commented on [#85](https://github.com/ITMO-NSS-team/GAMLET/pull/85#issuecomment-1829882890) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +1. 🗣 Commented on [#7](https://github.com/kossiitkgp/mailing-scripts/pull/7#issuecomment-1831295049) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +2. 🗣 Commented on [#212](https://github.com/CartoonFan/lutris/pull/212#issuecomment-1831262631) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#4403](https://github.com/pyload/pyload/pull/4403#issuecomment-1830942060) in [pyload/pyload](https://github.com/pyload/pyload) +4. 🗣 Commented on [#4402](https://github.com/pyload/pyload/pull/4402#issuecomment-1830906348) in [pyload/pyload](https://github.com/pyload/pyload) +5. 🗣 Commented on [#945](https://github.com/avaframe/AvaFrame/pull/945#issuecomment-1830812751) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1830710599) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +7. 🗣 Commented on [#818](https://github.com/scilus/scilpy/pull/818#issuecomment-1830652783) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#21](https://github.com/tzamalisp/crossai/pull/21#issuecomment-1830630697) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +9. 🗣 Commented on [#1664](https://github.com/OGGM/oggm/pull/1664#issuecomment-1830417163) in [OGGM/oggm](https://github.com/OGGM/oggm) +10. 🗣 Commented on [#158](https://github.com/StingraySoftware/HENDRICS/pull/158#issuecomment-1830306605) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) From 3a2c6aca521153f409cb3b3bc7a50f32fc6a7bc1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Nov 2023 09:16:31 +0000 Subject: [PATCH 0757/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7b8e2a96..64ea95bf 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#7](https://github.com/kossiitkgp/mailing-scripts/pull/7#issuecomment-1831295049) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -2. 🗣 Commented on [#212](https://github.com/CartoonFan/lutris/pull/212#issuecomment-1831262631) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#4403](https://github.com/pyload/pyload/pull/4403#issuecomment-1830942060) in [pyload/pyload](https://github.com/pyload/pyload) -4. 🗣 Commented on [#4402](https://github.com/pyload/pyload/pull/4402#issuecomment-1830906348) in [pyload/pyload](https://github.com/pyload/pyload) -5. 🗣 Commented on [#945](https://github.com/avaframe/AvaFrame/pull/945#issuecomment-1830812751) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1830710599) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -7. 🗣 Commented on [#818](https://github.com/scilus/scilpy/pull/818#issuecomment-1830652783) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#21](https://github.com/tzamalisp/crossai/pull/21#issuecomment-1830630697) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) -9. 🗣 Commented on [#1664](https://github.com/OGGM/oggm/pull/1664#issuecomment-1830417163) in [OGGM/oggm](https://github.com/OGGM/oggm) -10. 🗣 Commented on [#158](https://github.com/StingraySoftware/HENDRICS/pull/158#issuecomment-1830306605) in [StingraySoftware/HENDRICS](https://github.com/StingraySoftware/HENDRICS) +1. 🗣 Commented on [#16](https://github.com/eastgenomics/code_school/pull/16#issuecomment-1831505100) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) +2. 🗣 Commented on [#389](https://github.com/payu-org/payu/pull/389#issuecomment-1831476094) in [payu-org/payu](https://github.com/payu-org/payu) +3. 🗣 Commented on [#7](https://github.com/kossiitkgp/mailing-scripts/pull/7#issuecomment-1831295049) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +4. 🗣 Commented on [#212](https://github.com/CartoonFan/lutris/pull/212#issuecomment-1831262631) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#4403](https://github.com/pyload/pyload/pull/4403#issuecomment-1830942060) in [pyload/pyload](https://github.com/pyload/pyload) +6. 🗣 Commented on [#4402](https://github.com/pyload/pyload/pull/4402#issuecomment-1830906348) in [pyload/pyload](https://github.com/pyload/pyload) +7. 🗣 Commented on [#945](https://github.com/avaframe/AvaFrame/pull/945#issuecomment-1830812751) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1830710599) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +9. 🗣 Commented on [#818](https://github.com/scilus/scilpy/pull/818#issuecomment-1830652783) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#21](https://github.com/tzamalisp/crossai/pull/21#issuecomment-1830630697) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) From 62810c472a21bb3318312c920b570b96b50cd6ed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Nov 2023 10:18:09 +0000 Subject: [PATCH 0758/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 64ea95bf..ff2f0893 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#16](https://github.com/eastgenomics/code_school/pull/16#issuecomment-1831505100) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) -2. 🗣 Commented on [#389](https://github.com/payu-org/payu/pull/389#issuecomment-1831476094) in [payu-org/payu](https://github.com/payu-org/payu) -3. 🗣 Commented on [#7](https://github.com/kossiitkgp/mailing-scripts/pull/7#issuecomment-1831295049) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -4. 🗣 Commented on [#212](https://github.com/CartoonFan/lutris/pull/212#issuecomment-1831262631) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#4403](https://github.com/pyload/pyload/pull/4403#issuecomment-1830942060) in [pyload/pyload](https://github.com/pyload/pyload) -6. 🗣 Commented on [#4402](https://github.com/pyload/pyload/pull/4402#issuecomment-1830906348) in [pyload/pyload](https://github.com/pyload/pyload) -7. 🗣 Commented on [#945](https://github.com/avaframe/AvaFrame/pull/945#issuecomment-1830812751) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1830710599) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -9. 🗣 Commented on [#818](https://github.com/scilus/scilpy/pull/818#issuecomment-1830652783) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#21](https://github.com/tzamalisp/crossai/pull/21#issuecomment-1830630697) in [tzamalisp/crossai](https://github.com/tzamalisp/crossai) +1. 🗣 Commented on [#3054](https://github.com/reframe-hpc/reframe/pull/3054#issuecomment-1831591401) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +2. 🗣 Commented on [#511](https://github.com/rpm-software-management/dnf-plugins-core/pull/511#issuecomment-1831569633) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) +3. 🗣 Commented on [#16](https://github.com/eastgenomics/code_school/pull/16#issuecomment-1831505100) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) +4. 🗣 Commented on [#389](https://github.com/payu-org/payu/pull/389#issuecomment-1831476094) in [payu-org/payu](https://github.com/payu-org/payu) +5. 🗣 Commented on [#7](https://github.com/kossiitkgp/mailing-scripts/pull/7#issuecomment-1831295049) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +6. 🗣 Commented on [#212](https://github.com/CartoonFan/lutris/pull/212#issuecomment-1831262631) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#4403](https://github.com/pyload/pyload/pull/4403#issuecomment-1830942060) in [pyload/pyload](https://github.com/pyload/pyload) +8. 🗣 Commented on [#4402](https://github.com/pyload/pyload/pull/4402#issuecomment-1830906348) in [pyload/pyload](https://github.com/pyload/pyload) +9. 🗣 Commented on [#945](https://github.com/avaframe/AvaFrame/pull/945#issuecomment-1830812751) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1830710599) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) From cbd5a6cc6fe49c149766032534cbde56c232fa6a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Nov 2023 12:32:04 +0000 Subject: [PATCH 0759/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ff2f0893..ee8a2799 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#3054](https://github.com/reframe-hpc/reframe/pull/3054#issuecomment-1831591401) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -2. 🗣 Commented on [#511](https://github.com/rpm-software-management/dnf-plugins-core/pull/511#issuecomment-1831569633) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) -3. 🗣 Commented on [#16](https://github.com/eastgenomics/code_school/pull/16#issuecomment-1831505100) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) -4. 🗣 Commented on [#389](https://github.com/payu-org/payu/pull/389#issuecomment-1831476094) in [payu-org/payu](https://github.com/payu-org/payu) -5. 🗣 Commented on [#7](https://github.com/kossiitkgp/mailing-scripts/pull/7#issuecomment-1831295049) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -6. 🗣 Commented on [#212](https://github.com/CartoonFan/lutris/pull/212#issuecomment-1831262631) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#4403](https://github.com/pyload/pyload/pull/4403#issuecomment-1830942060) in [pyload/pyload](https://github.com/pyload/pyload) -8. 🗣 Commented on [#4402](https://github.com/pyload/pyload/pull/4402#issuecomment-1830906348) in [pyload/pyload](https://github.com/pyload/pyload) -9. 🗣 Commented on [#945](https://github.com/avaframe/AvaFrame/pull/945#issuecomment-1830812751) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1830710599) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +1. 🗣 Commented on [#1213](https://github.com/aimclub/FEDOT/pull/1213#issuecomment-1831782579) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#57](https://github.com/eastgenomics/eris/pull/57#issuecomment-1831761278) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#3054](https://github.com/reframe-hpc/reframe/pull/3054#issuecomment-1831591401) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +4. 🗣 Commented on [#511](https://github.com/rpm-software-management/dnf-plugins-core/pull/511#issuecomment-1831569633) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) +5. 🗣 Commented on [#16](https://github.com/eastgenomics/code_school/pull/16#issuecomment-1831505100) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) +6. 🗣 Commented on [#389](https://github.com/payu-org/payu/pull/389#issuecomment-1831476094) in [payu-org/payu](https://github.com/payu-org/payu) +7. 🗣 Commented on [#7](https://github.com/kossiitkgp/mailing-scripts/pull/7#issuecomment-1831295049) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +8. 🗣 Commented on [#212](https://github.com/CartoonFan/lutris/pull/212#issuecomment-1831262631) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#4403](https://github.com/pyload/pyload/pull/4403#issuecomment-1830942060) in [pyload/pyload](https://github.com/pyload/pyload) +10. 🗣 Commented on [#4402](https://github.com/pyload/pyload/pull/4402#issuecomment-1830906348) in [pyload/pyload](https://github.com/pyload/pyload) From a163d335946878ea5e5797b289053a7a3e3c4bba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Nov 2023 13:19:52 +0000 Subject: [PATCH 0760/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ee8a2799..ac421fde 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1213](https://github.com/aimclub/FEDOT/pull/1213#issuecomment-1831782579) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#57](https://github.com/eastgenomics/eris/pull/57#issuecomment-1831761278) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#3054](https://github.com/reframe-hpc/reframe/pull/3054#issuecomment-1831591401) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -4. 🗣 Commented on [#511](https://github.com/rpm-software-management/dnf-plugins-core/pull/511#issuecomment-1831569633) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) -5. 🗣 Commented on [#16](https://github.com/eastgenomics/code_school/pull/16#issuecomment-1831505100) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) -6. 🗣 Commented on [#389](https://github.com/payu-org/payu/pull/389#issuecomment-1831476094) in [payu-org/payu](https://github.com/payu-org/payu) -7. 🗣 Commented on [#7](https://github.com/kossiitkgp/mailing-scripts/pull/7#issuecomment-1831295049) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -8. 🗣 Commented on [#212](https://github.com/CartoonFan/lutris/pull/212#issuecomment-1831262631) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#4403](https://github.com/pyload/pyload/pull/4403#issuecomment-1830942060) in [pyload/pyload](https://github.com/pyload/pyload) -10. 🗣 Commented on [#4402](https://github.com/pyload/pyload/pull/4402#issuecomment-1830906348) in [pyload/pyload](https://github.com/pyload/pyload) +1. 🗣 Commented on [#1210](https://github.com/aimclub/FEDOT/pull/1210#issuecomment-1831882391) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#1213](https://github.com/aimclub/FEDOT/pull/1213#issuecomment-1831782579) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#57](https://github.com/eastgenomics/eris/pull/57#issuecomment-1831761278) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#3054](https://github.com/reframe-hpc/reframe/pull/3054#issuecomment-1831591401) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +5. 🗣 Commented on [#511](https://github.com/rpm-software-management/dnf-plugins-core/pull/511#issuecomment-1831569633) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) +6. 🗣 Commented on [#16](https://github.com/eastgenomics/code_school/pull/16#issuecomment-1831505100) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) +7. 🗣 Commented on [#389](https://github.com/payu-org/payu/pull/389#issuecomment-1831476094) in [payu-org/payu](https://github.com/payu-org/payu) +8. 🗣 Commented on [#7](https://github.com/kossiitkgp/mailing-scripts/pull/7#issuecomment-1831295049) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +9. 🗣 Commented on [#212](https://github.com/CartoonFan/lutris/pull/212#issuecomment-1831262631) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#4403](https://github.com/pyload/pyload/pull/4403#issuecomment-1830942060) in [pyload/pyload](https://github.com/pyload/pyload) From 3f2f6b9ea4287b1f112321ee72a08acffec66983 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Nov 2023 14:14:28 +0000 Subject: [PATCH 0761/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ac421fde..41af3fad 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1210](https://github.com/aimclub/FEDOT/pull/1210#issuecomment-1831882391) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#1213](https://github.com/aimclub/FEDOT/pull/1213#issuecomment-1831782579) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#57](https://github.com/eastgenomics/eris/pull/57#issuecomment-1831761278) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#3054](https://github.com/reframe-hpc/reframe/pull/3054#issuecomment-1831591401) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -5. 🗣 Commented on [#511](https://github.com/rpm-software-management/dnf-plugins-core/pull/511#issuecomment-1831569633) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) -6. 🗣 Commented on [#16](https://github.com/eastgenomics/code_school/pull/16#issuecomment-1831505100) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) -7. 🗣 Commented on [#389](https://github.com/payu-org/payu/pull/389#issuecomment-1831476094) in [payu-org/payu](https://github.com/payu-org/payu) -8. 🗣 Commented on [#7](https://github.com/kossiitkgp/mailing-scripts/pull/7#issuecomment-1831295049) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -9. 🗣 Commented on [#212](https://github.com/CartoonFan/lutris/pull/212#issuecomment-1831262631) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#4403](https://github.com/pyload/pyload/pull/4403#issuecomment-1830942060) in [pyload/pyload](https://github.com/pyload/pyload) +1. 🗣 Commented on [#1584](https://github.com/zarr-developers/zarr-python/pull/1584#issuecomment-1831946209) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +2. 🗣 Commented on [#1210](https://github.com/aimclub/FEDOT/pull/1210#issuecomment-1831882391) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#1213](https://github.com/aimclub/FEDOT/pull/1213#issuecomment-1831782579) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#57](https://github.com/eastgenomics/eris/pull/57#issuecomment-1831761278) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#3054](https://github.com/reframe-hpc/reframe/pull/3054#issuecomment-1831591401) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +6. 🗣 Commented on [#511](https://github.com/rpm-software-management/dnf-plugins-core/pull/511#issuecomment-1831569633) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) +7. 🗣 Commented on [#16](https://github.com/eastgenomics/code_school/pull/16#issuecomment-1831505100) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) +8. 🗣 Commented on [#389](https://github.com/payu-org/payu/pull/389#issuecomment-1831476094) in [payu-org/payu](https://github.com/payu-org/payu) +9. 🗣 Commented on [#7](https://github.com/kossiitkgp/mailing-scripts/pull/7#issuecomment-1831295049) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +10. 🗣 Commented on [#212](https://github.com/CartoonFan/lutris/pull/212#issuecomment-1831262631) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From cf56a9504b0dcbc2558d460a02eb9e0fe66233bb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Nov 2023 14:37:27 +0000 Subject: [PATCH 0762/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 41af3fad..00f07d4a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1584](https://github.com/zarr-developers/zarr-python/pull/1584#issuecomment-1831946209) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -2. 🗣 Commented on [#1210](https://github.com/aimclub/FEDOT/pull/1210#issuecomment-1831882391) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#1213](https://github.com/aimclub/FEDOT/pull/1213#issuecomment-1831782579) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#57](https://github.com/eastgenomics/eris/pull/57#issuecomment-1831761278) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#3054](https://github.com/reframe-hpc/reframe/pull/3054#issuecomment-1831591401) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -6. 🗣 Commented on [#511](https://github.com/rpm-software-management/dnf-plugins-core/pull/511#issuecomment-1831569633) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) -7. 🗣 Commented on [#16](https://github.com/eastgenomics/code_school/pull/16#issuecomment-1831505100) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) -8. 🗣 Commented on [#389](https://github.com/payu-org/payu/pull/389#issuecomment-1831476094) in [payu-org/payu](https://github.com/payu-org/payu) -9. 🗣 Commented on [#7](https://github.com/kossiitkgp/mailing-scripts/pull/7#issuecomment-1831295049) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -10. 🗣 Commented on [#212](https://github.com/CartoonFan/lutris/pull/212#issuecomment-1831262631) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#2646](https://github.com/metabrainz/listenbrainz-server/pull/2646#issuecomment-1831999416) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#1584](https://github.com/zarr-developers/zarr-python/pull/1584#issuecomment-1831946209) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +3. 🗣 Commented on [#1210](https://github.com/aimclub/FEDOT/pull/1210#issuecomment-1831882391) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#1213](https://github.com/aimclub/FEDOT/pull/1213#issuecomment-1831782579) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#57](https://github.com/eastgenomics/eris/pull/57#issuecomment-1831761278) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#3054](https://github.com/reframe-hpc/reframe/pull/3054#issuecomment-1831591401) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +7. 🗣 Commented on [#511](https://github.com/rpm-software-management/dnf-plugins-core/pull/511#issuecomment-1831569633) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) +8. 🗣 Commented on [#16](https://github.com/eastgenomics/code_school/pull/16#issuecomment-1831505100) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) +9. 🗣 Commented on [#389](https://github.com/payu-org/payu/pull/389#issuecomment-1831476094) in [payu-org/payu](https://github.com/payu-org/payu) +10. 🗣 Commented on [#7](https://github.com/kossiitkgp/mailing-scripts/pull/7#issuecomment-1831295049) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) From 9862076ac9895c34556ba26708379170fb36ab70 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Nov 2023 17:15:05 +0000 Subject: [PATCH 0763/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 00f07d4a..4a791741 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2646](https://github.com/metabrainz/listenbrainz-server/pull/2646#issuecomment-1831999416) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#1584](https://github.com/zarr-developers/zarr-python/pull/1584#issuecomment-1831946209) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -3. 🗣 Commented on [#1210](https://github.com/aimclub/FEDOT/pull/1210#issuecomment-1831882391) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#1213](https://github.com/aimclub/FEDOT/pull/1213#issuecomment-1831782579) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#57](https://github.com/eastgenomics/eris/pull/57#issuecomment-1831761278) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#3054](https://github.com/reframe-hpc/reframe/pull/3054#issuecomment-1831591401) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -7. 🗣 Commented on [#511](https://github.com/rpm-software-management/dnf-plugins-core/pull/511#issuecomment-1831569633) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) -8. 🗣 Commented on [#16](https://github.com/eastgenomics/code_school/pull/16#issuecomment-1831505100) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) -9. 🗣 Commented on [#389](https://github.com/payu-org/payu/pull/389#issuecomment-1831476094) in [payu-org/payu](https://github.com/payu-org/payu) -10. 🗣 Commented on [#7](https://github.com/kossiitkgp/mailing-scripts/pull/7#issuecomment-1831295049) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +1. 🗣 Commented on [#150](https://github.com/eastgenomics/dias_batch_running/pull/150#issuecomment-1832355729) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#1214](https://github.com/aimclub/FEDOT/pull/1214#issuecomment-1832315471) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#2646](https://github.com/metabrainz/listenbrainz-server/pull/2646#issuecomment-1831999416) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#1584](https://github.com/zarr-developers/zarr-python/pull/1584#issuecomment-1831946209) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +5. 🗣 Commented on [#1210](https://github.com/aimclub/FEDOT/pull/1210#issuecomment-1831882391) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#1213](https://github.com/aimclub/FEDOT/pull/1213#issuecomment-1831782579) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#57](https://github.com/eastgenomics/eris/pull/57#issuecomment-1831761278) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#3054](https://github.com/reframe-hpc/reframe/pull/3054#issuecomment-1831591401) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +9. 🗣 Commented on [#511](https://github.com/rpm-software-management/dnf-plugins-core/pull/511#issuecomment-1831569633) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) +10. 🗣 Commented on [#16](https://github.com/eastgenomics/code_school/pull/16#issuecomment-1831505100) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) From e7a36cfd789f65bda2f988e208c8614b5274cd41 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Nov 2023 19:13:07 +0000 Subject: [PATCH 0764/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4a791741..702ff881 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#150](https://github.com/eastgenomics/dias_batch_running/pull/150#issuecomment-1832355729) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#1214](https://github.com/aimclub/FEDOT/pull/1214#issuecomment-1832315471) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#2646](https://github.com/metabrainz/listenbrainz-server/pull/2646#issuecomment-1831999416) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#1584](https://github.com/zarr-developers/zarr-python/pull/1584#issuecomment-1831946209) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -5. 🗣 Commented on [#1210](https://github.com/aimclub/FEDOT/pull/1210#issuecomment-1831882391) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#1213](https://github.com/aimclub/FEDOT/pull/1213#issuecomment-1831782579) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#57](https://github.com/eastgenomics/eris/pull/57#issuecomment-1831761278) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#3054](https://github.com/reframe-hpc/reframe/pull/3054#issuecomment-1831591401) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -9. 🗣 Commented on [#511](https://github.com/rpm-software-management/dnf-plugins-core/pull/511#issuecomment-1831569633) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) -10. 🗣 Commented on [#16](https://github.com/eastgenomics/code_school/pull/16#issuecomment-1831505100) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) +1. 🗣 Commented on [#29](https://github.com/bento-dbaas/vip-provider/pull/29#issuecomment-1832511573) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +2. 🗣 Commented on [#150](https://github.com/eastgenomics/dias_batch_running/pull/150#issuecomment-1832355729) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#1214](https://github.com/aimclub/FEDOT/pull/1214#issuecomment-1832315471) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#2646](https://github.com/metabrainz/listenbrainz-server/pull/2646#issuecomment-1831999416) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#1584](https://github.com/zarr-developers/zarr-python/pull/1584#issuecomment-1831946209) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +6. 🗣 Commented on [#1210](https://github.com/aimclub/FEDOT/pull/1210#issuecomment-1831882391) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#1213](https://github.com/aimclub/FEDOT/pull/1213#issuecomment-1831782579) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#57](https://github.com/eastgenomics/eris/pull/57#issuecomment-1831761278) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#3054](https://github.com/reframe-hpc/reframe/pull/3054#issuecomment-1831591401) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +10. 🗣 Commented on [#511](https://github.com/rpm-software-management/dnf-plugins-core/pull/511#issuecomment-1831569633) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) From fd61c75d0ed56aa359bbe2edd6649b525f23c51a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Nov 2023 22:15:29 +0000 Subject: [PATCH 0765/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 702ff881..5fb36775 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#29](https://github.com/bento-dbaas/vip-provider/pull/29#issuecomment-1832511573) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) -2. 🗣 Commented on [#150](https://github.com/eastgenomics/dias_batch_running/pull/150#issuecomment-1832355729) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#1214](https://github.com/aimclub/FEDOT/pull/1214#issuecomment-1832315471) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#2646](https://github.com/metabrainz/listenbrainz-server/pull/2646#issuecomment-1831999416) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#1584](https://github.com/zarr-developers/zarr-python/pull/1584#issuecomment-1831946209) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -6. 🗣 Commented on [#1210](https://github.com/aimclub/FEDOT/pull/1210#issuecomment-1831882391) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#1213](https://github.com/aimclub/FEDOT/pull/1213#issuecomment-1831782579) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#57](https://github.com/eastgenomics/eris/pull/57#issuecomment-1831761278) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#3054](https://github.com/reframe-hpc/reframe/pull/3054#issuecomment-1831591401) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -10. 🗣 Commented on [#511](https://github.com/rpm-software-management/dnf-plugins-core/pull/511#issuecomment-1831569633) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) +1. 🗣 Commented on [#21566](https://github.com/spyder-ide/spyder/pull/21566#issuecomment-1832740098) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#29](https://github.com/bento-dbaas/vip-provider/pull/29#issuecomment-1832511573) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +3. 🗣 Commented on [#150](https://github.com/eastgenomics/dias_batch_running/pull/150#issuecomment-1832355729) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +4. 🗣 Commented on [#1214](https://github.com/aimclub/FEDOT/pull/1214#issuecomment-1832315471) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#2646](https://github.com/metabrainz/listenbrainz-server/pull/2646#issuecomment-1831999416) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#1584](https://github.com/zarr-developers/zarr-python/pull/1584#issuecomment-1831946209) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +7. 🗣 Commented on [#1210](https://github.com/aimclub/FEDOT/pull/1210#issuecomment-1831882391) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#1213](https://github.com/aimclub/FEDOT/pull/1213#issuecomment-1831782579) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#57](https://github.com/eastgenomics/eris/pull/57#issuecomment-1831761278) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#3054](https://github.com/reframe-hpc/reframe/pull/3054#issuecomment-1831591401) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) From 9d82277ff07491ac47ffdd9d93450b74094b7d5d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Nov 2023 22:36:59 +0000 Subject: [PATCH 0766/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5fb36775..a1dd05f4 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#21566](https://github.com/spyder-ide/spyder/pull/21566#issuecomment-1832740098) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#29](https://github.com/bento-dbaas/vip-provider/pull/29#issuecomment-1832511573) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) -3. 🗣 Commented on [#150](https://github.com/eastgenomics/dias_batch_running/pull/150#issuecomment-1832355729) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -4. 🗣 Commented on [#1214](https://github.com/aimclub/FEDOT/pull/1214#issuecomment-1832315471) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#2646](https://github.com/metabrainz/listenbrainz-server/pull/2646#issuecomment-1831999416) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#1584](https://github.com/zarr-developers/zarr-python/pull/1584#issuecomment-1831946209) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -7. 🗣 Commented on [#1210](https://github.com/aimclub/FEDOT/pull/1210#issuecomment-1831882391) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#1213](https://github.com/aimclub/FEDOT/pull/1213#issuecomment-1831782579) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#57](https://github.com/eastgenomics/eris/pull/57#issuecomment-1831761278) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#3054](https://github.com/reframe-hpc/reframe/pull/3054#issuecomment-1831591401) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +1. 🗣 Commented on [#1067](https://github.com/yeatmanlab/pyAFQ/pull/1067#issuecomment-1832807031) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +2. 🗣 Commented on [#21566](https://github.com/spyder-ide/spyder/pull/21566#issuecomment-1832740098) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#29](https://github.com/bento-dbaas/vip-provider/pull/29#issuecomment-1832511573) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +4. 🗣 Commented on [#150](https://github.com/eastgenomics/dias_batch_running/pull/150#issuecomment-1832355729) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#1214](https://github.com/aimclub/FEDOT/pull/1214#issuecomment-1832315471) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#2646](https://github.com/metabrainz/listenbrainz-server/pull/2646#issuecomment-1831999416) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#1584](https://github.com/zarr-developers/zarr-python/pull/1584#issuecomment-1831946209) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +8. 🗣 Commented on [#1210](https://github.com/aimclub/FEDOT/pull/1210#issuecomment-1831882391) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#1213](https://github.com/aimclub/FEDOT/pull/1213#issuecomment-1831782579) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#57](https://github.com/eastgenomics/eris/pull/57#issuecomment-1831761278) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From b8d9be697fb255c0578585fad474e1e8c3d618c9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 30 Nov 2023 03:17:02 +0000 Subject: [PATCH 0767/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a1dd05f4..6ffb3a9b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1067](https://github.com/yeatmanlab/pyAFQ/pull/1067#issuecomment-1832807031) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -2. 🗣 Commented on [#21566](https://github.com/spyder-ide/spyder/pull/21566#issuecomment-1832740098) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#29](https://github.com/bento-dbaas/vip-provider/pull/29#issuecomment-1832511573) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) -4. 🗣 Commented on [#150](https://github.com/eastgenomics/dias_batch_running/pull/150#issuecomment-1832355729) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#1214](https://github.com/aimclub/FEDOT/pull/1214#issuecomment-1832315471) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#2646](https://github.com/metabrainz/listenbrainz-server/pull/2646#issuecomment-1831999416) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#1584](https://github.com/zarr-developers/zarr-python/pull/1584#issuecomment-1831946209) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -8. 🗣 Commented on [#1210](https://github.com/aimclub/FEDOT/pull/1210#issuecomment-1831882391) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#1213](https://github.com/aimclub/FEDOT/pull/1213#issuecomment-1831782579) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#57](https://github.com/eastgenomics/eris/pull/57#issuecomment-1831761278) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/redisvl/pull/1#issuecomment-1833020633) in [tuhinmallick/redisvl](https://github.com/tuhinmallick/redisvl) +2. 🗣 Commented on [#1067](https://github.com/yeatmanlab/pyAFQ/pull/1067#issuecomment-1832807031) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +3. 🗣 Commented on [#21566](https://github.com/spyder-ide/spyder/pull/21566#issuecomment-1832740098) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#29](https://github.com/bento-dbaas/vip-provider/pull/29#issuecomment-1832511573) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +5. 🗣 Commented on [#150](https://github.com/eastgenomics/dias_batch_running/pull/150#issuecomment-1832355729) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#1214](https://github.com/aimclub/FEDOT/pull/1214#issuecomment-1832315471) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#2646](https://github.com/metabrainz/listenbrainz-server/pull/2646#issuecomment-1831999416) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#1584](https://github.com/zarr-developers/zarr-python/pull/1584#issuecomment-1831946209) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +9. 🗣 Commented on [#1210](https://github.com/aimclub/FEDOT/pull/1210#issuecomment-1831882391) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#1213](https://github.com/aimclub/FEDOT/pull/1213#issuecomment-1831782579) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From 7d089557cdecdbb0831534b568a8b28add4d4753 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 30 Nov 2023 04:38:53 +0000 Subject: [PATCH 0768/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6ffb3a9b..950abf29 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/redisvl/pull/1#issuecomment-1833020633) in [tuhinmallick/redisvl](https://github.com/tuhinmallick/redisvl) -2. 🗣 Commented on [#1067](https://github.com/yeatmanlab/pyAFQ/pull/1067#issuecomment-1832807031) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -3. 🗣 Commented on [#21566](https://github.com/spyder-ide/spyder/pull/21566#issuecomment-1832740098) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#29](https://github.com/bento-dbaas/vip-provider/pull/29#issuecomment-1832511573) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) -5. 🗣 Commented on [#150](https://github.com/eastgenomics/dias_batch_running/pull/150#issuecomment-1832355729) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#1214](https://github.com/aimclub/FEDOT/pull/1214#issuecomment-1832315471) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#2646](https://github.com/metabrainz/listenbrainz-server/pull/2646#issuecomment-1831999416) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#1584](https://github.com/zarr-developers/zarr-python/pull/1584#issuecomment-1831946209) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -9. 🗣 Commented on [#1210](https://github.com/aimclub/FEDOT/pull/1210#issuecomment-1831882391) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#1213](https://github.com/aimclub/FEDOT/pull/1213#issuecomment-1831782579) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion/pull/1#issuecomment-1833092349) in [tuhinmallick/ComfyUI-Stable-Video-Diffusion](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/redisvl/pull/1#issuecomment-1833020633) in [tuhinmallick/redisvl](https://github.com/tuhinmallick/redisvl) +3. 🗣 Commented on [#1067](https://github.com/yeatmanlab/pyAFQ/pull/1067#issuecomment-1832807031) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +4. 🗣 Commented on [#21566](https://github.com/spyder-ide/spyder/pull/21566#issuecomment-1832740098) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#29](https://github.com/bento-dbaas/vip-provider/pull/29#issuecomment-1832511573) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +6. 🗣 Commented on [#150](https://github.com/eastgenomics/dias_batch_running/pull/150#issuecomment-1832355729) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#1214](https://github.com/aimclub/FEDOT/pull/1214#issuecomment-1832315471) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#2646](https://github.com/metabrainz/listenbrainz-server/pull/2646#issuecomment-1831999416) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#1584](https://github.com/zarr-developers/zarr-python/pull/1584#issuecomment-1831946209) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +10. 🗣 Commented on [#1210](https://github.com/aimclub/FEDOT/pull/1210#issuecomment-1831882391) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From 4880349101a9b3987c71057df3053677462a4758 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 30 Nov 2023 08:20:26 +0000 Subject: [PATCH 0769/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 950abf29..3e698c3f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion/pull/1#issuecomment-1833092349) in [tuhinmallick/ComfyUI-Stable-Video-Diffusion](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/redisvl/pull/1#issuecomment-1833020633) in [tuhinmallick/redisvl](https://github.com/tuhinmallick/redisvl) -3. 🗣 Commented on [#1067](https://github.com/yeatmanlab/pyAFQ/pull/1067#issuecomment-1832807031) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -4. 🗣 Commented on [#21566](https://github.com/spyder-ide/spyder/pull/21566#issuecomment-1832740098) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#29](https://github.com/bento-dbaas/vip-provider/pull/29#issuecomment-1832511573) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) -6. 🗣 Commented on [#150](https://github.com/eastgenomics/dias_batch_running/pull/150#issuecomment-1832355729) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#1214](https://github.com/aimclub/FEDOT/pull/1214#issuecomment-1832315471) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#2646](https://github.com/metabrainz/listenbrainz-server/pull/2646#issuecomment-1831999416) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#1584](https://github.com/zarr-developers/zarr-python/pull/1584#issuecomment-1831946209) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -10. 🗣 Commented on [#1210](https://github.com/aimclub/FEDOT/pull/1210#issuecomment-1831882391) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-VID/pull/1#issuecomment-1833292701) in [tuhinmallick/LLaMA-VID](https://github.com/tuhinmallick/LLaMA-VID) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion/pull/1#issuecomment-1833092349) in [tuhinmallick/ComfyUI-Stable-Video-Diffusion](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/redisvl/pull/1#issuecomment-1833020633) in [tuhinmallick/redisvl](https://github.com/tuhinmallick/redisvl) +4. 🗣 Commented on [#1067](https://github.com/yeatmanlab/pyAFQ/pull/1067#issuecomment-1832807031) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +5. 🗣 Commented on [#21566](https://github.com/spyder-ide/spyder/pull/21566#issuecomment-1832740098) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#29](https://github.com/bento-dbaas/vip-provider/pull/29#issuecomment-1832511573) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +7. 🗣 Commented on [#150](https://github.com/eastgenomics/dias_batch_running/pull/150#issuecomment-1832355729) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#1214](https://github.com/aimclub/FEDOT/pull/1214#issuecomment-1832315471) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#2646](https://github.com/metabrainz/listenbrainz-server/pull/2646#issuecomment-1831999416) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#1584](https://github.com/zarr-developers/zarr-python/pull/1584#issuecomment-1831946209) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) From c15cf1ce28dc9bd46dc48fe26922bc563e00bd10 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 30 Nov 2023 09:16:12 +0000 Subject: [PATCH 0770/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3e698c3f..41247460 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-VID/pull/1#issuecomment-1833292701) in [tuhinmallick/LLaMA-VID](https://github.com/tuhinmallick/LLaMA-VID) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion/pull/1#issuecomment-1833092349) in [tuhinmallick/ComfyUI-Stable-Video-Diffusion](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/redisvl/pull/1#issuecomment-1833020633) in [tuhinmallick/redisvl](https://github.com/tuhinmallick/redisvl) -4. 🗣 Commented on [#1067](https://github.com/yeatmanlab/pyAFQ/pull/1067#issuecomment-1832807031) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -5. 🗣 Commented on [#21566](https://github.com/spyder-ide/spyder/pull/21566#issuecomment-1832740098) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#29](https://github.com/bento-dbaas/vip-provider/pull/29#issuecomment-1832511573) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) -7. 🗣 Commented on [#150](https://github.com/eastgenomics/dias_batch_running/pull/150#issuecomment-1832355729) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#1214](https://github.com/aimclub/FEDOT/pull/1214#issuecomment-1832315471) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#2646](https://github.com/metabrainz/listenbrainz-server/pull/2646#issuecomment-1831999416) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#1584](https://github.com/zarr-developers/zarr-python/pull/1584#issuecomment-1831946209) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +1. 🗣 Commented on [#213](https://github.com/CartoonFan/lutris/pull/213#issuecomment-1833342440) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#946](https://github.com/avaframe/AvaFrame/pull/946#issuecomment-1833325795) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-VID/pull/1#issuecomment-1833292701) in [tuhinmallick/LLaMA-VID](https://github.com/tuhinmallick/LLaMA-VID) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion/pull/1#issuecomment-1833092349) in [tuhinmallick/ComfyUI-Stable-Video-Diffusion](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/redisvl/pull/1#issuecomment-1833020633) in [tuhinmallick/redisvl](https://github.com/tuhinmallick/redisvl) +6. 🗣 Commented on [#1067](https://github.com/yeatmanlab/pyAFQ/pull/1067#issuecomment-1832807031) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +7. 🗣 Commented on [#21566](https://github.com/spyder-ide/spyder/pull/21566#issuecomment-1832740098) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#29](https://github.com/bento-dbaas/vip-provider/pull/29#issuecomment-1832511573) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +9. 🗣 Commented on [#150](https://github.com/eastgenomics/dias_batch_running/pull/150#issuecomment-1832355729) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#1214](https://github.com/aimclub/FEDOT/pull/1214#issuecomment-1832315471) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From 6f18440d8a519cde12be87fc0ba4269f19b5899a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 30 Nov 2023 09:37:28 +0000 Subject: [PATCH 0771/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 41247460..4deeeb5d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#213](https://github.com/CartoonFan/lutris/pull/213#issuecomment-1833342440) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#946](https://github.com/avaframe/AvaFrame/pull/946#issuecomment-1833325795) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-VID/pull/1#issuecomment-1833292701) in [tuhinmallick/LLaMA-VID](https://github.com/tuhinmallick/LLaMA-VID) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion/pull/1#issuecomment-1833092349) in [tuhinmallick/ComfyUI-Stable-Video-Diffusion](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/redisvl/pull/1#issuecomment-1833020633) in [tuhinmallick/redisvl](https://github.com/tuhinmallick/redisvl) -6. 🗣 Commented on [#1067](https://github.com/yeatmanlab/pyAFQ/pull/1067#issuecomment-1832807031) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -7. 🗣 Commented on [#21566](https://github.com/spyder-ide/spyder/pull/21566#issuecomment-1832740098) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#29](https://github.com/bento-dbaas/vip-provider/pull/29#issuecomment-1832511573) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) -9. 🗣 Commented on [#150](https://github.com/eastgenomics/dias_batch_running/pull/150#issuecomment-1832355729) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#1214](https://github.com/aimclub/FEDOT/pull/1214#issuecomment-1832315471) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#1142](https://github.com/aimclub/FEDOT/pull/1142#issuecomment-1833395008) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#213](https://github.com/CartoonFan/lutris/pull/213#issuecomment-1833342440) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#946](https://github.com/avaframe/AvaFrame/pull/946#issuecomment-1833325795) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-VID/pull/1#issuecomment-1833292701) in [tuhinmallick/LLaMA-VID](https://github.com/tuhinmallick/LLaMA-VID) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion/pull/1#issuecomment-1833092349) in [tuhinmallick/ComfyUI-Stable-Video-Diffusion](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/redisvl/pull/1#issuecomment-1833020633) in [tuhinmallick/redisvl](https://github.com/tuhinmallick/redisvl) +7. 🗣 Commented on [#1067](https://github.com/yeatmanlab/pyAFQ/pull/1067#issuecomment-1832807031) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +8. 🗣 Commented on [#21566](https://github.com/spyder-ide/spyder/pull/21566#issuecomment-1832740098) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#29](https://github.com/bento-dbaas/vip-provider/pull/29#issuecomment-1832511573) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +10. 🗣 Commented on [#150](https://github.com/eastgenomics/dias_batch_running/pull/150#issuecomment-1832355729) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From ce79dd4d8045b08c821c3af6c7d2647124f72c6c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 30 Nov 2023 11:37:17 +0000 Subject: [PATCH 0772/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4deeeb5d..d5cb286f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1142](https://github.com/aimclub/FEDOT/pull/1142#issuecomment-1833395008) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#213](https://github.com/CartoonFan/lutris/pull/213#issuecomment-1833342440) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#946](https://github.com/avaframe/AvaFrame/pull/946#issuecomment-1833325795) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-VID/pull/1#issuecomment-1833292701) in [tuhinmallick/LLaMA-VID](https://github.com/tuhinmallick/LLaMA-VID) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion/pull/1#issuecomment-1833092349) in [tuhinmallick/ComfyUI-Stable-Video-Diffusion](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/redisvl/pull/1#issuecomment-1833020633) in [tuhinmallick/redisvl](https://github.com/tuhinmallick/redisvl) -7. 🗣 Commented on [#1067](https://github.com/yeatmanlab/pyAFQ/pull/1067#issuecomment-1832807031) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -8. 🗣 Commented on [#21566](https://github.com/spyder-ide/spyder/pull/21566#issuecomment-1832740098) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#29](https://github.com/bento-dbaas/vip-provider/pull/29#issuecomment-1832511573) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) -10. 🗣 Commented on [#150](https://github.com/eastgenomics/dias_batch_running/pull/150#issuecomment-1832355729) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#871](https://github.com/PyThaiNLP/pythainlp/pull/871#issuecomment-1833570904) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#1142](https://github.com/aimclub/FEDOT/pull/1142#issuecomment-1833395008) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#213](https://github.com/CartoonFan/lutris/pull/213#issuecomment-1833342440) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#946](https://github.com/avaframe/AvaFrame/pull/946#issuecomment-1833325795) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-VID/pull/1#issuecomment-1833292701) in [tuhinmallick/LLaMA-VID](https://github.com/tuhinmallick/LLaMA-VID) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion/pull/1#issuecomment-1833092349) in [tuhinmallick/ComfyUI-Stable-Video-Diffusion](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/redisvl/pull/1#issuecomment-1833020633) in [tuhinmallick/redisvl](https://github.com/tuhinmallick/redisvl) +8. 🗣 Commented on [#1067](https://github.com/yeatmanlab/pyAFQ/pull/1067#issuecomment-1832807031) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +9. 🗣 Commented on [#21566](https://github.com/spyder-ide/spyder/pull/21566#issuecomment-1832740098) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#29](https://github.com/bento-dbaas/vip-provider/pull/29#issuecomment-1832511573) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) From 382c35c0d824437fb156bd67b823825412ce27c4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 30 Nov 2023 15:37:51 +0000 Subject: [PATCH 0773/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d5cb286f..8a998841 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#871](https://github.com/PyThaiNLP/pythainlp/pull/871#issuecomment-1833570904) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#1142](https://github.com/aimclub/FEDOT/pull/1142#issuecomment-1833395008) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#213](https://github.com/CartoonFan/lutris/pull/213#issuecomment-1833342440) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#946](https://github.com/avaframe/AvaFrame/pull/946#issuecomment-1833325795) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-VID/pull/1#issuecomment-1833292701) in [tuhinmallick/LLaMA-VID](https://github.com/tuhinmallick/LLaMA-VID) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion/pull/1#issuecomment-1833092349) in [tuhinmallick/ComfyUI-Stable-Video-Diffusion](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/redisvl/pull/1#issuecomment-1833020633) in [tuhinmallick/redisvl](https://github.com/tuhinmallick/redisvl) -8. 🗣 Commented on [#1067](https://github.com/yeatmanlab/pyAFQ/pull/1067#issuecomment-1832807031) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -9. 🗣 Commented on [#21566](https://github.com/spyder-ide/spyder/pull/21566#issuecomment-1832740098) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#29](https://github.com/bento-dbaas/vip-provider/pull/29#issuecomment-1832511573) in [bento-dbaas/vip-provider](https://github.com/bento-dbaas/vip-provider) +1. 🗣 Commented on [#35](https://github.com/eastgenomics/trendyQC/pull/35#issuecomment-1834004247) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +2. 🗣 Commented on [#871](https://github.com/PyThaiNLP/pythainlp/pull/871#issuecomment-1833570904) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#1142](https://github.com/aimclub/FEDOT/pull/1142#issuecomment-1833395008) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#213](https://github.com/CartoonFan/lutris/pull/213#issuecomment-1833342440) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#946](https://github.com/avaframe/AvaFrame/pull/946#issuecomment-1833325795) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-VID/pull/1#issuecomment-1833292701) in [tuhinmallick/LLaMA-VID](https://github.com/tuhinmallick/LLaMA-VID) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion/pull/1#issuecomment-1833092349) in [tuhinmallick/ComfyUI-Stable-Video-Diffusion](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/redisvl/pull/1#issuecomment-1833020633) in [tuhinmallick/redisvl](https://github.com/tuhinmallick/redisvl) +9. 🗣 Commented on [#1067](https://github.com/yeatmanlab/pyAFQ/pull/1067#issuecomment-1832807031) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +10. 🗣 Commented on [#21566](https://github.com/spyder-ide/spyder/pull/21566#issuecomment-1832740098) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From b0c2ba9fe4024a5ed3ea113e919ddee1618458fb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 30 Nov 2023 21:14:37 +0000 Subject: [PATCH 0774/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8a998841..2483f2eb 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#35](https://github.com/eastgenomics/trendyQC/pull/35#issuecomment-1834004247) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -2. 🗣 Commented on [#871](https://github.com/PyThaiNLP/pythainlp/pull/871#issuecomment-1833570904) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#1142](https://github.com/aimclub/FEDOT/pull/1142#issuecomment-1833395008) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#213](https://github.com/CartoonFan/lutris/pull/213#issuecomment-1833342440) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#946](https://github.com/avaframe/AvaFrame/pull/946#issuecomment-1833325795) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-VID/pull/1#issuecomment-1833292701) in [tuhinmallick/LLaMA-VID](https://github.com/tuhinmallick/LLaMA-VID) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion/pull/1#issuecomment-1833092349) in [tuhinmallick/ComfyUI-Stable-Video-Diffusion](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/redisvl/pull/1#issuecomment-1833020633) in [tuhinmallick/redisvl](https://github.com/tuhinmallick/redisvl) -9. 🗣 Commented on [#1067](https://github.com/yeatmanlab/pyAFQ/pull/1067#issuecomment-1832807031) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -10. 🗣 Commented on [#21566](https://github.com/spyder-ide/spyder/pull/21566#issuecomment-1832740098) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#820](https://github.com/scilus/scilpy/pull/820#issuecomment-1834536150) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#35](https://github.com/eastgenomics/trendyQC/pull/35#issuecomment-1834004247) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +3. 🗣 Commented on [#871](https://github.com/PyThaiNLP/pythainlp/pull/871#issuecomment-1833570904) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#1142](https://github.com/aimclub/FEDOT/pull/1142#issuecomment-1833395008) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#213](https://github.com/CartoonFan/lutris/pull/213#issuecomment-1833342440) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#946](https://github.com/avaframe/AvaFrame/pull/946#issuecomment-1833325795) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-VID/pull/1#issuecomment-1833292701) in [tuhinmallick/LLaMA-VID](https://github.com/tuhinmallick/LLaMA-VID) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion/pull/1#issuecomment-1833092349) in [tuhinmallick/ComfyUI-Stable-Video-Diffusion](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/redisvl/pull/1#issuecomment-1833020633) in [tuhinmallick/redisvl](https://github.com/tuhinmallick/redisvl) +10. 🗣 Commented on [#1067](https://github.com/yeatmanlab/pyAFQ/pull/1067#issuecomment-1832807031) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) From 10dc1c90b0d23d9d6abe4a5436441e939dfaff57 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Dec 2023 12:31:54 +0000 Subject: [PATCH 0775/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2483f2eb..ec89053f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#820](https://github.com/scilus/scilpy/pull/820#issuecomment-1834536150) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#35](https://github.com/eastgenomics/trendyQC/pull/35#issuecomment-1834004247) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -3. 🗣 Commented on [#871](https://github.com/PyThaiNLP/pythainlp/pull/871#issuecomment-1833570904) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#1142](https://github.com/aimclub/FEDOT/pull/1142#issuecomment-1833395008) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#213](https://github.com/CartoonFan/lutris/pull/213#issuecomment-1833342440) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#946](https://github.com/avaframe/AvaFrame/pull/946#issuecomment-1833325795) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-VID/pull/1#issuecomment-1833292701) in [tuhinmallick/LLaMA-VID](https://github.com/tuhinmallick/LLaMA-VID) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion/pull/1#issuecomment-1833092349) in [tuhinmallick/ComfyUI-Stable-Video-Diffusion](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/redisvl/pull/1#issuecomment-1833020633) in [tuhinmallick/redisvl](https://github.com/tuhinmallick/redisvl) -10. 🗣 Commented on [#1067](https://github.com/yeatmanlab/pyAFQ/pull/1067#issuecomment-1832807031) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +1. 🗣 Commented on [#1215](https://github.com/aimclub/FEDOT/pull/1215#issuecomment-1835996623) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#5357](https://github.com/rhinstaller/anaconda/pull/5357#issuecomment-1835994787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#820](https://github.com/scilus/scilpy/pull/820#issuecomment-1834536150) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#35](https://github.com/eastgenomics/trendyQC/pull/35#issuecomment-1834004247) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +5. 🗣 Commented on [#871](https://github.com/PyThaiNLP/pythainlp/pull/871#issuecomment-1833570904) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#1142](https://github.com/aimclub/FEDOT/pull/1142#issuecomment-1833395008) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#213](https://github.com/CartoonFan/lutris/pull/213#issuecomment-1833342440) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#946](https://github.com/avaframe/AvaFrame/pull/946#issuecomment-1833325795) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-VID/pull/1#issuecomment-1833292701) in [tuhinmallick/LLaMA-VID](https://github.com/tuhinmallick/LLaMA-VID) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion/pull/1#issuecomment-1833092349) in [tuhinmallick/ComfyUI-Stable-Video-Diffusion](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion) From fd02dcabbadc3dab6b063a38f00e8eedc4cfd9d4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Dec 2023 13:20:23 +0000 Subject: [PATCH 0776/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ec89053f..af2293da 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1215](https://github.com/aimclub/FEDOT/pull/1215#issuecomment-1835996623) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#5357](https://github.com/rhinstaller/anaconda/pull/5357#issuecomment-1835994787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#820](https://github.com/scilus/scilpy/pull/820#issuecomment-1834536150) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#35](https://github.com/eastgenomics/trendyQC/pull/35#issuecomment-1834004247) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -5. 🗣 Commented on [#871](https://github.com/PyThaiNLP/pythainlp/pull/871#issuecomment-1833570904) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#1142](https://github.com/aimclub/FEDOT/pull/1142#issuecomment-1833395008) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#213](https://github.com/CartoonFan/lutris/pull/213#issuecomment-1833342440) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#946](https://github.com/avaframe/AvaFrame/pull/946#issuecomment-1833325795) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-VID/pull/1#issuecomment-1833292701) in [tuhinmallick/LLaMA-VID](https://github.com/tuhinmallick/LLaMA-VID) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion/pull/1#issuecomment-1833092349) in [tuhinmallick/ComfyUI-Stable-Video-Diffusion](https://github.com/tuhinmallick/ComfyUI-Stable-Video-Diffusion) +1. 🗣 Commented on [#823](https://github.com/scilus/scilpy/pull/823#issuecomment-1836070705) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#1215](https://github.com/aimclub/FEDOT/pull/1215#issuecomment-1835996623) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#5357](https://github.com/rhinstaller/anaconda/pull/5357#issuecomment-1835994787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#820](https://github.com/scilus/scilpy/pull/820#issuecomment-1834536150) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#35](https://github.com/eastgenomics/trendyQC/pull/35#issuecomment-1834004247) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +6. 🗣 Commented on [#871](https://github.com/PyThaiNLP/pythainlp/pull/871#issuecomment-1833570904) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +7. 🗣 Commented on [#1142](https://github.com/aimclub/FEDOT/pull/1142#issuecomment-1833395008) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#213](https://github.com/CartoonFan/lutris/pull/213#issuecomment-1833342440) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#946](https://github.com/avaframe/AvaFrame/pull/946#issuecomment-1833325795) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-VID/pull/1#issuecomment-1833292701) in [tuhinmallick/LLaMA-VID](https://github.com/tuhinmallick/LLaMA-VID) From e96636bc71e1ac32779a4ba167c302b7f8341fc4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Dec 2023 14:15:17 +0000 Subject: [PATCH 0777/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index af2293da..83820cd6 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#823](https://github.com/scilus/scilpy/pull/823#issuecomment-1836070705) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#1215](https://github.com/aimclub/FEDOT/pull/1215#issuecomment-1835996623) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#5357](https://github.com/rhinstaller/anaconda/pull/5357#issuecomment-1835994787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#820](https://github.com/scilus/scilpy/pull/820#issuecomment-1834536150) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#35](https://github.com/eastgenomics/trendyQC/pull/35#issuecomment-1834004247) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -6. 🗣 Commented on [#871](https://github.com/PyThaiNLP/pythainlp/pull/871#issuecomment-1833570904) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -7. 🗣 Commented on [#1142](https://github.com/aimclub/FEDOT/pull/1142#issuecomment-1833395008) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#213](https://github.com/CartoonFan/lutris/pull/213#issuecomment-1833342440) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#946](https://github.com/avaframe/AvaFrame/pull/946#issuecomment-1833325795) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-VID/pull/1#issuecomment-1833292701) in [tuhinmallick/LLaMA-VID](https://github.com/tuhinmallick/LLaMA-VID) +1. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +2. 🗣 Commented on [#1216](https://github.com/aimclub/FEDOT/pull/1216#issuecomment-1836184524) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#1027](https://github.com/aramis-lab/clinica/pull/1027#issuecomment-1836161773) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +4. 🗣 Commented on [#25](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky/pull/25#issuecomment-1836150876) in [oda-hub/dispatcher-plugin-integral-all-sky](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky) +5. 🗣 Commented on [#824](https://github.com/scilus/scilpy/pull/824#issuecomment-1836141918) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#823](https://github.com/scilus/scilpy/pull/823#issuecomment-1836070705) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#1215](https://github.com/aimclub/FEDOT/pull/1215#issuecomment-1835996623) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#5357](https://github.com/rhinstaller/anaconda/pull/5357#issuecomment-1835994787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#820](https://github.com/scilus/scilpy/pull/820#issuecomment-1834536150) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#35](https://github.com/eastgenomics/trendyQC/pull/35#issuecomment-1834004247) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) From 0f7d814ec24b37ab329e21086e461256e7110ddf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Dec 2023 15:37:30 +0000 Subject: [PATCH 0778/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 83820cd6..4da2ea92 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -2. 🗣 Commented on [#1216](https://github.com/aimclub/FEDOT/pull/1216#issuecomment-1836184524) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#1027](https://github.com/aramis-lab/clinica/pull/1027#issuecomment-1836161773) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -4. 🗣 Commented on [#25](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky/pull/25#issuecomment-1836150876) in [oda-hub/dispatcher-plugin-integral-all-sky](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky) -5. 🗣 Commented on [#824](https://github.com/scilus/scilpy/pull/824#issuecomment-1836141918) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#823](https://github.com/scilus/scilpy/pull/823#issuecomment-1836070705) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#1215](https://github.com/aimclub/FEDOT/pull/1215#issuecomment-1835996623) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#5357](https://github.com/rhinstaller/anaconda/pull/5357#issuecomment-1835994787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#820](https://github.com/scilus/scilpy/pull/820#issuecomment-1834536150) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#35](https://github.com/eastgenomics/trendyQC/pull/35#issuecomment-1834004247) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +1. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#1216](https://github.com/aimclub/FEDOT/pull/1216#issuecomment-1836184524) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#1027](https://github.com/aramis-lab/clinica/pull/1027#issuecomment-1836161773) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +5. 🗣 Commented on [#25](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky/pull/25#issuecomment-1836150876) in [oda-hub/dispatcher-plugin-integral-all-sky](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky) +6. 🗣 Commented on [#824](https://github.com/scilus/scilpy/pull/824#issuecomment-1836141918) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#823](https://github.com/scilus/scilpy/pull/823#issuecomment-1836070705) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#1215](https://github.com/aimclub/FEDOT/pull/1215#issuecomment-1835996623) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#5357](https://github.com/rhinstaller/anaconda/pull/5357#issuecomment-1835994787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#820](https://github.com/scilus/scilpy/pull/820#issuecomment-1834536150) in [scilus/scilpy](https://github.com/scilus/scilpy) From 53b71d6cd9a3bae4184e3710f411fe2ed30e80c7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Dec 2023 16:40:35 +0000 Subject: [PATCH 0779/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4da2ea92..a1de3daa 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#1216](https://github.com/aimclub/FEDOT/pull/1216#issuecomment-1836184524) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#1027](https://github.com/aramis-lab/clinica/pull/1027#issuecomment-1836161773) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -5. 🗣 Commented on [#25](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky/pull/25#issuecomment-1836150876) in [oda-hub/dispatcher-plugin-integral-all-sky](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky) -6. 🗣 Commented on [#824](https://github.com/scilus/scilpy/pull/824#issuecomment-1836141918) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#823](https://github.com/scilus/scilpy/pull/823#issuecomment-1836070705) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#1215](https://github.com/aimclub/FEDOT/pull/1215#issuecomment-1835996623) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#5357](https://github.com/rhinstaller/anaconda/pull/5357#issuecomment-1835994787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#820](https://github.com/scilus/scilpy/pull/820#issuecomment-1834536150) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) +2. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +4. 🗣 Commented on [#1216](https://github.com/aimclub/FEDOT/pull/1216#issuecomment-1836184524) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#1027](https://github.com/aramis-lab/clinica/pull/1027#issuecomment-1836161773) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +6. 🗣 Commented on [#25](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky/pull/25#issuecomment-1836150876) in [oda-hub/dispatcher-plugin-integral-all-sky](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky) +7. 🗣 Commented on [#824](https://github.com/scilus/scilpy/pull/824#issuecomment-1836141918) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#823](https://github.com/scilus/scilpy/pull/823#issuecomment-1836070705) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#1215](https://github.com/aimclub/FEDOT/pull/1215#issuecomment-1835996623) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#5357](https://github.com/rhinstaller/anaconda/pull/5357#issuecomment-1835994787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 4ad9b84b98afae7220a4208c72da1e5681c5cccb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Dec 2023 17:14:57 +0000 Subject: [PATCH 0780/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a1de3daa..d9b36464 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) -2. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -4. 🗣 Commented on [#1216](https://github.com/aimclub/FEDOT/pull/1216#issuecomment-1836184524) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#1027](https://github.com/aramis-lab/clinica/pull/1027#issuecomment-1836161773) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -6. 🗣 Commented on [#25](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky/pull/25#issuecomment-1836150876) in [oda-hub/dispatcher-plugin-integral-all-sky](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky) -7. 🗣 Commented on [#824](https://github.com/scilus/scilpy/pull/824#issuecomment-1836141918) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#823](https://github.com/scilus/scilpy/pull/823#issuecomment-1836070705) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#1215](https://github.com/aimclub/FEDOT/pull/1215#issuecomment-1835996623) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#5357](https://github.com/rhinstaller/anaconda/pull/5357#issuecomment-1835994787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) +2. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) +3. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#1216](https://github.com/aimclub/FEDOT/pull/1216#issuecomment-1836184524) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#1027](https://github.com/aramis-lab/clinica/pull/1027#issuecomment-1836161773) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +7. 🗣 Commented on [#25](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky/pull/25#issuecomment-1836150876) in [oda-hub/dispatcher-plugin-integral-all-sky](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky) +8. 🗣 Commented on [#824](https://github.com/scilus/scilpy/pull/824#issuecomment-1836141918) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#823](https://github.com/scilus/scilpy/pull/823#issuecomment-1836070705) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#1215](https://github.com/aimclub/FEDOT/pull/1215#issuecomment-1835996623) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From fbe7263c07133ef77b8d26f79e2a1aae8ce717f2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Dec 2023 18:20:37 +0000 Subject: [PATCH 0781/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d9b36464..2624de45 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) -2. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) -3. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -5. 🗣 Commented on [#1216](https://github.com/aimclub/FEDOT/pull/1216#issuecomment-1836184524) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#1027](https://github.com/aramis-lab/clinica/pull/1027#issuecomment-1836161773) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -7. 🗣 Commented on [#25](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky/pull/25#issuecomment-1836150876) in [oda-hub/dispatcher-plugin-integral-all-sky](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky) -8. 🗣 Commented on [#824](https://github.com/scilus/scilpy/pull/824#issuecomment-1836141918) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#823](https://github.com/scilus/scilpy/pull/823#issuecomment-1836070705) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#1215](https://github.com/aimclub/FEDOT/pull/1215#issuecomment-1835996623) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +2. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) +3. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) +4. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +6. 🗣 Commented on [#1216](https://github.com/aimclub/FEDOT/pull/1216#issuecomment-1836184524) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#1027](https://github.com/aramis-lab/clinica/pull/1027#issuecomment-1836161773) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +8. 🗣 Commented on [#25](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky/pull/25#issuecomment-1836150876) in [oda-hub/dispatcher-plugin-integral-all-sky](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky) +9. 🗣 Commented on [#824](https://github.com/scilus/scilpy/pull/824#issuecomment-1836141918) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#823](https://github.com/scilus/scilpy/pull/823#issuecomment-1836070705) in [scilus/scilpy](https://github.com/scilus/scilpy) From e9cb38b5504425202ca1f16dcee0749aa451840b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Dec 2023 19:13:00 +0000 Subject: [PATCH 0782/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2624de45..9ad5152a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -2. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) -3. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) -4. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -6. 🗣 Commented on [#1216](https://github.com/aimclub/FEDOT/pull/1216#issuecomment-1836184524) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#1027](https://github.com/aramis-lab/clinica/pull/1027#issuecomment-1836161773) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -8. 🗣 Commented on [#25](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky/pull/25#issuecomment-1836150876) in [oda-hub/dispatcher-plugin-integral-all-sky](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky) -9. 🗣 Commented on [#824](https://github.com/scilus/scilpy/pull/824#issuecomment-1836141918) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#823](https://github.com/scilus/scilpy/pull/823#issuecomment-1836070705) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +3. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) +4. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) +5. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +7. 🗣 Commented on [#1216](https://github.com/aimclub/FEDOT/pull/1216#issuecomment-1836184524) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#1027](https://github.com/aramis-lab/clinica/pull/1027#issuecomment-1836161773) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +9. 🗣 Commented on [#25](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky/pull/25#issuecomment-1836150876) in [oda-hub/dispatcher-plugin-integral-all-sky](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky) +10. 🗣 Commented on [#824](https://github.com/scilus/scilpy/pull/824#issuecomment-1836141918) in [scilus/scilpy](https://github.com/scilus/scilpy) From 778d7a6bca96e1e96572c604de27fd516354d6bd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Dec 2023 20:17:30 +0000 Subject: [PATCH 0783/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9ad5152a..243dae98 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -3. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) -4. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) -5. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -7. 🗣 Commented on [#1216](https://github.com/aimclub/FEDOT/pull/1216#issuecomment-1836184524) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#1027](https://github.com/aramis-lab/clinica/pull/1027#issuecomment-1836161773) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -9. 🗣 Commented on [#25](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky/pull/25#issuecomment-1836150876) in [oda-hub/dispatcher-plugin-integral-all-sky](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky) -10. 🗣 Commented on [#824](https://github.com/scilus/scilpy/pull/824#issuecomment-1836141918) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +4. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) +5. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) +6. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +7. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +8. 🗣 Commented on [#1216](https://github.com/aimclub/FEDOT/pull/1216#issuecomment-1836184524) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#1027](https://github.com/aramis-lab/clinica/pull/1027#issuecomment-1836161773) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +10. 🗣 Commented on [#25](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky/pull/25#issuecomment-1836150876) in [oda-hub/dispatcher-plugin-integral-all-sky](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky) From 6a77e325643fa5df69f7c8e5f2be0022e342e651 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Dec 2023 23:16:23 +0000 Subject: [PATCH 0784/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 243dae98..be209c66 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -4. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) -5. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) -6. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -7. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -8. 🗣 Commented on [#1216](https://github.com/aimclub/FEDOT/pull/1216#issuecomment-1836184524) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#1027](https://github.com/aramis-lab/clinica/pull/1027#issuecomment-1836161773) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) -10. 🗣 Commented on [#25](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky/pull/25#issuecomment-1836150876) in [oda-hub/dispatcher-plugin-integral-all-sky](https://github.com/oda-hub/dispatcher-plugin-integral-all-sky) +1. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +5. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) +6. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) +7. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +8. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +9. 🗣 Commented on [#1216](https://github.com/aimclub/FEDOT/pull/1216#issuecomment-1836184524) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#1027](https://github.com/aramis-lab/clinica/pull/1027#issuecomment-1836161773) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) From 766f778c4e655577847aa2d81feb62db6c66ea7c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Dec 2023 01:10:15 +0000 Subject: [PATCH 0785/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index be209c66..021d91de 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -5. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) -6. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) -7. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -8. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -9. 🗣 Commented on [#1216](https://github.com/aimclub/FEDOT/pull/1216#issuecomment-1836184524) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#1027](https://github.com/aramis-lab/clinica/pull/1027#issuecomment-1836161773) in [aramis-lab/clinica](https://github.com/aramis-lab/clinica) +1. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +2. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +6. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) +7. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) +8. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +10. 🗣 Commented on [#1216](https://github.com/aimclub/FEDOT/pull/1216#issuecomment-1836184524) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From 249a4baf4ece157b5e0399914c29005c8b4c6e33 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Dec 2023 04:18:50 +0000 Subject: [PATCH 0786/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 021d91de..162d7b23 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -2. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -6. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) -7. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) -8. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -10. 🗣 Commented on [#1216](https://github.com/aimclub/FEDOT/pull/1216#issuecomment-1836184524) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +3. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +7. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) +8. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) +9. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +10. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) From ccc623336443e4e68162e43b73addefe484b4ffd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Dec 2023 06:20:00 +0000 Subject: [PATCH 0787/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 162d7b23..69b3f186 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -3. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -7. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) -8. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) -9. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -10. 🗣 Commented on [#9078](https://github.com/statsmodels/statsmodels/pull/9078#issuecomment-1836186182) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +1. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +2. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +4. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +8. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) +9. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) +10. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) From aa35c61a06c9188f3382e898ade88a03cc080cf1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Dec 2023 10:15:31 +0000 Subject: [PATCH 0788/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 69b3f186..35501d44 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -2. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -4. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -8. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) -9. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) -10. 🗣 Commented on [#873](https://github.com/PyThaiNLP/pythainlp/pull/873#issuecomment-1836314729) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +1. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) +2. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +3. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +5. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +9. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) +10. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) From f472eba50557f6b7a34440d9a18991352abb5bd5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Dec 2023 11:37:28 +0000 Subject: [PATCH 0789/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 35501d44..b46eec0d 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) -2. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -3. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -5. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -9. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) -10. 🗣 Commented on [#1667](https://github.com/OGGM/oggm/pull/1667#issuecomment-1836416642) in [OGGM/oggm](https://github.com/OGGM/oggm) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) +2. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) +3. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +4. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +6. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +9. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +10. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) From 1b9c0f8bc7d36d74765b7e94025d848c2569c1d9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 3 Dec 2023 02:11:24 +0000 Subject: [PATCH 0790/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b46eec0d..bcf7fa88 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) -2. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) -3. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -4. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -6. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -9. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -10. 🗣 Commented on [#12](https://github.com/Osazz/banking_system/pull/12#issuecomment-1836461537) in [Osazz/banking_system](https://github.com/Osazz/banking_system) +1. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) +3. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) +4. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +5. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +7. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +9. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) From f88fbdd8cb2f024fb6720fbc80d1c8de6277d082 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 3 Dec 2023 07:13:38 +0000 Subject: [PATCH 0791/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bcf7fa88..58643bce 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) -3. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) -4. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -5. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -7. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -9. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#1318](https://github.com/NeuralEnsemble/python-neo/pull/1318#issuecomment-1836550125) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +1. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) +4. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) +5. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +6. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +8. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From 0fc932014f903557733022551c5b08d91da44db8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 3 Dec 2023 12:29:37 +0000 Subject: [PATCH 0792/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 58643bce..bf11ac2e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) -4. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) -5. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -6. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -8. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#258](https://github.com/OpenFreeEnergy/gufe/pull/258#issuecomment-1836636083) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) +5. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) +6. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +7. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +9. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From 1d9cbf02ac21aa124e7aef161e80fac5e5d3e985 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 3 Dec 2023 15:14:51 +0000 Subject: [PATCH 0793/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bf11ac2e..abc9dc06 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) -5. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) -6. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -7. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -9. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#259](https://github.com/OpenFreeEnergy/gufe/pull/259#issuecomment-1836675092) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#4404](https://github.com/pyload/pyload/pull/4404#issuecomment-1837503305) in [pyload/pyload](https://github.com/pyload/pyload) +2. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) +6. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) +7. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +8. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +10. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From fa5f3100ca3e0f3b755f0b168e92ede0221a72c9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 3 Dec 2023 18:18:58 +0000 Subject: [PATCH 0794/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index abc9dc06..1745fd79 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4404](https://github.com/pyload/pyload/pull/4404#issuecomment-1837503305) in [pyload/pyload](https://github.com/pyload/pyload) -2. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) -6. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) -7. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -8. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -10. 🗣 Commented on [#21574](https://github.com/spyder-ide/spyder/pull/21574#issuecomment-1836874669) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/PaLM-Kosmos-Vision/pull/1#issuecomment-1837548468) in [tuhinmallick/PaLM-Kosmos-Vision](https://github.com/tuhinmallick/PaLM-Kosmos-Vision) +2. 🗣 Commented on [#4404](https://github.com/pyload/pyload/pull/4404#issuecomment-1837503305) in [pyload/pyload](https://github.com/pyload/pyload) +3. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) +7. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) +8. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +9. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) From 502ebbf41f27a66e203f1c2dc225671ddcd6123d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 3 Dec 2023 21:13:10 +0000 Subject: [PATCH 0795/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1745fd79..e9d845c9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/PaLM-Kosmos-Vision/pull/1#issuecomment-1837548468) in [tuhinmallick/PaLM-Kosmos-Vision](https://github.com/tuhinmallick/PaLM-Kosmos-Vision) -2. 🗣 Commented on [#4404](https://github.com/pyload/pyload/pull/4404#issuecomment-1837503305) in [pyload/pyload](https://github.com/pyload/pyload) -3. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) -7. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) -8. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -9. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#487](https://github.com/UIUCLibrary/Speedwagon/pull/487#issuecomment-1836928563) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +1. 🗣 Commented on [#180](https://github.com/Fatal1ty/mashumaro/pull/180#issuecomment-1837595669) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/PaLM-Kosmos-Vision/pull/1#issuecomment-1837548468) in [tuhinmallick/PaLM-Kosmos-Vision](https://github.com/tuhinmallick/PaLM-Kosmos-Vision) +3. 🗣 Commented on [#4404](https://github.com/pyload/pyload/pull/4404#issuecomment-1837503305) in [pyload/pyload](https://github.com/pyload/pyload) +4. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) +8. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) +9. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +10. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 0bb4bb91a8d3581ca9f4af571f239c68a0e9af8b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 3 Dec 2023 23:16:11 +0000 Subject: [PATCH 0796/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e9d845c9..01ef416f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#180](https://github.com/Fatal1ty/mashumaro/pull/180#issuecomment-1837595669) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/PaLM-Kosmos-Vision/pull/1#issuecomment-1837548468) in [tuhinmallick/PaLM-Kosmos-Vision](https://github.com/tuhinmallick/PaLM-Kosmos-Vision) -3. 🗣 Commented on [#4404](https://github.com/pyload/pyload/pull/4404#issuecomment-1837503305) in [pyload/pyload](https://github.com/pyload/pyload) -4. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) -8. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) -9. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -10. 🗣 Commented on [#214](https://github.com/CartoonFan/lutris/pull/214#issuecomment-1837031915) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#216](https://github.com/CartoonFan/lutris/pull/216#issuecomment-1837633374) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#180](https://github.com/Fatal1ty/mashumaro/pull/180#issuecomment-1837595669) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/PaLM-Kosmos-Vision/pull/1#issuecomment-1837548468) in [tuhinmallick/PaLM-Kosmos-Vision](https://github.com/tuhinmallick/PaLM-Kosmos-Vision) +4. 🗣 Commented on [#4404](https://github.com/pyload/pyload/pull/4404#issuecomment-1837503305) in [pyload/pyload](https://github.com/pyload/pyload) +5. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) +9. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) +10. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) From 73643fa93aee28a40ee9b1ec073fe7f3fb679821 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Dec 2023 01:14:14 +0000 Subject: [PATCH 0797/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 01ef416f..753d4f6b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#216](https://github.com/CartoonFan/lutris/pull/216#issuecomment-1837633374) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#180](https://github.com/Fatal1ty/mashumaro/pull/180#issuecomment-1837595669) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/PaLM-Kosmos-Vision/pull/1#issuecomment-1837548468) in [tuhinmallick/PaLM-Kosmos-Vision](https://github.com/tuhinmallick/PaLM-Kosmos-Vision) -4. 🗣 Commented on [#4404](https://github.com/pyload/pyload/pull/4404#issuecomment-1837503305) in [pyload/pyload](https://github.com/pyload/pyload) -5. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) -9. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) -10. 🗣 Commented on [#646](https://github.com/SergeyPirogov/webdriver_manager/pull/646#issuecomment-1837049865) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +1. 🗣 Commented on [#16](https://github.com/kkuba91/turnament_organizer/pull/16#issuecomment-1837678705) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +2. 🗣 Commented on [#216](https://github.com/CartoonFan/lutris/pull/216#issuecomment-1837633374) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#180](https://github.com/Fatal1ty/mashumaro/pull/180#issuecomment-1837595669) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/PaLM-Kosmos-Vision/pull/1#issuecomment-1837548468) in [tuhinmallick/PaLM-Kosmos-Vision](https://github.com/tuhinmallick/PaLM-Kosmos-Vision) +5. 🗣 Commented on [#4404](https://github.com/pyload/pyload/pull/4404#issuecomment-1837503305) in [pyload/pyload](https://github.com/pyload/pyload) +6. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +7. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) +10. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) From 01d82add492a9618fa463ce2c5872178b54b534a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Dec 2023 02:10:54 +0000 Subject: [PATCH 0798/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 753d4f6b..1864a363 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#16](https://github.com/kkuba91/turnament_organizer/pull/16#issuecomment-1837678705) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -2. 🗣 Commented on [#216](https://github.com/CartoonFan/lutris/pull/216#issuecomment-1837633374) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#180](https://github.com/Fatal1ty/mashumaro/pull/180#issuecomment-1837595669) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/PaLM-Kosmos-Vision/pull/1#issuecomment-1837548468) in [tuhinmallick/PaLM-Kosmos-Vision](https://github.com/tuhinmallick/PaLM-Kosmos-Vision) -5. 🗣 Commented on [#4404](https://github.com/pyload/pyload/pull/4404#issuecomment-1837503305) in [pyload/pyload](https://github.com/pyload/pyload) -6. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -7. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) -10. 🗣 Commented on [#453](https://github.com/oemof/tespy/pull/453#issuecomment-1837109478) in [oemof/tespy](https://github.com/oemof/tespy) +1. 🗣 Commented on [#96](https://github.com/willtheorangeguy/Running-Calculator/pull/96#issuecomment-1837720632) in [willtheorangeguy/Running-Calculator](https://github.com/willtheorangeguy/Running-Calculator) +2. 🗣 Commented on [#16](https://github.com/kkuba91/turnament_organizer/pull/16#issuecomment-1837678705) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +3. 🗣 Commented on [#216](https://github.com/CartoonFan/lutris/pull/216#issuecomment-1837633374) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#180](https://github.com/Fatal1ty/mashumaro/pull/180#issuecomment-1837595669) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/PaLM-Kosmos-Vision/pull/1#issuecomment-1837548468) in [tuhinmallick/PaLM-Kosmos-Vision](https://github.com/tuhinmallick/PaLM-Kosmos-Vision) +6. 🗣 Commented on [#4404](https://github.com/pyload/pyload/pull/4404#issuecomment-1837503305) in [pyload/pyload](https://github.com/pyload/pyload) +7. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +8. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) From a8e8acfdc61ea43f0aed53e03a579b15a4916255 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Dec 2023 12:31:51 +0000 Subject: [PATCH 0799/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1864a363..5226fd46 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#96](https://github.com/willtheorangeguy/Running-Calculator/pull/96#issuecomment-1837720632) in [willtheorangeguy/Running-Calculator](https://github.com/willtheorangeguy/Running-Calculator) -2. 🗣 Commented on [#16](https://github.com/kkuba91/turnament_organizer/pull/16#issuecomment-1837678705) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -3. 🗣 Commented on [#216](https://github.com/CartoonFan/lutris/pull/216#issuecomment-1837633374) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#180](https://github.com/Fatal1ty/mashumaro/pull/180#issuecomment-1837595669) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/PaLM-Kosmos-Vision/pull/1#issuecomment-1837548468) in [tuhinmallick/PaLM-Kosmos-Vision](https://github.com/tuhinmallick/PaLM-Kosmos-Vision) -6. 🗣 Commented on [#4404](https://github.com/pyload/pyload/pull/4404#issuecomment-1837503305) in [pyload/pyload](https://github.com/pyload/pyload) -7. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -8. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/unsloth/pull/1#issuecomment-1837125805) in [tuhinmallick/unsloth](https://github.com/tuhinmallick/unsloth) +1. 🗣 Commented on [#947](https://github.com/avaframe/AvaFrame/pull/947#issuecomment-1838483320) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#96](https://github.com/willtheorangeguy/Running-Calculator/pull/96#issuecomment-1837720632) in [willtheorangeguy/Running-Calculator](https://github.com/willtheorangeguy/Running-Calculator) +3. 🗣 Commented on [#16](https://github.com/kkuba91/turnament_organizer/pull/16#issuecomment-1837678705) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +4. 🗣 Commented on [#216](https://github.com/CartoonFan/lutris/pull/216#issuecomment-1837633374) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#180](https://github.com/Fatal1ty/mashumaro/pull/180#issuecomment-1837595669) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/PaLM-Kosmos-Vision/pull/1#issuecomment-1837548468) in [tuhinmallick/PaLM-Kosmos-Vision](https://github.com/tuhinmallick/PaLM-Kosmos-Vision) +7. 🗣 Commented on [#4404](https://github.com/pyload/pyload/pull/4404#issuecomment-1837503305) in [pyload/pyload](https://github.com/pyload/pyload) +8. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) From d27259b8b34411b9cce1ef7dfb08ca0cca86ecbc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Dec 2023 14:38:28 +0000 Subject: [PATCH 0800/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5226fd46..68d6ad67 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#947](https://github.com/avaframe/AvaFrame/pull/947#issuecomment-1838483320) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#96](https://github.com/willtheorangeguy/Running-Calculator/pull/96#issuecomment-1837720632) in [willtheorangeguy/Running-Calculator](https://github.com/willtheorangeguy/Running-Calculator) -3. 🗣 Commented on [#16](https://github.com/kkuba91/turnament_organizer/pull/16#issuecomment-1837678705) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -4. 🗣 Commented on [#216](https://github.com/CartoonFan/lutris/pull/216#issuecomment-1837633374) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#180](https://github.com/Fatal1ty/mashumaro/pull/180#issuecomment-1837595669) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/PaLM-Kosmos-Vision/pull/1#issuecomment-1837548468) in [tuhinmallick/PaLM-Kosmos-Vision](https://github.com/tuhinmallick/PaLM-Kosmos-Vision) -7. 🗣 Commented on [#4404](https://github.com/pyload/pyload/pull/4404#issuecomment-1837503305) in [pyload/pyload](https://github.com/pyload/pyload) -8. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#508](https://github.com/spatialaudio/python-sounddevice/pull/508#issuecomment-1837304651) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +1. 🗣 Commented on [#1253](https://github.com/rpm-software-management/mock/pull/1253#issuecomment-1838763528) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +2. 🗣 Commented on [#947](https://github.com/avaframe/AvaFrame/pull/947#issuecomment-1838483320) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#96](https://github.com/willtheorangeguy/Running-Calculator/pull/96#issuecomment-1837720632) in [willtheorangeguy/Running-Calculator](https://github.com/willtheorangeguy/Running-Calculator) +4. 🗣 Commented on [#16](https://github.com/kkuba91/turnament_organizer/pull/16#issuecomment-1837678705) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +5. 🗣 Commented on [#216](https://github.com/CartoonFan/lutris/pull/216#issuecomment-1837633374) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#180](https://github.com/Fatal1ty/mashumaro/pull/180#issuecomment-1837595669) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/PaLM-Kosmos-Vision/pull/1#issuecomment-1837548468) in [tuhinmallick/PaLM-Kosmos-Vision](https://github.com/tuhinmallick/PaLM-Kosmos-Vision) +8. 🗣 Commented on [#4404](https://github.com/pyload/pyload/pull/4404#issuecomment-1837503305) in [pyload/pyload](https://github.com/pyload/pyload) +9. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +10. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 995a40ab38152de02d0294ae2ce3363489f743b7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Dec 2023 20:37:28 +0000 Subject: [PATCH 0801/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 68d6ad67..06228078 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1253](https://github.com/rpm-software-management/mock/pull/1253#issuecomment-1838763528) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -2. 🗣 Commented on [#947](https://github.com/avaframe/AvaFrame/pull/947#issuecomment-1838483320) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#96](https://github.com/willtheorangeguy/Running-Calculator/pull/96#issuecomment-1837720632) in [willtheorangeguy/Running-Calculator](https://github.com/willtheorangeguy/Running-Calculator) -4. 🗣 Commented on [#16](https://github.com/kkuba91/turnament_organizer/pull/16#issuecomment-1837678705) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -5. 🗣 Commented on [#216](https://github.com/CartoonFan/lutris/pull/216#issuecomment-1837633374) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#180](https://github.com/Fatal1ty/mashumaro/pull/180#issuecomment-1837595669) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/PaLM-Kosmos-Vision/pull/1#issuecomment-1837548468) in [tuhinmallick/PaLM-Kosmos-Vision](https://github.com/tuhinmallick/PaLM-Kosmos-Vision) -8. 🗣 Commented on [#4404](https://github.com/pyload/pyload/pull/4404#issuecomment-1837503305) in [pyload/pyload](https://github.com/pyload/pyload) -9. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -10. 🗣 Commented on [#215](https://github.com/CartoonFan/lutris/pull/215#issuecomment-1837390396) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#827](https://github.com/scilus/scilpy/pull/827#issuecomment-1839429148) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#1253](https://github.com/rpm-software-management/mock/pull/1253#issuecomment-1838763528) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +3. 🗣 Commented on [#947](https://github.com/avaframe/AvaFrame/pull/947#issuecomment-1838483320) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#96](https://github.com/willtheorangeguy/Running-Calculator/pull/96#issuecomment-1837720632) in [willtheorangeguy/Running-Calculator](https://github.com/willtheorangeguy/Running-Calculator) +5. 🗣 Commented on [#16](https://github.com/kkuba91/turnament_organizer/pull/16#issuecomment-1837678705) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +6. 🗣 Commented on [#216](https://github.com/CartoonFan/lutris/pull/216#issuecomment-1837633374) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#180](https://github.com/Fatal1ty/mashumaro/pull/180#issuecomment-1837595669) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/PaLM-Kosmos-Vision/pull/1#issuecomment-1837548468) in [tuhinmallick/PaLM-Kosmos-Vision](https://github.com/tuhinmallick/PaLM-Kosmos-Vision) +9. 🗣 Commented on [#4404](https://github.com/pyload/pyload/pull/4404#issuecomment-1837503305) in [pyload/pyload](https://github.com/pyload/pyload) +10. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) From 2c8a7cc1b402a2f2c252153ae9be4c850ec5750d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Dec 2023 22:15:30 +0000 Subject: [PATCH 0802/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 06228078..9e0d4bb0 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#827](https://github.com/scilus/scilpy/pull/827#issuecomment-1839429148) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#1253](https://github.com/rpm-software-management/mock/pull/1253#issuecomment-1838763528) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -3. 🗣 Commented on [#947](https://github.com/avaframe/AvaFrame/pull/947#issuecomment-1838483320) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#96](https://github.com/willtheorangeguy/Running-Calculator/pull/96#issuecomment-1837720632) in [willtheorangeguy/Running-Calculator](https://github.com/willtheorangeguy/Running-Calculator) -5. 🗣 Commented on [#16](https://github.com/kkuba91/turnament_organizer/pull/16#issuecomment-1837678705) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -6. 🗣 Commented on [#216](https://github.com/CartoonFan/lutris/pull/216#issuecomment-1837633374) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#180](https://github.com/Fatal1ty/mashumaro/pull/180#issuecomment-1837595669) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/PaLM-Kosmos-Vision/pull/1#issuecomment-1837548468) in [tuhinmallick/PaLM-Kosmos-Vision](https://github.com/tuhinmallick/PaLM-Kosmos-Vision) -9. 🗣 Commented on [#4404](https://github.com/pyload/pyload/pull/4404#issuecomment-1837503305) in [pyload/pyload](https://github.com/pyload/pyload) -10. 🗣 Commented on [#875](https://github.com/PyThaiNLP/pythainlp/pull/875#issuecomment-1837460037) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +1. 🗣 Commented on [#217](https://github.com/CartoonFan/lutris/pull/217#issuecomment-1839574297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#829](https://github.com/scilus/scilpy/pull/829#issuecomment-1839554757) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#827](https://github.com/scilus/scilpy/pull/827#issuecomment-1839429148) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#1253](https://github.com/rpm-software-management/mock/pull/1253#issuecomment-1838763528) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +5. 🗣 Commented on [#947](https://github.com/avaframe/AvaFrame/pull/947#issuecomment-1838483320) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#96](https://github.com/willtheorangeguy/Running-Calculator/pull/96#issuecomment-1837720632) in [willtheorangeguy/Running-Calculator](https://github.com/willtheorangeguy/Running-Calculator) +7. 🗣 Commented on [#16](https://github.com/kkuba91/turnament_organizer/pull/16#issuecomment-1837678705) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +8. 🗣 Commented on [#216](https://github.com/CartoonFan/lutris/pull/216#issuecomment-1837633374) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#180](https://github.com/Fatal1ty/mashumaro/pull/180#issuecomment-1837595669) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/PaLM-Kosmos-Vision/pull/1#issuecomment-1837548468) in [tuhinmallick/PaLM-Kosmos-Vision](https://github.com/tuhinmallick/PaLM-Kosmos-Vision) From 9adf22bf8af9f0ca2a92d31a94e90cce21bff799 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Dec 2023 01:14:36 +0000 Subject: [PATCH 0803/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9e0d4bb0..e28a800a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#217](https://github.com/CartoonFan/lutris/pull/217#issuecomment-1839574297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#829](https://github.com/scilus/scilpy/pull/829#issuecomment-1839554757) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#827](https://github.com/scilus/scilpy/pull/827#issuecomment-1839429148) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#1253](https://github.com/rpm-software-management/mock/pull/1253#issuecomment-1838763528) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -5. 🗣 Commented on [#947](https://github.com/avaframe/AvaFrame/pull/947#issuecomment-1838483320) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#96](https://github.com/willtheorangeguy/Running-Calculator/pull/96#issuecomment-1837720632) in [willtheorangeguy/Running-Calculator](https://github.com/willtheorangeguy/Running-Calculator) -7. 🗣 Commented on [#16](https://github.com/kkuba91/turnament_organizer/pull/16#issuecomment-1837678705) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -8. 🗣 Commented on [#216](https://github.com/CartoonFan/lutris/pull/216#issuecomment-1837633374) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#180](https://github.com/Fatal1ty/mashumaro/pull/180#issuecomment-1837595669) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/PaLM-Kosmos-Vision/pull/1#issuecomment-1837548468) in [tuhinmallick/PaLM-Kosmos-Vision](https://github.com/tuhinmallick/PaLM-Kosmos-Vision) +1. 🗣 Commented on [#114](https://github.com/Dog-Face-Development/PyWorkout/pull/114#issuecomment-1839805437) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +2. 🗣 Commented on [#113](https://github.com/Dog-Face-Development/PyWorkout/pull/113#issuecomment-1839803562) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +3. 🗣 Commented on [#112](https://github.com/Dog-Face-Development/PyWorkout/pull/112#issuecomment-1839798499) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-as-service/pull/1#issuecomment-1839780443) in [tuhinmallick/clip-as-service](https://github.com/tuhinmallick/clip-as-service) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/JungleGym/pull/1#issuecomment-1839775407) in [tuhinmallick/JungleGym](https://github.com/tuhinmallick/JungleGym) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/lanarky/pull/1#issuecomment-1839772324) in [tuhinmallick/lanarky](https://github.com/tuhinmallick/lanarky) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/bananalyzer/pull/1#issuecomment-1839734423) in [tuhinmallick/bananalyzer](https://github.com/tuhinmallick/bananalyzer) +8. 🗣 Commented on [#217](https://github.com/CartoonFan/lutris/pull/217#issuecomment-1839574297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#829](https://github.com/scilus/scilpy/pull/829#issuecomment-1839554757) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#827](https://github.com/scilus/scilpy/pull/827#issuecomment-1839429148) in [scilus/scilpy](https://github.com/scilus/scilpy) From b7be036a9e13dd4574b76c2eec4488bad202ec75 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Dec 2023 02:11:29 +0000 Subject: [PATCH 0804/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e28a800a..499c6ea8 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#114](https://github.com/Dog-Face-Development/PyWorkout/pull/114#issuecomment-1839805437) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -2. 🗣 Commented on [#113](https://github.com/Dog-Face-Development/PyWorkout/pull/113#issuecomment-1839803562) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -3. 🗣 Commented on [#112](https://github.com/Dog-Face-Development/PyWorkout/pull/112#issuecomment-1839798499) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-as-service/pull/1#issuecomment-1839780443) in [tuhinmallick/clip-as-service](https://github.com/tuhinmallick/clip-as-service) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/JungleGym/pull/1#issuecomment-1839775407) in [tuhinmallick/JungleGym](https://github.com/tuhinmallick/JungleGym) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/lanarky/pull/1#issuecomment-1839772324) in [tuhinmallick/lanarky](https://github.com/tuhinmallick/lanarky) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/bananalyzer/pull/1#issuecomment-1839734423) in [tuhinmallick/bananalyzer](https://github.com/tuhinmallick/bananalyzer) -8. 🗣 Commented on [#217](https://github.com/CartoonFan/lutris/pull/217#issuecomment-1839574297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#829](https://github.com/scilus/scilpy/pull/829#issuecomment-1839554757) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#827](https://github.com/scilus/scilpy/pull/827#issuecomment-1839429148) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#128](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/128#issuecomment-1839846927) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) +2. 🗣 Commented on [#122](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/122#issuecomment-1839838110) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +3. 🗣 Commented on [#121](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/121#issuecomment-1839836821) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +4. 🗣 Commented on [#120](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/120#issuecomment-1839834216) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +5. 🗣 Commented on [#114](https://github.com/Dog-Face-Development/PyWorkout/pull/114#issuecomment-1839805437) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +6. 🗣 Commented on [#113](https://github.com/Dog-Face-Development/PyWorkout/pull/113#issuecomment-1839803562) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +7. 🗣 Commented on [#112](https://github.com/Dog-Face-Development/PyWorkout/pull/112#issuecomment-1839798499) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-as-service/pull/1#issuecomment-1839780443) in [tuhinmallick/clip-as-service](https://github.com/tuhinmallick/clip-as-service) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/JungleGym/pull/1#issuecomment-1839775407) in [tuhinmallick/JungleGym](https://github.com/tuhinmallick/JungleGym) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/lanarky/pull/1#issuecomment-1839772324) in [tuhinmallick/lanarky](https://github.com/tuhinmallick/lanarky) From 22600aaaa5f6ceac2163c0ebce885a27f3abdca7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Dec 2023 05:37:21 +0000 Subject: [PATCH 0805/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 499c6ea8..ca8a5afb 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#128](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/128#issuecomment-1839846927) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) -2. 🗣 Commented on [#122](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/122#issuecomment-1839838110) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -3. 🗣 Commented on [#121](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/121#issuecomment-1839836821) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -4. 🗣 Commented on [#120](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/120#issuecomment-1839834216) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -5. 🗣 Commented on [#114](https://github.com/Dog-Face-Development/PyWorkout/pull/114#issuecomment-1839805437) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -6. 🗣 Commented on [#113](https://github.com/Dog-Face-Development/PyWorkout/pull/113#issuecomment-1839803562) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -7. 🗣 Commented on [#112](https://github.com/Dog-Face-Development/PyWorkout/pull/112#issuecomment-1839798499) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-as-service/pull/1#issuecomment-1839780443) in [tuhinmallick/clip-as-service](https://github.com/tuhinmallick/clip-as-service) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/JungleGym/pull/1#issuecomment-1839775407) in [tuhinmallick/JungleGym](https://github.com/tuhinmallick/JungleGym) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/lanarky/pull/1#issuecomment-1839772324) in [tuhinmallick/lanarky](https://github.com/tuhinmallick/lanarky) +1. 🗣 Commented on [#879](https://github.com/PyThaiNLP/pythainlp/pull/879#issuecomment-1840042977) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#128](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/128#issuecomment-1839846927) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) +3. 🗣 Commented on [#122](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/122#issuecomment-1839838110) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +4. 🗣 Commented on [#121](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/121#issuecomment-1839836821) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +5. 🗣 Commented on [#120](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/120#issuecomment-1839834216) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +6. 🗣 Commented on [#114](https://github.com/Dog-Face-Development/PyWorkout/pull/114#issuecomment-1839805437) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +7. 🗣 Commented on [#113](https://github.com/Dog-Face-Development/PyWorkout/pull/113#issuecomment-1839803562) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +8. 🗣 Commented on [#112](https://github.com/Dog-Face-Development/PyWorkout/pull/112#issuecomment-1839798499) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-as-service/pull/1#issuecomment-1839780443) in [tuhinmallick/clip-as-service](https://github.com/tuhinmallick/clip-as-service) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/JungleGym/pull/1#issuecomment-1839775407) in [tuhinmallick/JungleGym](https://github.com/tuhinmallick/JungleGym) From fbeb50170f2d8868210da01e5993fde6711b1cc9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Dec 2023 10:18:38 +0000 Subject: [PATCH 0806/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ca8a5afb..83ea229c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#879](https://github.com/PyThaiNLP/pythainlp/pull/879#issuecomment-1840042977) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#128](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/128#issuecomment-1839846927) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) -3. 🗣 Commented on [#122](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/122#issuecomment-1839838110) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -4. 🗣 Commented on [#121](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/121#issuecomment-1839836821) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -5. 🗣 Commented on [#120](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/120#issuecomment-1839834216) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -6. 🗣 Commented on [#114](https://github.com/Dog-Face-Development/PyWorkout/pull/114#issuecomment-1839805437) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -7. 🗣 Commented on [#113](https://github.com/Dog-Face-Development/PyWorkout/pull/113#issuecomment-1839803562) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -8. 🗣 Commented on [#112](https://github.com/Dog-Face-Development/PyWorkout/pull/112#issuecomment-1839798499) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-as-service/pull/1#issuecomment-1839780443) in [tuhinmallick/clip-as-service](https://github.com/tuhinmallick/clip-as-service) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/JungleGym/pull/1#issuecomment-1839775407) in [tuhinmallick/JungleGym](https://github.com/tuhinmallick/JungleGym) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/fabricator/pull/1#issuecomment-1840401451) in [tuhinmallick/fabricator](https://github.com/tuhinmallick/fabricator) +2. 🗣 Commented on [#879](https://github.com/PyThaiNLP/pythainlp/pull/879#issuecomment-1840042977) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#128](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/128#issuecomment-1839846927) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) +4. 🗣 Commented on [#122](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/122#issuecomment-1839838110) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +5. 🗣 Commented on [#121](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/121#issuecomment-1839836821) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +6. 🗣 Commented on [#120](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/120#issuecomment-1839834216) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +7. 🗣 Commented on [#114](https://github.com/Dog-Face-Development/PyWorkout/pull/114#issuecomment-1839805437) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +8. 🗣 Commented on [#113](https://github.com/Dog-Face-Development/PyWorkout/pull/113#issuecomment-1839803562) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +9. 🗣 Commented on [#112](https://github.com/Dog-Face-Development/PyWorkout/pull/112#issuecomment-1839798499) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-as-service/pull/1#issuecomment-1839780443) in [tuhinmallick/clip-as-service](https://github.com/tuhinmallick/clip-as-service) From 1b1ad4f279484aef0a02294228e8bf27fa1a5502 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Dec 2023 11:37:19 +0000 Subject: [PATCH 0807/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 83ea229c..f862c12f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/fabricator/pull/1#issuecomment-1840401451) in [tuhinmallick/fabricator](https://github.com/tuhinmallick/fabricator) -2. 🗣 Commented on [#879](https://github.com/PyThaiNLP/pythainlp/pull/879#issuecomment-1840042977) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#128](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/128#issuecomment-1839846927) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) -4. 🗣 Commented on [#122](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/122#issuecomment-1839838110) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -5. 🗣 Commented on [#121](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/121#issuecomment-1839836821) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -6. 🗣 Commented on [#120](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/120#issuecomment-1839834216) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -7. 🗣 Commented on [#114](https://github.com/Dog-Face-Development/PyWorkout/pull/114#issuecomment-1839805437) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -8. 🗣 Commented on [#113](https://github.com/Dog-Face-Development/PyWorkout/pull/113#issuecomment-1839803562) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -9. 🗣 Commented on [#112](https://github.com/Dog-Face-Development/PyWorkout/pull/112#issuecomment-1839798499) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-as-service/pull/1#issuecomment-1839780443) in [tuhinmallick/clip-as-service](https://github.com/tuhinmallick/clip-as-service) +1. 🗣 Commented on [#218](https://github.com/CartoonFan/lutris/pull/218#issuecomment-1840545740) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/fabricator/pull/1#issuecomment-1840401451) in [tuhinmallick/fabricator](https://github.com/tuhinmallick/fabricator) +3. 🗣 Commented on [#879](https://github.com/PyThaiNLP/pythainlp/pull/879#issuecomment-1840042977) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#128](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/128#issuecomment-1839846927) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) +5. 🗣 Commented on [#122](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/122#issuecomment-1839838110) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +6. 🗣 Commented on [#121](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/121#issuecomment-1839836821) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +7. 🗣 Commented on [#120](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/120#issuecomment-1839834216) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +8. 🗣 Commented on [#114](https://github.com/Dog-Face-Development/PyWorkout/pull/114#issuecomment-1839805437) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +9. 🗣 Commented on [#113](https://github.com/Dog-Face-Development/PyWorkout/pull/113#issuecomment-1839803562) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +10. 🗣 Commented on [#112](https://github.com/Dog-Face-Development/PyWorkout/pull/112#issuecomment-1839798499) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) From cfac51ad8dd1655e50e8e1df4b11bff08b0b5541 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Dec 2023 14:16:02 +0000 Subject: [PATCH 0808/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f862c12f..7cfd7e80 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#218](https://github.com/CartoonFan/lutris/pull/218#issuecomment-1840545740) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/fabricator/pull/1#issuecomment-1840401451) in [tuhinmallick/fabricator](https://github.com/tuhinmallick/fabricator) -3. 🗣 Commented on [#879](https://github.com/PyThaiNLP/pythainlp/pull/879#issuecomment-1840042977) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#128](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/128#issuecomment-1839846927) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) -5. 🗣 Commented on [#122](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/122#issuecomment-1839838110) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -6. 🗣 Commented on [#121](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/121#issuecomment-1839836821) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -7. 🗣 Commented on [#120](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/120#issuecomment-1839834216) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -8. 🗣 Commented on [#114](https://github.com/Dog-Face-Development/PyWorkout/pull/114#issuecomment-1839805437) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -9. 🗣 Commented on [#113](https://github.com/Dog-Face-Development/PyWorkout/pull/113#issuecomment-1839803562) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -10. 🗣 Commented on [#112](https://github.com/Dog-Face-Development/PyWorkout/pull/112#issuecomment-1839798499) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +1. 🗣 Commented on [#38](https://github.com/eastgenomics/trendyQC/pull/38#issuecomment-1840852046) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +2. 🗣 Commented on [#218](https://github.com/CartoonFan/lutris/pull/218#issuecomment-1840545740) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/fabricator/pull/1#issuecomment-1840401451) in [tuhinmallick/fabricator](https://github.com/tuhinmallick/fabricator) +4. 🗣 Commented on [#879](https://github.com/PyThaiNLP/pythainlp/pull/879#issuecomment-1840042977) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#128](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/128#issuecomment-1839846927) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) +6. 🗣 Commented on [#122](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/122#issuecomment-1839838110) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +7. 🗣 Commented on [#121](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/121#issuecomment-1839836821) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +8. 🗣 Commented on [#120](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/120#issuecomment-1839834216) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +9. 🗣 Commented on [#114](https://github.com/Dog-Face-Development/PyWorkout/pull/114#issuecomment-1839805437) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +10. 🗣 Commented on [#113](https://github.com/Dog-Face-Development/PyWorkout/pull/113#issuecomment-1839803562) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) From 0a971d5656b4350d7f2b7bc6469cdf72f67e89cd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Dec 2023 14:37:50 +0000 Subject: [PATCH 0809/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7cfd7e80..b49183de 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#38](https://github.com/eastgenomics/trendyQC/pull/38#issuecomment-1840852046) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -2. 🗣 Commented on [#218](https://github.com/CartoonFan/lutris/pull/218#issuecomment-1840545740) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/fabricator/pull/1#issuecomment-1840401451) in [tuhinmallick/fabricator](https://github.com/tuhinmallick/fabricator) -4. 🗣 Commented on [#879](https://github.com/PyThaiNLP/pythainlp/pull/879#issuecomment-1840042977) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#128](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/128#issuecomment-1839846927) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) -6. 🗣 Commented on [#122](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/122#issuecomment-1839838110) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -7. 🗣 Commented on [#121](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/121#issuecomment-1839836821) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -8. 🗣 Commented on [#120](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/120#issuecomment-1839834216) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -9. 🗣 Commented on [#114](https://github.com/Dog-Face-Development/PyWorkout/pull/114#issuecomment-1839805437) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -10. 🗣 Commented on [#113](https://github.com/Dog-Face-Development/PyWorkout/pull/113#issuecomment-1839803562) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +1. 🗣 Commented on [#154](https://github.com/eastgenomics/dias_batch_running/pull/154#issuecomment-1840891420) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#38](https://github.com/eastgenomics/trendyQC/pull/38#issuecomment-1840852046) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +3. 🗣 Commented on [#218](https://github.com/CartoonFan/lutris/pull/218#issuecomment-1840545740) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/fabricator/pull/1#issuecomment-1840401451) in [tuhinmallick/fabricator](https://github.com/tuhinmallick/fabricator) +5. 🗣 Commented on [#879](https://github.com/PyThaiNLP/pythainlp/pull/879#issuecomment-1840042977) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#128](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/128#issuecomment-1839846927) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) +7. 🗣 Commented on [#122](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/122#issuecomment-1839838110) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +8. 🗣 Commented on [#121](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/121#issuecomment-1839836821) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +9. 🗣 Commented on [#120](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/120#issuecomment-1839834216) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +10. 🗣 Commented on [#114](https://github.com/Dog-Face-Development/PyWorkout/pull/114#issuecomment-1839805437) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) From 598d372fc24b04a0e60fc55d16049880a9fcf965 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Dec 2023 16:22:52 +0000 Subject: [PATCH 0810/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b49183de..450fbdb7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#154](https://github.com/eastgenomics/dias_batch_running/pull/154#issuecomment-1840891420) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#38](https://github.com/eastgenomics/trendyQC/pull/38#issuecomment-1840852046) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -3. 🗣 Commented on [#218](https://github.com/CartoonFan/lutris/pull/218#issuecomment-1840545740) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/fabricator/pull/1#issuecomment-1840401451) in [tuhinmallick/fabricator](https://github.com/tuhinmallick/fabricator) -5. 🗣 Commented on [#879](https://github.com/PyThaiNLP/pythainlp/pull/879#issuecomment-1840042977) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#128](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/128#issuecomment-1839846927) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) -7. 🗣 Commented on [#122](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/122#issuecomment-1839838110) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -8. 🗣 Commented on [#121](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/121#issuecomment-1839836821) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -9. 🗣 Commented on [#120](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/120#issuecomment-1839834216) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -10. 🗣 Commented on [#114](https://github.com/Dog-Face-Development/PyWorkout/pull/114#issuecomment-1839805437) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +1. 🗣 Commented on [#61](https://github.com/eastgenomics/eris/pull/61#issuecomment-1841133370) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#89](https://github.com/eastgenomics/athena/pull/89#issuecomment-1841096640) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +3. 🗣 Commented on [#154](https://github.com/eastgenomics/dias_batch_running/pull/154#issuecomment-1840891420) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +4. 🗣 Commented on [#38](https://github.com/eastgenomics/trendyQC/pull/38#issuecomment-1840852046) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +5. 🗣 Commented on [#218](https://github.com/CartoonFan/lutris/pull/218#issuecomment-1840545740) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/fabricator/pull/1#issuecomment-1840401451) in [tuhinmallick/fabricator](https://github.com/tuhinmallick/fabricator) +7. 🗣 Commented on [#879](https://github.com/PyThaiNLP/pythainlp/pull/879#issuecomment-1840042977) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +8. 🗣 Commented on [#128](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/128#issuecomment-1839846927) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) +9. 🗣 Commented on [#122](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/122#issuecomment-1839838110) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +10. 🗣 Commented on [#121](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/121#issuecomment-1839836821) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) From 598a47847f2c09698f35f46bd3de13dc1149dc47 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Dec 2023 17:37:08 +0000 Subject: [PATCH 0811/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 450fbdb7..9bed2164 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#61](https://github.com/eastgenomics/eris/pull/61#issuecomment-1841133370) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#89](https://github.com/eastgenomics/athena/pull/89#issuecomment-1841096640) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -3. 🗣 Commented on [#154](https://github.com/eastgenomics/dias_batch_running/pull/154#issuecomment-1840891420) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -4. 🗣 Commented on [#38](https://github.com/eastgenomics/trendyQC/pull/38#issuecomment-1840852046) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -5. 🗣 Commented on [#218](https://github.com/CartoonFan/lutris/pull/218#issuecomment-1840545740) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/fabricator/pull/1#issuecomment-1840401451) in [tuhinmallick/fabricator](https://github.com/tuhinmallick/fabricator) -7. 🗣 Commented on [#879](https://github.com/PyThaiNLP/pythainlp/pull/879#issuecomment-1840042977) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -8. 🗣 Commented on [#128](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/128#issuecomment-1839846927) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) -9. 🗣 Commented on [#122](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/122#issuecomment-1839838110) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -10. 🗣 Commented on [#121](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/121#issuecomment-1839836821) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +1. 🗣 Commented on [#1588](https://github.com/zarr-developers/zarr-python/pull/1588#issuecomment-1841263227) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +2. 🗣 Commented on [#61](https://github.com/eastgenomics/eris/pull/61#issuecomment-1841133370) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#89](https://github.com/eastgenomics/athena/pull/89#issuecomment-1841096640) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +4. 🗣 Commented on [#154](https://github.com/eastgenomics/dias_batch_running/pull/154#issuecomment-1840891420) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#38](https://github.com/eastgenomics/trendyQC/pull/38#issuecomment-1840852046) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +6. 🗣 Commented on [#218](https://github.com/CartoonFan/lutris/pull/218#issuecomment-1840545740) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/fabricator/pull/1#issuecomment-1840401451) in [tuhinmallick/fabricator](https://github.com/tuhinmallick/fabricator) +8. 🗣 Commented on [#879](https://github.com/PyThaiNLP/pythainlp/pull/879#issuecomment-1840042977) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#128](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/128#issuecomment-1839846927) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) +10. 🗣 Commented on [#122](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/122#issuecomment-1839838110) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) From 760dcc40774b9d33b9cf752dad62dbacdf0bbe6d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Dec 2023 19:37:13 +0000 Subject: [PATCH 0812/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9bed2164..6e0be5c7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1588](https://github.com/zarr-developers/zarr-python/pull/1588#issuecomment-1841263227) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -2. 🗣 Commented on [#61](https://github.com/eastgenomics/eris/pull/61#issuecomment-1841133370) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#89](https://github.com/eastgenomics/athena/pull/89#issuecomment-1841096640) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -4. 🗣 Commented on [#154](https://github.com/eastgenomics/dias_batch_running/pull/154#issuecomment-1840891420) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#38](https://github.com/eastgenomics/trendyQC/pull/38#issuecomment-1840852046) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -6. 🗣 Commented on [#218](https://github.com/CartoonFan/lutris/pull/218#issuecomment-1840545740) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/fabricator/pull/1#issuecomment-1840401451) in [tuhinmallick/fabricator](https://github.com/tuhinmallick/fabricator) -8. 🗣 Commented on [#879](https://github.com/PyThaiNLP/pythainlp/pull/879#issuecomment-1840042977) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#128](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/128#issuecomment-1839846927) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) -10. 🗣 Commented on [#122](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/122#issuecomment-1839838110) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +1. 🗣 Commented on [#1589](https://github.com/zarr-developers/zarr-python/pull/1589#issuecomment-1841476167) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +2. 🗣 Commented on [#1588](https://github.com/zarr-developers/zarr-python/pull/1588#issuecomment-1841263227) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +3. 🗣 Commented on [#61](https://github.com/eastgenomics/eris/pull/61#issuecomment-1841133370) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#89](https://github.com/eastgenomics/athena/pull/89#issuecomment-1841096640) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +5. 🗣 Commented on [#154](https://github.com/eastgenomics/dias_batch_running/pull/154#issuecomment-1840891420) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#38](https://github.com/eastgenomics/trendyQC/pull/38#issuecomment-1840852046) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +7. 🗣 Commented on [#218](https://github.com/CartoonFan/lutris/pull/218#issuecomment-1840545740) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/fabricator/pull/1#issuecomment-1840401451) in [tuhinmallick/fabricator](https://github.com/tuhinmallick/fabricator) +9. 🗣 Commented on [#879](https://github.com/PyThaiNLP/pythainlp/pull/879#issuecomment-1840042977) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +10. 🗣 Commented on [#128](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/128#issuecomment-1839846927) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) From a3896c964d4cefb0c60b382125ba707d10d58f77 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Dec 2023 20:18:01 +0000 Subject: [PATCH 0813/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6e0be5c7..c4305345 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1589](https://github.com/zarr-developers/zarr-python/pull/1589#issuecomment-1841476167) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -2. 🗣 Commented on [#1588](https://github.com/zarr-developers/zarr-python/pull/1588#issuecomment-1841263227) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -3. 🗣 Commented on [#61](https://github.com/eastgenomics/eris/pull/61#issuecomment-1841133370) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#89](https://github.com/eastgenomics/athena/pull/89#issuecomment-1841096640) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -5. 🗣 Commented on [#154](https://github.com/eastgenomics/dias_batch_running/pull/154#issuecomment-1840891420) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#38](https://github.com/eastgenomics/trendyQC/pull/38#issuecomment-1840852046) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -7. 🗣 Commented on [#218](https://github.com/CartoonFan/lutris/pull/218#issuecomment-1840545740) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/fabricator/pull/1#issuecomment-1840401451) in [tuhinmallick/fabricator](https://github.com/tuhinmallick/fabricator) -9. 🗣 Commented on [#879](https://github.com/PyThaiNLP/pythainlp/pull/879#issuecomment-1840042977) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -10. 🗣 Commented on [#128](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/128#issuecomment-1839846927) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) +1. 🗣 Commented on [#2654](https://github.com/metabrainz/listenbrainz-server/pull/2654#issuecomment-1841541176) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#1590](https://github.com/zarr-developers/zarr-python/pull/1590#issuecomment-1841536969) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +3. 🗣 Commented on [#1360](https://github.com/NeuralEnsemble/python-neo/pull/1360#issuecomment-1841516900) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +4. 🗣 Commented on [#1589](https://github.com/zarr-developers/zarr-python/pull/1589#issuecomment-1841476167) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +5. 🗣 Commented on [#1588](https://github.com/zarr-developers/zarr-python/pull/1588#issuecomment-1841263227) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +6. 🗣 Commented on [#61](https://github.com/eastgenomics/eris/pull/61#issuecomment-1841133370) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#89](https://github.com/eastgenomics/athena/pull/89#issuecomment-1841096640) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +8. 🗣 Commented on [#154](https://github.com/eastgenomics/dias_batch_running/pull/154#issuecomment-1840891420) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#38](https://github.com/eastgenomics/trendyQC/pull/38#issuecomment-1840852046) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +10. 🗣 Commented on [#218](https://github.com/CartoonFan/lutris/pull/218#issuecomment-1840545740) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 07ea6446e8aabb28532697aab4b24cf63834a1d2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Dec 2023 20:37:39 +0000 Subject: [PATCH 0814/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c4305345..568a028c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2654](https://github.com/metabrainz/listenbrainz-server/pull/2654#issuecomment-1841541176) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#1590](https://github.com/zarr-developers/zarr-python/pull/1590#issuecomment-1841536969) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -3. 🗣 Commented on [#1360](https://github.com/NeuralEnsemble/python-neo/pull/1360#issuecomment-1841516900) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -4. 🗣 Commented on [#1589](https://github.com/zarr-developers/zarr-python/pull/1589#issuecomment-1841476167) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -5. 🗣 Commented on [#1588](https://github.com/zarr-developers/zarr-python/pull/1588#issuecomment-1841263227) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -6. 🗣 Commented on [#61](https://github.com/eastgenomics/eris/pull/61#issuecomment-1841133370) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#89](https://github.com/eastgenomics/athena/pull/89#issuecomment-1841096640) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -8. 🗣 Commented on [#154](https://github.com/eastgenomics/dias_batch_running/pull/154#issuecomment-1840891420) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#38](https://github.com/eastgenomics/trendyQC/pull/38#issuecomment-1840852046) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -10. 🗣 Commented on [#218](https://github.com/CartoonFan/lutris/pull/218#issuecomment-1840545740) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#2549](https://github.com/metabrainz/listenbrainz-server/pull/2549#issuecomment-1841569976) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#2654](https://github.com/metabrainz/listenbrainz-server/pull/2654#issuecomment-1841541176) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#1590](https://github.com/zarr-developers/zarr-python/pull/1590#issuecomment-1841536969) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +4. 🗣 Commented on [#1360](https://github.com/NeuralEnsemble/python-neo/pull/1360#issuecomment-1841516900) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +5. 🗣 Commented on [#1589](https://github.com/zarr-developers/zarr-python/pull/1589#issuecomment-1841476167) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +6. 🗣 Commented on [#1588](https://github.com/zarr-developers/zarr-python/pull/1588#issuecomment-1841263227) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +7. 🗣 Commented on [#61](https://github.com/eastgenomics/eris/pull/61#issuecomment-1841133370) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#89](https://github.com/eastgenomics/athena/pull/89#issuecomment-1841096640) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +9. 🗣 Commented on [#154](https://github.com/eastgenomics/dias_batch_running/pull/154#issuecomment-1840891420) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#38](https://github.com/eastgenomics/trendyQC/pull/38#issuecomment-1840852046) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) From a786c2fffd80b15b6cb5bcc3b78d0fa3eaee0dca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Dec 2023 22:37:28 +0000 Subject: [PATCH 0815/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 568a028c..6884ea8b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2549](https://github.com/metabrainz/listenbrainz-server/pull/2549#issuecomment-1841569976) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#2654](https://github.com/metabrainz/listenbrainz-server/pull/2654#issuecomment-1841541176) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#1590](https://github.com/zarr-developers/zarr-python/pull/1590#issuecomment-1841536969) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -4. 🗣 Commented on [#1360](https://github.com/NeuralEnsemble/python-neo/pull/1360#issuecomment-1841516900) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -5. 🗣 Commented on [#1589](https://github.com/zarr-developers/zarr-python/pull/1589#issuecomment-1841476167) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -6. 🗣 Commented on [#1588](https://github.com/zarr-developers/zarr-python/pull/1588#issuecomment-1841263227) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -7. 🗣 Commented on [#61](https://github.com/eastgenomics/eris/pull/61#issuecomment-1841133370) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#89](https://github.com/eastgenomics/athena/pull/89#issuecomment-1841096640) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -9. 🗣 Commented on [#154](https://github.com/eastgenomics/dias_batch_running/pull/154#issuecomment-1840891420) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#38](https://github.com/eastgenomics/trendyQC/pull/38#issuecomment-1840852046) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +1. 🗣 Commented on [#509](https://github.com/spatialaudio/python-sounddevice/pull/509#issuecomment-1841724374) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +2. 🗣 Commented on [#2549](https://github.com/metabrainz/listenbrainz-server/pull/2549#issuecomment-1841569976) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#2654](https://github.com/metabrainz/listenbrainz-server/pull/2654#issuecomment-1841541176) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#1590](https://github.com/zarr-developers/zarr-python/pull/1590#issuecomment-1841536969) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +5. 🗣 Commented on [#1360](https://github.com/NeuralEnsemble/python-neo/pull/1360#issuecomment-1841516900) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +6. 🗣 Commented on [#1589](https://github.com/zarr-developers/zarr-python/pull/1589#issuecomment-1841476167) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +7. 🗣 Commented on [#1588](https://github.com/zarr-developers/zarr-python/pull/1588#issuecomment-1841263227) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +8. 🗣 Commented on [#61](https://github.com/eastgenomics/eris/pull/61#issuecomment-1841133370) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#89](https://github.com/eastgenomics/athena/pull/89#issuecomment-1841096640) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +10. 🗣 Commented on [#154](https://github.com/eastgenomics/dias_batch_running/pull/154#issuecomment-1840891420) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From 59dce9ad1ee47c105d190c10b27a80ba5ebe5e28 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Dec 2023 23:16:48 +0000 Subject: [PATCH 0816/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6884ea8b..9add094b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#509](https://github.com/spatialaudio/python-sounddevice/pull/509#issuecomment-1841724374) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -2. 🗣 Commented on [#2549](https://github.com/metabrainz/listenbrainz-server/pull/2549#issuecomment-1841569976) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#2654](https://github.com/metabrainz/listenbrainz-server/pull/2654#issuecomment-1841541176) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#1590](https://github.com/zarr-developers/zarr-python/pull/1590#issuecomment-1841536969) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -5. 🗣 Commented on [#1360](https://github.com/NeuralEnsemble/python-neo/pull/1360#issuecomment-1841516900) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -6. 🗣 Commented on [#1589](https://github.com/zarr-developers/zarr-python/pull/1589#issuecomment-1841476167) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -7. 🗣 Commented on [#1588](https://github.com/zarr-developers/zarr-python/pull/1588#issuecomment-1841263227) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -8. 🗣 Commented on [#61](https://github.com/eastgenomics/eris/pull/61#issuecomment-1841133370) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#89](https://github.com/eastgenomics/athena/pull/89#issuecomment-1841096640) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -10. 🗣 Commented on [#154](https://github.com/eastgenomics/dias_batch_running/pull/154#issuecomment-1840891420) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#490](https://github.com/UIUCLibrary/Speedwagon/pull/490#issuecomment-1841760054) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +2. 🗣 Commented on [#1020](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1020#issuecomment-1841744358) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#509](https://github.com/spatialaudio/python-sounddevice/pull/509#issuecomment-1841724374) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +4. 🗣 Commented on [#2549](https://github.com/metabrainz/listenbrainz-server/pull/2549#issuecomment-1841569976) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#2654](https://github.com/metabrainz/listenbrainz-server/pull/2654#issuecomment-1841541176) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#1590](https://github.com/zarr-developers/zarr-python/pull/1590#issuecomment-1841536969) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +7. 🗣 Commented on [#1360](https://github.com/NeuralEnsemble/python-neo/pull/1360#issuecomment-1841516900) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +8. 🗣 Commented on [#1589](https://github.com/zarr-developers/zarr-python/pull/1589#issuecomment-1841476167) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +9. 🗣 Commented on [#1588](https://github.com/zarr-developers/zarr-python/pull/1588#issuecomment-1841263227) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +10. 🗣 Commented on [#61](https://github.com/eastgenomics/eris/pull/61#issuecomment-1841133370) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 3bfbda6cc96932793e5036765359382486c391a2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Dec 2023 01:14:24 +0000 Subject: [PATCH 0817/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9add094b..e23c8cae 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#490](https://github.com/UIUCLibrary/Speedwagon/pull/490#issuecomment-1841760054) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -2. 🗣 Commented on [#1020](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1020#issuecomment-1841744358) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#509](https://github.com/spatialaudio/python-sounddevice/pull/509#issuecomment-1841724374) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -4. 🗣 Commented on [#2549](https://github.com/metabrainz/listenbrainz-server/pull/2549#issuecomment-1841569976) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#2654](https://github.com/metabrainz/listenbrainz-server/pull/2654#issuecomment-1841541176) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#1590](https://github.com/zarr-developers/zarr-python/pull/1590#issuecomment-1841536969) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -7. 🗣 Commented on [#1360](https://github.com/NeuralEnsemble/python-neo/pull/1360#issuecomment-1841516900) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -8. 🗣 Commented on [#1589](https://github.com/zarr-developers/zarr-python/pull/1589#issuecomment-1841476167) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -9. 🗣 Commented on [#1588](https://github.com/zarr-developers/zarr-python/pull/1588#issuecomment-1841263227) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -10. 🗣 Commented on [#61](https://github.com/eastgenomics/eris/pull/61#issuecomment-1841133370) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#4353](https://github.com/uwcirg/truenth-portal/pull/4353#issuecomment-1841802088) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +2. 🗣 Commented on [#490](https://github.com/UIUCLibrary/Speedwagon/pull/490#issuecomment-1841760054) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +3. 🗣 Commented on [#1020](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1020#issuecomment-1841744358) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#509](https://github.com/spatialaudio/python-sounddevice/pull/509#issuecomment-1841724374) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +5. 🗣 Commented on [#2549](https://github.com/metabrainz/listenbrainz-server/pull/2549#issuecomment-1841569976) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#2654](https://github.com/metabrainz/listenbrainz-server/pull/2654#issuecomment-1841541176) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#1590](https://github.com/zarr-developers/zarr-python/pull/1590#issuecomment-1841536969) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +8. 🗣 Commented on [#1360](https://github.com/NeuralEnsemble/python-neo/pull/1360#issuecomment-1841516900) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +9. 🗣 Commented on [#1589](https://github.com/zarr-developers/zarr-python/pull/1589#issuecomment-1841476167) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +10. 🗣 Commented on [#1588](https://github.com/zarr-developers/zarr-python/pull/1588#issuecomment-1841263227) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) From a287d95c4a6b2deda05f8bceaa3847f28b35f6da Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Dec 2023 02:42:00 +0000 Subject: [PATCH 0818/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e23c8cae..0a7e971a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#4353](https://github.com/uwcirg/truenth-portal/pull/4353#issuecomment-1841802088) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -2. 🗣 Commented on [#490](https://github.com/UIUCLibrary/Speedwagon/pull/490#issuecomment-1841760054) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -3. 🗣 Commented on [#1020](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1020#issuecomment-1841744358) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#509](https://github.com/spatialaudio/python-sounddevice/pull/509#issuecomment-1841724374) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -5. 🗣 Commented on [#2549](https://github.com/metabrainz/listenbrainz-server/pull/2549#issuecomment-1841569976) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#2654](https://github.com/metabrainz/listenbrainz-server/pull/2654#issuecomment-1841541176) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#1590](https://github.com/zarr-developers/zarr-python/pull/1590#issuecomment-1841536969) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -8. 🗣 Commented on [#1360](https://github.com/NeuralEnsemble/python-neo/pull/1360#issuecomment-1841516900) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -9. 🗣 Commented on [#1589](https://github.com/zarr-developers/zarr-python/pull/1589#issuecomment-1841476167) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -10. 🗣 Commented on [#1588](https://github.com/zarr-developers/zarr-python/pull/1588#issuecomment-1841263227) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +1. 🗣 Commented on [#758](https://github.com/EducationalTestingService/skll/pull/758#issuecomment-1841971644) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +2. 🗣 Commented on [#4353](https://github.com/uwcirg/truenth-portal/pull/4353#issuecomment-1841802088) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +3. 🗣 Commented on [#490](https://github.com/UIUCLibrary/Speedwagon/pull/490#issuecomment-1841760054) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +4. 🗣 Commented on [#1020](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1020#issuecomment-1841744358) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#509](https://github.com/spatialaudio/python-sounddevice/pull/509#issuecomment-1841724374) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +6. 🗣 Commented on [#2549](https://github.com/metabrainz/listenbrainz-server/pull/2549#issuecomment-1841569976) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#2654](https://github.com/metabrainz/listenbrainz-server/pull/2654#issuecomment-1841541176) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#1590](https://github.com/zarr-developers/zarr-python/pull/1590#issuecomment-1841536969) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +9. 🗣 Commented on [#1360](https://github.com/NeuralEnsemble/python-neo/pull/1360#issuecomment-1841516900) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +10. 🗣 Commented on [#1589](https://github.com/zarr-developers/zarr-python/pull/1589#issuecomment-1841476167) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) From 975e24271ba1cf539689df0da9e4e9c5d63a6e1b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Dec 2023 09:37:21 +0000 Subject: [PATCH 0819/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0a7e971a..73f4e3e1 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#758](https://github.com/EducationalTestingService/skll/pull/758#issuecomment-1841971644) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -2. 🗣 Commented on [#4353](https://github.com/uwcirg/truenth-portal/pull/4353#issuecomment-1841802088) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -3. 🗣 Commented on [#490](https://github.com/UIUCLibrary/Speedwagon/pull/490#issuecomment-1841760054) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -4. 🗣 Commented on [#1020](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1020#issuecomment-1841744358) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#509](https://github.com/spatialaudio/python-sounddevice/pull/509#issuecomment-1841724374) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -6. 🗣 Commented on [#2549](https://github.com/metabrainz/listenbrainz-server/pull/2549#issuecomment-1841569976) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#2654](https://github.com/metabrainz/listenbrainz-server/pull/2654#issuecomment-1841541176) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#1590](https://github.com/zarr-developers/zarr-python/pull/1590#issuecomment-1841536969) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -9. 🗣 Commented on [#1360](https://github.com/NeuralEnsemble/python-neo/pull/1360#issuecomment-1841516900) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -10. 🗣 Commented on [#1589](https://github.com/zarr-developers/zarr-python/pull/1589#issuecomment-1841476167) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +1. 🗣 Commented on [#181](https://github.com/Fatal1ty/mashumaro/pull/181#issuecomment-1842499924) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +2. 🗣 Commented on [#758](https://github.com/EducationalTestingService/skll/pull/758#issuecomment-1841971644) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +3. 🗣 Commented on [#4353](https://github.com/uwcirg/truenth-portal/pull/4353#issuecomment-1841802088) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +4. 🗣 Commented on [#490](https://github.com/UIUCLibrary/Speedwagon/pull/490#issuecomment-1841760054) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +5. 🗣 Commented on [#1020](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1020#issuecomment-1841744358) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#509](https://github.com/spatialaudio/python-sounddevice/pull/509#issuecomment-1841724374) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +7. 🗣 Commented on [#2549](https://github.com/metabrainz/listenbrainz-server/pull/2549#issuecomment-1841569976) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#2654](https://github.com/metabrainz/listenbrainz-server/pull/2654#issuecomment-1841541176) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#1590](https://github.com/zarr-developers/zarr-python/pull/1590#issuecomment-1841536969) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +10. 🗣 Commented on [#1360](https://github.com/NeuralEnsemble/python-neo/pull/1360#issuecomment-1841516900) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) From f1abeb2082b2613c6ca6415c9f7d374775d99895 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Dec 2023 10:38:47 +0000 Subject: [PATCH 0820/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 73f4e3e1..26fa7c85 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#181](https://github.com/Fatal1ty/mashumaro/pull/181#issuecomment-1842499924) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -2. 🗣 Commented on [#758](https://github.com/EducationalTestingService/skll/pull/758#issuecomment-1841971644) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -3. 🗣 Commented on [#4353](https://github.com/uwcirg/truenth-portal/pull/4353#issuecomment-1841802088) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -4. 🗣 Commented on [#490](https://github.com/UIUCLibrary/Speedwagon/pull/490#issuecomment-1841760054) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -5. 🗣 Commented on [#1020](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1020#issuecomment-1841744358) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#509](https://github.com/spatialaudio/python-sounddevice/pull/509#issuecomment-1841724374) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -7. 🗣 Commented on [#2549](https://github.com/metabrainz/listenbrainz-server/pull/2549#issuecomment-1841569976) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#2654](https://github.com/metabrainz/listenbrainz-server/pull/2654#issuecomment-1841541176) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#1590](https://github.com/zarr-developers/zarr-python/pull/1590#issuecomment-1841536969) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -10. 🗣 Commented on [#1360](https://github.com/NeuralEnsemble/python-neo/pull/1360#issuecomment-1841516900) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +1. 🗣 Commented on [#1456](https://github.com/openSUSE/osc/pull/1456#issuecomment-1842584980) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#181](https://github.com/Fatal1ty/mashumaro/pull/181#issuecomment-1842499924) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +3. 🗣 Commented on [#758](https://github.com/EducationalTestingService/skll/pull/758#issuecomment-1841971644) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +4. 🗣 Commented on [#4353](https://github.com/uwcirg/truenth-portal/pull/4353#issuecomment-1841802088) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +5. 🗣 Commented on [#490](https://github.com/UIUCLibrary/Speedwagon/pull/490#issuecomment-1841760054) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +6. 🗣 Commented on [#1020](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1020#issuecomment-1841744358) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#509](https://github.com/spatialaudio/python-sounddevice/pull/509#issuecomment-1841724374) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +8. 🗣 Commented on [#2549](https://github.com/metabrainz/listenbrainz-server/pull/2549#issuecomment-1841569976) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#2654](https://github.com/metabrainz/listenbrainz-server/pull/2654#issuecomment-1841541176) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#1590](https://github.com/zarr-developers/zarr-python/pull/1590#issuecomment-1841536969) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) From 44fde3dedb172ce5d1b44601a1e1e3e502c57fad Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Dec 2023 13:20:19 +0000 Subject: [PATCH 0821/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 26fa7c85..97e3790f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1456](https://github.com/openSUSE/osc/pull/1456#issuecomment-1842584980) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#181](https://github.com/Fatal1ty/mashumaro/pull/181#issuecomment-1842499924) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -3. 🗣 Commented on [#758](https://github.com/EducationalTestingService/skll/pull/758#issuecomment-1841971644) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -4. 🗣 Commented on [#4353](https://github.com/uwcirg/truenth-portal/pull/4353#issuecomment-1841802088) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -5. 🗣 Commented on [#490](https://github.com/UIUCLibrary/Speedwagon/pull/490#issuecomment-1841760054) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -6. 🗣 Commented on [#1020](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1020#issuecomment-1841744358) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#509](https://github.com/spatialaudio/python-sounddevice/pull/509#issuecomment-1841724374) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -8. 🗣 Commented on [#2549](https://github.com/metabrainz/listenbrainz-server/pull/2549#issuecomment-1841569976) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#2654](https://github.com/metabrainz/listenbrainz-server/pull/2654#issuecomment-1841541176) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#1590](https://github.com/zarr-developers/zarr-python/pull/1590#issuecomment-1841536969) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +1. 🗣 Commented on [#1070](https://github.com/yeatmanlab/pyAFQ/pull/1070#issuecomment-1842864476) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +2. 🗣 Commented on [#1456](https://github.com/openSUSE/osc/pull/1456#issuecomment-1842584980) in [openSUSE/osc](https://github.com/openSUSE/osc) +3. 🗣 Commented on [#181](https://github.com/Fatal1ty/mashumaro/pull/181#issuecomment-1842499924) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +4. 🗣 Commented on [#758](https://github.com/EducationalTestingService/skll/pull/758#issuecomment-1841971644) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +5. 🗣 Commented on [#4353](https://github.com/uwcirg/truenth-portal/pull/4353#issuecomment-1841802088) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +6. 🗣 Commented on [#490](https://github.com/UIUCLibrary/Speedwagon/pull/490#issuecomment-1841760054) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +7. 🗣 Commented on [#1020](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1020#issuecomment-1841744358) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#509](https://github.com/spatialaudio/python-sounddevice/pull/509#issuecomment-1841724374) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +9. 🗣 Commented on [#2549](https://github.com/metabrainz/listenbrainz-server/pull/2549#issuecomment-1841569976) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#2654](https://github.com/metabrainz/listenbrainz-server/pull/2654#issuecomment-1841541176) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 23c693d4ad9867ceec6a9bb5da118cd7bec6a395 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Dec 2023 16:22:47 +0000 Subject: [PATCH 0822/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 97e3790f..41dadb3c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1070](https://github.com/yeatmanlab/pyAFQ/pull/1070#issuecomment-1842864476) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -2. 🗣 Commented on [#1456](https://github.com/openSUSE/osc/pull/1456#issuecomment-1842584980) in [openSUSE/osc](https://github.com/openSUSE/osc) -3. 🗣 Commented on [#181](https://github.com/Fatal1ty/mashumaro/pull/181#issuecomment-1842499924) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -4. 🗣 Commented on [#758](https://github.com/EducationalTestingService/skll/pull/758#issuecomment-1841971644) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -5. 🗣 Commented on [#4353](https://github.com/uwcirg/truenth-portal/pull/4353#issuecomment-1841802088) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -6. 🗣 Commented on [#490](https://github.com/UIUCLibrary/Speedwagon/pull/490#issuecomment-1841760054) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -7. 🗣 Commented on [#1020](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1020#issuecomment-1841744358) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#509](https://github.com/spatialaudio/python-sounddevice/pull/509#issuecomment-1841724374) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -9. 🗣 Commented on [#2549](https://github.com/metabrainz/listenbrainz-server/pull/2549#issuecomment-1841569976) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#2654](https://github.com/metabrainz/listenbrainz-server/pull/2654#issuecomment-1841541176) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#62](https://github.com/eastgenomics/eris/pull/62#issuecomment-1843225210) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#39](https://github.com/eastgenomics/trendyQC/pull/39#issuecomment-1843188982) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +3. 🗣 Commented on [#833](https://github.com/scilus/scilpy/pull/833#issuecomment-1843169560) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#1070](https://github.com/yeatmanlab/pyAFQ/pull/1070#issuecomment-1842864476) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +5. 🗣 Commented on [#1456](https://github.com/openSUSE/osc/pull/1456#issuecomment-1842584980) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#181](https://github.com/Fatal1ty/mashumaro/pull/181#issuecomment-1842499924) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +7. 🗣 Commented on [#758](https://github.com/EducationalTestingService/skll/pull/758#issuecomment-1841971644) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +8. 🗣 Commented on [#4353](https://github.com/uwcirg/truenth-portal/pull/4353#issuecomment-1841802088) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +9. 🗣 Commented on [#490](https://github.com/UIUCLibrary/Speedwagon/pull/490#issuecomment-1841760054) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +10. 🗣 Commented on [#1020](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1020#issuecomment-1841744358) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From f8c88890ef2cc8bab3b1313b54edde03bd52d8b4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Dec 2023 19:13:14 +0000 Subject: [PATCH 0823/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 41dadb3c..cd56955e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#62](https://github.com/eastgenomics/eris/pull/62#issuecomment-1843225210) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#39](https://github.com/eastgenomics/trendyQC/pull/39#issuecomment-1843188982) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -3. 🗣 Commented on [#833](https://github.com/scilus/scilpy/pull/833#issuecomment-1843169560) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#1070](https://github.com/yeatmanlab/pyAFQ/pull/1070#issuecomment-1842864476) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -5. 🗣 Commented on [#1456](https://github.com/openSUSE/osc/pull/1456#issuecomment-1842584980) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#181](https://github.com/Fatal1ty/mashumaro/pull/181#issuecomment-1842499924) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -7. 🗣 Commented on [#758](https://github.com/EducationalTestingService/skll/pull/758#issuecomment-1841971644) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -8. 🗣 Commented on [#4353](https://github.com/uwcirg/truenth-portal/pull/4353#issuecomment-1841802088) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -9. 🗣 Commented on [#490](https://github.com/UIUCLibrary/Speedwagon/pull/490#issuecomment-1841760054) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -10. 🗣 Commented on [#1020](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1020#issuecomment-1841744358) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#158](https://github.com/eastgenomics/dias_batch_running/pull/158#issuecomment-1843490014) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#62](https://github.com/eastgenomics/eris/pull/62#issuecomment-1843225210) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#39](https://github.com/eastgenomics/trendyQC/pull/39#issuecomment-1843188982) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +4. 🗣 Commented on [#833](https://github.com/scilus/scilpy/pull/833#issuecomment-1843169560) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#1070](https://github.com/yeatmanlab/pyAFQ/pull/1070#issuecomment-1842864476) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +6. 🗣 Commented on [#1456](https://github.com/openSUSE/osc/pull/1456#issuecomment-1842584980) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#181](https://github.com/Fatal1ty/mashumaro/pull/181#issuecomment-1842499924) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +8. 🗣 Commented on [#758](https://github.com/EducationalTestingService/skll/pull/758#issuecomment-1841971644) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +9. 🗣 Commented on [#4353](https://github.com/uwcirg/truenth-portal/pull/4353#issuecomment-1841802088) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +10. 🗣 Commented on [#490](https://github.com/UIUCLibrary/Speedwagon/pull/490#issuecomment-1841760054) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) From 9d68f57b3653bcd32975269e34698db67aa0212f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Dec 2023 19:37:24 +0000 Subject: [PATCH 0824/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cd56955e..40956ca7 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#158](https://github.com/eastgenomics/dias_batch_running/pull/158#issuecomment-1843490014) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#62](https://github.com/eastgenomics/eris/pull/62#issuecomment-1843225210) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#39](https://github.com/eastgenomics/trendyQC/pull/39#issuecomment-1843188982) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -4. 🗣 Commented on [#833](https://github.com/scilus/scilpy/pull/833#issuecomment-1843169560) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#1070](https://github.com/yeatmanlab/pyAFQ/pull/1070#issuecomment-1842864476) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -6. 🗣 Commented on [#1456](https://github.com/openSUSE/osc/pull/1456#issuecomment-1842584980) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#181](https://github.com/Fatal1ty/mashumaro/pull/181#issuecomment-1842499924) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -8. 🗣 Commented on [#758](https://github.com/EducationalTestingService/skll/pull/758#issuecomment-1841971644) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -9. 🗣 Commented on [#4353](https://github.com/uwcirg/truenth-portal/pull/4353#issuecomment-1841802088) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -10. 🗣 Commented on [#490](https://github.com/UIUCLibrary/Speedwagon/pull/490#issuecomment-1841760054) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +1. 🗣 Commented on [#834](https://github.com/scilus/scilpy/pull/834#issuecomment-1843538003) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#158](https://github.com/eastgenomics/dias_batch_running/pull/158#issuecomment-1843490014) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#62](https://github.com/eastgenomics/eris/pull/62#issuecomment-1843225210) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#39](https://github.com/eastgenomics/trendyQC/pull/39#issuecomment-1843188982) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +5. 🗣 Commented on [#833](https://github.com/scilus/scilpy/pull/833#issuecomment-1843169560) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#1070](https://github.com/yeatmanlab/pyAFQ/pull/1070#issuecomment-1842864476) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +7. 🗣 Commented on [#1456](https://github.com/openSUSE/osc/pull/1456#issuecomment-1842584980) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#181](https://github.com/Fatal1ty/mashumaro/pull/181#issuecomment-1842499924) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +9. 🗣 Commented on [#758](https://github.com/EducationalTestingService/skll/pull/758#issuecomment-1841971644) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +10. 🗣 Commented on [#4353](https://github.com/uwcirg/truenth-portal/pull/4353#issuecomment-1841802088) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) From 1db5a207a4dbfba84560111cc748fe795069302e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Dec 2023 20:17:38 +0000 Subject: [PATCH 0825/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 40956ca7..ae3b4db4 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#834](https://github.com/scilus/scilpy/pull/834#issuecomment-1843538003) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#158](https://github.com/eastgenomics/dias_batch_running/pull/158#issuecomment-1843490014) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#62](https://github.com/eastgenomics/eris/pull/62#issuecomment-1843225210) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#39](https://github.com/eastgenomics/trendyQC/pull/39#issuecomment-1843188982) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -5. 🗣 Commented on [#833](https://github.com/scilus/scilpy/pull/833#issuecomment-1843169560) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#1070](https://github.com/yeatmanlab/pyAFQ/pull/1070#issuecomment-1842864476) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -7. 🗣 Commented on [#1456](https://github.com/openSUSE/osc/pull/1456#issuecomment-1842584980) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#181](https://github.com/Fatal1ty/mashumaro/pull/181#issuecomment-1842499924) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -9. 🗣 Commented on [#758](https://github.com/EducationalTestingService/skll/pull/758#issuecomment-1841971644) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -10. 🗣 Commented on [#4353](https://github.com/uwcirg/truenth-portal/pull/4353#issuecomment-1841802088) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +1. 🗣 Commented on [#836](https://github.com/scilus/scilpy/pull/836#issuecomment-1843612312) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#835](https://github.com/scilus/scilpy/pull/835#issuecomment-1843581744) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#834](https://github.com/scilus/scilpy/pull/834#issuecomment-1843538003) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#158](https://github.com/eastgenomics/dias_batch_running/pull/158#issuecomment-1843490014) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#62](https://github.com/eastgenomics/eris/pull/62#issuecomment-1843225210) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#39](https://github.com/eastgenomics/trendyQC/pull/39#issuecomment-1843188982) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +7. 🗣 Commented on [#833](https://github.com/scilus/scilpy/pull/833#issuecomment-1843169560) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#1070](https://github.com/yeatmanlab/pyAFQ/pull/1070#issuecomment-1842864476) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +9. 🗣 Commented on [#1456](https://github.com/openSUSE/osc/pull/1456#issuecomment-1842584980) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#181](https://github.com/Fatal1ty/mashumaro/pull/181#issuecomment-1842499924) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) From b9c805c6f0488fbe60a25bf3d3d7af405677de2f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Dec 2023 20:37:16 +0000 Subject: [PATCH 0826/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ae3b4db4..8e7712f9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#836](https://github.com/scilus/scilpy/pull/836#issuecomment-1843612312) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#835](https://github.com/scilus/scilpy/pull/835#issuecomment-1843581744) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#834](https://github.com/scilus/scilpy/pull/834#issuecomment-1843538003) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#158](https://github.com/eastgenomics/dias_batch_running/pull/158#issuecomment-1843490014) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#62](https://github.com/eastgenomics/eris/pull/62#issuecomment-1843225210) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#39](https://github.com/eastgenomics/trendyQC/pull/39#issuecomment-1843188982) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -7. 🗣 Commented on [#833](https://github.com/scilus/scilpy/pull/833#issuecomment-1843169560) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#1070](https://github.com/yeatmanlab/pyAFQ/pull/1070#issuecomment-1842864476) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -9. 🗣 Commented on [#1456](https://github.com/openSUSE/osc/pull/1456#issuecomment-1842584980) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#181](https://github.com/Fatal1ty/mashumaro/pull/181#issuecomment-1842499924) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/LlamaAcademy/pull/1#issuecomment-1843644825) in [tuhinmallick/LlamaAcademy](https://github.com/tuhinmallick/LlamaAcademy) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/langfree/pull/1#issuecomment-1843641129) in [tuhinmallick/langfree](https://github.com/tuhinmallick/langfree) +3. 🗣 Commented on [#836](https://github.com/scilus/scilpy/pull/836#issuecomment-1843612312) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#835](https://github.com/scilus/scilpy/pull/835#issuecomment-1843581744) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#834](https://github.com/scilus/scilpy/pull/834#issuecomment-1843538003) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#158](https://github.com/eastgenomics/dias_batch_running/pull/158#issuecomment-1843490014) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#62](https://github.com/eastgenomics/eris/pull/62#issuecomment-1843225210) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#39](https://github.com/eastgenomics/trendyQC/pull/39#issuecomment-1843188982) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +9. 🗣 Commented on [#833](https://github.com/scilus/scilpy/pull/833#issuecomment-1843169560) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#1070](https://github.com/yeatmanlab/pyAFQ/pull/1070#issuecomment-1842864476) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) From a4ef659a3b93223c3618637d77982581e95b0ff0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Dec 2023 21:14:28 +0000 Subject: [PATCH 0827/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8e7712f9..c7c85566 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/LlamaAcademy/pull/1#issuecomment-1843644825) in [tuhinmallick/LlamaAcademy](https://github.com/tuhinmallick/LlamaAcademy) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/langfree/pull/1#issuecomment-1843641129) in [tuhinmallick/langfree](https://github.com/tuhinmallick/langfree) -3. 🗣 Commented on [#836](https://github.com/scilus/scilpy/pull/836#issuecomment-1843612312) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#835](https://github.com/scilus/scilpy/pull/835#issuecomment-1843581744) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#834](https://github.com/scilus/scilpy/pull/834#issuecomment-1843538003) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#158](https://github.com/eastgenomics/dias_batch_running/pull/158#issuecomment-1843490014) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#62](https://github.com/eastgenomics/eris/pull/62#issuecomment-1843225210) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#39](https://github.com/eastgenomics/trendyQC/pull/39#issuecomment-1843188982) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -9. 🗣 Commented on [#833](https://github.com/scilus/scilpy/pull/833#issuecomment-1843169560) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#1070](https://github.com/yeatmanlab/pyAFQ/pull/1070#issuecomment-1842864476) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +1. 🗣 Commented on [#828](https://github.com/scilus/scilpy/pull/828#issuecomment-1843698031) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/hypertion/pull/1#issuecomment-1843654861) in [tuhinmallick/hypertion](https://github.com/tuhinmallick/hypertion) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/LlamaAcademy/pull/1#issuecomment-1843644825) in [tuhinmallick/LlamaAcademy](https://github.com/tuhinmallick/LlamaAcademy) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/langfree/pull/1#issuecomment-1843641129) in [tuhinmallick/langfree](https://github.com/tuhinmallick/langfree) +5. 🗣 Commented on [#836](https://github.com/scilus/scilpy/pull/836#issuecomment-1843612312) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#835](https://github.com/scilus/scilpy/pull/835#issuecomment-1843581744) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#834](https://github.com/scilus/scilpy/pull/834#issuecomment-1843538003) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#158](https://github.com/eastgenomics/dias_batch_running/pull/158#issuecomment-1843490014) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#62](https://github.com/eastgenomics/eris/pull/62#issuecomment-1843225210) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#39](https://github.com/eastgenomics/trendyQC/pull/39#issuecomment-1843188982) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) From 988b316314f523c17ea4b313427ae7ea7d7c4964 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 01:13:57 +0000 Subject: [PATCH 0828/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c7c85566..708b7ed0 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#828](https://github.com/scilus/scilpy/pull/828#issuecomment-1843698031) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/hypertion/pull/1#issuecomment-1843654861) in [tuhinmallick/hypertion](https://github.com/tuhinmallick/hypertion) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/LlamaAcademy/pull/1#issuecomment-1843644825) in [tuhinmallick/LlamaAcademy](https://github.com/tuhinmallick/LlamaAcademy) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/langfree/pull/1#issuecomment-1843641129) in [tuhinmallick/langfree](https://github.com/tuhinmallick/langfree) -5. 🗣 Commented on [#836](https://github.com/scilus/scilpy/pull/836#issuecomment-1843612312) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#835](https://github.com/scilus/scilpy/pull/835#issuecomment-1843581744) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#834](https://github.com/scilus/scilpy/pull/834#issuecomment-1843538003) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#158](https://github.com/eastgenomics/dias_batch_running/pull/158#issuecomment-1843490014) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#62](https://github.com/eastgenomics/eris/pull/62#issuecomment-1843225210) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#39](https://github.com/eastgenomics/trendyQC/pull/39#issuecomment-1843188982) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +1. 🗣 Commented on [#125](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/125#issuecomment-1843933022) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +2. 🗣 Commented on [#124](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/124#issuecomment-1843932114) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/agents/pull/1#issuecomment-1843865530) in [tuhinmallick/agents](https://github.com/tuhinmallick/agents) +4. 🗣 Commented on [#828](https://github.com/scilus/scilpy/pull/828#issuecomment-1843698031) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/hypertion/pull/1#issuecomment-1843654861) in [tuhinmallick/hypertion](https://github.com/tuhinmallick/hypertion) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/LlamaAcademy/pull/1#issuecomment-1843644825) in [tuhinmallick/LlamaAcademy](https://github.com/tuhinmallick/LlamaAcademy) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/langfree/pull/1#issuecomment-1843641129) in [tuhinmallick/langfree](https://github.com/tuhinmallick/langfree) +8. 🗣 Commented on [#836](https://github.com/scilus/scilpy/pull/836#issuecomment-1843612312) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#835](https://github.com/scilus/scilpy/pull/835#issuecomment-1843581744) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#834](https://github.com/scilus/scilpy/pull/834#issuecomment-1843538003) in [scilus/scilpy](https://github.com/scilus/scilpy) From 5694efea947b670a7f5d4bdf7d63a93963f85859 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 02:10:51 +0000 Subject: [PATCH 0829/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 708b7ed0..d5e3de0a 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#125](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/125#issuecomment-1843933022) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -2. 🗣 Commented on [#124](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/124#issuecomment-1843932114) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/agents/pull/1#issuecomment-1843865530) in [tuhinmallick/agents](https://github.com/tuhinmallick/agents) -4. 🗣 Commented on [#828](https://github.com/scilus/scilpy/pull/828#issuecomment-1843698031) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/hypertion/pull/1#issuecomment-1843654861) in [tuhinmallick/hypertion](https://github.com/tuhinmallick/hypertion) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/LlamaAcademy/pull/1#issuecomment-1843644825) in [tuhinmallick/LlamaAcademy](https://github.com/tuhinmallick/LlamaAcademy) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/langfree/pull/1#issuecomment-1843641129) in [tuhinmallick/langfree](https://github.com/tuhinmallick/langfree) -8. 🗣 Commented on [#836](https://github.com/scilus/scilpy/pull/836#issuecomment-1843612312) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#835](https://github.com/scilus/scilpy/pull/835#issuecomment-1843581744) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#834](https://github.com/scilus/scilpy/pull/834#issuecomment-1843538003) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#883](https://github.com/PyThaiNLP/pythainlp/pull/883#issuecomment-1844057565) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#90](https://github.com/Dog-Face-Development/Moms-Canning-Timer/pull/90#issuecomment-1843997211) in [Dog-Face-Development/Moms-Canning-Timer](https://github.com/Dog-Face-Development/Moms-Canning-Timer) +3. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/130#issuecomment-1843987884) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) +4. 🗣 Commented on [#125](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/125#issuecomment-1843933022) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +5. 🗣 Commented on [#124](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/124#issuecomment-1843932114) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/agents/pull/1#issuecomment-1843865530) in [tuhinmallick/agents](https://github.com/tuhinmallick/agents) +7. 🗣 Commented on [#828](https://github.com/scilus/scilpy/pull/828#issuecomment-1843698031) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/hypertion/pull/1#issuecomment-1843654861) in [tuhinmallick/hypertion](https://github.com/tuhinmallick/hypertion) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/LlamaAcademy/pull/1#issuecomment-1843644825) in [tuhinmallick/LlamaAcademy](https://github.com/tuhinmallick/LlamaAcademy) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/langfree/pull/1#issuecomment-1843641129) in [tuhinmallick/langfree](https://github.com/tuhinmallick/langfree) From 40fec7cf6e8c0714a422f9398ce1f2e67b062c68 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 03:17:15 +0000 Subject: [PATCH 0830/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d5e3de0a..675a30c9 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#883](https://github.com/PyThaiNLP/pythainlp/pull/883#issuecomment-1844057565) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#90](https://github.com/Dog-Face-Development/Moms-Canning-Timer/pull/90#issuecomment-1843997211) in [Dog-Face-Development/Moms-Canning-Timer](https://github.com/Dog-Face-Development/Moms-Canning-Timer) -3. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/130#issuecomment-1843987884) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) -4. 🗣 Commented on [#125](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/125#issuecomment-1843933022) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -5. 🗣 Commented on [#124](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/124#issuecomment-1843932114) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/agents/pull/1#issuecomment-1843865530) in [tuhinmallick/agents](https://github.com/tuhinmallick/agents) -7. 🗣 Commented on [#828](https://github.com/scilus/scilpy/pull/828#issuecomment-1843698031) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/hypertion/pull/1#issuecomment-1843654861) in [tuhinmallick/hypertion](https://github.com/tuhinmallick/hypertion) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/LlamaAcademy/pull/1#issuecomment-1843644825) in [tuhinmallick/LlamaAcademy](https://github.com/tuhinmallick/LlamaAcademy) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/langfree/pull/1#issuecomment-1843641129) in [tuhinmallick/langfree](https://github.com/tuhinmallick/langfree) +1. 🗣 Commented on [#55](https://github.com/Dog-Face-Development/PyAvatar/pull/55#issuecomment-1844124228) in [Dog-Face-Development/PyAvatar](https://github.com/Dog-Face-Development/PyAvatar) +2. 🗣 Commented on [#883](https://github.com/PyThaiNLP/pythainlp/pull/883#issuecomment-1844057565) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#90](https://github.com/Dog-Face-Development/Moms-Canning-Timer/pull/90#issuecomment-1843997211) in [Dog-Face-Development/Moms-Canning-Timer](https://github.com/Dog-Face-Development/Moms-Canning-Timer) +4. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/130#issuecomment-1843987884) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) +5. 🗣 Commented on [#125](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/125#issuecomment-1843933022) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +6. 🗣 Commented on [#124](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/124#issuecomment-1843932114) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/agents/pull/1#issuecomment-1843865530) in [tuhinmallick/agents](https://github.com/tuhinmallick/agents) +8. 🗣 Commented on [#828](https://github.com/scilus/scilpy/pull/828#issuecomment-1843698031) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/hypertion/pull/1#issuecomment-1843654861) in [tuhinmallick/hypertion](https://github.com/tuhinmallick/hypertion) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/LlamaAcademy/pull/1#issuecomment-1843644825) in [tuhinmallick/LlamaAcademy](https://github.com/tuhinmallick/LlamaAcademy) From e1bb0ee2cdd993c4fb002360005ca37511567e58 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 07:15:05 +0000 Subject: [PATCH 0831/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 675a30c9..6f82b2e6 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#55](https://github.com/Dog-Face-Development/PyAvatar/pull/55#issuecomment-1844124228) in [Dog-Face-Development/PyAvatar](https://github.com/Dog-Face-Development/PyAvatar) -2. 🗣 Commented on [#883](https://github.com/PyThaiNLP/pythainlp/pull/883#issuecomment-1844057565) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#90](https://github.com/Dog-Face-Development/Moms-Canning-Timer/pull/90#issuecomment-1843997211) in [Dog-Face-Development/Moms-Canning-Timer](https://github.com/Dog-Face-Development/Moms-Canning-Timer) -4. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/130#issuecomment-1843987884) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) -5. 🗣 Commented on [#125](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/125#issuecomment-1843933022) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -6. 🗣 Commented on [#124](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/124#issuecomment-1843932114) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/agents/pull/1#issuecomment-1843865530) in [tuhinmallick/agents](https://github.com/tuhinmallick/agents) -8. 🗣 Commented on [#828](https://github.com/scilus/scilpy/pull/828#issuecomment-1843698031) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/hypertion/pull/1#issuecomment-1843654861) in [tuhinmallick/hypertion](https://github.com/tuhinmallick/hypertion) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/LlamaAcademy/pull/1#issuecomment-1843644825) in [tuhinmallick/LlamaAcademy](https://github.com/tuhinmallick/LlamaAcademy) +1. 🗣 Commented on [#48](https://github.com/aguinane/nem-reader/pull/48#issuecomment-1844770619) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +2. 🗣 Commented on [#55](https://github.com/Dog-Face-Development/PyAvatar/pull/55#issuecomment-1844124228) in [Dog-Face-Development/PyAvatar](https://github.com/Dog-Face-Development/PyAvatar) +3. 🗣 Commented on [#883](https://github.com/PyThaiNLP/pythainlp/pull/883#issuecomment-1844057565) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#90](https://github.com/Dog-Face-Development/Moms-Canning-Timer/pull/90#issuecomment-1843997211) in [Dog-Face-Development/Moms-Canning-Timer](https://github.com/Dog-Face-Development/Moms-Canning-Timer) +5. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/130#issuecomment-1843987884) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) +6. 🗣 Commented on [#125](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/125#issuecomment-1843933022) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +7. 🗣 Commented on [#124](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/124#issuecomment-1843932114) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/agents/pull/1#issuecomment-1843865530) in [tuhinmallick/agents](https://github.com/tuhinmallick/agents) +9. 🗣 Commented on [#828](https://github.com/scilus/scilpy/pull/828#issuecomment-1843698031) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/hypertion/pull/1#issuecomment-1843654861) in [tuhinmallick/hypertion](https://github.com/tuhinmallick/hypertion) From 22569698f7cd405172cdcd65706c57bf40975f04 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 08:20:57 +0000 Subject: [PATCH 0832/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6f82b2e6..c888af1b 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#48](https://github.com/aguinane/nem-reader/pull/48#issuecomment-1844770619) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -2. 🗣 Commented on [#55](https://github.com/Dog-Face-Development/PyAvatar/pull/55#issuecomment-1844124228) in [Dog-Face-Development/PyAvatar](https://github.com/Dog-Face-Development/PyAvatar) -3. 🗣 Commented on [#883](https://github.com/PyThaiNLP/pythainlp/pull/883#issuecomment-1844057565) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#90](https://github.com/Dog-Face-Development/Moms-Canning-Timer/pull/90#issuecomment-1843997211) in [Dog-Face-Development/Moms-Canning-Timer](https://github.com/Dog-Face-Development/Moms-Canning-Timer) -5. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/130#issuecomment-1843987884) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) -6. 🗣 Commented on [#125](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/125#issuecomment-1843933022) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -7. 🗣 Commented on [#124](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/124#issuecomment-1843932114) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/agents/pull/1#issuecomment-1843865530) in [tuhinmallick/agents](https://github.com/tuhinmallick/agents) -9. 🗣 Commented on [#828](https://github.com/scilus/scilpy/pull/828#issuecomment-1843698031) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/hypertion/pull/1#issuecomment-1843654861) in [tuhinmallick/hypertion](https://github.com/tuhinmallick/hypertion) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectordb-recipes/pull/1#issuecomment-1844831562) in [tuhinmallick/vectordb-recipes](https://github.com/tuhinmallick/vectordb-recipes) +2. 🗣 Commented on [#48](https://github.com/aguinane/nem-reader/pull/48#issuecomment-1844770619) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +3. 🗣 Commented on [#55](https://github.com/Dog-Face-Development/PyAvatar/pull/55#issuecomment-1844124228) in [Dog-Face-Development/PyAvatar](https://github.com/Dog-Face-Development/PyAvatar) +4. 🗣 Commented on [#883](https://github.com/PyThaiNLP/pythainlp/pull/883#issuecomment-1844057565) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#90](https://github.com/Dog-Face-Development/Moms-Canning-Timer/pull/90#issuecomment-1843997211) in [Dog-Face-Development/Moms-Canning-Timer](https://github.com/Dog-Face-Development/Moms-Canning-Timer) +6. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/130#issuecomment-1843987884) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) +7. 🗣 Commented on [#125](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/125#issuecomment-1843933022) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +8. 🗣 Commented on [#124](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/124#issuecomment-1843932114) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/agents/pull/1#issuecomment-1843865530) in [tuhinmallick/agents](https://github.com/tuhinmallick/agents) +10. 🗣 Commented on [#828](https://github.com/scilus/scilpy/pull/828#issuecomment-1843698031) in [scilus/scilpy](https://github.com/scilus/scilpy) From c655c5f0408f1a2cb27cad7d1f7f889d7d8ea4fa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 09:37:34 +0000 Subject: [PATCH 0833/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c888af1b..527a7aa2 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectordb-recipes/pull/1#issuecomment-1844831562) in [tuhinmallick/vectordb-recipes](https://github.com/tuhinmallick/vectordb-recipes) -2. 🗣 Commented on [#48](https://github.com/aguinane/nem-reader/pull/48#issuecomment-1844770619) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -3. 🗣 Commented on [#55](https://github.com/Dog-Face-Development/PyAvatar/pull/55#issuecomment-1844124228) in [Dog-Face-Development/PyAvatar](https://github.com/Dog-Face-Development/PyAvatar) -4. 🗣 Commented on [#883](https://github.com/PyThaiNLP/pythainlp/pull/883#issuecomment-1844057565) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#90](https://github.com/Dog-Face-Development/Moms-Canning-Timer/pull/90#issuecomment-1843997211) in [Dog-Face-Development/Moms-Canning-Timer](https://github.com/Dog-Face-Development/Moms-Canning-Timer) -6. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/130#issuecomment-1843987884) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) -7. 🗣 Commented on [#125](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/125#issuecomment-1843933022) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -8. 🗣 Commented on [#124](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/124#issuecomment-1843932114) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/agents/pull/1#issuecomment-1843865530) in [tuhinmallick/agents](https://github.com/tuhinmallick/agents) -10. 🗣 Commented on [#828](https://github.com/scilus/scilpy/pull/828#issuecomment-1843698031) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#113](https://github.com/OpenFreeEnergy/cinnabar/pull/113#issuecomment-1844982739) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectordb-recipes/pull/1#issuecomment-1844831562) in [tuhinmallick/vectordb-recipes](https://github.com/tuhinmallick/vectordb-recipes) +3. 🗣 Commented on [#48](https://github.com/aguinane/nem-reader/pull/48#issuecomment-1844770619) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +4. 🗣 Commented on [#55](https://github.com/Dog-Face-Development/PyAvatar/pull/55#issuecomment-1844124228) in [Dog-Face-Development/PyAvatar](https://github.com/Dog-Face-Development/PyAvatar) +5. 🗣 Commented on [#883](https://github.com/PyThaiNLP/pythainlp/pull/883#issuecomment-1844057565) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#90](https://github.com/Dog-Face-Development/Moms-Canning-Timer/pull/90#issuecomment-1843997211) in [Dog-Face-Development/Moms-Canning-Timer](https://github.com/Dog-Face-Development/Moms-Canning-Timer) +7. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/130#issuecomment-1843987884) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) +8. 🗣 Commented on [#125](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/125#issuecomment-1843933022) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +9. 🗣 Commented on [#124](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/124#issuecomment-1843932114) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/agents/pull/1#issuecomment-1843865530) in [tuhinmallick/agents](https://github.com/tuhinmallick/agents) From 0b04a315532ab61144a9d574dd6e3384ce14c159 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 11:14:05 +0000 Subject: [PATCH 0834/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 527a7aa2..6b65fde0 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#113](https://github.com/OpenFreeEnergy/cinnabar/pull/113#issuecomment-1844982739) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectordb-recipes/pull/1#issuecomment-1844831562) in [tuhinmallick/vectordb-recipes](https://github.com/tuhinmallick/vectordb-recipes) -3. 🗣 Commented on [#48](https://github.com/aguinane/nem-reader/pull/48#issuecomment-1844770619) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -4. 🗣 Commented on [#55](https://github.com/Dog-Face-Development/PyAvatar/pull/55#issuecomment-1844124228) in [Dog-Face-Development/PyAvatar](https://github.com/Dog-Face-Development/PyAvatar) -5. 🗣 Commented on [#883](https://github.com/PyThaiNLP/pythainlp/pull/883#issuecomment-1844057565) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#90](https://github.com/Dog-Face-Development/Moms-Canning-Timer/pull/90#issuecomment-1843997211) in [Dog-Face-Development/Moms-Canning-Timer](https://github.com/Dog-Face-Development/Moms-Canning-Timer) -7. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/130#issuecomment-1843987884) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) -8. 🗣 Commented on [#125](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/125#issuecomment-1843933022) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -9. 🗣 Commented on [#124](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/124#issuecomment-1843932114) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/agents/pull/1#issuecomment-1843865530) in [tuhinmallick/agents](https://github.com/tuhinmallick/agents) +1. 🗣 Commented on [#876](https://github.com/ToFuProject/tofu/pull/876#issuecomment-1845141180) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#149](https://github.com/rhinstaller/initial-setup/pull/149#issuecomment-1845124574) in [rhinstaller/initial-setup](https://github.com/rhinstaller/initial-setup) +3. 🗣 Commented on [#113](https://github.com/OpenFreeEnergy/cinnabar/pull/113#issuecomment-1844982739) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectordb-recipes/pull/1#issuecomment-1844831562) in [tuhinmallick/vectordb-recipes](https://github.com/tuhinmallick/vectordb-recipes) +5. 🗣 Commented on [#48](https://github.com/aguinane/nem-reader/pull/48#issuecomment-1844770619) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +6. 🗣 Commented on [#55](https://github.com/Dog-Face-Development/PyAvatar/pull/55#issuecomment-1844124228) in [Dog-Face-Development/PyAvatar](https://github.com/Dog-Face-Development/PyAvatar) +7. 🗣 Commented on [#883](https://github.com/PyThaiNLP/pythainlp/pull/883#issuecomment-1844057565) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +8. 🗣 Commented on [#90](https://github.com/Dog-Face-Development/Moms-Canning-Timer/pull/90#issuecomment-1843997211) in [Dog-Face-Development/Moms-Canning-Timer](https://github.com/Dog-Face-Development/Moms-Canning-Timer) +9. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/130#issuecomment-1843987884) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) +10. 🗣 Commented on [#125](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/125#issuecomment-1843933022) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) From 2fd18f42634993448a988331555f277c72c9003f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 13:21:25 +0000 Subject: [PATCH 0835/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6b65fde0..f1f39803 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#876](https://github.com/ToFuProject/tofu/pull/876#issuecomment-1845141180) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#149](https://github.com/rhinstaller/initial-setup/pull/149#issuecomment-1845124574) in [rhinstaller/initial-setup](https://github.com/rhinstaller/initial-setup) -3. 🗣 Commented on [#113](https://github.com/OpenFreeEnergy/cinnabar/pull/113#issuecomment-1844982739) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectordb-recipes/pull/1#issuecomment-1844831562) in [tuhinmallick/vectordb-recipes](https://github.com/tuhinmallick/vectordb-recipes) -5. 🗣 Commented on [#48](https://github.com/aguinane/nem-reader/pull/48#issuecomment-1844770619) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -6. 🗣 Commented on [#55](https://github.com/Dog-Face-Development/PyAvatar/pull/55#issuecomment-1844124228) in [Dog-Face-Development/PyAvatar](https://github.com/Dog-Face-Development/PyAvatar) -7. 🗣 Commented on [#883](https://github.com/PyThaiNLP/pythainlp/pull/883#issuecomment-1844057565) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -8. 🗣 Commented on [#90](https://github.com/Dog-Face-Development/Moms-Canning-Timer/pull/90#issuecomment-1843997211) in [Dog-Face-Development/Moms-Canning-Timer](https://github.com/Dog-Face-Development/Moms-Canning-Timer) -9. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/Periodic-Table-Info/pull/130#issuecomment-1843987884) in [Dog-Face-Development/Periodic-Table-Info](https://github.com/Dog-Face-Development/Periodic-Table-Info) -10. 🗣 Commented on [#125](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/125#issuecomment-1843933022) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +1. 🗣 Commented on [#247](https://github.com/aimclub/GOLEM/pull/247#issuecomment-1845332175) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#884](https://github.com/PyThaiNLP/pythainlp/pull/884#issuecomment-1845288310) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#4865](https://github.com/rhinstaller/anaconda/pull/4865#issuecomment-1845279157) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#876](https://github.com/ToFuProject/tofu/pull/876#issuecomment-1845141180) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#149](https://github.com/rhinstaller/initial-setup/pull/149#issuecomment-1845124574) in [rhinstaller/initial-setup](https://github.com/rhinstaller/initial-setup) +6. 🗣 Commented on [#113](https://github.com/OpenFreeEnergy/cinnabar/pull/113#issuecomment-1844982739) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectordb-recipes/pull/1#issuecomment-1844831562) in [tuhinmallick/vectordb-recipes](https://github.com/tuhinmallick/vectordb-recipes) +8. 🗣 Commented on [#48](https://github.com/aguinane/nem-reader/pull/48#issuecomment-1844770619) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +9. 🗣 Commented on [#55](https://github.com/Dog-Face-Development/PyAvatar/pull/55#issuecomment-1844124228) in [Dog-Face-Development/PyAvatar](https://github.com/Dog-Face-Development/PyAvatar) +10. 🗣 Commented on [#883](https://github.com/PyThaiNLP/pythainlp/pull/883#issuecomment-1844057565) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) From ca9fd04b74454184ce93a4cabcc483473a2ba2bd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 14:37:38 +0000 Subject: [PATCH 0836/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f1f39803..4139f59e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#247](https://github.com/aimclub/GOLEM/pull/247#issuecomment-1845332175) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#884](https://github.com/PyThaiNLP/pythainlp/pull/884#issuecomment-1845288310) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#4865](https://github.com/rhinstaller/anaconda/pull/4865#issuecomment-1845279157) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#876](https://github.com/ToFuProject/tofu/pull/876#issuecomment-1845141180) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#149](https://github.com/rhinstaller/initial-setup/pull/149#issuecomment-1845124574) in [rhinstaller/initial-setup](https://github.com/rhinstaller/initial-setup) -6. 🗣 Commented on [#113](https://github.com/OpenFreeEnergy/cinnabar/pull/113#issuecomment-1844982739) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectordb-recipes/pull/1#issuecomment-1844831562) in [tuhinmallick/vectordb-recipes](https://github.com/tuhinmallick/vectordb-recipes) -8. 🗣 Commented on [#48](https://github.com/aguinane/nem-reader/pull/48#issuecomment-1844770619) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -9. 🗣 Commented on [#55](https://github.com/Dog-Face-Development/PyAvatar/pull/55#issuecomment-1844124228) in [Dog-Face-Development/PyAvatar](https://github.com/Dog-Face-Development/PyAvatar) -10. 🗣 Commented on [#883](https://github.com/PyThaiNLP/pythainlp/pull/883#issuecomment-1844057565) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +1. 🗣 Commented on [#92](https://github.com/Richard-Sti/csiborgtools/pull/92#issuecomment-1845432322) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +2. 🗣 Commented on [#247](https://github.com/aimclub/GOLEM/pull/247#issuecomment-1845332175) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#884](https://github.com/PyThaiNLP/pythainlp/pull/884#issuecomment-1845288310) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#4865](https://github.com/rhinstaller/anaconda/pull/4865#issuecomment-1845279157) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#876](https://github.com/ToFuProject/tofu/pull/876#issuecomment-1845141180) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#149](https://github.com/rhinstaller/initial-setup/pull/149#issuecomment-1845124574) in [rhinstaller/initial-setup](https://github.com/rhinstaller/initial-setup) +7. 🗣 Commented on [#113](https://github.com/OpenFreeEnergy/cinnabar/pull/113#issuecomment-1844982739) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectordb-recipes/pull/1#issuecomment-1844831562) in [tuhinmallick/vectordb-recipes](https://github.com/tuhinmallick/vectordb-recipes) +9. 🗣 Commented on [#48](https://github.com/aguinane/nem-reader/pull/48#issuecomment-1844770619) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +10. 🗣 Commented on [#55](https://github.com/Dog-Face-Development/PyAvatar/pull/55#issuecomment-1844124228) in [Dog-Face-Development/PyAvatar](https://github.com/Dog-Face-Development/PyAvatar) From a7317b704f8e17a497fe73c619b5114026ccbd29 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 16:42:08 +0000 Subject: [PATCH 0837/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4139f59e..bb8f74d8 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#92](https://github.com/Richard-Sti/csiborgtools/pull/92#issuecomment-1845432322) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -2. 🗣 Commented on [#247](https://github.com/aimclub/GOLEM/pull/247#issuecomment-1845332175) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#884](https://github.com/PyThaiNLP/pythainlp/pull/884#issuecomment-1845288310) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#4865](https://github.com/rhinstaller/anaconda/pull/4865#issuecomment-1845279157) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#876](https://github.com/ToFuProject/tofu/pull/876#issuecomment-1845141180) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#149](https://github.com/rhinstaller/initial-setup/pull/149#issuecomment-1845124574) in [rhinstaller/initial-setup](https://github.com/rhinstaller/initial-setup) -7. 🗣 Commented on [#113](https://github.com/OpenFreeEnergy/cinnabar/pull/113#issuecomment-1844982739) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectordb-recipes/pull/1#issuecomment-1844831562) in [tuhinmallick/vectordb-recipes](https://github.com/tuhinmallick/vectordb-recipes) -9. 🗣 Commented on [#48](https://github.com/aguinane/nem-reader/pull/48#issuecomment-1844770619) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -10. 🗣 Commented on [#55](https://github.com/Dog-Face-Development/PyAvatar/pull/55#issuecomment-1844124228) in [Dog-Face-Development/PyAvatar](https://github.com/Dog-Face-Development/PyAvatar) +1. 🗣 Commented on [#589](https://github.com/HEXRD/hexrd/pull/589#issuecomment-1845650985) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#92](https://github.com/Richard-Sti/csiborgtools/pull/92#issuecomment-1845432322) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +3. 🗣 Commented on [#247](https://github.com/aimclub/GOLEM/pull/247#issuecomment-1845332175) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +4. 🗣 Commented on [#884](https://github.com/PyThaiNLP/pythainlp/pull/884#issuecomment-1845288310) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#4865](https://github.com/rhinstaller/anaconda/pull/4865#issuecomment-1845279157) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#876](https://github.com/ToFuProject/tofu/pull/876#issuecomment-1845141180) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#149](https://github.com/rhinstaller/initial-setup/pull/149#issuecomment-1845124574) in [rhinstaller/initial-setup](https://github.com/rhinstaller/initial-setup) +8. 🗣 Commented on [#113](https://github.com/OpenFreeEnergy/cinnabar/pull/113#issuecomment-1844982739) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectordb-recipes/pull/1#issuecomment-1844831562) in [tuhinmallick/vectordb-recipes](https://github.com/tuhinmallick/vectordb-recipes) +10. 🗣 Commented on [#48](https://github.com/aguinane/nem-reader/pull/48#issuecomment-1844770619) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) From dd025d481423e6ec05919d8ea1e91c8feba19ba4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 17:37:13 +0000 Subject: [PATCH 0838/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bb8f74d8..a03f63a8 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#589](https://github.com/HEXRD/hexrd/pull/589#issuecomment-1845650985) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#92](https://github.com/Richard-Sti/csiborgtools/pull/92#issuecomment-1845432322) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -3. 🗣 Commented on [#247](https://github.com/aimclub/GOLEM/pull/247#issuecomment-1845332175) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -4. 🗣 Commented on [#884](https://github.com/PyThaiNLP/pythainlp/pull/884#issuecomment-1845288310) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#4865](https://github.com/rhinstaller/anaconda/pull/4865#issuecomment-1845279157) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#876](https://github.com/ToFuProject/tofu/pull/876#issuecomment-1845141180) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#149](https://github.com/rhinstaller/initial-setup/pull/149#issuecomment-1845124574) in [rhinstaller/initial-setup](https://github.com/rhinstaller/initial-setup) -8. 🗣 Commented on [#113](https://github.com/OpenFreeEnergy/cinnabar/pull/113#issuecomment-1844982739) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectordb-recipes/pull/1#issuecomment-1844831562) in [tuhinmallick/vectordb-recipes](https://github.com/tuhinmallick/vectordb-recipes) -10. 🗣 Commented on [#48](https://github.com/aguinane/nem-reader/pull/48#issuecomment-1844770619) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +1. 🗣 Commented on [#878](https://github.com/ToFuProject/tofu/pull/878#issuecomment-1845779801) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#589](https://github.com/HEXRD/hexrd/pull/589#issuecomment-1845650985) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#92](https://github.com/Richard-Sti/csiborgtools/pull/92#issuecomment-1845432322) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +4. 🗣 Commented on [#247](https://github.com/aimclub/GOLEM/pull/247#issuecomment-1845332175) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#884](https://github.com/PyThaiNLP/pythainlp/pull/884#issuecomment-1845288310) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#4865](https://github.com/rhinstaller/anaconda/pull/4865#issuecomment-1845279157) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#876](https://github.com/ToFuProject/tofu/pull/876#issuecomment-1845141180) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#149](https://github.com/rhinstaller/initial-setup/pull/149#issuecomment-1845124574) in [rhinstaller/initial-setup](https://github.com/rhinstaller/initial-setup) +9. 🗣 Commented on [#113](https://github.com/OpenFreeEnergy/cinnabar/pull/113#issuecomment-1844982739) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectordb-recipes/pull/1#issuecomment-1844831562) in [tuhinmallick/vectordb-recipes](https://github.com/tuhinmallick/vectordb-recipes) From b9e2f94e088ab7eb1fe14b6bd045551af8fccbb1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 18:21:07 +0000 Subject: [PATCH 0839/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a03f63a8..dccada9e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#878](https://github.com/ToFuProject/tofu/pull/878#issuecomment-1845779801) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#589](https://github.com/HEXRD/hexrd/pull/589#issuecomment-1845650985) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#92](https://github.com/Richard-Sti/csiborgtools/pull/92#issuecomment-1845432322) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -4. 🗣 Commented on [#247](https://github.com/aimclub/GOLEM/pull/247#issuecomment-1845332175) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#884](https://github.com/PyThaiNLP/pythainlp/pull/884#issuecomment-1845288310) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#4865](https://github.com/rhinstaller/anaconda/pull/4865#issuecomment-1845279157) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#876](https://github.com/ToFuProject/tofu/pull/876#issuecomment-1845141180) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#149](https://github.com/rhinstaller/initial-setup/pull/149#issuecomment-1845124574) in [rhinstaller/initial-setup](https://github.com/rhinstaller/initial-setup) -9. 🗣 Commented on [#113](https://github.com/OpenFreeEnergy/cinnabar/pull/113#issuecomment-1844982739) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/vectordb-recipes/pull/1#issuecomment-1844831562) in [tuhinmallick/vectordb-recipes](https://github.com/tuhinmallick/vectordb-recipes) +1. 🗣 Commented on [#459](https://github.com/oemof/tespy/pull/459#issuecomment-1845846004) in [oemof/tespy](https://github.com/oemof/tespy) +2. 🗣 Commented on [#838](https://github.com/scilus/scilpy/pull/838#issuecomment-1845833465) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#878](https://github.com/ToFuProject/tofu/pull/878#issuecomment-1845779801) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#589](https://github.com/HEXRD/hexrd/pull/589#issuecomment-1845650985) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#92](https://github.com/Richard-Sti/csiborgtools/pull/92#issuecomment-1845432322) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +6. 🗣 Commented on [#247](https://github.com/aimclub/GOLEM/pull/247#issuecomment-1845332175) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#884](https://github.com/PyThaiNLP/pythainlp/pull/884#issuecomment-1845288310) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +8. 🗣 Commented on [#4865](https://github.com/rhinstaller/anaconda/pull/4865#issuecomment-1845279157) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#876](https://github.com/ToFuProject/tofu/pull/876#issuecomment-1845141180) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#149](https://github.com/rhinstaller/initial-setup/pull/149#issuecomment-1845124574) in [rhinstaller/initial-setup](https://github.com/rhinstaller/initial-setup) From abe6b4baf1de37739f705a3538f75c3750fbac86 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 19:13:07 +0000 Subject: [PATCH 0840/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dccada9e..501d5447 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#459](https://github.com/oemof/tespy/pull/459#issuecomment-1845846004) in [oemof/tespy](https://github.com/oemof/tespy) -2. 🗣 Commented on [#838](https://github.com/scilus/scilpy/pull/838#issuecomment-1845833465) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#878](https://github.com/ToFuProject/tofu/pull/878#issuecomment-1845779801) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#589](https://github.com/HEXRD/hexrd/pull/589#issuecomment-1845650985) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#92](https://github.com/Richard-Sti/csiborgtools/pull/92#issuecomment-1845432322) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -6. 🗣 Commented on [#247](https://github.com/aimclub/GOLEM/pull/247#issuecomment-1845332175) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#884](https://github.com/PyThaiNLP/pythainlp/pull/884#issuecomment-1845288310) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -8. 🗣 Commented on [#4865](https://github.com/rhinstaller/anaconda/pull/4865#issuecomment-1845279157) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#876](https://github.com/ToFuProject/tofu/pull/876#issuecomment-1845141180) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#149](https://github.com/rhinstaller/initial-setup/pull/149#issuecomment-1845124574) in [rhinstaller/initial-setup](https://github.com/rhinstaller/initial-setup) +1. 🗣 Commented on [#2893](https://github.com/astropy/astroquery/pull/2893#issuecomment-1845948033) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#459](https://github.com/oemof/tespy/pull/459#issuecomment-1845846004) in [oemof/tespy](https://github.com/oemof/tespy) +3. 🗣 Commented on [#838](https://github.com/scilus/scilpy/pull/838#issuecomment-1845833465) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#878](https://github.com/ToFuProject/tofu/pull/878#issuecomment-1845779801) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#589](https://github.com/HEXRD/hexrd/pull/589#issuecomment-1845650985) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +6. 🗣 Commented on [#92](https://github.com/Richard-Sti/csiborgtools/pull/92#issuecomment-1845432322) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +7. 🗣 Commented on [#247](https://github.com/aimclub/GOLEM/pull/247#issuecomment-1845332175) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +8. 🗣 Commented on [#884](https://github.com/PyThaiNLP/pythainlp/pull/884#issuecomment-1845288310) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#4865](https://github.com/rhinstaller/anaconda/pull/4865#issuecomment-1845279157) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#876](https://github.com/ToFuProject/tofu/pull/876#issuecomment-1845141180) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From 35d2c935541ffa5fc01967bc5eaf4cf7c626f9f9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 19:37:17 +0000 Subject: [PATCH 0841/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 501d5447..1f72983c 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2893](https://github.com/astropy/astroquery/pull/2893#issuecomment-1845948033) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#459](https://github.com/oemof/tespy/pull/459#issuecomment-1845846004) in [oemof/tespy](https://github.com/oemof/tespy) -3. 🗣 Commented on [#838](https://github.com/scilus/scilpy/pull/838#issuecomment-1845833465) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#878](https://github.com/ToFuProject/tofu/pull/878#issuecomment-1845779801) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#589](https://github.com/HEXRD/hexrd/pull/589#issuecomment-1845650985) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -6. 🗣 Commented on [#92](https://github.com/Richard-Sti/csiborgtools/pull/92#issuecomment-1845432322) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -7. 🗣 Commented on [#247](https://github.com/aimclub/GOLEM/pull/247#issuecomment-1845332175) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -8. 🗣 Commented on [#884](https://github.com/PyThaiNLP/pythainlp/pull/884#issuecomment-1845288310) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#4865](https://github.com/rhinstaller/anaconda/pull/4865#issuecomment-1845279157) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#876](https://github.com/ToFuProject/tofu/pull/876#issuecomment-1845141180) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#839](https://github.com/scilus/scilpy/pull/839#issuecomment-1845980597) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#2893](https://github.com/astropy/astroquery/pull/2893#issuecomment-1845948033) in [astropy/astroquery](https://github.com/astropy/astroquery) +3. 🗣 Commented on [#459](https://github.com/oemof/tespy/pull/459#issuecomment-1845846004) in [oemof/tespy](https://github.com/oemof/tespy) +4. 🗣 Commented on [#838](https://github.com/scilus/scilpy/pull/838#issuecomment-1845833465) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#878](https://github.com/ToFuProject/tofu/pull/878#issuecomment-1845779801) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#589](https://github.com/HEXRD/hexrd/pull/589#issuecomment-1845650985) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +7. 🗣 Commented on [#92](https://github.com/Richard-Sti/csiborgtools/pull/92#issuecomment-1845432322) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +8. 🗣 Commented on [#247](https://github.com/aimclub/GOLEM/pull/247#issuecomment-1845332175) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#884](https://github.com/PyThaiNLP/pythainlp/pull/884#issuecomment-1845288310) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +10. 🗣 Commented on [#4865](https://github.com/rhinstaller/anaconda/pull/4865#issuecomment-1845279157) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From bb520bd492fc3dc259f21083d311ab763d7f8b11 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 20:17:42 +0000 Subject: [PATCH 0842/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1f72983c..e56c7b06 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#839](https://github.com/scilus/scilpy/pull/839#issuecomment-1845980597) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#2893](https://github.com/astropy/astroquery/pull/2893#issuecomment-1845948033) in [astropy/astroquery](https://github.com/astropy/astroquery) -3. 🗣 Commented on [#459](https://github.com/oemof/tespy/pull/459#issuecomment-1845846004) in [oemof/tespy](https://github.com/oemof/tespy) -4. 🗣 Commented on [#838](https://github.com/scilus/scilpy/pull/838#issuecomment-1845833465) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#878](https://github.com/ToFuProject/tofu/pull/878#issuecomment-1845779801) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#589](https://github.com/HEXRD/hexrd/pull/589#issuecomment-1845650985) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -7. 🗣 Commented on [#92](https://github.com/Richard-Sti/csiborgtools/pull/92#issuecomment-1845432322) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -8. 🗣 Commented on [#247](https://github.com/aimclub/GOLEM/pull/247#issuecomment-1845332175) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#884](https://github.com/PyThaiNLP/pythainlp/pull/884#issuecomment-1845288310) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -10. 🗣 Commented on [#4865](https://github.com/rhinstaller/anaconda/pull/4865#issuecomment-1845279157) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +2. 🗣 Commented on [#840](https://github.com/scilus/scilpy/pull/840#issuecomment-1846018838) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#502](https://github.com/UIUCLibrary/Speedwagon/pull/502#issuecomment-1846007956) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +4. 🗣 Commented on [#839](https://github.com/scilus/scilpy/pull/839#issuecomment-1845980597) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#2893](https://github.com/astropy/astroquery/pull/2893#issuecomment-1845948033) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#459](https://github.com/oemof/tespy/pull/459#issuecomment-1845846004) in [oemof/tespy](https://github.com/oemof/tespy) +7. 🗣 Commented on [#838](https://github.com/scilus/scilpy/pull/838#issuecomment-1845833465) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#878](https://github.com/ToFuProject/tofu/pull/878#issuecomment-1845779801) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#589](https://github.com/HEXRD/hexrd/pull/589#issuecomment-1845650985) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +10. 🗣 Commented on [#92](https://github.com/Richard-Sti/csiborgtools/pull/92#issuecomment-1845432322) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) From f7b6c61ea0663d3d51b108b3db00c4569965f58d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 22:15:33 +0000 Subject: [PATCH 0843/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e56c7b06..2646e1b6 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -2. 🗣 Commented on [#840](https://github.com/scilus/scilpy/pull/840#issuecomment-1846018838) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#502](https://github.com/UIUCLibrary/Speedwagon/pull/502#issuecomment-1846007956) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -4. 🗣 Commented on [#839](https://github.com/scilus/scilpy/pull/839#issuecomment-1845980597) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#2893](https://github.com/astropy/astroquery/pull/2893#issuecomment-1845948033) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#459](https://github.com/oemof/tespy/pull/459#issuecomment-1845846004) in [oemof/tespy](https://github.com/oemof/tespy) -7. 🗣 Commented on [#838](https://github.com/scilus/scilpy/pull/838#issuecomment-1845833465) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#878](https://github.com/ToFuProject/tofu/pull/878#issuecomment-1845779801) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#589](https://github.com/HEXRD/hexrd/pull/589#issuecomment-1845650985) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -10. 🗣 Commented on [#92](https://github.com/Richard-Sti/csiborgtools/pull/92#issuecomment-1845432322) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +1. 🗣 Commented on [#1022](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1022#issuecomment-1846163817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +3. 🗣 Commented on [#840](https://github.com/scilus/scilpy/pull/840#issuecomment-1846018838) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#502](https://github.com/UIUCLibrary/Speedwagon/pull/502#issuecomment-1846007956) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +5. 🗣 Commented on [#839](https://github.com/scilus/scilpy/pull/839#issuecomment-1845980597) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#2893](https://github.com/astropy/astroquery/pull/2893#issuecomment-1845948033) in [astropy/astroquery](https://github.com/astropy/astroquery) +7. 🗣 Commented on [#459](https://github.com/oemof/tespy/pull/459#issuecomment-1845846004) in [oemof/tespy](https://github.com/oemof/tespy) +8. 🗣 Commented on [#838](https://github.com/scilus/scilpy/pull/838#issuecomment-1845833465) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#878](https://github.com/ToFuProject/tofu/pull/878#issuecomment-1845779801) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#589](https://github.com/HEXRD/hexrd/pull/589#issuecomment-1845650985) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) From daf64b61343715c812f52c433c40c7f199c1a88b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 22:37:19 +0000 Subject: [PATCH 0844/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2646e1b6..5240e288 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1022](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1022#issuecomment-1846163817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -3. 🗣 Commented on [#840](https://github.com/scilus/scilpy/pull/840#issuecomment-1846018838) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#502](https://github.com/UIUCLibrary/Speedwagon/pull/502#issuecomment-1846007956) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -5. 🗣 Commented on [#839](https://github.com/scilus/scilpy/pull/839#issuecomment-1845980597) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#2893](https://github.com/astropy/astroquery/pull/2893#issuecomment-1845948033) in [astropy/astroquery](https://github.com/astropy/astroquery) -7. 🗣 Commented on [#459](https://github.com/oemof/tespy/pull/459#issuecomment-1845846004) in [oemof/tespy](https://github.com/oemof/tespy) -8. 🗣 Commented on [#838](https://github.com/scilus/scilpy/pull/838#issuecomment-1845833465) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#878](https://github.com/ToFuProject/tofu/pull/878#issuecomment-1845779801) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#589](https://github.com/HEXRD/hexrd/pull/589#issuecomment-1845650985) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +1. 🗣 Commented on [#483](https://github.com/HEPCloud/decisionengine_modules/pull/483#issuecomment-1846202737) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +2. 🗣 Commented on [#1022](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1022#issuecomment-1846163817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +4. 🗣 Commented on [#840](https://github.com/scilus/scilpy/pull/840#issuecomment-1846018838) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#502](https://github.com/UIUCLibrary/Speedwagon/pull/502#issuecomment-1846007956) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +6. 🗣 Commented on [#839](https://github.com/scilus/scilpy/pull/839#issuecomment-1845980597) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#2893](https://github.com/astropy/astroquery/pull/2893#issuecomment-1845948033) in [astropy/astroquery](https://github.com/astropy/astroquery) +8. 🗣 Commented on [#459](https://github.com/oemof/tespy/pull/459#issuecomment-1845846004) in [oemof/tespy](https://github.com/oemof/tespy) +9. 🗣 Commented on [#838](https://github.com/scilus/scilpy/pull/838#issuecomment-1845833465) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#878](https://github.com/ToFuProject/tofu/pull/878#issuecomment-1845779801) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From 64dc5b7ed5aea4c5261cc2ba7246abc119a2b096 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 23:37:21 +0000 Subject: [PATCH 0845/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5240e288..7b3b3068 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#483](https://github.com/HEPCloud/decisionengine_modules/pull/483#issuecomment-1846202737) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -2. 🗣 Commented on [#1022](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1022#issuecomment-1846163817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -4. 🗣 Commented on [#840](https://github.com/scilus/scilpy/pull/840#issuecomment-1846018838) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#502](https://github.com/UIUCLibrary/Speedwagon/pull/502#issuecomment-1846007956) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -6. 🗣 Commented on [#839](https://github.com/scilus/scilpy/pull/839#issuecomment-1845980597) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#2893](https://github.com/astropy/astroquery/pull/2893#issuecomment-1845948033) in [astropy/astroquery](https://github.com/astropy/astroquery) -8. 🗣 Commented on [#459](https://github.com/oemof/tespy/pull/459#issuecomment-1845846004) in [oemof/tespy](https://github.com/oemof/tespy) -9. 🗣 Commented on [#838](https://github.com/scilus/scilpy/pull/838#issuecomment-1845833465) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#878](https://github.com/ToFuProject/tofu/pull/878#issuecomment-1845779801) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#503](https://github.com/UIUCLibrary/Speedwagon/pull/503#issuecomment-1846262805) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +2. 🗣 Commented on [#483](https://github.com/HEPCloud/decisionengine_modules/pull/483#issuecomment-1846202737) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +3. 🗣 Commented on [#1022](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1022#issuecomment-1846163817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +5. 🗣 Commented on [#840](https://github.com/scilus/scilpy/pull/840#issuecomment-1846018838) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#502](https://github.com/UIUCLibrary/Speedwagon/pull/502#issuecomment-1846007956) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +7. 🗣 Commented on [#839](https://github.com/scilus/scilpy/pull/839#issuecomment-1845980597) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#2893](https://github.com/astropy/astroquery/pull/2893#issuecomment-1845948033) in [astropy/astroquery](https://github.com/astropy/astroquery) +9. 🗣 Commented on [#459](https://github.com/oemof/tespy/pull/459#issuecomment-1845846004) in [oemof/tespy](https://github.com/oemof/tespy) +10. 🗣 Commented on [#838](https://github.com/scilus/scilpy/pull/838#issuecomment-1845833465) in [scilus/scilpy](https://github.com/scilus/scilpy) From ed2253944d4706f2bb9b73ec60d0e978e41ea281 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 8 Dec 2023 02:42:05 +0000 Subject: [PATCH 0846/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7b3b3068..ecf13c60 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#503](https://github.com/UIUCLibrary/Speedwagon/pull/503#issuecomment-1846262805) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -2. 🗣 Commented on [#483](https://github.com/HEPCloud/decisionengine_modules/pull/483#issuecomment-1846202737) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -3. 🗣 Commented on [#1022](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1022#issuecomment-1846163817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -5. 🗣 Commented on [#840](https://github.com/scilus/scilpy/pull/840#issuecomment-1846018838) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#502](https://github.com/UIUCLibrary/Speedwagon/pull/502#issuecomment-1846007956) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -7. 🗣 Commented on [#839](https://github.com/scilus/scilpy/pull/839#issuecomment-1845980597) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#2893](https://github.com/astropy/astroquery/pull/2893#issuecomment-1845948033) in [astropy/astroquery](https://github.com/astropy/astroquery) -9. 🗣 Commented on [#459](https://github.com/oemof/tespy/pull/459#issuecomment-1845846004) in [oemof/tespy](https://github.com/oemof/tespy) -10. 🗣 Commented on [#838](https://github.com/scilus/scilpy/pull/838#issuecomment-1845833465) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#219](https://github.com/CartoonFan/lutris/pull/219#issuecomment-1846449057) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#503](https://github.com/UIUCLibrary/Speedwagon/pull/503#issuecomment-1846262805) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +3. 🗣 Commented on [#483](https://github.com/HEPCloud/decisionengine_modules/pull/483#issuecomment-1846202737) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +4. 🗣 Commented on [#1022](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1022#issuecomment-1846163817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +6. 🗣 Commented on [#840](https://github.com/scilus/scilpy/pull/840#issuecomment-1846018838) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#502](https://github.com/UIUCLibrary/Speedwagon/pull/502#issuecomment-1846007956) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +8. 🗣 Commented on [#839](https://github.com/scilus/scilpy/pull/839#issuecomment-1845980597) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#2893](https://github.com/astropy/astroquery/pull/2893#issuecomment-1845948033) in [astropy/astroquery](https://github.com/astropy/astroquery) +10. 🗣 Commented on [#459](https://github.com/oemof/tespy/pull/459#issuecomment-1845846004) in [oemof/tespy](https://github.com/oemof/tespy) From 35360918e2b9cc4cabbb9b7cf50b2996d2130211 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 8 Dec 2023 07:37:24 +0000 Subject: [PATCH 0847/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ecf13c60..7c387cde 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#219](https://github.com/CartoonFan/lutris/pull/219#issuecomment-1846449057) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#503](https://github.com/UIUCLibrary/Speedwagon/pull/503#issuecomment-1846262805) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -3. 🗣 Commented on [#483](https://github.com/HEPCloud/decisionengine_modules/pull/483#issuecomment-1846202737) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -4. 🗣 Commented on [#1022](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1022#issuecomment-1846163817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -6. 🗣 Commented on [#840](https://github.com/scilus/scilpy/pull/840#issuecomment-1846018838) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#502](https://github.com/UIUCLibrary/Speedwagon/pull/502#issuecomment-1846007956) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -8. 🗣 Commented on [#839](https://github.com/scilus/scilpy/pull/839#issuecomment-1845980597) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#2893](https://github.com/astropy/astroquery/pull/2893#issuecomment-1845948033) in [astropy/astroquery](https://github.com/astropy/astroquery) -10. 🗣 Commented on [#459](https://github.com/oemof/tespy/pull/459#issuecomment-1845846004) in [oemof/tespy](https://github.com/oemof/tespy) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/TaskWeaver/pull/1#issuecomment-1846682172) in [tuhinmallick/TaskWeaver](https://github.com/tuhinmallick/TaskWeaver) +2. 🗣 Commented on [#219](https://github.com/CartoonFan/lutris/pull/219#issuecomment-1846449057) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#503](https://github.com/UIUCLibrary/Speedwagon/pull/503#issuecomment-1846262805) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +4. 🗣 Commented on [#483](https://github.com/HEPCloud/decisionengine_modules/pull/483#issuecomment-1846202737) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +5. 🗣 Commented on [#1022](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1022#issuecomment-1846163817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +7. 🗣 Commented on [#840](https://github.com/scilus/scilpy/pull/840#issuecomment-1846018838) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#502](https://github.com/UIUCLibrary/Speedwagon/pull/502#issuecomment-1846007956) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +9. 🗣 Commented on [#839](https://github.com/scilus/scilpy/pull/839#issuecomment-1845980597) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#2893](https://github.com/astropy/astroquery/pull/2893#issuecomment-1845948033) in [astropy/astroquery](https://github.com/astropy/astroquery) From 8558ccceb20e6763d87911b1da3b6edef323d49f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 8 Dec 2023 11:37:05 +0000 Subject: [PATCH 0848/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7c387cde..4d0f3bbb 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/TaskWeaver/pull/1#issuecomment-1846682172) in [tuhinmallick/TaskWeaver](https://github.com/tuhinmallick/TaskWeaver) -2. 🗣 Commented on [#219](https://github.com/CartoonFan/lutris/pull/219#issuecomment-1846449057) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#503](https://github.com/UIUCLibrary/Speedwagon/pull/503#issuecomment-1846262805) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -4. 🗣 Commented on [#483](https://github.com/HEPCloud/decisionengine_modules/pull/483#issuecomment-1846202737) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -5. 🗣 Commented on [#1022](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1022#issuecomment-1846163817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -7. 🗣 Commented on [#840](https://github.com/scilus/scilpy/pull/840#issuecomment-1846018838) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#502](https://github.com/UIUCLibrary/Speedwagon/pull/502#issuecomment-1846007956) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -9. 🗣 Commented on [#839](https://github.com/scilus/scilpy/pull/839#issuecomment-1845980597) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#2893](https://github.com/astropy/astroquery/pull/2893#issuecomment-1845948033) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#880](https://github.com/ToFuProject/tofu/pull/880#issuecomment-1846998706) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/TaskWeaver/pull/1#issuecomment-1846682172) in [tuhinmallick/TaskWeaver](https://github.com/tuhinmallick/TaskWeaver) +3. 🗣 Commented on [#219](https://github.com/CartoonFan/lutris/pull/219#issuecomment-1846449057) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#503](https://github.com/UIUCLibrary/Speedwagon/pull/503#issuecomment-1846262805) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +5. 🗣 Commented on [#483](https://github.com/HEPCloud/decisionengine_modules/pull/483#issuecomment-1846202737) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +6. 🗣 Commented on [#1022](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1022#issuecomment-1846163817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +8. 🗣 Commented on [#840](https://github.com/scilus/scilpy/pull/840#issuecomment-1846018838) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#502](https://github.com/UIUCLibrary/Speedwagon/pull/502#issuecomment-1846007956) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +10. 🗣 Commented on [#839](https://github.com/scilus/scilpy/pull/839#issuecomment-1845980597) in [scilus/scilpy](https://github.com/scilus/scilpy) From e42cec0b4f6008d56fee34f2a9003408d72999a3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 8 Dec 2023 13:19:19 +0000 Subject: [PATCH 0849/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4d0f3bbb..cb26c2ed 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#880](https://github.com/ToFuProject/tofu/pull/880#issuecomment-1846998706) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/TaskWeaver/pull/1#issuecomment-1846682172) in [tuhinmallick/TaskWeaver](https://github.com/tuhinmallick/TaskWeaver) -3. 🗣 Commented on [#219](https://github.com/CartoonFan/lutris/pull/219#issuecomment-1846449057) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#503](https://github.com/UIUCLibrary/Speedwagon/pull/503#issuecomment-1846262805) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -5. 🗣 Commented on [#483](https://github.com/HEPCloud/decisionengine_modules/pull/483#issuecomment-1846202737) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -6. 🗣 Commented on [#1022](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1022#issuecomment-1846163817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -8. 🗣 Commented on [#840](https://github.com/scilus/scilpy/pull/840#issuecomment-1846018838) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#502](https://github.com/UIUCLibrary/Speedwagon/pull/502#issuecomment-1846007956) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -10. 🗣 Commented on [#839](https://github.com/scilus/scilpy/pull/839#issuecomment-1845980597) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#248](https://github.com/aimclub/GOLEM/pull/248#issuecomment-1847103173) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#880](https://github.com/ToFuProject/tofu/pull/880#issuecomment-1846998706) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/TaskWeaver/pull/1#issuecomment-1846682172) in [tuhinmallick/TaskWeaver](https://github.com/tuhinmallick/TaskWeaver) +4. 🗣 Commented on [#219](https://github.com/CartoonFan/lutris/pull/219#issuecomment-1846449057) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#503](https://github.com/UIUCLibrary/Speedwagon/pull/503#issuecomment-1846262805) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +6. 🗣 Commented on [#483](https://github.com/HEPCloud/decisionengine_modules/pull/483#issuecomment-1846202737) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +7. 🗣 Commented on [#1022](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1022#issuecomment-1846163817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +9. 🗣 Commented on [#840](https://github.com/scilus/scilpy/pull/840#issuecomment-1846018838) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#502](https://github.com/UIUCLibrary/Speedwagon/pull/502#issuecomment-1846007956) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) From 677c349884c79fde0a81294d074d070dc475f8e1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 8 Dec 2023 15:37:19 +0000 Subject: [PATCH 0850/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cb26c2ed..e38b8bf5 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#248](https://github.com/aimclub/GOLEM/pull/248#issuecomment-1847103173) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#880](https://github.com/ToFuProject/tofu/pull/880#issuecomment-1846998706) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/TaskWeaver/pull/1#issuecomment-1846682172) in [tuhinmallick/TaskWeaver](https://github.com/tuhinmallick/TaskWeaver) -4. 🗣 Commented on [#219](https://github.com/CartoonFan/lutris/pull/219#issuecomment-1846449057) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#503](https://github.com/UIUCLibrary/Speedwagon/pull/503#issuecomment-1846262805) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -6. 🗣 Commented on [#483](https://github.com/HEPCloud/decisionengine_modules/pull/483#issuecomment-1846202737) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -7. 🗣 Commented on [#1022](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1022#issuecomment-1846163817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -9. 🗣 Commented on [#840](https://github.com/scilus/scilpy/pull/840#issuecomment-1846018838) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#502](https://github.com/UIUCLibrary/Speedwagon/pull/502#issuecomment-1846007956) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +1. 🗣 Commented on [#6](https://github.com/eastgenomics/dx_job_monitor/pull/6#issuecomment-1847393143) in [eastgenomics/dx_job_monitor](https://github.com/eastgenomics/dx_job_monitor) +2. 🗣 Commented on [#248](https://github.com/aimclub/GOLEM/pull/248#issuecomment-1847103173) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#880](https://github.com/ToFuProject/tofu/pull/880#issuecomment-1846998706) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/TaskWeaver/pull/1#issuecomment-1846682172) in [tuhinmallick/TaskWeaver](https://github.com/tuhinmallick/TaskWeaver) +5. 🗣 Commented on [#219](https://github.com/CartoonFan/lutris/pull/219#issuecomment-1846449057) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#503](https://github.com/UIUCLibrary/Speedwagon/pull/503#issuecomment-1846262805) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +7. 🗣 Commented on [#483](https://github.com/HEPCloud/decisionengine_modules/pull/483#issuecomment-1846202737) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +8. 🗣 Commented on [#1022](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1022#issuecomment-1846163817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +10. 🗣 Commented on [#840](https://github.com/scilus/scilpy/pull/840#issuecomment-1846018838) in [scilus/scilpy](https://github.com/scilus/scilpy) From b2d033541f368dfd03cd1dda97c95a1659c87292 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 8 Dec 2023 16:41:14 +0000 Subject: [PATCH 0851/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e38b8bf5..34422ea0 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#6](https://github.com/eastgenomics/dx_job_monitor/pull/6#issuecomment-1847393143) in [eastgenomics/dx_job_monitor](https://github.com/eastgenomics/dx_job_monitor) -2. 🗣 Commented on [#248](https://github.com/aimclub/GOLEM/pull/248#issuecomment-1847103173) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#880](https://github.com/ToFuProject/tofu/pull/880#issuecomment-1846998706) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/TaskWeaver/pull/1#issuecomment-1846682172) in [tuhinmallick/TaskWeaver](https://github.com/tuhinmallick/TaskWeaver) -5. 🗣 Commented on [#219](https://github.com/CartoonFan/lutris/pull/219#issuecomment-1846449057) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#503](https://github.com/UIUCLibrary/Speedwagon/pull/503#issuecomment-1846262805) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -7. 🗣 Commented on [#483](https://github.com/HEPCloud/decisionengine_modules/pull/483#issuecomment-1846202737) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -8. 🗣 Commented on [#1022](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1022#issuecomment-1846163817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -10. 🗣 Commented on [#840](https://github.com/scilus/scilpy/pull/840#issuecomment-1846018838) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#782](https://github.com/StingraySoftware/stingray/pull/782#issuecomment-1847491831) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +2. 🗣 Commented on [#6](https://github.com/eastgenomics/dx_job_monitor/pull/6#issuecomment-1847393143) in [eastgenomics/dx_job_monitor](https://github.com/eastgenomics/dx_job_monitor) +3. 🗣 Commented on [#248](https://github.com/aimclub/GOLEM/pull/248#issuecomment-1847103173) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +4. 🗣 Commented on [#880](https://github.com/ToFuProject/tofu/pull/880#issuecomment-1846998706) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/TaskWeaver/pull/1#issuecomment-1846682172) in [tuhinmallick/TaskWeaver](https://github.com/tuhinmallick/TaskWeaver) +6. 🗣 Commented on [#219](https://github.com/CartoonFan/lutris/pull/219#issuecomment-1846449057) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#503](https://github.com/UIUCLibrary/Speedwagon/pull/503#issuecomment-1846262805) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +8. 🗣 Commented on [#483](https://github.com/HEPCloud/decisionengine_modules/pull/483#issuecomment-1846202737) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +9. 🗣 Commented on [#1022](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1022#issuecomment-1846163817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) From 6749cd9cd0dc897902480584af93276e3725793c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 8 Dec 2023 20:17:32 +0000 Subject: [PATCH 0852/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 34422ea0..837944cd 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#782](https://github.com/StingraySoftware/stingray/pull/782#issuecomment-1847491831) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -2. 🗣 Commented on [#6](https://github.com/eastgenomics/dx_job_monitor/pull/6#issuecomment-1847393143) in [eastgenomics/dx_job_monitor](https://github.com/eastgenomics/dx_job_monitor) -3. 🗣 Commented on [#248](https://github.com/aimclub/GOLEM/pull/248#issuecomment-1847103173) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -4. 🗣 Commented on [#880](https://github.com/ToFuProject/tofu/pull/880#issuecomment-1846998706) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/TaskWeaver/pull/1#issuecomment-1846682172) in [tuhinmallick/TaskWeaver](https://github.com/tuhinmallick/TaskWeaver) -6. 🗣 Commented on [#219](https://github.com/CartoonFan/lutris/pull/219#issuecomment-1846449057) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#503](https://github.com/UIUCLibrary/Speedwagon/pull/503#issuecomment-1846262805) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -8. 🗣 Commented on [#483](https://github.com/HEPCloud/decisionengine_modules/pull/483#issuecomment-1846202737) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -9. 🗣 Commented on [#1022](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1022#issuecomment-1846163817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#781](https://github.com/StingraySoftware/stingray/pull/781#issuecomment-1846033717) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-Factory/pull/1#issuecomment-1847785339) in [tuhinmallick/LLaMA-Factory](https://github.com/tuhinmallick/LLaMA-Factory) +2. 🗣 Commented on [#2665](https://github.com/metabrainz/listenbrainz-server/pull/2665#issuecomment-1847767630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#782](https://github.com/StingraySoftware/stingray/pull/782#issuecomment-1847491831) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +4. 🗣 Commented on [#6](https://github.com/eastgenomics/dx_job_monitor/pull/6#issuecomment-1847393143) in [eastgenomics/dx_job_monitor](https://github.com/eastgenomics/dx_job_monitor) +5. 🗣 Commented on [#248](https://github.com/aimclub/GOLEM/pull/248#issuecomment-1847103173) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#880](https://github.com/ToFuProject/tofu/pull/880#issuecomment-1846998706) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/TaskWeaver/pull/1#issuecomment-1846682172) in [tuhinmallick/TaskWeaver](https://github.com/tuhinmallick/TaskWeaver) +8. 🗣 Commented on [#219](https://github.com/CartoonFan/lutris/pull/219#issuecomment-1846449057) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#503](https://github.com/UIUCLibrary/Speedwagon/pull/503#issuecomment-1846262805) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +10. 🗣 Commented on [#483](https://github.com/HEPCloud/decisionengine_modules/pull/483#issuecomment-1846202737) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) From d12692082f907b065ede95cd0db344c64de79a97 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 8 Dec 2023 21:14:17 +0000 Subject: [PATCH 0853/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 837944cd..97fc0f49 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-Factory/pull/1#issuecomment-1847785339) in [tuhinmallick/LLaMA-Factory](https://github.com/tuhinmallick/LLaMA-Factory) -2. 🗣 Commented on [#2665](https://github.com/metabrainz/listenbrainz-server/pull/2665#issuecomment-1847767630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#782](https://github.com/StingraySoftware/stingray/pull/782#issuecomment-1847491831) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -4. 🗣 Commented on [#6](https://github.com/eastgenomics/dx_job_monitor/pull/6#issuecomment-1847393143) in [eastgenomics/dx_job_monitor](https://github.com/eastgenomics/dx_job_monitor) -5. 🗣 Commented on [#248](https://github.com/aimclub/GOLEM/pull/248#issuecomment-1847103173) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#880](https://github.com/ToFuProject/tofu/pull/880#issuecomment-1846998706) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/TaskWeaver/pull/1#issuecomment-1846682172) in [tuhinmallick/TaskWeaver](https://github.com/tuhinmallick/TaskWeaver) -8. 🗣 Commented on [#219](https://github.com/CartoonFan/lutris/pull/219#issuecomment-1846449057) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#503](https://github.com/UIUCLibrary/Speedwagon/pull/503#issuecomment-1846262805) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -10. 🗣 Commented on [#483](https://github.com/HEPCloud/decisionengine_modules/pull/483#issuecomment-1846202737) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +1. 🗣 Commented on [#842](https://github.com/scilus/scilpy/pull/842#issuecomment-1847842850) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-Factory/pull/1#issuecomment-1847785339) in [tuhinmallick/LLaMA-Factory](https://github.com/tuhinmallick/LLaMA-Factory) +3. 🗣 Commented on [#2665](https://github.com/metabrainz/listenbrainz-server/pull/2665#issuecomment-1847767630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#782](https://github.com/StingraySoftware/stingray/pull/782#issuecomment-1847491831) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +5. 🗣 Commented on [#6](https://github.com/eastgenomics/dx_job_monitor/pull/6#issuecomment-1847393143) in [eastgenomics/dx_job_monitor](https://github.com/eastgenomics/dx_job_monitor) +6. 🗣 Commented on [#248](https://github.com/aimclub/GOLEM/pull/248#issuecomment-1847103173) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#880](https://github.com/ToFuProject/tofu/pull/880#issuecomment-1846998706) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/TaskWeaver/pull/1#issuecomment-1846682172) in [tuhinmallick/TaskWeaver](https://github.com/tuhinmallick/TaskWeaver) +9. 🗣 Commented on [#219](https://github.com/CartoonFan/lutris/pull/219#issuecomment-1846449057) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#503](https://github.com/UIUCLibrary/Speedwagon/pull/503#issuecomment-1846262805) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) From e6e26cc3a1dfc4b631ab42cc0ef72bc16d263d30 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 8 Dec 2023 21:37:15 +0000 Subject: [PATCH 0854/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 97fc0f49..c534019f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#842](https://github.com/scilus/scilpy/pull/842#issuecomment-1847842850) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-Factory/pull/1#issuecomment-1847785339) in [tuhinmallick/LLaMA-Factory](https://github.com/tuhinmallick/LLaMA-Factory) -3. 🗣 Commented on [#2665](https://github.com/metabrainz/listenbrainz-server/pull/2665#issuecomment-1847767630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#782](https://github.com/StingraySoftware/stingray/pull/782#issuecomment-1847491831) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -5. 🗣 Commented on [#6](https://github.com/eastgenomics/dx_job_monitor/pull/6#issuecomment-1847393143) in [eastgenomics/dx_job_monitor](https://github.com/eastgenomics/dx_job_monitor) -6. 🗣 Commented on [#248](https://github.com/aimclub/GOLEM/pull/248#issuecomment-1847103173) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#880](https://github.com/ToFuProject/tofu/pull/880#issuecomment-1846998706) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/TaskWeaver/pull/1#issuecomment-1846682172) in [tuhinmallick/TaskWeaver](https://github.com/tuhinmallick/TaskWeaver) -9. 🗣 Commented on [#219](https://github.com/CartoonFan/lutris/pull/219#issuecomment-1846449057) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#503](https://github.com/UIUCLibrary/Speedwagon/pull/503#issuecomment-1846262805) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +1. 🗣 Commented on [#1069](https://github.com/yeatmanlab/pyAFQ/pull/1069#issuecomment-1847861206) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +2. 🗣 Commented on [#842](https://github.com/scilus/scilpy/pull/842#issuecomment-1847842850) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-Factory/pull/1#issuecomment-1847785339) in [tuhinmallick/LLaMA-Factory](https://github.com/tuhinmallick/LLaMA-Factory) +4. 🗣 Commented on [#2665](https://github.com/metabrainz/listenbrainz-server/pull/2665#issuecomment-1847767630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#782](https://github.com/StingraySoftware/stingray/pull/782#issuecomment-1847491831) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +6. 🗣 Commented on [#6](https://github.com/eastgenomics/dx_job_monitor/pull/6#issuecomment-1847393143) in [eastgenomics/dx_job_monitor](https://github.com/eastgenomics/dx_job_monitor) +7. 🗣 Commented on [#248](https://github.com/aimclub/GOLEM/pull/248#issuecomment-1847103173) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +8. 🗣 Commented on [#880](https://github.com/ToFuProject/tofu/pull/880#issuecomment-1846998706) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/TaskWeaver/pull/1#issuecomment-1846682172) in [tuhinmallick/TaskWeaver](https://github.com/tuhinmallick/TaskWeaver) +10. 🗣 Commented on [#219](https://github.com/CartoonFan/lutris/pull/219#issuecomment-1846449057) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 055242c728e74294b0faf1ef2a761b94d0feae64 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 8 Dec 2023 22:37:13 +0000 Subject: [PATCH 0855/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c534019f..5ec32518 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1069](https://github.com/yeatmanlab/pyAFQ/pull/1069#issuecomment-1847861206) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -2. 🗣 Commented on [#842](https://github.com/scilus/scilpy/pull/842#issuecomment-1847842850) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-Factory/pull/1#issuecomment-1847785339) in [tuhinmallick/LLaMA-Factory](https://github.com/tuhinmallick/LLaMA-Factory) -4. 🗣 Commented on [#2665](https://github.com/metabrainz/listenbrainz-server/pull/2665#issuecomment-1847767630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#782](https://github.com/StingraySoftware/stingray/pull/782#issuecomment-1847491831) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -6. 🗣 Commented on [#6](https://github.com/eastgenomics/dx_job_monitor/pull/6#issuecomment-1847393143) in [eastgenomics/dx_job_monitor](https://github.com/eastgenomics/dx_job_monitor) -7. 🗣 Commented on [#248](https://github.com/aimclub/GOLEM/pull/248#issuecomment-1847103173) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -8. 🗣 Commented on [#880](https://github.com/ToFuProject/tofu/pull/880#issuecomment-1846998706) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/TaskWeaver/pull/1#issuecomment-1846682172) in [tuhinmallick/TaskWeaver](https://github.com/tuhinmallick/TaskWeaver) -10. 🗣 Commented on [#219](https://github.com/CartoonFan/lutris/pull/219#issuecomment-1846449057) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#293](https://github.com/AdvancedPhotonSource/tike/pull/293#issuecomment-1847916700) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +2. 🗣 Commented on [#1069](https://github.com/yeatmanlab/pyAFQ/pull/1069#issuecomment-1847861206) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +3. 🗣 Commented on [#842](https://github.com/scilus/scilpy/pull/842#issuecomment-1847842850) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-Factory/pull/1#issuecomment-1847785339) in [tuhinmallick/LLaMA-Factory](https://github.com/tuhinmallick/LLaMA-Factory) +5. 🗣 Commented on [#2665](https://github.com/metabrainz/listenbrainz-server/pull/2665#issuecomment-1847767630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#782](https://github.com/StingraySoftware/stingray/pull/782#issuecomment-1847491831) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +7. 🗣 Commented on [#6](https://github.com/eastgenomics/dx_job_monitor/pull/6#issuecomment-1847393143) in [eastgenomics/dx_job_monitor](https://github.com/eastgenomics/dx_job_monitor) +8. 🗣 Commented on [#248](https://github.com/aimclub/GOLEM/pull/248#issuecomment-1847103173) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#880](https://github.com/ToFuProject/tofu/pull/880#issuecomment-1846998706) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/TaskWeaver/pull/1#issuecomment-1846682172) in [tuhinmallick/TaskWeaver](https://github.com/tuhinmallick/TaskWeaver) From 0f7cbe7480c46009f5f271447cdb99586f2cbb9e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Dec 2023 09:14:26 +0000 Subject: [PATCH 0856/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5ec32518..752beca3 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#293](https://github.com/AdvancedPhotonSource/tike/pull/293#issuecomment-1847916700) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -2. 🗣 Commented on [#1069](https://github.com/yeatmanlab/pyAFQ/pull/1069#issuecomment-1847861206) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -3. 🗣 Commented on [#842](https://github.com/scilus/scilpy/pull/842#issuecomment-1847842850) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-Factory/pull/1#issuecomment-1847785339) in [tuhinmallick/LLaMA-Factory](https://github.com/tuhinmallick/LLaMA-Factory) -5. 🗣 Commented on [#2665](https://github.com/metabrainz/listenbrainz-server/pull/2665#issuecomment-1847767630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#782](https://github.com/StingraySoftware/stingray/pull/782#issuecomment-1847491831) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -7. 🗣 Commented on [#6](https://github.com/eastgenomics/dx_job_monitor/pull/6#issuecomment-1847393143) in [eastgenomics/dx_job_monitor](https://github.com/eastgenomics/dx_job_monitor) -8. 🗣 Commented on [#248](https://github.com/aimclub/GOLEM/pull/248#issuecomment-1847103173) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#880](https://github.com/ToFuProject/tofu/pull/880#issuecomment-1846998706) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/TaskWeaver/pull/1#issuecomment-1846682172) in [tuhinmallick/TaskWeaver](https://github.com/tuhinmallick/TaskWeaver) +1. 🗣 Commented on [#250](https://github.com/aimclub/GOLEM/pull/250#issuecomment-1848337131) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#293](https://github.com/AdvancedPhotonSource/tike/pull/293#issuecomment-1847916700) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +3. 🗣 Commented on [#1069](https://github.com/yeatmanlab/pyAFQ/pull/1069#issuecomment-1847861206) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +4. 🗣 Commented on [#842](https://github.com/scilus/scilpy/pull/842#issuecomment-1847842850) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-Factory/pull/1#issuecomment-1847785339) in [tuhinmallick/LLaMA-Factory](https://github.com/tuhinmallick/LLaMA-Factory) +6. 🗣 Commented on [#2665](https://github.com/metabrainz/listenbrainz-server/pull/2665#issuecomment-1847767630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#782](https://github.com/StingraySoftware/stingray/pull/782#issuecomment-1847491831) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +8. 🗣 Commented on [#6](https://github.com/eastgenomics/dx_job_monitor/pull/6#issuecomment-1847393143) in [eastgenomics/dx_job_monitor](https://github.com/eastgenomics/dx_job_monitor) +9. 🗣 Commented on [#248](https://github.com/aimclub/GOLEM/pull/248#issuecomment-1847103173) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#880](https://github.com/ToFuProject/tofu/pull/880#issuecomment-1846998706) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From cfeea0f05756ac18a175e1741d9ff5a6eda01163 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Dec 2023 09:37:32 +0000 Subject: [PATCH 0857/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 752beca3..db898aba 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#250](https://github.com/aimclub/GOLEM/pull/250#issuecomment-1848337131) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#293](https://github.com/AdvancedPhotonSource/tike/pull/293#issuecomment-1847916700) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -3. 🗣 Commented on [#1069](https://github.com/yeatmanlab/pyAFQ/pull/1069#issuecomment-1847861206) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -4. 🗣 Commented on [#842](https://github.com/scilus/scilpy/pull/842#issuecomment-1847842850) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-Factory/pull/1#issuecomment-1847785339) in [tuhinmallick/LLaMA-Factory](https://github.com/tuhinmallick/LLaMA-Factory) -6. 🗣 Commented on [#2665](https://github.com/metabrainz/listenbrainz-server/pull/2665#issuecomment-1847767630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#782](https://github.com/StingraySoftware/stingray/pull/782#issuecomment-1847491831) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -8. 🗣 Commented on [#6](https://github.com/eastgenomics/dx_job_monitor/pull/6#issuecomment-1847393143) in [eastgenomics/dx_job_monitor](https://github.com/eastgenomics/dx_job_monitor) -9. 🗣 Commented on [#248](https://github.com/aimclub/GOLEM/pull/248#issuecomment-1847103173) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#880](https://github.com/ToFuProject/tofu/pull/880#issuecomment-1846998706) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-MagicAnimate/pull/1#issuecomment-1848340986) in [tuhinmallick/ComfyUI-MagicAnimate](https://github.com/tuhinmallick/ComfyUI-MagicAnimate) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/mamba-chat/pull/1#issuecomment-1848339432) in [tuhinmallick/mamba-chat](https://github.com/tuhinmallick/mamba-chat) +3. 🗣 Commented on [#250](https://github.com/aimclub/GOLEM/pull/250#issuecomment-1848337131) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +4. 🗣 Commented on [#293](https://github.com/AdvancedPhotonSource/tike/pull/293#issuecomment-1847916700) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +5. 🗣 Commented on [#1069](https://github.com/yeatmanlab/pyAFQ/pull/1069#issuecomment-1847861206) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +6. 🗣 Commented on [#842](https://github.com/scilus/scilpy/pull/842#issuecomment-1847842850) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-Factory/pull/1#issuecomment-1847785339) in [tuhinmallick/LLaMA-Factory](https://github.com/tuhinmallick/LLaMA-Factory) +8. 🗣 Commented on [#2665](https://github.com/metabrainz/listenbrainz-server/pull/2665#issuecomment-1847767630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#782](https://github.com/StingraySoftware/stingray/pull/782#issuecomment-1847491831) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +10. 🗣 Commented on [#6](https://github.com/eastgenomics/dx_job_monitor/pull/6#issuecomment-1847393143) in [eastgenomics/dx_job_monitor](https://github.com/eastgenomics/dx_job_monitor) From ae28d59a6078dd6c2a17fa155582812ec4aa39d3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Dec 2023 14:37:13 +0000 Subject: [PATCH 0858/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index db898aba..7d34e337 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-MagicAnimate/pull/1#issuecomment-1848340986) in [tuhinmallick/ComfyUI-MagicAnimate](https://github.com/tuhinmallick/ComfyUI-MagicAnimate) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/mamba-chat/pull/1#issuecomment-1848339432) in [tuhinmallick/mamba-chat](https://github.com/tuhinmallick/mamba-chat) -3. 🗣 Commented on [#250](https://github.com/aimclub/GOLEM/pull/250#issuecomment-1848337131) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -4. 🗣 Commented on [#293](https://github.com/AdvancedPhotonSource/tike/pull/293#issuecomment-1847916700) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -5. 🗣 Commented on [#1069](https://github.com/yeatmanlab/pyAFQ/pull/1069#issuecomment-1847861206) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -6. 🗣 Commented on [#842](https://github.com/scilus/scilpy/pull/842#issuecomment-1847842850) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-Factory/pull/1#issuecomment-1847785339) in [tuhinmallick/LLaMA-Factory](https://github.com/tuhinmallick/LLaMA-Factory) -8. 🗣 Commented on [#2665](https://github.com/metabrainz/listenbrainz-server/pull/2665#issuecomment-1847767630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#782](https://github.com/StingraySoftware/stingray/pull/782#issuecomment-1847491831) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -10. 🗣 Commented on [#6](https://github.com/eastgenomics/dx_job_monitor/pull/6#issuecomment-1847393143) in [eastgenomics/dx_job_monitor](https://github.com/eastgenomics/dx_job_monitor) +1. 🗣 Commented on [#220](https://github.com/CartoonFan/lutris/pull/220#issuecomment-1848424050) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-MagicAnimate/pull/1#issuecomment-1848340986) in [tuhinmallick/ComfyUI-MagicAnimate](https://github.com/tuhinmallick/ComfyUI-MagicAnimate) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/mamba-chat/pull/1#issuecomment-1848339432) in [tuhinmallick/mamba-chat](https://github.com/tuhinmallick/mamba-chat) +4. 🗣 Commented on [#250](https://github.com/aimclub/GOLEM/pull/250#issuecomment-1848337131) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#293](https://github.com/AdvancedPhotonSource/tike/pull/293#issuecomment-1847916700) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +6. 🗣 Commented on [#1069](https://github.com/yeatmanlab/pyAFQ/pull/1069#issuecomment-1847861206) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +7. 🗣 Commented on [#842](https://github.com/scilus/scilpy/pull/842#issuecomment-1847842850) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-Factory/pull/1#issuecomment-1847785339) in [tuhinmallick/LLaMA-Factory](https://github.com/tuhinmallick/LLaMA-Factory) +9. 🗣 Commented on [#2665](https://github.com/metabrainz/listenbrainz-server/pull/2665#issuecomment-1847767630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#782](https://github.com/StingraySoftware/stingray/pull/782#issuecomment-1847491831) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) From 476eccc6688aef196ec37f9e8ea8ef48769e50b7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Dec 2023 19:12:05 +0000 Subject: [PATCH 0859/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7d34e337..06045a53 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#220](https://github.com/CartoonFan/lutris/pull/220#issuecomment-1848424050) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-MagicAnimate/pull/1#issuecomment-1848340986) in [tuhinmallick/ComfyUI-MagicAnimate](https://github.com/tuhinmallick/ComfyUI-MagicAnimate) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/mamba-chat/pull/1#issuecomment-1848339432) in [tuhinmallick/mamba-chat](https://github.com/tuhinmallick/mamba-chat) -4. 🗣 Commented on [#250](https://github.com/aimclub/GOLEM/pull/250#issuecomment-1848337131) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#293](https://github.com/AdvancedPhotonSource/tike/pull/293#issuecomment-1847916700) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -6. 🗣 Commented on [#1069](https://github.com/yeatmanlab/pyAFQ/pull/1069#issuecomment-1847861206) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -7. 🗣 Commented on [#842](https://github.com/scilus/scilpy/pull/842#issuecomment-1847842850) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-Factory/pull/1#issuecomment-1847785339) in [tuhinmallick/LLaMA-Factory](https://github.com/tuhinmallick/LLaMA-Factory) -9. 🗣 Commented on [#2665](https://github.com/metabrainz/listenbrainz-server/pull/2665#issuecomment-1847767630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#782](https://github.com/StingraySoftware/stingray/pull/782#issuecomment-1847491831) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +1. 🗣 Commented on [#2996](https://github.com/dipy/dipy/pull/2996#issuecomment-1848615408) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#220](https://github.com/CartoonFan/lutris/pull/220#issuecomment-1848424050) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-MagicAnimate/pull/1#issuecomment-1848340986) in [tuhinmallick/ComfyUI-MagicAnimate](https://github.com/tuhinmallick/ComfyUI-MagicAnimate) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/mamba-chat/pull/1#issuecomment-1848339432) in [tuhinmallick/mamba-chat](https://github.com/tuhinmallick/mamba-chat) +5. 🗣 Commented on [#250](https://github.com/aimclub/GOLEM/pull/250#issuecomment-1848337131) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#293](https://github.com/AdvancedPhotonSource/tike/pull/293#issuecomment-1847916700) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +7. 🗣 Commented on [#1069](https://github.com/yeatmanlab/pyAFQ/pull/1069#issuecomment-1847861206) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +8. 🗣 Commented on [#842](https://github.com/scilus/scilpy/pull/842#issuecomment-1847842850) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-Factory/pull/1#issuecomment-1847785339) in [tuhinmallick/LLaMA-Factory](https://github.com/tuhinmallick/LLaMA-Factory) +10. 🗣 Commented on [#2665](https://github.com/metabrainz/listenbrainz-server/pull/2665#issuecomment-1847767630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From e0651aaa1b8e4e6f349d015270fec8907c0def80 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Dec 2023 20:37:10 +0000 Subject: [PATCH 0860/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 06045a53..0a66a91e 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#2996](https://github.com/dipy/dipy/pull/2996#issuecomment-1848615408) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#220](https://github.com/CartoonFan/lutris/pull/220#issuecomment-1848424050) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-MagicAnimate/pull/1#issuecomment-1848340986) in [tuhinmallick/ComfyUI-MagicAnimate](https://github.com/tuhinmallick/ComfyUI-MagicAnimate) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/mamba-chat/pull/1#issuecomment-1848339432) in [tuhinmallick/mamba-chat](https://github.com/tuhinmallick/mamba-chat) -5. 🗣 Commented on [#250](https://github.com/aimclub/GOLEM/pull/250#issuecomment-1848337131) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#293](https://github.com/AdvancedPhotonSource/tike/pull/293#issuecomment-1847916700) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -7. 🗣 Commented on [#1069](https://github.com/yeatmanlab/pyAFQ/pull/1069#issuecomment-1847861206) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -8. 🗣 Commented on [#842](https://github.com/scilus/scilpy/pull/842#issuecomment-1847842850) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/LLaMA-Factory/pull/1#issuecomment-1847785339) in [tuhinmallick/LLaMA-Factory](https://github.com/tuhinmallick/LLaMA-Factory) -10. 🗣 Commented on [#2665](https://github.com/metabrainz/listenbrainz-server/pull/2665#issuecomment-1847767630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675460) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +2. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675128) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +3. 🗣 Commented on [#2996](https://github.com/dipy/dipy/pull/2996#issuecomment-1848615408) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#220](https://github.com/CartoonFan/lutris/pull/220#issuecomment-1848424050) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-MagicAnimate/pull/1#issuecomment-1848340986) in [tuhinmallick/ComfyUI-MagicAnimate](https://github.com/tuhinmallick/ComfyUI-MagicAnimate) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/mamba-chat/pull/1#issuecomment-1848339432) in [tuhinmallick/mamba-chat](https://github.com/tuhinmallick/mamba-chat) +7. 🗣 Commented on [#250](https://github.com/aimclub/GOLEM/pull/250#issuecomment-1848337131) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +8. 🗣 Commented on [#293](https://github.com/AdvancedPhotonSource/tike/pull/293#issuecomment-1847916700) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +9. 🗣 Commented on [#1069](https://github.com/yeatmanlab/pyAFQ/pull/1069#issuecomment-1847861206) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +10. 🗣 Commented on [#842](https://github.com/scilus/scilpy/pull/842#issuecomment-1847842850) in [scilus/scilpy](https://github.com/scilus/scilpy) From d424553f134a262b50361104a4dbe5a5436e1584 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Dec 2023 21:37:22 +0000 Subject: [PATCH 0861/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0a66a91e..cca0860f 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675460) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -2. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675128) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -3. 🗣 Commented on [#2996](https://github.com/dipy/dipy/pull/2996#issuecomment-1848615408) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#220](https://github.com/CartoonFan/lutris/pull/220#issuecomment-1848424050) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-MagicAnimate/pull/1#issuecomment-1848340986) in [tuhinmallick/ComfyUI-MagicAnimate](https://github.com/tuhinmallick/ComfyUI-MagicAnimate) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/mamba-chat/pull/1#issuecomment-1848339432) in [tuhinmallick/mamba-chat](https://github.com/tuhinmallick/mamba-chat) -7. 🗣 Commented on [#250](https://github.com/aimclub/GOLEM/pull/250#issuecomment-1848337131) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -8. 🗣 Commented on [#293](https://github.com/AdvancedPhotonSource/tike/pull/293#issuecomment-1847916700) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -9. 🗣 Commented on [#1069](https://github.com/yeatmanlab/pyAFQ/pull/1069#issuecomment-1847861206) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -10. 🗣 Commented on [#842](https://github.com/scilus/scilpy/pull/842#issuecomment-1847842850) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848686037) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +2. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675460) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +3. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675128) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +4. 🗣 Commented on [#2996](https://github.com/dipy/dipy/pull/2996#issuecomment-1848615408) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#220](https://github.com/CartoonFan/lutris/pull/220#issuecomment-1848424050) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-MagicAnimate/pull/1#issuecomment-1848340986) in [tuhinmallick/ComfyUI-MagicAnimate](https://github.com/tuhinmallick/ComfyUI-MagicAnimate) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/mamba-chat/pull/1#issuecomment-1848339432) in [tuhinmallick/mamba-chat](https://github.com/tuhinmallick/mamba-chat) +8. 🗣 Commented on [#250](https://github.com/aimclub/GOLEM/pull/250#issuecomment-1848337131) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#293](https://github.com/AdvancedPhotonSource/tike/pull/293#issuecomment-1847916700) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +10. 🗣 Commented on [#1069](https://github.com/yeatmanlab/pyAFQ/pull/1069#issuecomment-1847861206) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) From dcd077d8294124cac3ef89290e477bf408433fae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Dec 2023 22:14:20 +0000 Subject: [PATCH 0862/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cca0860f..5668e877 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848686037) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -2. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675460) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -3. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675128) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -4. 🗣 Commented on [#2996](https://github.com/dipy/dipy/pull/2996#issuecomment-1848615408) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#220](https://github.com/CartoonFan/lutris/pull/220#issuecomment-1848424050) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-MagicAnimate/pull/1#issuecomment-1848340986) in [tuhinmallick/ComfyUI-MagicAnimate](https://github.com/tuhinmallick/ComfyUI-MagicAnimate) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/mamba-chat/pull/1#issuecomment-1848339432) in [tuhinmallick/mamba-chat](https://github.com/tuhinmallick/mamba-chat) -8. 🗣 Commented on [#250](https://github.com/aimclub/GOLEM/pull/250#issuecomment-1848337131) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#293](https://github.com/AdvancedPhotonSource/tike/pull/293#issuecomment-1847916700) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -10. 🗣 Commented on [#1069](https://github.com/yeatmanlab/pyAFQ/pull/1069#issuecomment-1847861206) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +1. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +2. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848686037) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +3. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675460) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +4. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675128) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +5. 🗣 Commented on [#2996](https://github.com/dipy/dipy/pull/2996#issuecomment-1848615408) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#220](https://github.com/CartoonFan/lutris/pull/220#issuecomment-1848424050) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-MagicAnimate/pull/1#issuecomment-1848340986) in [tuhinmallick/ComfyUI-MagicAnimate](https://github.com/tuhinmallick/ComfyUI-MagicAnimate) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/mamba-chat/pull/1#issuecomment-1848339432) in [tuhinmallick/mamba-chat](https://github.com/tuhinmallick/mamba-chat) +9. 🗣 Commented on [#250](https://github.com/aimclub/GOLEM/pull/250#issuecomment-1848337131) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#293](https://github.com/AdvancedPhotonSource/tike/pull/293#issuecomment-1847916700) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) From db0f4241bf66276d2adfb5de14ba1e1fdffe079c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Dec 2023 22:37:03 +0000 Subject: [PATCH 0863/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5668e877..390b69a4 100644 --- a/README.md +++ b/README.md @@ -233,14 +233,14 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity -1. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -2. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848686037) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -3. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675460) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -4. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675128) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -5. 🗣 Commented on [#2996](https://github.com/dipy/dipy/pull/2996#issuecomment-1848615408) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#220](https://github.com/CartoonFan/lutris/pull/220#issuecomment-1848424050) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-MagicAnimate/pull/1#issuecomment-1848340986) in [tuhinmallick/ComfyUI-MagicAnimate](https://github.com/tuhinmallick/ComfyUI-MagicAnimate) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/mamba-chat/pull/1#issuecomment-1848339432) in [tuhinmallick/mamba-chat](https://github.com/tuhinmallick/mamba-chat) -9. 🗣 Commented on [#250](https://github.com/aimclub/GOLEM/pull/250#issuecomment-1848337131) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#293](https://github.com/AdvancedPhotonSource/tike/pull/293#issuecomment-1847916700) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +1. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +2. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +3. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +4. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848686037) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +5. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675460) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +6. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675128) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +7. 🗣 Commented on [#2996](https://github.com/dipy/dipy/pull/2996#issuecomment-1848615408) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#220](https://github.com/CartoonFan/lutris/pull/220#issuecomment-1848424050) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-MagicAnimate/pull/1#issuecomment-1848340986) in [tuhinmallick/ComfyUI-MagicAnimate](https://github.com/tuhinmallick/ComfyUI-MagicAnimate) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/mamba-chat/pull/1#issuecomment-1848339432) in [tuhinmallick/mamba-chat](https://github.com/tuhinmallick/mamba-chat) From 05e5ec944e48f1aa1d75054ec0db187e58e657f5 Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Sun, 10 Dec 2023 04:22:29 +0530 Subject: [PATCH 0864/2173] feat: Added status_page in README.md --- README.md | 135 ++++++++++++++++++++++++++++-------------------------- 1 file changed, 69 insertions(+), 66 deletions(-) diff --git a/README.md b/README.md index 390b69a4..b74e7712 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # PEP 8 Speaks -![GitHub release](https://img.shields.io/github/release/OrkoHunter/pep8speaks.svg) ![GitHub contributors](https://img.shields.io/github/contributors/OrkoHunter/pep8speaks.svg) + +![GitHub release](https://img.shields.io/github/release/OrkoHunter/pep8speaks.svg) ![GitHub contributors](https://img.shields.io/github/contributors/OrkoHunter/pep8speaks.svg) A GitHub :octocat: app to automatically review Python code style over Pull Requests @@ -7,32 +8,30 @@ A GitHub :octocat: app to automatically review Python code style over Pull Reque

      -Table of Contents -================= - - * [Installation](#installation) - * [Example](#example) - * [Main features](#main-features) - * [Configuration](#configuration) - * [Popular Users](#popular-users) - * [Miscellaneous features](#miscellaneous-features) - * [Private repos](#private-repos) - * [How to fix PEP 8 issues?](#how-to-fix-pep-8-issues) - * [Release announcements](#release-announcements) - * [Contributing](#contributing) - * [Updates](#updates) +# Table of Contents + +- [Installation](#installation) +- [Example](#example) +- [Main features](#main-features) +- [Configuration](#configuration) +- [Popular Users](#popular-users) +- [Miscellaneous features](#miscellaneous-features) +- [Private repos](#private-repos) +- [How to fix PEP 8 issues?](#how-to-fix-pep-8-issues) +- [Release announcements](#release-announcements) +- [Contributing](#contributing) +- [Updates](#updates) # Installation - - Go to the homepage of the app - https://github.com/apps/pep8-speaks - - Click on the Configure button - - Add repositories or organizations to activate PEP 8 Speaks +- Go to the homepage of the app - https://github.com/apps/pep8-speaks +- Click on the Configure button +- Add repositories or organizations to activate PEP 8 Speaks # Example - # Main features - The bot makes **a single comment on the Pull Request and keeps updating it** on new commits. No hustle on emails ! @@ -42,40 +41,44 @@ Table of Contents - The bot can read your `setup.cfg` for `[flake8]` and `[pycodestyle]` sections. Check out the `Configuration` section below. # Configuration + **A config file is not required for the integration to work**. However it can be configured additionally by adding a `.pep8speaks.yml` file in the root of the project. Here is an example : ```yaml # File : .pep8speaks.yml scanner: - diff_only: True # If False, the entire file touched by the Pull Request is scanned for errors. If True, only the diff is scanned. - linter: pycodestyle # Other option is flake8 - -pycodestyle: # Same as scanner.linter value. Other option is flake8 - max-line-length: 100 # Default is 79 in PEP 8 - ignore: # Errors and warnings to ignore - - W504 # line break after binary operator - - E402 # module level import not at top of file - - E731 # do not assign a lambda expression, use a def - - C406 # Unnecessary list literal - rewrite as a dict literal. - - E741 # ambiguous variable name - -no_blank_comment: True # If True, no comment is made on PR without any errors. -descending_issues_order: False # If True, PEP 8 issues in message will be displayed in descending order of line numbers in the file - -message: # Customize the comment made by the bot - opened: # Messages when a new PR is submitted - header: "Hello @{name}! Thanks for opening this PR. " - # The keyword {name} is converted into the author's username - footer: "Do see the [Hitchhiker's guide to code style](https://goo.gl/hqbW4r)" - # The messages can be written as they would over GitHub - updated: # Messages when new commits are added to the PR - header: "Hello @{name}! Thanks for updating this PR. " - footer: "" # Why to comment the link to the style guide everytime? :) - no_errors: "There are currently no PEP 8 issues detected in this Pull Request. Cheers! :beers: " + diff_only: True # If False, the entire file touched by the Pull Request is scanned for errors. If True, only the diff is scanned. + linter: pycodestyle # Other option is flake8 + +pycodestyle: # Same as scanner.linter value. Other option is flake8 + max-line-length: 100 # Default is 79 in PEP 8 + ignore: # Errors and warnings to ignore + - W504 # line break after binary operator + - E402 # module level import not at top of file + - E731 # do not assign a lambda expression, use a def + - C406 # Unnecessary list literal - rewrite as a dict literal. + - E741 # ambiguous variable name + +no_blank_comment: True # If True, no comment is made on PR without any errors. +descending_issues_order: False # If True, PEP 8 issues in message will be displayed in descending order of line numbers in the file + +message: # Customize the comment made by the bot + opened: # Messages when a new PR is submitted + header: + "Hello @{name}! Thanks for opening this PR. " + # The keyword {name} is converted into the author's username + footer: + "Do see the [Hitchhiker's guide to code style](https://goo.gl/hqbW4r)" + # The messages can be written as they would over GitHub + updated: # Messages when new commits are added to the PR + header: "Hello @{name}! Thanks for updating this PR. " + footer: "" # Why to comment the link to the style guide everytime? :) + no_errors: "There are currently no PEP 8 issues detected in this Pull Request. Cheers! :beers: " ``` **Notes:** + - Default settings are in [data/default_pep8speaks.yml](/data/default_pep8speaks.yml). Your `.pep8speaks.yml` will override these values. - For every Pull Request, the bot looks for `.pep8speaks.yml` in the `base` branch (the existing one). If the file is not found, it then searches the `head` branch (the incoming changes). - Set the value of `scanner.linter` to either `pycodestyle` or `flake8` @@ -89,28 +92,28 @@ message: # Customize the comment made by the bot # Popular Users -| | Organization | Description | -|-|-|-| -| | [Pandas](https://github.com/pandas-dev/pandas) | Powerful data manipulation tools for Python | -| | [Adobe](https://github.com/adobe) | Open source from Adobe | -| | [openSUSE](https://github.com/openSUSE) | Linux distribution | -| | [PyTorch Lightning](https://github.com/PyTorchLightning/pytorch-lightning) | The lightweight PyTorch wrapper for ML researchers. | -| | [NetworkX](https://github.com/NetworkX/NetworkX) | Python library for graph theory and complex networks | -| | [Statsmodels](https://github.com/statsmodels/statsmodels) | Statistical modeling and econometrics in Python | -| | [xarray (PyData)](https://github.com/pydata/xarray) | N-D labeled arrays and datasets in Python (Python for Data) | -| | [SunPy](https://github.com/sunpy) | Python for Solar Physics | -| | [Astropy](https://github.com/astropy) | Astronomy in Python | -| | [Scikit Learn Contrib](https://github.com/scikit-learn-contrib) | scikit-learn compatible projects | -| | [Scikit Image](https://github.com/scikit-image) | Image processing in Python | -| | [Spyder IDE](https://github.com/spyder-ide/spyder) | The Scientific Python Development Environment | -| | [Catalyst](https://github.com/catalyst-team/catalyst) | PyTorch framework for Deep Learning research and development | +| | Organization | Description | +| ----------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------- | ------------------------------------------------------------ | +| | [Pandas](https://github.com/pandas-dev/pandas) | Powerful data manipulation tools for Python | +| | [Adobe](https://github.com/adobe) | Open source from Adobe | +| | [openSUSE](https://github.com/openSUSE) | Linux distribution | +| | [PyTorch Lightning](https://github.com/PyTorchLightning/pytorch-lightning) | The lightweight PyTorch wrapper for ML researchers. | +| | [NetworkX](https://github.com/NetworkX/NetworkX) | Python library for graph theory and complex networks | +| | [Statsmodels](https://github.com/statsmodels/statsmodels) | Statistical modeling and econometrics in Python | +| | [xarray (PyData)](https://github.com/pydata/xarray) | N-D labeled arrays and datasets in Python (Python for Data) | +| | [SunPy](https://github.com/sunpy) | Python for Solar Physics | +| | [Astropy](https://github.com/astropy) | Astronomy in Python | +| | [Scikit Learn Contrib](https://github.com/scikit-learn-contrib) | scikit-learn compatible projects | +| | [Scikit Image](https://github.com/scikit-image) | Image processing in Python | +| | [Spyder IDE](https://github.com/spyder-ide/spyder) | The Scientific Python Development Environment | +| | [Catalyst](https://github.com/catalyst-team/catalyst) | PyTorch framework for Deep Learning research and development | See the [complete list of organizations and users](https://github.com/OrkoHunter/pep8speaks/wiki/List-of-users-and-orgs). # Miscellaneous features - - Comment `@pep8speaks suggest diff` in a comment of the PR, and it will comment a gist of diff suggesting fixes for the PR. [Example](https://github.com/OrkoHunter/test-pep8speaks/pull/22#issuecomment-270826241) - - Comment `@pep8speaks pep8ify` on the PR and it will create a Pull Request with changes suggested by [`autopep8`](https://github.com/hhatto/autopep8) against the branch of the author of the PR. `autopep8` fixes most of the errors reported by [`pycodestyle`](https://github.com/PyCQA/pycodestyle). +- Comment `@pep8speaks suggest diff` in a comment of the PR, and it will comment a gist of diff suggesting fixes for the PR. [Example](https://github.com/OrkoHunter/test-pep8speaks/pull/22#issuecomment-270826241) +- Comment `@pep8speaks pep8ify` on the PR and it will create a Pull Request with changes suggested by [`autopep8`](https://github.com/hhatto/autopep8) against the branch of the author of the PR. `autopep8` fixes most of the errors reported by [`pycodestyle`](https://github.com/PyCQA/pycodestyle). - Add `[skip pep8]` anywhere in the commit message, PR title or PR description to prohibit pep8speaks from commenting on the Pull Request. # Private repos @@ -119,15 +122,15 @@ This app will only work for publicly hosted repositories. So if you are looking # How to fix PEP 8 issues? - - Check the errors locally by the command line tool [pycodestyle](https://github.com/PyCQA/pycodestyle) (previously known as `pep8`). - - [autopep8](https://github.com/hhatto/autopep8) is another command line tool to fix the issues. - - Also, see [black](https://github.com/ambv/black) +- Check the errors locally by the command line tool [pycodestyle](https://github.com/PyCQA/pycodestyle) (previously known as `pep8`). +- [autopep8](https://github.com/hhatto/autopep8) is another command line tool to fix the issues. +- Also, see [black](https://github.com/ambv/black) # Release announcements Updates to the app are announced using the GitHub Release feature over [here](https://github.com/OrkoHunter/pep8speaks/releases). A lot of major changes are made as the community grows bigger. Click on `Watch` -> `Releases only` on top of the page, to get notified about new configurations or feature updates. -Usually, the master branch is deployed as soon as Pull Requests are merged in the repository. However, on every Friday, I make a release and make sure the latest code is deployed. You do not need to do anything to use the latest version. If you use a fork of PEP 8 Speaks, check out the Release space. +Usually, the master branch is deployed as soon as Pull Requests are merged in the repository. However, on every Friday, I make a release and make sure the latest code is deployed. You do not need to do anything to use the latest version. If you use a fork of PEP 8 Speaks, check out the Release space.

      Sponsors

      @@ -181,7 +184,6 @@ Usually, the master branch is deployed as soon as Pull Requests are merged in th -

      Silver Sponsors

      [Become a Silver Sponsor](https://github.com/OrkoHunter/pep8speaks/wiki/Funding#how-to-donate) and get your logo and name with a link to your site on our README and our [website](https://pep8speaks.org). @@ -233,6 +235,7 @@ If you use this project and you like it, [please let me know](https://saythanks. # Recent Activity + 1. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) 2. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) 3. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) From 23a759fd9b4dd76263b5753ff902d794603e56c1 Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Sun, 10 Dec 2023 04:44:56 +0530 Subject: [PATCH 0865/2173] feat: Added Issue Template --- .github/ISSUE_TEMPLATE/blank_issue.md | 4 ++ .github/ISSUE_TEMPLATE/bug_report.yml | 75 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 8 +++ .github/ISSUE_TEMPLATE/feature_request.md | 14 +++++ 4 files changed, 101 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/blank_issue.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/blank_issue.md b/.github/ISSUE_TEMPLATE/blank_issue.md new file mode 100644 index 00000000..9f081193 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/blank_issue.md @@ -0,0 +1,4 @@ +--- +name: 📝 Blank Issue +about: Create a blank issue. +--- diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..018bfbf4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,75 @@ +name: Bug Report +description: File a bug report +title: "[Bug]: " +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: input + id: contact + attributes: + label: Contact Details + description: How can we get in touch with you if we need more info? + placeholder: ex. email@example.com + validations: + required: false + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Also tell us, what did you expect to happen? + placeholder: Tell us what you see! + value: "A bug happened!" + validations: + required: true + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell + - type: textarea + id: reproduce + attributes: + label: Steps to Reproduce + description: Please provide the steps to reproduce this bug. You can include your code here if it is relevant. + placeholder: | + 1. + 2. + 3. + validations: + required: false + - type: dropdown + id: os + attributes: + label: Your operating system + options: + - Windows + - MacOS + - Linux + - Other (specify below) + validations: + required: false + - type: dropdown + id: py_version + attributes: + label: Your Python version (`python --version`) + options: + - 3.8 + - 3.9 + - 3.10 + - 3.11 + - 3.12 + - Other (specify below) + validations: + required: false + - type: checkboxes + id: terms + attributes: + label: Code of Conduct + description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/FOSS-Community/website-fossc/blob/main/CODE_OF_CONDUCT.md) + options: + - label: I agree to follow this project's Code of Conduct + required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..267ca712 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: true +contact_links: + - name: Community Support + url: https://github.com/pep8speaks-org/pep8speaks/issues + about: You can ask and answer questions here. + - name: Documentation + url: https://pep8speaks.org/ + about: The PEP8Speaks documentation. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..6da02e94 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,14 @@ +--- +name: 💡 Feature request +about: Suggest an idea to improve Robyn +labels: [enhancement] +--- + + From 166dd1fbdcacc3f7385520369ef69914e00b1f38 Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Sun, 10 Dec 2023 04:46:06 +0530 Subject: [PATCH 0866/2173] feat: Added pull request template --- .github/pull_request_template.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..64d9fb53 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,17 @@ +**Description** + +This PR fixes # + + From 4ff73fd9b9891caae92a092d71d088e4a90a2f62 Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Sun, 10 Dec 2023 04:49:32 +0530 Subject: [PATCH 0867/2173] fix: typo in file --- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 6da02e94..3abcfc98 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -5,7 +5,7 @@ labels: [enhancement] --- From 8157fdcda76512a4c01d82e80adeee87af9260b8 Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Sun, 10 Dec 2023 04:50:50 +0530 Subject: [PATCH 0869/2173] fix: typo in file --- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 3abcfc98..e25ee354 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,6 +1,6 @@ --- name: 💡 Feature request -about: Suggest an idea to improve Robyn +about: Suggest an idea to improve pep8speaks labels: [enhancement] --- From e2cf64318d34c0b5aaacd2525d75bbccb3fc58b3 Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Sun, 10 Dec 2023 04:58:36 +0530 Subject: [PATCH 0870/2173] fix: Upgraded the deps to latest version to avoid critical CVE's --- requirements/base.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/requirements/base.txt b/requirements/base.txt index ba28330f..98f68e0d 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,12 +1,12 @@ -requests~=2.23.0 -flask~=1.1.2 -gunicorn~=20.0.4 -pycodestyle~=2.6.0 -flake8~=3.8.2 -PyYAML~=5.3.1 -unidiff~=0.6.0 -autopep8~=1.5.2 -markdown~=3.2.2 -beautifulsoup4~=4.9.1 -markupsafe~=2.0.1 -python-dotenv~=1.0.0 +requests>=2.31.0 +flask>=3.0.0 +gunicorn>=21.2.0 +pycodestyle>=2.11.1 +flake8>=6.1.0 +PyYAML>=6.0.1 +unidiff>=0.7.5 +autopep8>=2.0.4 +markdown>=3.5.1 +beautifulsoup4>=4.12.2 +markupsafe>=2.1.3 +python-dotenv>=1.0.0 From 6404db96d61b0a8dd7a3070ec22838cff519699a Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Sun, 10 Dec 2023 04:58:50 +0530 Subject: [PATCH 0871/2173] fix: Upgraded the test deps to latest version to avoid critical CVE's --- requirements/test.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/requirements/test.txt b/requirements/test.txt index 4cfbbb5d..89e8747d 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -1,5 +1,6 @@ -r base.txt -pytest~=5.4.2 -pytest-flask~=1.0.0 -pytest-mock~=1.6.3 -mock~=3.0.5 +pytest>=7.4.3 +pytest-flask>=1.3.0 +pytest-mock>=3.12.0 +mock>=5.1.0 + From 0ff64865988fbf8a8b87dcf03fda0dcfb15bf744 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 10 Dec 2023 01:18:23 +0000 Subject: [PATCH 0872/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b74e7712..6d8829f1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -2. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -3. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -4. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848686037) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -5. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675460) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -6. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675128) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -7. 🗣 Commented on [#2996](https://github.com/dipy/dipy/pull/2996#issuecomment-1848615408) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#220](https://github.com/CartoonFan/lutris/pull/220#issuecomment-1848424050) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-MagicAnimate/pull/1#issuecomment-1848340986) in [tuhinmallick/ComfyUI-MagicAnimate](https://github.com/tuhinmallick/ComfyUI-MagicAnimate) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/mamba-chat/pull/1#issuecomment-1848339432) in [tuhinmallick/mamba-chat](https://github.com/tuhinmallick/mamba-chat) +1. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +3. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +4. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +5. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848686037) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +6. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675460) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +7. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675128) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +8. 🗣 Commented on [#2996](https://github.com/dipy/dipy/pull/2996#issuecomment-1848615408) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#220](https://github.com/CartoonFan/lutris/pull/220#issuecomment-1848424050) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-MagicAnimate/pull/1#issuecomment-1848340986) in [tuhinmallick/ComfyUI-MagicAnimate](https://github.com/tuhinmallick/ComfyUI-MagicAnimate) From 86577891c526d10169ebe474ed9871a3bb487b07 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 10 Dec 2023 02:15:06 +0000 Subject: [PATCH 0873/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6d8829f1..351064b7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -3. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -4. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -5. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848686037) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -6. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675460) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -7. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675128) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -8. 🗣 Commented on [#2996](https://github.com/dipy/dipy/pull/2996#issuecomment-1848615408) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#220](https://github.com/CartoonFan/lutris/pull/220#issuecomment-1848424050) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/ComfyUI-MagicAnimate/pull/1#issuecomment-1848340986) in [tuhinmallick/ComfyUI-MagicAnimate](https://github.com/tuhinmallick/ComfyUI-MagicAnimate) +1. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +4. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +5. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +6. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848686037) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +7. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675460) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +8. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675128) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +9. 🗣 Commented on [#2996](https://github.com/dipy/dipy/pull/2996#issuecomment-1848615408) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#220](https://github.com/CartoonFan/lutris/pull/220#issuecomment-1848424050) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From aafcbe54c6f2536bc1dda38f1c7befd4d160a6f6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 03:17:41 +0000 Subject: [PATCH 0874/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 351064b7..707e1f28 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -4. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -5. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -6. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848686037) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -7. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675460) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -8. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675128) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -9. 🗣 Commented on [#2996](https://github.com/dipy/dipy/pull/2996#issuecomment-1848615408) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#220](https://github.com/CartoonFan/lutris/pull/220#issuecomment-1848424050) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +2. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +5. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +6. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +7. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848686037) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +8. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675460) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +9. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675128) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +10. 🗣 Commented on [#2996](https://github.com/dipy/dipy/pull/2996#issuecomment-1848615408) in [dipy/dipy](https://github.com/dipy/dipy) From 034bc8eff7ada7d84e6d2bbf512015116f9e9d4e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 07:15:56 +0000 Subject: [PATCH 0875/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 707e1f28..ed13d4c6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -2. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -5. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -6. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -7. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848686037) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -8. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675460) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -9. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675128) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -10. 🗣 Commented on [#2996](https://github.com/dipy/dipy/pull/2996#issuecomment-1848615408) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +3. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +6. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +7. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +8. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848686037) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +9. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675460) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +10. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675128) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) From dbf28ede2586a56b2ddbc73735cb81bd1dba231f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 07:37:27 +0000 Subject: [PATCH 0876/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ed13d4c6..4b8e9a6a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -3. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -6. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -7. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -8. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848686037) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -9. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675460) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -10. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675128) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +1. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +4. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +7. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +8. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +9. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848686037) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +10. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675460) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) From 98a5cfa454eb7eafae5192b800a4b1a33fc05c31 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 09:17:39 +0000 Subject: [PATCH 0877/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4b8e9a6a..dd4dace4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -4. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -7. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -8. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -9. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848686037) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -10. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848675460) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +1. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +2. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +5. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +8. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +9. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +10. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848686037) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) From b8f67d08e55a8114bbcf0a0ec00eca5d179992e6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 11:14:56 +0000 Subject: [PATCH 0878/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dd4dace4..3444757a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -2. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -5. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -8. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -9. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -10. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848686037) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +1. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) +2. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +3. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +6. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +9. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +10. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) From 90b46167694c764ea6fd03376971323f0cc2c62c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 12:33:07 +0000 Subject: [PATCH 0879/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3444757a..9cd3ff4c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) -2. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -3. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -6. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -9. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -10. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848723579) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +1. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) +2. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) +3. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +4. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +7. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +10. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) From e80d16ff70b9504e05db3da7826eee24e92b8daa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 13:37:19 +0000 Subject: [PATCH 0880/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9cd3ff4c..db478fbc 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) -2. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) -3. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -4. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -7. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -10. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848763233) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +1. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) +3. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) +4. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +5. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +8. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) From 6d6720912d90e025cf33580a2ac505cf24c64171 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 14:16:29 +0000 Subject: [PATCH 0881/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index db478fbc..8f3b000f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) -3. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) -4. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -5. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -8. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-1848766845) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +1. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) +4. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) +5. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +6. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +9. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) From ea79f93a22e15eedd3f8dc57da65ac93453a388c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 15:38:12 +0000 Subject: [PATCH 0882/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8f3b000f..fecb31de 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) -4. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) -5. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -6. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -9. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#3001](https://github.com/dipy/dipy/pull/3001#issuecomment-1848804375) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) +5. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) +6. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +7. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +10. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) From 5fee7d4f47aaafd94349c35a9a132adee2b50276 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 16:23:02 +0000 Subject: [PATCH 0883/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fecb31de..e37b6794 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) -5. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) -6. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -7. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -10. 🗣 Commented on [#3002](https://github.com/dipy/dipy/pull/3002#issuecomment-1848833781) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +2. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +4. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) +6. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) +7. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +8. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) From 28e54087bdd7ade8f044ff0986224748410d490b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 16:42:37 +0000 Subject: [PATCH 0884/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e37b6794..776cb966 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -2. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -4. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) -6. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) -7. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -8. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#589](https://github.com/quark-engine/quark-engine/pull/589#issuecomment-1849237225) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +1. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +3. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) +7. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) +8. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +9. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From fda9122fc1111eaab3df15fb8be0287a8e8a0a0a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 18:21:34 +0000 Subject: [PATCH 0885/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 776cb966..92b80011 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -3. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) -7. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) -8. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -9. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#5371](https://github.com/rhinstaller/anaconda/pull/5371#issuecomment-1849438897) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) +2. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +4. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) +8. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) +9. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +10. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 38275e6fe8212c0d2c3e0000642b885e36acd881 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 22:37:22 +0000 Subject: [PATCH 0886/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 92b80011..43d596ae 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) -2. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -4. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) -8. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) -9. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -10. 🗣 Commented on [#5372](https://github.com/rhinstaller/anaconda/pull/5372#issuecomment-1849459729) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) +3. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +5. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) +9. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) +10. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) From 2321a3214d2e677af95c0e13a65fcc3e5f0bc0f2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 01:14:30 +0000 Subject: [PATCH 0887/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 43d596ae..62c1c9cd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) -3. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -5. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) -9. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) -10. 🗣 Commented on [#610](https://github.com/NeuralEnsemble/elephant/pull/610#issuecomment-1849615084) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +1. 🗣 Commented on [#240](https://github.com/wtbarnes/fiasco/pull/240#issuecomment-1851139948) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) +2. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) +4. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +6. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) +10. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) From bfab333f463c99a19f335d4e7ec5f28db2ffb08f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 03:37:34 +0000 Subject: [PATCH 0888/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 62c1c9cd..f5dffedf 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#240](https://github.com/wtbarnes/fiasco/pull/240#issuecomment-1851139948) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) -2. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) -4. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -6. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) -10. 🗣 Commented on [#58](https://github.com/expertspec/expert/pull/58#issuecomment-1849841776) in [expertspec/expert](https://github.com/expertspec/expert) +1. 🗣 Commented on [#4354](https://github.com/uwcirg/truenth-portal/pull/4354#issuecomment-1851245753) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +2. 🗣 Commented on [#240](https://github.com/wtbarnes/fiasco/pull/240#issuecomment-1851139948) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) +3. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) +5. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +7. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) From 47011c09495135499731b087eecc6990474eaa5f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 04:20:03 +0000 Subject: [PATCH 0889/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f5dffedf..94f7b6f4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4354](https://github.com/uwcirg/truenth-portal/pull/4354#issuecomment-1851245753) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -2. 🗣 Commented on [#240](https://github.com/wtbarnes/fiasco/pull/240#issuecomment-1851139948) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) -3. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) -5. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -7. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#59](https://github.com/CartoonFan/mgba/pull/59#issuecomment-1849984592) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) +1. 🗣 Commented on [#853](https://github.com/fury-gl/fury/pull/853#issuecomment-1851255327) in [fury-gl/fury](https://github.com/fury-gl/fury) +2. 🗣 Commented on [#4354](https://github.com/uwcirg/truenth-portal/pull/4354#issuecomment-1851245753) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +3. 🗣 Commented on [#240](https://github.com/wtbarnes/fiasco/pull/240#issuecomment-1851139948) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) +4. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) +6. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +8. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From 3967f113becb59d83c79f78557f2a9a8ab8b3448 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 07:37:13 +0000 Subject: [PATCH 0890/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 94f7b6f4..39489690 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#853](https://github.com/fury-gl/fury/pull/853#issuecomment-1851255327) in [fury-gl/fury](https://github.com/fury-gl/fury) -2. 🗣 Commented on [#4354](https://github.com/uwcirg/truenth-portal/pull/4354#issuecomment-1851245753) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -3. 🗣 Commented on [#240](https://github.com/wtbarnes/fiasco/pull/240#issuecomment-1851139948) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) -4. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) -6. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -8. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#881](https://github.com/ToFuProject/tofu/pull/881#issuecomment-1850089320) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#889](https://github.com/PyThaiNLP/pythainlp/pull/889#issuecomment-1851431539) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#853](https://github.com/fury-gl/fury/pull/853#issuecomment-1851255327) in [fury-gl/fury](https://github.com/fury-gl/fury) +3. 🗣 Commented on [#4354](https://github.com/uwcirg/truenth-portal/pull/4354#issuecomment-1851245753) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +4. 🗣 Commented on [#240](https://github.com/wtbarnes/fiasco/pull/240#issuecomment-1851139948) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) +5. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) +7. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +9. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From 7b447ac1def8acc96d87573bc6301dfea9e9e48d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 08:21:17 +0000 Subject: [PATCH 0891/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 39489690..32611791 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#889](https://github.com/PyThaiNLP/pythainlp/pull/889#issuecomment-1851431539) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#853](https://github.com/fury-gl/fury/pull/853#issuecomment-1851255327) in [fury-gl/fury](https://github.com/fury-gl/fury) -3. 🗣 Commented on [#4354](https://github.com/uwcirg/truenth-portal/pull/4354#issuecomment-1851245753) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -4. 🗣 Commented on [#240](https://github.com/wtbarnes/fiasco/pull/240#issuecomment-1851139948) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) -5. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) -7. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -9. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#160](https://github.com/eastgenomics/dias_batch_running/pull/160#issuecomment-1850164412) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#949](https://github.com/avaframe/AvaFrame/pull/949#issuecomment-1851478953) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#889](https://github.com/PyThaiNLP/pythainlp/pull/889#issuecomment-1851431539) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#853](https://github.com/fury-gl/fury/pull/853#issuecomment-1851255327) in [fury-gl/fury](https://github.com/fury-gl/fury) +4. 🗣 Commented on [#4354](https://github.com/uwcirg/truenth-portal/pull/4354#issuecomment-1851245753) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +5. 🗣 Commented on [#240](https://github.com/wtbarnes/fiasco/pull/240#issuecomment-1851139948) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) +6. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) +8. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +10. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From ec5ccd5ad16fe0baced75d30a9322ce842cec6bc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 09:16:37 +0000 Subject: [PATCH 0892/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 32611791..e0e38322 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#949](https://github.com/avaframe/AvaFrame/pull/949#issuecomment-1851478953) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#889](https://github.com/PyThaiNLP/pythainlp/pull/889#issuecomment-1851431539) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#853](https://github.com/fury-gl/fury/pull/853#issuecomment-1851255327) in [fury-gl/fury](https://github.com/fury-gl/fury) -4. 🗣 Commented on [#4354](https://github.com/uwcirg/truenth-portal/pull/4354#issuecomment-1851245753) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -5. 🗣 Commented on [#240](https://github.com/wtbarnes/fiasco/pull/240#issuecomment-1851139948) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) -6. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) -8. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -10. 🗣 Commented on [#1222](https://github.com/aimclub/FEDOT/pull/1222#issuecomment-1850304613) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/instructor/pull/1#issuecomment-1851568527) in [tuhinmallick/instructor](https://github.com/tuhinmallick/instructor) +2. 🗣 Commented on [#949](https://github.com/avaframe/AvaFrame/pull/949#issuecomment-1851478953) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#889](https://github.com/PyThaiNLP/pythainlp/pull/889#issuecomment-1851431539) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#853](https://github.com/fury-gl/fury/pull/853#issuecomment-1851255327) in [fury-gl/fury](https://github.com/fury-gl/fury) +5. 🗣 Commented on [#4354](https://github.com/uwcirg/truenth-portal/pull/4354#issuecomment-1851245753) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +6. 🗣 Commented on [#240](https://github.com/wtbarnes/fiasco/pull/240#issuecomment-1851139948) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) +7. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) +9. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) From 69fd6b294dab4d040a257447959e0d26735822e1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 10:18:10 +0000 Subject: [PATCH 0893/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e0e38322..e2c6028e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/instructor/pull/1#issuecomment-1851568527) in [tuhinmallick/instructor](https://github.com/tuhinmallick/instructor) -2. 🗣 Commented on [#949](https://github.com/avaframe/AvaFrame/pull/949#issuecomment-1851478953) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#889](https://github.com/PyThaiNLP/pythainlp/pull/889#issuecomment-1851431539) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#853](https://github.com/fury-gl/fury/pull/853#issuecomment-1851255327) in [fury-gl/fury](https://github.com/fury-gl/fury) -5. 🗣 Commented on [#4354](https://github.com/uwcirg/truenth-portal/pull/4354#issuecomment-1851245753) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -6. 🗣 Commented on [#240](https://github.com/wtbarnes/fiasco/pull/240#issuecomment-1851139948) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) -7. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) -9. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#115](https://github.com/OpenFreeEnergy/cinnabar/pull/115#issuecomment-1850348330) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +1. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_optimised_filtering/pull/11#issuecomment-1851705827) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/instructor/pull/1#issuecomment-1851568527) in [tuhinmallick/instructor](https://github.com/tuhinmallick/instructor) +3. 🗣 Commented on [#949](https://github.com/avaframe/AvaFrame/pull/949#issuecomment-1851478953) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#889](https://github.com/PyThaiNLP/pythainlp/pull/889#issuecomment-1851431539) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#853](https://github.com/fury-gl/fury/pull/853#issuecomment-1851255327) in [fury-gl/fury](https://github.com/fury-gl/fury) +6. 🗣 Commented on [#4354](https://github.com/uwcirg/truenth-portal/pull/4354#issuecomment-1851245753) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +7. 🗣 Commented on [#240](https://github.com/wtbarnes/fiasco/pull/240#issuecomment-1851139948) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) +8. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) +10. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) From a061fa7b129a3b12283f3892fb2d693b037648f8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 11:13:54 +0000 Subject: [PATCH 0894/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e2c6028e..092e1ef0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_optimised_filtering/pull/11#issuecomment-1851705827) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/instructor/pull/1#issuecomment-1851568527) in [tuhinmallick/instructor](https://github.com/tuhinmallick/instructor) -3. 🗣 Commented on [#949](https://github.com/avaframe/AvaFrame/pull/949#issuecomment-1851478953) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#889](https://github.com/PyThaiNLP/pythainlp/pull/889#issuecomment-1851431539) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#853](https://github.com/fury-gl/fury/pull/853#issuecomment-1851255327) in [fury-gl/fury](https://github.com/fury-gl/fury) -6. 🗣 Commented on [#4354](https://github.com/uwcirg/truenth-portal/pull/4354#issuecomment-1851245753) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -7. 🗣 Commented on [#240](https://github.com/wtbarnes/fiasco/pull/240#issuecomment-1851139948) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) -8. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) -10. 🗣 Commented on [#3006](https://github.com/dipy/dipy/pull/3006#issuecomment-1850434443) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#3078](https://github.com/reframe-hpc/reframe/pull/3078#issuecomment-1851813231) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +2. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_optimised_filtering/pull/11#issuecomment-1851705827) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/instructor/pull/1#issuecomment-1851568527) in [tuhinmallick/instructor](https://github.com/tuhinmallick/instructor) +4. 🗣 Commented on [#949](https://github.com/avaframe/AvaFrame/pull/949#issuecomment-1851478953) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#889](https://github.com/PyThaiNLP/pythainlp/pull/889#issuecomment-1851431539) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#853](https://github.com/fury-gl/fury/pull/853#issuecomment-1851255327) in [fury-gl/fury](https://github.com/fury-gl/fury) +7. 🗣 Commented on [#4354](https://github.com/uwcirg/truenth-portal/pull/4354#issuecomment-1851245753) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +8. 🗣 Commented on [#240](https://github.com/wtbarnes/fiasco/pull/240#issuecomment-1851139948) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) +9. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) From d284a2027f84a57b7a8284a757a9c47946980c82 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 12:32:03 +0000 Subject: [PATCH 0895/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 092e1ef0..547fa119 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3078](https://github.com/reframe-hpc/reframe/pull/3078#issuecomment-1851813231) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -2. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_optimised_filtering/pull/11#issuecomment-1851705827) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/instructor/pull/1#issuecomment-1851568527) in [tuhinmallick/instructor](https://github.com/tuhinmallick/instructor) -4. 🗣 Commented on [#949](https://github.com/avaframe/AvaFrame/pull/949#issuecomment-1851478953) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#889](https://github.com/PyThaiNLP/pythainlp/pull/889#issuecomment-1851431539) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#853](https://github.com/fury-gl/fury/pull/853#issuecomment-1851255327) in [fury-gl/fury](https://github.com/fury-gl/fury) -7. 🗣 Commented on [#4354](https://github.com/uwcirg/truenth-portal/pull/4354#issuecomment-1851245753) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -8. 🗣 Commented on [#240](https://github.com/wtbarnes/fiasco/pull/240#issuecomment-1851139948) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) -9. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#2](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/2#issuecomment-1850575231) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) +1. 🗣 Commented on [#63](https://github.com/eastgenomics/eris/pull/63#issuecomment-1851925476) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#3078](https://github.com/reframe-hpc/reframe/pull/3078#issuecomment-1851813231) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +3. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_optimised_filtering/pull/11#issuecomment-1851705827) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/instructor/pull/1#issuecomment-1851568527) in [tuhinmallick/instructor](https://github.com/tuhinmallick/instructor) +5. 🗣 Commented on [#949](https://github.com/avaframe/AvaFrame/pull/949#issuecomment-1851478953) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#889](https://github.com/PyThaiNLP/pythainlp/pull/889#issuecomment-1851431539) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +7. 🗣 Commented on [#853](https://github.com/fury-gl/fury/pull/853#issuecomment-1851255327) in [fury-gl/fury](https://github.com/fury-gl/fury) +8. 🗣 Commented on [#4354](https://github.com/uwcirg/truenth-portal/pull/4354#issuecomment-1851245753) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +9. 🗣 Commented on [#240](https://github.com/wtbarnes/fiasco/pull/240#issuecomment-1851139948) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) +10. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 7ab561c4e20f287c89ae3faba98cb68d12de3290 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 14:15:40 +0000 Subject: [PATCH 0896/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 547fa119..249260fe 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#63](https://github.com/eastgenomics/eris/pull/63#issuecomment-1851925476) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#3078](https://github.com/reframe-hpc/reframe/pull/3078#issuecomment-1851813231) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -3. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_optimised_filtering/pull/11#issuecomment-1851705827) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/instructor/pull/1#issuecomment-1851568527) in [tuhinmallick/instructor](https://github.com/tuhinmallick/instructor) -5. 🗣 Commented on [#949](https://github.com/avaframe/AvaFrame/pull/949#issuecomment-1851478953) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#889](https://github.com/PyThaiNLP/pythainlp/pull/889#issuecomment-1851431539) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -7. 🗣 Commented on [#853](https://github.com/fury-gl/fury/pull/853#issuecomment-1851255327) in [fury-gl/fury](https://github.com/fury-gl/fury) -8. 🗣 Commented on [#4354](https://github.com/uwcirg/truenth-portal/pull/4354#issuecomment-1851245753) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -9. 🗣 Commented on [#240](https://github.com/wtbarnes/fiasco/pull/240#issuecomment-1851139948) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) -10. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1850998477) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#890](https://github.com/PyThaiNLP/pythainlp/pull/890#issuecomment-1852072692) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#59](https://github.com/expertspec/expert/pull/59#issuecomment-1852065630) in [expertspec/expert](https://github.com/expertspec/expert) +3. 🗣 Commented on [#63](https://github.com/eastgenomics/eris/pull/63#issuecomment-1851925476) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#3078](https://github.com/reframe-hpc/reframe/pull/3078#issuecomment-1851813231) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +5. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_optimised_filtering/pull/11#issuecomment-1851705827) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/instructor/pull/1#issuecomment-1851568527) in [tuhinmallick/instructor](https://github.com/tuhinmallick/instructor) +7. 🗣 Commented on [#949](https://github.com/avaframe/AvaFrame/pull/949#issuecomment-1851478953) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#889](https://github.com/PyThaiNLP/pythainlp/pull/889#issuecomment-1851431539) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#853](https://github.com/fury-gl/fury/pull/853#issuecomment-1851255327) in [fury-gl/fury](https://github.com/fury-gl/fury) +10. 🗣 Commented on [#4354](https://github.com/uwcirg/truenth-portal/pull/4354#issuecomment-1851245753) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) From 37a046f66c186ad1ec0c4eb48a08dca61d289b03 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 14:37:24 +0000 Subject: [PATCH 0897/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 249260fe..9d919a5a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#890](https://github.com/PyThaiNLP/pythainlp/pull/890#issuecomment-1852072692) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#59](https://github.com/expertspec/expert/pull/59#issuecomment-1852065630) in [expertspec/expert](https://github.com/expertspec/expert) -3. 🗣 Commented on [#63](https://github.com/eastgenomics/eris/pull/63#issuecomment-1851925476) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#3078](https://github.com/reframe-hpc/reframe/pull/3078#issuecomment-1851813231) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -5. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_optimised_filtering/pull/11#issuecomment-1851705827) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/instructor/pull/1#issuecomment-1851568527) in [tuhinmallick/instructor](https://github.com/tuhinmallick/instructor) -7. 🗣 Commented on [#949](https://github.com/avaframe/AvaFrame/pull/949#issuecomment-1851478953) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#889](https://github.com/PyThaiNLP/pythainlp/pull/889#issuecomment-1851431539) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#853](https://github.com/fury-gl/fury/pull/853#issuecomment-1851255327) in [fury-gl/fury](https://github.com/fury-gl/fury) -10. 🗣 Commented on [#4354](https://github.com/uwcirg/truenth-portal/pull/4354#issuecomment-1851245753) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +1. 🗣 Commented on [#1636](https://github.com/HEXRD/hexrdgui/pull/1636#issuecomment-1852154827) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +2. 🗣 Commented on [#890](https://github.com/PyThaiNLP/pythainlp/pull/890#issuecomment-1852072692) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#59](https://github.com/expertspec/expert/pull/59#issuecomment-1852065630) in [expertspec/expert](https://github.com/expertspec/expert) +4. 🗣 Commented on [#63](https://github.com/eastgenomics/eris/pull/63#issuecomment-1851925476) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#3078](https://github.com/reframe-hpc/reframe/pull/3078#issuecomment-1851813231) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +6. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_optimised_filtering/pull/11#issuecomment-1851705827) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/instructor/pull/1#issuecomment-1851568527) in [tuhinmallick/instructor](https://github.com/tuhinmallick/instructor) +8. 🗣 Commented on [#949](https://github.com/avaframe/AvaFrame/pull/949#issuecomment-1851478953) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#889](https://github.com/PyThaiNLP/pythainlp/pull/889#issuecomment-1851431539) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +10. 🗣 Commented on [#853](https://github.com/fury-gl/fury/pull/853#issuecomment-1851255327) in [fury-gl/fury](https://github.com/fury-gl/fury) From 89bd6457709f727afafab2baacfc38efb4199255 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 15:17:37 +0000 Subject: [PATCH 0898/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9d919a5a..02368e32 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1636](https://github.com/HEXRD/hexrdgui/pull/1636#issuecomment-1852154827) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -2. 🗣 Commented on [#890](https://github.com/PyThaiNLP/pythainlp/pull/890#issuecomment-1852072692) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#59](https://github.com/expertspec/expert/pull/59#issuecomment-1852065630) in [expertspec/expert](https://github.com/expertspec/expert) -4. 🗣 Commented on [#63](https://github.com/eastgenomics/eris/pull/63#issuecomment-1851925476) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#3078](https://github.com/reframe-hpc/reframe/pull/3078#issuecomment-1851813231) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -6. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_optimised_filtering/pull/11#issuecomment-1851705827) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/instructor/pull/1#issuecomment-1851568527) in [tuhinmallick/instructor](https://github.com/tuhinmallick/instructor) -8. 🗣 Commented on [#949](https://github.com/avaframe/AvaFrame/pull/949#issuecomment-1851478953) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#889](https://github.com/PyThaiNLP/pythainlp/pull/889#issuecomment-1851431539) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -10. 🗣 Commented on [#853](https://github.com/fury-gl/fury/pull/853#issuecomment-1851255327) in [fury-gl/fury](https://github.com/fury-gl/fury) +1. 🗣 Commented on [#1268](https://github.com/rpm-software-management/mock/pull/1268#issuecomment-1852221796) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +2. 🗣 Commented on [#57](https://github.com/eastgenomics/trendyQC/pull/57#issuecomment-1852180200) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +3. 🗣 Commented on [#1636](https://github.com/HEXRD/hexrdgui/pull/1636#issuecomment-1852154827) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +4. 🗣 Commented on [#890](https://github.com/PyThaiNLP/pythainlp/pull/890#issuecomment-1852072692) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#59](https://github.com/expertspec/expert/pull/59#issuecomment-1852065630) in [expertspec/expert](https://github.com/expertspec/expert) +6. 🗣 Commented on [#63](https://github.com/eastgenomics/eris/pull/63#issuecomment-1851925476) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#3078](https://github.com/reframe-hpc/reframe/pull/3078#issuecomment-1851813231) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +8. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_optimised_filtering/pull/11#issuecomment-1851705827) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/instructor/pull/1#issuecomment-1851568527) in [tuhinmallick/instructor](https://github.com/tuhinmallick/instructor) +10. 🗣 Commented on [#949](https://github.com/avaframe/AvaFrame/pull/949#issuecomment-1851478953) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From 5e8bcfdca497c05656beaf05b1ca8799b48f622c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 16:20:53 +0000 Subject: [PATCH 0899/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 02368e32..2d4cc5cb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1268](https://github.com/rpm-software-management/mock/pull/1268#issuecomment-1852221796) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -2. 🗣 Commented on [#57](https://github.com/eastgenomics/trendyQC/pull/57#issuecomment-1852180200) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -3. 🗣 Commented on [#1636](https://github.com/HEXRD/hexrdgui/pull/1636#issuecomment-1852154827) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -4. 🗣 Commented on [#890](https://github.com/PyThaiNLP/pythainlp/pull/890#issuecomment-1852072692) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#59](https://github.com/expertspec/expert/pull/59#issuecomment-1852065630) in [expertspec/expert](https://github.com/expertspec/expert) -6. 🗣 Commented on [#63](https://github.com/eastgenomics/eris/pull/63#issuecomment-1851925476) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#3078](https://github.com/reframe-hpc/reframe/pull/3078#issuecomment-1851813231) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -8. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_optimised_filtering/pull/11#issuecomment-1851705827) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/instructor/pull/1#issuecomment-1851568527) in [tuhinmallick/instructor](https://github.com/tuhinmallick/instructor) -10. 🗣 Commented on [#949](https://github.com/avaframe/AvaFrame/pull/949#issuecomment-1851478953) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#3008](https://github.com/dipy/dipy/pull/3008#issuecomment-1852359600) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#1268](https://github.com/rpm-software-management/mock/pull/1268#issuecomment-1852221796) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +3. 🗣 Commented on [#57](https://github.com/eastgenomics/trendyQC/pull/57#issuecomment-1852180200) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +4. 🗣 Commented on [#1636](https://github.com/HEXRD/hexrdgui/pull/1636#issuecomment-1852154827) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +5. 🗣 Commented on [#890](https://github.com/PyThaiNLP/pythainlp/pull/890#issuecomment-1852072692) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#59](https://github.com/expertspec/expert/pull/59#issuecomment-1852065630) in [expertspec/expert](https://github.com/expertspec/expert) +7. 🗣 Commented on [#63](https://github.com/eastgenomics/eris/pull/63#issuecomment-1851925476) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#3078](https://github.com/reframe-hpc/reframe/pull/3078#issuecomment-1851813231) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +9. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_optimised_filtering/pull/11#issuecomment-1851705827) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/instructor/pull/1#issuecomment-1851568527) in [tuhinmallick/instructor](https://github.com/tuhinmallick/instructor) From d66487af3072a6a094c3618ff6bc3a952b54f53e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 17:37:20 +0000 Subject: [PATCH 0900/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2d4cc5cb..139f346d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3008](https://github.com/dipy/dipy/pull/3008#issuecomment-1852359600) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#1268](https://github.com/rpm-software-management/mock/pull/1268#issuecomment-1852221796) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -3. 🗣 Commented on [#57](https://github.com/eastgenomics/trendyQC/pull/57#issuecomment-1852180200) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -4. 🗣 Commented on [#1636](https://github.com/HEXRD/hexrdgui/pull/1636#issuecomment-1852154827) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -5. 🗣 Commented on [#890](https://github.com/PyThaiNLP/pythainlp/pull/890#issuecomment-1852072692) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#59](https://github.com/expertspec/expert/pull/59#issuecomment-1852065630) in [expertspec/expert](https://github.com/expertspec/expert) -7. 🗣 Commented on [#63](https://github.com/eastgenomics/eris/pull/63#issuecomment-1851925476) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#3078](https://github.com/reframe-hpc/reframe/pull/3078#issuecomment-1851813231) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -9. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_optimised_filtering/pull/11#issuecomment-1851705827) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/instructor/pull/1#issuecomment-1851568527) in [tuhinmallick/instructor](https://github.com/tuhinmallick/instructor) +1. 🗣 Commented on [#1362](https://github.com/NeuralEnsemble/python-neo/pull/1362#issuecomment-1852483410) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +2. 🗣 Commented on [#3008](https://github.com/dipy/dipy/pull/3008#issuecomment-1852359600) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#1268](https://github.com/rpm-software-management/mock/pull/1268#issuecomment-1852221796) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +4. 🗣 Commented on [#57](https://github.com/eastgenomics/trendyQC/pull/57#issuecomment-1852180200) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +5. 🗣 Commented on [#1636](https://github.com/HEXRD/hexrdgui/pull/1636#issuecomment-1852154827) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +6. 🗣 Commented on [#890](https://github.com/PyThaiNLP/pythainlp/pull/890#issuecomment-1852072692) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +7. 🗣 Commented on [#59](https://github.com/expertspec/expert/pull/59#issuecomment-1852065630) in [expertspec/expert](https://github.com/expertspec/expert) +8. 🗣 Commented on [#63](https://github.com/eastgenomics/eris/pull/63#issuecomment-1851925476) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#3078](https://github.com/reframe-hpc/reframe/pull/3078#issuecomment-1851813231) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +10. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_optimised_filtering/pull/11#issuecomment-1851705827) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) From 582e2e945a9728dab7fbbd4321cdbca4602b9ca1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 18:21:08 +0000 Subject: [PATCH 0901/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 139f346d..72e8a27f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1362](https://github.com/NeuralEnsemble/python-neo/pull/1362#issuecomment-1852483410) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -2. 🗣 Commented on [#3008](https://github.com/dipy/dipy/pull/3008#issuecomment-1852359600) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#1268](https://github.com/rpm-software-management/mock/pull/1268#issuecomment-1852221796) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -4. 🗣 Commented on [#57](https://github.com/eastgenomics/trendyQC/pull/57#issuecomment-1852180200) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -5. 🗣 Commented on [#1636](https://github.com/HEXRD/hexrdgui/pull/1636#issuecomment-1852154827) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -6. 🗣 Commented on [#890](https://github.com/PyThaiNLP/pythainlp/pull/890#issuecomment-1852072692) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -7. 🗣 Commented on [#59](https://github.com/expertspec/expert/pull/59#issuecomment-1852065630) in [expertspec/expert](https://github.com/expertspec/expert) -8. 🗣 Commented on [#63](https://github.com/eastgenomics/eris/pull/63#issuecomment-1851925476) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#3078](https://github.com/reframe-hpc/reframe/pull/3078#issuecomment-1851813231) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -10. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_optimised_filtering/pull/11#issuecomment-1851705827) in [eastgenomics/eggd_optimised_filtering](https://github.com/eastgenomics/eggd_optimised_filtering) +1. 🗣 Commented on [#2667](https://github.com/metabrainz/listenbrainz-server/pull/2667#issuecomment-1852568084) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#891](https://github.com/PyThaiNLP/pythainlp/pull/891#issuecomment-1852536738) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#1362](https://github.com/NeuralEnsemble/python-neo/pull/1362#issuecomment-1852483410) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +4. 🗣 Commented on [#3008](https://github.com/dipy/dipy/pull/3008#issuecomment-1852359600) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#1268](https://github.com/rpm-software-management/mock/pull/1268#issuecomment-1852221796) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +6. 🗣 Commented on [#57](https://github.com/eastgenomics/trendyQC/pull/57#issuecomment-1852180200) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +7. 🗣 Commented on [#1636](https://github.com/HEXRD/hexrdgui/pull/1636#issuecomment-1852154827) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +8. 🗣 Commented on [#890](https://github.com/PyThaiNLP/pythainlp/pull/890#issuecomment-1852072692) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#59](https://github.com/expertspec/expert/pull/59#issuecomment-1852065630) in [expertspec/expert](https://github.com/expertspec/expert) +10. 🗣 Commented on [#63](https://github.com/eastgenomics/eris/pull/63#issuecomment-1851925476) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 1801d6953a0b0f08c3e408e6ccccd4f17978817c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 19:13:35 +0000 Subject: [PATCH 0902/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 72e8a27f..36f7c24c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2667](https://github.com/metabrainz/listenbrainz-server/pull/2667#issuecomment-1852568084) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#891](https://github.com/PyThaiNLP/pythainlp/pull/891#issuecomment-1852536738) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#1362](https://github.com/NeuralEnsemble/python-neo/pull/1362#issuecomment-1852483410) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -4. 🗣 Commented on [#3008](https://github.com/dipy/dipy/pull/3008#issuecomment-1852359600) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#1268](https://github.com/rpm-software-management/mock/pull/1268#issuecomment-1852221796) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -6. 🗣 Commented on [#57](https://github.com/eastgenomics/trendyQC/pull/57#issuecomment-1852180200) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -7. 🗣 Commented on [#1636](https://github.com/HEXRD/hexrdgui/pull/1636#issuecomment-1852154827) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -8. 🗣 Commented on [#890](https://github.com/PyThaiNLP/pythainlp/pull/890#issuecomment-1852072692) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#59](https://github.com/expertspec/expert/pull/59#issuecomment-1852065630) in [expertspec/expert](https://github.com/expertspec/expert) -10. 🗣 Commented on [#63](https://github.com/eastgenomics/eris/pull/63#issuecomment-1851925476) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#221](https://github.com/CartoonFan/lutris/pull/221#issuecomment-1852611482) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#2667](https://github.com/metabrainz/listenbrainz-server/pull/2667#issuecomment-1852568084) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#891](https://github.com/PyThaiNLP/pythainlp/pull/891#issuecomment-1852536738) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#1362](https://github.com/NeuralEnsemble/python-neo/pull/1362#issuecomment-1852483410) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +5. 🗣 Commented on [#3008](https://github.com/dipy/dipy/pull/3008#issuecomment-1852359600) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#1268](https://github.com/rpm-software-management/mock/pull/1268#issuecomment-1852221796) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +7. 🗣 Commented on [#57](https://github.com/eastgenomics/trendyQC/pull/57#issuecomment-1852180200) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +8. 🗣 Commented on [#1636](https://github.com/HEXRD/hexrdgui/pull/1636#issuecomment-1852154827) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +9. 🗣 Commented on [#890](https://github.com/PyThaiNLP/pythainlp/pull/890#issuecomment-1852072692) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +10. 🗣 Commented on [#59](https://github.com/expertspec/expert/pull/59#issuecomment-1852065630) in [expertspec/expert](https://github.com/expertspec/expert) From 3b66cba7c52893bbf66170957fd4395bdeac7f06 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 20:17:36 +0000 Subject: [PATCH 0903/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 36f7c24c..9feb73e9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#221](https://github.com/CartoonFan/lutris/pull/221#issuecomment-1852611482) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#2667](https://github.com/metabrainz/listenbrainz-server/pull/2667#issuecomment-1852568084) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#891](https://github.com/PyThaiNLP/pythainlp/pull/891#issuecomment-1852536738) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#1362](https://github.com/NeuralEnsemble/python-neo/pull/1362#issuecomment-1852483410) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -5. 🗣 Commented on [#3008](https://github.com/dipy/dipy/pull/3008#issuecomment-1852359600) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#1268](https://github.com/rpm-software-management/mock/pull/1268#issuecomment-1852221796) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -7. 🗣 Commented on [#57](https://github.com/eastgenomics/trendyQC/pull/57#issuecomment-1852180200) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -8. 🗣 Commented on [#1636](https://github.com/HEXRD/hexrdgui/pull/1636#issuecomment-1852154827) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -9. 🗣 Commented on [#890](https://github.com/PyThaiNLP/pythainlp/pull/890#issuecomment-1852072692) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -10. 🗣 Commented on [#59](https://github.com/expertspec/expert/pull/59#issuecomment-1852065630) in [expertspec/expert](https://github.com/expertspec/expert) +1. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1852736851) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#221](https://github.com/CartoonFan/lutris/pull/221#issuecomment-1852611482) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#2667](https://github.com/metabrainz/listenbrainz-server/pull/2667#issuecomment-1852568084) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#891](https://github.com/PyThaiNLP/pythainlp/pull/891#issuecomment-1852536738) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#1362](https://github.com/NeuralEnsemble/python-neo/pull/1362#issuecomment-1852483410) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +6. 🗣 Commented on [#3008](https://github.com/dipy/dipy/pull/3008#issuecomment-1852359600) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#1268](https://github.com/rpm-software-management/mock/pull/1268#issuecomment-1852221796) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +8. 🗣 Commented on [#57](https://github.com/eastgenomics/trendyQC/pull/57#issuecomment-1852180200) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +9. 🗣 Commented on [#1636](https://github.com/HEXRD/hexrdgui/pull/1636#issuecomment-1852154827) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +10. 🗣 Commented on [#890](https://github.com/PyThaiNLP/pythainlp/pull/890#issuecomment-1852072692) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) From 48d90b495083934a537bc9e54f9e969e3eba83f5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 20:37:21 +0000 Subject: [PATCH 0904/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9feb73e9..5cda0e7a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1852736851) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#221](https://github.com/CartoonFan/lutris/pull/221#issuecomment-1852611482) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#2667](https://github.com/metabrainz/listenbrainz-server/pull/2667#issuecomment-1852568084) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#891](https://github.com/PyThaiNLP/pythainlp/pull/891#issuecomment-1852536738) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#1362](https://github.com/NeuralEnsemble/python-neo/pull/1362#issuecomment-1852483410) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -6. 🗣 Commented on [#3008](https://github.com/dipy/dipy/pull/3008#issuecomment-1852359600) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#1268](https://github.com/rpm-software-management/mock/pull/1268#issuecomment-1852221796) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -8. 🗣 Commented on [#57](https://github.com/eastgenomics/trendyQC/pull/57#issuecomment-1852180200) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -9. 🗣 Commented on [#1636](https://github.com/HEXRD/hexrdgui/pull/1636#issuecomment-1852154827) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -10. 🗣 Commented on [#890](https://github.com/PyThaiNLP/pythainlp/pull/890#issuecomment-1852072692) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +1. 🗣 Commented on [#2668](https://github.com/metabrainz/listenbrainz-server/pull/2668#issuecomment-1852757956) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1852736851) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#221](https://github.com/CartoonFan/lutris/pull/221#issuecomment-1852611482) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#2667](https://github.com/metabrainz/listenbrainz-server/pull/2667#issuecomment-1852568084) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#891](https://github.com/PyThaiNLP/pythainlp/pull/891#issuecomment-1852536738) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#1362](https://github.com/NeuralEnsemble/python-neo/pull/1362#issuecomment-1852483410) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +7. 🗣 Commented on [#3008](https://github.com/dipy/dipy/pull/3008#issuecomment-1852359600) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#1268](https://github.com/rpm-software-management/mock/pull/1268#issuecomment-1852221796) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +9. 🗣 Commented on [#57](https://github.com/eastgenomics/trendyQC/pull/57#issuecomment-1852180200) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +10. 🗣 Commented on [#1636](https://github.com/HEXRD/hexrdgui/pull/1636#issuecomment-1852154827) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) From 8f4439728ee7418c990840df8c818e3300f98edf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Dec 2023 23:37:27 +0000 Subject: [PATCH 0905/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5cda0e7a..844217e7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2668](https://github.com/metabrainz/listenbrainz-server/pull/2668#issuecomment-1852757956) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1852736851) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#221](https://github.com/CartoonFan/lutris/pull/221#issuecomment-1852611482) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#2667](https://github.com/metabrainz/listenbrainz-server/pull/2667#issuecomment-1852568084) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#891](https://github.com/PyThaiNLP/pythainlp/pull/891#issuecomment-1852536738) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#1362](https://github.com/NeuralEnsemble/python-neo/pull/1362#issuecomment-1852483410) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -7. 🗣 Commented on [#3008](https://github.com/dipy/dipy/pull/3008#issuecomment-1852359600) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#1268](https://github.com/rpm-software-management/mock/pull/1268#issuecomment-1852221796) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -9. 🗣 Commented on [#57](https://github.com/eastgenomics/trendyQC/pull/57#issuecomment-1852180200) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -10. 🗣 Commented on [#1636](https://github.com/HEXRD/hexrdgui/pull/1636#issuecomment-1852154827) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +1. 🗣 Commented on [#57](https://github.com/foreign-sub/aiofreepybox/pull/57#issuecomment-1852996035) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +2. 🗣 Commented on [#2668](https://github.com/metabrainz/listenbrainz-server/pull/2668#issuecomment-1852757956) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1852736851) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#221](https://github.com/CartoonFan/lutris/pull/221#issuecomment-1852611482) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#2667](https://github.com/metabrainz/listenbrainz-server/pull/2667#issuecomment-1852568084) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#891](https://github.com/PyThaiNLP/pythainlp/pull/891#issuecomment-1852536738) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +7. 🗣 Commented on [#1362](https://github.com/NeuralEnsemble/python-neo/pull/1362#issuecomment-1852483410) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +8. 🗣 Commented on [#3008](https://github.com/dipy/dipy/pull/3008#issuecomment-1852359600) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#1268](https://github.com/rpm-software-management/mock/pull/1268#issuecomment-1852221796) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +10. 🗣 Commented on [#57](https://github.com/eastgenomics/trendyQC/pull/57#issuecomment-1852180200) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) From 99e22a05f06c16b6f6685a55c0abce09893b157e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 01:14:05 +0000 Subject: [PATCH 0906/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 844217e7..6431fb9a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#57](https://github.com/foreign-sub/aiofreepybox/pull/57#issuecomment-1852996035) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -2. 🗣 Commented on [#2668](https://github.com/metabrainz/listenbrainz-server/pull/2668#issuecomment-1852757956) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1852736851) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#221](https://github.com/CartoonFan/lutris/pull/221#issuecomment-1852611482) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#2667](https://github.com/metabrainz/listenbrainz-server/pull/2667#issuecomment-1852568084) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#891](https://github.com/PyThaiNLP/pythainlp/pull/891#issuecomment-1852536738) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -7. 🗣 Commented on [#1362](https://github.com/NeuralEnsemble/python-neo/pull/1362#issuecomment-1852483410) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -8. 🗣 Commented on [#3008](https://github.com/dipy/dipy/pull/3008#issuecomment-1852359600) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#1268](https://github.com/rpm-software-management/mock/pull/1268#issuecomment-1852221796) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -10. 🗣 Commented on [#57](https://github.com/eastgenomics/trendyQC/pull/57#issuecomment-1852180200) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnimateAnyone-unofficial/pull/1#issuecomment-1853036724) in [tuhinmallick/AnimateAnyone-unofficial](https://github.com/tuhinmallick/AnimateAnyone-unofficial) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/MixtralKit/pull/1#issuecomment-1853030770) in [tuhinmallick/MixtralKit](https://github.com/tuhinmallick/MixtralKit) +3. 🗣 Commented on [#57](https://github.com/foreign-sub/aiofreepybox/pull/57#issuecomment-1852996035) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +4. 🗣 Commented on [#2668](https://github.com/metabrainz/listenbrainz-server/pull/2668#issuecomment-1852757956) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1852736851) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#221](https://github.com/CartoonFan/lutris/pull/221#issuecomment-1852611482) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#2667](https://github.com/metabrainz/listenbrainz-server/pull/2667#issuecomment-1852568084) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#891](https://github.com/PyThaiNLP/pythainlp/pull/891#issuecomment-1852536738) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#1362](https://github.com/NeuralEnsemble/python-neo/pull/1362#issuecomment-1852483410) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +10. 🗣 Commented on [#3008](https://github.com/dipy/dipy/pull/3008#issuecomment-1852359600) in [dipy/dipy](https://github.com/dipy/dipy) From 5dcefcb0fdae3961d5f6c934200e1ec8309de790 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 09:37:24 +0000 Subject: [PATCH 0907/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6431fb9a..c9c16714 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnimateAnyone-unofficial/pull/1#issuecomment-1853036724) in [tuhinmallick/AnimateAnyone-unofficial](https://github.com/tuhinmallick/AnimateAnyone-unofficial) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/MixtralKit/pull/1#issuecomment-1853030770) in [tuhinmallick/MixtralKit](https://github.com/tuhinmallick/MixtralKit) -3. 🗣 Commented on [#57](https://github.com/foreign-sub/aiofreepybox/pull/57#issuecomment-1852996035) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -4. 🗣 Commented on [#2668](https://github.com/metabrainz/listenbrainz-server/pull/2668#issuecomment-1852757956) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1852736851) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#221](https://github.com/CartoonFan/lutris/pull/221#issuecomment-1852611482) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#2667](https://github.com/metabrainz/listenbrainz-server/pull/2667#issuecomment-1852568084) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#891](https://github.com/PyThaiNLP/pythainlp/pull/891#issuecomment-1852536738) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#1362](https://github.com/NeuralEnsemble/python-neo/pull/1362#issuecomment-1852483410) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) -10. 🗣 Commented on [#3008](https://github.com/dipy/dipy/pull/3008#issuecomment-1852359600) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#950](https://github.com/avaframe/AvaFrame/pull/950#issuecomment-1853565099) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnimateAnyone-unofficial/pull/1#issuecomment-1853036724) in [tuhinmallick/AnimateAnyone-unofficial](https://github.com/tuhinmallick/AnimateAnyone-unofficial) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/MixtralKit/pull/1#issuecomment-1853030770) in [tuhinmallick/MixtralKit](https://github.com/tuhinmallick/MixtralKit) +4. 🗣 Commented on [#57](https://github.com/foreign-sub/aiofreepybox/pull/57#issuecomment-1852996035) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +5. 🗣 Commented on [#2668](https://github.com/metabrainz/listenbrainz-server/pull/2668#issuecomment-1852757956) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1852736851) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#221](https://github.com/CartoonFan/lutris/pull/221#issuecomment-1852611482) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#2667](https://github.com/metabrainz/listenbrainz-server/pull/2667#issuecomment-1852568084) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#891](https://github.com/PyThaiNLP/pythainlp/pull/891#issuecomment-1852536738) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +10. 🗣 Commented on [#1362](https://github.com/NeuralEnsemble/python-neo/pull/1362#issuecomment-1852483410) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) From b4d0e335184f8fc4dcb72506c9583418cdfa6ef1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 10:17:59 +0000 Subject: [PATCH 0908/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c9c16714..b56467d9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#950](https://github.com/avaframe/AvaFrame/pull/950#issuecomment-1853565099) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnimateAnyone-unofficial/pull/1#issuecomment-1853036724) in [tuhinmallick/AnimateAnyone-unofficial](https://github.com/tuhinmallick/AnimateAnyone-unofficial) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/MixtralKit/pull/1#issuecomment-1853030770) in [tuhinmallick/MixtralKit](https://github.com/tuhinmallick/MixtralKit) -4. 🗣 Commented on [#57](https://github.com/foreign-sub/aiofreepybox/pull/57#issuecomment-1852996035) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -5. 🗣 Commented on [#2668](https://github.com/metabrainz/listenbrainz-server/pull/2668#issuecomment-1852757956) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1852736851) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#221](https://github.com/CartoonFan/lutris/pull/221#issuecomment-1852611482) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#2667](https://github.com/metabrainz/listenbrainz-server/pull/2667#issuecomment-1852568084) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#891](https://github.com/PyThaiNLP/pythainlp/pull/891#issuecomment-1852536738) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -10. 🗣 Commented on [#1362](https://github.com/NeuralEnsemble/python-neo/pull/1362#issuecomment-1852483410) in [NeuralEnsemble/python-neo](https://github.com/NeuralEnsemble/python-neo) +1. 🗣 Commented on [#251](https://github.com/aimclub/GOLEM/pull/251#issuecomment-1853591302) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#950](https://github.com/avaframe/AvaFrame/pull/950#issuecomment-1853565099) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnimateAnyone-unofficial/pull/1#issuecomment-1853036724) in [tuhinmallick/AnimateAnyone-unofficial](https://github.com/tuhinmallick/AnimateAnyone-unofficial) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/MixtralKit/pull/1#issuecomment-1853030770) in [tuhinmallick/MixtralKit](https://github.com/tuhinmallick/MixtralKit) +5. 🗣 Commented on [#57](https://github.com/foreign-sub/aiofreepybox/pull/57#issuecomment-1852996035) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +6. 🗣 Commented on [#2668](https://github.com/metabrainz/listenbrainz-server/pull/2668#issuecomment-1852757956) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1852736851) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#221](https://github.com/CartoonFan/lutris/pull/221#issuecomment-1852611482) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#2667](https://github.com/metabrainz/listenbrainz-server/pull/2667#issuecomment-1852568084) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#891](https://github.com/PyThaiNLP/pythainlp/pull/891#issuecomment-1852536738) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) From 909af6fe43c82f5da5b48c02669bb123de5628bb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 13:20:05 +0000 Subject: [PATCH 0909/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b56467d9..d52ad5e3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#251](https://github.com/aimclub/GOLEM/pull/251#issuecomment-1853591302) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#950](https://github.com/avaframe/AvaFrame/pull/950#issuecomment-1853565099) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnimateAnyone-unofficial/pull/1#issuecomment-1853036724) in [tuhinmallick/AnimateAnyone-unofficial](https://github.com/tuhinmallick/AnimateAnyone-unofficial) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/MixtralKit/pull/1#issuecomment-1853030770) in [tuhinmallick/MixtralKit](https://github.com/tuhinmallick/MixtralKit) -5. 🗣 Commented on [#57](https://github.com/foreign-sub/aiofreepybox/pull/57#issuecomment-1852996035) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -6. 🗣 Commented on [#2668](https://github.com/metabrainz/listenbrainz-server/pull/2668#issuecomment-1852757956) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1852736851) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#221](https://github.com/CartoonFan/lutris/pull/221#issuecomment-1852611482) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#2667](https://github.com/metabrainz/listenbrainz-server/pull/2667#issuecomment-1852568084) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#891](https://github.com/PyThaiNLP/pythainlp/pull/891#issuecomment-1852536738) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +1. 🗣 Commented on [#88](https://github.com/ITMO-NSS-team/GAMLET/pull/88#issuecomment-1853876589) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +2. 🗣 Commented on [#251](https://github.com/aimclub/GOLEM/pull/251#issuecomment-1853591302) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#950](https://github.com/avaframe/AvaFrame/pull/950#issuecomment-1853565099) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnimateAnyone-unofficial/pull/1#issuecomment-1853036724) in [tuhinmallick/AnimateAnyone-unofficial](https://github.com/tuhinmallick/AnimateAnyone-unofficial) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/MixtralKit/pull/1#issuecomment-1853030770) in [tuhinmallick/MixtralKit](https://github.com/tuhinmallick/MixtralKit) +6. 🗣 Commented on [#57](https://github.com/foreign-sub/aiofreepybox/pull/57#issuecomment-1852996035) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +7. 🗣 Commented on [#2668](https://github.com/metabrainz/listenbrainz-server/pull/2668#issuecomment-1852757956) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1852736851) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#221](https://github.com/CartoonFan/lutris/pull/221#issuecomment-1852611482) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#2667](https://github.com/metabrainz/listenbrainz-server/pull/2667#issuecomment-1852568084) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 96c3ec4686b9be6dc0f0d2b4152f271a2bffc8f6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 14:37:44 +0000 Subject: [PATCH 0910/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d52ad5e3..4712836b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#88](https://github.com/ITMO-NSS-team/GAMLET/pull/88#issuecomment-1853876589) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -2. 🗣 Commented on [#251](https://github.com/aimclub/GOLEM/pull/251#issuecomment-1853591302) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#950](https://github.com/avaframe/AvaFrame/pull/950#issuecomment-1853565099) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnimateAnyone-unofficial/pull/1#issuecomment-1853036724) in [tuhinmallick/AnimateAnyone-unofficial](https://github.com/tuhinmallick/AnimateAnyone-unofficial) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/MixtralKit/pull/1#issuecomment-1853030770) in [tuhinmallick/MixtralKit](https://github.com/tuhinmallick/MixtralKit) -6. 🗣 Commented on [#57](https://github.com/foreign-sub/aiofreepybox/pull/57#issuecomment-1852996035) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -7. 🗣 Commented on [#2668](https://github.com/metabrainz/listenbrainz-server/pull/2668#issuecomment-1852757956) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1852736851) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#221](https://github.com/CartoonFan/lutris/pull/221#issuecomment-1852611482) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#2667](https://github.com/metabrainz/listenbrainz-server/pull/2667#issuecomment-1852568084) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_QC_Classifier/pull/5#issuecomment-1854029734) in [eastgenomics/eggd_QC_Classifier](https://github.com/eastgenomics/eggd_QC_Classifier) +2. 🗣 Commented on [#21](https://github.com/ITMO-NSS-team/pytsbe/pull/21#issuecomment-1854003087) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +3. 🗣 Commented on [#88](https://github.com/ITMO-NSS-team/GAMLET/pull/88#issuecomment-1853876589) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +4. 🗣 Commented on [#251](https://github.com/aimclub/GOLEM/pull/251#issuecomment-1853591302) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#950](https://github.com/avaframe/AvaFrame/pull/950#issuecomment-1853565099) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnimateAnyone-unofficial/pull/1#issuecomment-1853036724) in [tuhinmallick/AnimateAnyone-unofficial](https://github.com/tuhinmallick/AnimateAnyone-unofficial) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/MixtralKit/pull/1#issuecomment-1853030770) in [tuhinmallick/MixtralKit](https://github.com/tuhinmallick/MixtralKit) +8. 🗣 Commented on [#57](https://github.com/foreign-sub/aiofreepybox/pull/57#issuecomment-1852996035) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +9. 🗣 Commented on [#2668](https://github.com/metabrainz/listenbrainz-server/pull/2668#issuecomment-1852757956) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1852736851) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 83e0485810649cb8705db79b17da45e0f3db9cd6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 15:17:39 +0000 Subject: [PATCH 0911/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4712836b..33e888c0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_QC_Classifier/pull/5#issuecomment-1854029734) in [eastgenomics/eggd_QC_Classifier](https://github.com/eastgenomics/eggd_QC_Classifier) -2. 🗣 Commented on [#21](https://github.com/ITMO-NSS-team/pytsbe/pull/21#issuecomment-1854003087) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) -3. 🗣 Commented on [#88](https://github.com/ITMO-NSS-team/GAMLET/pull/88#issuecomment-1853876589) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -4. 🗣 Commented on [#251](https://github.com/aimclub/GOLEM/pull/251#issuecomment-1853591302) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#950](https://github.com/avaframe/AvaFrame/pull/950#issuecomment-1853565099) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnimateAnyone-unofficial/pull/1#issuecomment-1853036724) in [tuhinmallick/AnimateAnyone-unofficial](https://github.com/tuhinmallick/AnimateAnyone-unofficial) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/MixtralKit/pull/1#issuecomment-1853030770) in [tuhinmallick/MixtralKit](https://github.com/tuhinmallick/MixtralKit) -8. 🗣 Commented on [#57](https://github.com/foreign-sub/aiofreepybox/pull/57#issuecomment-1852996035) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -9. 🗣 Commented on [#2668](https://github.com/metabrainz/listenbrainz-server/pull/2668#issuecomment-1852757956) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#1023](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1023#issuecomment-1852736851) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#98](https://github.com/aimclub/BAMT/pull/98#issuecomment-1854038944) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +2. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_QC_Classifier/pull/5#issuecomment-1854029734) in [eastgenomics/eggd_QC_Classifier](https://github.com/eastgenomics/eggd_QC_Classifier) +3. 🗣 Commented on [#21](https://github.com/ITMO-NSS-team/pytsbe/pull/21#issuecomment-1854003087) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +4. 🗣 Commented on [#88](https://github.com/ITMO-NSS-team/GAMLET/pull/88#issuecomment-1853876589) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +5. 🗣 Commented on [#251](https://github.com/aimclub/GOLEM/pull/251#issuecomment-1853591302) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#950](https://github.com/avaframe/AvaFrame/pull/950#issuecomment-1853565099) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnimateAnyone-unofficial/pull/1#issuecomment-1853036724) in [tuhinmallick/AnimateAnyone-unofficial](https://github.com/tuhinmallick/AnimateAnyone-unofficial) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/MixtralKit/pull/1#issuecomment-1853030770) in [tuhinmallick/MixtralKit](https://github.com/tuhinmallick/MixtralKit) +9. 🗣 Commented on [#57](https://github.com/foreign-sub/aiofreepybox/pull/57#issuecomment-1852996035) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +10. 🗣 Commented on [#2668](https://github.com/metabrainz/listenbrainz-server/pull/2668#issuecomment-1852757956) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From d649314e9f03f4353f5e4c67adbc37f6b165185d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 16:21:13 +0000 Subject: [PATCH 0912/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 33e888c0..d5628cdd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#98](https://github.com/aimclub/BAMT/pull/98#issuecomment-1854038944) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -2. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_QC_Classifier/pull/5#issuecomment-1854029734) in [eastgenomics/eggd_QC_Classifier](https://github.com/eastgenomics/eggd_QC_Classifier) -3. 🗣 Commented on [#21](https://github.com/ITMO-NSS-team/pytsbe/pull/21#issuecomment-1854003087) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) -4. 🗣 Commented on [#88](https://github.com/ITMO-NSS-team/GAMLET/pull/88#issuecomment-1853876589) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -5. 🗣 Commented on [#251](https://github.com/aimclub/GOLEM/pull/251#issuecomment-1853591302) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#950](https://github.com/avaframe/AvaFrame/pull/950#issuecomment-1853565099) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnimateAnyone-unofficial/pull/1#issuecomment-1853036724) in [tuhinmallick/AnimateAnyone-unofficial](https://github.com/tuhinmallick/AnimateAnyone-unofficial) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/MixtralKit/pull/1#issuecomment-1853030770) in [tuhinmallick/MixtralKit](https://github.com/tuhinmallick/MixtralKit) -9. 🗣 Commented on [#57](https://github.com/foreign-sub/aiofreepybox/pull/57#issuecomment-1852996035) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -10. 🗣 Commented on [#2668](https://github.com/metabrainz/listenbrainz-server/pull/2668#issuecomment-1852757956) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#89](https://github.com/ITMO-NSS-team/GAMLET/pull/89#issuecomment-1854239137) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +2. 🗣 Commented on [#64](https://github.com/eastgenomics/eris/pull/64#issuecomment-1854220971) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#92](https://github.com/INT-NIT/DigLabTools/pull/92#issuecomment-1854172019) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +4. 🗣 Commented on [#98](https://github.com/aimclub/BAMT/pull/98#issuecomment-1854038944) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +5. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_QC_Classifier/pull/5#issuecomment-1854029734) in [eastgenomics/eggd_QC_Classifier](https://github.com/eastgenomics/eggd_QC_Classifier) +6. 🗣 Commented on [#21](https://github.com/ITMO-NSS-team/pytsbe/pull/21#issuecomment-1854003087) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +7. 🗣 Commented on [#88](https://github.com/ITMO-NSS-team/GAMLET/pull/88#issuecomment-1853876589) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +8. 🗣 Commented on [#251](https://github.com/aimclub/GOLEM/pull/251#issuecomment-1853591302) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#950](https://github.com/avaframe/AvaFrame/pull/950#issuecomment-1853565099) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnimateAnyone-unofficial/pull/1#issuecomment-1853036724) in [tuhinmallick/AnimateAnyone-unofficial](https://github.com/tuhinmallick/AnimateAnyone-unofficial) From 5e9b52da215841d0b1d3d97c07524c6a5395d280 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 17:15:02 +0000 Subject: [PATCH 0913/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d5628cdd..5ad5cba0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#89](https://github.com/ITMO-NSS-team/GAMLET/pull/89#issuecomment-1854239137) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -2. 🗣 Commented on [#64](https://github.com/eastgenomics/eris/pull/64#issuecomment-1854220971) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#92](https://github.com/INT-NIT/DigLabTools/pull/92#issuecomment-1854172019) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -4. 🗣 Commented on [#98](https://github.com/aimclub/BAMT/pull/98#issuecomment-1854038944) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -5. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_QC_Classifier/pull/5#issuecomment-1854029734) in [eastgenomics/eggd_QC_Classifier](https://github.com/eastgenomics/eggd_QC_Classifier) -6. 🗣 Commented on [#21](https://github.com/ITMO-NSS-team/pytsbe/pull/21#issuecomment-1854003087) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) -7. 🗣 Commented on [#88](https://github.com/ITMO-NSS-team/GAMLET/pull/88#issuecomment-1853876589) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -8. 🗣 Commented on [#251](https://github.com/aimclub/GOLEM/pull/251#issuecomment-1853591302) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#950](https://github.com/avaframe/AvaFrame/pull/950#issuecomment-1853565099) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/AnimateAnyone-unofficial/pull/1#issuecomment-1853036724) in [tuhinmallick/AnimateAnyone-unofficial](https://github.com/tuhinmallick/AnimateAnyone-unofficial) +1. 🗣 Commented on [#3](https://github.com/eastgenomics/gene_annotation2bed/pull/3#issuecomment-1854338946) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +2. 🗣 Commented on [#89](https://github.com/ITMO-NSS-team/GAMLET/pull/89#issuecomment-1854239137) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +3. 🗣 Commented on [#64](https://github.com/eastgenomics/eris/pull/64#issuecomment-1854220971) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#92](https://github.com/INT-NIT/DigLabTools/pull/92#issuecomment-1854172019) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +5. 🗣 Commented on [#98](https://github.com/aimclub/BAMT/pull/98#issuecomment-1854038944) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +6. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_QC_Classifier/pull/5#issuecomment-1854029734) in [eastgenomics/eggd_QC_Classifier](https://github.com/eastgenomics/eggd_QC_Classifier) +7. 🗣 Commented on [#21](https://github.com/ITMO-NSS-team/pytsbe/pull/21#issuecomment-1854003087) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +8. 🗣 Commented on [#88](https://github.com/ITMO-NSS-team/GAMLET/pull/88#issuecomment-1853876589) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +9. 🗣 Commented on [#251](https://github.com/aimclub/GOLEM/pull/251#issuecomment-1853591302) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#950](https://github.com/avaframe/AvaFrame/pull/950#issuecomment-1853565099) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From e71de35c9d127ea4c4b476c7a677820f12785f23 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 21:14:28 +0000 Subject: [PATCH 0914/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5ad5cba0..36347654 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3](https://github.com/eastgenomics/gene_annotation2bed/pull/3#issuecomment-1854338946) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -2. 🗣 Commented on [#89](https://github.com/ITMO-NSS-team/GAMLET/pull/89#issuecomment-1854239137) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -3. 🗣 Commented on [#64](https://github.com/eastgenomics/eris/pull/64#issuecomment-1854220971) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#92](https://github.com/INT-NIT/DigLabTools/pull/92#issuecomment-1854172019) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -5. 🗣 Commented on [#98](https://github.com/aimclub/BAMT/pull/98#issuecomment-1854038944) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -6. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_QC_Classifier/pull/5#issuecomment-1854029734) in [eastgenomics/eggd_QC_Classifier](https://github.com/eastgenomics/eggd_QC_Classifier) -7. 🗣 Commented on [#21](https://github.com/ITMO-NSS-team/pytsbe/pull/21#issuecomment-1854003087) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) -8. 🗣 Commented on [#88](https://github.com/ITMO-NSS-team/GAMLET/pull/88#issuecomment-1853876589) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -9. 🗣 Commented on [#251](https://github.com/aimclub/GOLEM/pull/251#issuecomment-1853591302) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#950](https://github.com/avaframe/AvaFrame/pull/950#issuecomment-1853565099) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#507](https://github.com/UIUCLibrary/Speedwagon/pull/507#issuecomment-1854696892) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +2. 🗣 Commented on [#3](https://github.com/eastgenomics/gene_annotation2bed/pull/3#issuecomment-1854338946) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +3. 🗣 Commented on [#89](https://github.com/ITMO-NSS-team/GAMLET/pull/89#issuecomment-1854239137) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +4. 🗣 Commented on [#64](https://github.com/eastgenomics/eris/pull/64#issuecomment-1854220971) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#92](https://github.com/INT-NIT/DigLabTools/pull/92#issuecomment-1854172019) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +6. 🗣 Commented on [#98](https://github.com/aimclub/BAMT/pull/98#issuecomment-1854038944) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +7. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_QC_Classifier/pull/5#issuecomment-1854029734) in [eastgenomics/eggd_QC_Classifier](https://github.com/eastgenomics/eggd_QC_Classifier) +8. 🗣 Commented on [#21](https://github.com/ITMO-NSS-team/pytsbe/pull/21#issuecomment-1854003087) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +9. 🗣 Commented on [#88](https://github.com/ITMO-NSS-team/GAMLET/pull/88#issuecomment-1853876589) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +10. 🗣 Commented on [#251](https://github.com/aimclub/GOLEM/pull/251#issuecomment-1853591302) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) From ec315eed783ed881590bd81b0e63e89d20c86245 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 21:37:20 +0000 Subject: [PATCH 0915/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 36347654..2dc10158 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#507](https://github.com/UIUCLibrary/Speedwagon/pull/507#issuecomment-1854696892) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -2. 🗣 Commented on [#3](https://github.com/eastgenomics/gene_annotation2bed/pull/3#issuecomment-1854338946) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -3. 🗣 Commented on [#89](https://github.com/ITMO-NSS-team/GAMLET/pull/89#issuecomment-1854239137) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -4. 🗣 Commented on [#64](https://github.com/eastgenomics/eris/pull/64#issuecomment-1854220971) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#92](https://github.com/INT-NIT/DigLabTools/pull/92#issuecomment-1854172019) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -6. 🗣 Commented on [#98](https://github.com/aimclub/BAMT/pull/98#issuecomment-1854038944) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -7. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_QC_Classifier/pull/5#issuecomment-1854029734) in [eastgenomics/eggd_QC_Classifier](https://github.com/eastgenomics/eggd_QC_Classifier) -8. 🗣 Commented on [#21](https://github.com/ITMO-NSS-team/pytsbe/pull/21#issuecomment-1854003087) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) -9. 🗣 Commented on [#88](https://github.com/ITMO-NSS-team/GAMLET/pull/88#issuecomment-1853876589) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -10. 🗣 Commented on [#251](https://github.com/aimclub/GOLEM/pull/251#issuecomment-1853591302) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +1. 🗣 Commented on [#844](https://github.com/scilus/scilpy/pull/844#issuecomment-1854734787) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#3011](https://github.com/dipy/dipy/pull/3011#issuecomment-1854732810) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#507](https://github.com/UIUCLibrary/Speedwagon/pull/507#issuecomment-1854696892) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +4. 🗣 Commented on [#3](https://github.com/eastgenomics/gene_annotation2bed/pull/3#issuecomment-1854338946) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +5. 🗣 Commented on [#89](https://github.com/ITMO-NSS-team/GAMLET/pull/89#issuecomment-1854239137) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +6. 🗣 Commented on [#64](https://github.com/eastgenomics/eris/pull/64#issuecomment-1854220971) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#92](https://github.com/INT-NIT/DigLabTools/pull/92#issuecomment-1854172019) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +8. 🗣 Commented on [#98](https://github.com/aimclub/BAMT/pull/98#issuecomment-1854038944) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +9. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_QC_Classifier/pull/5#issuecomment-1854029734) in [eastgenomics/eggd_QC_Classifier](https://github.com/eastgenomics/eggd_QC_Classifier) +10. 🗣 Commented on [#21](https://github.com/ITMO-NSS-team/pytsbe/pull/21#issuecomment-1854003087) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) From 757cd1f88b7b40e962594505a2383d81fca0c5fb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 23:16:35 +0000 Subject: [PATCH 0916/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2dc10158..614f9c15 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#844](https://github.com/scilus/scilpy/pull/844#issuecomment-1854734787) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#3011](https://github.com/dipy/dipy/pull/3011#issuecomment-1854732810) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#507](https://github.com/UIUCLibrary/Speedwagon/pull/507#issuecomment-1854696892) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -4. 🗣 Commented on [#3](https://github.com/eastgenomics/gene_annotation2bed/pull/3#issuecomment-1854338946) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -5. 🗣 Commented on [#89](https://github.com/ITMO-NSS-team/GAMLET/pull/89#issuecomment-1854239137) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -6. 🗣 Commented on [#64](https://github.com/eastgenomics/eris/pull/64#issuecomment-1854220971) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#92](https://github.com/INT-NIT/DigLabTools/pull/92#issuecomment-1854172019) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -8. 🗣 Commented on [#98](https://github.com/aimclub/BAMT/pull/98#issuecomment-1854038944) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -9. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_QC_Classifier/pull/5#issuecomment-1854029734) in [eastgenomics/eggd_QC_Classifier](https://github.com/eastgenomics/eggd_QC_Classifier) -10. 🗣 Commented on [#21](https://github.com/ITMO-NSS-team/pytsbe/pull/21#issuecomment-1854003087) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +1. 🗣 Commented on [#845](https://github.com/scilus/scilpy/pull/845#issuecomment-1854832490) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#844](https://github.com/scilus/scilpy/pull/844#issuecomment-1854734787) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#3011](https://github.com/dipy/dipy/pull/3011#issuecomment-1854732810) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#507](https://github.com/UIUCLibrary/Speedwagon/pull/507#issuecomment-1854696892) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +5. 🗣 Commented on [#3](https://github.com/eastgenomics/gene_annotation2bed/pull/3#issuecomment-1854338946) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +6. 🗣 Commented on [#89](https://github.com/ITMO-NSS-team/GAMLET/pull/89#issuecomment-1854239137) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +7. 🗣 Commented on [#64](https://github.com/eastgenomics/eris/pull/64#issuecomment-1854220971) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#92](https://github.com/INT-NIT/DigLabTools/pull/92#issuecomment-1854172019) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +9. 🗣 Commented on [#98](https://github.com/aimclub/BAMT/pull/98#issuecomment-1854038944) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +10. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_QC_Classifier/pull/5#issuecomment-1854029734) in [eastgenomics/eggd_QC_Classifier](https://github.com/eastgenomics/eggd_QC_Classifier) From 073a755052a75de2095a2f0606495a3e1cf054ba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 23:37:25 +0000 Subject: [PATCH 0917/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 614f9c15..57d380b9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#845](https://github.com/scilus/scilpy/pull/845#issuecomment-1854832490) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#844](https://github.com/scilus/scilpy/pull/844#issuecomment-1854734787) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#3011](https://github.com/dipy/dipy/pull/3011#issuecomment-1854732810) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#507](https://github.com/UIUCLibrary/Speedwagon/pull/507#issuecomment-1854696892) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -5. 🗣 Commented on [#3](https://github.com/eastgenomics/gene_annotation2bed/pull/3#issuecomment-1854338946) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -6. 🗣 Commented on [#89](https://github.com/ITMO-NSS-team/GAMLET/pull/89#issuecomment-1854239137) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -7. 🗣 Commented on [#64](https://github.com/eastgenomics/eris/pull/64#issuecomment-1854220971) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#92](https://github.com/INT-NIT/DigLabTools/pull/92#issuecomment-1854172019) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -9. 🗣 Commented on [#98](https://github.com/aimclub/BAMT/pull/98#issuecomment-1854038944) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -10. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_QC_Classifier/pull/5#issuecomment-1854029734) in [eastgenomics/eggd_QC_Classifier](https://github.com/eastgenomics/eggd_QC_Classifier) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Vary/pull/1#issuecomment-1854858425) in [tuhinmallick/Vary](https://github.com/tuhinmallick/Vary) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/promptbase/pull/1#issuecomment-1854855305) in [tuhinmallick/promptbase](https://github.com/tuhinmallick/promptbase) +3. 🗣 Commented on [#845](https://github.com/scilus/scilpy/pull/845#issuecomment-1854832490) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#844](https://github.com/scilus/scilpy/pull/844#issuecomment-1854734787) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#3011](https://github.com/dipy/dipy/pull/3011#issuecomment-1854732810) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#507](https://github.com/UIUCLibrary/Speedwagon/pull/507#issuecomment-1854696892) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +7. 🗣 Commented on [#3](https://github.com/eastgenomics/gene_annotation2bed/pull/3#issuecomment-1854338946) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +8. 🗣 Commented on [#89](https://github.com/ITMO-NSS-team/GAMLET/pull/89#issuecomment-1854239137) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +9. 🗣 Commented on [#64](https://github.com/eastgenomics/eris/pull/64#issuecomment-1854220971) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#92](https://github.com/INT-NIT/DigLabTools/pull/92#issuecomment-1854172019) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) From 712e7f367de45111a37e62c4d6bc3e59d23b950f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 01:13:02 +0000 Subject: [PATCH 0918/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 57d380b9..a63ee162 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Vary/pull/1#issuecomment-1854858425) in [tuhinmallick/Vary](https://github.com/tuhinmallick/Vary) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/promptbase/pull/1#issuecomment-1854855305) in [tuhinmallick/promptbase](https://github.com/tuhinmallick/promptbase) -3. 🗣 Commented on [#845](https://github.com/scilus/scilpy/pull/845#issuecomment-1854832490) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#844](https://github.com/scilus/scilpy/pull/844#issuecomment-1854734787) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#3011](https://github.com/dipy/dipy/pull/3011#issuecomment-1854732810) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#507](https://github.com/UIUCLibrary/Speedwagon/pull/507#issuecomment-1854696892) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -7. 🗣 Commented on [#3](https://github.com/eastgenomics/gene_annotation2bed/pull/3#issuecomment-1854338946) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -8. 🗣 Commented on [#89](https://github.com/ITMO-NSS-team/GAMLET/pull/89#issuecomment-1854239137) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -9. 🗣 Commented on [#64](https://github.com/eastgenomics/eris/pull/64#issuecomment-1854220971) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#92](https://github.com/INT-NIT/DigLabTools/pull/92#issuecomment-1854172019) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +1. 🗣 Commented on [#3013](https://github.com/dipy/dipy/pull/3013#issuecomment-1854908698) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-inference-benchmark/pull/1#issuecomment-1854860482) in [tuhinmallick/llm-inference-benchmark](https://github.com/tuhinmallick/llm-inference-benchmark) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Vary/pull/1#issuecomment-1854858425) in [tuhinmallick/Vary](https://github.com/tuhinmallick/Vary) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/promptbase/pull/1#issuecomment-1854855305) in [tuhinmallick/promptbase](https://github.com/tuhinmallick/promptbase) +5. 🗣 Commented on [#845](https://github.com/scilus/scilpy/pull/845#issuecomment-1854832490) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#844](https://github.com/scilus/scilpy/pull/844#issuecomment-1854734787) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#3011](https://github.com/dipy/dipy/pull/3011#issuecomment-1854732810) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#507](https://github.com/UIUCLibrary/Speedwagon/pull/507#issuecomment-1854696892) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +9. 🗣 Commented on [#3](https://github.com/eastgenomics/gene_annotation2bed/pull/3#issuecomment-1854338946) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +10. 🗣 Commented on [#89](https://github.com/ITMO-NSS-team/GAMLET/pull/89#issuecomment-1854239137) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) From 767d3f2499c63eccd244f0caad988427c92e7f68 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 07:37:10 +0000 Subject: [PATCH 0919/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a63ee162..fc670f20 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3013](https://github.com/dipy/dipy/pull/3013#issuecomment-1854908698) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-inference-benchmark/pull/1#issuecomment-1854860482) in [tuhinmallick/llm-inference-benchmark](https://github.com/tuhinmallick/llm-inference-benchmark) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Vary/pull/1#issuecomment-1854858425) in [tuhinmallick/Vary](https://github.com/tuhinmallick/Vary) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/promptbase/pull/1#issuecomment-1854855305) in [tuhinmallick/promptbase](https://github.com/tuhinmallick/promptbase) -5. 🗣 Commented on [#845](https://github.com/scilus/scilpy/pull/845#issuecomment-1854832490) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#844](https://github.com/scilus/scilpy/pull/844#issuecomment-1854734787) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#3011](https://github.com/dipy/dipy/pull/3011#issuecomment-1854732810) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#507](https://github.com/UIUCLibrary/Speedwagon/pull/507#issuecomment-1854696892) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -9. 🗣 Commented on [#3](https://github.com/eastgenomics/gene_annotation2bed/pull/3#issuecomment-1854338946) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -10. 🗣 Commented on [#89](https://github.com/ITMO-NSS-team/GAMLET/pull/89#issuecomment-1854239137) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/autogen-agi/pull/1#issuecomment-1855312355) in [tuhinmallick/autogen-agi](https://github.com/tuhinmallick/autogen-agi) +2. 🗣 Commented on [#198](https://github.com/epfl-theos/koopmans/pull/198#issuecomment-1855283291) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +3. 🗣 Commented on [#84](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/84#issuecomment-1855273758) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) +4. 🗣 Commented on [#3013](https://github.com/dipy/dipy/pull/3013#issuecomment-1854908698) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-inference-benchmark/pull/1#issuecomment-1854860482) in [tuhinmallick/llm-inference-benchmark](https://github.com/tuhinmallick/llm-inference-benchmark) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Vary/pull/1#issuecomment-1854858425) in [tuhinmallick/Vary](https://github.com/tuhinmallick/Vary) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/promptbase/pull/1#issuecomment-1854855305) in [tuhinmallick/promptbase](https://github.com/tuhinmallick/promptbase) +8. 🗣 Commented on [#845](https://github.com/scilus/scilpy/pull/845#issuecomment-1854832490) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#844](https://github.com/scilus/scilpy/pull/844#issuecomment-1854734787) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#3011](https://github.com/dipy/dipy/pull/3011#issuecomment-1854732810) in [dipy/dipy](https://github.com/dipy/dipy) From 14e5d36be8e779dd320e0df3adbf559a078213d0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 09:16:15 +0000 Subject: [PATCH 0920/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fc670f20..11cd87b2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/autogen-agi/pull/1#issuecomment-1855312355) in [tuhinmallick/autogen-agi](https://github.com/tuhinmallick/autogen-agi) -2. 🗣 Commented on [#198](https://github.com/epfl-theos/koopmans/pull/198#issuecomment-1855283291) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -3. 🗣 Commented on [#84](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/84#issuecomment-1855273758) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) -4. 🗣 Commented on [#3013](https://github.com/dipy/dipy/pull/3013#issuecomment-1854908698) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-inference-benchmark/pull/1#issuecomment-1854860482) in [tuhinmallick/llm-inference-benchmark](https://github.com/tuhinmallick/llm-inference-benchmark) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Vary/pull/1#issuecomment-1854858425) in [tuhinmallick/Vary](https://github.com/tuhinmallick/Vary) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/promptbase/pull/1#issuecomment-1854855305) in [tuhinmallick/promptbase](https://github.com/tuhinmallick/promptbase) -8. 🗣 Commented on [#845](https://github.com/scilus/scilpy/pull/845#issuecomment-1854832490) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#844](https://github.com/scilus/scilpy/pull/844#issuecomment-1854734787) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#3011](https://github.com/dipy/dipy/pull/3011#issuecomment-1854732810) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/distilabel/pull/1#issuecomment-1855465270) in [tuhinmallick/distilabel](https://github.com/tuhinmallick/distilabel) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/autogen-agi/pull/1#issuecomment-1855312355) in [tuhinmallick/autogen-agi](https://github.com/tuhinmallick/autogen-agi) +3. 🗣 Commented on [#198](https://github.com/epfl-theos/koopmans/pull/198#issuecomment-1855283291) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +4. 🗣 Commented on [#84](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/84#issuecomment-1855273758) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) +5. 🗣 Commented on [#3013](https://github.com/dipy/dipy/pull/3013#issuecomment-1854908698) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-inference-benchmark/pull/1#issuecomment-1854860482) in [tuhinmallick/llm-inference-benchmark](https://github.com/tuhinmallick/llm-inference-benchmark) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Vary/pull/1#issuecomment-1854858425) in [tuhinmallick/Vary](https://github.com/tuhinmallick/Vary) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/promptbase/pull/1#issuecomment-1854855305) in [tuhinmallick/promptbase](https://github.com/tuhinmallick/promptbase) +9. 🗣 Commented on [#845](https://github.com/scilus/scilpy/pull/845#issuecomment-1854832490) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#844](https://github.com/scilus/scilpy/pull/844#issuecomment-1854734787) in [scilus/scilpy](https://github.com/scilus/scilpy) From 51713f38e8e8a2f58331b0722e08968cafaa658b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 10:17:49 +0000 Subject: [PATCH 0921/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 11cd87b2..2260e682 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/distilabel/pull/1#issuecomment-1855465270) in [tuhinmallick/distilabel](https://github.com/tuhinmallick/distilabel) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/autogen-agi/pull/1#issuecomment-1855312355) in [tuhinmallick/autogen-agi](https://github.com/tuhinmallick/autogen-agi) -3. 🗣 Commented on [#198](https://github.com/epfl-theos/koopmans/pull/198#issuecomment-1855283291) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -4. 🗣 Commented on [#84](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/84#issuecomment-1855273758) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) -5. 🗣 Commented on [#3013](https://github.com/dipy/dipy/pull/3013#issuecomment-1854908698) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-inference-benchmark/pull/1#issuecomment-1854860482) in [tuhinmallick/llm-inference-benchmark](https://github.com/tuhinmallick/llm-inference-benchmark) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Vary/pull/1#issuecomment-1854858425) in [tuhinmallick/Vary](https://github.com/tuhinmallick/Vary) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/promptbase/pull/1#issuecomment-1854855305) in [tuhinmallick/promptbase](https://github.com/tuhinmallick/promptbase) -9. 🗣 Commented on [#845](https://github.com/scilus/scilpy/pull/845#issuecomment-1854832490) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#844](https://github.com/scilus/scilpy/pull/844#issuecomment-1854734787) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#1023](https://github.com/oemof/oemof-solph/pull/1023#issuecomment-1855535159) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +2. 🗣 Commented on [#61](https://github.com/expertspec/expert/pull/61#issuecomment-1855534647) in [expertspec/expert](https://github.com/expertspec/expert) +3. 🗣 Commented on [#60](https://github.com/expertspec/expert/pull/60#issuecomment-1855528268) in [expertspec/expert](https://github.com/expertspec/expert) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/distilabel/pull/1#issuecomment-1855465270) in [tuhinmallick/distilabel](https://github.com/tuhinmallick/distilabel) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/autogen-agi/pull/1#issuecomment-1855312355) in [tuhinmallick/autogen-agi](https://github.com/tuhinmallick/autogen-agi) +6. 🗣 Commented on [#198](https://github.com/epfl-theos/koopmans/pull/198#issuecomment-1855283291) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +7. 🗣 Commented on [#84](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/84#issuecomment-1855273758) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) +8. 🗣 Commented on [#3013](https://github.com/dipy/dipy/pull/3013#issuecomment-1854908698) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-inference-benchmark/pull/1#issuecomment-1854860482) in [tuhinmallick/llm-inference-benchmark](https://github.com/tuhinmallick/llm-inference-benchmark) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Vary/pull/1#issuecomment-1854858425) in [tuhinmallick/Vary](https://github.com/tuhinmallick/Vary) From 0c2e75d37f846724b8ca693b80c9ea983bebe9c3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 10:38:49 +0000 Subject: [PATCH 0922/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2260e682..43478bf5 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1023](https://github.com/oemof/oemof-solph/pull/1023#issuecomment-1855535159) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -2. 🗣 Commented on [#61](https://github.com/expertspec/expert/pull/61#issuecomment-1855534647) in [expertspec/expert](https://github.com/expertspec/expert) -3. 🗣 Commented on [#60](https://github.com/expertspec/expert/pull/60#issuecomment-1855528268) in [expertspec/expert](https://github.com/expertspec/expert) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/distilabel/pull/1#issuecomment-1855465270) in [tuhinmallick/distilabel](https://github.com/tuhinmallick/distilabel) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/autogen-agi/pull/1#issuecomment-1855312355) in [tuhinmallick/autogen-agi](https://github.com/tuhinmallick/autogen-agi) -6. 🗣 Commented on [#198](https://github.com/epfl-theos/koopmans/pull/198#issuecomment-1855283291) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -7. 🗣 Commented on [#84](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/84#issuecomment-1855273758) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) -8. 🗣 Commented on [#3013](https://github.com/dipy/dipy/pull/3013#issuecomment-1854908698) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-inference-benchmark/pull/1#issuecomment-1854860482) in [tuhinmallick/llm-inference-benchmark](https://github.com/tuhinmallick/llm-inference-benchmark) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Vary/pull/1#issuecomment-1854858425) in [tuhinmallick/Vary](https://github.com/tuhinmallick/Vary) +1. 🗣 Commented on [#222](https://github.com/CartoonFan/lutris/pull/222#issuecomment-1855587032) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#1023](https://github.com/oemof/oemof-solph/pull/1023#issuecomment-1855535159) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +3. 🗣 Commented on [#61](https://github.com/expertspec/expert/pull/61#issuecomment-1855534647) in [expertspec/expert](https://github.com/expertspec/expert) +4. 🗣 Commented on [#60](https://github.com/expertspec/expert/pull/60#issuecomment-1855528268) in [expertspec/expert](https://github.com/expertspec/expert) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/distilabel/pull/1#issuecomment-1855465270) in [tuhinmallick/distilabel](https://github.com/tuhinmallick/distilabel) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/autogen-agi/pull/1#issuecomment-1855312355) in [tuhinmallick/autogen-agi](https://github.com/tuhinmallick/autogen-agi) +7. 🗣 Commented on [#198](https://github.com/epfl-theos/koopmans/pull/198#issuecomment-1855283291) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +8. 🗣 Commented on [#84](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/84#issuecomment-1855273758) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) +9. 🗣 Commented on [#3013](https://github.com/dipy/dipy/pull/3013#issuecomment-1854908698) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-inference-benchmark/pull/1#issuecomment-1854860482) in [tuhinmallick/llm-inference-benchmark](https://github.com/tuhinmallick/llm-inference-benchmark) From cc69fca135992a1d973631f3af8d57cb41e70dd1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 11:37:13 +0000 Subject: [PATCH 0923/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 43478bf5..457056d6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#222](https://github.com/CartoonFan/lutris/pull/222#issuecomment-1855587032) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#1023](https://github.com/oemof/oemof-solph/pull/1023#issuecomment-1855535159) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -3. 🗣 Commented on [#61](https://github.com/expertspec/expert/pull/61#issuecomment-1855534647) in [expertspec/expert](https://github.com/expertspec/expert) -4. 🗣 Commented on [#60](https://github.com/expertspec/expert/pull/60#issuecomment-1855528268) in [expertspec/expert](https://github.com/expertspec/expert) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/distilabel/pull/1#issuecomment-1855465270) in [tuhinmallick/distilabel](https://github.com/tuhinmallick/distilabel) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/autogen-agi/pull/1#issuecomment-1855312355) in [tuhinmallick/autogen-agi](https://github.com/tuhinmallick/autogen-agi) -7. 🗣 Commented on [#198](https://github.com/epfl-theos/koopmans/pull/198#issuecomment-1855283291) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -8. 🗣 Commented on [#84](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/84#issuecomment-1855273758) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) -9. 🗣 Commented on [#3013](https://github.com/dipy/dipy/pull/3013#issuecomment-1854908698) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/llm-inference-benchmark/pull/1#issuecomment-1854860482) in [tuhinmallick/llm-inference-benchmark](https://github.com/tuhinmallick/llm-inference-benchmark) +1. 🗣 Commented on [#246](https://github.com/aimclub/GOLEM/pull/246#issuecomment-1855676810) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#92](https://github.com/eastgenomics/eggd_conductor/pull/92#issuecomment-1855663711) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +3. 🗣 Commented on [#222](https://github.com/CartoonFan/lutris/pull/222#issuecomment-1855587032) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#1023](https://github.com/oemof/oemof-solph/pull/1023#issuecomment-1855535159) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +5. 🗣 Commented on [#61](https://github.com/expertspec/expert/pull/61#issuecomment-1855534647) in [expertspec/expert](https://github.com/expertspec/expert) +6. 🗣 Commented on [#60](https://github.com/expertspec/expert/pull/60#issuecomment-1855528268) in [expertspec/expert](https://github.com/expertspec/expert) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/distilabel/pull/1#issuecomment-1855465270) in [tuhinmallick/distilabel](https://github.com/tuhinmallick/distilabel) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/autogen-agi/pull/1#issuecomment-1855312355) in [tuhinmallick/autogen-agi](https://github.com/tuhinmallick/autogen-agi) +9. 🗣 Commented on [#198](https://github.com/epfl-theos/koopmans/pull/198#issuecomment-1855283291) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +10. 🗣 Commented on [#84](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/84#issuecomment-1855273758) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) From 9c6bcbc49420705d2c820e1d87b4f8bae0f4dac8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 14:15:40 +0000 Subject: [PATCH 0924/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 457056d6..0984e26e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#246](https://github.com/aimclub/GOLEM/pull/246#issuecomment-1855676810) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#92](https://github.com/eastgenomics/eggd_conductor/pull/92#issuecomment-1855663711) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -3. 🗣 Commented on [#222](https://github.com/CartoonFan/lutris/pull/222#issuecomment-1855587032) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#1023](https://github.com/oemof/oemof-solph/pull/1023#issuecomment-1855535159) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -5. 🗣 Commented on [#61](https://github.com/expertspec/expert/pull/61#issuecomment-1855534647) in [expertspec/expert](https://github.com/expertspec/expert) -6. 🗣 Commented on [#60](https://github.com/expertspec/expert/pull/60#issuecomment-1855528268) in [expertspec/expert](https://github.com/expertspec/expert) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/distilabel/pull/1#issuecomment-1855465270) in [tuhinmallick/distilabel](https://github.com/tuhinmallick/distilabel) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/autogen-agi/pull/1#issuecomment-1855312355) in [tuhinmallick/autogen-agi](https://github.com/tuhinmallick/autogen-agi) -9. 🗣 Commented on [#198](https://github.com/epfl-theos/koopmans/pull/198#issuecomment-1855283291) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -10. 🗣 Commented on [#84](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/84#issuecomment-1855273758) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) +1. 🗣 Commented on [#158](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/158#issuecomment-1855905484) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +2. 🗣 Commented on [#246](https://github.com/aimclub/GOLEM/pull/246#issuecomment-1855676810) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#92](https://github.com/eastgenomics/eggd_conductor/pull/92#issuecomment-1855663711) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +4. 🗣 Commented on [#222](https://github.com/CartoonFan/lutris/pull/222#issuecomment-1855587032) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#1023](https://github.com/oemof/oemof-solph/pull/1023#issuecomment-1855535159) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +6. 🗣 Commented on [#61](https://github.com/expertspec/expert/pull/61#issuecomment-1855534647) in [expertspec/expert](https://github.com/expertspec/expert) +7. 🗣 Commented on [#60](https://github.com/expertspec/expert/pull/60#issuecomment-1855528268) in [expertspec/expert](https://github.com/expertspec/expert) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/distilabel/pull/1#issuecomment-1855465270) in [tuhinmallick/distilabel](https://github.com/tuhinmallick/distilabel) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/autogen-agi/pull/1#issuecomment-1855312355) in [tuhinmallick/autogen-agi](https://github.com/tuhinmallick/autogen-agi) +10. 🗣 Commented on [#198](https://github.com/epfl-theos/koopmans/pull/198#issuecomment-1855283291) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) From 1579d158cdbb2ee35653399638e8a3bab5a3c32a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 14:37:27 +0000 Subject: [PATCH 0925/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0984e26e..d8897c8b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#158](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/158#issuecomment-1855905484) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -2. 🗣 Commented on [#246](https://github.com/aimclub/GOLEM/pull/246#issuecomment-1855676810) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#92](https://github.com/eastgenomics/eggd_conductor/pull/92#issuecomment-1855663711) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -4. 🗣 Commented on [#222](https://github.com/CartoonFan/lutris/pull/222#issuecomment-1855587032) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#1023](https://github.com/oemof/oemof-solph/pull/1023#issuecomment-1855535159) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -6. 🗣 Commented on [#61](https://github.com/expertspec/expert/pull/61#issuecomment-1855534647) in [expertspec/expert](https://github.com/expertspec/expert) -7. 🗣 Commented on [#60](https://github.com/expertspec/expert/pull/60#issuecomment-1855528268) in [expertspec/expert](https://github.com/expertspec/expert) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/distilabel/pull/1#issuecomment-1855465270) in [tuhinmallick/distilabel](https://github.com/tuhinmallick/distilabel) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/autogen-agi/pull/1#issuecomment-1855312355) in [tuhinmallick/autogen-agi](https://github.com/tuhinmallick/autogen-agi) -10. 🗣 Commented on [#198](https://github.com/epfl-theos/koopmans/pull/198#issuecomment-1855283291) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +1. 🗣 Commented on [#846](https://github.com/scilus/scilpy/pull/846#issuecomment-1855935848) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#158](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/158#issuecomment-1855905484) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +3. 🗣 Commented on [#246](https://github.com/aimclub/GOLEM/pull/246#issuecomment-1855676810) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +4. 🗣 Commented on [#92](https://github.com/eastgenomics/eggd_conductor/pull/92#issuecomment-1855663711) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +5. 🗣 Commented on [#222](https://github.com/CartoonFan/lutris/pull/222#issuecomment-1855587032) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#1023](https://github.com/oemof/oemof-solph/pull/1023#issuecomment-1855535159) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +7. 🗣 Commented on [#61](https://github.com/expertspec/expert/pull/61#issuecomment-1855534647) in [expertspec/expert](https://github.com/expertspec/expert) +8. 🗣 Commented on [#60](https://github.com/expertspec/expert/pull/60#issuecomment-1855528268) in [expertspec/expert](https://github.com/expertspec/expert) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/distilabel/pull/1#issuecomment-1855465270) in [tuhinmallick/distilabel](https://github.com/tuhinmallick/distilabel) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/autogen-agi/pull/1#issuecomment-1855312355) in [tuhinmallick/autogen-agi](https://github.com/tuhinmallick/autogen-agi) From ff19375dd288ce824c99fe0f93b0ab564ec25364 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 15:17:27 +0000 Subject: [PATCH 0926/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d8897c8b..d539f4f6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#846](https://github.com/scilus/scilpy/pull/846#issuecomment-1855935848) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#158](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/158#issuecomment-1855905484) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -3. 🗣 Commented on [#246](https://github.com/aimclub/GOLEM/pull/246#issuecomment-1855676810) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -4. 🗣 Commented on [#92](https://github.com/eastgenomics/eggd_conductor/pull/92#issuecomment-1855663711) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -5. 🗣 Commented on [#222](https://github.com/CartoonFan/lutris/pull/222#issuecomment-1855587032) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#1023](https://github.com/oemof/oemof-solph/pull/1023#issuecomment-1855535159) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -7. 🗣 Commented on [#61](https://github.com/expertspec/expert/pull/61#issuecomment-1855534647) in [expertspec/expert](https://github.com/expertspec/expert) -8. 🗣 Commented on [#60](https://github.com/expertspec/expert/pull/60#issuecomment-1855528268) in [expertspec/expert](https://github.com/expertspec/expert) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/distilabel/pull/1#issuecomment-1855465270) in [tuhinmallick/distilabel](https://github.com/tuhinmallick/distilabel) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/autogen-agi/pull/1#issuecomment-1855312355) in [tuhinmallick/autogen-agi](https://github.com/tuhinmallick/autogen-agi) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/pr-agent/pull/1#issuecomment-1855975278) in [tuhinmallick/pr-agent](https://github.com/tuhinmallick/pr-agent) +2. 🗣 Commented on [#846](https://github.com/scilus/scilpy/pull/846#issuecomment-1855935848) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#158](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/158#issuecomment-1855905484) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +4. 🗣 Commented on [#246](https://github.com/aimclub/GOLEM/pull/246#issuecomment-1855676810) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#92](https://github.com/eastgenomics/eggd_conductor/pull/92#issuecomment-1855663711) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +6. 🗣 Commented on [#222](https://github.com/CartoonFan/lutris/pull/222#issuecomment-1855587032) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#1023](https://github.com/oemof/oemof-solph/pull/1023#issuecomment-1855535159) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +8. 🗣 Commented on [#61](https://github.com/expertspec/expert/pull/61#issuecomment-1855534647) in [expertspec/expert](https://github.com/expertspec/expert) +9. 🗣 Commented on [#60](https://github.com/expertspec/expert/pull/60#issuecomment-1855528268) in [expertspec/expert](https://github.com/expertspec/expert) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/distilabel/pull/1#issuecomment-1855465270) in [tuhinmallick/distilabel](https://github.com/tuhinmallick/distilabel) From 12d33fe8f60f3484f600ea03d997d6144088cefc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 17:15:23 +0000 Subject: [PATCH 0927/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d539f4f6..22bd9a7e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/pr-agent/pull/1#issuecomment-1855975278) in [tuhinmallick/pr-agent](https://github.com/tuhinmallick/pr-agent) -2. 🗣 Commented on [#846](https://github.com/scilus/scilpy/pull/846#issuecomment-1855935848) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#158](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/158#issuecomment-1855905484) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -4. 🗣 Commented on [#246](https://github.com/aimclub/GOLEM/pull/246#issuecomment-1855676810) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#92](https://github.com/eastgenomics/eggd_conductor/pull/92#issuecomment-1855663711) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -6. 🗣 Commented on [#222](https://github.com/CartoonFan/lutris/pull/222#issuecomment-1855587032) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#1023](https://github.com/oemof/oemof-solph/pull/1023#issuecomment-1855535159) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -8. 🗣 Commented on [#61](https://github.com/expertspec/expert/pull/61#issuecomment-1855534647) in [expertspec/expert](https://github.com/expertspec/expert) -9. 🗣 Commented on [#60](https://github.com/expertspec/expert/pull/60#issuecomment-1855528268) in [expertspec/expert](https://github.com/expertspec/expert) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/distilabel/pull/1#issuecomment-1855465270) in [tuhinmallick/distilabel](https://github.com/tuhinmallick/distilabel) +1. 🗣 Commented on [#856](https://github.com/scilus/scilpy/pull/856#issuecomment-1856224909) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#855](https://github.com/scilus/scilpy/pull/855#issuecomment-1856215396) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#484](https://github.com/HEPCloud/decisionengine_modules/pull/484#issuecomment-1856199513) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/pr-agent/pull/1#issuecomment-1855975278) in [tuhinmallick/pr-agent](https://github.com/tuhinmallick/pr-agent) +5. 🗣 Commented on [#846](https://github.com/scilus/scilpy/pull/846#issuecomment-1855935848) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#158](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/158#issuecomment-1855905484) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +7. 🗣 Commented on [#246](https://github.com/aimclub/GOLEM/pull/246#issuecomment-1855676810) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +8. 🗣 Commented on [#92](https://github.com/eastgenomics/eggd_conductor/pull/92#issuecomment-1855663711) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +9. 🗣 Commented on [#222](https://github.com/CartoonFan/lutris/pull/222#issuecomment-1855587032) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#1023](https://github.com/oemof/oemof-solph/pull/1023#issuecomment-1855535159) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) From 3183b973625b0ce79033fa2b16c14b437631ee97 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 18:21:16 +0000 Subject: [PATCH 0928/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 22bd9a7e..99cda48d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#856](https://github.com/scilus/scilpy/pull/856#issuecomment-1856224909) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#855](https://github.com/scilus/scilpy/pull/855#issuecomment-1856215396) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#484](https://github.com/HEPCloud/decisionengine_modules/pull/484#issuecomment-1856199513) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/pr-agent/pull/1#issuecomment-1855975278) in [tuhinmallick/pr-agent](https://github.com/tuhinmallick/pr-agent) -5. 🗣 Commented on [#846](https://github.com/scilus/scilpy/pull/846#issuecomment-1855935848) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#158](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/158#issuecomment-1855905484) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -7. 🗣 Commented on [#246](https://github.com/aimclub/GOLEM/pull/246#issuecomment-1855676810) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -8. 🗣 Commented on [#92](https://github.com/eastgenomics/eggd_conductor/pull/92#issuecomment-1855663711) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -9. 🗣 Commented on [#222](https://github.com/CartoonFan/lutris/pull/222#issuecomment-1855587032) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#1023](https://github.com/oemof/oemof-solph/pull/1023#issuecomment-1855535159) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +1. 🗣 Commented on [#65](https://github.com/eastgenomics/eris/pull/65#issuecomment-1856312214) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#856](https://github.com/scilus/scilpy/pull/856#issuecomment-1856224909) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#855](https://github.com/scilus/scilpy/pull/855#issuecomment-1856215396) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#484](https://github.com/HEPCloud/decisionengine_modules/pull/484#issuecomment-1856199513) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/pr-agent/pull/1#issuecomment-1855975278) in [tuhinmallick/pr-agent](https://github.com/tuhinmallick/pr-agent) +6. 🗣 Commented on [#846](https://github.com/scilus/scilpy/pull/846#issuecomment-1855935848) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#158](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/158#issuecomment-1855905484) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +8. 🗣 Commented on [#246](https://github.com/aimclub/GOLEM/pull/246#issuecomment-1855676810) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#92](https://github.com/eastgenomics/eggd_conductor/pull/92#issuecomment-1855663711) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +10. 🗣 Commented on [#222](https://github.com/CartoonFan/lutris/pull/222#issuecomment-1855587032) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 2a9ce049ae0159772d61d500ca05447b60d8dc0f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 19:13:20 +0000 Subject: [PATCH 0929/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 99cda48d..c16db3f0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#65](https://github.com/eastgenomics/eris/pull/65#issuecomment-1856312214) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#856](https://github.com/scilus/scilpy/pull/856#issuecomment-1856224909) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#855](https://github.com/scilus/scilpy/pull/855#issuecomment-1856215396) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#484](https://github.com/HEPCloud/decisionengine_modules/pull/484#issuecomment-1856199513) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/pr-agent/pull/1#issuecomment-1855975278) in [tuhinmallick/pr-agent](https://github.com/tuhinmallick/pr-agent) -6. 🗣 Commented on [#846](https://github.com/scilus/scilpy/pull/846#issuecomment-1855935848) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#158](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/158#issuecomment-1855905484) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -8. 🗣 Commented on [#246](https://github.com/aimclub/GOLEM/pull/246#issuecomment-1855676810) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#92](https://github.com/eastgenomics/eggd_conductor/pull/92#issuecomment-1855663711) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -10. 🗣 Commented on [#222](https://github.com/CartoonFan/lutris/pull/222#issuecomment-1855587032) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#861](https://github.com/scilus/scilpy/pull/861#issuecomment-1856426530) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#857](https://github.com/scilus/scilpy/pull/857#issuecomment-1856392641) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#65](https://github.com/eastgenomics/eris/pull/65#issuecomment-1856312214) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#856](https://github.com/scilus/scilpy/pull/856#issuecomment-1856224909) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#855](https://github.com/scilus/scilpy/pull/855#issuecomment-1856215396) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#484](https://github.com/HEPCloud/decisionengine_modules/pull/484#issuecomment-1856199513) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/pr-agent/pull/1#issuecomment-1855975278) in [tuhinmallick/pr-agent](https://github.com/tuhinmallick/pr-agent) +8. 🗣 Commented on [#846](https://github.com/scilus/scilpy/pull/846#issuecomment-1855935848) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#158](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/158#issuecomment-1855905484) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +10. 🗣 Commented on [#246](https://github.com/aimclub/GOLEM/pull/246#issuecomment-1855676810) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) From 226d7778d28349448cddf402b7c3f858a1be6284 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 20:18:07 +0000 Subject: [PATCH 0930/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c16db3f0..9c1ea14a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#861](https://github.com/scilus/scilpy/pull/861#issuecomment-1856426530) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#857](https://github.com/scilus/scilpy/pull/857#issuecomment-1856392641) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#65](https://github.com/eastgenomics/eris/pull/65#issuecomment-1856312214) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#856](https://github.com/scilus/scilpy/pull/856#issuecomment-1856224909) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#855](https://github.com/scilus/scilpy/pull/855#issuecomment-1856215396) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#484](https://github.com/HEPCloud/decisionengine_modules/pull/484#issuecomment-1856199513) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/pr-agent/pull/1#issuecomment-1855975278) in [tuhinmallick/pr-agent](https://github.com/tuhinmallick/pr-agent) -8. 🗣 Commented on [#846](https://github.com/scilus/scilpy/pull/846#issuecomment-1855935848) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#158](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/158#issuecomment-1855905484) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -10. 🗣 Commented on [#246](https://github.com/aimclub/GOLEM/pull/246#issuecomment-1855676810) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +1. 🗣 Commented on [#864](https://github.com/scilus/scilpy/pull/864#issuecomment-1856500555) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#861](https://github.com/scilus/scilpy/pull/861#issuecomment-1856426530) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#857](https://github.com/scilus/scilpy/pull/857#issuecomment-1856392641) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#65](https://github.com/eastgenomics/eris/pull/65#issuecomment-1856312214) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#856](https://github.com/scilus/scilpy/pull/856#issuecomment-1856224909) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#855](https://github.com/scilus/scilpy/pull/855#issuecomment-1856215396) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#484](https://github.com/HEPCloud/decisionengine_modules/pull/484#issuecomment-1856199513) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/pr-agent/pull/1#issuecomment-1855975278) in [tuhinmallick/pr-agent](https://github.com/tuhinmallick/pr-agent) +9. 🗣 Commented on [#846](https://github.com/scilus/scilpy/pull/846#issuecomment-1855935848) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#158](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/158#issuecomment-1855905484) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) From 160ee3c99c5d9d39d089758314e0d174018af9a3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Dec 2023 23:37:17 +0000 Subject: [PATCH 0931/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9c1ea14a..9be5b63c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#864](https://github.com/scilus/scilpy/pull/864#issuecomment-1856500555) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#861](https://github.com/scilus/scilpy/pull/861#issuecomment-1856426530) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#857](https://github.com/scilus/scilpy/pull/857#issuecomment-1856392641) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#65](https://github.com/eastgenomics/eris/pull/65#issuecomment-1856312214) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#856](https://github.com/scilus/scilpy/pull/856#issuecomment-1856224909) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#855](https://github.com/scilus/scilpy/pull/855#issuecomment-1856215396) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#484](https://github.com/HEPCloud/decisionengine_modules/pull/484#issuecomment-1856199513) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/pr-agent/pull/1#issuecomment-1855975278) in [tuhinmallick/pr-agent](https://github.com/tuhinmallick/pr-agent) -9. 🗣 Commented on [#846](https://github.com/scilus/scilpy/pull/846#issuecomment-1855935848) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#158](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/158#issuecomment-1855905484) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +1. 🗣 Commented on [#16](https://github.com/aguinane/nem-writer/pull/16#issuecomment-1856968206) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) +2. 🗣 Commented on [#43](https://github.com/tilde-lab/metis-client/pull/43#issuecomment-1856967888) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) +3. 🗣 Commented on [#864](https://github.com/scilus/scilpy/pull/864#issuecomment-1856500555) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#861](https://github.com/scilus/scilpy/pull/861#issuecomment-1856426530) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#857](https://github.com/scilus/scilpy/pull/857#issuecomment-1856392641) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#65](https://github.com/eastgenomics/eris/pull/65#issuecomment-1856312214) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#856](https://github.com/scilus/scilpy/pull/856#issuecomment-1856224909) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#855](https://github.com/scilus/scilpy/pull/855#issuecomment-1856215396) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#484](https://github.com/HEPCloud/decisionengine_modules/pull/484#issuecomment-1856199513) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/pr-agent/pull/1#issuecomment-1855975278) in [tuhinmallick/pr-agent](https://github.com/tuhinmallick/pr-agent) From a8b82bb50609b44c236894a3e33c0faa1f9caa67 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 01:14:51 +0000 Subject: [PATCH 0932/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9be5b63c..13aef529 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#16](https://github.com/aguinane/nem-writer/pull/16#issuecomment-1856968206) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) -2. 🗣 Commented on [#43](https://github.com/tilde-lab/metis-client/pull/43#issuecomment-1856967888) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) -3. 🗣 Commented on [#864](https://github.com/scilus/scilpy/pull/864#issuecomment-1856500555) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#861](https://github.com/scilus/scilpy/pull/861#issuecomment-1856426530) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#857](https://github.com/scilus/scilpy/pull/857#issuecomment-1856392641) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#65](https://github.com/eastgenomics/eris/pull/65#issuecomment-1856312214) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#856](https://github.com/scilus/scilpy/pull/856#issuecomment-1856224909) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#855](https://github.com/scilus/scilpy/pull/855#issuecomment-1856215396) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#484](https://github.com/HEPCloud/decisionengine_modules/pull/484#issuecomment-1856199513) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/pr-agent/pull/1#issuecomment-1855975278) in [tuhinmallick/pr-agent](https://github.com/tuhinmallick/pr-agent) +1. 🗣 Commented on [#1025](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1025#issuecomment-1857013497) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#16](https://github.com/aguinane/nem-writer/pull/16#issuecomment-1856968206) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) +3. 🗣 Commented on [#43](https://github.com/tilde-lab/metis-client/pull/43#issuecomment-1856967888) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) +4. 🗣 Commented on [#864](https://github.com/scilus/scilpy/pull/864#issuecomment-1856500555) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#861](https://github.com/scilus/scilpy/pull/861#issuecomment-1856426530) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#857](https://github.com/scilus/scilpy/pull/857#issuecomment-1856392641) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#65](https://github.com/eastgenomics/eris/pull/65#issuecomment-1856312214) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#856](https://github.com/scilus/scilpy/pull/856#issuecomment-1856224909) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#855](https://github.com/scilus/scilpy/pull/855#issuecomment-1856215396) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#484](https://github.com/HEPCloud/decisionengine_modules/pull/484#issuecomment-1856199513) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) From 65dbd9f007ecdb51ed6364b1e1f7e7bad6fac577 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 08:38:21 +0000 Subject: [PATCH 0933/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 13aef529..9ce31618 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1025](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1025#issuecomment-1857013497) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#16](https://github.com/aguinane/nem-writer/pull/16#issuecomment-1856968206) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) -3. 🗣 Commented on [#43](https://github.com/tilde-lab/metis-client/pull/43#issuecomment-1856967888) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) -4. 🗣 Commented on [#864](https://github.com/scilus/scilpy/pull/864#issuecomment-1856500555) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#861](https://github.com/scilus/scilpy/pull/861#issuecomment-1856426530) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#857](https://github.com/scilus/scilpy/pull/857#issuecomment-1856392641) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#65](https://github.com/eastgenomics/eris/pull/65#issuecomment-1856312214) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#856](https://github.com/scilus/scilpy/pull/856#issuecomment-1856224909) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#855](https://github.com/scilus/scilpy/pull/855#issuecomment-1856215396) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#484](https://github.com/HEPCloud/decisionengine_modules/pull/484#issuecomment-1856199513) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +1. 🗣 Commented on [#1227](https://github.com/aimclub/FEDOT/pull/1227#issuecomment-1857478114) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#1025](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1025#issuecomment-1857013497) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#16](https://github.com/aguinane/nem-writer/pull/16#issuecomment-1856968206) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) +4. 🗣 Commented on [#43](https://github.com/tilde-lab/metis-client/pull/43#issuecomment-1856967888) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) +5. 🗣 Commented on [#864](https://github.com/scilus/scilpy/pull/864#issuecomment-1856500555) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#861](https://github.com/scilus/scilpy/pull/861#issuecomment-1856426530) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#857](https://github.com/scilus/scilpy/pull/857#issuecomment-1856392641) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#65](https://github.com/eastgenomics/eris/pull/65#issuecomment-1856312214) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#856](https://github.com/scilus/scilpy/pull/856#issuecomment-1856224909) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#855](https://github.com/scilus/scilpy/pull/855#issuecomment-1856215396) in [scilus/scilpy](https://github.com/scilus/scilpy) From ad4b76c10c55c81aab55289c033fabf428f0b59a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 11:37:12 +0000 Subject: [PATCH 0934/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9ce31618..15c83f92 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1227](https://github.com/aimclub/FEDOT/pull/1227#issuecomment-1857478114) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#1025](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1025#issuecomment-1857013497) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#16](https://github.com/aguinane/nem-writer/pull/16#issuecomment-1856968206) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) -4. 🗣 Commented on [#43](https://github.com/tilde-lab/metis-client/pull/43#issuecomment-1856967888) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) -5. 🗣 Commented on [#864](https://github.com/scilus/scilpy/pull/864#issuecomment-1856500555) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#861](https://github.com/scilus/scilpy/pull/861#issuecomment-1856426530) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#857](https://github.com/scilus/scilpy/pull/857#issuecomment-1856392641) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#65](https://github.com/eastgenomics/eris/pull/65#issuecomment-1856312214) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#856](https://github.com/scilus/scilpy/pull/856#issuecomment-1856224909) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#855](https://github.com/scilus/scilpy/pull/855#issuecomment-1856215396) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#54](https://github.com/eastgenomics/Ploutos/pull/54#issuecomment-1857711741) in [eastgenomics/Ploutos](https://github.com/eastgenomics/Ploutos) +2. 🗣 Commented on [#288](https://github.com/SAP/credential-digger/pull/288#issuecomment-1857705442) in [SAP/credential-digger](https://github.com/SAP/credential-digger) +3. 🗣 Commented on [#1227](https://github.com/aimclub/FEDOT/pull/1227#issuecomment-1857478114) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#1025](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1025#issuecomment-1857013497) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#16](https://github.com/aguinane/nem-writer/pull/16#issuecomment-1856968206) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) +6. 🗣 Commented on [#43](https://github.com/tilde-lab/metis-client/pull/43#issuecomment-1856967888) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) +7. 🗣 Commented on [#864](https://github.com/scilus/scilpy/pull/864#issuecomment-1856500555) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#861](https://github.com/scilus/scilpy/pull/861#issuecomment-1856426530) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#857](https://github.com/scilus/scilpy/pull/857#issuecomment-1856392641) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#65](https://github.com/eastgenomics/eris/pull/65#issuecomment-1856312214) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From be449fc9b73ad8e0ff109e6e56a3909c2fd92c92 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 14:15:20 +0000 Subject: [PATCH 0935/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 15c83f92..0140b4c9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#54](https://github.com/eastgenomics/Ploutos/pull/54#issuecomment-1857711741) in [eastgenomics/Ploutos](https://github.com/eastgenomics/Ploutos) -2. 🗣 Commented on [#288](https://github.com/SAP/credential-digger/pull/288#issuecomment-1857705442) in [SAP/credential-digger](https://github.com/SAP/credential-digger) -3. 🗣 Commented on [#1227](https://github.com/aimclub/FEDOT/pull/1227#issuecomment-1857478114) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#1025](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1025#issuecomment-1857013497) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#16](https://github.com/aguinane/nem-writer/pull/16#issuecomment-1856968206) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) -6. 🗣 Commented on [#43](https://github.com/tilde-lab/metis-client/pull/43#issuecomment-1856967888) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) -7. 🗣 Commented on [#864](https://github.com/scilus/scilpy/pull/864#issuecomment-1856500555) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#861](https://github.com/scilus/scilpy/pull/861#issuecomment-1856426530) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#857](https://github.com/scilus/scilpy/pull/857#issuecomment-1856392641) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#65](https://github.com/eastgenomics/eris/pull/65#issuecomment-1856312214) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#3836](https://github.com/privacyidea/privacyidea/pull/3836#issuecomment-1857900518) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#54](https://github.com/eastgenomics/Ploutos/pull/54#issuecomment-1857711741) in [eastgenomics/Ploutos](https://github.com/eastgenomics/Ploutos) +3. 🗣 Commented on [#288](https://github.com/SAP/credential-digger/pull/288#issuecomment-1857705442) in [SAP/credential-digger](https://github.com/SAP/credential-digger) +4. 🗣 Commented on [#1227](https://github.com/aimclub/FEDOT/pull/1227#issuecomment-1857478114) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#1025](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1025#issuecomment-1857013497) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#16](https://github.com/aguinane/nem-writer/pull/16#issuecomment-1856968206) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) +7. 🗣 Commented on [#43](https://github.com/tilde-lab/metis-client/pull/43#issuecomment-1856967888) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) +8. 🗣 Commented on [#864](https://github.com/scilus/scilpy/pull/864#issuecomment-1856500555) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#861](https://github.com/scilus/scilpy/pull/861#issuecomment-1856426530) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#857](https://github.com/scilus/scilpy/pull/857#issuecomment-1856392641) in [scilus/scilpy](https://github.com/scilus/scilpy) From dc3007be802fc645e22d7c6a5107ca137a046780 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 15:17:02 +0000 Subject: [PATCH 0936/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0140b4c9..d33840e3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3836](https://github.com/privacyidea/privacyidea/pull/3836#issuecomment-1857900518) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#54](https://github.com/eastgenomics/Ploutos/pull/54#issuecomment-1857711741) in [eastgenomics/Ploutos](https://github.com/eastgenomics/Ploutos) -3. 🗣 Commented on [#288](https://github.com/SAP/credential-digger/pull/288#issuecomment-1857705442) in [SAP/credential-digger](https://github.com/SAP/credential-digger) -4. 🗣 Commented on [#1227](https://github.com/aimclub/FEDOT/pull/1227#issuecomment-1857478114) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#1025](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1025#issuecomment-1857013497) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#16](https://github.com/aguinane/nem-writer/pull/16#issuecomment-1856968206) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) -7. 🗣 Commented on [#43](https://github.com/tilde-lab/metis-client/pull/43#issuecomment-1856967888) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) -8. 🗣 Commented on [#864](https://github.com/scilus/scilpy/pull/864#issuecomment-1856500555) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#861](https://github.com/scilus/scilpy/pull/861#issuecomment-1856426530) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#857](https://github.com/scilus/scilpy/pull/857#issuecomment-1856392641) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#4](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/4#issuecomment-1857995189) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) +2. 🗣 Commented on [#3836](https://github.com/privacyidea/privacyidea/pull/3836#issuecomment-1857900518) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#54](https://github.com/eastgenomics/Ploutos/pull/54#issuecomment-1857711741) in [eastgenomics/Ploutos](https://github.com/eastgenomics/Ploutos) +4. 🗣 Commented on [#288](https://github.com/SAP/credential-digger/pull/288#issuecomment-1857705442) in [SAP/credential-digger](https://github.com/SAP/credential-digger) +5. 🗣 Commented on [#1227](https://github.com/aimclub/FEDOT/pull/1227#issuecomment-1857478114) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#1025](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1025#issuecomment-1857013497) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#16](https://github.com/aguinane/nem-writer/pull/16#issuecomment-1856968206) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) +8. 🗣 Commented on [#43](https://github.com/tilde-lab/metis-client/pull/43#issuecomment-1856967888) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) +9. 🗣 Commented on [#864](https://github.com/scilus/scilpy/pull/864#issuecomment-1856500555) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#861](https://github.com/scilus/scilpy/pull/861#issuecomment-1856426530) in [scilus/scilpy](https://github.com/scilus/scilpy) From bb57af9b176cd2c7c7adc4ed44641ad48f8106b7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 16:21:52 +0000 Subject: [PATCH 0937/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d33840e3..7cf4c0c6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/4#issuecomment-1857995189) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) -2. 🗣 Commented on [#3836](https://github.com/privacyidea/privacyidea/pull/3836#issuecomment-1857900518) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#54](https://github.com/eastgenomics/Ploutos/pull/54#issuecomment-1857711741) in [eastgenomics/Ploutos](https://github.com/eastgenomics/Ploutos) -4. 🗣 Commented on [#288](https://github.com/SAP/credential-digger/pull/288#issuecomment-1857705442) in [SAP/credential-digger](https://github.com/SAP/credential-digger) -5. 🗣 Commented on [#1227](https://github.com/aimclub/FEDOT/pull/1227#issuecomment-1857478114) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#1025](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1025#issuecomment-1857013497) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#16](https://github.com/aguinane/nem-writer/pull/16#issuecomment-1856968206) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) -8. 🗣 Commented on [#43](https://github.com/tilde-lab/metis-client/pull/43#issuecomment-1856967888) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) -9. 🗣 Commented on [#864](https://github.com/scilus/scilpy/pull/864#issuecomment-1856500555) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#861](https://github.com/scilus/scilpy/pull/861#issuecomment-1856426530) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#868](https://github.com/scilus/scilpy/pull/868#issuecomment-1858135734) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#867](https://github.com/scilus/scilpy/pull/867#issuecomment-1858133965) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#4](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/4#issuecomment-1857995189) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) +4. 🗣 Commented on [#3836](https://github.com/privacyidea/privacyidea/pull/3836#issuecomment-1857900518) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#54](https://github.com/eastgenomics/Ploutos/pull/54#issuecomment-1857711741) in [eastgenomics/Ploutos](https://github.com/eastgenomics/Ploutos) +6. 🗣 Commented on [#288](https://github.com/SAP/credential-digger/pull/288#issuecomment-1857705442) in [SAP/credential-digger](https://github.com/SAP/credential-digger) +7. 🗣 Commented on [#1227](https://github.com/aimclub/FEDOT/pull/1227#issuecomment-1857478114) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#1025](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1025#issuecomment-1857013497) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#16](https://github.com/aguinane/nem-writer/pull/16#issuecomment-1856968206) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) +10. 🗣 Commented on [#43](https://github.com/tilde-lab/metis-client/pull/43#issuecomment-1856967888) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) From 498384e45356901f2fa5ea474c568eeec10b0afb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 17:37:18 +0000 Subject: [PATCH 0938/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7cf4c0c6..29b4c6b7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#868](https://github.com/scilus/scilpy/pull/868#issuecomment-1858135734) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#867](https://github.com/scilus/scilpy/pull/867#issuecomment-1858133965) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#4](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/4#issuecomment-1857995189) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) -4. 🗣 Commented on [#3836](https://github.com/privacyidea/privacyidea/pull/3836#issuecomment-1857900518) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#54](https://github.com/eastgenomics/Ploutos/pull/54#issuecomment-1857711741) in [eastgenomics/Ploutos](https://github.com/eastgenomics/Ploutos) -6. 🗣 Commented on [#288](https://github.com/SAP/credential-digger/pull/288#issuecomment-1857705442) in [SAP/credential-digger](https://github.com/SAP/credential-digger) -7. 🗣 Commented on [#1227](https://github.com/aimclub/FEDOT/pull/1227#issuecomment-1857478114) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#1025](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1025#issuecomment-1857013497) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#16](https://github.com/aguinane/nem-writer/pull/16#issuecomment-1856968206) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) -10. 🗣 Commented on [#43](https://github.com/tilde-lab/metis-client/pull/43#issuecomment-1856967888) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) +1. 🗣 Commented on [#21616](https://github.com/spyder-ide/spyder/pull/21616#issuecomment-1858242712) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#25](https://github.com/telebotter/django-telegrambot/pull/25#issuecomment-1858221381) in [telebotter/django-telegrambot](https://github.com/telebotter/django-telegrambot) +3. 🗣 Commented on [#868](https://github.com/scilus/scilpy/pull/868#issuecomment-1858135734) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#867](https://github.com/scilus/scilpy/pull/867#issuecomment-1858133965) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#4](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/4#issuecomment-1857995189) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) +6. 🗣 Commented on [#3836](https://github.com/privacyidea/privacyidea/pull/3836#issuecomment-1857900518) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +7. 🗣 Commented on [#54](https://github.com/eastgenomics/Ploutos/pull/54#issuecomment-1857711741) in [eastgenomics/Ploutos](https://github.com/eastgenomics/Ploutos) +8. 🗣 Commented on [#288](https://github.com/SAP/credential-digger/pull/288#issuecomment-1857705442) in [SAP/credential-digger](https://github.com/SAP/credential-digger) +9. 🗣 Commented on [#1227](https://github.com/aimclub/FEDOT/pull/1227#issuecomment-1857478114) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#1025](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1025#issuecomment-1857013497) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From caa50d459319d82fad0f2f78c69be1e41f952abd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 18:20:53 +0000 Subject: [PATCH 0939/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 29b4c6b7..9d9bcb9a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21616](https://github.com/spyder-ide/spyder/pull/21616#issuecomment-1858242712) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#25](https://github.com/telebotter/django-telegrambot/pull/25#issuecomment-1858221381) in [telebotter/django-telegrambot](https://github.com/telebotter/django-telegrambot) -3. 🗣 Commented on [#868](https://github.com/scilus/scilpy/pull/868#issuecomment-1858135734) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#867](https://github.com/scilus/scilpy/pull/867#issuecomment-1858133965) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#4](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/4#issuecomment-1857995189) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) -6. 🗣 Commented on [#3836](https://github.com/privacyidea/privacyidea/pull/3836#issuecomment-1857900518) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -7. 🗣 Commented on [#54](https://github.com/eastgenomics/Ploutos/pull/54#issuecomment-1857711741) in [eastgenomics/Ploutos](https://github.com/eastgenomics/Ploutos) -8. 🗣 Commented on [#288](https://github.com/SAP/credential-digger/pull/288#issuecomment-1857705442) in [SAP/credential-digger](https://github.com/SAP/credential-digger) -9. 🗣 Commented on [#1227](https://github.com/aimclub/FEDOT/pull/1227#issuecomment-1857478114) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#1025](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1025#issuecomment-1857013497) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#1026](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1026#issuecomment-1858267764) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#21616](https://github.com/spyder-ide/spyder/pull/21616#issuecomment-1858242712) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#25](https://github.com/telebotter/django-telegrambot/pull/25#issuecomment-1858221381) in [telebotter/django-telegrambot](https://github.com/telebotter/django-telegrambot) +4. 🗣 Commented on [#868](https://github.com/scilus/scilpy/pull/868#issuecomment-1858135734) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#867](https://github.com/scilus/scilpy/pull/867#issuecomment-1858133965) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#4](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/4#issuecomment-1857995189) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) +7. 🗣 Commented on [#3836](https://github.com/privacyidea/privacyidea/pull/3836#issuecomment-1857900518) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#54](https://github.com/eastgenomics/Ploutos/pull/54#issuecomment-1857711741) in [eastgenomics/Ploutos](https://github.com/eastgenomics/Ploutos) +9. 🗣 Commented on [#288](https://github.com/SAP/credential-digger/pull/288#issuecomment-1857705442) in [SAP/credential-digger](https://github.com/SAP/credential-digger) +10. 🗣 Commented on [#1227](https://github.com/aimclub/FEDOT/pull/1227#issuecomment-1857478114) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From c7a0a25b2ed5a3bfdd1637cbe92698e17c7f7386 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 20:17:32 +0000 Subject: [PATCH 0940/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9d9bcb9a..f1375b69 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1026](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1026#issuecomment-1858267764) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#21616](https://github.com/spyder-ide/spyder/pull/21616#issuecomment-1858242712) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#25](https://github.com/telebotter/django-telegrambot/pull/25#issuecomment-1858221381) in [telebotter/django-telegrambot](https://github.com/telebotter/django-telegrambot) -4. 🗣 Commented on [#868](https://github.com/scilus/scilpy/pull/868#issuecomment-1858135734) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#867](https://github.com/scilus/scilpy/pull/867#issuecomment-1858133965) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#4](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/4#issuecomment-1857995189) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) -7. 🗣 Commented on [#3836](https://github.com/privacyidea/privacyidea/pull/3836#issuecomment-1857900518) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#54](https://github.com/eastgenomics/Ploutos/pull/54#issuecomment-1857711741) in [eastgenomics/Ploutos](https://github.com/eastgenomics/Ploutos) -9. 🗣 Commented on [#288](https://github.com/SAP/credential-digger/pull/288#issuecomment-1857705442) in [SAP/credential-digger](https://github.com/SAP/credential-digger) -10. 🗣 Commented on [#1227](https://github.com/aimclub/FEDOT/pull/1227#issuecomment-1857478114) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#1032](https://github.com/oemof/oemof-solph/pull/1032#issuecomment-1858420074) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +2. 🗣 Commented on [#296](https://github.com/AdvancedPhotonSource/tike/pull/296#issuecomment-1858396457) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +3. 🗣 Commented on [#1026](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1026#issuecomment-1858267764) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#21616](https://github.com/spyder-ide/spyder/pull/21616#issuecomment-1858242712) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#25](https://github.com/telebotter/django-telegrambot/pull/25#issuecomment-1858221381) in [telebotter/django-telegrambot](https://github.com/telebotter/django-telegrambot) +6. 🗣 Commented on [#868](https://github.com/scilus/scilpy/pull/868#issuecomment-1858135734) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#867](https://github.com/scilus/scilpy/pull/867#issuecomment-1858133965) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#4](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/4#issuecomment-1857995189) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) +9. 🗣 Commented on [#3836](https://github.com/privacyidea/privacyidea/pull/3836#issuecomment-1857900518) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#54](https://github.com/eastgenomics/Ploutos/pull/54#issuecomment-1857711741) in [eastgenomics/Ploutos](https://github.com/eastgenomics/Ploutos) From c971a21ddf08229e3d1dd1bc4e24971cbf132155 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 21:14:04 +0000 Subject: [PATCH 0941/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f1375b69..accb7a66 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1032](https://github.com/oemof/oemof-solph/pull/1032#issuecomment-1858420074) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -2. 🗣 Commented on [#296](https://github.com/AdvancedPhotonSource/tike/pull/296#issuecomment-1858396457) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -3. 🗣 Commented on [#1026](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1026#issuecomment-1858267764) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#21616](https://github.com/spyder-ide/spyder/pull/21616#issuecomment-1858242712) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#25](https://github.com/telebotter/django-telegrambot/pull/25#issuecomment-1858221381) in [telebotter/django-telegrambot](https://github.com/telebotter/django-telegrambot) -6. 🗣 Commented on [#868](https://github.com/scilus/scilpy/pull/868#issuecomment-1858135734) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#867](https://github.com/scilus/scilpy/pull/867#issuecomment-1858133965) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#4](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/4#issuecomment-1857995189) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) -9. 🗣 Commented on [#3836](https://github.com/privacyidea/privacyidea/pull/3836#issuecomment-1857900518) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#54](https://github.com/eastgenomics/Ploutos/pull/54#issuecomment-1857711741) in [eastgenomics/Ploutos](https://github.com/eastgenomics/Ploutos) +1. 🗣 Commented on [#1639](https://github.com/HEXRD/hexrdgui/pull/1639#issuecomment-1858466668) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +2. 🗣 Commented on [#1032](https://github.com/oemof/oemof-solph/pull/1032#issuecomment-1858420074) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +3. 🗣 Commented on [#296](https://github.com/AdvancedPhotonSource/tike/pull/296#issuecomment-1858396457) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +4. 🗣 Commented on [#1026](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1026#issuecomment-1858267764) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#21616](https://github.com/spyder-ide/spyder/pull/21616#issuecomment-1858242712) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#25](https://github.com/telebotter/django-telegrambot/pull/25#issuecomment-1858221381) in [telebotter/django-telegrambot](https://github.com/telebotter/django-telegrambot) +7. 🗣 Commented on [#868](https://github.com/scilus/scilpy/pull/868#issuecomment-1858135734) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#867](https://github.com/scilus/scilpy/pull/867#issuecomment-1858133965) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#4](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/4#issuecomment-1857995189) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) +10. 🗣 Commented on [#3836](https://github.com/privacyidea/privacyidea/pull/3836#issuecomment-1857900518) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From 22ba7e9f3e480f43464bdcf692557336bd7c3389 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 21:37:13 +0000 Subject: [PATCH 0942/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index accb7a66..2486a902 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1639](https://github.com/HEXRD/hexrdgui/pull/1639#issuecomment-1858466668) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -2. 🗣 Commented on [#1032](https://github.com/oemof/oemof-solph/pull/1032#issuecomment-1858420074) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -3. 🗣 Commented on [#296](https://github.com/AdvancedPhotonSource/tike/pull/296#issuecomment-1858396457) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -4. 🗣 Commented on [#1026](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1026#issuecomment-1858267764) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#21616](https://github.com/spyder-ide/spyder/pull/21616#issuecomment-1858242712) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#25](https://github.com/telebotter/django-telegrambot/pull/25#issuecomment-1858221381) in [telebotter/django-telegrambot](https://github.com/telebotter/django-telegrambot) -7. 🗣 Commented on [#868](https://github.com/scilus/scilpy/pull/868#issuecomment-1858135734) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#867](https://github.com/scilus/scilpy/pull/867#issuecomment-1858133965) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#4](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/4#issuecomment-1857995189) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) -10. 🗣 Commented on [#3836](https://github.com/privacyidea/privacyidea/pull/3836#issuecomment-1857900518) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/aiconfig/pull/1#issuecomment-1858516172) in [tuhinmallick/aiconfig](https://github.com/tuhinmallick/aiconfig) +2. 🗣 Commented on [#1639](https://github.com/HEXRD/hexrdgui/pull/1639#issuecomment-1858466668) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +3. 🗣 Commented on [#1032](https://github.com/oemof/oemof-solph/pull/1032#issuecomment-1858420074) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +4. 🗣 Commented on [#296](https://github.com/AdvancedPhotonSource/tike/pull/296#issuecomment-1858396457) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +5. 🗣 Commented on [#1026](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1026#issuecomment-1858267764) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#21616](https://github.com/spyder-ide/spyder/pull/21616#issuecomment-1858242712) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#25](https://github.com/telebotter/django-telegrambot/pull/25#issuecomment-1858221381) in [telebotter/django-telegrambot](https://github.com/telebotter/django-telegrambot) +8. 🗣 Commented on [#868](https://github.com/scilus/scilpy/pull/868#issuecomment-1858135734) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#867](https://github.com/scilus/scilpy/pull/867#issuecomment-1858133965) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#4](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/4#issuecomment-1857995189) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) From 2b451712becdb2702455a662b9757306e192c846 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 23:16:17 +0000 Subject: [PATCH 0943/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2486a902..e2beebfb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/aiconfig/pull/1#issuecomment-1858516172) in [tuhinmallick/aiconfig](https://github.com/tuhinmallick/aiconfig) -2. 🗣 Commented on [#1639](https://github.com/HEXRD/hexrdgui/pull/1639#issuecomment-1858466668) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -3. 🗣 Commented on [#1032](https://github.com/oemof/oemof-solph/pull/1032#issuecomment-1858420074) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -4. 🗣 Commented on [#296](https://github.com/AdvancedPhotonSource/tike/pull/296#issuecomment-1858396457) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -5. 🗣 Commented on [#1026](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1026#issuecomment-1858267764) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#21616](https://github.com/spyder-ide/spyder/pull/21616#issuecomment-1858242712) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#25](https://github.com/telebotter/django-telegrambot/pull/25#issuecomment-1858221381) in [telebotter/django-telegrambot](https://github.com/telebotter/django-telegrambot) -8. 🗣 Commented on [#868](https://github.com/scilus/scilpy/pull/868#issuecomment-1858135734) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#867](https://github.com/scilus/scilpy/pull/867#issuecomment-1858133965) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#4](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/4#issuecomment-1857995189) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) +1. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +2. 🗣 Commented on [#1027](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1027#issuecomment-1858582394) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#870](https://github.com/scilus/scilpy/pull/870#issuecomment-1858577838) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/aiconfig/pull/1#issuecomment-1858516172) in [tuhinmallick/aiconfig](https://github.com/tuhinmallick/aiconfig) +5. 🗣 Commented on [#1639](https://github.com/HEXRD/hexrdgui/pull/1639#issuecomment-1858466668) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +6. 🗣 Commented on [#1032](https://github.com/oemof/oemof-solph/pull/1032#issuecomment-1858420074) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +7. 🗣 Commented on [#296](https://github.com/AdvancedPhotonSource/tike/pull/296#issuecomment-1858396457) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +8. 🗣 Commented on [#1026](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1026#issuecomment-1858267764) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#21616](https://github.com/spyder-ide/spyder/pull/21616#issuecomment-1858242712) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#25](https://github.com/telebotter/django-telegrambot/pull/25#issuecomment-1858221381) in [telebotter/django-telegrambot](https://github.com/telebotter/django-telegrambot) From d0ff7176e2022cd8b64fb3535c6e1abfc2412139 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Dec 2023 05:14:50 +0000 Subject: [PATCH 0944/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e2beebfb..e42885e0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -2. 🗣 Commented on [#1027](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1027#issuecomment-1858582394) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#870](https://github.com/scilus/scilpy/pull/870#issuecomment-1858577838) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/aiconfig/pull/1#issuecomment-1858516172) in [tuhinmallick/aiconfig](https://github.com/tuhinmallick/aiconfig) -5. 🗣 Commented on [#1639](https://github.com/HEXRD/hexrdgui/pull/1639#issuecomment-1858466668) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -6. 🗣 Commented on [#1032](https://github.com/oemof/oemof-solph/pull/1032#issuecomment-1858420074) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -7. 🗣 Commented on [#296](https://github.com/AdvancedPhotonSource/tike/pull/296#issuecomment-1858396457) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -8. 🗣 Commented on [#1026](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1026#issuecomment-1858267764) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#21616](https://github.com/spyder-ide/spyder/pull/21616#issuecomment-1858242712) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#25](https://github.com/telebotter/django-telegrambot/pull/25#issuecomment-1858221381) in [telebotter/django-telegrambot](https://github.com/telebotter/django-telegrambot) +1. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) +2. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +3. 🗣 Commented on [#1027](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1027#issuecomment-1858582394) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#870](https://github.com/scilus/scilpy/pull/870#issuecomment-1858577838) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/aiconfig/pull/1#issuecomment-1858516172) in [tuhinmallick/aiconfig](https://github.com/tuhinmallick/aiconfig) +6. 🗣 Commented on [#1639](https://github.com/HEXRD/hexrdgui/pull/1639#issuecomment-1858466668) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +7. 🗣 Commented on [#1032](https://github.com/oemof/oemof-solph/pull/1032#issuecomment-1858420074) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +8. 🗣 Commented on [#296](https://github.com/AdvancedPhotonSource/tike/pull/296#issuecomment-1858396457) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +9. 🗣 Commented on [#1026](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1026#issuecomment-1858267764) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#21616](https://github.com/spyder-ide/spyder/pull/21616#issuecomment-1858242712) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From e2cf57ff9ac38d25dac8b9e765ad32c952c0b370 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Dec 2023 15:15:04 +0000 Subject: [PATCH 0945/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e42885e0..166f4969 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) -2. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -3. 🗣 Commented on [#1027](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1027#issuecomment-1858582394) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#870](https://github.com/scilus/scilpy/pull/870#issuecomment-1858577838) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/aiconfig/pull/1#issuecomment-1858516172) in [tuhinmallick/aiconfig](https://github.com/tuhinmallick/aiconfig) -6. 🗣 Commented on [#1639](https://github.com/HEXRD/hexrdgui/pull/1639#issuecomment-1858466668) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -7. 🗣 Commented on [#1032](https://github.com/oemof/oemof-solph/pull/1032#issuecomment-1858420074) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -8. 🗣 Commented on [#296](https://github.com/AdvancedPhotonSource/tike/pull/296#issuecomment-1858396457) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -9. 🗣 Commented on [#1026](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1026#issuecomment-1858267764) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#21616](https://github.com/spyder-ide/spyder/pull/21616#issuecomment-1858242712) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) +3. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +4. 🗣 Commented on [#1027](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1027#issuecomment-1858582394) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#870](https://github.com/scilus/scilpy/pull/870#issuecomment-1858577838) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/aiconfig/pull/1#issuecomment-1858516172) in [tuhinmallick/aiconfig](https://github.com/tuhinmallick/aiconfig) +7. 🗣 Commented on [#1639](https://github.com/HEXRD/hexrdgui/pull/1639#issuecomment-1858466668) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +8. 🗣 Commented on [#1032](https://github.com/oemof/oemof-solph/pull/1032#issuecomment-1858420074) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +9. 🗣 Commented on [#296](https://github.com/AdvancedPhotonSource/tike/pull/296#issuecomment-1858396457) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +10. 🗣 Commented on [#1026](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1026#issuecomment-1858267764) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 52ec41fae384cd0228328153dadac536ababb4d5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 Dec 2023 01:18:17 +0000 Subject: [PATCH 0946/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 166f4969..3754bd9e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) -3. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -4. 🗣 Commented on [#1027](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1027#issuecomment-1858582394) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#870](https://github.com/scilus/scilpy/pull/870#issuecomment-1858577838) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/aiconfig/pull/1#issuecomment-1858516172) in [tuhinmallick/aiconfig](https://github.com/tuhinmallick/aiconfig) -7. 🗣 Commented on [#1639](https://github.com/HEXRD/hexrdgui/pull/1639#issuecomment-1858466668) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -8. 🗣 Commented on [#1032](https://github.com/oemof/oemof-solph/pull/1032#issuecomment-1858420074) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -9. 🗣 Commented on [#296](https://github.com/AdvancedPhotonSource/tike/pull/296#issuecomment-1858396457) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -10. 🗣 Commented on [#1026](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1026#issuecomment-1858267764) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +2. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) +4. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +5. 🗣 Commented on [#1027](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1027#issuecomment-1858582394) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#870](https://github.com/scilus/scilpy/pull/870#issuecomment-1858577838) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/aiconfig/pull/1#issuecomment-1858516172) in [tuhinmallick/aiconfig](https://github.com/tuhinmallick/aiconfig) +8. 🗣 Commented on [#1639](https://github.com/HEXRD/hexrdgui/pull/1639#issuecomment-1858466668) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +9. 🗣 Commented on [#1032](https://github.com/oemof/oemof-solph/pull/1032#issuecomment-1858420074) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +10. 🗣 Commented on [#296](https://github.com/AdvancedPhotonSource/tike/pull/296#issuecomment-1858396457) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) From 6da3dbe378c0cd7613fbfea7922f615d4c973d07 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 Dec 2023 03:16:45 +0000 Subject: [PATCH 0947/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3754bd9e..87521c35 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -2. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) -4. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -5. 🗣 Commented on [#1027](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1027#issuecomment-1858582394) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#870](https://github.com/scilus/scilpy/pull/870#issuecomment-1858577838) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/aiconfig/pull/1#issuecomment-1858516172) in [tuhinmallick/aiconfig](https://github.com/tuhinmallick/aiconfig) -8. 🗣 Commented on [#1639](https://github.com/HEXRD/hexrdgui/pull/1639#issuecomment-1858466668) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -9. 🗣 Commented on [#1032](https://github.com/oemof/oemof-solph/pull/1032#issuecomment-1858420074) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -10. 🗣 Commented on [#296](https://github.com/AdvancedPhotonSource/tike/pull/296#issuecomment-1858396457) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +1. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +2. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +3. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) +5. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +6. 🗣 Commented on [#1027](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1027#issuecomment-1858582394) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#870](https://github.com/scilus/scilpy/pull/870#issuecomment-1858577838) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/aiconfig/pull/1#issuecomment-1858516172) in [tuhinmallick/aiconfig](https://github.com/tuhinmallick/aiconfig) +9. 🗣 Commented on [#1639](https://github.com/HEXRD/hexrdgui/pull/1639#issuecomment-1858466668) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +10. 🗣 Commented on [#1032](https://github.com/oemof/oemof-solph/pull/1032#issuecomment-1858420074) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) From 1007b2e87b169c2d2614ffcdef7c1f20f4f441d0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 Dec 2023 05:14:47 +0000 Subject: [PATCH 0948/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 87521c35..fc465bd5 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -2. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -3. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) -5. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -6. 🗣 Commented on [#1027](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1027#issuecomment-1858582394) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#870](https://github.com/scilus/scilpy/pull/870#issuecomment-1858577838) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/aiconfig/pull/1#issuecomment-1858516172) in [tuhinmallick/aiconfig](https://github.com/tuhinmallick/aiconfig) -9. 🗣 Commented on [#1639](https://github.com/HEXRD/hexrdgui/pull/1639#issuecomment-1858466668) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -10. 🗣 Commented on [#1032](https://github.com/oemof/oemof-solph/pull/1032#issuecomment-1858420074) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +1. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +3. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +4. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) +6. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +7. 🗣 Commented on [#1027](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1027#issuecomment-1858582394) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#870](https://github.com/scilus/scilpy/pull/870#issuecomment-1858577838) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/aiconfig/pull/1#issuecomment-1858516172) in [tuhinmallick/aiconfig](https://github.com/tuhinmallick/aiconfig) +10. 🗣 Commented on [#1639](https://github.com/HEXRD/hexrdgui/pull/1639#issuecomment-1858466668) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) From 7e67dc1c4bfabc7cbd20ecdd1fa4be95ac4cdeed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 Dec 2023 10:37:26 +0000 Subject: [PATCH 0949/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fc465bd5..f50b5338 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -3. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -4. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) -6. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -7. 🗣 Commented on [#1027](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1027#issuecomment-1858582394) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#870](https://github.com/scilus/scilpy/pull/870#issuecomment-1858577838) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/aiconfig/pull/1#issuecomment-1858516172) in [tuhinmallick/aiconfig](https://github.com/tuhinmallick/aiconfig) -10. 🗣 Commented on [#1639](https://github.com/HEXRD/hexrdgui/pull/1639#issuecomment-1858466668) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) +2. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +4. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +5. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) +7. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +8. 🗣 Commented on [#1027](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1027#issuecomment-1858582394) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#870](https://github.com/scilus/scilpy/pull/870#issuecomment-1858577838) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/aiconfig/pull/1#issuecomment-1858516172) in [tuhinmallick/aiconfig](https://github.com/tuhinmallick/aiconfig) From a34c852cf41dc548ed7165324300112476576224 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 Dec 2023 11:37:02 +0000 Subject: [PATCH 0950/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f50b5338..40fbf93c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) -2. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -4. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -5. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) -7. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -8. 🗣 Commented on [#1027](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1027#issuecomment-1858582394) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#870](https://github.com/scilus/scilpy/pull/870#issuecomment-1858577838) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/aiconfig/pull/1#issuecomment-1858516172) in [tuhinmallick/aiconfig](https://github.com/tuhinmallick/aiconfig) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/neurips_submission/pull/1#issuecomment-1859145097) in [tuhinmallick/neurips_submission](https://github.com/tuhinmallick/neurips_submission) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) +4. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +6. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +7. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) +9. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +10. 🗣 Commented on [#1027](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1027#issuecomment-1858582394) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 0c2e6a95df7dc58c23766a702cff314ae10fc4a6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 Dec 2023 18:37:24 +0000 Subject: [PATCH 0951/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 40fbf93c..0729b3bb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/neurips_submission/pull/1#issuecomment-1859145097) in [tuhinmallick/neurips_submission](https://github.com/tuhinmallick/neurips_submission) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) -4. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -6. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -7. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) -9. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -10. 🗣 Commented on [#1027](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1027#issuecomment-1858582394) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/neurips_submission/pull/1#issuecomment-1859145097) in [tuhinmallick/neurips_submission](https://github.com/tuhinmallick/neurips_submission) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) +5. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +7. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +8. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) +10. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) From 7685caacaa3f45682a43de6ff940a1a8786031c9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 10:18:41 +0000 Subject: [PATCH 0952/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0729b3bb..ce562ab4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/neurips_submission/pull/1#issuecomment-1859145097) in [tuhinmallick/neurips_submission](https://github.com/tuhinmallick/neurips_submission) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) -5. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -7. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -8. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) -10. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +1. 🗣 Commented on [#25](https://github.com/LipAnn/SongsChordsBot/pull/25#issuecomment-1859962948) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +2. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/neurips_submission/pull/1#issuecomment-1859145097) in [tuhinmallick/neurips_submission](https://github.com/tuhinmallick/neurips_submission) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) +6. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +8. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +9. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) From 2696d778a6ee360c9acef12caf67e8d7025faf31 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 12:32:48 +0000 Subject: [PATCH 0953/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ce562ab4..e55d3b59 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#25](https://github.com/LipAnn/SongsChordsBot/pull/25#issuecomment-1859962948) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -2. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/neurips_submission/pull/1#issuecomment-1859145097) in [tuhinmallick/neurips_submission](https://github.com/tuhinmallick/neurips_submission) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) -6. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -8. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -9. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) +1. 🗣 Commented on [#29](https://github.com/LipAnn/SongsChordsBot/pull/29#issuecomment-1860249724) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +2. 🗣 Commented on [#25](https://github.com/LipAnn/SongsChordsBot/pull/25#issuecomment-1859962948) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +3. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/neurips_submission/pull/1#issuecomment-1859145097) in [tuhinmallick/neurips_submission](https://github.com/tuhinmallick/neurips_submission) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) +7. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +9. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +10. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 0d09bcc8449b70626345d0254b4151287414e8fe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 14:37:44 +0000 Subject: [PATCH 0954/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e55d3b59..0729b3bb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#29](https://github.com/LipAnn/SongsChordsBot/pull/29#issuecomment-1860249724) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -2. 🗣 Commented on [#25](https://github.com/LipAnn/SongsChordsBot/pull/25#issuecomment-1859962948) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -3. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/neurips_submission/pull/1#issuecomment-1859145097) in [tuhinmallick/neurips_submission](https://github.com/tuhinmallick/neurips_submission) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) -7. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -9. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -10. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/neurips_submission/pull/1#issuecomment-1859145097) in [tuhinmallick/neurips_submission](https://github.com/tuhinmallick/neurips_submission) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) +5. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +7. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +8. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) +10. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) From 7a4294471a6d2de247df96f82104b131aa72f286 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 15:17:18 +0000 Subject: [PATCH 0955/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0729b3bb..469ec38d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/neurips_submission/pull/1#issuecomment-1859145097) in [tuhinmallick/neurips_submission](https://github.com/tuhinmallick/neurips_submission) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) -5. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -7. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -8. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) -10. 🗣 Commented on [#1208](https://github.com/tableau/connector-plugin-sdk/pull/1208#issuecomment-1858582938) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +1. 🗣 Commented on [#1232](https://github.com/aimclub/FEDOT/pull/1232#issuecomment-1860728144) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/neurips_submission/pull/1#issuecomment-1859145097) in [tuhinmallick/neurips_submission](https://github.com/tuhinmallick/neurips_submission) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) +6. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +8. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +9. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) From 4fa6b1da3eb6747cd5755648e38e145c7a2e8614 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 16:21:41 +0000 Subject: [PATCH 0956/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 469ec38d..31f7a616 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1232](https://github.com/aimclub/FEDOT/pull/1232#issuecomment-1860728144) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/neurips_submission/pull/1#issuecomment-1859145097) in [tuhinmallick/neurips_submission](https://github.com/tuhinmallick/neurips_submission) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) -6. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -8. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -9. 🗣 Commented on [#21622](https://github.com/spyder-ide/spyder/pull/21622#issuecomment-1858840769) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#854](https://github.com/fury-gl/fury/pull/854#issuecomment-1858720204) in [fury-gl/fury](https://github.com/fury-gl/fury) +1. 🗣 Commented on [#169](https://github.com/OpenFreeEnergy/gufe/pull/169#issuecomment-1860870557) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#1412](https://github.com/spacetelescope/jwql/pull/1412#issuecomment-1860866706) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#1232](https://github.com/aimclub/FEDOT/pull/1232#issuecomment-1860728144) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/neurips_submission/pull/1#issuecomment-1859145097) in [tuhinmallick/neurips_submission](https://github.com/tuhinmallick/neurips_submission) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) +8. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +10. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) From 83135e410521979dff1aeac08f967e539f16b5a4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 16:41:17 +0000 Subject: [PATCH 0957/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 31f7a616..d145397b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#169](https://github.com/OpenFreeEnergy/gufe/pull/169#issuecomment-1860870557) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#1412](https://github.com/spacetelescope/jwql/pull/1412#issuecomment-1860866706) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#1232](https://github.com/aimclub/FEDOT/pull/1232#issuecomment-1860728144) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/neurips_submission/pull/1#issuecomment-1859145097) in [tuhinmallick/neurips_submission](https://github.com/tuhinmallick/neurips_submission) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) -8. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -10. 🗣 Commented on [#17](https://github.com/kkuba91/turnament_organizer/pull/17#issuecomment-1859002544) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +1. 🗣 Commented on [#178](https://github.com/gwpy/pyomicron/pull/178#issuecomment-1860994455) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +2. 🗣 Commented on [#169](https://github.com/OpenFreeEnergy/gufe/pull/169#issuecomment-1860870557) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#1412](https://github.com/spacetelescope/jwql/pull/1412#issuecomment-1860866706) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#1232](https://github.com/aimclub/FEDOT/pull/1232#issuecomment-1860728144) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/neurips_submission/pull/1#issuecomment-1859145097) in [tuhinmallick/neurips_submission](https://github.com/tuhinmallick/neurips_submission) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) +9. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) From d3f23020f9f971cbf2ebf5650e5d5c3ac6247119 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 18:20:45 +0000 Subject: [PATCH 0958/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d145397b..0ee85103 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#178](https://github.com/gwpy/pyomicron/pull/178#issuecomment-1860994455) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -2. 🗣 Commented on [#169](https://github.com/OpenFreeEnergy/gufe/pull/169#issuecomment-1860870557) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#1412](https://github.com/spacetelescope/jwql/pull/1412#issuecomment-1860866706) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#1232](https://github.com/aimclub/FEDOT/pull/1232#issuecomment-1860728144) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/neurips_submission/pull/1#issuecomment-1859145097) in [tuhinmallick/neurips_submission](https://github.com/tuhinmallick/neurips_submission) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) -9. 🗣 Commented on [#223](https://github.com/CartoonFan/lutris/pull/223#issuecomment-1859037685) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#183](https://github.com/Fatal1ty/mashumaro/pull/183#issuecomment-1859021898) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +1. 🗣 Commented on [#1028](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1028#issuecomment-1861205359) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#1](https://github.com/Remi-Gau/QLS-course-materials/pull/1#issuecomment-1861187767) in [Remi-Gau/QLS-course-materials](https://github.com/Remi-Gau/QLS-course-materials) +3. 🗣 Commented on [#178](https://github.com/gwpy/pyomicron/pull/178#issuecomment-1860994455) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +4. 🗣 Commented on [#169](https://github.com/OpenFreeEnergy/gufe/pull/169#issuecomment-1860870557) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#1412](https://github.com/spacetelescope/jwql/pull/1412#issuecomment-1860866706) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#1232](https://github.com/aimclub/FEDOT/pull/1232#issuecomment-1860728144) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/neurips_submission/pull/1#issuecomment-1859145097) in [tuhinmallick/neurips_submission](https://github.com/tuhinmallick/neurips_submission) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) From 48d1c5fa762e0df9a30741e5a13776c07bc22058 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 19:37:13 +0000 Subject: [PATCH 0959/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0ee85103..3c8e29c7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1028](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1028#issuecomment-1861205359) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#1](https://github.com/Remi-Gau/QLS-course-materials/pull/1#issuecomment-1861187767) in [Remi-Gau/QLS-course-materials](https://github.com/Remi-Gau/QLS-course-materials) -3. 🗣 Commented on [#178](https://github.com/gwpy/pyomicron/pull/178#issuecomment-1860994455) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -4. 🗣 Commented on [#169](https://github.com/OpenFreeEnergy/gufe/pull/169#issuecomment-1860870557) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#1412](https://github.com/spacetelescope/jwql/pull/1412#issuecomment-1860866706) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#1232](https://github.com/aimclub/FEDOT/pull/1232#issuecomment-1860728144) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/neurips_submission/pull/1#issuecomment-1859145097) in [tuhinmallick/neurips_submission](https://github.com/tuhinmallick/neurips_submission) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/OpenAIWorkshop/pull/1#issuecomment-1859132785) in [tuhinmallick/OpenAIWorkshop](https://github.com/tuhinmallick/OpenAIWorkshop) +1. 🗣 Commented on [#90](https://github.com/ITMO-NSS-team/GAMLET/pull/90#issuecomment-1861425180) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +2. 🗣 Commented on [#415](https://github.com/HEPCloud/decisionengine_modules/pull/415#issuecomment-1861425141) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +3. 🗣 Commented on [#1028](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1028#issuecomment-1861205359) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#1](https://github.com/Remi-Gau/QLS-course-materials/pull/1#issuecomment-1861187767) in [Remi-Gau/QLS-course-materials](https://github.com/Remi-Gau/QLS-course-materials) +5. 🗣 Commented on [#178](https://github.com/gwpy/pyomicron/pull/178#issuecomment-1860994455) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +6. 🗣 Commented on [#169](https://github.com/OpenFreeEnergy/gufe/pull/169#issuecomment-1860870557) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#1412](https://github.com/spacetelescope/jwql/pull/1412#issuecomment-1860866706) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#1232](https://github.com/aimclub/FEDOT/pull/1232#issuecomment-1860728144) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) From cf0b636a5d8d59650e70fb9da44b9d852e13bd72 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 20:16:25 +0000 Subject: [PATCH 0960/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3c8e29c7..11db1ece 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#90](https://github.com/ITMO-NSS-team/GAMLET/pull/90#issuecomment-1861425180) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -2. 🗣 Commented on [#415](https://github.com/HEPCloud/decisionengine_modules/pull/415#issuecomment-1861425141) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -3. 🗣 Commented on [#1028](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1028#issuecomment-1861205359) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#1](https://github.com/Remi-Gau/QLS-course-materials/pull/1#issuecomment-1861187767) in [Remi-Gau/QLS-course-materials](https://github.com/Remi-Gau/QLS-course-materials) -5. 🗣 Commented on [#178](https://github.com/gwpy/pyomicron/pull/178#issuecomment-1860994455) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -6. 🗣 Commented on [#169](https://github.com/OpenFreeEnergy/gufe/pull/169#issuecomment-1860870557) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#1412](https://github.com/spacetelescope/jwql/pull/1412#issuecomment-1860866706) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#1232](https://github.com/aimclub/FEDOT/pull/1232#issuecomment-1860728144) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge/pull/1#issuecomment-1859145562) in [tuhinmallick/NeurIPS-llm-efficiency-challenge](https://github.com/tuhinmallick/NeurIPS-llm-efficiency-challenge) +1. 🗣 Commented on [#91](https://github.com/ITMO-NSS-team/GAMLET/pull/91#issuecomment-1861514591) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +2. 🗣 Commented on [#90](https://github.com/ITMO-NSS-team/GAMLET/pull/90#issuecomment-1861425180) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +3. 🗣 Commented on [#415](https://github.com/HEPCloud/decisionengine_modules/pull/415#issuecomment-1861425141) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +4. 🗣 Commented on [#1028](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1028#issuecomment-1861205359) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1](https://github.com/Remi-Gau/QLS-course-materials/pull/1#issuecomment-1861187767) in [Remi-Gau/QLS-course-materials](https://github.com/Remi-Gau/QLS-course-materials) +6. 🗣 Commented on [#178](https://github.com/gwpy/pyomicron/pull/178#issuecomment-1860994455) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +7. 🗣 Commented on [#169](https://github.com/OpenFreeEnergy/gufe/pull/169#issuecomment-1860870557) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#1412](https://github.com/spacetelescope/jwql/pull/1412#issuecomment-1860866706) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#1232](https://github.com/aimclub/FEDOT/pull/1232#issuecomment-1860728144) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) From f3b3d252b0c3ec3b7f8c54dcde15144b0800e35d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 21:14:09 +0000 Subject: [PATCH 0961/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 11db1ece..5f8bb2fb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#91](https://github.com/ITMO-NSS-team/GAMLET/pull/91#issuecomment-1861514591) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -2. 🗣 Commented on [#90](https://github.com/ITMO-NSS-team/GAMLET/pull/90#issuecomment-1861425180) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -3. 🗣 Commented on [#415](https://github.com/HEPCloud/decisionengine_modules/pull/415#issuecomment-1861425141) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -4. 🗣 Commented on [#1028](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1028#issuecomment-1861205359) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1](https://github.com/Remi-Gau/QLS-course-materials/pull/1#issuecomment-1861187767) in [Remi-Gau/QLS-course-materials](https://github.com/Remi-Gau/QLS-course-materials) -6. 🗣 Commented on [#178](https://github.com/gwpy/pyomicron/pull/178#issuecomment-1860994455) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -7. 🗣 Commented on [#169](https://github.com/OpenFreeEnergy/gufe/pull/169#issuecomment-1860870557) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#1412](https://github.com/spacetelescope/jwql/pull/1412#issuecomment-1860866706) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#1232](https://github.com/aimclub/FEDOT/pull/1232#issuecomment-1860728144) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#3083](https://github.com/reframe-hpc/reframe/pull/3083#issuecomment-1859242711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +1. 🗣 Commented on [#211](https://github.com/innobi/pantab/pull/211#issuecomment-1861612562) in [innobi/pantab](https://github.com/innobi/pantab) +2. 🗣 Commented on [#91](https://github.com/ITMO-NSS-team/GAMLET/pull/91#issuecomment-1861514591) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +3. 🗣 Commented on [#90](https://github.com/ITMO-NSS-team/GAMLET/pull/90#issuecomment-1861425180) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +4. 🗣 Commented on [#415](https://github.com/HEPCloud/decisionengine_modules/pull/415#issuecomment-1861425141) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +5. 🗣 Commented on [#1028](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1028#issuecomment-1861205359) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#1](https://github.com/Remi-Gau/QLS-course-materials/pull/1#issuecomment-1861187767) in [Remi-Gau/QLS-course-materials](https://github.com/Remi-Gau/QLS-course-materials) +7. 🗣 Commented on [#178](https://github.com/gwpy/pyomicron/pull/178#issuecomment-1860994455) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +8. 🗣 Commented on [#169](https://github.com/OpenFreeEnergy/gufe/pull/169#issuecomment-1860870557) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +9. 🗣 Commented on [#1412](https://github.com/spacetelescope/jwql/pull/1412#issuecomment-1860866706) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#1232](https://github.com/aimclub/FEDOT/pull/1232#issuecomment-1860728144) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From c259d568d8700879b1c147d7249e8f9549af1768 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 23:37:29 +0000 Subject: [PATCH 0962/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5f8bb2fb..61f3288c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#211](https://github.com/innobi/pantab/pull/211#issuecomment-1861612562) in [innobi/pantab](https://github.com/innobi/pantab) -2. 🗣 Commented on [#91](https://github.com/ITMO-NSS-team/GAMLET/pull/91#issuecomment-1861514591) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -3. 🗣 Commented on [#90](https://github.com/ITMO-NSS-team/GAMLET/pull/90#issuecomment-1861425180) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -4. 🗣 Commented on [#415](https://github.com/HEPCloud/decisionengine_modules/pull/415#issuecomment-1861425141) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -5. 🗣 Commented on [#1028](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1028#issuecomment-1861205359) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#1](https://github.com/Remi-Gau/QLS-course-materials/pull/1#issuecomment-1861187767) in [Remi-Gau/QLS-course-materials](https://github.com/Remi-Gau/QLS-course-materials) -7. 🗣 Commented on [#178](https://github.com/gwpy/pyomicron/pull/178#issuecomment-1860994455) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -8. 🗣 Commented on [#169](https://github.com/OpenFreeEnergy/gufe/pull/169#issuecomment-1860870557) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -9. 🗣 Commented on [#1412](https://github.com/spacetelescope/jwql/pull/1412#issuecomment-1860866706) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#1232](https://github.com/aimclub/FEDOT/pull/1232#issuecomment-1860728144) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#21629](https://github.com/spyder-ide/spyder/pull/21629#issuecomment-1861850959) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#211](https://github.com/innobi/pantab/pull/211#issuecomment-1861612562) in [innobi/pantab](https://github.com/innobi/pantab) +3. 🗣 Commented on [#91](https://github.com/ITMO-NSS-team/GAMLET/pull/91#issuecomment-1861514591) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +4. 🗣 Commented on [#90](https://github.com/ITMO-NSS-team/GAMLET/pull/90#issuecomment-1861425180) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +5. 🗣 Commented on [#415](https://github.com/HEPCloud/decisionengine_modules/pull/415#issuecomment-1861425141) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +6. 🗣 Commented on [#1028](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1028#issuecomment-1861205359) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#1](https://github.com/Remi-Gau/QLS-course-materials/pull/1#issuecomment-1861187767) in [Remi-Gau/QLS-course-materials](https://github.com/Remi-Gau/QLS-course-materials) +8. 🗣 Commented on [#178](https://github.com/gwpy/pyomicron/pull/178#issuecomment-1860994455) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +9. 🗣 Commented on [#169](https://github.com/OpenFreeEnergy/gufe/pull/169#issuecomment-1860870557) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#1412](https://github.com/spacetelescope/jwql/pull/1412#issuecomment-1860866706) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From d7a39ebd8f5cbf16aa25097cde10efbdae8865be Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 09:16:10 +0000 Subject: [PATCH 0963/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 61f3288c..18046c44 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21629](https://github.com/spyder-ide/spyder/pull/21629#issuecomment-1861850959) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#211](https://github.com/innobi/pantab/pull/211#issuecomment-1861612562) in [innobi/pantab](https://github.com/innobi/pantab) -3. 🗣 Commented on [#91](https://github.com/ITMO-NSS-team/GAMLET/pull/91#issuecomment-1861514591) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -4. 🗣 Commented on [#90](https://github.com/ITMO-NSS-team/GAMLET/pull/90#issuecomment-1861425180) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -5. 🗣 Commented on [#415](https://github.com/HEPCloud/decisionengine_modules/pull/415#issuecomment-1861425141) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -6. 🗣 Commented on [#1028](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1028#issuecomment-1861205359) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#1](https://github.com/Remi-Gau/QLS-course-materials/pull/1#issuecomment-1861187767) in [Remi-Gau/QLS-course-materials](https://github.com/Remi-Gau/QLS-course-materials) -8. 🗣 Commented on [#178](https://github.com/gwpy/pyomicron/pull/178#issuecomment-1860994455) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -9. 🗣 Commented on [#169](https://github.com/OpenFreeEnergy/gufe/pull/169#issuecomment-1860870557) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#1412](https://github.com/spacetelescope/jwql/pull/1412#issuecomment-1860866706) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#93](https://github.com/ITMO-NSS-team/GAMLET/pull/93#issuecomment-1862348196) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +2. 🗣 Commented on [#92](https://github.com/ITMO-NSS-team/GAMLET/pull/92#issuecomment-1862342491) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +3. 🗣 Commented on [#62](https://github.com/expertspec/expert/pull/62#issuecomment-1862336994) in [expertspec/expert](https://github.com/expertspec/expert) +4. 🗣 Commented on [#21629](https://github.com/spyder-ide/spyder/pull/21629#issuecomment-1861850959) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#211](https://github.com/innobi/pantab/pull/211#issuecomment-1861612562) in [innobi/pantab](https://github.com/innobi/pantab) +6. 🗣 Commented on [#91](https://github.com/ITMO-NSS-team/GAMLET/pull/91#issuecomment-1861514591) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +7. 🗣 Commented on [#90](https://github.com/ITMO-NSS-team/GAMLET/pull/90#issuecomment-1861425180) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +8. 🗣 Commented on [#415](https://github.com/HEPCloud/decisionengine_modules/pull/415#issuecomment-1861425141) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +9. 🗣 Commented on [#1028](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1028#issuecomment-1861205359) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#1](https://github.com/Remi-Gau/QLS-course-materials/pull/1#issuecomment-1861187767) in [Remi-Gau/QLS-course-materials](https://github.com/Remi-Gau/QLS-course-materials) From 1240c731df8a89bc4a0f4502b66ca87516427943 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 09:37:18 +0000 Subject: [PATCH 0964/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 18046c44..cac502b2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#93](https://github.com/ITMO-NSS-team/GAMLET/pull/93#issuecomment-1862348196) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -2. 🗣 Commented on [#92](https://github.com/ITMO-NSS-team/GAMLET/pull/92#issuecomment-1862342491) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -3. 🗣 Commented on [#62](https://github.com/expertspec/expert/pull/62#issuecomment-1862336994) in [expertspec/expert](https://github.com/expertspec/expert) -4. 🗣 Commented on [#21629](https://github.com/spyder-ide/spyder/pull/21629#issuecomment-1861850959) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#211](https://github.com/innobi/pantab/pull/211#issuecomment-1861612562) in [innobi/pantab](https://github.com/innobi/pantab) -6. 🗣 Commented on [#91](https://github.com/ITMO-NSS-team/GAMLET/pull/91#issuecomment-1861514591) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -7. 🗣 Commented on [#90](https://github.com/ITMO-NSS-team/GAMLET/pull/90#issuecomment-1861425180) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -8. 🗣 Commented on [#415](https://github.com/HEPCloud/decisionengine_modules/pull/415#issuecomment-1861425141) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -9. 🗣 Commented on [#1028](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1028#issuecomment-1861205359) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#1](https://github.com/Remi-Gau/QLS-course-materials/pull/1#issuecomment-1861187767) in [Remi-Gau/QLS-course-materials](https://github.com/Remi-Gau/QLS-course-materials) +1. 🗣 Commented on [#36](https://github.com/LipAnn/SongsChordsBot/pull/36#issuecomment-1862406779) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +2. 🗣 Commented on [#34](https://github.com/LipAnn/SongsChordsBot/pull/34#issuecomment-1862397963) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +3. 🗣 Commented on [#93](https://github.com/ITMO-NSS-team/GAMLET/pull/93#issuecomment-1862348196) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +4. 🗣 Commented on [#92](https://github.com/ITMO-NSS-team/GAMLET/pull/92#issuecomment-1862342491) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +5. 🗣 Commented on [#62](https://github.com/expertspec/expert/pull/62#issuecomment-1862336994) in [expertspec/expert](https://github.com/expertspec/expert) +6. 🗣 Commented on [#21629](https://github.com/spyder-ide/spyder/pull/21629#issuecomment-1861850959) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#211](https://github.com/innobi/pantab/pull/211#issuecomment-1861612562) in [innobi/pantab](https://github.com/innobi/pantab) +8. 🗣 Commented on [#91](https://github.com/ITMO-NSS-team/GAMLET/pull/91#issuecomment-1861514591) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +9. 🗣 Commented on [#90](https://github.com/ITMO-NSS-team/GAMLET/pull/90#issuecomment-1861425180) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +10. 🗣 Commented on [#415](https://github.com/HEPCloud/decisionengine_modules/pull/415#issuecomment-1861425141) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) From 34ead0bc7c66339c748250fbcfa8c3042c2ba866 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 10:17:23 +0000 Subject: [PATCH 0965/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cac502b2..afba362f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#36](https://github.com/LipAnn/SongsChordsBot/pull/36#issuecomment-1862406779) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -2. 🗣 Commented on [#34](https://github.com/LipAnn/SongsChordsBot/pull/34#issuecomment-1862397963) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -3. 🗣 Commented on [#93](https://github.com/ITMO-NSS-team/GAMLET/pull/93#issuecomment-1862348196) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -4. 🗣 Commented on [#92](https://github.com/ITMO-NSS-team/GAMLET/pull/92#issuecomment-1862342491) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -5. 🗣 Commented on [#62](https://github.com/expertspec/expert/pull/62#issuecomment-1862336994) in [expertspec/expert](https://github.com/expertspec/expert) -6. 🗣 Commented on [#21629](https://github.com/spyder-ide/spyder/pull/21629#issuecomment-1861850959) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#211](https://github.com/innobi/pantab/pull/211#issuecomment-1861612562) in [innobi/pantab](https://github.com/innobi/pantab) -8. 🗣 Commented on [#91](https://github.com/ITMO-NSS-team/GAMLET/pull/91#issuecomment-1861514591) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -9. 🗣 Commented on [#90](https://github.com/ITMO-NSS-team/GAMLET/pull/90#issuecomment-1861425180) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -10. 🗣 Commented on [#415](https://github.com/HEPCloud/decisionengine_modules/pull/415#issuecomment-1861425141) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +1. 🗣 Commented on [#63](https://github.com/expertspec/expert/pull/63#issuecomment-1862464994) in [expertspec/expert](https://github.com/expertspec/expert) +2. 🗣 Commented on [#36](https://github.com/LipAnn/SongsChordsBot/pull/36#issuecomment-1862406779) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +3. 🗣 Commented on [#34](https://github.com/LipAnn/SongsChordsBot/pull/34#issuecomment-1862397963) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +4. 🗣 Commented on [#93](https://github.com/ITMO-NSS-team/GAMLET/pull/93#issuecomment-1862348196) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +5. 🗣 Commented on [#92](https://github.com/ITMO-NSS-team/GAMLET/pull/92#issuecomment-1862342491) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +6. 🗣 Commented on [#62](https://github.com/expertspec/expert/pull/62#issuecomment-1862336994) in [expertspec/expert](https://github.com/expertspec/expert) +7. 🗣 Commented on [#21629](https://github.com/spyder-ide/spyder/pull/21629#issuecomment-1861850959) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#211](https://github.com/innobi/pantab/pull/211#issuecomment-1861612562) in [innobi/pantab](https://github.com/innobi/pantab) +9. 🗣 Commented on [#91](https://github.com/ITMO-NSS-team/GAMLET/pull/91#issuecomment-1861514591) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +10. 🗣 Commented on [#90](https://github.com/ITMO-NSS-team/GAMLET/pull/90#issuecomment-1861425180) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) From 0ea0abd18ed33be75abe709340844bb74981c213 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 12:31:18 +0000 Subject: [PATCH 0966/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index afba362f..604147ed 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#63](https://github.com/expertspec/expert/pull/63#issuecomment-1862464994) in [expertspec/expert](https://github.com/expertspec/expert) -2. 🗣 Commented on [#36](https://github.com/LipAnn/SongsChordsBot/pull/36#issuecomment-1862406779) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -3. 🗣 Commented on [#34](https://github.com/LipAnn/SongsChordsBot/pull/34#issuecomment-1862397963) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -4. 🗣 Commented on [#93](https://github.com/ITMO-NSS-team/GAMLET/pull/93#issuecomment-1862348196) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -5. 🗣 Commented on [#92](https://github.com/ITMO-NSS-team/GAMLET/pull/92#issuecomment-1862342491) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -6. 🗣 Commented on [#62](https://github.com/expertspec/expert/pull/62#issuecomment-1862336994) in [expertspec/expert](https://github.com/expertspec/expert) -7. 🗣 Commented on [#21629](https://github.com/spyder-ide/spyder/pull/21629#issuecomment-1861850959) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#211](https://github.com/innobi/pantab/pull/211#issuecomment-1861612562) in [innobi/pantab](https://github.com/innobi/pantab) -9. 🗣 Commented on [#91](https://github.com/ITMO-NSS-team/GAMLET/pull/91#issuecomment-1861514591) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -10. 🗣 Commented on [#90](https://github.com/ITMO-NSS-team/GAMLET/pull/90#issuecomment-1861425180) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +1. 🗣 Commented on [#98](https://github.com/Richard-Sti/csiborgtools/pull/98#issuecomment-1862641143) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +2. 🗣 Commented on [#164](https://github.com/eastgenomics/dias_batch_running/pull/164#issuecomment-1862632639) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#63](https://github.com/expertspec/expert/pull/63#issuecomment-1862464994) in [expertspec/expert](https://github.com/expertspec/expert) +4. 🗣 Commented on [#36](https://github.com/LipAnn/SongsChordsBot/pull/36#issuecomment-1862406779) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +5. 🗣 Commented on [#34](https://github.com/LipAnn/SongsChordsBot/pull/34#issuecomment-1862397963) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +6. 🗣 Commented on [#93](https://github.com/ITMO-NSS-team/GAMLET/pull/93#issuecomment-1862348196) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +7. 🗣 Commented on [#92](https://github.com/ITMO-NSS-team/GAMLET/pull/92#issuecomment-1862342491) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +8. 🗣 Commented on [#62](https://github.com/expertspec/expert/pull/62#issuecomment-1862336994) in [expertspec/expert](https://github.com/expertspec/expert) +9. 🗣 Commented on [#21629](https://github.com/spyder-ide/spyder/pull/21629#issuecomment-1861850959) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#211](https://github.com/innobi/pantab/pull/211#issuecomment-1861612562) in [innobi/pantab](https://github.com/innobi/pantab) From 3ca9ba0f4062bd62ffed3bce17ed213e897579c6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 15:16:53 +0000 Subject: [PATCH 0967/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 604147ed..ce018c3c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#98](https://github.com/Richard-Sti/csiborgtools/pull/98#issuecomment-1862641143) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -2. 🗣 Commented on [#164](https://github.com/eastgenomics/dias_batch_running/pull/164#issuecomment-1862632639) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#63](https://github.com/expertspec/expert/pull/63#issuecomment-1862464994) in [expertspec/expert](https://github.com/expertspec/expert) -4. 🗣 Commented on [#36](https://github.com/LipAnn/SongsChordsBot/pull/36#issuecomment-1862406779) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -5. 🗣 Commented on [#34](https://github.com/LipAnn/SongsChordsBot/pull/34#issuecomment-1862397963) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -6. 🗣 Commented on [#93](https://github.com/ITMO-NSS-team/GAMLET/pull/93#issuecomment-1862348196) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -7. 🗣 Commented on [#92](https://github.com/ITMO-NSS-team/GAMLET/pull/92#issuecomment-1862342491) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -8. 🗣 Commented on [#62](https://github.com/expertspec/expert/pull/62#issuecomment-1862336994) in [expertspec/expert](https://github.com/expertspec/expert) -9. 🗣 Commented on [#21629](https://github.com/spyder-ide/spyder/pull/21629#issuecomment-1861850959) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#211](https://github.com/innobi/pantab/pull/211#issuecomment-1861612562) in [innobi/pantab](https://github.com/innobi/pantab) +1. 🗣 Commented on [#160](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/160#issuecomment-1862955308) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +2. 🗣 Commented on [#98](https://github.com/Richard-Sti/csiborgtools/pull/98#issuecomment-1862641143) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +3. 🗣 Commented on [#164](https://github.com/eastgenomics/dias_batch_running/pull/164#issuecomment-1862632639) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +4. 🗣 Commented on [#63](https://github.com/expertspec/expert/pull/63#issuecomment-1862464994) in [expertspec/expert](https://github.com/expertspec/expert) +5. 🗣 Commented on [#36](https://github.com/LipAnn/SongsChordsBot/pull/36#issuecomment-1862406779) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +6. 🗣 Commented on [#34](https://github.com/LipAnn/SongsChordsBot/pull/34#issuecomment-1862397963) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +7. 🗣 Commented on [#93](https://github.com/ITMO-NSS-team/GAMLET/pull/93#issuecomment-1862348196) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +8. 🗣 Commented on [#92](https://github.com/ITMO-NSS-team/GAMLET/pull/92#issuecomment-1862342491) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +9. 🗣 Commented on [#62](https://github.com/expertspec/expert/pull/62#issuecomment-1862336994) in [expertspec/expert](https://github.com/expertspec/expert) +10. 🗣 Commented on [#21629](https://github.com/spyder-ide/spyder/pull/21629#issuecomment-1861850959) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From c0bb07dab1b37a6601acb0e25083bf7dee12c2ce Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 15:37:25 +0000 Subject: [PATCH 0968/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ce018c3c..80cbbf1b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#160](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/160#issuecomment-1862955308) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -2. 🗣 Commented on [#98](https://github.com/Richard-Sti/csiborgtools/pull/98#issuecomment-1862641143) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -3. 🗣 Commented on [#164](https://github.com/eastgenomics/dias_batch_running/pull/164#issuecomment-1862632639) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -4. 🗣 Commented on [#63](https://github.com/expertspec/expert/pull/63#issuecomment-1862464994) in [expertspec/expert](https://github.com/expertspec/expert) -5. 🗣 Commented on [#36](https://github.com/LipAnn/SongsChordsBot/pull/36#issuecomment-1862406779) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -6. 🗣 Commented on [#34](https://github.com/LipAnn/SongsChordsBot/pull/34#issuecomment-1862397963) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -7. 🗣 Commented on [#93](https://github.com/ITMO-NSS-team/GAMLET/pull/93#issuecomment-1862348196) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -8. 🗣 Commented on [#92](https://github.com/ITMO-NSS-team/GAMLET/pull/92#issuecomment-1862342491) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -9. 🗣 Commented on [#62](https://github.com/expertspec/expert/pull/62#issuecomment-1862336994) in [expertspec/expert](https://github.com/expertspec/expert) -10. 🗣 Commented on [#21629](https://github.com/spyder-ide/spyder/pull/21629#issuecomment-1861850959) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#1414](https://github.com/spacetelescope/jwql/pull/1414#issuecomment-1862997827) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#160](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/160#issuecomment-1862955308) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +3. 🗣 Commented on [#98](https://github.com/Richard-Sti/csiborgtools/pull/98#issuecomment-1862641143) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +4. 🗣 Commented on [#164](https://github.com/eastgenomics/dias_batch_running/pull/164#issuecomment-1862632639) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#63](https://github.com/expertspec/expert/pull/63#issuecomment-1862464994) in [expertspec/expert](https://github.com/expertspec/expert) +6. 🗣 Commented on [#36](https://github.com/LipAnn/SongsChordsBot/pull/36#issuecomment-1862406779) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +7. 🗣 Commented on [#34](https://github.com/LipAnn/SongsChordsBot/pull/34#issuecomment-1862397963) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +8. 🗣 Commented on [#93](https://github.com/ITMO-NSS-team/GAMLET/pull/93#issuecomment-1862348196) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +9. 🗣 Commented on [#92](https://github.com/ITMO-NSS-team/GAMLET/pull/92#issuecomment-1862342491) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +10. 🗣 Commented on [#62](https://github.com/expertspec/expert/pull/62#issuecomment-1862336994) in [expertspec/expert](https://github.com/expertspec/expert) From b7f0d977731c42f524d3f5e38f1011893377aac4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 17:12:04 +0000 Subject: [PATCH 0969/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 80cbbf1b..46004be1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1414](https://github.com/spacetelescope/jwql/pull/1414#issuecomment-1862997827) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#160](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/160#issuecomment-1862955308) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -3. 🗣 Commented on [#98](https://github.com/Richard-Sti/csiborgtools/pull/98#issuecomment-1862641143) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -4. 🗣 Commented on [#164](https://github.com/eastgenomics/dias_batch_running/pull/164#issuecomment-1862632639) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#63](https://github.com/expertspec/expert/pull/63#issuecomment-1862464994) in [expertspec/expert](https://github.com/expertspec/expert) -6. 🗣 Commented on [#36](https://github.com/LipAnn/SongsChordsBot/pull/36#issuecomment-1862406779) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -7. 🗣 Commented on [#34](https://github.com/LipAnn/SongsChordsBot/pull/34#issuecomment-1862397963) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -8. 🗣 Commented on [#93](https://github.com/ITMO-NSS-team/GAMLET/pull/93#issuecomment-1862348196) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -9. 🗣 Commented on [#92](https://github.com/ITMO-NSS-team/GAMLET/pull/92#issuecomment-1862342491) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -10. 🗣 Commented on [#62](https://github.com/expertspec/expert/pull/62#issuecomment-1862336994) in [expertspec/expert](https://github.com/expertspec/expert) +1. 🗣 Commented on [#855](https://github.com/fury-gl/fury/pull/855#issuecomment-1863118801) in [fury-gl/fury](https://github.com/fury-gl/fury) +2. 🗣 Commented on [#1414](https://github.com/spacetelescope/jwql/pull/1414#issuecomment-1862997827) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#160](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/160#issuecomment-1862955308) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +4. 🗣 Commented on [#98](https://github.com/Richard-Sti/csiborgtools/pull/98#issuecomment-1862641143) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +5. 🗣 Commented on [#164](https://github.com/eastgenomics/dias_batch_running/pull/164#issuecomment-1862632639) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#63](https://github.com/expertspec/expert/pull/63#issuecomment-1862464994) in [expertspec/expert](https://github.com/expertspec/expert) +7. 🗣 Commented on [#36](https://github.com/LipAnn/SongsChordsBot/pull/36#issuecomment-1862406779) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +8. 🗣 Commented on [#34](https://github.com/LipAnn/SongsChordsBot/pull/34#issuecomment-1862397963) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +9. 🗣 Commented on [#93](https://github.com/ITMO-NSS-team/GAMLET/pull/93#issuecomment-1862348196) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +10. 🗣 Commented on [#92](https://github.com/ITMO-NSS-team/GAMLET/pull/92#issuecomment-1862342491) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) From 37c9d49766dc9be43730881d6d3f73d06ae15c23 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 21:11:55 +0000 Subject: [PATCH 0970/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 46004be1..ffb51f95 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#855](https://github.com/fury-gl/fury/pull/855#issuecomment-1863118801) in [fury-gl/fury](https://github.com/fury-gl/fury) -2. 🗣 Commented on [#1414](https://github.com/spacetelescope/jwql/pull/1414#issuecomment-1862997827) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#160](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/160#issuecomment-1862955308) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -4. 🗣 Commented on [#98](https://github.com/Richard-Sti/csiborgtools/pull/98#issuecomment-1862641143) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -5. 🗣 Commented on [#164](https://github.com/eastgenomics/dias_batch_running/pull/164#issuecomment-1862632639) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#63](https://github.com/expertspec/expert/pull/63#issuecomment-1862464994) in [expertspec/expert](https://github.com/expertspec/expert) -7. 🗣 Commented on [#36](https://github.com/LipAnn/SongsChordsBot/pull/36#issuecomment-1862406779) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -8. 🗣 Commented on [#34](https://github.com/LipAnn/SongsChordsBot/pull/34#issuecomment-1862397963) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -9. 🗣 Commented on [#93](https://github.com/ITMO-NSS-team/GAMLET/pull/93#issuecomment-1862348196) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -10. 🗣 Commented on [#92](https://github.com/ITMO-NSS-team/GAMLET/pull/92#issuecomment-1862342491) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +1. 🗣 Commented on [#224](https://github.com/CartoonFan/lutris/pull/224#issuecomment-1863474638) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#855](https://github.com/fury-gl/fury/pull/855#issuecomment-1863118801) in [fury-gl/fury](https://github.com/fury-gl/fury) +3. 🗣 Commented on [#1414](https://github.com/spacetelescope/jwql/pull/1414#issuecomment-1862997827) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#160](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/160#issuecomment-1862955308) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +5. 🗣 Commented on [#98](https://github.com/Richard-Sti/csiborgtools/pull/98#issuecomment-1862641143) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +6. 🗣 Commented on [#164](https://github.com/eastgenomics/dias_batch_running/pull/164#issuecomment-1862632639) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#63](https://github.com/expertspec/expert/pull/63#issuecomment-1862464994) in [expertspec/expert](https://github.com/expertspec/expert) +8. 🗣 Commented on [#36](https://github.com/LipAnn/SongsChordsBot/pull/36#issuecomment-1862406779) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +9. 🗣 Commented on [#34](https://github.com/LipAnn/SongsChordsBot/pull/34#issuecomment-1862397963) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +10. 🗣 Commented on [#93](https://github.com/ITMO-NSS-team/GAMLET/pull/93#issuecomment-1862348196) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) From 11cab2fd650dbe946a00c7e415dae37c67d0ed3d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 22:13:22 +0000 Subject: [PATCH 0971/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ffb51f95..6c3222a9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#224](https://github.com/CartoonFan/lutris/pull/224#issuecomment-1863474638) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#855](https://github.com/fury-gl/fury/pull/855#issuecomment-1863118801) in [fury-gl/fury](https://github.com/fury-gl/fury) -3. 🗣 Commented on [#1414](https://github.com/spacetelescope/jwql/pull/1414#issuecomment-1862997827) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#160](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/160#issuecomment-1862955308) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -5. 🗣 Commented on [#98](https://github.com/Richard-Sti/csiborgtools/pull/98#issuecomment-1862641143) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -6. 🗣 Commented on [#164](https://github.com/eastgenomics/dias_batch_running/pull/164#issuecomment-1862632639) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#63](https://github.com/expertspec/expert/pull/63#issuecomment-1862464994) in [expertspec/expert](https://github.com/expertspec/expert) -8. 🗣 Commented on [#36](https://github.com/LipAnn/SongsChordsBot/pull/36#issuecomment-1862406779) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -9. 🗣 Commented on [#34](https://github.com/LipAnn/SongsChordsBot/pull/34#issuecomment-1862397963) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -10. 🗣 Commented on [#93](https://github.com/ITMO-NSS-team/GAMLET/pull/93#issuecomment-1862348196) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +1. 🗣 Commented on [#593](https://github.com/HEXRD/hexrd/pull/593#issuecomment-1863537288) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#1259](https://github.com/spacetelescope/jwql/pull/1259#issuecomment-1863507946) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#224](https://github.com/CartoonFan/lutris/pull/224#issuecomment-1863474638) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#855](https://github.com/fury-gl/fury/pull/855#issuecomment-1863118801) in [fury-gl/fury](https://github.com/fury-gl/fury) +5. 🗣 Commented on [#1414](https://github.com/spacetelescope/jwql/pull/1414#issuecomment-1862997827) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#160](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/160#issuecomment-1862955308) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +7. 🗣 Commented on [#98](https://github.com/Richard-Sti/csiborgtools/pull/98#issuecomment-1862641143) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +8. 🗣 Commented on [#164](https://github.com/eastgenomics/dias_batch_running/pull/164#issuecomment-1862632639) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#63](https://github.com/expertspec/expert/pull/63#issuecomment-1862464994) in [expertspec/expert](https://github.com/expertspec/expert) +10. 🗣 Commented on [#36](https://github.com/LipAnn/SongsChordsBot/pull/36#issuecomment-1862406779) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) From bba173ef6ae12849d5f5753f15f06f88f952cd96 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Dec 2023 02:37:04 +0000 Subject: [PATCH 0972/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6c3222a9..872971f9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#593](https://github.com/HEXRD/hexrd/pull/593#issuecomment-1863537288) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#1259](https://github.com/spacetelescope/jwql/pull/1259#issuecomment-1863507946) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#224](https://github.com/CartoonFan/lutris/pull/224#issuecomment-1863474638) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#855](https://github.com/fury-gl/fury/pull/855#issuecomment-1863118801) in [fury-gl/fury](https://github.com/fury-gl/fury) -5. 🗣 Commented on [#1414](https://github.com/spacetelescope/jwql/pull/1414#issuecomment-1862997827) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#160](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/160#issuecomment-1862955308) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -7. 🗣 Commented on [#98](https://github.com/Richard-Sti/csiborgtools/pull/98#issuecomment-1862641143) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -8. 🗣 Commented on [#164](https://github.com/eastgenomics/dias_batch_running/pull/164#issuecomment-1862632639) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#63](https://github.com/expertspec/expert/pull/63#issuecomment-1862464994) in [expertspec/expert](https://github.com/expertspec/expert) -10. 🗣 Commented on [#36](https://github.com/LipAnn/SongsChordsBot/pull/36#issuecomment-1862406779) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +1. 🗣 Commented on [#4374](https://github.com/MDAnalysis/mdanalysis/pull/4374#issuecomment-1863758658) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#593](https://github.com/HEXRD/hexrd/pull/593#issuecomment-1863537288) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#1259](https://github.com/spacetelescope/jwql/pull/1259#issuecomment-1863507946) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#224](https://github.com/CartoonFan/lutris/pull/224#issuecomment-1863474638) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#855](https://github.com/fury-gl/fury/pull/855#issuecomment-1863118801) in [fury-gl/fury](https://github.com/fury-gl/fury) +6. 🗣 Commented on [#1414](https://github.com/spacetelescope/jwql/pull/1414#issuecomment-1862997827) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#160](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/160#issuecomment-1862955308) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +8. 🗣 Commented on [#98](https://github.com/Richard-Sti/csiborgtools/pull/98#issuecomment-1862641143) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +9. 🗣 Commented on [#164](https://github.com/eastgenomics/dias_batch_running/pull/164#issuecomment-1862632639) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#63](https://github.com/expertspec/expert/pull/63#issuecomment-1862464994) in [expertspec/expert](https://github.com/expertspec/expert) From 7690d861f9a3ffda018e00adf4fd3e33492c7fcc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Dec 2023 04:16:40 +0000 Subject: [PATCH 0973/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 872971f9..db007d00 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4374](https://github.com/MDAnalysis/mdanalysis/pull/4374#issuecomment-1863758658) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#593](https://github.com/HEXRD/hexrd/pull/593#issuecomment-1863537288) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#1259](https://github.com/spacetelescope/jwql/pull/1259#issuecomment-1863507946) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#224](https://github.com/CartoonFan/lutris/pull/224#issuecomment-1863474638) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#855](https://github.com/fury-gl/fury/pull/855#issuecomment-1863118801) in [fury-gl/fury](https://github.com/fury-gl/fury) -6. 🗣 Commented on [#1414](https://github.com/spacetelescope/jwql/pull/1414#issuecomment-1862997827) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#160](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/160#issuecomment-1862955308) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -8. 🗣 Commented on [#98](https://github.com/Richard-Sti/csiborgtools/pull/98#issuecomment-1862641143) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -9. 🗣 Commented on [#164](https://github.com/eastgenomics/dias_batch_running/pull/164#issuecomment-1862632639) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#63](https://github.com/expertspec/expert/pull/63#issuecomment-1862464994) in [expertspec/expert](https://github.com/expertspec/expert) +1. 🗣 Commented on [#245](https://github.com/NCAR/wrf_hydro_py/pull/245#issuecomment-1863811435) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) +2. 🗣 Commented on [#4374](https://github.com/MDAnalysis/mdanalysis/pull/4374#issuecomment-1863758658) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#593](https://github.com/HEXRD/hexrd/pull/593#issuecomment-1863537288) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +4. 🗣 Commented on [#1259](https://github.com/spacetelescope/jwql/pull/1259#issuecomment-1863507946) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#224](https://github.com/CartoonFan/lutris/pull/224#issuecomment-1863474638) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#855](https://github.com/fury-gl/fury/pull/855#issuecomment-1863118801) in [fury-gl/fury](https://github.com/fury-gl/fury) +7. 🗣 Commented on [#1414](https://github.com/spacetelescope/jwql/pull/1414#issuecomment-1862997827) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#160](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/160#issuecomment-1862955308) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +9. 🗣 Commented on [#98](https://github.com/Richard-Sti/csiborgtools/pull/98#issuecomment-1862641143) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +10. 🗣 Commented on [#164](https://github.com/eastgenomics/dias_batch_running/pull/164#issuecomment-1862632639) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From e6d5a5cc42f915d37c947edd132526adb5b78a10 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Dec 2023 08:16:48 +0000 Subject: [PATCH 0974/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index db007d00..8bc62e97 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#245](https://github.com/NCAR/wrf_hydro_py/pull/245#issuecomment-1863811435) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) -2. 🗣 Commented on [#4374](https://github.com/MDAnalysis/mdanalysis/pull/4374#issuecomment-1863758658) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#593](https://github.com/HEXRD/hexrd/pull/593#issuecomment-1863537288) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -4. 🗣 Commented on [#1259](https://github.com/spacetelescope/jwql/pull/1259#issuecomment-1863507946) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#224](https://github.com/CartoonFan/lutris/pull/224#issuecomment-1863474638) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#855](https://github.com/fury-gl/fury/pull/855#issuecomment-1863118801) in [fury-gl/fury](https://github.com/fury-gl/fury) -7. 🗣 Commented on [#1414](https://github.com/spacetelescope/jwql/pull/1414#issuecomment-1862997827) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#160](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/160#issuecomment-1862955308) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -9. 🗣 Commented on [#98](https://github.com/Richard-Sti/csiborgtools/pull/98#issuecomment-1862641143) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -10. 🗣 Commented on [#164](https://github.com/eastgenomics/dias_batch_running/pull/164#issuecomment-1862632639) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/GoogleCalendarAssistant/pull/1#issuecomment-1864022146) in [tuhinmallick/GoogleCalendarAssistant](https://github.com/tuhinmallick/GoogleCalendarAssistant) +2. 🗣 Commented on [#38](https://github.com/LipAnn/SongsChordsBot/pull/38#issuecomment-1863998685) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +3. 🗣 Commented on [#245](https://github.com/NCAR/wrf_hydro_py/pull/245#issuecomment-1863811435) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) +4. 🗣 Commented on [#4374](https://github.com/MDAnalysis/mdanalysis/pull/4374#issuecomment-1863758658) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#593](https://github.com/HEXRD/hexrd/pull/593#issuecomment-1863537288) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +6. 🗣 Commented on [#1259](https://github.com/spacetelescope/jwql/pull/1259#issuecomment-1863507946) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#224](https://github.com/CartoonFan/lutris/pull/224#issuecomment-1863474638) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#855](https://github.com/fury-gl/fury/pull/855#issuecomment-1863118801) in [fury-gl/fury](https://github.com/fury-gl/fury) +9. 🗣 Commented on [#1414](https://github.com/spacetelescope/jwql/pull/1414#issuecomment-1862997827) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#160](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/160#issuecomment-1862955308) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) From 453c8c26c71ecfb38f8172f28905101644f9c759 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Dec 2023 11:11:51 +0000 Subject: [PATCH 0975/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8bc62e97..1e00ebc9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/GoogleCalendarAssistant/pull/1#issuecomment-1864022146) in [tuhinmallick/GoogleCalendarAssistant](https://github.com/tuhinmallick/GoogleCalendarAssistant) -2. 🗣 Commented on [#38](https://github.com/LipAnn/SongsChordsBot/pull/38#issuecomment-1863998685) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -3. 🗣 Commented on [#245](https://github.com/NCAR/wrf_hydro_py/pull/245#issuecomment-1863811435) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) -4. 🗣 Commented on [#4374](https://github.com/MDAnalysis/mdanalysis/pull/4374#issuecomment-1863758658) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#593](https://github.com/HEXRD/hexrd/pull/593#issuecomment-1863537288) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -6. 🗣 Commented on [#1259](https://github.com/spacetelescope/jwql/pull/1259#issuecomment-1863507946) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#224](https://github.com/CartoonFan/lutris/pull/224#issuecomment-1863474638) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#855](https://github.com/fury-gl/fury/pull/855#issuecomment-1863118801) in [fury-gl/fury](https://github.com/fury-gl/fury) -9. 🗣 Commented on [#1414](https://github.com/spacetelescope/jwql/pull/1414#issuecomment-1862997827) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#160](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/160#issuecomment-1862955308) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +1. 🗣 Commented on [#9102](https://github.com/statsmodels/statsmodels/pull/9102#issuecomment-1864250941) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/GoogleCalendarAssistant/pull/1#issuecomment-1864022146) in [tuhinmallick/GoogleCalendarAssistant](https://github.com/tuhinmallick/GoogleCalendarAssistant) +3. 🗣 Commented on [#38](https://github.com/LipAnn/SongsChordsBot/pull/38#issuecomment-1863998685) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +4. 🗣 Commented on [#245](https://github.com/NCAR/wrf_hydro_py/pull/245#issuecomment-1863811435) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) +5. 🗣 Commented on [#4374](https://github.com/MDAnalysis/mdanalysis/pull/4374#issuecomment-1863758658) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#593](https://github.com/HEXRD/hexrd/pull/593#issuecomment-1863537288) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +7. 🗣 Commented on [#1259](https://github.com/spacetelescope/jwql/pull/1259#issuecomment-1863507946) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#224](https://github.com/CartoonFan/lutris/pull/224#issuecomment-1863474638) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#855](https://github.com/fury-gl/fury/pull/855#issuecomment-1863118801) in [fury-gl/fury](https://github.com/fury-gl/fury) +10. 🗣 Commented on [#1414](https://github.com/spacetelescope/jwql/pull/1414#issuecomment-1862997827) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 82fd4f64b43610d54e7ba2c7911fb9243fdfc2c8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Dec 2023 12:25:39 +0000 Subject: [PATCH 0976/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1e00ebc9..c16b8bbb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#9102](https://github.com/statsmodels/statsmodels/pull/9102#issuecomment-1864250941) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/GoogleCalendarAssistant/pull/1#issuecomment-1864022146) in [tuhinmallick/GoogleCalendarAssistant](https://github.com/tuhinmallick/GoogleCalendarAssistant) -3. 🗣 Commented on [#38](https://github.com/LipAnn/SongsChordsBot/pull/38#issuecomment-1863998685) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -4. 🗣 Commented on [#245](https://github.com/NCAR/wrf_hydro_py/pull/245#issuecomment-1863811435) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) -5. 🗣 Commented on [#4374](https://github.com/MDAnalysis/mdanalysis/pull/4374#issuecomment-1863758658) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#593](https://github.com/HEXRD/hexrd/pull/593#issuecomment-1863537288) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -7. 🗣 Commented on [#1259](https://github.com/spacetelescope/jwql/pull/1259#issuecomment-1863507946) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#224](https://github.com/CartoonFan/lutris/pull/224#issuecomment-1863474638) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#855](https://github.com/fury-gl/fury/pull/855#issuecomment-1863118801) in [fury-gl/fury](https://github.com/fury-gl/fury) -10. 🗣 Commented on [#1414](https://github.com/spacetelescope/jwql/pull/1414#issuecomment-1862997827) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#41](https://github.com/LipAnn/SongsChordsBot/pull/41#issuecomment-1864386435) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +2. 🗣 Commented on [#9102](https://github.com/statsmodels/statsmodels/pull/9102#issuecomment-1864250941) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/GoogleCalendarAssistant/pull/1#issuecomment-1864022146) in [tuhinmallick/GoogleCalendarAssistant](https://github.com/tuhinmallick/GoogleCalendarAssistant) +4. 🗣 Commented on [#38](https://github.com/LipAnn/SongsChordsBot/pull/38#issuecomment-1863998685) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +5. 🗣 Commented on [#245](https://github.com/NCAR/wrf_hydro_py/pull/245#issuecomment-1863811435) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) +6. 🗣 Commented on [#4374](https://github.com/MDAnalysis/mdanalysis/pull/4374#issuecomment-1863758658) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#593](https://github.com/HEXRD/hexrd/pull/593#issuecomment-1863537288) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +8. 🗣 Commented on [#1259](https://github.com/spacetelescope/jwql/pull/1259#issuecomment-1863507946) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#224](https://github.com/CartoonFan/lutris/pull/224#issuecomment-1863474638) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#855](https://github.com/fury-gl/fury/pull/855#issuecomment-1863118801) in [fury-gl/fury](https://github.com/fury-gl/fury) From f215dd4cecc04929d441c4c48ace5fe098f4434d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Dec 2023 13:15:17 +0000 Subject: [PATCH 0977/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c16b8bbb..679cee71 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#41](https://github.com/LipAnn/SongsChordsBot/pull/41#issuecomment-1864386435) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -2. 🗣 Commented on [#9102](https://github.com/statsmodels/statsmodels/pull/9102#issuecomment-1864250941) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/GoogleCalendarAssistant/pull/1#issuecomment-1864022146) in [tuhinmallick/GoogleCalendarAssistant](https://github.com/tuhinmallick/GoogleCalendarAssistant) -4. 🗣 Commented on [#38](https://github.com/LipAnn/SongsChordsBot/pull/38#issuecomment-1863998685) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -5. 🗣 Commented on [#245](https://github.com/NCAR/wrf_hydro_py/pull/245#issuecomment-1863811435) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) -6. 🗣 Commented on [#4374](https://github.com/MDAnalysis/mdanalysis/pull/4374#issuecomment-1863758658) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#593](https://github.com/HEXRD/hexrd/pull/593#issuecomment-1863537288) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -8. 🗣 Commented on [#1259](https://github.com/spacetelescope/jwql/pull/1259#issuecomment-1863507946) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#224](https://github.com/CartoonFan/lutris/pull/224#issuecomment-1863474638) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#855](https://github.com/fury-gl/fury/pull/855#issuecomment-1863118801) in [fury-gl/fury](https://github.com/fury-gl/fury) +1. 🗣 Commented on [#42](https://github.com/LipAnn/SongsChordsBot/pull/42#issuecomment-1864454954) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +2. 🗣 Commented on [#41](https://github.com/LipAnn/SongsChordsBot/pull/41#issuecomment-1864386435) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +3. 🗣 Commented on [#9102](https://github.com/statsmodels/statsmodels/pull/9102#issuecomment-1864250941) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/GoogleCalendarAssistant/pull/1#issuecomment-1864022146) in [tuhinmallick/GoogleCalendarAssistant](https://github.com/tuhinmallick/GoogleCalendarAssistant) +5. 🗣 Commented on [#38](https://github.com/LipAnn/SongsChordsBot/pull/38#issuecomment-1863998685) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +6. 🗣 Commented on [#245](https://github.com/NCAR/wrf_hydro_py/pull/245#issuecomment-1863811435) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) +7. 🗣 Commented on [#4374](https://github.com/MDAnalysis/mdanalysis/pull/4374#issuecomment-1863758658) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#593](https://github.com/HEXRD/hexrd/pull/593#issuecomment-1863537288) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +9. 🗣 Commented on [#1259](https://github.com/spacetelescope/jwql/pull/1259#issuecomment-1863507946) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#224](https://github.com/CartoonFan/lutris/pull/224#issuecomment-1863474638) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 57f908539ad209b20aab331140d564e3ea8b0453 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Dec 2023 14:12:26 +0000 Subject: [PATCH 0978/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 679cee71..e8aff843 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#42](https://github.com/LipAnn/SongsChordsBot/pull/42#issuecomment-1864454954) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -2. 🗣 Commented on [#41](https://github.com/LipAnn/SongsChordsBot/pull/41#issuecomment-1864386435) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -3. 🗣 Commented on [#9102](https://github.com/statsmodels/statsmodels/pull/9102#issuecomment-1864250941) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/GoogleCalendarAssistant/pull/1#issuecomment-1864022146) in [tuhinmallick/GoogleCalendarAssistant](https://github.com/tuhinmallick/GoogleCalendarAssistant) -5. 🗣 Commented on [#38](https://github.com/LipAnn/SongsChordsBot/pull/38#issuecomment-1863998685) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -6. 🗣 Commented on [#245](https://github.com/NCAR/wrf_hydro_py/pull/245#issuecomment-1863811435) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) -7. 🗣 Commented on [#4374](https://github.com/MDAnalysis/mdanalysis/pull/4374#issuecomment-1863758658) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#593](https://github.com/HEXRD/hexrd/pull/593#issuecomment-1863537288) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -9. 🗣 Commented on [#1259](https://github.com/spacetelescope/jwql/pull/1259#issuecomment-1863507946) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#224](https://github.com/CartoonFan/lutris/pull/224#issuecomment-1863474638) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#2677](https://github.com/metabrainz/listenbrainz-server/pull/2677#issuecomment-1864515136) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#1641](https://github.com/HEXRD/hexrdgui/pull/1641#issuecomment-1864507198) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +3. 🗣 Commented on [#42](https://github.com/LipAnn/SongsChordsBot/pull/42#issuecomment-1864454954) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +4. 🗣 Commented on [#41](https://github.com/LipAnn/SongsChordsBot/pull/41#issuecomment-1864386435) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +5. 🗣 Commented on [#9102](https://github.com/statsmodels/statsmodels/pull/9102#issuecomment-1864250941) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/GoogleCalendarAssistant/pull/1#issuecomment-1864022146) in [tuhinmallick/GoogleCalendarAssistant](https://github.com/tuhinmallick/GoogleCalendarAssistant) +7. 🗣 Commented on [#38](https://github.com/LipAnn/SongsChordsBot/pull/38#issuecomment-1863998685) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +8. 🗣 Commented on [#245](https://github.com/NCAR/wrf_hydro_py/pull/245#issuecomment-1863811435) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) +9. 🗣 Commented on [#4374](https://github.com/MDAnalysis/mdanalysis/pull/4374#issuecomment-1863758658) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#593](https://github.com/HEXRD/hexrd/pull/593#issuecomment-1863537288) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) From 043e7b5fdaab2381ca29029204b5b351cefdbfd3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Dec 2023 15:37:15 +0000 Subject: [PATCH 0979/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e8aff843..a5bab880 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2677](https://github.com/metabrainz/listenbrainz-server/pull/2677#issuecomment-1864515136) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#1641](https://github.com/HEXRD/hexrdgui/pull/1641#issuecomment-1864507198) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -3. 🗣 Commented on [#42](https://github.com/LipAnn/SongsChordsBot/pull/42#issuecomment-1864454954) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -4. 🗣 Commented on [#41](https://github.com/LipAnn/SongsChordsBot/pull/41#issuecomment-1864386435) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -5. 🗣 Commented on [#9102](https://github.com/statsmodels/statsmodels/pull/9102#issuecomment-1864250941) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/GoogleCalendarAssistant/pull/1#issuecomment-1864022146) in [tuhinmallick/GoogleCalendarAssistant](https://github.com/tuhinmallick/GoogleCalendarAssistant) -7. 🗣 Commented on [#38](https://github.com/LipAnn/SongsChordsBot/pull/38#issuecomment-1863998685) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -8. 🗣 Commented on [#245](https://github.com/NCAR/wrf_hydro_py/pull/245#issuecomment-1863811435) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) -9. 🗣 Commented on [#4374](https://github.com/MDAnalysis/mdanalysis/pull/4374#issuecomment-1863758658) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#593](https://github.com/HEXRD/hexrd/pull/593#issuecomment-1863537288) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +1. 🗣 Commented on [#101](https://github.com/Richard-Sti/csiborgtools/pull/101#issuecomment-1864673799) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +2. 🗣 Commented on [#67](https://github.com/eastgenomics/eris/pull/67#issuecomment-1864634896) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#2677](https://github.com/metabrainz/listenbrainz-server/pull/2677#issuecomment-1864515136) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#1641](https://github.com/HEXRD/hexrdgui/pull/1641#issuecomment-1864507198) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +5. 🗣 Commented on [#42](https://github.com/LipAnn/SongsChordsBot/pull/42#issuecomment-1864454954) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +6. 🗣 Commented on [#41](https://github.com/LipAnn/SongsChordsBot/pull/41#issuecomment-1864386435) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +7. 🗣 Commented on [#9102](https://github.com/statsmodels/statsmodels/pull/9102#issuecomment-1864250941) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/GoogleCalendarAssistant/pull/1#issuecomment-1864022146) in [tuhinmallick/GoogleCalendarAssistant](https://github.com/tuhinmallick/GoogleCalendarAssistant) +9. 🗣 Commented on [#38](https://github.com/LipAnn/SongsChordsBot/pull/38#issuecomment-1863998685) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +10. 🗣 Commented on [#245](https://github.com/NCAR/wrf_hydro_py/pull/245#issuecomment-1863811435) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) From bb2017d8d0f9d7d6548e882d47b42172c47ce571 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Dec 2023 17:37:02 +0000 Subject: [PATCH 0980/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a5bab880..329b342f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#101](https://github.com/Richard-Sti/csiborgtools/pull/101#issuecomment-1864673799) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -2. 🗣 Commented on [#67](https://github.com/eastgenomics/eris/pull/67#issuecomment-1864634896) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#2677](https://github.com/metabrainz/listenbrainz-server/pull/2677#issuecomment-1864515136) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#1641](https://github.com/HEXRD/hexrdgui/pull/1641#issuecomment-1864507198) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -5. 🗣 Commented on [#42](https://github.com/LipAnn/SongsChordsBot/pull/42#issuecomment-1864454954) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -6. 🗣 Commented on [#41](https://github.com/LipAnn/SongsChordsBot/pull/41#issuecomment-1864386435) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -7. 🗣 Commented on [#9102](https://github.com/statsmodels/statsmodels/pull/9102#issuecomment-1864250941) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/GoogleCalendarAssistant/pull/1#issuecomment-1864022146) in [tuhinmallick/GoogleCalendarAssistant](https://github.com/tuhinmallick/GoogleCalendarAssistant) -9. 🗣 Commented on [#38](https://github.com/LipAnn/SongsChordsBot/pull/38#issuecomment-1863998685) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -10. 🗣 Commented on [#245](https://github.com/NCAR/wrf_hydro_py/pull/245#issuecomment-1863811435) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) +1. 🗣 Commented on [#1416](https://github.com/spacetelescope/jwql/pull/1416#issuecomment-1864856103) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#101](https://github.com/Richard-Sti/csiborgtools/pull/101#issuecomment-1864673799) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +3. 🗣 Commented on [#67](https://github.com/eastgenomics/eris/pull/67#issuecomment-1864634896) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#2677](https://github.com/metabrainz/listenbrainz-server/pull/2677#issuecomment-1864515136) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#1641](https://github.com/HEXRD/hexrdgui/pull/1641#issuecomment-1864507198) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +6. 🗣 Commented on [#42](https://github.com/LipAnn/SongsChordsBot/pull/42#issuecomment-1864454954) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +7. 🗣 Commented on [#41](https://github.com/LipAnn/SongsChordsBot/pull/41#issuecomment-1864386435) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +8. 🗣 Commented on [#9102](https://github.com/statsmodels/statsmodels/pull/9102#issuecomment-1864250941) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/GoogleCalendarAssistant/pull/1#issuecomment-1864022146) in [tuhinmallick/GoogleCalendarAssistant](https://github.com/tuhinmallick/GoogleCalendarAssistant) +10. 🗣 Commented on [#38](https://github.com/LipAnn/SongsChordsBot/pull/38#issuecomment-1863998685) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) From a693a1e72475a15718861db5f7a0c198ea0e1bb3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Dec 2023 18:20:35 +0000 Subject: [PATCH 0981/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 329b342f..54bb61cf 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1416](https://github.com/spacetelescope/jwql/pull/1416#issuecomment-1864856103) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#101](https://github.com/Richard-Sti/csiborgtools/pull/101#issuecomment-1864673799) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -3. 🗣 Commented on [#67](https://github.com/eastgenomics/eris/pull/67#issuecomment-1864634896) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#2677](https://github.com/metabrainz/listenbrainz-server/pull/2677#issuecomment-1864515136) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#1641](https://github.com/HEXRD/hexrdgui/pull/1641#issuecomment-1864507198) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -6. 🗣 Commented on [#42](https://github.com/LipAnn/SongsChordsBot/pull/42#issuecomment-1864454954) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -7. 🗣 Commented on [#41](https://github.com/LipAnn/SongsChordsBot/pull/41#issuecomment-1864386435) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -8. 🗣 Commented on [#9102](https://github.com/statsmodels/statsmodels/pull/9102#issuecomment-1864250941) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/GoogleCalendarAssistant/pull/1#issuecomment-1864022146) in [tuhinmallick/GoogleCalendarAssistant](https://github.com/tuhinmallick/GoogleCalendarAssistant) -10. 🗣 Commented on [#38](https://github.com/LipAnn/SongsChordsBot/pull/38#issuecomment-1863998685) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +1. 🗣 Commented on [#1030](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1030#issuecomment-1864912685) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#1416](https://github.com/spacetelescope/jwql/pull/1416#issuecomment-1864856103) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#101](https://github.com/Richard-Sti/csiborgtools/pull/101#issuecomment-1864673799) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +4. 🗣 Commented on [#67](https://github.com/eastgenomics/eris/pull/67#issuecomment-1864634896) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#2677](https://github.com/metabrainz/listenbrainz-server/pull/2677#issuecomment-1864515136) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#1641](https://github.com/HEXRD/hexrdgui/pull/1641#issuecomment-1864507198) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +7. 🗣 Commented on [#42](https://github.com/LipAnn/SongsChordsBot/pull/42#issuecomment-1864454954) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +8. 🗣 Commented on [#41](https://github.com/LipAnn/SongsChordsBot/pull/41#issuecomment-1864386435) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +9. 🗣 Commented on [#9102](https://github.com/statsmodels/statsmodels/pull/9102#issuecomment-1864250941) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/GoogleCalendarAssistant/pull/1#issuecomment-1864022146) in [tuhinmallick/GoogleCalendarAssistant](https://github.com/tuhinmallick/GoogleCalendarAssistant) From fef4e500fa6b390b49d5458be753308f0667970a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Dec 2023 18:37:41 +0000 Subject: [PATCH 0982/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 54bb61cf..1082b230 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1030](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1030#issuecomment-1864912685) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#1416](https://github.com/spacetelescope/jwql/pull/1416#issuecomment-1864856103) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#101](https://github.com/Richard-Sti/csiborgtools/pull/101#issuecomment-1864673799) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -4. 🗣 Commented on [#67](https://github.com/eastgenomics/eris/pull/67#issuecomment-1864634896) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#2677](https://github.com/metabrainz/listenbrainz-server/pull/2677#issuecomment-1864515136) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#1641](https://github.com/HEXRD/hexrdgui/pull/1641#issuecomment-1864507198) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -7. 🗣 Commented on [#42](https://github.com/LipAnn/SongsChordsBot/pull/42#issuecomment-1864454954) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -8. 🗣 Commented on [#41](https://github.com/LipAnn/SongsChordsBot/pull/41#issuecomment-1864386435) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -9. 🗣 Commented on [#9102](https://github.com/statsmodels/statsmodels/pull/9102#issuecomment-1864250941) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/GoogleCalendarAssistant/pull/1#issuecomment-1864022146) in [tuhinmallick/GoogleCalendarAssistant](https://github.com/tuhinmallick/GoogleCalendarAssistant) +1. 🗣 Commented on [#135](https://github.com/OpenFreeEnergy/gufe/pull/135#issuecomment-1864947613) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#1030](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1030#issuecomment-1864912685) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#1416](https://github.com/spacetelescope/jwql/pull/1416#issuecomment-1864856103) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#101](https://github.com/Richard-Sti/csiborgtools/pull/101#issuecomment-1864673799) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +5. 🗣 Commented on [#67](https://github.com/eastgenomics/eris/pull/67#issuecomment-1864634896) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#2677](https://github.com/metabrainz/listenbrainz-server/pull/2677#issuecomment-1864515136) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#1641](https://github.com/HEXRD/hexrdgui/pull/1641#issuecomment-1864507198) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +8. 🗣 Commented on [#42](https://github.com/LipAnn/SongsChordsBot/pull/42#issuecomment-1864454954) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +9. 🗣 Commented on [#41](https://github.com/LipAnn/SongsChordsBot/pull/41#issuecomment-1864386435) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +10. 🗣 Commented on [#9102](https://github.com/statsmodels/statsmodels/pull/9102#issuecomment-1864250941) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) From 2c2e9a2c51ebd719df917bf5afb201cda8ca2192 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Dec 2023 23:16:33 +0000 Subject: [PATCH 0983/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1082b230..cd0eb402 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#135](https://github.com/OpenFreeEnergy/gufe/pull/135#issuecomment-1864947613) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#1030](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1030#issuecomment-1864912685) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#1416](https://github.com/spacetelescope/jwql/pull/1416#issuecomment-1864856103) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#101](https://github.com/Richard-Sti/csiborgtools/pull/101#issuecomment-1864673799) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -5. 🗣 Commented on [#67](https://github.com/eastgenomics/eris/pull/67#issuecomment-1864634896) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#2677](https://github.com/metabrainz/listenbrainz-server/pull/2677#issuecomment-1864515136) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#1641](https://github.com/HEXRD/hexrdgui/pull/1641#issuecomment-1864507198) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -8. 🗣 Commented on [#42](https://github.com/LipAnn/SongsChordsBot/pull/42#issuecomment-1864454954) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -9. 🗣 Commented on [#41](https://github.com/LipAnn/SongsChordsBot/pull/41#issuecomment-1864386435) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -10. 🗣 Commented on [#9102](https://github.com/statsmodels/statsmodels/pull/9102#issuecomment-1864250941) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/weak-to-strong/pull/1#issuecomment-1865254562) in [tuhinmallick/weak-to-strong](https://github.com/tuhinmallick/weak-to-strong) +2. 🗣 Commented on [#135](https://github.com/OpenFreeEnergy/gufe/pull/135#issuecomment-1864947613) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#1030](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1030#issuecomment-1864912685) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#1416](https://github.com/spacetelescope/jwql/pull/1416#issuecomment-1864856103) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#101](https://github.com/Richard-Sti/csiborgtools/pull/101#issuecomment-1864673799) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +6. 🗣 Commented on [#67](https://github.com/eastgenomics/eris/pull/67#issuecomment-1864634896) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#2677](https://github.com/metabrainz/listenbrainz-server/pull/2677#issuecomment-1864515136) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#1641](https://github.com/HEXRD/hexrdgui/pull/1641#issuecomment-1864507198) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +9. 🗣 Commented on [#42](https://github.com/LipAnn/SongsChordsBot/pull/42#issuecomment-1864454954) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +10. 🗣 Commented on [#41](https://github.com/LipAnn/SongsChordsBot/pull/41#issuecomment-1864386435) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) From c0b25329418d8ac6920ad2836e20054807944a57 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Dec 2023 02:08:44 +0000 Subject: [PATCH 0984/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cd0eb402..5e2eb5e6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/weak-to-strong/pull/1#issuecomment-1865254562) in [tuhinmallick/weak-to-strong](https://github.com/tuhinmallick/weak-to-strong) -2. 🗣 Commented on [#135](https://github.com/OpenFreeEnergy/gufe/pull/135#issuecomment-1864947613) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#1030](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1030#issuecomment-1864912685) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#1416](https://github.com/spacetelescope/jwql/pull/1416#issuecomment-1864856103) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#101](https://github.com/Richard-Sti/csiborgtools/pull/101#issuecomment-1864673799) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -6. 🗣 Commented on [#67](https://github.com/eastgenomics/eris/pull/67#issuecomment-1864634896) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#2677](https://github.com/metabrainz/listenbrainz-server/pull/2677#issuecomment-1864515136) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#1641](https://github.com/HEXRD/hexrdgui/pull/1641#issuecomment-1864507198) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -9. 🗣 Commented on [#42](https://github.com/LipAnn/SongsChordsBot/pull/42#issuecomment-1864454954) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -10. 🗣 Commented on [#41](https://github.com/LipAnn/SongsChordsBot/pull/41#issuecomment-1864386435) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +1. 🗣 Commented on [#21641](https://github.com/spyder-ide/spyder/pull/21641#issuecomment-1865353013) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/weak-to-strong/pull/1#issuecomment-1865254562) in [tuhinmallick/weak-to-strong](https://github.com/tuhinmallick/weak-to-strong) +3. 🗣 Commented on [#135](https://github.com/OpenFreeEnergy/gufe/pull/135#issuecomment-1864947613) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#1030](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1030#issuecomment-1864912685) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1416](https://github.com/spacetelescope/jwql/pull/1416#issuecomment-1864856103) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#101](https://github.com/Richard-Sti/csiborgtools/pull/101#issuecomment-1864673799) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +7. 🗣 Commented on [#67](https://github.com/eastgenomics/eris/pull/67#issuecomment-1864634896) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#2677](https://github.com/metabrainz/listenbrainz-server/pull/2677#issuecomment-1864515136) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#1641](https://github.com/HEXRD/hexrdgui/pull/1641#issuecomment-1864507198) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +10. 🗣 Commented on [#42](https://github.com/LipAnn/SongsChordsBot/pull/42#issuecomment-1864454954) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) From 6d0f9968eeace14c32d7f038d01461e1a4289efd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Dec 2023 07:37:15 +0000 Subject: [PATCH 0985/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5e2eb5e6..78cd7905 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21641](https://github.com/spyder-ide/spyder/pull/21641#issuecomment-1865353013) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/weak-to-strong/pull/1#issuecomment-1865254562) in [tuhinmallick/weak-to-strong](https://github.com/tuhinmallick/weak-to-strong) -3. 🗣 Commented on [#135](https://github.com/OpenFreeEnergy/gufe/pull/135#issuecomment-1864947613) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#1030](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1030#issuecomment-1864912685) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1416](https://github.com/spacetelescope/jwql/pull/1416#issuecomment-1864856103) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#101](https://github.com/Richard-Sti/csiborgtools/pull/101#issuecomment-1864673799) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -7. 🗣 Commented on [#67](https://github.com/eastgenomics/eris/pull/67#issuecomment-1864634896) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#2677](https://github.com/metabrainz/listenbrainz-server/pull/2677#issuecomment-1864515136) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#1641](https://github.com/HEXRD/hexrdgui/pull/1641#issuecomment-1864507198) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -10. 🗣 Commented on [#42](https://github.com/LipAnn/SongsChordsBot/pull/42#issuecomment-1864454954) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +1. 🗣 Commented on [#500](https://github.com/zarr-developers/numcodecs/pull/500#issuecomment-1865720842) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +2. 🗣 Commented on [#21641](https://github.com/spyder-ide/spyder/pull/21641#issuecomment-1865353013) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/weak-to-strong/pull/1#issuecomment-1865254562) in [tuhinmallick/weak-to-strong](https://github.com/tuhinmallick/weak-to-strong) +4. 🗣 Commented on [#135](https://github.com/OpenFreeEnergy/gufe/pull/135#issuecomment-1864947613) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#1030](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1030#issuecomment-1864912685) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#1416](https://github.com/spacetelescope/jwql/pull/1416#issuecomment-1864856103) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#101](https://github.com/Richard-Sti/csiborgtools/pull/101#issuecomment-1864673799) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +8. 🗣 Commented on [#67](https://github.com/eastgenomics/eris/pull/67#issuecomment-1864634896) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#2677](https://github.com/metabrainz/listenbrainz-server/pull/2677#issuecomment-1864515136) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#1641](https://github.com/HEXRD/hexrdgui/pull/1641#issuecomment-1864507198) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) From ee0239739dd9e2d4712f235477c690630d2d23b1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Dec 2023 08:20:27 +0000 Subject: [PATCH 0986/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 78cd7905..284f4c56 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#500](https://github.com/zarr-developers/numcodecs/pull/500#issuecomment-1865720842) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -2. 🗣 Commented on [#21641](https://github.com/spyder-ide/spyder/pull/21641#issuecomment-1865353013) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/weak-to-strong/pull/1#issuecomment-1865254562) in [tuhinmallick/weak-to-strong](https://github.com/tuhinmallick/weak-to-strong) -4. 🗣 Commented on [#135](https://github.com/OpenFreeEnergy/gufe/pull/135#issuecomment-1864947613) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#1030](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1030#issuecomment-1864912685) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#1416](https://github.com/spacetelescope/jwql/pull/1416#issuecomment-1864856103) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#101](https://github.com/Richard-Sti/csiborgtools/pull/101#issuecomment-1864673799) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -8. 🗣 Commented on [#67](https://github.com/eastgenomics/eris/pull/67#issuecomment-1864634896) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#2677](https://github.com/metabrainz/listenbrainz-server/pull/2677#issuecomment-1864515136) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#1641](https://github.com/HEXRD/hexrdgui/pull/1641#issuecomment-1864507198) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +1. 🗣 Commented on [#225](https://github.com/CartoonFan/lutris/pull/225#issuecomment-1865838720) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#43](https://github.com/LipAnn/SongsChordsBot/pull/43#issuecomment-1865818870) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +3. 🗣 Commented on [#500](https://github.com/zarr-developers/numcodecs/pull/500#issuecomment-1865720842) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +4. 🗣 Commented on [#21641](https://github.com/spyder-ide/spyder/pull/21641#issuecomment-1865353013) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/weak-to-strong/pull/1#issuecomment-1865254562) in [tuhinmallick/weak-to-strong](https://github.com/tuhinmallick/weak-to-strong) +6. 🗣 Commented on [#135](https://github.com/OpenFreeEnergy/gufe/pull/135#issuecomment-1864947613) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#1030](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1030#issuecomment-1864912685) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#1416](https://github.com/spacetelescope/jwql/pull/1416#issuecomment-1864856103) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#101](https://github.com/Richard-Sti/csiborgtools/pull/101#issuecomment-1864673799) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +10. 🗣 Commented on [#67](https://github.com/eastgenomics/eris/pull/67#issuecomment-1864634896) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 72c29deaa108c0a56f2a3c90143b41d96ab1b99e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Dec 2023 09:37:23 +0000 Subject: [PATCH 0987/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 284f4c56..4f8a80bd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#225](https://github.com/CartoonFan/lutris/pull/225#issuecomment-1865838720) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#43](https://github.com/LipAnn/SongsChordsBot/pull/43#issuecomment-1865818870) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -3. 🗣 Commented on [#500](https://github.com/zarr-developers/numcodecs/pull/500#issuecomment-1865720842) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -4. 🗣 Commented on [#21641](https://github.com/spyder-ide/spyder/pull/21641#issuecomment-1865353013) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/weak-to-strong/pull/1#issuecomment-1865254562) in [tuhinmallick/weak-to-strong](https://github.com/tuhinmallick/weak-to-strong) -6. 🗣 Commented on [#135](https://github.com/OpenFreeEnergy/gufe/pull/135#issuecomment-1864947613) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#1030](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1030#issuecomment-1864912685) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#1416](https://github.com/spacetelescope/jwql/pull/1416#issuecomment-1864856103) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#101](https://github.com/Richard-Sti/csiborgtools/pull/101#issuecomment-1864673799) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -10. 🗣 Commented on [#67](https://github.com/eastgenomics/eris/pull/67#issuecomment-1864634896) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#46](https://github.com/LipAnn/SongsChordsBot/pull/46#issuecomment-1865942393) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +2. 🗣 Commented on [#45](https://github.com/LipAnn/SongsChordsBot/pull/45#issuecomment-1865915804) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +3. 🗣 Commented on [#225](https://github.com/CartoonFan/lutris/pull/225#issuecomment-1865838720) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#43](https://github.com/LipAnn/SongsChordsBot/pull/43#issuecomment-1865818870) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +5. 🗣 Commented on [#500](https://github.com/zarr-developers/numcodecs/pull/500#issuecomment-1865720842) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +6. 🗣 Commented on [#21641](https://github.com/spyder-ide/spyder/pull/21641#issuecomment-1865353013) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/weak-to-strong/pull/1#issuecomment-1865254562) in [tuhinmallick/weak-to-strong](https://github.com/tuhinmallick/weak-to-strong) +8. 🗣 Commented on [#135](https://github.com/OpenFreeEnergy/gufe/pull/135#issuecomment-1864947613) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +9. 🗣 Commented on [#1030](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1030#issuecomment-1864912685) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#1416](https://github.com/spacetelescope/jwql/pull/1416#issuecomment-1864856103) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From eb9aaf6888af23937ede77e5f4d009f6f05fc8b2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Dec 2023 12:30:55 +0000 Subject: [PATCH 0988/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4f8a80bd..8640343e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#46](https://github.com/LipAnn/SongsChordsBot/pull/46#issuecomment-1865942393) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -2. 🗣 Commented on [#45](https://github.com/LipAnn/SongsChordsBot/pull/45#issuecomment-1865915804) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -3. 🗣 Commented on [#225](https://github.com/CartoonFan/lutris/pull/225#issuecomment-1865838720) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#43](https://github.com/LipAnn/SongsChordsBot/pull/43#issuecomment-1865818870) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -5. 🗣 Commented on [#500](https://github.com/zarr-developers/numcodecs/pull/500#issuecomment-1865720842) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -6. 🗣 Commented on [#21641](https://github.com/spyder-ide/spyder/pull/21641#issuecomment-1865353013) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/weak-to-strong/pull/1#issuecomment-1865254562) in [tuhinmallick/weak-to-strong](https://github.com/tuhinmallick/weak-to-strong) -8. 🗣 Commented on [#135](https://github.com/OpenFreeEnergy/gufe/pull/135#issuecomment-1864947613) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -9. 🗣 Commented on [#1030](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1030#issuecomment-1864912685) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#1416](https://github.com/spacetelescope/jwql/pull/1416#issuecomment-1864856103) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project/pull/1#issuecomment-1866141955) in [tuhinmallick/Sales_Conversion_Optimization_MLOps_Project](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project) +2. 🗣 Commented on [#49](https://github.com/LipAnn/SongsChordsBot/pull/49#issuecomment-1866135883) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +3. 🗣 Commented on [#48](https://github.com/LipAnn/SongsChordsBot/pull/48#issuecomment-1866122623) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +4. 🗣 Commented on [#47](https://github.com/LipAnn/SongsChordsBot/pull/47#issuecomment-1866106275) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +5. 🗣 Commented on [#46](https://github.com/LipAnn/SongsChordsBot/pull/46#issuecomment-1865942393) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +6. 🗣 Commented on [#45](https://github.com/LipAnn/SongsChordsBot/pull/45#issuecomment-1865915804) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +7. 🗣 Commented on [#225](https://github.com/CartoonFan/lutris/pull/225#issuecomment-1865838720) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#43](https://github.com/LipAnn/SongsChordsBot/pull/43#issuecomment-1865818870) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +9. 🗣 Commented on [#500](https://github.com/zarr-developers/numcodecs/pull/500#issuecomment-1865720842) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +10. 🗣 Commented on [#21641](https://github.com/spyder-ide/spyder/pull/21641#issuecomment-1865353013) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 837be9d488fadb8ccd838405384da2298c301406 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Dec 2023 13:19:29 +0000 Subject: [PATCH 0989/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8640343e..083deff4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project/pull/1#issuecomment-1866141955) in [tuhinmallick/Sales_Conversion_Optimization_MLOps_Project](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project) -2. 🗣 Commented on [#49](https://github.com/LipAnn/SongsChordsBot/pull/49#issuecomment-1866135883) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -3. 🗣 Commented on [#48](https://github.com/LipAnn/SongsChordsBot/pull/48#issuecomment-1866122623) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -4. 🗣 Commented on [#47](https://github.com/LipAnn/SongsChordsBot/pull/47#issuecomment-1866106275) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -5. 🗣 Commented on [#46](https://github.com/LipAnn/SongsChordsBot/pull/46#issuecomment-1865942393) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -6. 🗣 Commented on [#45](https://github.com/LipAnn/SongsChordsBot/pull/45#issuecomment-1865915804) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -7. 🗣 Commented on [#225](https://github.com/CartoonFan/lutris/pull/225#issuecomment-1865838720) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#43](https://github.com/LipAnn/SongsChordsBot/pull/43#issuecomment-1865818870) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -9. 🗣 Commented on [#500](https://github.com/zarr-developers/numcodecs/pull/500#issuecomment-1865720842) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -10. 🗣 Commented on [#21641](https://github.com/spyder-ide/spyder/pull/21641#issuecomment-1865353013) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#50](https://github.com/LipAnn/SongsChordsBot/pull/50#issuecomment-1866183599) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project/pull/1#issuecomment-1866141955) in [tuhinmallick/Sales_Conversion_Optimization_MLOps_Project](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project) +3. 🗣 Commented on [#49](https://github.com/LipAnn/SongsChordsBot/pull/49#issuecomment-1866135883) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +4. 🗣 Commented on [#48](https://github.com/LipAnn/SongsChordsBot/pull/48#issuecomment-1866122623) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +5. 🗣 Commented on [#47](https://github.com/LipAnn/SongsChordsBot/pull/47#issuecomment-1866106275) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +6. 🗣 Commented on [#46](https://github.com/LipAnn/SongsChordsBot/pull/46#issuecomment-1865942393) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +7. 🗣 Commented on [#45](https://github.com/LipAnn/SongsChordsBot/pull/45#issuecomment-1865915804) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +8. 🗣 Commented on [#225](https://github.com/CartoonFan/lutris/pull/225#issuecomment-1865838720) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#43](https://github.com/LipAnn/SongsChordsBot/pull/43#issuecomment-1865818870) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +10. 🗣 Commented on [#500](https://github.com/zarr-developers/numcodecs/pull/500#issuecomment-1865720842) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) From 437930495f2df4acad93b7bbc5fca6650bcea00f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Dec 2023 15:37:32 +0000 Subject: [PATCH 0990/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 083deff4..b3afc936 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#50](https://github.com/LipAnn/SongsChordsBot/pull/50#issuecomment-1866183599) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project/pull/1#issuecomment-1866141955) in [tuhinmallick/Sales_Conversion_Optimization_MLOps_Project](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project) -3. 🗣 Commented on [#49](https://github.com/LipAnn/SongsChordsBot/pull/49#issuecomment-1866135883) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -4. 🗣 Commented on [#48](https://github.com/LipAnn/SongsChordsBot/pull/48#issuecomment-1866122623) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -5. 🗣 Commented on [#47](https://github.com/LipAnn/SongsChordsBot/pull/47#issuecomment-1866106275) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -6. 🗣 Commented on [#46](https://github.com/LipAnn/SongsChordsBot/pull/46#issuecomment-1865942393) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -7. 🗣 Commented on [#45](https://github.com/LipAnn/SongsChordsBot/pull/45#issuecomment-1865915804) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -8. 🗣 Commented on [#225](https://github.com/CartoonFan/lutris/pull/225#issuecomment-1865838720) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#43](https://github.com/LipAnn/SongsChordsBot/pull/43#issuecomment-1865818870) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -10. 🗣 Commented on [#500](https://github.com/zarr-developers/numcodecs/pull/500#issuecomment-1865720842) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +1. 🗣 Commented on [#3839](https://github.com/privacyidea/privacyidea/pull/3839#issuecomment-1866483215) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#50](https://github.com/LipAnn/SongsChordsBot/pull/50#issuecomment-1866183599) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project/pull/1#issuecomment-1866141955) in [tuhinmallick/Sales_Conversion_Optimization_MLOps_Project](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project) +4. 🗣 Commented on [#49](https://github.com/LipAnn/SongsChordsBot/pull/49#issuecomment-1866135883) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +5. 🗣 Commented on [#48](https://github.com/LipAnn/SongsChordsBot/pull/48#issuecomment-1866122623) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +6. 🗣 Commented on [#47](https://github.com/LipAnn/SongsChordsBot/pull/47#issuecomment-1866106275) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +7. 🗣 Commented on [#46](https://github.com/LipAnn/SongsChordsBot/pull/46#issuecomment-1865942393) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +8. 🗣 Commented on [#45](https://github.com/LipAnn/SongsChordsBot/pull/45#issuecomment-1865915804) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +9. 🗣 Commented on [#225](https://github.com/CartoonFan/lutris/pull/225#issuecomment-1865838720) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#43](https://github.com/LipAnn/SongsChordsBot/pull/43#issuecomment-1865818870) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) From 3b156b459bc7a172e2749cc502db433fd58a24ed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Dec 2023 19:11:41 +0000 Subject: [PATCH 0991/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b3afc936..6e61354d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3839](https://github.com/privacyidea/privacyidea/pull/3839#issuecomment-1866483215) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#50](https://github.com/LipAnn/SongsChordsBot/pull/50#issuecomment-1866183599) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project/pull/1#issuecomment-1866141955) in [tuhinmallick/Sales_Conversion_Optimization_MLOps_Project](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project) -4. 🗣 Commented on [#49](https://github.com/LipAnn/SongsChordsBot/pull/49#issuecomment-1866135883) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -5. 🗣 Commented on [#48](https://github.com/LipAnn/SongsChordsBot/pull/48#issuecomment-1866122623) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -6. 🗣 Commented on [#47](https://github.com/LipAnn/SongsChordsBot/pull/47#issuecomment-1866106275) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -7. 🗣 Commented on [#46](https://github.com/LipAnn/SongsChordsBot/pull/46#issuecomment-1865942393) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -8. 🗣 Commented on [#45](https://github.com/LipAnn/SongsChordsBot/pull/45#issuecomment-1865915804) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -9. 🗣 Commented on [#225](https://github.com/CartoonFan/lutris/pull/225#issuecomment-1865838720) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#43](https://github.com/LipAnn/SongsChordsBot/pull/43#issuecomment-1865818870) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +1. 🗣 Commented on [#40](https://github.com/krooonal/col_gen_estimator/pull/40#issuecomment-1866798779) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +2. 🗣 Commented on [#3839](https://github.com/privacyidea/privacyidea/pull/3839#issuecomment-1866483215) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#50](https://github.com/LipAnn/SongsChordsBot/pull/50#issuecomment-1866183599) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project/pull/1#issuecomment-1866141955) in [tuhinmallick/Sales_Conversion_Optimization_MLOps_Project](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project) +5. 🗣 Commented on [#49](https://github.com/LipAnn/SongsChordsBot/pull/49#issuecomment-1866135883) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +6. 🗣 Commented on [#48](https://github.com/LipAnn/SongsChordsBot/pull/48#issuecomment-1866122623) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +7. 🗣 Commented on [#47](https://github.com/LipAnn/SongsChordsBot/pull/47#issuecomment-1866106275) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +8. 🗣 Commented on [#46](https://github.com/LipAnn/SongsChordsBot/pull/46#issuecomment-1865942393) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +9. 🗣 Commented on [#45](https://github.com/LipAnn/SongsChordsBot/pull/45#issuecomment-1865915804) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +10. 🗣 Commented on [#225](https://github.com/CartoonFan/lutris/pull/225#issuecomment-1865838720) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 31eaa870d44ab84008bc98d2df615266192d9faa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Dec 2023 20:16:34 +0000 Subject: [PATCH 0992/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6e61354d..e8bec8ba 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#40](https://github.com/krooonal/col_gen_estimator/pull/40#issuecomment-1866798779) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) -2. 🗣 Commented on [#3839](https://github.com/privacyidea/privacyidea/pull/3839#issuecomment-1866483215) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#50](https://github.com/LipAnn/SongsChordsBot/pull/50#issuecomment-1866183599) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project/pull/1#issuecomment-1866141955) in [tuhinmallick/Sales_Conversion_Optimization_MLOps_Project](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project) -5. 🗣 Commented on [#49](https://github.com/LipAnn/SongsChordsBot/pull/49#issuecomment-1866135883) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -6. 🗣 Commented on [#48](https://github.com/LipAnn/SongsChordsBot/pull/48#issuecomment-1866122623) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -7. 🗣 Commented on [#47](https://github.com/LipAnn/SongsChordsBot/pull/47#issuecomment-1866106275) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -8. 🗣 Commented on [#46](https://github.com/LipAnn/SongsChordsBot/pull/46#issuecomment-1865942393) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -9. 🗣 Commented on [#45](https://github.com/LipAnn/SongsChordsBot/pull/45#issuecomment-1865915804) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -10. 🗣 Commented on [#225](https://github.com/CartoonFan/lutris/pull/225#issuecomment-1865838720) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +2. 🗣 Commented on [#1031](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1031#issuecomment-1866836695) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#40](https://github.com/krooonal/col_gen_estimator/pull/40#issuecomment-1866798779) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +4. 🗣 Commented on [#3839](https://github.com/privacyidea/privacyidea/pull/3839#issuecomment-1866483215) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#50](https://github.com/LipAnn/SongsChordsBot/pull/50#issuecomment-1866183599) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project/pull/1#issuecomment-1866141955) in [tuhinmallick/Sales_Conversion_Optimization_MLOps_Project](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project) +7. 🗣 Commented on [#49](https://github.com/LipAnn/SongsChordsBot/pull/49#issuecomment-1866135883) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +8. 🗣 Commented on [#48](https://github.com/LipAnn/SongsChordsBot/pull/48#issuecomment-1866122623) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +9. 🗣 Commented on [#47](https://github.com/LipAnn/SongsChordsBot/pull/47#issuecomment-1866106275) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +10. 🗣 Commented on [#46](https://github.com/LipAnn/SongsChordsBot/pull/46#issuecomment-1865942393) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) From a8dbc4e60d3ee297226f8de47e98a3fa9ebc5544 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Dec 2023 23:17:08 +0000 Subject: [PATCH 0993/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e8bec8ba..2a8271d3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) -2. 🗣 Commented on [#1031](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1031#issuecomment-1866836695) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#40](https://github.com/krooonal/col_gen_estimator/pull/40#issuecomment-1866798779) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) -4. 🗣 Commented on [#3839](https://github.com/privacyidea/privacyidea/pull/3839#issuecomment-1866483215) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#50](https://github.com/LipAnn/SongsChordsBot/pull/50#issuecomment-1866183599) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project/pull/1#issuecomment-1866141955) in [tuhinmallick/Sales_Conversion_Optimization_MLOps_Project](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project) -7. 🗣 Commented on [#49](https://github.com/LipAnn/SongsChordsBot/pull/49#issuecomment-1866135883) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -8. 🗣 Commented on [#48](https://github.com/LipAnn/SongsChordsBot/pull/48#issuecomment-1866122623) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -9. 🗣 Commented on [#47](https://github.com/LipAnn/SongsChordsBot/pull/47#issuecomment-1866106275) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -10. 🗣 Commented on [#46](https://github.com/LipAnn/SongsChordsBot/pull/46#issuecomment-1865942393) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) +2. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +3. 🗣 Commented on [#1031](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1031#issuecomment-1866836695) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#40](https://github.com/krooonal/col_gen_estimator/pull/40#issuecomment-1866798779) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +5. 🗣 Commented on [#3839](https://github.com/privacyidea/privacyidea/pull/3839#issuecomment-1866483215) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#50](https://github.com/LipAnn/SongsChordsBot/pull/50#issuecomment-1866183599) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project/pull/1#issuecomment-1866141955) in [tuhinmallick/Sales_Conversion_Optimization_MLOps_Project](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project) +8. 🗣 Commented on [#49](https://github.com/LipAnn/SongsChordsBot/pull/49#issuecomment-1866135883) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +9. 🗣 Commented on [#48](https://github.com/LipAnn/SongsChordsBot/pull/48#issuecomment-1866122623) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +10. 🗣 Commented on [#47](https://github.com/LipAnn/SongsChordsBot/pull/47#issuecomment-1866106275) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) From ce1024f33dcee95520359d606932e1a869db3bd1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Dec 2023 01:11:44 +0000 Subject: [PATCH 0994/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2a8271d3..a0f47cc3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) -2. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) -3. 🗣 Commented on [#1031](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1031#issuecomment-1866836695) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#40](https://github.com/krooonal/col_gen_estimator/pull/40#issuecomment-1866798779) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) -5. 🗣 Commented on [#3839](https://github.com/privacyidea/privacyidea/pull/3839#issuecomment-1866483215) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#50](https://github.com/LipAnn/SongsChordsBot/pull/50#issuecomment-1866183599) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project/pull/1#issuecomment-1866141955) in [tuhinmallick/Sales_Conversion_Optimization_MLOps_Project](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project) -8. 🗣 Commented on [#49](https://github.com/LipAnn/SongsChordsBot/pull/49#issuecomment-1866135883) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -9. 🗣 Commented on [#48](https://github.com/LipAnn/SongsChordsBot/pull/48#issuecomment-1866122623) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -10. 🗣 Commented on [#47](https://github.com/LipAnn/SongsChordsBot/pull/47#issuecomment-1866106275) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +1. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) +3. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +4. 🗣 Commented on [#1031](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1031#issuecomment-1866836695) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#40](https://github.com/krooonal/col_gen_estimator/pull/40#issuecomment-1866798779) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +6. 🗣 Commented on [#3839](https://github.com/privacyidea/privacyidea/pull/3839#issuecomment-1866483215) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +7. 🗣 Commented on [#50](https://github.com/LipAnn/SongsChordsBot/pull/50#issuecomment-1866183599) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project/pull/1#issuecomment-1866141955) in [tuhinmallick/Sales_Conversion_Optimization_MLOps_Project](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project) +9. 🗣 Commented on [#49](https://github.com/LipAnn/SongsChordsBot/pull/49#issuecomment-1866135883) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +10. 🗣 Commented on [#48](https://github.com/LipAnn/SongsChordsBot/pull/48#issuecomment-1866122623) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) From 349bddfcfaf7420f6b0591649bcb3a9b8e0efa61 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Dec 2023 02:07:56 +0000 Subject: [PATCH 0995/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a0f47cc3..a8602b1d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) -3. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) -4. 🗣 Commented on [#1031](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1031#issuecomment-1866836695) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#40](https://github.com/krooonal/col_gen_estimator/pull/40#issuecomment-1866798779) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) -6. 🗣 Commented on [#3839](https://github.com/privacyidea/privacyidea/pull/3839#issuecomment-1866483215) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -7. 🗣 Commented on [#50](https://github.com/LipAnn/SongsChordsBot/pull/50#issuecomment-1866183599) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project/pull/1#issuecomment-1866141955) in [tuhinmallick/Sales_Conversion_Optimization_MLOps_Project](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project) -9. 🗣 Commented on [#49](https://github.com/LipAnn/SongsChordsBot/pull/49#issuecomment-1866135883) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -10. 🗣 Commented on [#48](https://github.com/LipAnn/SongsChordsBot/pull/48#issuecomment-1866122623) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +1. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) +2. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) +4. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +5. 🗣 Commented on [#1031](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1031#issuecomment-1866836695) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#40](https://github.com/krooonal/col_gen_estimator/pull/40#issuecomment-1866798779) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +7. 🗣 Commented on [#3839](https://github.com/privacyidea/privacyidea/pull/3839#issuecomment-1866483215) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#50](https://github.com/LipAnn/SongsChordsBot/pull/50#issuecomment-1866183599) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project/pull/1#issuecomment-1866141955) in [tuhinmallick/Sales_Conversion_Optimization_MLOps_Project](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project) +10. 🗣 Commented on [#49](https://github.com/LipAnn/SongsChordsBot/pull/49#issuecomment-1866135883) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) From 752ebfad52be9b78c514548edf44c7ef62f75e86 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Dec 2023 02:39:57 +0000 Subject: [PATCH 0996/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a8602b1d..6fbbf39f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) -2. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) -4. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) -5. 🗣 Commented on [#1031](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1031#issuecomment-1866836695) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#40](https://github.com/krooonal/col_gen_estimator/pull/40#issuecomment-1866798779) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) -7. 🗣 Commented on [#3839](https://github.com/privacyidea/privacyidea/pull/3839#issuecomment-1866483215) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#50](https://github.com/LipAnn/SongsChordsBot/pull/50#issuecomment-1866183599) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project/pull/1#issuecomment-1866141955) in [tuhinmallick/Sales_Conversion_Optimization_MLOps_Project](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project) -10. 🗣 Commented on [#49](https://github.com/LipAnn/SongsChordsBot/pull/49#issuecomment-1866135883) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +1. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) +3. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) +5. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +6. 🗣 Commented on [#1031](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1031#issuecomment-1866836695) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#40](https://github.com/krooonal/col_gen_estimator/pull/40#issuecomment-1866798779) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +8. 🗣 Commented on [#3839](https://github.com/privacyidea/privacyidea/pull/3839#issuecomment-1866483215) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#50](https://github.com/LipAnn/SongsChordsBot/pull/50#issuecomment-1866183599) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project/pull/1#issuecomment-1866141955) in [tuhinmallick/Sales_Conversion_Optimization_MLOps_Project](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project) From 96ced6d8f307a602437f6f78b72b0e535cb2eb38 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Dec 2023 05:15:48 +0000 Subject: [PATCH 0997/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6fbbf39f..60790dfb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) -3. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) -5. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) -6. 🗣 Commented on [#1031](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1031#issuecomment-1866836695) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#40](https://github.com/krooonal/col_gen_estimator/pull/40#issuecomment-1866798779) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) -8. 🗣 Commented on [#3839](https://github.com/privacyidea/privacyidea/pull/3839#issuecomment-1866483215) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#50](https://github.com/LipAnn/SongsChordsBot/pull/50#issuecomment-1866183599) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project/pull/1#issuecomment-1866141955) in [tuhinmallick/Sales_Conversion_Optimization_MLOps_Project](https://github.com/tuhinmallick/Sales_Conversion_Optimization_MLOps_Project) +1. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) +2. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) +4. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) +6. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +7. 🗣 Commented on [#1031](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1031#issuecomment-1866836695) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#40](https://github.com/krooonal/col_gen_estimator/pull/40#issuecomment-1866798779) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +9. 🗣 Commented on [#3839](https://github.com/privacyidea/privacyidea/pull/3839#issuecomment-1866483215) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#50](https://github.com/LipAnn/SongsChordsBot/pull/50#issuecomment-1866183599) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) From a956f5450972fc0b35bcaa0bafe5129913a0b330 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Dec 2023 08:20:06 +0000 Subject: [PATCH 0998/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 60790dfb..e6fd065c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) -2. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) -4. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) -6. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) -7. 🗣 Commented on [#1031](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1031#issuecomment-1866836695) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#40](https://github.com/krooonal/col_gen_estimator/pull/40#issuecomment-1866798779) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) -9. 🗣 Commented on [#3839](https://github.com/privacyidea/privacyidea/pull/3839#issuecomment-1866483215) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#50](https://github.com/LipAnn/SongsChordsBot/pull/50#issuecomment-1866183599) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +1. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +2. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) +3. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) +5. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) +7. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +8. 🗣 Commented on [#1031](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1031#issuecomment-1866836695) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#40](https://github.com/krooonal/col_gen_estimator/pull/40#issuecomment-1866798779) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +10. 🗣 Commented on [#3839](https://github.com/privacyidea/privacyidea/pull/3839#issuecomment-1866483215) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From 0399b71bc7b67179a547dde56777c7a83f677cfe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Dec 2023 09:37:14 +0000 Subject: [PATCH 0999/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e6fd065c..691f833c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -2. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) -3. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) -5. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) -7. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) -8. 🗣 Commented on [#1031](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1031#issuecomment-1866836695) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#40](https://github.com/krooonal/col_gen_estimator/pull/40#issuecomment-1866798779) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) -10. 🗣 Commented on [#3839](https://github.com/privacyidea/privacyidea/pull/3839#issuecomment-1866483215) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +2. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +3. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) +4. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) +6. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) +8. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +9. 🗣 Commented on [#1031](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1031#issuecomment-1866836695) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#40](https://github.com/krooonal/col_gen_estimator/pull/40#issuecomment-1866798779) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) From 3a862df66bf3b8ee05ae42364497ec966fe70d16 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Dec 2023 10:17:27 +0000 Subject: [PATCH 1000/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 691f833c..616cf7ab 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -2. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -3. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) -4. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) -6. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) -8. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) -9. 🗣 Commented on [#1031](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1031#issuecomment-1866836695) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#40](https://github.com/krooonal/col_gen_estimator/pull/40#issuecomment-1866798779) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +1. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +2. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +3. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +4. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) +5. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) +7. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) +9. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +10. 🗣 Commented on [#1031](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1031#issuecomment-1866836695) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 8b3b70d945e85d0fcdee881ab8618e609773793f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Dec 2023 18:37:17 +0000 Subject: [PATCH 1001/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 616cf7ab..b88a6cfc 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -2. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -3. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -4. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) -5. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) -7. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) -9. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) -10. 🗣 Commented on [#1031](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1031#issuecomment-1866836695) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#1033](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1033#issuecomment-1867958166) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +3. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +4. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +5. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) +6. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) +8. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) +10. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) From 2f48553bff22ae9588ae59f80476cfe3f23adde5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Dec 2023 22:14:44 +0000 Subject: [PATCH 1002/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b88a6cfc..e7e282f2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1033](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1033#issuecomment-1867958166) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -3. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -4. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -5. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) -6. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) -8. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) -10. 🗣 Commented on [#41](https://github.com/krooonal/col_gen_estimator/pull/41#issuecomment-1866837426) in [krooonal/col_gen_estimator](https://github.com/krooonal/col_gen_estimator) +1. 🗣 Commented on [#1036](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1036#issuecomment-1868090245) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#1033](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1033#issuecomment-1867958166) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +4. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +5. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +6. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) +7. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) +9. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) From 483709167d7c5a25f3c3c7ad5444bc43bc5ef596 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Dec 2023 01:09:33 +0000 Subject: [PATCH 1003/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e7e282f2..8040feb2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1036](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1036#issuecomment-1868090245) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#1033](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1033#issuecomment-1867958166) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -4. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -5. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -6. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) -7. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) -9. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI/pull/1#issuecomment-1867035617) in [tuhinmallick/crewAI](https://github.com/tuhinmallick/crewAI) +1. 🗣 Commented on [#55](https://github.com/LipAnn/SongsChordsBot/pull/55#issuecomment-1868131931) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +2. 🗣 Commented on [#1036](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1036#issuecomment-1868090245) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#1033](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1033#issuecomment-1867958166) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +5. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +6. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +7. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) +8. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) +10. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 42ad9453a6cda0d18c2151cd18a90a9e7979cb7d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Dec 2023 06:19:59 +0000 Subject: [PATCH 1004/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8040feb2..d0b0b7a5 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#55](https://github.com/LipAnn/SongsChordsBot/pull/55#issuecomment-1868131931) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -2. 🗣 Commented on [#1036](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1036#issuecomment-1868090245) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#1033](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1033#issuecomment-1867958166) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -5. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -6. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -7. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) -8. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) -10. 🗣 Commented on [#1032](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1032#issuecomment-1867061826) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API/pull/1#issuecomment-1868216347) in [tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API) +2. 🗣 Commented on [#55](https://github.com/LipAnn/SongsChordsBot/pull/55#issuecomment-1868131931) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +3. 🗣 Commented on [#1036](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1036#issuecomment-1868090245) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#1033](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1033#issuecomment-1867958166) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +6. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +7. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +8. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) +9. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) From e1fef18acec2cd61ca589044bad96c686fb13c1a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Dec 2023 09:14:13 +0000 Subject: [PATCH 1005/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d0b0b7a5..35f605a8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API/pull/1#issuecomment-1868216347) in [tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API) -2. 🗣 Commented on [#55](https://github.com/LipAnn/SongsChordsBot/pull/55#issuecomment-1868131931) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -3. 🗣 Commented on [#1036](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1036#issuecomment-1868090245) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#1033](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1033#issuecomment-1867958166) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -6. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -7. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -8. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) -9. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#147](https://github.com/CartoonFan/gearhead-caramel/pull/147#issuecomment-1867115073) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) +1. 🗣 Commented on [#57](https://github.com/LipAnn/SongsChordsBot/pull/57#issuecomment-1868245981) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API/pull/1#issuecomment-1868216347) in [tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API) +3. 🗣 Commented on [#55](https://github.com/LipAnn/SongsChordsBot/pull/55#issuecomment-1868131931) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +4. 🗣 Commented on [#1036](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1036#issuecomment-1868090245) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1033](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1033#issuecomment-1867958166) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +7. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +8. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +9. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) +10. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From beadf7ad9281e057c6ec3870295a2b8c11ccd09e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Dec 2023 10:37:17 +0000 Subject: [PATCH 1006/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 35f605a8..7f79cfae 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#57](https://github.com/LipAnn/SongsChordsBot/pull/57#issuecomment-1868245981) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API/pull/1#issuecomment-1868216347) in [tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API) -3. 🗣 Commented on [#55](https://github.com/LipAnn/SongsChordsBot/pull/55#issuecomment-1868131931) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -4. 🗣 Commented on [#1036](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1036#issuecomment-1868090245) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1033](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1033#issuecomment-1867958166) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -7. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -8. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -9. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) -10. 🗣 Commented on [#226](https://github.com/CartoonFan/lutris/pull/226#issuecomment-1867146892) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#2907](https://github.com/astropy/astroquery/pull/2907#issuecomment-1868264648) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#57](https://github.com/LipAnn/SongsChordsBot/pull/57#issuecomment-1868245981) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API/pull/1#issuecomment-1868216347) in [tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API) +4. 🗣 Commented on [#55](https://github.com/LipAnn/SongsChordsBot/pull/55#issuecomment-1868131931) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +5. 🗣 Commented on [#1036](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1036#issuecomment-1868090245) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#1033](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1033#issuecomment-1867958166) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +8. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +9. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +10. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) From df77df5049743e0d7c1a34e0e7f526de5b89d89f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Dec 2023 12:27:52 +0000 Subject: [PATCH 1007/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7f79cfae..46c8fea8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2907](https://github.com/astropy/astroquery/pull/2907#issuecomment-1868264648) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#57](https://github.com/LipAnn/SongsChordsBot/pull/57#issuecomment-1868245981) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API/pull/1#issuecomment-1868216347) in [tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API) -4. 🗣 Commented on [#55](https://github.com/LipAnn/SongsChordsBot/pull/55#issuecomment-1868131931) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -5. 🗣 Commented on [#1036](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1036#issuecomment-1868090245) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#1033](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1033#issuecomment-1867958166) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -8. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -9. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -10. 🗣 Commented on [#11](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot/pull/11#issuecomment-1867237344) in [cdfxscrq/GDrive-Uploader-TG-Bot](https://github.com/cdfxscrq/GDrive-Uploader-TG-Bot) +1. 🗣 Commented on [#59](https://github.com/LipAnn/SongsChordsBot/pull/59#issuecomment-1868279082) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +2. 🗣 Commented on [#2907](https://github.com/astropy/astroquery/pull/2907#issuecomment-1868264648) in [astropy/astroquery](https://github.com/astropy/astroquery) +3. 🗣 Commented on [#57](https://github.com/LipAnn/SongsChordsBot/pull/57#issuecomment-1868245981) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API/pull/1#issuecomment-1868216347) in [tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API) +5. 🗣 Commented on [#55](https://github.com/LipAnn/SongsChordsBot/pull/55#issuecomment-1868131931) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +6. 🗣 Commented on [#1036](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1036#issuecomment-1868090245) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#1033](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1033#issuecomment-1867958166) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +9. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +10. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) From 38dda965aed3cbca5566017ee97fadd9ae796301 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Dec 2023 16:19:23 +0000 Subject: [PATCH 1008/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 46c8fea8..0dd509c2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#59](https://github.com/LipAnn/SongsChordsBot/pull/59#issuecomment-1868279082) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -2. 🗣 Commented on [#2907](https://github.com/astropy/astroquery/pull/2907#issuecomment-1868264648) in [astropy/astroquery](https://github.com/astropy/astroquery) -3. 🗣 Commented on [#57](https://github.com/LipAnn/SongsChordsBot/pull/57#issuecomment-1868245981) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API/pull/1#issuecomment-1868216347) in [tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API) -5. 🗣 Commented on [#55](https://github.com/LipAnn/SongsChordsBot/pull/55#issuecomment-1868131931) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -6. 🗣 Commented on [#1036](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1036#issuecomment-1868090245) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#1033](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1033#issuecomment-1867958166) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -9. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -10. 🗣 Commented on [#51](https://github.com/LipAnn/SongsChordsBot/pull/51#issuecomment-1867351532) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +1. 🗣 Commented on [#9107](https://github.com/statsmodels/statsmodels/pull/9107#issuecomment-1868321088) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +2. 🗣 Commented on [#59](https://github.com/LipAnn/SongsChordsBot/pull/59#issuecomment-1868279082) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +3. 🗣 Commented on [#2907](https://github.com/astropy/astroquery/pull/2907#issuecomment-1868264648) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#57](https://github.com/LipAnn/SongsChordsBot/pull/57#issuecomment-1868245981) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API/pull/1#issuecomment-1868216347) in [tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API) +6. 🗣 Commented on [#55](https://github.com/LipAnn/SongsChordsBot/pull/55#issuecomment-1868131931) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +7. 🗣 Commented on [#1036](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1036#issuecomment-1868090245) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#1033](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1033#issuecomment-1867958166) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +10. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) From 3b66da3a41015a3753d79cb752aec5fcff4de613 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Dec 2023 17:37:05 +0000 Subject: [PATCH 1009/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0dd509c2..8be8f6a9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#9107](https://github.com/statsmodels/statsmodels/pull/9107#issuecomment-1868321088) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -2. 🗣 Commented on [#59](https://github.com/LipAnn/SongsChordsBot/pull/59#issuecomment-1868279082) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -3. 🗣 Commented on [#2907](https://github.com/astropy/astroquery/pull/2907#issuecomment-1868264648) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#57](https://github.com/LipAnn/SongsChordsBot/pull/57#issuecomment-1868245981) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API/pull/1#issuecomment-1868216347) in [tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API) -6. 🗣 Commented on [#55](https://github.com/LipAnn/SongsChordsBot/pull/55#issuecomment-1868131931) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -7. 🗣 Commented on [#1036](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1036#issuecomment-1868090245) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#1033](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1033#issuecomment-1867958166) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -10. 🗣 Commented on [#52](https://github.com/LipAnn/SongsChordsBot/pull/52#issuecomment-1867442824) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +1. 🗣 Commented on [#227](https://github.com/CartoonFan/lutris/pull/227#issuecomment-1868337249) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#9107](https://github.com/statsmodels/statsmodels/pull/9107#issuecomment-1868321088) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#59](https://github.com/LipAnn/SongsChordsBot/pull/59#issuecomment-1868279082) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +4. 🗣 Commented on [#2907](https://github.com/astropy/astroquery/pull/2907#issuecomment-1868264648) in [astropy/astroquery](https://github.com/astropy/astroquery) +5. 🗣 Commented on [#57](https://github.com/LipAnn/SongsChordsBot/pull/57#issuecomment-1868245981) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API/pull/1#issuecomment-1868216347) in [tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API) +7. 🗣 Commented on [#55](https://github.com/LipAnn/SongsChordsBot/pull/55#issuecomment-1868131931) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +8. 🗣 Commented on [#1036](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1036#issuecomment-1868090245) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#1033](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1033#issuecomment-1867958166) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) From 29c7b0c741c5951e5df0b117bd5f3570845e2ce1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Dec 2023 22:14:38 +0000 Subject: [PATCH 1010/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8be8f6a9..975a23bd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#227](https://github.com/CartoonFan/lutris/pull/227#issuecomment-1868337249) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#9107](https://github.com/statsmodels/statsmodels/pull/9107#issuecomment-1868321088) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#59](https://github.com/LipAnn/SongsChordsBot/pull/59#issuecomment-1868279082) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -4. 🗣 Commented on [#2907](https://github.com/astropy/astroquery/pull/2907#issuecomment-1868264648) in [astropy/astroquery](https://github.com/astropy/astroquery) -5. 🗣 Commented on [#57](https://github.com/LipAnn/SongsChordsBot/pull/57#issuecomment-1868245981) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API/pull/1#issuecomment-1868216347) in [tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API) -7. 🗣 Commented on [#55](https://github.com/LipAnn/SongsChordsBot/pull/55#issuecomment-1868131931) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -8. 🗣 Commented on [#1036](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1036#issuecomment-1868090245) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#1033](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1033#issuecomment-1867958166) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#1033](https://github.com/oemof/oemof-solph/pull/1033#issuecomment-1867468089) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +1. 🗣 Commented on [#215](https://github.com/jcmgray/quimb/pull/215#issuecomment-1868377722) in [jcmgray/quimb](https://github.com/jcmgray/quimb) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI-examples/pull/1#issuecomment-1868375827) in [tuhinmallick/crewAI-examples](https://github.com/tuhinmallick/crewAI-examples) +3. 🗣 Commented on [#227](https://github.com/CartoonFan/lutris/pull/227#issuecomment-1868337249) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#9107](https://github.com/statsmodels/statsmodels/pull/9107#issuecomment-1868321088) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#59](https://github.com/LipAnn/SongsChordsBot/pull/59#issuecomment-1868279082) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +6. 🗣 Commented on [#2907](https://github.com/astropy/astroquery/pull/2907#issuecomment-1868264648) in [astropy/astroquery](https://github.com/astropy/astroquery) +7. 🗣 Commented on [#57](https://github.com/LipAnn/SongsChordsBot/pull/57#issuecomment-1868245981) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API/pull/1#issuecomment-1868216347) in [tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API) +9. 🗣 Commented on [#55](https://github.com/LipAnn/SongsChordsBot/pull/55#issuecomment-1868131931) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +10. 🗣 Commented on [#1036](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1036#issuecomment-1868090245) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From a840c52d96cefad848732c37e1c8de96ee8f7a85 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Dec 2023 23:15:26 +0000 Subject: [PATCH 1011/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 975a23bd..e99e300d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#215](https://github.com/jcmgray/quimb/pull/215#issuecomment-1868377722) in [jcmgray/quimb](https://github.com/jcmgray/quimb) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI-examples/pull/1#issuecomment-1868375827) in [tuhinmallick/crewAI-examples](https://github.com/tuhinmallick/crewAI-examples) -3. 🗣 Commented on [#227](https://github.com/CartoonFan/lutris/pull/227#issuecomment-1868337249) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#9107](https://github.com/statsmodels/statsmodels/pull/9107#issuecomment-1868321088) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -5. 🗣 Commented on [#59](https://github.com/LipAnn/SongsChordsBot/pull/59#issuecomment-1868279082) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -6. 🗣 Commented on [#2907](https://github.com/astropy/astroquery/pull/2907#issuecomment-1868264648) in [astropy/astroquery](https://github.com/astropy/astroquery) -7. 🗣 Commented on [#57](https://github.com/LipAnn/SongsChordsBot/pull/57#issuecomment-1868245981) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API/pull/1#issuecomment-1868216347) in [tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API) -9. 🗣 Commented on [#55](https://github.com/LipAnn/SongsChordsBot/pull/55#issuecomment-1868131931) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -10. 🗣 Commented on [#1036](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1036#issuecomment-1868090245) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#60](https://github.com/LipAnn/SongsChordsBot/pull/60#issuecomment-1868382399) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +2. 🗣 Commented on [#215](https://github.com/jcmgray/quimb/pull/215#issuecomment-1868377722) in [jcmgray/quimb](https://github.com/jcmgray/quimb) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI-examples/pull/1#issuecomment-1868375827) in [tuhinmallick/crewAI-examples](https://github.com/tuhinmallick/crewAI-examples) +4. 🗣 Commented on [#227](https://github.com/CartoonFan/lutris/pull/227#issuecomment-1868337249) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#9107](https://github.com/statsmodels/statsmodels/pull/9107#issuecomment-1868321088) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +6. 🗣 Commented on [#59](https://github.com/LipAnn/SongsChordsBot/pull/59#issuecomment-1868279082) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +7. 🗣 Commented on [#2907](https://github.com/astropy/astroquery/pull/2907#issuecomment-1868264648) in [astropy/astroquery](https://github.com/astropy/astroquery) +8. 🗣 Commented on [#57](https://github.com/LipAnn/SongsChordsBot/pull/57#issuecomment-1868245981) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API/pull/1#issuecomment-1868216347) in [tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API) +10. 🗣 Commented on [#55](https://github.com/LipAnn/SongsChordsBot/pull/55#issuecomment-1868131931) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) From f86d98e1f64c59a461e03ad81988b6df8a0f978a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 24 Dec 2023 04:37:11 +0000 Subject: [PATCH 1012/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e99e300d..d361e1e3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#60](https://github.com/LipAnn/SongsChordsBot/pull/60#issuecomment-1868382399) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -2. 🗣 Commented on [#215](https://github.com/jcmgray/quimb/pull/215#issuecomment-1868377722) in [jcmgray/quimb](https://github.com/jcmgray/quimb) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI-examples/pull/1#issuecomment-1868375827) in [tuhinmallick/crewAI-examples](https://github.com/tuhinmallick/crewAI-examples) -4. 🗣 Commented on [#227](https://github.com/CartoonFan/lutris/pull/227#issuecomment-1868337249) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#9107](https://github.com/statsmodels/statsmodels/pull/9107#issuecomment-1868321088) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -6. 🗣 Commented on [#59](https://github.com/LipAnn/SongsChordsBot/pull/59#issuecomment-1868279082) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -7. 🗣 Commented on [#2907](https://github.com/astropy/astroquery/pull/2907#issuecomment-1868264648) in [astropy/astroquery](https://github.com/astropy/astroquery) -8. 🗣 Commented on [#57](https://github.com/LipAnn/SongsChordsBot/pull/57#issuecomment-1868245981) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API/pull/1#issuecomment-1868216347) in [tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API) -10. 🗣 Commented on [#55](https://github.com/LipAnn/SongsChordsBot/pull/55#issuecomment-1868131931) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Osprey/pull/1#issuecomment-1868430498) in [tuhinmallick/Osprey](https://github.com/tuhinmallick/Osprey) +2. 🗣 Commented on [#60](https://github.com/LipAnn/SongsChordsBot/pull/60#issuecomment-1868382399) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +3. 🗣 Commented on [#215](https://github.com/jcmgray/quimb/pull/215#issuecomment-1868377722) in [jcmgray/quimb](https://github.com/jcmgray/quimb) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI-examples/pull/1#issuecomment-1868375827) in [tuhinmallick/crewAI-examples](https://github.com/tuhinmallick/crewAI-examples) +5. 🗣 Commented on [#227](https://github.com/CartoonFan/lutris/pull/227#issuecomment-1868337249) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#9107](https://github.com/statsmodels/statsmodels/pull/9107#issuecomment-1868321088) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +7. 🗣 Commented on [#59](https://github.com/LipAnn/SongsChordsBot/pull/59#issuecomment-1868279082) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +8. 🗣 Commented on [#2907](https://github.com/astropy/astroquery/pull/2907#issuecomment-1868264648) in [astropy/astroquery](https://github.com/astropy/astroquery) +9. 🗣 Commented on [#57](https://github.com/LipAnn/SongsChordsBot/pull/57#issuecomment-1868245981) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API/pull/1#issuecomment-1868216347) in [tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API) From 710b2aa9896b12866bbbdb09effd7e469242b643 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 24 Dec 2023 05:14:35 +0000 Subject: [PATCH 1013/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d361e1e3..37343e4a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/Osprey/pull/1#issuecomment-1868430498) in [tuhinmallick/Osprey](https://github.com/tuhinmallick/Osprey) -2. 🗣 Commented on [#60](https://github.com/LipAnn/SongsChordsBot/pull/60#issuecomment-1868382399) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -3. 🗣 Commented on [#215](https://github.com/jcmgray/quimb/pull/215#issuecomment-1868377722) in [jcmgray/quimb](https://github.com/jcmgray/quimb) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI-examples/pull/1#issuecomment-1868375827) in [tuhinmallick/crewAI-examples](https://github.com/tuhinmallick/crewAI-examples) -5. 🗣 Commented on [#227](https://github.com/CartoonFan/lutris/pull/227#issuecomment-1868337249) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#9107](https://github.com/statsmodels/statsmodels/pull/9107#issuecomment-1868321088) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -7. 🗣 Commented on [#59](https://github.com/LipAnn/SongsChordsBot/pull/59#issuecomment-1868279082) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -8. 🗣 Commented on [#2907](https://github.com/astropy/astroquery/pull/2907#issuecomment-1868264648) in [astropy/astroquery](https://github.com/astropy/astroquery) -9. 🗣 Commented on [#57](https://github.com/LipAnn/SongsChordsBot/pull/57#issuecomment-1868245981) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API/pull/1#issuecomment-1868216347) in [tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API](https://github.com/tuhinmallick/Build-Share-Sell-OpenAI-Assistants-API) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/kay/pull/1#issuecomment-1868433505) in [tuhinmallick/kay](https://github.com/tuhinmallick/kay) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Osprey/pull/1#issuecomment-1868430498) in [tuhinmallick/Osprey](https://github.com/tuhinmallick/Osprey) +3. 🗣 Commented on [#60](https://github.com/LipAnn/SongsChordsBot/pull/60#issuecomment-1868382399) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +4. 🗣 Commented on [#215](https://github.com/jcmgray/quimb/pull/215#issuecomment-1868377722) in [jcmgray/quimb](https://github.com/jcmgray/quimb) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI-examples/pull/1#issuecomment-1868375827) in [tuhinmallick/crewAI-examples](https://github.com/tuhinmallick/crewAI-examples) +6. 🗣 Commented on [#227](https://github.com/CartoonFan/lutris/pull/227#issuecomment-1868337249) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#9107](https://github.com/statsmodels/statsmodels/pull/9107#issuecomment-1868321088) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +8. 🗣 Commented on [#59](https://github.com/LipAnn/SongsChordsBot/pull/59#issuecomment-1868279082) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +9. 🗣 Commented on [#2907](https://github.com/astropy/astroquery/pull/2907#issuecomment-1868264648) in [astropy/astroquery](https://github.com/astropy/astroquery) +10. 🗣 Commented on [#57](https://github.com/LipAnn/SongsChordsBot/pull/57#issuecomment-1868245981) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) From b264139537b0dc99af5dd8c89aaee725b8a2c12d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 24 Dec 2023 12:49:47 +0000 Subject: [PATCH 1014/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 37343e4a..e84471cd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/kay/pull/1#issuecomment-1868433505) in [tuhinmallick/kay](https://github.com/tuhinmallick/kay) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/Osprey/pull/1#issuecomment-1868430498) in [tuhinmallick/Osprey](https://github.com/tuhinmallick/Osprey) -3. 🗣 Commented on [#60](https://github.com/LipAnn/SongsChordsBot/pull/60#issuecomment-1868382399) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -4. 🗣 Commented on [#215](https://github.com/jcmgray/quimb/pull/215#issuecomment-1868377722) in [jcmgray/quimb](https://github.com/jcmgray/quimb) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI-examples/pull/1#issuecomment-1868375827) in [tuhinmallick/crewAI-examples](https://github.com/tuhinmallick/crewAI-examples) -6. 🗣 Commented on [#227](https://github.com/CartoonFan/lutris/pull/227#issuecomment-1868337249) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#9107](https://github.com/statsmodels/statsmodels/pull/9107#issuecomment-1868321088) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -8. 🗣 Commented on [#59](https://github.com/LipAnn/SongsChordsBot/pull/59#issuecomment-1868279082) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -9. 🗣 Commented on [#2907](https://github.com/astropy/astroquery/pull/2907#issuecomment-1868264648) in [astropy/astroquery](https://github.com/astropy/astroquery) -10. 🗣 Commented on [#57](https://github.com/LipAnn/SongsChordsBot/pull/57#issuecomment-1868245981) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +1. 🗣 Commented on [#430](https://github.com/SDXorg/pysd/pull/430#issuecomment-1868505802) in [SDXorg/pysd](https://github.com/SDXorg/pysd) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/kay/pull/1#issuecomment-1868433505) in [tuhinmallick/kay](https://github.com/tuhinmallick/kay) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Osprey/pull/1#issuecomment-1868430498) in [tuhinmallick/Osprey](https://github.com/tuhinmallick/Osprey) +4. 🗣 Commented on [#60](https://github.com/LipAnn/SongsChordsBot/pull/60#issuecomment-1868382399) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +5. 🗣 Commented on [#215](https://github.com/jcmgray/quimb/pull/215#issuecomment-1868377722) in [jcmgray/quimb](https://github.com/jcmgray/quimb) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI-examples/pull/1#issuecomment-1868375827) in [tuhinmallick/crewAI-examples](https://github.com/tuhinmallick/crewAI-examples) +7. 🗣 Commented on [#227](https://github.com/CartoonFan/lutris/pull/227#issuecomment-1868337249) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#9107](https://github.com/statsmodels/statsmodels/pull/9107#issuecomment-1868321088) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +9. 🗣 Commented on [#59](https://github.com/LipAnn/SongsChordsBot/pull/59#issuecomment-1868279082) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +10. 🗣 Commented on [#2907](https://github.com/astropy/astroquery/pull/2907#issuecomment-1868264648) in [astropy/astroquery](https://github.com/astropy/astroquery) From fd840e9290be7ca3c7e53e1bdb3dda697df0fd3c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 24 Dec 2023 23:37:14 +0000 Subject: [PATCH 1015/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e84471cd..452e3708 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#430](https://github.com/SDXorg/pysd/pull/430#issuecomment-1868505802) in [SDXorg/pysd](https://github.com/SDXorg/pysd) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/kay/pull/1#issuecomment-1868433505) in [tuhinmallick/kay](https://github.com/tuhinmallick/kay) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/Osprey/pull/1#issuecomment-1868430498) in [tuhinmallick/Osprey](https://github.com/tuhinmallick/Osprey) -4. 🗣 Commented on [#60](https://github.com/LipAnn/SongsChordsBot/pull/60#issuecomment-1868382399) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -5. 🗣 Commented on [#215](https://github.com/jcmgray/quimb/pull/215#issuecomment-1868377722) in [jcmgray/quimb](https://github.com/jcmgray/quimb) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI-examples/pull/1#issuecomment-1868375827) in [tuhinmallick/crewAI-examples](https://github.com/tuhinmallick/crewAI-examples) -7. 🗣 Commented on [#227](https://github.com/CartoonFan/lutris/pull/227#issuecomment-1868337249) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#9107](https://github.com/statsmodels/statsmodels/pull/9107#issuecomment-1868321088) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -9. 🗣 Commented on [#59](https://github.com/LipAnn/SongsChordsBot/pull/59#issuecomment-1868279082) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -10. 🗣 Commented on [#2907](https://github.com/astropy/astroquery/pull/2907#issuecomment-1868264648) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#669](https://github.com/OpenFreeEnergy/openfe/pull/669#issuecomment-1868609926) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#430](https://github.com/SDXorg/pysd/pull/430#issuecomment-1868505802) in [SDXorg/pysd](https://github.com/SDXorg/pysd) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/kay/pull/1#issuecomment-1868433505) in [tuhinmallick/kay](https://github.com/tuhinmallick/kay) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Osprey/pull/1#issuecomment-1868430498) in [tuhinmallick/Osprey](https://github.com/tuhinmallick/Osprey) +5. 🗣 Commented on [#60](https://github.com/LipAnn/SongsChordsBot/pull/60#issuecomment-1868382399) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +6. 🗣 Commented on [#215](https://github.com/jcmgray/quimb/pull/215#issuecomment-1868377722) in [jcmgray/quimb](https://github.com/jcmgray/quimb) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI-examples/pull/1#issuecomment-1868375827) in [tuhinmallick/crewAI-examples](https://github.com/tuhinmallick/crewAI-examples) +8. 🗣 Commented on [#227](https://github.com/CartoonFan/lutris/pull/227#issuecomment-1868337249) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#9107](https://github.com/statsmodels/statsmodels/pull/9107#issuecomment-1868321088) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +10. 🗣 Commented on [#59](https://github.com/LipAnn/SongsChordsBot/pull/59#issuecomment-1868279082) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) From 83be82c751496e42a693dfdd73023e84fa300bf8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Dec 2023 04:37:53 +0000 Subject: [PATCH 1016/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 452e3708..4a22cd91 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#669](https://github.com/OpenFreeEnergy/openfe/pull/669#issuecomment-1868609926) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#430](https://github.com/SDXorg/pysd/pull/430#issuecomment-1868505802) in [SDXorg/pysd](https://github.com/SDXorg/pysd) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/kay/pull/1#issuecomment-1868433505) in [tuhinmallick/kay](https://github.com/tuhinmallick/kay) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/Osprey/pull/1#issuecomment-1868430498) in [tuhinmallick/Osprey](https://github.com/tuhinmallick/Osprey) -5. 🗣 Commented on [#60](https://github.com/LipAnn/SongsChordsBot/pull/60#issuecomment-1868382399) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -6. 🗣 Commented on [#215](https://github.com/jcmgray/quimb/pull/215#issuecomment-1868377722) in [jcmgray/quimb](https://github.com/jcmgray/quimb) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI-examples/pull/1#issuecomment-1868375827) in [tuhinmallick/crewAI-examples](https://github.com/tuhinmallick/crewAI-examples) -8. 🗣 Commented on [#227](https://github.com/CartoonFan/lutris/pull/227#issuecomment-1868337249) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#9107](https://github.com/statsmodels/statsmodels/pull/9107#issuecomment-1868321088) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -10. 🗣 Commented on [#59](https://github.com/LipAnn/SongsChordsBot/pull/59#issuecomment-1868279082) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +1. 🗣 Commented on [#228](https://github.com/CartoonFan/lutris/pull/228#issuecomment-1868726851) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#669](https://github.com/OpenFreeEnergy/openfe/pull/669#issuecomment-1868609926) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#430](https://github.com/SDXorg/pysd/pull/430#issuecomment-1868505802) in [SDXorg/pysd](https://github.com/SDXorg/pysd) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/kay/pull/1#issuecomment-1868433505) in [tuhinmallick/kay](https://github.com/tuhinmallick/kay) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Osprey/pull/1#issuecomment-1868430498) in [tuhinmallick/Osprey](https://github.com/tuhinmallick/Osprey) +6. 🗣 Commented on [#60](https://github.com/LipAnn/SongsChordsBot/pull/60#issuecomment-1868382399) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +7. 🗣 Commented on [#215](https://github.com/jcmgray/quimb/pull/215#issuecomment-1868377722) in [jcmgray/quimb](https://github.com/jcmgray/quimb) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI-examples/pull/1#issuecomment-1868375827) in [tuhinmallick/crewAI-examples](https://github.com/tuhinmallick/crewAI-examples) +9. 🗣 Commented on [#227](https://github.com/CartoonFan/lutris/pull/227#issuecomment-1868337249) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#9107](https://github.com/statsmodels/statsmodels/pull/9107#issuecomment-1868321088) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) From 0cf97bb4be06ec53ff8e9b1ac78ba11f846fff0f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Dec 2023 14:37:16 +0000 Subject: [PATCH 1017/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4a22cd91..097f14ac 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#228](https://github.com/CartoonFan/lutris/pull/228#issuecomment-1868726851) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#669](https://github.com/OpenFreeEnergy/openfe/pull/669#issuecomment-1868609926) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#430](https://github.com/SDXorg/pysd/pull/430#issuecomment-1868505802) in [SDXorg/pysd](https://github.com/SDXorg/pysd) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/kay/pull/1#issuecomment-1868433505) in [tuhinmallick/kay](https://github.com/tuhinmallick/kay) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/Osprey/pull/1#issuecomment-1868430498) in [tuhinmallick/Osprey](https://github.com/tuhinmallick/Osprey) -6. 🗣 Commented on [#60](https://github.com/LipAnn/SongsChordsBot/pull/60#issuecomment-1868382399) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -7. 🗣 Commented on [#215](https://github.com/jcmgray/quimb/pull/215#issuecomment-1868377722) in [jcmgray/quimb](https://github.com/jcmgray/quimb) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI-examples/pull/1#issuecomment-1868375827) in [tuhinmallick/crewAI-examples](https://github.com/tuhinmallick/crewAI-examples) -9. 🗣 Commented on [#227](https://github.com/CartoonFan/lutris/pull/227#issuecomment-1868337249) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#9107](https://github.com/statsmodels/statsmodels/pull/9107#issuecomment-1868321088) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +1. 🗣 Commented on [#1236](https://github.com/aimclub/FEDOT/pull/1236#issuecomment-1869003332) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#228](https://github.com/CartoonFan/lutris/pull/228#issuecomment-1868726851) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#669](https://github.com/OpenFreeEnergy/openfe/pull/669#issuecomment-1868609926) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#430](https://github.com/SDXorg/pysd/pull/430#issuecomment-1868505802) in [SDXorg/pysd](https://github.com/SDXorg/pysd) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/kay/pull/1#issuecomment-1868433505) in [tuhinmallick/kay](https://github.com/tuhinmallick/kay) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Osprey/pull/1#issuecomment-1868430498) in [tuhinmallick/Osprey](https://github.com/tuhinmallick/Osprey) +7. 🗣 Commented on [#60](https://github.com/LipAnn/SongsChordsBot/pull/60#issuecomment-1868382399) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) +8. 🗣 Commented on [#215](https://github.com/jcmgray/quimb/pull/215#issuecomment-1868377722) in [jcmgray/quimb](https://github.com/jcmgray/quimb) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI-examples/pull/1#issuecomment-1868375827) in [tuhinmallick/crewAI-examples](https://github.com/tuhinmallick/crewAI-examples) +10. 🗣 Commented on [#227](https://github.com/CartoonFan/lutris/pull/227#issuecomment-1868337249) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 37007277063a9da2f593f7bed8684e1275deb6b5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Dec 2023 22:15:02 +0000 Subject: [PATCH 1018/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 097f14ac..795a78c6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1236](https://github.com/aimclub/FEDOT/pull/1236#issuecomment-1869003332) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#228](https://github.com/CartoonFan/lutris/pull/228#issuecomment-1868726851) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#669](https://github.com/OpenFreeEnergy/openfe/pull/669#issuecomment-1868609926) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#430](https://github.com/SDXorg/pysd/pull/430#issuecomment-1868505802) in [SDXorg/pysd](https://github.com/SDXorg/pysd) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/kay/pull/1#issuecomment-1868433505) in [tuhinmallick/kay](https://github.com/tuhinmallick/kay) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/Osprey/pull/1#issuecomment-1868430498) in [tuhinmallick/Osprey](https://github.com/tuhinmallick/Osprey) -7. 🗣 Commented on [#60](https://github.com/LipAnn/SongsChordsBot/pull/60#issuecomment-1868382399) in [LipAnn/SongsChordsBot](https://github.com/LipAnn/SongsChordsBot) -8. 🗣 Commented on [#215](https://github.com/jcmgray/quimb/pull/215#issuecomment-1868377722) in [jcmgray/quimb](https://github.com/jcmgray/quimb) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/crewAI-examples/pull/1#issuecomment-1868375827) in [tuhinmallick/crewAI-examples](https://github.com/tuhinmallick/crewAI-examples) -10. 🗣 Commented on [#227](https://github.com/CartoonFan/lutris/pull/227#issuecomment-1868337249) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 💪 Opened PR [#454](https://github.com/pep8speaks-org/test-pep8speaks/pull/454) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +2. 💪 Opened PR [#453](https://github.com/pep8speaks-org/test-pep8speaks/pull/453) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +3. 💪 Opened PR [#452](https://github.com/pep8speaks-org/test-pep8speaks/pull/452) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +4. 💪 Opened PR [#451](https://github.com/pep8speaks-org/test-pep8speaks/pull/451) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +5. 💪 Opened PR [#450](https://github.com/pep8speaks-org/test-pep8speaks/pull/450) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +6. 🗣 Commented on [#1236](https://github.com/aimclub/FEDOT/pull/1236#issuecomment-1869003332) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#228](https://github.com/CartoonFan/lutris/pull/228#issuecomment-1868726851) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#669](https://github.com/OpenFreeEnergy/openfe/pull/669#issuecomment-1868609926) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#430](https://github.com/SDXorg/pysd/pull/430#issuecomment-1868505802) in [SDXorg/pysd](https://github.com/SDXorg/pysd) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/kay/pull/1#issuecomment-1868433505) in [tuhinmallick/kay](https://github.com/tuhinmallick/kay) From 4d65c25e5b5d544e57b44cb8653bbb6f80cf3e3d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Dec 2023 08:19:55 +0000 Subject: [PATCH 1019/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 795a78c6..6a822922 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 💪 Opened PR [#454](https://github.com/pep8speaks-org/test-pep8speaks/pull/454) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -2. 💪 Opened PR [#453](https://github.com/pep8speaks-org/test-pep8speaks/pull/453) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -3. 💪 Opened PR [#452](https://github.com/pep8speaks-org/test-pep8speaks/pull/452) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -4. 💪 Opened PR [#451](https://github.com/pep8speaks-org/test-pep8speaks/pull/451) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -5. 💪 Opened PR [#450](https://github.com/pep8speaks-org/test-pep8speaks/pull/450) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -6. 🗣 Commented on [#1236](https://github.com/aimclub/FEDOT/pull/1236#issuecomment-1869003332) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#228](https://github.com/CartoonFan/lutris/pull/228#issuecomment-1868726851) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#669](https://github.com/OpenFreeEnergy/openfe/pull/669#issuecomment-1868609926) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#430](https://github.com/SDXorg/pysd/pull/430#issuecomment-1868505802) in [SDXorg/pysd](https://github.com/SDXorg/pysd) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/kay/pull/1#issuecomment-1868433505) in [tuhinmallick/kay](https://github.com/tuhinmallick/kay) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/PIA/pull/1#issuecomment-1869334354) in [tuhinmallick/PIA](https://github.com/tuhinmallick/PIA) +2. 💪 Opened PR [#454](https://github.com/pep8speaks-org/test-pep8speaks/pull/454) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +3. 💪 Opened PR [#453](https://github.com/pep8speaks-org/test-pep8speaks/pull/453) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +4. 💪 Opened PR [#452](https://github.com/pep8speaks-org/test-pep8speaks/pull/452) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +5. 💪 Opened PR [#451](https://github.com/pep8speaks-org/test-pep8speaks/pull/451) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +6. 💪 Opened PR [#450](https://github.com/pep8speaks-org/test-pep8speaks/pull/450) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +7. 🗣 Commented on [#1236](https://github.com/aimclub/FEDOT/pull/1236#issuecomment-1869003332) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#228](https://github.com/CartoonFan/lutris/pull/228#issuecomment-1868726851) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#669](https://github.com/OpenFreeEnergy/openfe/pull/669#issuecomment-1868609926) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#430](https://github.com/SDXorg/pysd/pull/430#issuecomment-1868505802) in [SDXorg/pysd](https://github.com/SDXorg/pysd) From 6df52b1edf9d8de371cb34df5a4e2ddc0e37c3eb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Dec 2023 23:18:09 +0000 Subject: [PATCH 1020/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6a822922..26dc3132 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/PIA/pull/1#issuecomment-1869334354) in [tuhinmallick/PIA](https://github.com/tuhinmallick/PIA) -2. 💪 Opened PR [#454](https://github.com/pep8speaks-org/test-pep8speaks/pull/454) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -3. 💪 Opened PR [#453](https://github.com/pep8speaks-org/test-pep8speaks/pull/453) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -4. 💪 Opened PR [#452](https://github.com/pep8speaks-org/test-pep8speaks/pull/452) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -5. 💪 Opened PR [#451](https://github.com/pep8speaks-org/test-pep8speaks/pull/451) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -6. 💪 Opened PR [#450](https://github.com/pep8speaks-org/test-pep8speaks/pull/450) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -7. 🗣 Commented on [#1236](https://github.com/aimclub/FEDOT/pull/1236#issuecomment-1869003332) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#228](https://github.com/CartoonFan/lutris/pull/228#issuecomment-1868726851) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#669](https://github.com/OpenFreeEnergy/openfe/pull/669#issuecomment-1868609926) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#430](https://github.com/SDXorg/pysd/pull/430#issuecomment-1868505802) in [SDXorg/pysd](https://github.com/SDXorg/pysd) +1. 🗣 Commented on [#1037](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1037#issuecomment-1869810472) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/PIA/pull/1#issuecomment-1869334354) in [tuhinmallick/PIA](https://github.com/tuhinmallick/PIA) +3. 💪 Opened PR [#454](https://github.com/pep8speaks-org/test-pep8speaks/pull/454) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +4. 💪 Opened PR [#453](https://github.com/pep8speaks-org/test-pep8speaks/pull/453) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +5. 💪 Opened PR [#452](https://github.com/pep8speaks-org/test-pep8speaks/pull/452) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +6. 💪 Opened PR [#451](https://github.com/pep8speaks-org/test-pep8speaks/pull/451) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +7. 💪 Opened PR [#450](https://github.com/pep8speaks-org/test-pep8speaks/pull/450) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +8. 🗣 Commented on [#1236](https://github.com/aimclub/FEDOT/pull/1236#issuecomment-1869003332) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#228](https://github.com/CartoonFan/lutris/pull/228#issuecomment-1868726851) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#669](https://github.com/OpenFreeEnergy/openfe/pull/669#issuecomment-1868609926) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 690e1a5869f1e947801e67f7e5fe6d9ce3487faa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Dec 2023 02:06:38 +0000 Subject: [PATCH 1021/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 26dc3132..bf9ca4de 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1037](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1037#issuecomment-1869810472) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/PIA/pull/1#issuecomment-1869334354) in [tuhinmallick/PIA](https://github.com/tuhinmallick/PIA) -3. 💪 Opened PR [#454](https://github.com/pep8speaks-org/test-pep8speaks/pull/454) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -4. 💪 Opened PR [#453](https://github.com/pep8speaks-org/test-pep8speaks/pull/453) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -5. 💪 Opened PR [#452](https://github.com/pep8speaks-org/test-pep8speaks/pull/452) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -6. 💪 Opened PR [#451](https://github.com/pep8speaks-org/test-pep8speaks/pull/451) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -7. 💪 Opened PR [#450](https://github.com/pep8speaks-org/test-pep8speaks/pull/450) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -8. 🗣 Commented on [#1236](https://github.com/aimclub/FEDOT/pull/1236#issuecomment-1869003332) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#228](https://github.com/CartoonFan/lutris/pull/228#issuecomment-1868726851) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#669](https://github.com/OpenFreeEnergy/openfe/pull/669#issuecomment-1868609926) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#229](https://github.com/CartoonFan/lutris/pull/229#issuecomment-1869868713) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#1037](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1037#issuecomment-1869810472) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/PIA/pull/1#issuecomment-1869334354) in [tuhinmallick/PIA](https://github.com/tuhinmallick/PIA) +4. 💪 Opened PR [#454](https://github.com/pep8speaks-org/test-pep8speaks/pull/454) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +5. 💪 Opened PR [#453](https://github.com/pep8speaks-org/test-pep8speaks/pull/453) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +6. 💪 Opened PR [#452](https://github.com/pep8speaks-org/test-pep8speaks/pull/452) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +7. 💪 Opened PR [#451](https://github.com/pep8speaks-org/test-pep8speaks/pull/451) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +8. 💪 Opened PR [#450](https://github.com/pep8speaks-org/test-pep8speaks/pull/450) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +9. 🗣 Commented on [#1236](https://github.com/aimclub/FEDOT/pull/1236#issuecomment-1869003332) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#228](https://github.com/CartoonFan/lutris/pull/228#issuecomment-1868726851) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 26e7d78be8cce0e6b6042db8717f700bd87896b5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Dec 2023 05:37:11 +0000 Subject: [PATCH 1022/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bf9ca4de..f41a159c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#229](https://github.com/CartoonFan/lutris/pull/229#issuecomment-1869868713) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#1037](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1037#issuecomment-1869810472) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/PIA/pull/1#issuecomment-1869334354) in [tuhinmallick/PIA](https://github.com/tuhinmallick/PIA) -4. 💪 Opened PR [#454](https://github.com/pep8speaks-org/test-pep8speaks/pull/454) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -5. 💪 Opened PR [#453](https://github.com/pep8speaks-org/test-pep8speaks/pull/453) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -6. 💪 Opened PR [#452](https://github.com/pep8speaks-org/test-pep8speaks/pull/452) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -7. 💪 Opened PR [#451](https://github.com/pep8speaks-org/test-pep8speaks/pull/451) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -8. 💪 Opened PR [#450](https://github.com/pep8speaks-org/test-pep8speaks/pull/450) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -9. 🗣 Commented on [#1236](https://github.com/aimclub/FEDOT/pull/1236#issuecomment-1869003332) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#228](https://github.com/CartoonFan/lutris/pull/228#issuecomment-1868726851) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#8](https://github.com/brianhang/pokerpals/pull/8#issuecomment-1869964219) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +2. 🗣 Commented on [#7](https://github.com/brianhang/pokerpals/pull/7#issuecomment-1869963019) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +3. 🗣 Commented on [#229](https://github.com/CartoonFan/lutris/pull/229#issuecomment-1869868713) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#1037](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1037#issuecomment-1869810472) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/PIA/pull/1#issuecomment-1869334354) in [tuhinmallick/PIA](https://github.com/tuhinmallick/PIA) +6. 💪 Opened PR [#454](https://github.com/pep8speaks-org/test-pep8speaks/pull/454) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +7. 💪 Opened PR [#453](https://github.com/pep8speaks-org/test-pep8speaks/pull/453) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +8. 💪 Opened PR [#452](https://github.com/pep8speaks-org/test-pep8speaks/pull/452) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +9. 💪 Opened PR [#451](https://github.com/pep8speaks-org/test-pep8speaks/pull/451) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +10. 💪 Opened PR [#450](https://github.com/pep8speaks-org/test-pep8speaks/pull/450) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) From 76e5073ceafa3c54c59afa9f4cfa4ef137cc68ae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Dec 2023 07:37:20 +0000 Subject: [PATCH 1023/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f41a159c..9f817085 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#8](https://github.com/brianhang/pokerpals/pull/8#issuecomment-1869964219) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -2. 🗣 Commented on [#7](https://github.com/brianhang/pokerpals/pull/7#issuecomment-1869963019) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -3. 🗣 Commented on [#229](https://github.com/CartoonFan/lutris/pull/229#issuecomment-1869868713) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#1037](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1037#issuecomment-1869810472) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/PIA/pull/1#issuecomment-1869334354) in [tuhinmallick/PIA](https://github.com/tuhinmallick/PIA) -6. 💪 Opened PR [#454](https://github.com/pep8speaks-org/test-pep8speaks/pull/454) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -7. 💪 Opened PR [#453](https://github.com/pep8speaks-org/test-pep8speaks/pull/453) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -8. 💪 Opened PR [#452](https://github.com/pep8speaks-org/test-pep8speaks/pull/452) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -9. 💪 Opened PR [#451](https://github.com/pep8speaks-org/test-pep8speaks/pull/451) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -10. 💪 Opened PR [#450](https://github.com/pep8speaks-org/test-pep8speaks/pull/450) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +1. 🗣 Commented on [#1237](https://github.com/aimclub/FEDOT/pull/1237#issuecomment-1870030668) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#8](https://github.com/brianhang/pokerpals/pull/8#issuecomment-1869964219) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +3. 🗣 Commented on [#7](https://github.com/brianhang/pokerpals/pull/7#issuecomment-1869963019) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +4. 🗣 Commented on [#229](https://github.com/CartoonFan/lutris/pull/229#issuecomment-1869868713) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#1037](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1037#issuecomment-1869810472) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/PIA/pull/1#issuecomment-1869334354) in [tuhinmallick/PIA](https://github.com/tuhinmallick/PIA) +7. 💪 Opened PR [#454](https://github.com/pep8speaks-org/test-pep8speaks/pull/454) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +8. 💪 Opened PR [#453](https://github.com/pep8speaks-org/test-pep8speaks/pull/453) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +9. 💪 Opened PR [#452](https://github.com/pep8speaks-org/test-pep8speaks/pull/452) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +10. 💪 Opened PR [#451](https://github.com/pep8speaks-org/test-pep8speaks/pull/451) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) From 042bb8b705f2bd41f34223ff52834d972b099960 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Dec 2023 08:37:29 +0000 Subject: [PATCH 1024/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9f817085..77b8edaa 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1237](https://github.com/aimclub/FEDOT/pull/1237#issuecomment-1870030668) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#8](https://github.com/brianhang/pokerpals/pull/8#issuecomment-1869964219) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -3. 🗣 Commented on [#7](https://github.com/brianhang/pokerpals/pull/7#issuecomment-1869963019) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -4. 🗣 Commented on [#229](https://github.com/CartoonFan/lutris/pull/229#issuecomment-1869868713) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#1037](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1037#issuecomment-1869810472) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/PIA/pull/1#issuecomment-1869334354) in [tuhinmallick/PIA](https://github.com/tuhinmallick/PIA) -7. 💪 Opened PR [#454](https://github.com/pep8speaks-org/test-pep8speaks/pull/454) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -8. 💪 Opened PR [#453](https://github.com/pep8speaks-org/test-pep8speaks/pull/453) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -9. 💪 Opened PR [#452](https://github.com/pep8speaks-org/test-pep8speaks/pull/452) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -10. 💪 Opened PR [#451](https://github.com/pep8speaks-org/test-pep8speaks/pull/451) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +1. 🗣 Commented on [#785](https://github.com/StingraySoftware/stingray/pull/785#issuecomment-1870074017) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +2. 🗣 Commented on [#1237](https://github.com/aimclub/FEDOT/pull/1237#issuecomment-1870030668) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#8](https://github.com/brianhang/pokerpals/pull/8#issuecomment-1869964219) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +4. 🗣 Commented on [#7](https://github.com/brianhang/pokerpals/pull/7#issuecomment-1869963019) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +5. 🗣 Commented on [#229](https://github.com/CartoonFan/lutris/pull/229#issuecomment-1869868713) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#1037](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1037#issuecomment-1869810472) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/PIA/pull/1#issuecomment-1869334354) in [tuhinmallick/PIA](https://github.com/tuhinmallick/PIA) +8. 💪 Opened PR [#454](https://github.com/pep8speaks-org/test-pep8speaks/pull/454) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +9. 💪 Opened PR [#453](https://github.com/pep8speaks-org/test-pep8speaks/pull/453) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +10. 💪 Opened PR [#452](https://github.com/pep8speaks-org/test-pep8speaks/pull/452) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) From 93722ba648df835a50168cd97a8eee297cdcf6f0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Dec 2023 11:13:30 +0000 Subject: [PATCH 1025/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 77b8edaa..80921ad9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#785](https://github.com/StingraySoftware/stingray/pull/785#issuecomment-1870074017) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -2. 🗣 Commented on [#1237](https://github.com/aimclub/FEDOT/pull/1237#issuecomment-1870030668) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#8](https://github.com/brianhang/pokerpals/pull/8#issuecomment-1869964219) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -4. 🗣 Commented on [#7](https://github.com/brianhang/pokerpals/pull/7#issuecomment-1869963019) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -5. 🗣 Commented on [#229](https://github.com/CartoonFan/lutris/pull/229#issuecomment-1869868713) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#1037](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1037#issuecomment-1869810472) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/PIA/pull/1#issuecomment-1869334354) in [tuhinmallick/PIA](https://github.com/tuhinmallick/PIA) -8. 💪 Opened PR [#454](https://github.com/pep8speaks-org/test-pep8speaks/pull/454) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -9. 💪 Opened PR [#453](https://github.com/pep8speaks-org/test-pep8speaks/pull/453) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -10. 💪 Opened PR [#452](https://github.com/pep8speaks-org/test-pep8speaks/pull/452) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +1. 🗣 Commented on [#2684](https://github.com/metabrainz/listenbrainz-server/pull/2684#issuecomment-1870189253) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#785](https://github.com/StingraySoftware/stingray/pull/785#issuecomment-1870074017) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +3. 🗣 Commented on [#1237](https://github.com/aimclub/FEDOT/pull/1237#issuecomment-1870030668) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#8](https://github.com/brianhang/pokerpals/pull/8#issuecomment-1869964219) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +5. 🗣 Commented on [#7](https://github.com/brianhang/pokerpals/pull/7#issuecomment-1869963019) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +6. 🗣 Commented on [#229](https://github.com/CartoonFan/lutris/pull/229#issuecomment-1869868713) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#1037](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1037#issuecomment-1869810472) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/PIA/pull/1#issuecomment-1869334354) in [tuhinmallick/PIA](https://github.com/tuhinmallick/PIA) +9. 💪 Opened PR [#454](https://github.com/pep8speaks-org/test-pep8speaks/pull/454) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +10. 💪 Opened PR [#453](https://github.com/pep8speaks-org/test-pep8speaks/pull/453) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) From 70ba693584cc8d6d6949f134c5d1f97e2c0daa30 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Dec 2023 15:16:00 +0000 Subject: [PATCH 1026/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 80921ad9..a503ebc0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2684](https://github.com/metabrainz/listenbrainz-server/pull/2684#issuecomment-1870189253) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#785](https://github.com/StingraySoftware/stingray/pull/785#issuecomment-1870074017) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -3. 🗣 Commented on [#1237](https://github.com/aimclub/FEDOT/pull/1237#issuecomment-1870030668) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#8](https://github.com/brianhang/pokerpals/pull/8#issuecomment-1869964219) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -5. 🗣 Commented on [#7](https://github.com/brianhang/pokerpals/pull/7#issuecomment-1869963019) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -6. 🗣 Commented on [#229](https://github.com/CartoonFan/lutris/pull/229#issuecomment-1869868713) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#1037](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1037#issuecomment-1869810472) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/PIA/pull/1#issuecomment-1869334354) in [tuhinmallick/PIA](https://github.com/tuhinmallick/PIA) -9. 💪 Opened PR [#454](https://github.com/pep8speaks-org/test-pep8speaks/pull/454) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) -10. 💪 Opened PR [#453](https://github.com/pep8speaks-org/test-pep8speaks/pull/453) in [pep8speaks-org/test-pep8speaks](https://github.com/pep8speaks-org/test-pep8speaks) +1. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#460](https://github.com/zarr-developers/numcodecs/pull/460#issuecomment-1870378373) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +3. 🗣 Commented on [#2684](https://github.com/metabrainz/listenbrainz-server/pull/2684#issuecomment-1870189253) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#785](https://github.com/StingraySoftware/stingray/pull/785#issuecomment-1870074017) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +5. 🗣 Commented on [#1237](https://github.com/aimclub/FEDOT/pull/1237#issuecomment-1870030668) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#8](https://github.com/brianhang/pokerpals/pull/8#issuecomment-1869964219) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +7. 🗣 Commented on [#7](https://github.com/brianhang/pokerpals/pull/7#issuecomment-1869963019) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +8. 🗣 Commented on [#229](https://github.com/CartoonFan/lutris/pull/229#issuecomment-1869868713) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#1037](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1037#issuecomment-1869810472) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/PIA/pull/1#issuecomment-1869334354) in [tuhinmallick/PIA](https://github.com/tuhinmallick/PIA) From 7b8b214424fb28874e396023ef6fe361d3bfc54f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Dec 2023 22:15:07 +0000 Subject: [PATCH 1027/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a503ebc0..d840148e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#460](https://github.com/zarr-developers/numcodecs/pull/460#issuecomment-1870378373) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -3. 🗣 Commented on [#2684](https://github.com/metabrainz/listenbrainz-server/pull/2684#issuecomment-1870189253) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#785](https://github.com/StingraySoftware/stingray/pull/785#issuecomment-1870074017) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -5. 🗣 Commented on [#1237](https://github.com/aimclub/FEDOT/pull/1237#issuecomment-1870030668) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#8](https://github.com/brianhang/pokerpals/pull/8#issuecomment-1869964219) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -7. 🗣 Commented on [#7](https://github.com/brianhang/pokerpals/pull/7#issuecomment-1869963019) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -8. 🗣 Commented on [#229](https://github.com/CartoonFan/lutris/pull/229#issuecomment-1869868713) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#1037](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1037#issuecomment-1869810472) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/PIA/pull/1#issuecomment-1869334354) in [tuhinmallick/PIA](https://github.com/tuhinmallick/PIA) +1. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#460](https://github.com/zarr-developers/numcodecs/pull/460#issuecomment-1870378373) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +4. 🗣 Commented on [#2684](https://github.com/metabrainz/listenbrainz-server/pull/2684#issuecomment-1870189253) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#785](https://github.com/StingraySoftware/stingray/pull/785#issuecomment-1870074017) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +6. 🗣 Commented on [#1237](https://github.com/aimclub/FEDOT/pull/1237#issuecomment-1870030668) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#8](https://github.com/brianhang/pokerpals/pull/8#issuecomment-1869964219) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +8. 🗣 Commented on [#7](https://github.com/brianhang/pokerpals/pull/7#issuecomment-1869963019) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +9. 🗣 Commented on [#229](https://github.com/CartoonFan/lutris/pull/229#issuecomment-1869868713) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#1037](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1037#issuecomment-1869810472) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 3eb741baca41bb0e0c36477b66d10fb703c4ea73 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Dec 2023 05:15:27 +0000 Subject: [PATCH 1028/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d840148e..568ed21c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#460](https://github.com/zarr-developers/numcodecs/pull/460#issuecomment-1870378373) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -4. 🗣 Commented on [#2684](https://github.com/metabrainz/listenbrainz-server/pull/2684#issuecomment-1870189253) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#785](https://github.com/StingraySoftware/stingray/pull/785#issuecomment-1870074017) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -6. 🗣 Commented on [#1237](https://github.com/aimclub/FEDOT/pull/1237#issuecomment-1870030668) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#8](https://github.com/brianhang/pokerpals/pull/8#issuecomment-1869964219) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -8. 🗣 Commented on [#7](https://github.com/brianhang/pokerpals/pull/7#issuecomment-1869963019) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -9. 🗣 Commented on [#229](https://github.com/CartoonFan/lutris/pull/229#issuecomment-1869868713) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#1037](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1037#issuecomment-1869810472) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#460](https://github.com/zarr-developers/numcodecs/pull/460#issuecomment-1870378373) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +5. 🗣 Commented on [#2684](https://github.com/metabrainz/listenbrainz-server/pull/2684#issuecomment-1870189253) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#785](https://github.com/StingraySoftware/stingray/pull/785#issuecomment-1870074017) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +7. 🗣 Commented on [#1237](https://github.com/aimclub/FEDOT/pull/1237#issuecomment-1870030668) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#8](https://github.com/brianhang/pokerpals/pull/8#issuecomment-1869964219) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +9. 🗣 Commented on [#7](https://github.com/brianhang/pokerpals/pull/7#issuecomment-1869963019) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +10. 🗣 Commented on [#229](https://github.com/CartoonFan/lutris/pull/229#issuecomment-1869868713) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 0547f773a6aaee72146e091ba99a46bcefa99b81 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Dec 2023 09:16:12 +0000 Subject: [PATCH 1029/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 568ed21c..b711a2a9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#460](https://github.com/zarr-developers/numcodecs/pull/460#issuecomment-1870378373) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -5. 🗣 Commented on [#2684](https://github.com/metabrainz/listenbrainz-server/pull/2684#issuecomment-1870189253) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#785](https://github.com/StingraySoftware/stingray/pull/785#issuecomment-1870074017) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -7. 🗣 Commented on [#1237](https://github.com/aimclub/FEDOT/pull/1237#issuecomment-1870030668) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#8](https://github.com/brianhang/pokerpals/pull/8#issuecomment-1869964219) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -9. 🗣 Commented on [#7](https://github.com/brianhang/pokerpals/pull/7#issuecomment-1869963019) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -10. 🗣 Commented on [#229](https://github.com/CartoonFan/lutris/pull/229#issuecomment-1869868713) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#460](https://github.com/zarr-developers/numcodecs/pull/460#issuecomment-1870378373) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +6. 🗣 Commented on [#2684](https://github.com/metabrainz/listenbrainz-server/pull/2684#issuecomment-1870189253) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#785](https://github.com/StingraySoftware/stingray/pull/785#issuecomment-1870074017) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +8. 🗣 Commented on [#1237](https://github.com/aimclub/FEDOT/pull/1237#issuecomment-1870030668) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#8](https://github.com/brianhang/pokerpals/pull/8#issuecomment-1869964219) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +10. 🗣 Commented on [#7](https://github.com/brianhang/pokerpals/pull/7#issuecomment-1869963019) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) From acf2fb254ed075b0bc403aecc873abde023a771f Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Thu, 28 Dec 2023 15:53:35 +0530 Subject: [PATCH 1030/2173] fix: pep8bot following user and star repo (#217) --- pep8speaks/helpers.py | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/pep8speaks/helpers.py b/pep8speaks/helpers.py index 1ffe2715..18138d8e 100644 --- a/pep8speaks/helpers.py +++ b/pep8speaks/helpers.py @@ -18,20 +18,14 @@ def update_users(repository): """Star the repository from the bot account""" - headers = { - "Content-Length": "0", - } query = f"/user/starred/{repository}" - return utils.query_request(query=query, method='PUT', headers=headers) + return utils.query_request(query=query, method='PUT') def follow_user(user): """Follow the user of the service""" - headers = { - "Content-Length": "0", - } query = f"/user/following/{user}" - return utils.query_request(query=query, method='PUT', headers=headers) + return utils.query_request(query=query, method='PUT') def read_setup_cfg_file(setup_config_file): @@ -513,7 +507,7 @@ def update_fork_desc(ghrequest): query = f"/repos/{ghrequest.fork_fullname}" r = utils.query_request(query) ATTEMPT = 0 - while(r.status_code != 200): + while (r.status_code != 200): time.sleep(5) r = utils.query_request(query) ATTEMPT += 1 From 962b092211f60044f52f76bce5d302ab6fff5b8e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Dec 2023 11:37:18 +0000 Subject: [PATCH 1031/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b711a2a9..8933a588 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#460](https://github.com/zarr-developers/numcodecs/pull/460#issuecomment-1870378373) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -6. 🗣 Commented on [#2684](https://github.com/metabrainz/listenbrainz-server/pull/2684#issuecomment-1870189253) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#785](https://github.com/StingraySoftware/stingray/pull/785#issuecomment-1870074017) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -8. 🗣 Commented on [#1237](https://github.com/aimclub/FEDOT/pull/1237#issuecomment-1870030668) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#8](https://github.com/brianhang/pokerpals/pull/8#issuecomment-1869964219) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -10. 🗣 Commented on [#7](https://github.com/brianhang/pokerpals/pull/7#issuecomment-1869963019) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +1. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#460](https://github.com/zarr-developers/numcodecs/pull/460#issuecomment-1870378373) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +7. 🗣 Commented on [#2684](https://github.com/metabrainz/listenbrainz-server/pull/2684#issuecomment-1870189253) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#785](https://github.com/StingraySoftware/stingray/pull/785#issuecomment-1870074017) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +9. 🗣 Commented on [#1237](https://github.com/aimclub/FEDOT/pull/1237#issuecomment-1870030668) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#8](https://github.com/brianhang/pokerpals/pull/8#issuecomment-1869964219) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) From a7220956651f2488b3c85c412d0ecf608278d824 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Dec 2023 18:19:50 +0000 Subject: [PATCH 1032/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8933a588..fa679cf5 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#460](https://github.com/zarr-developers/numcodecs/pull/460#issuecomment-1870378373) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -7. 🗣 Commented on [#2684](https://github.com/metabrainz/listenbrainz-server/pull/2684#issuecomment-1870189253) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#785](https://github.com/StingraySoftware/stingray/pull/785#issuecomment-1870074017) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -9. 🗣 Commented on [#1237](https://github.com/aimclub/FEDOT/pull/1237#issuecomment-1870030668) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#8](https://github.com/brianhang/pokerpals/pull/8#issuecomment-1869964219) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +1. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#460](https://github.com/zarr-developers/numcodecs/pull/460#issuecomment-1870378373) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +8. 🗣 Commented on [#2684](https://github.com/metabrainz/listenbrainz-server/pull/2684#issuecomment-1870189253) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#785](https://github.com/StingraySoftware/stingray/pull/785#issuecomment-1870074017) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +10. 🗣 Commented on [#1237](https://github.com/aimclub/FEDOT/pull/1237#issuecomment-1870030668) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From 2f7551fb9e7d3a5b3158c54fc7fe12fae69f926c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Dec 2023 22:37:17 +0000 Subject: [PATCH 1033/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fa679cf5..2275a8a2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#460](https://github.com/zarr-developers/numcodecs/pull/460#issuecomment-1870378373) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -8. 🗣 Commented on [#2684](https://github.com/metabrainz/listenbrainz-server/pull/2684#issuecomment-1870189253) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#785](https://github.com/StingraySoftware/stingray/pull/785#issuecomment-1870074017) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -10. 🗣 Commented on [#1237](https://github.com/aimclub/FEDOT/pull/1237#issuecomment-1870030668) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) +2. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#460](https://github.com/zarr-developers/numcodecs/pull/460#issuecomment-1870378373) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +9. 🗣 Commented on [#2684](https://github.com/metabrainz/listenbrainz-server/pull/2684#issuecomment-1870189253) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#785](https://github.com/StingraySoftware/stingray/pull/785#issuecomment-1870074017) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) From e39efb2085ffae00d3d71da8d1df4ade3316b1d6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Dec 2023 23:37:12 +0000 Subject: [PATCH 1034/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2275a8a2..985612ce 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) -2. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#460](https://github.com/zarr-developers/numcodecs/pull/460#issuecomment-1870378373) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -9. 🗣 Commented on [#2684](https://github.com/metabrainz/listenbrainz-server/pull/2684#issuecomment-1870189253) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#785](https://github.com/StingraySoftware/stingray/pull/785#issuecomment-1870074017) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +1. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +2. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) +3. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#460](https://github.com/zarr-developers/numcodecs/pull/460#issuecomment-1870378373) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +10. 🗣 Commented on [#2684](https://github.com/metabrainz/listenbrainz-server/pull/2684#issuecomment-1870189253) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 37c47e50b121c5031c79f310667e2661c9d16c41 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Dec 2023 09:37:13 +0000 Subject: [PATCH 1035/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 985612ce..03c17b2f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -2. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) -3. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#460](https://github.com/zarr-developers/numcodecs/pull/460#issuecomment-1870378373) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -10. 🗣 Commented on [#2684](https://github.com/metabrainz/listenbrainz-server/pull/2684#issuecomment-1870189253) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +3. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) +4. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +9. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#460](https://github.com/zarr-developers/numcodecs/pull/460#issuecomment-1870378373) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) From 4b7f61f800b6f523434752be76eb9fafb5f068a8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Dec 2023 10:17:30 +0000 Subject: [PATCH 1036/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 03c17b2f..b797026b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -3. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) -4. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -9. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#460](https://github.com/zarr-developers/numcodecs/pull/460#issuecomment-1870378373) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +1. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +2. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +4. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) +5. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From be4fef0280d57e538d3682b70f1ba1904a1ad400 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Dec 2023 12:27:36 +0000 Subject: [PATCH 1037/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b797026b..a6aeb751 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -2. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -4. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) -5. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#1238](https://github.com/aimclub/FEDOT/pull/1238#issuecomment-1870386472) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +3. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +5. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) +6. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From 82f65f88503f5e8bd1cbe88a0351b0d2ff8e8088 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Dec 2023 13:18:36 +0000 Subject: [PATCH 1038/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a6aeb751..9045daa4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -3. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -5. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) -6. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#262](https://github.com/OpenFreeEnergy/gufe/pull/262#issuecomment-1870648249) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +4. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +6. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) +7. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 0094cf84252881cc8884e7425072945957bfdaa2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Dec 2023 15:37:25 +0000 Subject: [PATCH 1039/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9045daa4..cd42560e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -4. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -6. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) -7. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#230](https://github.com/CartoonFan/lutris/pull/230#issuecomment-1870817981) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +4. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +5. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +7. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) +8. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) From d80003abe36513e4c2b433ed07ed585305f5a3d9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Dec 2023 17:16:10 +0000 Subject: [PATCH 1040/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cd42560e..765b823a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -4. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -5. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -7. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) -8. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#3016](https://github.com/dipy/dipy/pull/3016#issuecomment-1870951611) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) +3. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +4. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +6. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +8. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) +9. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From e9fd6f7de1d1846761e69dfdae66be6aa454566c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Dec 2023 22:37:19 +0000 Subject: [PATCH 1041/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 765b823a..fd08f7b8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) -3. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -4. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -6. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -8. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) -9. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#1241](https://github.com/aimclub/FEDOT/pull/1241#issuecomment-1871077742) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +7. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +9. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) +10. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From ff4cb2f6385c4e14ce6b1ff09c0b46597dc78371 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Dec 2023 23:37:18 +0000 Subject: [PATCH 1042/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fd08f7b8..e20f5f1f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -7. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -9. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) -10. 🗣 Commented on [#1417](https://github.com/spacetelescope/jwql/pull/1417#issuecomment-1871374097) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) +5. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +8. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +10. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) From d6077cd607d7965b8ef716ffbe925cd28e724963 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Dec 2023 04:19:50 +0000 Subject: [PATCH 1043/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e20f5f1f..d9ea1514 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) -5. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -8. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -10. 🗣 Commented on [#12](https://github.com/MDAnalysis/PathSimAnalysis/pull/12#issuecomment-1871586413) in [MDAnalysis/PathSimAnalysis](https://github.com/MDAnalysis/PathSimAnalysis) +1. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) +2. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +9. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) From c9eade495b44eaa3c2ad0fd2a4ee00f95a29129d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Dec 2023 06:37:09 +0000 Subject: [PATCH 1044/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d9ea1514..785cee6d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) -2. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -9. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#10](https://github.com/brianhang/pokerpals/pull/10#issuecomment-1871621684) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +1. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +2. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) +3. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) +7. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +10. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 5897ec51361c7fb1aa5f88619e02248dcd23b2c7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Dec 2023 08:18:55 +0000 Subject: [PATCH 1045/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 785cee6d..7e48f272 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -2. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) -3. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) -7. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -10. 🗣 Commented on [#2689](https://github.com/metabrainz/listenbrainz-server/pull/2689#issuecomment-1871876633) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) +2. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +3. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) +4. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) +8. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) From 4c49f135595a6ca7c1a21091863e771c1f1298a4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Dec 2023 11:12:43 +0000 Subject: [PATCH 1046/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7e48f272..55021dd8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) -2. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -3. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) -4. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) -8. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#787](https://github.com/StingraySoftware/stingray/pull/787#issuecomment-1871887054) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +1. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) +3. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +4. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) +5. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) +9. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From a3a3228132baaa4bdc7547a3bc8369ad1e3b0c1a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Dec 2023 18:19:44 +0000 Subject: [PATCH 1047/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 55021dd8..40e541e7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) -3. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -4. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) -5. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) -9. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#166](https://github.com/eastgenomics/dias_batch_running/pull/166#issuecomment-1872001406) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +2. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) +4. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +5. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) +6. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) +10. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From 44bfd44cac8acbaf9de1c65ff09a03be4ca5cf53 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 31 Dec 2023 05:15:02 +0000 Subject: [PATCH 1048/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 40e541e7..4b9f8d6b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -2. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) -4. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -5. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) -6. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) -10. 🗣 Commented on [#167](https://github.com/eastgenomics/dias_batch_running/pull/167#issuecomment-1872072165) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +3. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) +5. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +6. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) +7. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) From 8559fc99af83ba111598286b83bc76e2ae90f65a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 31 Dec 2023 10:16:04 +0000 Subject: [PATCH 1049/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4b9f8d6b..5e54277d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -3. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) -5. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -6. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) -7. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#2910](https://github.com/astropy/astroquery/pull/2910#issuecomment-1872168587) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/full-stack-fastapi-postgresql/pull/1#issuecomment-1872906319) in [tuhinmallick/full-stack-fastapi-postgresql](https://github.com/tuhinmallick/full-stack-fastapi-postgresql) +2. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +4. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) +6. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +7. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) +8. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From f3b1c51be7286f6c41864e5802793b83339bddac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 31 Dec 2023 16:19:53 +0000 Subject: [PATCH 1050/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5e54277d..a54d6140 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/full-stack-fastapi-postgresql/pull/1#issuecomment-1872906319) in [tuhinmallick/full-stack-fastapi-postgresql](https://github.com/tuhinmallick/full-stack-fastapi-postgresql) -2. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -4. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) -6. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -7. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) -8. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#231](https://github.com/CartoonFan/lutris/pull/231#issuecomment-1872213759) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#159](https://github.com/TelebirrApp/TelebirrApp/pull/159#issuecomment-1872980267) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/full-stack-fastapi-postgresql/pull/1#issuecomment-1872906319) in [tuhinmallick/full-stack-fastapi-postgresql](https://github.com/tuhinmallick/full-stack-fastapi-postgresql) +3. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +5. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) +7. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +8. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) +9. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From c128012cdcd673a0c638b6e80a79f8fd36d3671a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 31 Dec 2023 20:16:20 +0000 Subject: [PATCH 1051/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a54d6140..7ac82077 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#159](https://github.com/TelebirrApp/TelebirrApp/pull/159#issuecomment-1872980267) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/full-stack-fastapi-postgresql/pull/1#issuecomment-1872906319) in [tuhinmallick/full-stack-fastapi-postgresql](https://github.com/tuhinmallick/full-stack-fastapi-postgresql) -3. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -5. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) -7. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -8. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) -9. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#1418](https://github.com/spacetelescope/jwql/pull/1418#issuecomment-1872368957) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#172](https://github.com/TelebirrApp/TelebirrApp/pull/172#issuecomment-1873025069) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +2. 🗣 Commented on [#159](https://github.com/TelebirrApp/TelebirrApp/pull/159#issuecomment-1872980267) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/full-stack-fastapi-postgresql/pull/1#issuecomment-1872906319) in [tuhinmallick/full-stack-fastapi-postgresql](https://github.com/tuhinmallick/full-stack-fastapi-postgresql) +4. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +6. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) +8. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +9. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) +10. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 22282b46c2bde78d164b04fa0fe2bb247a1cf2cb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 31 Dec 2023 23:16:22 +0000 Subject: [PATCH 1052/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7ac82077..ef7b32ff 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#172](https://github.com/TelebirrApp/TelebirrApp/pull/172#issuecomment-1873025069) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -2. 🗣 Commented on [#159](https://github.com/TelebirrApp/TelebirrApp/pull/159#issuecomment-1872980267) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/full-stack-fastapi-postgresql/pull/1#issuecomment-1872906319) in [tuhinmallick/full-stack-fastapi-postgresql](https://github.com/tuhinmallick/full-stack-fastapi-postgresql) -4. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -6. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) -8. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -9. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) -10. 🗣 Commented on [#673](https://github.com/OpenFreeEnergy/openfe/pull/673#issuecomment-1872386480) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#234](https://github.com/CartoonFan/lutris/pull/234#issuecomment-1873049098) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#172](https://github.com/TelebirrApp/TelebirrApp/pull/172#issuecomment-1873025069) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +3. 🗣 Commented on [#159](https://github.com/TelebirrApp/TelebirrApp/pull/159#issuecomment-1872980267) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/full-stack-fastapi-postgresql/pull/1#issuecomment-1872906319) in [tuhinmallick/full-stack-fastapi-postgresql](https://github.com/tuhinmallick/full-stack-fastapi-postgresql) +5. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +7. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) +9. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +10. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) From 5be2b1b7c5d68a611ae54e6bd9bd586cda935b76 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Jan 2024 08:20:42 +0000 Subject: [PATCH 1053/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ef7b32ff..800eb180 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#234](https://github.com/CartoonFan/lutris/pull/234#issuecomment-1873049098) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#172](https://github.com/TelebirrApp/TelebirrApp/pull/172#issuecomment-1873025069) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -3. 🗣 Commented on [#159](https://github.com/TelebirrApp/TelebirrApp/pull/159#issuecomment-1872980267) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/full-stack-fastapi-postgresql/pull/1#issuecomment-1872906319) in [tuhinmallick/full-stack-fastapi-postgresql](https://github.com/tuhinmallick/full-stack-fastapi-postgresql) -5. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -7. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) -9. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -10. 🗣 Commented on [#1](https://github.com/ivanlonel/pokeapi/pull/1#issuecomment-1872442666) in [ivanlonel/pokeapi](https://github.com/ivanlonel/pokeapi) +1. 🗣 Commented on [#896](https://github.com/PyThaiNLP/pythainlp/pull/896#issuecomment-1873212288) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#234](https://github.com/CartoonFan/lutris/pull/234#issuecomment-1873049098) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#172](https://github.com/TelebirrApp/TelebirrApp/pull/172#issuecomment-1873025069) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +4. 🗣 Commented on [#159](https://github.com/TelebirrApp/TelebirrApp/pull/159#issuecomment-1872980267) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/full-stack-fastapi-postgresql/pull/1#issuecomment-1872906319) in [tuhinmallick/full-stack-fastapi-postgresql](https://github.com/tuhinmallick/full-stack-fastapi-postgresql) +6. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +8. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) +10. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) From 3e126251b7fcb6cfeb7a08f52935ada4e037cc58 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Jan 2024 15:16:01 +0000 Subject: [PATCH 1054/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 800eb180..82598ff7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#896](https://github.com/PyThaiNLP/pythainlp/pull/896#issuecomment-1873212288) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#234](https://github.com/CartoonFan/lutris/pull/234#issuecomment-1873049098) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#172](https://github.com/TelebirrApp/TelebirrApp/pull/172#issuecomment-1873025069) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -4. 🗣 Commented on [#159](https://github.com/TelebirrApp/TelebirrApp/pull/159#issuecomment-1872980267) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/full-stack-fastapi-postgresql/pull/1#issuecomment-1872906319) in [tuhinmallick/full-stack-fastapi-postgresql](https://github.com/tuhinmallick/full-stack-fastapi-postgresql) -6. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -8. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) -10. 🗣 Commented on [#314](https://github.com/DeMarcoLab/fibsem/pull/314#issuecomment-1872466745) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +1. 🗣 Commented on [#197](https://github.com/TelebirrApp/TelebirrApp/pull/197#issuecomment-1873364072) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +2. 🗣 Commented on [#896](https://github.com/PyThaiNLP/pythainlp/pull/896#issuecomment-1873212288) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#234](https://github.com/CartoonFan/lutris/pull/234#issuecomment-1873049098) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#172](https://github.com/TelebirrApp/TelebirrApp/pull/172#issuecomment-1873025069) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +5. 🗣 Commented on [#159](https://github.com/TelebirrApp/TelebirrApp/pull/159#issuecomment-1872980267) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/full-stack-fastapi-postgresql/pull/1#issuecomment-1872906319) in [tuhinmallick/full-stack-fastapi-postgresql](https://github.com/tuhinmallick/full-stack-fastapi-postgresql) +7. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +9. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) From 8ffa0ca884d61a383eaafcb1dec7989f5dbe4934 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Jan 2024 16:20:23 +0000 Subject: [PATCH 1055/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 82598ff7..6460b8a4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#197](https://github.com/TelebirrApp/TelebirrApp/pull/197#issuecomment-1873364072) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -2. 🗣 Commented on [#896](https://github.com/PyThaiNLP/pythainlp/pull/896#issuecomment-1873212288) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#234](https://github.com/CartoonFan/lutris/pull/234#issuecomment-1873049098) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#172](https://github.com/TelebirrApp/TelebirrApp/pull/172#issuecomment-1873025069) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -5. 🗣 Commented on [#159](https://github.com/TelebirrApp/TelebirrApp/pull/159#issuecomment-1872980267) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/full-stack-fastapi-postgresql/pull/1#issuecomment-1872906319) in [tuhinmallick/full-stack-fastapi-postgresql](https://github.com/tuhinmallick/full-stack-fastapi-postgresql) -7. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -9. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/mixtral-offloading/pull/1#issuecomment-1872480701) in [tuhinmallick/mixtral-offloading](https://github.com/tuhinmallick/mixtral-offloading) +1. 🗣 Commented on [#200](https://github.com/TelebirrApp/TelebirrApp/pull/200#issuecomment-1873374809) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +2. 🗣 Commented on [#197](https://github.com/TelebirrApp/TelebirrApp/pull/197#issuecomment-1873364072) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +3. 🗣 Commented on [#896](https://github.com/PyThaiNLP/pythainlp/pull/896#issuecomment-1873212288) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#234](https://github.com/CartoonFan/lutris/pull/234#issuecomment-1873049098) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#172](https://github.com/TelebirrApp/TelebirrApp/pull/172#issuecomment-1873025069) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +6. 🗣 Commented on [#159](https://github.com/TelebirrApp/TelebirrApp/pull/159#issuecomment-1872980267) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +7. 🗣 Commented on [#1](https://github.com/tuhinmallick/full-stack-fastapi-postgresql/pull/1#issuecomment-1872906319) in [tuhinmallick/full-stack-fastapi-postgresql](https://github.com/tuhinmallick/full-stack-fastapi-postgresql) +8. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +10. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From d007eaceba12be3fa6678dd5c355d88f0f408712 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Jan 2024 17:14:22 +0000 Subject: [PATCH 1056/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6460b8a4..d1477877 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#200](https://github.com/TelebirrApp/TelebirrApp/pull/200#issuecomment-1873374809) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -2. 🗣 Commented on [#197](https://github.com/TelebirrApp/TelebirrApp/pull/197#issuecomment-1873364072) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -3. 🗣 Commented on [#896](https://github.com/PyThaiNLP/pythainlp/pull/896#issuecomment-1873212288) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#234](https://github.com/CartoonFan/lutris/pull/234#issuecomment-1873049098) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#172](https://github.com/TelebirrApp/TelebirrApp/pull/172#issuecomment-1873025069) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -6. 🗣 Commented on [#159](https://github.com/TelebirrApp/TelebirrApp/pull/159#issuecomment-1872980267) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -7. 🗣 Commented on [#1](https://github.com/tuhinmallick/full-stack-fastapi-postgresql/pull/1#issuecomment-1872906319) in [tuhinmallick/full-stack-fastapi-postgresql](https://github.com/tuhinmallick/full-stack-fastapi-postgresql) -8. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -10. 🗣 Commented on [#232](https://github.com/CartoonFan/lutris/pull/232#issuecomment-1872502318) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#3](https://github.com/Borda/kaggle_image-segm/pull/3#issuecomment-1873400197) in [Borda/kaggle_image-segm](https://github.com/Borda/kaggle_image-segm) +2. 🗣 Commented on [#200](https://github.com/TelebirrApp/TelebirrApp/pull/200#issuecomment-1873374809) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +3. 🗣 Commented on [#197](https://github.com/TelebirrApp/TelebirrApp/pull/197#issuecomment-1873364072) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +4. 🗣 Commented on [#896](https://github.com/PyThaiNLP/pythainlp/pull/896#issuecomment-1873212288) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#234](https://github.com/CartoonFan/lutris/pull/234#issuecomment-1873049098) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#172](https://github.com/TelebirrApp/TelebirrApp/pull/172#issuecomment-1873025069) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +7. 🗣 Commented on [#159](https://github.com/TelebirrApp/TelebirrApp/pull/159#issuecomment-1872980267) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/full-stack-fastapi-postgresql/pull/1#issuecomment-1872906319) in [tuhinmallick/full-stack-fastapi-postgresql](https://github.com/tuhinmallick/full-stack-fastapi-postgresql) +9. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) From 5fdfbba6e80dbff385f2814c4101023f70f9275b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Jan 2024 17:37:02 +0000 Subject: [PATCH 1057/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d1477877..52bfe1d5 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3](https://github.com/Borda/kaggle_image-segm/pull/3#issuecomment-1873400197) in [Borda/kaggle_image-segm](https://github.com/Borda/kaggle_image-segm) -2. 🗣 Commented on [#200](https://github.com/TelebirrApp/TelebirrApp/pull/200#issuecomment-1873374809) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -3. 🗣 Commented on [#197](https://github.com/TelebirrApp/TelebirrApp/pull/197#issuecomment-1873364072) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -4. 🗣 Commented on [#896](https://github.com/PyThaiNLP/pythainlp/pull/896#issuecomment-1873212288) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#234](https://github.com/CartoonFan/lutris/pull/234#issuecomment-1873049098) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#172](https://github.com/TelebirrApp/TelebirrApp/pull/172#issuecomment-1873025069) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -7. 🗣 Commented on [#159](https://github.com/TelebirrApp/TelebirrApp/pull/159#issuecomment-1872980267) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/full-stack-fastapi-postgresql/pull/1#issuecomment-1872906319) in [tuhinmallick/full-stack-fastapi-postgresql](https://github.com/tuhinmallick/full-stack-fastapi-postgresql) -9. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#2032](https://github.com/rpm-software-management/dnf/pull/2032#issuecomment-1872571899) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +1. 🗣 Commented on [#86](https://github.com/kaulketh/ledpibot/pull/86#issuecomment-1873411998) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +2. 🗣 Commented on [#3](https://github.com/Borda/kaggle_image-segm/pull/3#issuecomment-1873400197) in [Borda/kaggle_image-segm](https://github.com/Borda/kaggle_image-segm) +3. 🗣 Commented on [#200](https://github.com/TelebirrApp/TelebirrApp/pull/200#issuecomment-1873374809) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +4. 🗣 Commented on [#197](https://github.com/TelebirrApp/TelebirrApp/pull/197#issuecomment-1873364072) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +5. 🗣 Commented on [#896](https://github.com/PyThaiNLP/pythainlp/pull/896#issuecomment-1873212288) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#234](https://github.com/CartoonFan/lutris/pull/234#issuecomment-1873049098) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#172](https://github.com/TelebirrApp/TelebirrApp/pull/172#issuecomment-1873025069) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +8. 🗣 Commented on [#159](https://github.com/TelebirrApp/TelebirrApp/pull/159#issuecomment-1872980267) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/full-stack-fastapi-postgresql/pull/1#issuecomment-1872906319) in [tuhinmallick/full-stack-fastapi-postgresql](https://github.com/tuhinmallick/full-stack-fastapi-postgresql) +10. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 489376d34e7652a95d24705607eb088809d0df3d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Jan 2024 19:12:48 +0000 Subject: [PATCH 1058/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 52bfe1d5..907b403f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#86](https://github.com/kaulketh/ledpibot/pull/86#issuecomment-1873411998) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) -2. 🗣 Commented on [#3](https://github.com/Borda/kaggle_image-segm/pull/3#issuecomment-1873400197) in [Borda/kaggle_image-segm](https://github.com/Borda/kaggle_image-segm) -3. 🗣 Commented on [#200](https://github.com/TelebirrApp/TelebirrApp/pull/200#issuecomment-1873374809) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -4. 🗣 Commented on [#197](https://github.com/TelebirrApp/TelebirrApp/pull/197#issuecomment-1873364072) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -5. 🗣 Commented on [#896](https://github.com/PyThaiNLP/pythainlp/pull/896#issuecomment-1873212288) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#234](https://github.com/CartoonFan/lutris/pull/234#issuecomment-1873049098) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#172](https://github.com/TelebirrApp/TelebirrApp/pull/172#issuecomment-1873025069) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -8. 🗣 Commented on [#159](https://github.com/TelebirrApp/TelebirrApp/pull/159#issuecomment-1872980267) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/full-stack-fastapi-postgresql/pull/1#issuecomment-1872906319) in [tuhinmallick/full-stack-fastapi-postgresql](https://github.com/tuhinmallick/full-stack-fastapi-postgresql) -10. 🗣 Commented on [#233](https://github.com/CartoonFan/lutris/pull/233#issuecomment-1872669115) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#675](https://github.com/OpenFreeEnergy/openfe/pull/675#issuecomment-1873433938) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#21667](https://github.com/spyder-ide/spyder/pull/21667#issuecomment-1873432940) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#86](https://github.com/kaulketh/ledpibot/pull/86#issuecomment-1873411998) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +4. 🗣 Commented on [#3](https://github.com/Borda/kaggle_image-segm/pull/3#issuecomment-1873400197) in [Borda/kaggle_image-segm](https://github.com/Borda/kaggle_image-segm) +5. 🗣 Commented on [#200](https://github.com/TelebirrApp/TelebirrApp/pull/200#issuecomment-1873374809) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +6. 🗣 Commented on [#197](https://github.com/TelebirrApp/TelebirrApp/pull/197#issuecomment-1873364072) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +7. 🗣 Commented on [#896](https://github.com/PyThaiNLP/pythainlp/pull/896#issuecomment-1873212288) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +8. 🗣 Commented on [#234](https://github.com/CartoonFan/lutris/pull/234#issuecomment-1873049098) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#172](https://github.com/TelebirrApp/TelebirrApp/pull/172#issuecomment-1873025069) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +10. 🗣 Commented on [#159](https://github.com/TelebirrApp/TelebirrApp/pull/159#issuecomment-1872980267) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) From 369b98828a23c244e3b8539e8a243ea62bdfc1d8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 01:11:15 +0000 Subject: [PATCH 1059/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 907b403f..3a516123 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#675](https://github.com/OpenFreeEnergy/openfe/pull/675#issuecomment-1873433938) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#21667](https://github.com/spyder-ide/spyder/pull/21667#issuecomment-1873432940) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#86](https://github.com/kaulketh/ledpibot/pull/86#issuecomment-1873411998) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) -4. 🗣 Commented on [#3](https://github.com/Borda/kaggle_image-segm/pull/3#issuecomment-1873400197) in [Borda/kaggle_image-segm](https://github.com/Borda/kaggle_image-segm) -5. 🗣 Commented on [#200](https://github.com/TelebirrApp/TelebirrApp/pull/200#issuecomment-1873374809) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -6. 🗣 Commented on [#197](https://github.com/TelebirrApp/TelebirrApp/pull/197#issuecomment-1873364072) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -7. 🗣 Commented on [#896](https://github.com/PyThaiNLP/pythainlp/pull/896#issuecomment-1873212288) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -8. 🗣 Commented on [#234](https://github.com/CartoonFan/lutris/pull/234#issuecomment-1873049098) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#172](https://github.com/TelebirrApp/TelebirrApp/pull/172#issuecomment-1873025069) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -10. 🗣 Commented on [#159](https://github.com/TelebirrApp/TelebirrApp/pull/159#issuecomment-1872980267) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +1. 🗣 Commented on [#119](https://github.com/Dog-Face-Development/PyWorkout/pull/119#issuecomment-1873531177) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +2. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/130#issuecomment-1873529596) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +3. 🗣 Commented on [#675](https://github.com/OpenFreeEnergy/openfe/pull/675#issuecomment-1873433938) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#21667](https://github.com/spyder-ide/spyder/pull/21667#issuecomment-1873432940) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#86](https://github.com/kaulketh/ledpibot/pull/86#issuecomment-1873411998) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +6. 🗣 Commented on [#3](https://github.com/Borda/kaggle_image-segm/pull/3#issuecomment-1873400197) in [Borda/kaggle_image-segm](https://github.com/Borda/kaggle_image-segm) +7. 🗣 Commented on [#200](https://github.com/TelebirrApp/TelebirrApp/pull/200#issuecomment-1873374809) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +8. 🗣 Commented on [#197](https://github.com/TelebirrApp/TelebirrApp/pull/197#issuecomment-1873364072) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +9. 🗣 Commented on [#896](https://github.com/PyThaiNLP/pythainlp/pull/896#issuecomment-1873212288) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +10. 🗣 Commented on [#234](https://github.com/CartoonFan/lutris/pull/234#issuecomment-1873049098) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 6a2668077eea8dd8633786e10de9f146064a13e0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 02:10:35 +0000 Subject: [PATCH 1060/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3a516123..be6096a0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#119](https://github.com/Dog-Face-Development/PyWorkout/pull/119#issuecomment-1873531177) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -2. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/130#issuecomment-1873529596) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -3. 🗣 Commented on [#675](https://github.com/OpenFreeEnergy/openfe/pull/675#issuecomment-1873433938) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#21667](https://github.com/spyder-ide/spyder/pull/21667#issuecomment-1873432940) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#86](https://github.com/kaulketh/ledpibot/pull/86#issuecomment-1873411998) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) -6. 🗣 Commented on [#3](https://github.com/Borda/kaggle_image-segm/pull/3#issuecomment-1873400197) in [Borda/kaggle_image-segm](https://github.com/Borda/kaggle_image-segm) -7. 🗣 Commented on [#200](https://github.com/TelebirrApp/TelebirrApp/pull/200#issuecomment-1873374809) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -8. 🗣 Commented on [#197](https://github.com/TelebirrApp/TelebirrApp/pull/197#issuecomment-1873364072) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -9. 🗣 Commented on [#896](https://github.com/PyThaiNLP/pythainlp/pull/896#issuecomment-1873212288) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -10. 🗣 Commented on [#234](https://github.com/CartoonFan/lutris/pull/234#issuecomment-1873049098) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#235](https://github.com/CartoonFan/lutris/pull/235#issuecomment-1873558275) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#119](https://github.com/Dog-Face-Development/PyWorkout/pull/119#issuecomment-1873531177) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +3. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/130#issuecomment-1873529596) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +4. 🗣 Commented on [#675](https://github.com/OpenFreeEnergy/openfe/pull/675#issuecomment-1873433938) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#21667](https://github.com/spyder-ide/spyder/pull/21667#issuecomment-1873432940) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#86](https://github.com/kaulketh/ledpibot/pull/86#issuecomment-1873411998) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +7. 🗣 Commented on [#3](https://github.com/Borda/kaggle_image-segm/pull/3#issuecomment-1873400197) in [Borda/kaggle_image-segm](https://github.com/Borda/kaggle_image-segm) +8. 🗣 Commented on [#200](https://github.com/TelebirrApp/TelebirrApp/pull/200#issuecomment-1873374809) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +9. 🗣 Commented on [#197](https://github.com/TelebirrApp/TelebirrApp/pull/197#issuecomment-1873364072) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +10. 🗣 Commented on [#896](https://github.com/PyThaiNLP/pythainlp/pull/896#issuecomment-1873212288) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) From 73fc275ccc1c5de371f18f3b909fe4fc814fc1ff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 05:15:47 +0000 Subject: [PATCH 1061/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index be6096a0..a120405a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#235](https://github.com/CartoonFan/lutris/pull/235#issuecomment-1873558275) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#119](https://github.com/Dog-Face-Development/PyWorkout/pull/119#issuecomment-1873531177) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -3. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/130#issuecomment-1873529596) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -4. 🗣 Commented on [#675](https://github.com/OpenFreeEnergy/openfe/pull/675#issuecomment-1873433938) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#21667](https://github.com/spyder-ide/spyder/pull/21667#issuecomment-1873432940) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#86](https://github.com/kaulketh/ledpibot/pull/86#issuecomment-1873411998) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) -7. 🗣 Commented on [#3](https://github.com/Borda/kaggle_image-segm/pull/3#issuecomment-1873400197) in [Borda/kaggle_image-segm](https://github.com/Borda/kaggle_image-segm) -8. 🗣 Commented on [#200](https://github.com/TelebirrApp/TelebirrApp/pull/200#issuecomment-1873374809) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -9. 🗣 Commented on [#197](https://github.com/TelebirrApp/TelebirrApp/pull/197#issuecomment-1873364072) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -10. 🗣 Commented on [#896](https://github.com/PyThaiNLP/pythainlp/pull/896#issuecomment-1873212288) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +1. 🗣 Commented on [#204](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/204#issuecomment-1873617605) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +2. 🗣 Commented on [#235](https://github.com/CartoonFan/lutris/pull/235#issuecomment-1873558275) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#119](https://github.com/Dog-Face-Development/PyWorkout/pull/119#issuecomment-1873531177) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +4. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/130#issuecomment-1873529596) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +5. 🗣 Commented on [#675](https://github.com/OpenFreeEnergy/openfe/pull/675#issuecomment-1873433938) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#21667](https://github.com/spyder-ide/spyder/pull/21667#issuecomment-1873432940) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#86](https://github.com/kaulketh/ledpibot/pull/86#issuecomment-1873411998) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +8. 🗣 Commented on [#3](https://github.com/Borda/kaggle_image-segm/pull/3#issuecomment-1873400197) in [Borda/kaggle_image-segm](https://github.com/Borda/kaggle_image-segm) +9. 🗣 Commented on [#200](https://github.com/TelebirrApp/TelebirrApp/pull/200#issuecomment-1873374809) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +10. 🗣 Commented on [#197](https://github.com/TelebirrApp/TelebirrApp/pull/197#issuecomment-1873364072) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) From 9a177a8c76de4f01cb4bbad4906353bc9fef58e3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 05:37:01 +0000 Subject: [PATCH 1062/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a120405a..9f95c4b7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#204](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/204#issuecomment-1873617605) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -2. 🗣 Commented on [#235](https://github.com/CartoonFan/lutris/pull/235#issuecomment-1873558275) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#119](https://github.com/Dog-Face-Development/PyWorkout/pull/119#issuecomment-1873531177) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -4. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/130#issuecomment-1873529596) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -5. 🗣 Commented on [#675](https://github.com/OpenFreeEnergy/openfe/pull/675#issuecomment-1873433938) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#21667](https://github.com/spyder-ide/spyder/pull/21667#issuecomment-1873432940) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#86](https://github.com/kaulketh/ledpibot/pull/86#issuecomment-1873411998) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) -8. 🗣 Commented on [#3](https://github.com/Borda/kaggle_image-segm/pull/3#issuecomment-1873400197) in [Borda/kaggle_image-segm](https://github.com/Borda/kaggle_image-segm) -9. 🗣 Commented on [#200](https://github.com/TelebirrApp/TelebirrApp/pull/200#issuecomment-1873374809) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -10. 🗣 Commented on [#197](https://github.com/TelebirrApp/TelebirrApp/pull/197#issuecomment-1873364072) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +1. 🗣 Commented on [#9114](https://github.com/statsmodels/statsmodels/pull/9114#issuecomment-1873631200) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +2. 🗣 Commented on [#204](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/204#issuecomment-1873617605) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +3. 🗣 Commented on [#235](https://github.com/CartoonFan/lutris/pull/235#issuecomment-1873558275) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#119](https://github.com/Dog-Face-Development/PyWorkout/pull/119#issuecomment-1873531177) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +5. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/130#issuecomment-1873529596) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +6. 🗣 Commented on [#675](https://github.com/OpenFreeEnergy/openfe/pull/675#issuecomment-1873433938) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#21667](https://github.com/spyder-ide/spyder/pull/21667#issuecomment-1873432940) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#86](https://github.com/kaulketh/ledpibot/pull/86#issuecomment-1873411998) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +9. 🗣 Commented on [#3](https://github.com/Borda/kaggle_image-segm/pull/3#issuecomment-1873400197) in [Borda/kaggle_image-segm](https://github.com/Borda/kaggle_image-segm) +10. 🗣 Commented on [#200](https://github.com/TelebirrApp/TelebirrApp/pull/200#issuecomment-1873374809) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) From 88070c511d921fa8d88c8f51328457e24392fa29 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 06:38:08 +0000 Subject: [PATCH 1063/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9f95c4b7..1a5d6826 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#9114](https://github.com/statsmodels/statsmodels/pull/9114#issuecomment-1873631200) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -2. 🗣 Commented on [#204](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/204#issuecomment-1873617605) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -3. 🗣 Commented on [#235](https://github.com/CartoonFan/lutris/pull/235#issuecomment-1873558275) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#119](https://github.com/Dog-Face-Development/PyWorkout/pull/119#issuecomment-1873531177) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -5. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/130#issuecomment-1873529596) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -6. 🗣 Commented on [#675](https://github.com/OpenFreeEnergy/openfe/pull/675#issuecomment-1873433938) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#21667](https://github.com/spyder-ide/spyder/pull/21667#issuecomment-1873432940) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#86](https://github.com/kaulketh/ledpibot/pull/86#issuecomment-1873411998) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) -9. 🗣 Commented on [#3](https://github.com/Borda/kaggle_image-segm/pull/3#issuecomment-1873400197) in [Borda/kaggle_image-segm](https://github.com/Borda/kaggle_image-segm) -10. 🗣 Commented on [#200](https://github.com/TelebirrApp/TelebirrApp/pull/200#issuecomment-1873374809) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +1. 🗣 Commented on [#205](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/205#issuecomment-1873657177) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +2. 🗣 Commented on [#9114](https://github.com/statsmodels/statsmodels/pull/9114#issuecomment-1873631200) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#204](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/204#issuecomment-1873617605) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +4. 🗣 Commented on [#235](https://github.com/CartoonFan/lutris/pull/235#issuecomment-1873558275) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#119](https://github.com/Dog-Face-Development/PyWorkout/pull/119#issuecomment-1873531177) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +6. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/130#issuecomment-1873529596) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +7. 🗣 Commented on [#675](https://github.com/OpenFreeEnergy/openfe/pull/675#issuecomment-1873433938) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#21667](https://github.com/spyder-ide/spyder/pull/21667#issuecomment-1873432940) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#86](https://github.com/kaulketh/ledpibot/pull/86#issuecomment-1873411998) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +10. 🗣 Commented on [#3](https://github.com/Borda/kaggle_image-segm/pull/3#issuecomment-1873400197) in [Borda/kaggle_image-segm](https://github.com/Borda/kaggle_image-segm) From bc36a3bb7ae734bbf844d45f989fb0a31b5e41fb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 11:37:06 +0000 Subject: [PATCH 1064/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1a5d6826..1d58c901 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#205](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/205#issuecomment-1873657177) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -2. 🗣 Commented on [#9114](https://github.com/statsmodels/statsmodels/pull/9114#issuecomment-1873631200) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#204](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/204#issuecomment-1873617605) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -4. 🗣 Commented on [#235](https://github.com/CartoonFan/lutris/pull/235#issuecomment-1873558275) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#119](https://github.com/Dog-Face-Development/PyWorkout/pull/119#issuecomment-1873531177) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -6. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/130#issuecomment-1873529596) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -7. 🗣 Commented on [#675](https://github.com/OpenFreeEnergy/openfe/pull/675#issuecomment-1873433938) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#21667](https://github.com/spyder-ide/spyder/pull/21667#issuecomment-1873432940) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#86](https://github.com/kaulketh/ledpibot/pull/86#issuecomment-1873411998) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) -10. 🗣 Commented on [#3](https://github.com/Borda/kaggle_image-segm/pull/3#issuecomment-1873400197) in [Borda/kaggle_image-segm](https://github.com/Borda/kaggle_image-segm) +1. 🗣 Commented on [#3](https://github.com/eastgenomics/prometheus/pull/3#issuecomment-1873910050) in [eastgenomics/prometheus](https://github.com/eastgenomics/prometheus) +2. 🗣 Commented on [#205](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/205#issuecomment-1873657177) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +3. 🗣 Commented on [#9114](https://github.com/statsmodels/statsmodels/pull/9114#issuecomment-1873631200) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +4. 🗣 Commented on [#204](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/204#issuecomment-1873617605) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +5. 🗣 Commented on [#235](https://github.com/CartoonFan/lutris/pull/235#issuecomment-1873558275) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#119](https://github.com/Dog-Face-Development/PyWorkout/pull/119#issuecomment-1873531177) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +7. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/130#issuecomment-1873529596) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +8. 🗣 Commented on [#675](https://github.com/OpenFreeEnergy/openfe/pull/675#issuecomment-1873433938) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#21667](https://github.com/spyder-ide/spyder/pull/21667#issuecomment-1873432940) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#86](https://github.com/kaulketh/ledpibot/pull/86#issuecomment-1873411998) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) From 00f4eabe72a205ef914f138b343e4277b77445dc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 13:18:53 +0000 Subject: [PATCH 1065/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1d58c901..f232ba73 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3](https://github.com/eastgenomics/prometheus/pull/3#issuecomment-1873910050) in [eastgenomics/prometheus](https://github.com/eastgenomics/prometheus) -2. 🗣 Commented on [#205](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/205#issuecomment-1873657177) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -3. 🗣 Commented on [#9114](https://github.com/statsmodels/statsmodels/pull/9114#issuecomment-1873631200) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -4. 🗣 Commented on [#204](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/204#issuecomment-1873617605) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -5. 🗣 Commented on [#235](https://github.com/CartoonFan/lutris/pull/235#issuecomment-1873558275) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#119](https://github.com/Dog-Face-Development/PyWorkout/pull/119#issuecomment-1873531177) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -7. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/130#issuecomment-1873529596) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -8. 🗣 Commented on [#675](https://github.com/OpenFreeEnergy/openfe/pull/675#issuecomment-1873433938) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#21667](https://github.com/spyder-ide/spyder/pull/21667#issuecomment-1873432940) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#86](https://github.com/kaulketh/ledpibot/pull/86#issuecomment-1873411998) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +1. 🗣 Commented on [#704](https://github.com/bashtage/arch/pull/704#issuecomment-1874015383) in [bashtage/arch](https://github.com/bashtage/arch) +2. 🗣 Commented on [#3](https://github.com/eastgenomics/prometheus/pull/3#issuecomment-1873910050) in [eastgenomics/prometheus](https://github.com/eastgenomics/prometheus) +3. 🗣 Commented on [#205](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/205#issuecomment-1873657177) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +4. 🗣 Commented on [#9114](https://github.com/statsmodels/statsmodels/pull/9114#issuecomment-1873631200) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#204](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/204#issuecomment-1873617605) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +6. 🗣 Commented on [#235](https://github.com/CartoonFan/lutris/pull/235#issuecomment-1873558275) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#119](https://github.com/Dog-Face-Development/PyWorkout/pull/119#issuecomment-1873531177) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +8. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/130#issuecomment-1873529596) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +9. 🗣 Commented on [#675](https://github.com/OpenFreeEnergy/openfe/pull/675#issuecomment-1873433938) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#21667](https://github.com/spyder-ide/spyder/pull/21667#issuecomment-1873432940) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 0d9bf535d465987a3a1749c6c9b8f09ab5e066b4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 16:19:56 +0000 Subject: [PATCH 1066/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f232ba73..f78cf4a6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#704](https://github.com/bashtage/arch/pull/704#issuecomment-1874015383) in [bashtage/arch](https://github.com/bashtage/arch) -2. 🗣 Commented on [#3](https://github.com/eastgenomics/prometheus/pull/3#issuecomment-1873910050) in [eastgenomics/prometheus](https://github.com/eastgenomics/prometheus) -3. 🗣 Commented on [#205](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/205#issuecomment-1873657177) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -4. 🗣 Commented on [#9114](https://github.com/statsmodels/statsmodels/pull/9114#issuecomment-1873631200) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -5. 🗣 Commented on [#204](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/204#issuecomment-1873617605) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -6. 🗣 Commented on [#235](https://github.com/CartoonFan/lutris/pull/235#issuecomment-1873558275) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#119](https://github.com/Dog-Face-Development/PyWorkout/pull/119#issuecomment-1873531177) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -8. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/130#issuecomment-1873529596) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -9. 🗣 Commented on [#675](https://github.com/OpenFreeEnergy/openfe/pull/675#issuecomment-1873433938) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#21667](https://github.com/spyder-ide/spyder/pull/21667#issuecomment-1873432940) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#21669](https://github.com/spyder-ide/spyder/pull/21669#issuecomment-1874227270) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#704](https://github.com/bashtage/arch/pull/704#issuecomment-1874015383) in [bashtage/arch](https://github.com/bashtage/arch) +3. 🗣 Commented on [#3](https://github.com/eastgenomics/prometheus/pull/3#issuecomment-1873910050) in [eastgenomics/prometheus](https://github.com/eastgenomics/prometheus) +4. 🗣 Commented on [#205](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/205#issuecomment-1873657177) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +5. 🗣 Commented on [#9114](https://github.com/statsmodels/statsmodels/pull/9114#issuecomment-1873631200) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +6. 🗣 Commented on [#204](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/204#issuecomment-1873617605) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +7. 🗣 Commented on [#235](https://github.com/CartoonFan/lutris/pull/235#issuecomment-1873558275) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#119](https://github.com/Dog-Face-Development/PyWorkout/pull/119#issuecomment-1873531177) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +9. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/130#issuecomment-1873529596) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) +10. 🗣 Commented on [#675](https://github.com/OpenFreeEnergy/openfe/pull/675#issuecomment-1873433938) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 6e6d90f4713465e9d1ff8b1b70df2978ed878980 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 18:20:52 +0000 Subject: [PATCH 1067/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f78cf4a6..eb60b52e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21669](https://github.com/spyder-ide/spyder/pull/21669#issuecomment-1874227270) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#704](https://github.com/bashtage/arch/pull/704#issuecomment-1874015383) in [bashtage/arch](https://github.com/bashtage/arch) -3. 🗣 Commented on [#3](https://github.com/eastgenomics/prometheus/pull/3#issuecomment-1873910050) in [eastgenomics/prometheus](https://github.com/eastgenomics/prometheus) -4. 🗣 Commented on [#205](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/205#issuecomment-1873657177) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -5. 🗣 Commented on [#9114](https://github.com/statsmodels/statsmodels/pull/9114#issuecomment-1873631200) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -6. 🗣 Commented on [#204](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/204#issuecomment-1873617605) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -7. 🗣 Commented on [#235](https://github.com/CartoonFan/lutris/pull/235#issuecomment-1873558275) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#119](https://github.com/Dog-Face-Development/PyWorkout/pull/119#issuecomment-1873531177) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) -9. 🗣 Commented on [#130](https://github.com/Dog-Face-Development/LEGO-Block-Creator/pull/130#issuecomment-1873529596) in [Dog-Face-Development/LEGO-Block-Creator](https://github.com/Dog-Face-Development/LEGO-Block-Creator) -10. 🗣 Commented on [#675](https://github.com/OpenFreeEnergy/openfe/pull/675#issuecomment-1873433938) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#358](https://github.com/MDAnalysis/UserGuide/pull/358#issuecomment-1874342099) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) +2. 🗣 Commented on [#3025](https://github.com/dipy/dipy/pull/3025#issuecomment-1874337900) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#21669](https://github.com/spyder-ide/spyder/pull/21669#issuecomment-1874227270) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#704](https://github.com/bashtage/arch/pull/704#issuecomment-1874015383) in [bashtage/arch](https://github.com/bashtage/arch) +5. 🗣 Commented on [#3](https://github.com/eastgenomics/prometheus/pull/3#issuecomment-1873910050) in [eastgenomics/prometheus](https://github.com/eastgenomics/prometheus) +6. 🗣 Commented on [#205](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/205#issuecomment-1873657177) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +7. 🗣 Commented on [#9114](https://github.com/statsmodels/statsmodels/pull/9114#issuecomment-1873631200) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +8. 🗣 Commented on [#204](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/204#issuecomment-1873617605) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +9. 🗣 Commented on [#235](https://github.com/CartoonFan/lutris/pull/235#issuecomment-1873558275) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#119](https://github.com/Dog-Face-Development/PyWorkout/pull/119#issuecomment-1873531177) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) From 82524caa91e415b231f9bbeb700b87c4dd6361b7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 19:12:54 +0000 Subject: [PATCH 1068/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index eb60b52e..aedb8b3f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#358](https://github.com/MDAnalysis/UserGuide/pull/358#issuecomment-1874342099) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) -2. 🗣 Commented on [#3025](https://github.com/dipy/dipy/pull/3025#issuecomment-1874337900) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#21669](https://github.com/spyder-ide/spyder/pull/21669#issuecomment-1874227270) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#704](https://github.com/bashtage/arch/pull/704#issuecomment-1874015383) in [bashtage/arch](https://github.com/bashtage/arch) -5. 🗣 Commented on [#3](https://github.com/eastgenomics/prometheus/pull/3#issuecomment-1873910050) in [eastgenomics/prometheus](https://github.com/eastgenomics/prometheus) -6. 🗣 Commented on [#205](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/205#issuecomment-1873657177) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -7. 🗣 Commented on [#9114](https://github.com/statsmodels/statsmodels/pull/9114#issuecomment-1873631200) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -8. 🗣 Commented on [#204](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/204#issuecomment-1873617605) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -9. 🗣 Commented on [#235](https://github.com/CartoonFan/lutris/pull/235#issuecomment-1873558275) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#119](https://github.com/Dog-Face-Development/PyWorkout/pull/119#issuecomment-1873531177) in [Dog-Face-Development/PyWorkout](https://github.com/Dog-Face-Development/PyWorkout) +1. 🗣 Commented on [#238](https://github.com/TelebirrApp/TelebirrApp/pull/238#issuecomment-1874404686) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +2. 🗣 Commented on [#358](https://github.com/MDAnalysis/UserGuide/pull/358#issuecomment-1874342099) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) +3. 🗣 Commented on [#3025](https://github.com/dipy/dipy/pull/3025#issuecomment-1874337900) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#21669](https://github.com/spyder-ide/spyder/pull/21669#issuecomment-1874227270) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#704](https://github.com/bashtage/arch/pull/704#issuecomment-1874015383) in [bashtage/arch](https://github.com/bashtage/arch) +6. 🗣 Commented on [#3](https://github.com/eastgenomics/prometheus/pull/3#issuecomment-1873910050) in [eastgenomics/prometheus](https://github.com/eastgenomics/prometheus) +7. 🗣 Commented on [#205](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/205#issuecomment-1873657177) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +8. 🗣 Commented on [#9114](https://github.com/statsmodels/statsmodels/pull/9114#issuecomment-1873631200) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +9. 🗣 Commented on [#204](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/204#issuecomment-1873617605) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +10. 🗣 Commented on [#235](https://github.com/CartoonFan/lutris/pull/235#issuecomment-1873558275) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 2d0ed5e784b35f6be9645132a0cca468c4379427 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 19:37:17 +0000 Subject: [PATCH 1069/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index aedb8b3f..8c2ec037 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#238](https://github.com/TelebirrApp/TelebirrApp/pull/238#issuecomment-1874404686) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -2. 🗣 Commented on [#358](https://github.com/MDAnalysis/UserGuide/pull/358#issuecomment-1874342099) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) -3. 🗣 Commented on [#3025](https://github.com/dipy/dipy/pull/3025#issuecomment-1874337900) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#21669](https://github.com/spyder-ide/spyder/pull/21669#issuecomment-1874227270) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#704](https://github.com/bashtage/arch/pull/704#issuecomment-1874015383) in [bashtage/arch](https://github.com/bashtage/arch) -6. 🗣 Commented on [#3](https://github.com/eastgenomics/prometheus/pull/3#issuecomment-1873910050) in [eastgenomics/prometheus](https://github.com/eastgenomics/prometheus) -7. 🗣 Commented on [#205](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/205#issuecomment-1873657177) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -8. 🗣 Commented on [#9114](https://github.com/statsmodels/statsmodels/pull/9114#issuecomment-1873631200) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -9. 🗣 Commented on [#204](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/204#issuecomment-1873617605) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -10. 🗣 Commented on [#235](https://github.com/CartoonFan/lutris/pull/235#issuecomment-1873558275) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#240](https://github.com/TelebirrApp/TelebirrApp/pull/240#issuecomment-1874454660) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +2. 🗣 Commented on [#423](https://github.com/manoharan-lab/holopy/pull/423#issuecomment-1874442264) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +3. 🗣 Commented on [#238](https://github.com/TelebirrApp/TelebirrApp/pull/238#issuecomment-1874404686) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +4. 🗣 Commented on [#358](https://github.com/MDAnalysis/UserGuide/pull/358#issuecomment-1874342099) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) +5. 🗣 Commented on [#3025](https://github.com/dipy/dipy/pull/3025#issuecomment-1874337900) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#21669](https://github.com/spyder-ide/spyder/pull/21669#issuecomment-1874227270) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#704](https://github.com/bashtage/arch/pull/704#issuecomment-1874015383) in [bashtage/arch](https://github.com/bashtage/arch) +8. 🗣 Commented on [#3](https://github.com/eastgenomics/prometheus/pull/3#issuecomment-1873910050) in [eastgenomics/prometheus](https://github.com/eastgenomics/prometheus) +9. 🗣 Commented on [#205](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/205#issuecomment-1873657177) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +10. 🗣 Commented on [#9114](https://github.com/statsmodels/statsmodels/pull/9114#issuecomment-1873631200) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) From f72955e720820d43df819d27453cbe2f90ae5721 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 20:37:16 +0000 Subject: [PATCH 1070/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8c2ec037..91b38326 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#240](https://github.com/TelebirrApp/TelebirrApp/pull/240#issuecomment-1874454660) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -2. 🗣 Commented on [#423](https://github.com/manoharan-lab/holopy/pull/423#issuecomment-1874442264) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -3. 🗣 Commented on [#238](https://github.com/TelebirrApp/TelebirrApp/pull/238#issuecomment-1874404686) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -4. 🗣 Commented on [#358](https://github.com/MDAnalysis/UserGuide/pull/358#issuecomment-1874342099) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) -5. 🗣 Commented on [#3025](https://github.com/dipy/dipy/pull/3025#issuecomment-1874337900) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#21669](https://github.com/spyder-ide/spyder/pull/21669#issuecomment-1874227270) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#704](https://github.com/bashtage/arch/pull/704#issuecomment-1874015383) in [bashtage/arch](https://github.com/bashtage/arch) -8. 🗣 Commented on [#3](https://github.com/eastgenomics/prometheus/pull/3#issuecomment-1873910050) in [eastgenomics/prometheus](https://github.com/eastgenomics/prometheus) -9. 🗣 Commented on [#205](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/205#issuecomment-1873657177) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -10. 🗣 Commented on [#9114](https://github.com/statsmodels/statsmodels/pull/9114#issuecomment-1873631200) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +1. 🗣 Commented on [#101](https://github.com/aimclub/BAMT/pull/101#issuecomment-1874519991) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +2. 🗣 Commented on [#240](https://github.com/TelebirrApp/TelebirrApp/pull/240#issuecomment-1874454660) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +3. 🗣 Commented on [#423](https://github.com/manoharan-lab/holopy/pull/423#issuecomment-1874442264) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +4. 🗣 Commented on [#238](https://github.com/TelebirrApp/TelebirrApp/pull/238#issuecomment-1874404686) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +5. 🗣 Commented on [#358](https://github.com/MDAnalysis/UserGuide/pull/358#issuecomment-1874342099) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) +6. 🗣 Commented on [#3025](https://github.com/dipy/dipy/pull/3025#issuecomment-1874337900) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#21669](https://github.com/spyder-ide/spyder/pull/21669#issuecomment-1874227270) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#704](https://github.com/bashtage/arch/pull/704#issuecomment-1874015383) in [bashtage/arch](https://github.com/bashtage/arch) +9. 🗣 Commented on [#3](https://github.com/eastgenomics/prometheus/pull/3#issuecomment-1873910050) in [eastgenomics/prometheus](https://github.com/eastgenomics/prometheus) +10. 🗣 Commented on [#205](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/205#issuecomment-1873657177) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) From e9816532125382bb04ecdd939701e5335b261050 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 22:37:25 +0000 Subject: [PATCH 1071/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 91b38326..3b50230e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#101](https://github.com/aimclub/BAMT/pull/101#issuecomment-1874519991) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -2. 🗣 Commented on [#240](https://github.com/TelebirrApp/TelebirrApp/pull/240#issuecomment-1874454660) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -3. 🗣 Commented on [#423](https://github.com/manoharan-lab/holopy/pull/423#issuecomment-1874442264) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -4. 🗣 Commented on [#238](https://github.com/TelebirrApp/TelebirrApp/pull/238#issuecomment-1874404686) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -5. 🗣 Commented on [#358](https://github.com/MDAnalysis/UserGuide/pull/358#issuecomment-1874342099) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) -6. 🗣 Commented on [#3025](https://github.com/dipy/dipy/pull/3025#issuecomment-1874337900) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#21669](https://github.com/spyder-ide/spyder/pull/21669#issuecomment-1874227270) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#704](https://github.com/bashtage/arch/pull/704#issuecomment-1874015383) in [bashtage/arch](https://github.com/bashtage/arch) -9. 🗣 Commented on [#3](https://github.com/eastgenomics/prometheus/pull/3#issuecomment-1873910050) in [eastgenomics/prometheus](https://github.com/eastgenomics/prometheus) -10. 🗣 Commented on [#205](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/205#issuecomment-1873657177) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +1. 🗣 Commented on [#46](https://github.com/tjhowse/modbus4mqtt/pull/46#issuecomment-1874632624) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +2. 🗣 Commented on [#101](https://github.com/aimclub/BAMT/pull/101#issuecomment-1874519991) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +3. 🗣 Commented on [#240](https://github.com/TelebirrApp/TelebirrApp/pull/240#issuecomment-1874454660) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +4. 🗣 Commented on [#423](https://github.com/manoharan-lab/holopy/pull/423#issuecomment-1874442264) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +5. 🗣 Commented on [#238](https://github.com/TelebirrApp/TelebirrApp/pull/238#issuecomment-1874404686) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +6. 🗣 Commented on [#358](https://github.com/MDAnalysis/UserGuide/pull/358#issuecomment-1874342099) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) +7. 🗣 Commented on [#3025](https://github.com/dipy/dipy/pull/3025#issuecomment-1874337900) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#21669](https://github.com/spyder-ide/spyder/pull/21669#issuecomment-1874227270) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#704](https://github.com/bashtage/arch/pull/704#issuecomment-1874015383) in [bashtage/arch](https://github.com/bashtage/arch) +10. 🗣 Commented on [#3](https://github.com/eastgenomics/prometheus/pull/3#issuecomment-1873910050) in [eastgenomics/prometheus](https://github.com/eastgenomics/prometheus) From dc4feb0b570671c61641461ff43fa4ee0749a96a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Jan 2024 01:12:47 +0000 Subject: [PATCH 1072/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3b50230e..f4c5bf8a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#46](https://github.com/tjhowse/modbus4mqtt/pull/46#issuecomment-1874632624) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) -2. 🗣 Commented on [#101](https://github.com/aimclub/BAMT/pull/101#issuecomment-1874519991) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -3. 🗣 Commented on [#240](https://github.com/TelebirrApp/TelebirrApp/pull/240#issuecomment-1874454660) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -4. 🗣 Commented on [#423](https://github.com/manoharan-lab/holopy/pull/423#issuecomment-1874442264) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -5. 🗣 Commented on [#238](https://github.com/TelebirrApp/TelebirrApp/pull/238#issuecomment-1874404686) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -6. 🗣 Commented on [#358](https://github.com/MDAnalysis/UserGuide/pull/358#issuecomment-1874342099) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) -7. 🗣 Commented on [#3025](https://github.com/dipy/dipy/pull/3025#issuecomment-1874337900) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#21669](https://github.com/spyder-ide/spyder/pull/21669#issuecomment-1874227270) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#704](https://github.com/bashtage/arch/pull/704#issuecomment-1874015383) in [bashtage/arch](https://github.com/bashtage/arch) -10. 🗣 Commented on [#3](https://github.com/eastgenomics/prometheus/pull/3#issuecomment-1873910050) in [eastgenomics/prometheus](https://github.com/eastgenomics/prometheus) +1. 🗣 Commented on [#247](https://github.com/NCAR/wrf_hydro_py/pull/247#issuecomment-1874718295) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) +2. 🗣 Commented on [#46](https://github.com/tjhowse/modbus4mqtt/pull/46#issuecomment-1874632624) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +3. 🗣 Commented on [#101](https://github.com/aimclub/BAMT/pull/101#issuecomment-1874519991) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +4. 🗣 Commented on [#240](https://github.com/TelebirrApp/TelebirrApp/pull/240#issuecomment-1874454660) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +5. 🗣 Commented on [#423](https://github.com/manoharan-lab/holopy/pull/423#issuecomment-1874442264) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +6. 🗣 Commented on [#238](https://github.com/TelebirrApp/TelebirrApp/pull/238#issuecomment-1874404686) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +7. 🗣 Commented on [#358](https://github.com/MDAnalysis/UserGuide/pull/358#issuecomment-1874342099) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) +8. 🗣 Commented on [#3025](https://github.com/dipy/dipy/pull/3025#issuecomment-1874337900) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#21669](https://github.com/spyder-ide/spyder/pull/21669#issuecomment-1874227270) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#704](https://github.com/bashtage/arch/pull/704#issuecomment-1874015383) in [bashtage/arch](https://github.com/bashtage/arch) From 5025171c48e713911e9f84e382e3915a5cbfe813 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Jan 2024 05:15:27 +0000 Subject: [PATCH 1073/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f4c5bf8a..fba259c2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#247](https://github.com/NCAR/wrf_hydro_py/pull/247#issuecomment-1874718295) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) -2. 🗣 Commented on [#46](https://github.com/tjhowse/modbus4mqtt/pull/46#issuecomment-1874632624) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) -3. 🗣 Commented on [#101](https://github.com/aimclub/BAMT/pull/101#issuecomment-1874519991) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -4. 🗣 Commented on [#240](https://github.com/TelebirrApp/TelebirrApp/pull/240#issuecomment-1874454660) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -5. 🗣 Commented on [#423](https://github.com/manoharan-lab/holopy/pull/423#issuecomment-1874442264) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -6. 🗣 Commented on [#238](https://github.com/TelebirrApp/TelebirrApp/pull/238#issuecomment-1874404686) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -7. 🗣 Commented on [#358](https://github.com/MDAnalysis/UserGuide/pull/358#issuecomment-1874342099) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) -8. 🗣 Commented on [#3025](https://github.com/dipy/dipy/pull/3025#issuecomment-1874337900) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#21669](https://github.com/spyder-ide/spyder/pull/21669#issuecomment-1874227270) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#704](https://github.com/bashtage/arch/pull/704#issuecomment-1874015383) in [bashtage/arch](https://github.com/bashtage/arch) +1. 🗣 Commented on [#236](https://github.com/CartoonFan/lutris/pull/236#issuecomment-1874843796) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#247](https://github.com/NCAR/wrf_hydro_py/pull/247#issuecomment-1874718295) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) +3. 🗣 Commented on [#46](https://github.com/tjhowse/modbus4mqtt/pull/46#issuecomment-1874632624) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +4. 🗣 Commented on [#101](https://github.com/aimclub/BAMT/pull/101#issuecomment-1874519991) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +5. 🗣 Commented on [#240](https://github.com/TelebirrApp/TelebirrApp/pull/240#issuecomment-1874454660) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +6. 🗣 Commented on [#423](https://github.com/manoharan-lab/holopy/pull/423#issuecomment-1874442264) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +7. 🗣 Commented on [#238](https://github.com/TelebirrApp/TelebirrApp/pull/238#issuecomment-1874404686) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +8. 🗣 Commented on [#358](https://github.com/MDAnalysis/UserGuide/pull/358#issuecomment-1874342099) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) +9. 🗣 Commented on [#3025](https://github.com/dipy/dipy/pull/3025#issuecomment-1874337900) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#21669](https://github.com/spyder-ide/spyder/pull/21669#issuecomment-1874227270) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 45de2769bdc4c3ebcbcf4620cc41a9f91f363e2d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Jan 2024 12:31:05 +0000 Subject: [PATCH 1074/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fba259c2..519e6921 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#236](https://github.com/CartoonFan/lutris/pull/236#issuecomment-1874843796) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#247](https://github.com/NCAR/wrf_hydro_py/pull/247#issuecomment-1874718295) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) -3. 🗣 Commented on [#46](https://github.com/tjhowse/modbus4mqtt/pull/46#issuecomment-1874632624) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) -4. 🗣 Commented on [#101](https://github.com/aimclub/BAMT/pull/101#issuecomment-1874519991) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -5. 🗣 Commented on [#240](https://github.com/TelebirrApp/TelebirrApp/pull/240#issuecomment-1874454660) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -6. 🗣 Commented on [#423](https://github.com/manoharan-lab/holopy/pull/423#issuecomment-1874442264) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -7. 🗣 Commented on [#238](https://github.com/TelebirrApp/TelebirrApp/pull/238#issuecomment-1874404686) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -8. 🗣 Commented on [#358](https://github.com/MDAnalysis/UserGuide/pull/358#issuecomment-1874342099) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) -9. 🗣 Commented on [#3025](https://github.com/dipy/dipy/pull/3025#issuecomment-1874337900) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#21669](https://github.com/spyder-ide/spyder/pull/21669#issuecomment-1874227270) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#171](https://github.com/eastgenomics/dias_batch_running/pull/171#issuecomment-1875286810) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#236](https://github.com/CartoonFan/lutris/pull/236#issuecomment-1874843796) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#247](https://github.com/NCAR/wrf_hydro_py/pull/247#issuecomment-1874718295) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) +4. 🗣 Commented on [#46](https://github.com/tjhowse/modbus4mqtt/pull/46#issuecomment-1874632624) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +5. 🗣 Commented on [#101](https://github.com/aimclub/BAMT/pull/101#issuecomment-1874519991) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +6. 🗣 Commented on [#240](https://github.com/TelebirrApp/TelebirrApp/pull/240#issuecomment-1874454660) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +7. 🗣 Commented on [#423](https://github.com/manoharan-lab/holopy/pull/423#issuecomment-1874442264) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +8. 🗣 Commented on [#238](https://github.com/TelebirrApp/TelebirrApp/pull/238#issuecomment-1874404686) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +9. 🗣 Commented on [#358](https://github.com/MDAnalysis/UserGuide/pull/358#issuecomment-1874342099) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) +10. 🗣 Commented on [#3025](https://github.com/dipy/dipy/pull/3025#issuecomment-1874337900) in [dipy/dipy](https://github.com/dipy/dipy) From 651718c251a33b0e5d35fc8576b5d871a690ccb4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Jan 2024 13:19:12 +0000 Subject: [PATCH 1075/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 519e6921..4abb4feb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#171](https://github.com/eastgenomics/dias_batch_running/pull/171#issuecomment-1875286810) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#236](https://github.com/CartoonFan/lutris/pull/236#issuecomment-1874843796) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#247](https://github.com/NCAR/wrf_hydro_py/pull/247#issuecomment-1874718295) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) -4. 🗣 Commented on [#46](https://github.com/tjhowse/modbus4mqtt/pull/46#issuecomment-1874632624) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) -5. 🗣 Commented on [#101](https://github.com/aimclub/BAMT/pull/101#issuecomment-1874519991) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -6. 🗣 Commented on [#240](https://github.com/TelebirrApp/TelebirrApp/pull/240#issuecomment-1874454660) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -7. 🗣 Commented on [#423](https://github.com/manoharan-lab/holopy/pull/423#issuecomment-1874442264) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -8. 🗣 Commented on [#238](https://github.com/TelebirrApp/TelebirrApp/pull/238#issuecomment-1874404686) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -9. 🗣 Commented on [#358](https://github.com/MDAnalysis/UserGuide/pull/358#issuecomment-1874342099) in [MDAnalysis/UserGuide](https://github.com/MDAnalysis/UserGuide) -10. 🗣 Commented on [#3025](https://github.com/dipy/dipy/pull/3025#issuecomment-1874337900) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#69](https://github.com/eastgenomics/eris/pull/69#issuecomment-1875358472) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#1644](https://github.com/HEXRD/hexrdgui/pull/1644#issuecomment-1875353754) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +3. 🗣 Commented on [#258](https://github.com/TelebirrApp/TelebirrApp/pull/258#issuecomment-1875301326) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +4. 🗣 Commented on [#171](https://github.com/eastgenomics/dias_batch_running/pull/171#issuecomment-1875286810) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#236](https://github.com/CartoonFan/lutris/pull/236#issuecomment-1874843796) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#247](https://github.com/NCAR/wrf_hydro_py/pull/247#issuecomment-1874718295) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) +7. 🗣 Commented on [#46](https://github.com/tjhowse/modbus4mqtt/pull/46#issuecomment-1874632624) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +8. 🗣 Commented on [#101](https://github.com/aimclub/BAMT/pull/101#issuecomment-1874519991) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +9. 🗣 Commented on [#240](https://github.com/TelebirrApp/TelebirrApp/pull/240#issuecomment-1874454660) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +10. 🗣 Commented on [#423](https://github.com/manoharan-lab/holopy/pull/423#issuecomment-1874442264) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) From 85af53d2d8eadadc532da9df2960fb4acf0d2757 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Jan 2024 17:13:52 +0000 Subject: [PATCH 1076/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4abb4feb..3f04a754 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#69](https://github.com/eastgenomics/eris/pull/69#issuecomment-1875358472) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#1644](https://github.com/HEXRD/hexrdgui/pull/1644#issuecomment-1875353754) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -3. 🗣 Commented on [#258](https://github.com/TelebirrApp/TelebirrApp/pull/258#issuecomment-1875301326) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -4. 🗣 Commented on [#171](https://github.com/eastgenomics/dias_batch_running/pull/171#issuecomment-1875286810) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#236](https://github.com/CartoonFan/lutris/pull/236#issuecomment-1874843796) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#247](https://github.com/NCAR/wrf_hydro_py/pull/247#issuecomment-1874718295) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) -7. 🗣 Commented on [#46](https://github.com/tjhowse/modbus4mqtt/pull/46#issuecomment-1874632624) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) -8. 🗣 Commented on [#101](https://github.com/aimclub/BAMT/pull/101#issuecomment-1874519991) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -9. 🗣 Commented on [#240](https://github.com/TelebirrApp/TelebirrApp/pull/240#issuecomment-1874454660) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -10. 🗣 Commented on [#423](https://github.com/manoharan-lab/holopy/pull/423#issuecomment-1874442264) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +1. 🗣 Commented on [#431](https://github.com/manoharan-lab/holopy/pull/431#issuecomment-1875668289) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +2. 🗣 Commented on [#69](https://github.com/eastgenomics/eris/pull/69#issuecomment-1875358472) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#1644](https://github.com/HEXRD/hexrdgui/pull/1644#issuecomment-1875353754) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +4. 🗣 Commented on [#258](https://github.com/TelebirrApp/TelebirrApp/pull/258#issuecomment-1875301326) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +5. 🗣 Commented on [#171](https://github.com/eastgenomics/dias_batch_running/pull/171#issuecomment-1875286810) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#236](https://github.com/CartoonFan/lutris/pull/236#issuecomment-1874843796) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#247](https://github.com/NCAR/wrf_hydro_py/pull/247#issuecomment-1874718295) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) +8. 🗣 Commented on [#46](https://github.com/tjhowse/modbus4mqtt/pull/46#issuecomment-1874632624) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +9. 🗣 Commented on [#101](https://github.com/aimclub/BAMT/pull/101#issuecomment-1874519991) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +10. 🗣 Commented on [#240](https://github.com/TelebirrApp/TelebirrApp/pull/240#issuecomment-1874454660) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) From b762cada5a1b60e8e86bb7eabe311fc4e100f213 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 04:37:47 +0000 Subject: [PATCH 1077/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3f04a754..dd3b8d2b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#431](https://github.com/manoharan-lab/holopy/pull/431#issuecomment-1875668289) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -2. 🗣 Commented on [#69](https://github.com/eastgenomics/eris/pull/69#issuecomment-1875358472) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#1644](https://github.com/HEXRD/hexrdgui/pull/1644#issuecomment-1875353754) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -4. 🗣 Commented on [#258](https://github.com/TelebirrApp/TelebirrApp/pull/258#issuecomment-1875301326) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -5. 🗣 Commented on [#171](https://github.com/eastgenomics/dias_batch_running/pull/171#issuecomment-1875286810) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#236](https://github.com/CartoonFan/lutris/pull/236#issuecomment-1874843796) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#247](https://github.com/NCAR/wrf_hydro_py/pull/247#issuecomment-1874718295) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) -8. 🗣 Commented on [#46](https://github.com/tjhowse/modbus4mqtt/pull/46#issuecomment-1874632624) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) -9. 🗣 Commented on [#101](https://github.com/aimclub/BAMT/pull/101#issuecomment-1874519991) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -10. 🗣 Commented on [#240](https://github.com/TelebirrApp/TelebirrApp/pull/240#issuecomment-1874454660) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +1. 🗣 Commented on [#207](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/207#issuecomment-1876293085) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +2. 🗣 Commented on [#431](https://github.com/manoharan-lab/holopy/pull/431#issuecomment-1875668289) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +3. 🗣 Commented on [#69](https://github.com/eastgenomics/eris/pull/69#issuecomment-1875358472) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#1644](https://github.com/HEXRD/hexrdgui/pull/1644#issuecomment-1875353754) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +5. 🗣 Commented on [#258](https://github.com/TelebirrApp/TelebirrApp/pull/258#issuecomment-1875301326) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +6. 🗣 Commented on [#171](https://github.com/eastgenomics/dias_batch_running/pull/171#issuecomment-1875286810) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#236](https://github.com/CartoonFan/lutris/pull/236#issuecomment-1874843796) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#247](https://github.com/NCAR/wrf_hydro_py/pull/247#issuecomment-1874718295) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) +9. 🗣 Commented on [#46](https://github.com/tjhowse/modbus4mqtt/pull/46#issuecomment-1874632624) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +10. 🗣 Commented on [#101](https://github.com/aimclub/BAMT/pull/101#issuecomment-1874519991) in [aimclub/BAMT](https://github.com/aimclub/BAMT) From 243caccbd99d6cdf47d69afe6892b8ae8ec2ac06 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 10:38:23 +0000 Subject: [PATCH 1078/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dd3b8d2b..d4f540e3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#207](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/207#issuecomment-1876293085) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -2. 🗣 Commented on [#431](https://github.com/manoharan-lab/holopy/pull/431#issuecomment-1875668289) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -3. 🗣 Commented on [#69](https://github.com/eastgenomics/eris/pull/69#issuecomment-1875358472) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#1644](https://github.com/HEXRD/hexrdgui/pull/1644#issuecomment-1875353754) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -5. 🗣 Commented on [#258](https://github.com/TelebirrApp/TelebirrApp/pull/258#issuecomment-1875301326) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -6. 🗣 Commented on [#171](https://github.com/eastgenomics/dias_batch_running/pull/171#issuecomment-1875286810) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#236](https://github.com/CartoonFan/lutris/pull/236#issuecomment-1874843796) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#247](https://github.com/NCAR/wrf_hydro_py/pull/247#issuecomment-1874718295) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) -9. 🗣 Commented on [#46](https://github.com/tjhowse/modbus4mqtt/pull/46#issuecomment-1874632624) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) -10. 🗣 Commented on [#101](https://github.com/aimclub/BAMT/pull/101#issuecomment-1874519991) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +1. 🗣 Commented on [#952](https://github.com/avaframe/AvaFrame/pull/952#issuecomment-1876857055) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#207](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/207#issuecomment-1876293085) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +3. 🗣 Commented on [#431](https://github.com/manoharan-lab/holopy/pull/431#issuecomment-1875668289) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +4. 🗣 Commented on [#69](https://github.com/eastgenomics/eris/pull/69#issuecomment-1875358472) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#1644](https://github.com/HEXRD/hexrdgui/pull/1644#issuecomment-1875353754) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +6. 🗣 Commented on [#258](https://github.com/TelebirrApp/TelebirrApp/pull/258#issuecomment-1875301326) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +7. 🗣 Commented on [#171](https://github.com/eastgenomics/dias_batch_running/pull/171#issuecomment-1875286810) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#236](https://github.com/CartoonFan/lutris/pull/236#issuecomment-1874843796) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#247](https://github.com/NCAR/wrf_hydro_py/pull/247#issuecomment-1874718295) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) +10. 🗣 Commented on [#46](https://github.com/tjhowse/modbus4mqtt/pull/46#issuecomment-1874632624) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) From 1ee5842f508f12f7d1791f442d074175fed8bc7c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 11:37:21 +0000 Subject: [PATCH 1079/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d4f540e3..94193c6b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#952](https://github.com/avaframe/AvaFrame/pull/952#issuecomment-1876857055) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#207](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/207#issuecomment-1876293085) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -3. 🗣 Commented on [#431](https://github.com/manoharan-lab/holopy/pull/431#issuecomment-1875668289) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -4. 🗣 Commented on [#69](https://github.com/eastgenomics/eris/pull/69#issuecomment-1875358472) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#1644](https://github.com/HEXRD/hexrdgui/pull/1644#issuecomment-1875353754) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -6. 🗣 Commented on [#258](https://github.com/TelebirrApp/TelebirrApp/pull/258#issuecomment-1875301326) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -7. 🗣 Commented on [#171](https://github.com/eastgenomics/dias_batch_running/pull/171#issuecomment-1875286810) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#236](https://github.com/CartoonFan/lutris/pull/236#issuecomment-1874843796) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#247](https://github.com/NCAR/wrf_hydro_py/pull/247#issuecomment-1874718295) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) -10. 🗣 Commented on [#46](https://github.com/tjhowse/modbus4mqtt/pull/46#issuecomment-1874632624) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/shopify-test-data-generator/pull/1#issuecomment-1876922619) in [tuhinmallick/shopify-test-data-generator](https://github.com/tuhinmallick/shopify-test-data-generator) +2. 🗣 Commented on [#952](https://github.com/avaframe/AvaFrame/pull/952#issuecomment-1876857055) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#207](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/207#issuecomment-1876293085) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +4. 🗣 Commented on [#431](https://github.com/manoharan-lab/holopy/pull/431#issuecomment-1875668289) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +5. 🗣 Commented on [#69](https://github.com/eastgenomics/eris/pull/69#issuecomment-1875358472) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#1644](https://github.com/HEXRD/hexrdgui/pull/1644#issuecomment-1875353754) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +7. 🗣 Commented on [#258](https://github.com/TelebirrApp/TelebirrApp/pull/258#issuecomment-1875301326) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +8. 🗣 Commented on [#171](https://github.com/eastgenomics/dias_batch_running/pull/171#issuecomment-1875286810) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#236](https://github.com/CartoonFan/lutris/pull/236#issuecomment-1874843796) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#247](https://github.com/NCAR/wrf_hydro_py/pull/247#issuecomment-1874718295) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) From 8b01af8b21bb0056b545d37f8a51c00245abfc6b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 12:30:38 +0000 Subject: [PATCH 1080/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 94193c6b..3d85491c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/shopify-test-data-generator/pull/1#issuecomment-1876922619) in [tuhinmallick/shopify-test-data-generator](https://github.com/tuhinmallick/shopify-test-data-generator) -2. 🗣 Commented on [#952](https://github.com/avaframe/AvaFrame/pull/952#issuecomment-1876857055) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#207](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/207#issuecomment-1876293085) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -4. 🗣 Commented on [#431](https://github.com/manoharan-lab/holopy/pull/431#issuecomment-1875668289) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -5. 🗣 Commented on [#69](https://github.com/eastgenomics/eris/pull/69#issuecomment-1875358472) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#1644](https://github.com/HEXRD/hexrdgui/pull/1644#issuecomment-1875353754) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -7. 🗣 Commented on [#258](https://github.com/TelebirrApp/TelebirrApp/pull/258#issuecomment-1875301326) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -8. 🗣 Commented on [#171](https://github.com/eastgenomics/dias_batch_running/pull/171#issuecomment-1875286810) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#236](https://github.com/CartoonFan/lutris/pull/236#issuecomment-1874843796) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#247](https://github.com/NCAR/wrf_hydro_py/pull/247#issuecomment-1874718295) in [NCAR/wrf_hydro_py](https://github.com/NCAR/wrf_hydro_py) +1. 🗣 Commented on [#304](https://github.com/TelebirrApp/TelebirrApp/pull/304#issuecomment-1876967464) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/shopify-test-data-generator/pull/1#issuecomment-1876922619) in [tuhinmallick/shopify-test-data-generator](https://github.com/tuhinmallick/shopify-test-data-generator) +3. 🗣 Commented on [#952](https://github.com/avaframe/AvaFrame/pull/952#issuecomment-1876857055) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#207](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/207#issuecomment-1876293085) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +5. 🗣 Commented on [#431](https://github.com/manoharan-lab/holopy/pull/431#issuecomment-1875668289) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +6. 🗣 Commented on [#69](https://github.com/eastgenomics/eris/pull/69#issuecomment-1875358472) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#1644](https://github.com/HEXRD/hexrdgui/pull/1644#issuecomment-1875353754) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +8. 🗣 Commented on [#258](https://github.com/TelebirrApp/TelebirrApp/pull/258#issuecomment-1875301326) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +9. 🗣 Commented on [#171](https://github.com/eastgenomics/dias_batch_running/pull/171#issuecomment-1875286810) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#236](https://github.com/CartoonFan/lutris/pull/236#issuecomment-1874843796) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 8f203601fa1ef1c22fc551384e649787cd74dd5f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 14:14:56 +0000 Subject: [PATCH 1081/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3d85491c..236c017d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#304](https://github.com/TelebirrApp/TelebirrApp/pull/304#issuecomment-1876967464) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/shopify-test-data-generator/pull/1#issuecomment-1876922619) in [tuhinmallick/shopify-test-data-generator](https://github.com/tuhinmallick/shopify-test-data-generator) -3. 🗣 Commented on [#952](https://github.com/avaframe/AvaFrame/pull/952#issuecomment-1876857055) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#207](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/207#issuecomment-1876293085) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -5. 🗣 Commented on [#431](https://github.com/manoharan-lab/holopy/pull/431#issuecomment-1875668289) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -6. 🗣 Commented on [#69](https://github.com/eastgenomics/eris/pull/69#issuecomment-1875358472) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#1644](https://github.com/HEXRD/hexrdgui/pull/1644#issuecomment-1875353754) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -8. 🗣 Commented on [#258](https://github.com/TelebirrApp/TelebirrApp/pull/258#issuecomment-1875301326) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -9. 🗣 Commented on [#171](https://github.com/eastgenomics/dias_batch_running/pull/171#issuecomment-1875286810) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#236](https://github.com/CartoonFan/lutris/pull/236#issuecomment-1874843796) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#2](https://github.com/Borda/AttentionDeepMIL/pull/2#issuecomment-1877131556) in [Borda/AttentionDeepMIL](https://github.com/Borda/AttentionDeepMIL) +2. 🗣 Commented on [#304](https://github.com/TelebirrApp/TelebirrApp/pull/304#issuecomment-1876967464) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/shopify-test-data-generator/pull/1#issuecomment-1876922619) in [tuhinmallick/shopify-test-data-generator](https://github.com/tuhinmallick/shopify-test-data-generator) +4. 🗣 Commented on [#952](https://github.com/avaframe/AvaFrame/pull/952#issuecomment-1876857055) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#207](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/207#issuecomment-1876293085) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +6. 🗣 Commented on [#431](https://github.com/manoharan-lab/holopy/pull/431#issuecomment-1875668289) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +7. 🗣 Commented on [#69](https://github.com/eastgenomics/eris/pull/69#issuecomment-1875358472) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#1644](https://github.com/HEXRD/hexrdgui/pull/1644#issuecomment-1875353754) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +9. 🗣 Commented on [#258](https://github.com/TelebirrApp/TelebirrApp/pull/258#issuecomment-1875301326) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +10. 🗣 Commented on [#171](https://github.com/eastgenomics/dias_batch_running/pull/171#issuecomment-1875286810) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From af07a5094957b6474ab37424e16575a40765d0af Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 15:18:09 +0000 Subject: [PATCH 1082/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 236c017d..b09eb23a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/Borda/AttentionDeepMIL/pull/2#issuecomment-1877131556) in [Borda/AttentionDeepMIL](https://github.com/Borda/AttentionDeepMIL) -2. 🗣 Commented on [#304](https://github.com/TelebirrApp/TelebirrApp/pull/304#issuecomment-1876967464) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/shopify-test-data-generator/pull/1#issuecomment-1876922619) in [tuhinmallick/shopify-test-data-generator](https://github.com/tuhinmallick/shopify-test-data-generator) -4. 🗣 Commented on [#952](https://github.com/avaframe/AvaFrame/pull/952#issuecomment-1876857055) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#207](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/207#issuecomment-1876293085) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -6. 🗣 Commented on [#431](https://github.com/manoharan-lab/holopy/pull/431#issuecomment-1875668289) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -7. 🗣 Commented on [#69](https://github.com/eastgenomics/eris/pull/69#issuecomment-1875358472) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#1644](https://github.com/HEXRD/hexrdgui/pull/1644#issuecomment-1875353754) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -9. 🗣 Commented on [#258](https://github.com/TelebirrApp/TelebirrApp/pull/258#issuecomment-1875301326) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -10. 🗣 Commented on [#171](https://github.com/eastgenomics/dias_batch_running/pull/171#issuecomment-1875286810) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#161](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/161#issuecomment-1877248873) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +2. 🗣 Commented on [#2](https://github.com/Borda/AttentionDeepMIL/pull/2#issuecomment-1877131556) in [Borda/AttentionDeepMIL](https://github.com/Borda/AttentionDeepMIL) +3. 🗣 Commented on [#304](https://github.com/TelebirrApp/TelebirrApp/pull/304#issuecomment-1876967464) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/shopify-test-data-generator/pull/1#issuecomment-1876922619) in [tuhinmallick/shopify-test-data-generator](https://github.com/tuhinmallick/shopify-test-data-generator) +5. 🗣 Commented on [#952](https://github.com/avaframe/AvaFrame/pull/952#issuecomment-1876857055) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#207](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/207#issuecomment-1876293085) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +7. 🗣 Commented on [#431](https://github.com/manoharan-lab/holopy/pull/431#issuecomment-1875668289) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +8. 🗣 Commented on [#69](https://github.com/eastgenomics/eris/pull/69#issuecomment-1875358472) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#1644](https://github.com/HEXRD/hexrdgui/pull/1644#issuecomment-1875353754) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +10. 🗣 Commented on [#258](https://github.com/TelebirrApp/TelebirrApp/pull/258#issuecomment-1875301326) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) From d5f2c28c861bdf5976b418198294cd563728abb5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 16:21:40 +0000 Subject: [PATCH 1083/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b09eb23a..51f8df79 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#161](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/161#issuecomment-1877248873) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -2. 🗣 Commented on [#2](https://github.com/Borda/AttentionDeepMIL/pull/2#issuecomment-1877131556) in [Borda/AttentionDeepMIL](https://github.com/Borda/AttentionDeepMIL) -3. 🗣 Commented on [#304](https://github.com/TelebirrApp/TelebirrApp/pull/304#issuecomment-1876967464) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/shopify-test-data-generator/pull/1#issuecomment-1876922619) in [tuhinmallick/shopify-test-data-generator](https://github.com/tuhinmallick/shopify-test-data-generator) -5. 🗣 Commented on [#952](https://github.com/avaframe/AvaFrame/pull/952#issuecomment-1876857055) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#207](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/207#issuecomment-1876293085) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -7. 🗣 Commented on [#431](https://github.com/manoharan-lab/holopy/pull/431#issuecomment-1875668289) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -8. 🗣 Commented on [#69](https://github.com/eastgenomics/eris/pull/69#issuecomment-1875358472) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#1644](https://github.com/HEXRD/hexrdgui/pull/1644#issuecomment-1875353754) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -10. 🗣 Commented on [#258](https://github.com/TelebirrApp/TelebirrApp/pull/258#issuecomment-1875301326) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +1. 🗣 Commented on [#1463](https://github.com/openSUSE/osc/pull/1463#issuecomment-1877343528) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#161](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/161#issuecomment-1877248873) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +3. 🗣 Commented on [#2](https://github.com/Borda/AttentionDeepMIL/pull/2#issuecomment-1877131556) in [Borda/AttentionDeepMIL](https://github.com/Borda/AttentionDeepMIL) +4. 🗣 Commented on [#304](https://github.com/TelebirrApp/TelebirrApp/pull/304#issuecomment-1876967464) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/shopify-test-data-generator/pull/1#issuecomment-1876922619) in [tuhinmallick/shopify-test-data-generator](https://github.com/tuhinmallick/shopify-test-data-generator) +6. 🗣 Commented on [#952](https://github.com/avaframe/AvaFrame/pull/952#issuecomment-1876857055) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#207](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/207#issuecomment-1876293085) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +8. 🗣 Commented on [#431](https://github.com/manoharan-lab/holopy/pull/431#issuecomment-1875668289) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +9. 🗣 Commented on [#69](https://github.com/eastgenomics/eris/pull/69#issuecomment-1875358472) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#1644](https://github.com/HEXRD/hexrdgui/pull/1644#issuecomment-1875353754) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) From 20cc6792b09281305fce47686c076d7335b9a8bd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 17:14:37 +0000 Subject: [PATCH 1084/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 51f8df79..b9791d6e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1463](https://github.com/openSUSE/osc/pull/1463#issuecomment-1877343528) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#161](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/161#issuecomment-1877248873) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -3. 🗣 Commented on [#2](https://github.com/Borda/AttentionDeepMIL/pull/2#issuecomment-1877131556) in [Borda/AttentionDeepMIL](https://github.com/Borda/AttentionDeepMIL) -4. 🗣 Commented on [#304](https://github.com/TelebirrApp/TelebirrApp/pull/304#issuecomment-1876967464) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/shopify-test-data-generator/pull/1#issuecomment-1876922619) in [tuhinmallick/shopify-test-data-generator](https://github.com/tuhinmallick/shopify-test-data-generator) -6. 🗣 Commented on [#952](https://github.com/avaframe/AvaFrame/pull/952#issuecomment-1876857055) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#207](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/207#issuecomment-1876293085) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) -8. 🗣 Commented on [#431](https://github.com/manoharan-lab/holopy/pull/431#issuecomment-1875668289) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -9. 🗣 Commented on [#69](https://github.com/eastgenomics/eris/pull/69#issuecomment-1875358472) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#1644](https://github.com/HEXRD/hexrdgui/pull/1644#issuecomment-1875353754) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +1. 🗣 Commented on [#88](https://github.com/kaulketh/ledpibot/pull/88#issuecomment-1877472510) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +2. 🗣 Commented on [#87](https://github.com/kaulketh/ledpibot/pull/87#issuecomment-1877468233) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +3. 🗣 Commented on [#1040](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1040#issuecomment-1877429907) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#1463](https://github.com/openSUSE/osc/pull/1463#issuecomment-1877343528) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#161](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/161#issuecomment-1877248873) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +6. 🗣 Commented on [#2](https://github.com/Borda/AttentionDeepMIL/pull/2#issuecomment-1877131556) in [Borda/AttentionDeepMIL](https://github.com/Borda/AttentionDeepMIL) +7. 🗣 Commented on [#304](https://github.com/TelebirrApp/TelebirrApp/pull/304#issuecomment-1876967464) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +8. 🗣 Commented on [#1](https://github.com/tuhinmallick/shopify-test-data-generator/pull/1#issuecomment-1876922619) in [tuhinmallick/shopify-test-data-generator](https://github.com/tuhinmallick/shopify-test-data-generator) +9. 🗣 Commented on [#952](https://github.com/avaframe/AvaFrame/pull/952#issuecomment-1876857055) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#207](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/207#issuecomment-1876293085) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) From 81706850e72ec71f2922589710aaeeaaf6683211 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 18:20:35 +0000 Subject: [PATCH 1085/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b9791d6e..57653b23 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#88](https://github.com/kaulketh/ledpibot/pull/88#issuecomment-1877472510) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) -2. 🗣 Commented on [#87](https://github.com/kaulketh/ledpibot/pull/87#issuecomment-1877468233) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) -3. 🗣 Commented on [#1040](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1040#issuecomment-1877429907) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#1463](https://github.com/openSUSE/osc/pull/1463#issuecomment-1877343528) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#161](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/161#issuecomment-1877248873) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -6. 🗣 Commented on [#2](https://github.com/Borda/AttentionDeepMIL/pull/2#issuecomment-1877131556) in [Borda/AttentionDeepMIL](https://github.com/Borda/AttentionDeepMIL) -7. 🗣 Commented on [#304](https://github.com/TelebirrApp/TelebirrApp/pull/304#issuecomment-1876967464) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -8. 🗣 Commented on [#1](https://github.com/tuhinmallick/shopify-test-data-generator/pull/1#issuecomment-1876922619) in [tuhinmallick/shopify-test-data-generator](https://github.com/tuhinmallick/shopify-test-data-generator) -9. 🗣 Commented on [#952](https://github.com/avaframe/AvaFrame/pull/952#issuecomment-1876857055) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#207](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science/pull/207#issuecomment-1876293085) in [EdinsonRequena/articicial-inteligence-and-data-science](https://github.com/EdinsonRequena/articicial-inteligence-and-data-science) +1. 🗣 Commented on [#1242](https://github.com/aimclub/FEDOT/pull/1242#issuecomment-1877534697) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#88](https://github.com/kaulketh/ledpibot/pull/88#issuecomment-1877472510) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +3. 🗣 Commented on [#87](https://github.com/kaulketh/ledpibot/pull/87#issuecomment-1877468233) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +4. 🗣 Commented on [#1040](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1040#issuecomment-1877429907) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1463](https://github.com/openSUSE/osc/pull/1463#issuecomment-1877343528) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#161](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/161#issuecomment-1877248873) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +7. 🗣 Commented on [#2](https://github.com/Borda/AttentionDeepMIL/pull/2#issuecomment-1877131556) in [Borda/AttentionDeepMIL](https://github.com/Borda/AttentionDeepMIL) +8. 🗣 Commented on [#304](https://github.com/TelebirrApp/TelebirrApp/pull/304#issuecomment-1876967464) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +9. 🗣 Commented on [#1](https://github.com/tuhinmallick/shopify-test-data-generator/pull/1#issuecomment-1876922619) in [tuhinmallick/shopify-test-data-generator](https://github.com/tuhinmallick/shopify-test-data-generator) +10. 🗣 Commented on [#952](https://github.com/avaframe/AvaFrame/pull/952#issuecomment-1876857055) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From b9a5dfe85060761863c1dd1e486d3e75c5262f10 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 19:13:04 +0000 Subject: [PATCH 1086/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 57653b23..a42a9ae0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1242](https://github.com/aimclub/FEDOT/pull/1242#issuecomment-1877534697) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#88](https://github.com/kaulketh/ledpibot/pull/88#issuecomment-1877472510) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) -3. 🗣 Commented on [#87](https://github.com/kaulketh/ledpibot/pull/87#issuecomment-1877468233) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) -4. 🗣 Commented on [#1040](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1040#issuecomment-1877429907) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1463](https://github.com/openSUSE/osc/pull/1463#issuecomment-1877343528) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#161](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/161#issuecomment-1877248873) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -7. 🗣 Commented on [#2](https://github.com/Borda/AttentionDeepMIL/pull/2#issuecomment-1877131556) in [Borda/AttentionDeepMIL](https://github.com/Borda/AttentionDeepMIL) -8. 🗣 Commented on [#304](https://github.com/TelebirrApp/TelebirrApp/pull/304#issuecomment-1876967464) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -9. 🗣 Commented on [#1](https://github.com/tuhinmallick/shopify-test-data-generator/pull/1#issuecomment-1876922619) in [tuhinmallick/shopify-test-data-generator](https://github.com/tuhinmallick/shopify-test-data-generator) -10. 🗣 Commented on [#952](https://github.com/avaframe/AvaFrame/pull/952#issuecomment-1876857055) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#1041](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1041#issuecomment-1877620078) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#679](https://github.com/OpenFreeEnergy/openfe/pull/679#issuecomment-1877611098) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#596](https://github.com/HEXRD/hexrd/pull/596#issuecomment-1877596994) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +4. 🗣 Commented on [#1242](https://github.com/aimclub/FEDOT/pull/1242#issuecomment-1877534697) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#88](https://github.com/kaulketh/ledpibot/pull/88#issuecomment-1877472510) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +6. 🗣 Commented on [#87](https://github.com/kaulketh/ledpibot/pull/87#issuecomment-1877468233) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +7. 🗣 Commented on [#1040](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1040#issuecomment-1877429907) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#1463](https://github.com/openSUSE/osc/pull/1463#issuecomment-1877343528) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#161](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/161#issuecomment-1877248873) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +10. 🗣 Commented on [#2](https://github.com/Borda/AttentionDeepMIL/pull/2#issuecomment-1877131556) in [Borda/AttentionDeepMIL](https://github.com/Borda/AttentionDeepMIL) From feeed37857148b6fdb1d4d99104947e2272597fb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 19:37:16 +0000 Subject: [PATCH 1087/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a42a9ae0..23d6ab25 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1041](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1041#issuecomment-1877620078) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#679](https://github.com/OpenFreeEnergy/openfe/pull/679#issuecomment-1877611098) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#596](https://github.com/HEXRD/hexrd/pull/596#issuecomment-1877596994) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -4. 🗣 Commented on [#1242](https://github.com/aimclub/FEDOT/pull/1242#issuecomment-1877534697) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#88](https://github.com/kaulketh/ledpibot/pull/88#issuecomment-1877472510) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) -6. 🗣 Commented on [#87](https://github.com/kaulketh/ledpibot/pull/87#issuecomment-1877468233) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) -7. 🗣 Commented on [#1040](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1040#issuecomment-1877429907) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#1463](https://github.com/openSUSE/osc/pull/1463#issuecomment-1877343528) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#161](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/161#issuecomment-1877248873) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -10. 🗣 Commented on [#2](https://github.com/Borda/AttentionDeepMIL/pull/2#issuecomment-1877131556) in [Borda/AttentionDeepMIL](https://github.com/Borda/AttentionDeepMIL) +1. 🗣 Commented on [#511](https://github.com/UIUCLibrary/Speedwagon/pull/511#issuecomment-1877649183) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +2. 🗣 Commented on [#1041](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1041#issuecomment-1877620078) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#679](https://github.com/OpenFreeEnergy/openfe/pull/679#issuecomment-1877611098) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#596](https://github.com/HEXRD/hexrd/pull/596#issuecomment-1877596994) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#1242](https://github.com/aimclub/FEDOT/pull/1242#issuecomment-1877534697) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#88](https://github.com/kaulketh/ledpibot/pull/88#issuecomment-1877472510) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +7. 🗣 Commented on [#87](https://github.com/kaulketh/ledpibot/pull/87#issuecomment-1877468233) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +8. 🗣 Commented on [#1040](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1040#issuecomment-1877429907) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#1463](https://github.com/openSUSE/osc/pull/1463#issuecomment-1877343528) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#161](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/161#issuecomment-1877248873) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) From 1fe753bfffaa0a5d6eeb86cf3e89b0fe979ace96 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 20:17:15 +0000 Subject: [PATCH 1088/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 23d6ab25..71b9e2e7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#511](https://github.com/UIUCLibrary/Speedwagon/pull/511#issuecomment-1877649183) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -2. 🗣 Commented on [#1041](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1041#issuecomment-1877620078) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#679](https://github.com/OpenFreeEnergy/openfe/pull/679#issuecomment-1877611098) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#596](https://github.com/HEXRD/hexrd/pull/596#issuecomment-1877596994) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#1242](https://github.com/aimclub/FEDOT/pull/1242#issuecomment-1877534697) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#88](https://github.com/kaulketh/ledpibot/pull/88#issuecomment-1877472510) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) -7. 🗣 Commented on [#87](https://github.com/kaulketh/ledpibot/pull/87#issuecomment-1877468233) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) -8. 🗣 Commented on [#1040](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1040#issuecomment-1877429907) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#1463](https://github.com/openSUSE/osc/pull/1463#issuecomment-1877343528) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#161](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/161#issuecomment-1877248873) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +1. 🗣 Commented on [#45](https://github.com/catalyst-team/hydra-slayer/pull/45#issuecomment-1877691436) in [catalyst-team/hydra-slayer](https://github.com/catalyst-team/hydra-slayer) +2. 🗣 Commented on [#487](https://github.com/HEPCloud/decisionengine_modules/pull/487#issuecomment-1877666975) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +3. 🗣 Commented on [#511](https://github.com/UIUCLibrary/Speedwagon/pull/511#issuecomment-1877649183) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +4. 🗣 Commented on [#1041](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1041#issuecomment-1877620078) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#679](https://github.com/OpenFreeEnergy/openfe/pull/679#issuecomment-1877611098) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#596](https://github.com/HEXRD/hexrd/pull/596#issuecomment-1877596994) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +7. 🗣 Commented on [#1242](https://github.com/aimclub/FEDOT/pull/1242#issuecomment-1877534697) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#88](https://github.com/kaulketh/ledpibot/pull/88#issuecomment-1877472510) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +9. 🗣 Commented on [#87](https://github.com/kaulketh/ledpibot/pull/87#issuecomment-1877468233) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +10. 🗣 Commented on [#1040](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1040#issuecomment-1877429907) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From ed004a62eb185f2fa9a48db6cb6be1e3b0fa026e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 20:37:34 +0000 Subject: [PATCH 1089/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 71b9e2e7..6c8782c8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#45](https://github.com/catalyst-team/hydra-slayer/pull/45#issuecomment-1877691436) in [catalyst-team/hydra-slayer](https://github.com/catalyst-team/hydra-slayer) -2. 🗣 Commented on [#487](https://github.com/HEPCloud/decisionengine_modules/pull/487#issuecomment-1877666975) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -3. 🗣 Commented on [#511](https://github.com/UIUCLibrary/Speedwagon/pull/511#issuecomment-1877649183) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -4. 🗣 Commented on [#1041](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1041#issuecomment-1877620078) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#679](https://github.com/OpenFreeEnergy/openfe/pull/679#issuecomment-1877611098) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#596](https://github.com/HEXRD/hexrd/pull/596#issuecomment-1877596994) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -7. 🗣 Commented on [#1242](https://github.com/aimclub/FEDOT/pull/1242#issuecomment-1877534697) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#88](https://github.com/kaulketh/ledpibot/pull/88#issuecomment-1877472510) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) -9. 🗣 Commented on [#87](https://github.com/kaulketh/ledpibot/pull/87#issuecomment-1877468233) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) -10. 🗣 Commented on [#1040](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1040#issuecomment-1877429907) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#3027](https://github.com/dipy/dipy/pull/3027#issuecomment-1877718704) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#45](https://github.com/catalyst-team/hydra-slayer/pull/45#issuecomment-1877691436) in [catalyst-team/hydra-slayer](https://github.com/catalyst-team/hydra-slayer) +3. 🗣 Commented on [#487](https://github.com/HEPCloud/decisionengine_modules/pull/487#issuecomment-1877666975) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +4. 🗣 Commented on [#511](https://github.com/UIUCLibrary/Speedwagon/pull/511#issuecomment-1877649183) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +5. 🗣 Commented on [#1041](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1041#issuecomment-1877620078) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#679](https://github.com/OpenFreeEnergy/openfe/pull/679#issuecomment-1877611098) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#596](https://github.com/HEXRD/hexrd/pull/596#issuecomment-1877596994) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +8. 🗣 Commented on [#1242](https://github.com/aimclub/FEDOT/pull/1242#issuecomment-1877534697) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#88](https://github.com/kaulketh/ledpibot/pull/88#issuecomment-1877472510) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +10. 🗣 Commented on [#87](https://github.com/kaulketh/ledpibot/pull/87#issuecomment-1877468233) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) From d12782135f20d70cbe3dd5d9c4e9240a38def6c2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 21:14:33 +0000 Subject: [PATCH 1090/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6c8782c8..f79a0e4c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3027](https://github.com/dipy/dipy/pull/3027#issuecomment-1877718704) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#45](https://github.com/catalyst-team/hydra-slayer/pull/45#issuecomment-1877691436) in [catalyst-team/hydra-slayer](https://github.com/catalyst-team/hydra-slayer) -3. 🗣 Commented on [#487](https://github.com/HEPCloud/decisionengine_modules/pull/487#issuecomment-1877666975) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -4. 🗣 Commented on [#511](https://github.com/UIUCLibrary/Speedwagon/pull/511#issuecomment-1877649183) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -5. 🗣 Commented on [#1041](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1041#issuecomment-1877620078) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#679](https://github.com/OpenFreeEnergy/openfe/pull/679#issuecomment-1877611098) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#596](https://github.com/HEXRD/hexrd/pull/596#issuecomment-1877596994) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -8. 🗣 Commented on [#1242](https://github.com/aimclub/FEDOT/pull/1242#issuecomment-1877534697) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#88](https://github.com/kaulketh/ledpibot/pull/88#issuecomment-1877472510) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) -10. 🗣 Commented on [#87](https://github.com/kaulketh/ledpibot/pull/87#issuecomment-1877468233) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +1. 🗣 Commented on [#2695](https://github.com/metabrainz/listenbrainz-server/pull/2695#issuecomment-1877731389) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#3027](https://github.com/dipy/dipy/pull/3027#issuecomment-1877718704) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#45](https://github.com/catalyst-team/hydra-slayer/pull/45#issuecomment-1877691436) in [catalyst-team/hydra-slayer](https://github.com/catalyst-team/hydra-slayer) +4. 🗣 Commented on [#487](https://github.com/HEPCloud/decisionengine_modules/pull/487#issuecomment-1877666975) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +5. 🗣 Commented on [#511](https://github.com/UIUCLibrary/Speedwagon/pull/511#issuecomment-1877649183) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +6. 🗣 Commented on [#1041](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1041#issuecomment-1877620078) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#679](https://github.com/OpenFreeEnergy/openfe/pull/679#issuecomment-1877611098) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#596](https://github.com/HEXRD/hexrd/pull/596#issuecomment-1877596994) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +9. 🗣 Commented on [#1242](https://github.com/aimclub/FEDOT/pull/1242#issuecomment-1877534697) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#88](https://github.com/kaulketh/ledpibot/pull/88#issuecomment-1877472510) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) From 3aa0d6fa175d404e0f5a2ea3226c9b3fcbdc8e98 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Jan 2024 03:17:08 +0000 Subject: [PATCH 1091/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f79a0e4c..c6b96fbe 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2695](https://github.com/metabrainz/listenbrainz-server/pull/2695#issuecomment-1877731389) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#3027](https://github.com/dipy/dipy/pull/3027#issuecomment-1877718704) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#45](https://github.com/catalyst-team/hydra-slayer/pull/45#issuecomment-1877691436) in [catalyst-team/hydra-slayer](https://github.com/catalyst-team/hydra-slayer) -4. 🗣 Commented on [#487](https://github.com/HEPCloud/decisionengine_modules/pull/487#issuecomment-1877666975) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -5. 🗣 Commented on [#511](https://github.com/UIUCLibrary/Speedwagon/pull/511#issuecomment-1877649183) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -6. 🗣 Commented on [#1041](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1041#issuecomment-1877620078) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#679](https://github.com/OpenFreeEnergy/openfe/pull/679#issuecomment-1877611098) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#596](https://github.com/HEXRD/hexrd/pull/596#issuecomment-1877596994) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -9. 🗣 Commented on [#1242](https://github.com/aimclub/FEDOT/pull/1242#issuecomment-1877534697) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#88](https://github.com/kaulketh/ledpibot/pull/88#issuecomment-1877472510) in [kaulketh/ledpibot](https://github.com/kaulketh/ledpibot) +1. 🗣 Commented on [#680](https://github.com/OpenFreeEnergy/openfe/pull/680#issuecomment-1878046360) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#2695](https://github.com/metabrainz/listenbrainz-server/pull/2695#issuecomment-1877731389) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#3027](https://github.com/dipy/dipy/pull/3027#issuecomment-1877718704) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#45](https://github.com/catalyst-team/hydra-slayer/pull/45#issuecomment-1877691436) in [catalyst-team/hydra-slayer](https://github.com/catalyst-team/hydra-slayer) +5. 🗣 Commented on [#487](https://github.com/HEPCloud/decisionengine_modules/pull/487#issuecomment-1877666975) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +6. 🗣 Commented on [#511](https://github.com/UIUCLibrary/Speedwagon/pull/511#issuecomment-1877649183) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +7. 🗣 Commented on [#1041](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1041#issuecomment-1877620078) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#679](https://github.com/OpenFreeEnergy/openfe/pull/679#issuecomment-1877611098) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#596](https://github.com/HEXRD/hexrd/pull/596#issuecomment-1877596994) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +10. 🗣 Commented on [#1242](https://github.com/aimclub/FEDOT/pull/1242#issuecomment-1877534697) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From 6eb25bfed79bb7576037b767796f74668a043937 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Jan 2024 13:19:14 +0000 Subject: [PATCH 1092/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c6b96fbe..2622907e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#680](https://github.com/OpenFreeEnergy/openfe/pull/680#issuecomment-1878046360) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#2695](https://github.com/metabrainz/listenbrainz-server/pull/2695#issuecomment-1877731389) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#3027](https://github.com/dipy/dipy/pull/3027#issuecomment-1877718704) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#45](https://github.com/catalyst-team/hydra-slayer/pull/45#issuecomment-1877691436) in [catalyst-team/hydra-slayer](https://github.com/catalyst-team/hydra-slayer) -5. 🗣 Commented on [#487](https://github.com/HEPCloud/decisionengine_modules/pull/487#issuecomment-1877666975) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -6. 🗣 Commented on [#511](https://github.com/UIUCLibrary/Speedwagon/pull/511#issuecomment-1877649183) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -7. 🗣 Commented on [#1041](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1041#issuecomment-1877620078) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#679](https://github.com/OpenFreeEnergy/openfe/pull/679#issuecomment-1877611098) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#596](https://github.com/HEXRD/hexrd/pull/596#issuecomment-1877596994) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -10. 🗣 Commented on [#1242](https://github.com/aimclub/FEDOT/pull/1242#issuecomment-1877534697) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#708](https://github.com/bashtage/arch/pull/708#issuecomment-1878635232) in [bashtage/arch](https://github.com/bashtage/arch) +2. 🗣 Commented on [#680](https://github.com/OpenFreeEnergy/openfe/pull/680#issuecomment-1878046360) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#2695](https://github.com/metabrainz/listenbrainz-server/pull/2695#issuecomment-1877731389) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#3027](https://github.com/dipy/dipy/pull/3027#issuecomment-1877718704) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#45](https://github.com/catalyst-team/hydra-slayer/pull/45#issuecomment-1877691436) in [catalyst-team/hydra-slayer](https://github.com/catalyst-team/hydra-slayer) +6. 🗣 Commented on [#487](https://github.com/HEPCloud/decisionengine_modules/pull/487#issuecomment-1877666975) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +7. 🗣 Commented on [#511](https://github.com/UIUCLibrary/Speedwagon/pull/511#issuecomment-1877649183) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +8. 🗣 Commented on [#1041](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1041#issuecomment-1877620078) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#679](https://github.com/OpenFreeEnergy/openfe/pull/679#issuecomment-1877611098) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#596](https://github.com/HEXRD/hexrd/pull/596#issuecomment-1877596994) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) From 3681bf4e75e9302772d6e662b2ba0577684fd27e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Jan 2024 15:16:42 +0000 Subject: [PATCH 1093/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2622907e..082de2d3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#708](https://github.com/bashtage/arch/pull/708#issuecomment-1878635232) in [bashtage/arch](https://github.com/bashtage/arch) -2. 🗣 Commented on [#680](https://github.com/OpenFreeEnergy/openfe/pull/680#issuecomment-1878046360) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#2695](https://github.com/metabrainz/listenbrainz-server/pull/2695#issuecomment-1877731389) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#3027](https://github.com/dipy/dipy/pull/3027#issuecomment-1877718704) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#45](https://github.com/catalyst-team/hydra-slayer/pull/45#issuecomment-1877691436) in [catalyst-team/hydra-slayer](https://github.com/catalyst-team/hydra-slayer) -6. 🗣 Commented on [#487](https://github.com/HEPCloud/decisionengine_modules/pull/487#issuecomment-1877666975) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -7. 🗣 Commented on [#511](https://github.com/UIUCLibrary/Speedwagon/pull/511#issuecomment-1877649183) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -8. 🗣 Commented on [#1041](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1041#issuecomment-1877620078) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#679](https://github.com/OpenFreeEnergy/openfe/pull/679#issuecomment-1877611098) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#596](https://github.com/HEXRD/hexrd/pull/596#issuecomment-1877596994) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +1. 🗣 Commented on [#1645](https://github.com/HEXRD/hexrdgui/pull/1645#issuecomment-1878816074) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +2. 🗣 Commented on [#708](https://github.com/bashtage/arch/pull/708#issuecomment-1878635232) in [bashtage/arch](https://github.com/bashtage/arch) +3. 🗣 Commented on [#680](https://github.com/OpenFreeEnergy/openfe/pull/680#issuecomment-1878046360) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#2695](https://github.com/metabrainz/listenbrainz-server/pull/2695#issuecomment-1877731389) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#3027](https://github.com/dipy/dipy/pull/3027#issuecomment-1877718704) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#45](https://github.com/catalyst-team/hydra-slayer/pull/45#issuecomment-1877691436) in [catalyst-team/hydra-slayer](https://github.com/catalyst-team/hydra-slayer) +7. 🗣 Commented on [#487](https://github.com/HEPCloud/decisionengine_modules/pull/487#issuecomment-1877666975) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +8. 🗣 Commented on [#511](https://github.com/UIUCLibrary/Speedwagon/pull/511#issuecomment-1877649183) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +9. 🗣 Commented on [#1041](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1041#issuecomment-1877620078) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#679](https://github.com/OpenFreeEnergy/openfe/pull/679#issuecomment-1877611098) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 7dce51c5228a881db1a136e2e0c22365cfbe86e8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Jan 2024 15:37:16 +0000 Subject: [PATCH 1094/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 082de2d3..bc508444 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1645](https://github.com/HEXRD/hexrdgui/pull/1645#issuecomment-1878816074) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -2. 🗣 Commented on [#708](https://github.com/bashtage/arch/pull/708#issuecomment-1878635232) in [bashtage/arch](https://github.com/bashtage/arch) -3. 🗣 Commented on [#680](https://github.com/OpenFreeEnergy/openfe/pull/680#issuecomment-1878046360) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#2695](https://github.com/metabrainz/listenbrainz-server/pull/2695#issuecomment-1877731389) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#3027](https://github.com/dipy/dipy/pull/3027#issuecomment-1877718704) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#45](https://github.com/catalyst-team/hydra-slayer/pull/45#issuecomment-1877691436) in [catalyst-team/hydra-slayer](https://github.com/catalyst-team/hydra-slayer) -7. 🗣 Commented on [#487](https://github.com/HEPCloud/decisionengine_modules/pull/487#issuecomment-1877666975) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -8. 🗣 Commented on [#511](https://github.com/UIUCLibrary/Speedwagon/pull/511#issuecomment-1877649183) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -9. 🗣 Commented on [#1041](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1041#issuecomment-1877620078) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#679](https://github.com/OpenFreeEnergy/openfe/pull/679#issuecomment-1877611098) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#70](https://github.com/eastgenomics/eris/pull/70#issuecomment-1878852669) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#1645](https://github.com/HEXRD/hexrdgui/pull/1645#issuecomment-1878816074) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +3. 🗣 Commented on [#708](https://github.com/bashtage/arch/pull/708#issuecomment-1878635232) in [bashtage/arch](https://github.com/bashtage/arch) +4. 🗣 Commented on [#680](https://github.com/OpenFreeEnergy/openfe/pull/680#issuecomment-1878046360) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#2695](https://github.com/metabrainz/listenbrainz-server/pull/2695#issuecomment-1877731389) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#3027](https://github.com/dipy/dipy/pull/3027#issuecomment-1877718704) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#45](https://github.com/catalyst-team/hydra-slayer/pull/45#issuecomment-1877691436) in [catalyst-team/hydra-slayer](https://github.com/catalyst-team/hydra-slayer) +8. 🗣 Commented on [#487](https://github.com/HEPCloud/decisionengine_modules/pull/487#issuecomment-1877666975) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +9. 🗣 Commented on [#511](https://github.com/UIUCLibrary/Speedwagon/pull/511#issuecomment-1877649183) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +10. 🗣 Commented on [#1041](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1041#issuecomment-1877620078) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 1a80e9e0249b5810829a39abb5530ce93d1b364f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Jan 2024 16:19:52 +0000 Subject: [PATCH 1095/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bc508444..183e86cd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#70](https://github.com/eastgenomics/eris/pull/70#issuecomment-1878852669) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#1645](https://github.com/HEXRD/hexrdgui/pull/1645#issuecomment-1878816074) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -3. 🗣 Commented on [#708](https://github.com/bashtage/arch/pull/708#issuecomment-1878635232) in [bashtage/arch](https://github.com/bashtage/arch) -4. 🗣 Commented on [#680](https://github.com/OpenFreeEnergy/openfe/pull/680#issuecomment-1878046360) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#2695](https://github.com/metabrainz/listenbrainz-server/pull/2695#issuecomment-1877731389) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#3027](https://github.com/dipy/dipy/pull/3027#issuecomment-1877718704) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#45](https://github.com/catalyst-team/hydra-slayer/pull/45#issuecomment-1877691436) in [catalyst-team/hydra-slayer](https://github.com/catalyst-team/hydra-slayer) -8. 🗣 Commented on [#487](https://github.com/HEPCloud/decisionengine_modules/pull/487#issuecomment-1877666975) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -9. 🗣 Commented on [#511](https://github.com/UIUCLibrary/Speedwagon/pull/511#issuecomment-1877649183) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -10. 🗣 Commented on [#1041](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1041#issuecomment-1877620078) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#2697](https://github.com/metabrainz/listenbrainz-server/pull/2697#issuecomment-1878908824) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#70](https://github.com/eastgenomics/eris/pull/70#issuecomment-1878852669) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#1645](https://github.com/HEXRD/hexrdgui/pull/1645#issuecomment-1878816074) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +4. 🗣 Commented on [#708](https://github.com/bashtage/arch/pull/708#issuecomment-1878635232) in [bashtage/arch](https://github.com/bashtage/arch) +5. 🗣 Commented on [#680](https://github.com/OpenFreeEnergy/openfe/pull/680#issuecomment-1878046360) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#2695](https://github.com/metabrainz/listenbrainz-server/pull/2695#issuecomment-1877731389) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#3027](https://github.com/dipy/dipy/pull/3027#issuecomment-1877718704) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#45](https://github.com/catalyst-team/hydra-slayer/pull/45#issuecomment-1877691436) in [catalyst-team/hydra-slayer](https://github.com/catalyst-team/hydra-slayer) +9. 🗣 Commented on [#487](https://github.com/HEPCloud/decisionengine_modules/pull/487#issuecomment-1877666975) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +10. 🗣 Commented on [#511](https://github.com/UIUCLibrary/Speedwagon/pull/511#issuecomment-1877649183) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) From 33d3e45080c4e80f4ba60deff15abee292a7f2c4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Jan 2024 16:40:09 +0000 Subject: [PATCH 1096/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 183e86cd..093cc138 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2697](https://github.com/metabrainz/listenbrainz-server/pull/2697#issuecomment-1878908824) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#70](https://github.com/eastgenomics/eris/pull/70#issuecomment-1878852669) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#1645](https://github.com/HEXRD/hexrdgui/pull/1645#issuecomment-1878816074) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -4. 🗣 Commented on [#708](https://github.com/bashtage/arch/pull/708#issuecomment-1878635232) in [bashtage/arch](https://github.com/bashtage/arch) -5. 🗣 Commented on [#680](https://github.com/OpenFreeEnergy/openfe/pull/680#issuecomment-1878046360) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#2695](https://github.com/metabrainz/listenbrainz-server/pull/2695#issuecomment-1877731389) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#3027](https://github.com/dipy/dipy/pull/3027#issuecomment-1877718704) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#45](https://github.com/catalyst-team/hydra-slayer/pull/45#issuecomment-1877691436) in [catalyst-team/hydra-slayer](https://github.com/catalyst-team/hydra-slayer) -9. 🗣 Commented on [#487](https://github.com/HEPCloud/decisionengine_modules/pull/487#issuecomment-1877666975) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -10. 🗣 Commented on [#511](https://github.com/UIUCLibrary/Speedwagon/pull/511#issuecomment-1877649183) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +1. 🗣 Commented on [#2699](https://github.com/metabrainz/listenbrainz-server/pull/2699#issuecomment-1878950132) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#2697](https://github.com/metabrainz/listenbrainz-server/pull/2697#issuecomment-1878908824) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#70](https://github.com/eastgenomics/eris/pull/70#issuecomment-1878852669) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#1645](https://github.com/HEXRD/hexrdgui/pull/1645#issuecomment-1878816074) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +5. 🗣 Commented on [#708](https://github.com/bashtage/arch/pull/708#issuecomment-1878635232) in [bashtage/arch](https://github.com/bashtage/arch) +6. 🗣 Commented on [#680](https://github.com/OpenFreeEnergy/openfe/pull/680#issuecomment-1878046360) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#2695](https://github.com/metabrainz/listenbrainz-server/pull/2695#issuecomment-1877731389) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#3027](https://github.com/dipy/dipy/pull/3027#issuecomment-1877718704) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#45](https://github.com/catalyst-team/hydra-slayer/pull/45#issuecomment-1877691436) in [catalyst-team/hydra-slayer](https://github.com/catalyst-team/hydra-slayer) +10. 🗣 Commented on [#487](https://github.com/HEPCloud/decisionengine_modules/pull/487#issuecomment-1877666975) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) From 2252876a2203f7d8f354f70896ba99d0d2276c97 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Jan 2024 18:20:10 +0000 Subject: [PATCH 1097/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 093cc138..778e30e1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2699](https://github.com/metabrainz/listenbrainz-server/pull/2699#issuecomment-1878950132) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#2697](https://github.com/metabrainz/listenbrainz-server/pull/2697#issuecomment-1878908824) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#70](https://github.com/eastgenomics/eris/pull/70#issuecomment-1878852669) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#1645](https://github.com/HEXRD/hexrdgui/pull/1645#issuecomment-1878816074) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -5. 🗣 Commented on [#708](https://github.com/bashtage/arch/pull/708#issuecomment-1878635232) in [bashtage/arch](https://github.com/bashtage/arch) -6. 🗣 Commented on [#680](https://github.com/OpenFreeEnergy/openfe/pull/680#issuecomment-1878046360) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#2695](https://github.com/metabrainz/listenbrainz-server/pull/2695#issuecomment-1877731389) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#3027](https://github.com/dipy/dipy/pull/3027#issuecomment-1877718704) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#45](https://github.com/catalyst-team/hydra-slayer/pull/45#issuecomment-1877691436) in [catalyst-team/hydra-slayer](https://github.com/catalyst-team/hydra-slayer) -10. 🗣 Commented on [#487](https://github.com/HEPCloud/decisionengine_modules/pull/487#issuecomment-1877666975) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +1. 🗣 Commented on [#175](https://github.com/eastgenomics/dias_batch_running/pull/175#issuecomment-1879085164) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +2. 🗣 Commented on [#174](https://github.com/eastgenomics/dias_batch_running/pull/174#issuecomment-1879044194) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +3. 🗣 Commented on [#2699](https://github.com/metabrainz/listenbrainz-server/pull/2699#issuecomment-1878950132) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#2697](https://github.com/metabrainz/listenbrainz-server/pull/2697#issuecomment-1878908824) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#70](https://github.com/eastgenomics/eris/pull/70#issuecomment-1878852669) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#1645](https://github.com/HEXRD/hexrdgui/pull/1645#issuecomment-1878816074) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +7. 🗣 Commented on [#708](https://github.com/bashtage/arch/pull/708#issuecomment-1878635232) in [bashtage/arch](https://github.com/bashtage/arch) +8. 🗣 Commented on [#680](https://github.com/OpenFreeEnergy/openfe/pull/680#issuecomment-1878046360) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#2695](https://github.com/metabrainz/listenbrainz-server/pull/2695#issuecomment-1877731389) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#3027](https://github.com/dipy/dipy/pull/3027#issuecomment-1877718704) in [dipy/dipy](https://github.com/dipy/dipy) From 59c4bed338083ef0796df003bb9abcc4f3fc1b98 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Jan 2024 20:17:05 +0000 Subject: [PATCH 1098/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 778e30e1..bd56deac 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#175](https://github.com/eastgenomics/dias_batch_running/pull/175#issuecomment-1879085164) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -2. 🗣 Commented on [#174](https://github.com/eastgenomics/dias_batch_running/pull/174#issuecomment-1879044194) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -3. 🗣 Commented on [#2699](https://github.com/metabrainz/listenbrainz-server/pull/2699#issuecomment-1878950132) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#2697](https://github.com/metabrainz/listenbrainz-server/pull/2697#issuecomment-1878908824) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#70](https://github.com/eastgenomics/eris/pull/70#issuecomment-1878852669) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#1645](https://github.com/HEXRD/hexrdgui/pull/1645#issuecomment-1878816074) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -7. 🗣 Commented on [#708](https://github.com/bashtage/arch/pull/708#issuecomment-1878635232) in [bashtage/arch](https://github.com/bashtage/arch) -8. 🗣 Commented on [#680](https://github.com/OpenFreeEnergy/openfe/pull/680#issuecomment-1878046360) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#2695](https://github.com/metabrainz/listenbrainz-server/pull/2695#issuecomment-1877731389) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#3027](https://github.com/dipy/dipy/pull/3027#issuecomment-1877718704) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +2. 🗣 Commented on [#351](https://github.com/TelebirrApp/TelebirrApp/pull/351#issuecomment-1879200935) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +3. 🗣 Commented on [#347](https://github.com/TelebirrApp/TelebirrApp/pull/347#issuecomment-1879184587) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +4. 🗣 Commented on [#175](https://github.com/eastgenomics/dias_batch_running/pull/175#issuecomment-1879085164) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +5. 🗣 Commented on [#174](https://github.com/eastgenomics/dias_batch_running/pull/174#issuecomment-1879044194) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#2699](https://github.com/metabrainz/listenbrainz-server/pull/2699#issuecomment-1878950132) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#2697](https://github.com/metabrainz/listenbrainz-server/pull/2697#issuecomment-1878908824) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#70](https://github.com/eastgenomics/eris/pull/70#issuecomment-1878852669) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#1645](https://github.com/HEXRD/hexrdgui/pull/1645#issuecomment-1878816074) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +10. 🗣 Commented on [#708](https://github.com/bashtage/arch/pull/708#issuecomment-1878635232) in [bashtage/arch](https://github.com/bashtage/arch) From 56d16ce3a78c9142a319adb0795525d63647bb8e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Jan 2024 20:37:15 +0000 Subject: [PATCH 1099/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bd56deac..f3a9b126 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) -2. 🗣 Commented on [#351](https://github.com/TelebirrApp/TelebirrApp/pull/351#issuecomment-1879200935) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -3. 🗣 Commented on [#347](https://github.com/TelebirrApp/TelebirrApp/pull/347#issuecomment-1879184587) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -4. 🗣 Commented on [#175](https://github.com/eastgenomics/dias_batch_running/pull/175#issuecomment-1879085164) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -5. 🗣 Commented on [#174](https://github.com/eastgenomics/dias_batch_running/pull/174#issuecomment-1879044194) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#2699](https://github.com/metabrainz/listenbrainz-server/pull/2699#issuecomment-1878950132) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#2697](https://github.com/metabrainz/listenbrainz-server/pull/2697#issuecomment-1878908824) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#70](https://github.com/eastgenomics/eris/pull/70#issuecomment-1878852669) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#1645](https://github.com/HEXRD/hexrdgui/pull/1645#issuecomment-1878816074) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -10. 🗣 Commented on [#708](https://github.com/bashtage/arch/pull/708#issuecomment-1878635232) in [bashtage/arch](https://github.com/bashtage/arch) +1. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +2. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +3. 🗣 Commented on [#351](https://github.com/TelebirrApp/TelebirrApp/pull/351#issuecomment-1879200935) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +4. 🗣 Commented on [#347](https://github.com/TelebirrApp/TelebirrApp/pull/347#issuecomment-1879184587) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +5. 🗣 Commented on [#175](https://github.com/eastgenomics/dias_batch_running/pull/175#issuecomment-1879085164) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +6. 🗣 Commented on [#174](https://github.com/eastgenomics/dias_batch_running/pull/174#issuecomment-1879044194) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#2699](https://github.com/metabrainz/listenbrainz-server/pull/2699#issuecomment-1878950132) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#2697](https://github.com/metabrainz/listenbrainz-server/pull/2697#issuecomment-1878908824) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#70](https://github.com/eastgenomics/eris/pull/70#issuecomment-1878852669) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#1645](https://github.com/HEXRD/hexrdgui/pull/1645#issuecomment-1878816074) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) From eeef2a4ac03b01f468cc912af4db6984467caabc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Jan 2024 22:15:57 +0000 Subject: [PATCH 1100/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f3a9b126..21998fa0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -2. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) -3. 🗣 Commented on [#351](https://github.com/TelebirrApp/TelebirrApp/pull/351#issuecomment-1879200935) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -4. 🗣 Commented on [#347](https://github.com/TelebirrApp/TelebirrApp/pull/347#issuecomment-1879184587) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -5. 🗣 Commented on [#175](https://github.com/eastgenomics/dias_batch_running/pull/175#issuecomment-1879085164) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -6. 🗣 Commented on [#174](https://github.com/eastgenomics/dias_batch_running/pull/174#issuecomment-1879044194) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#2699](https://github.com/metabrainz/listenbrainz-server/pull/2699#issuecomment-1878950132) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#2697](https://github.com/metabrainz/listenbrainz-server/pull/2697#issuecomment-1878908824) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#70](https://github.com/eastgenomics/eris/pull/70#issuecomment-1878852669) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#1645](https://github.com/HEXRD/hexrdgui/pull/1645#issuecomment-1878816074) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +1. 🗣 Commented on [#298](https://github.com/AdvancedPhotonSource/tike/pull/298#issuecomment-1879304466) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +2. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +3. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +4. 🗣 Commented on [#351](https://github.com/TelebirrApp/TelebirrApp/pull/351#issuecomment-1879200935) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +5. 🗣 Commented on [#347](https://github.com/TelebirrApp/TelebirrApp/pull/347#issuecomment-1879184587) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +6. 🗣 Commented on [#175](https://github.com/eastgenomics/dias_batch_running/pull/175#issuecomment-1879085164) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +7. 🗣 Commented on [#174](https://github.com/eastgenomics/dias_batch_running/pull/174#issuecomment-1879044194) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#2699](https://github.com/metabrainz/listenbrainz-server/pull/2699#issuecomment-1878950132) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#2697](https://github.com/metabrainz/listenbrainz-server/pull/2697#issuecomment-1878908824) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#70](https://github.com/eastgenomics/eris/pull/70#issuecomment-1878852669) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 31b390337e8919f6ee9d853000dafabf8b658300 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jan 2024 02:40:11 +0000 Subject: [PATCH 1101/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 21998fa0..3ab907a3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#298](https://github.com/AdvancedPhotonSource/tike/pull/298#issuecomment-1879304466) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -2. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -3. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) -4. 🗣 Commented on [#351](https://github.com/TelebirrApp/TelebirrApp/pull/351#issuecomment-1879200935) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -5. 🗣 Commented on [#347](https://github.com/TelebirrApp/TelebirrApp/pull/347#issuecomment-1879184587) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -6. 🗣 Commented on [#175](https://github.com/eastgenomics/dias_batch_running/pull/175#issuecomment-1879085164) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -7. 🗣 Commented on [#174](https://github.com/eastgenomics/dias_batch_running/pull/174#issuecomment-1879044194) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#2699](https://github.com/metabrainz/listenbrainz-server/pull/2699#issuecomment-1878950132) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#2697](https://github.com/metabrainz/listenbrainz-server/pull/2697#issuecomment-1878908824) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#70](https://github.com/eastgenomics/eris/pull/70#issuecomment-1878852669) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#433](https://github.com/manoharan-lab/holopy/pull/433#issuecomment-1879505821) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +2. 🗣 Commented on [#298](https://github.com/AdvancedPhotonSource/tike/pull/298#issuecomment-1879304466) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +3. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +4. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +5. 🗣 Commented on [#351](https://github.com/TelebirrApp/TelebirrApp/pull/351#issuecomment-1879200935) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +6. 🗣 Commented on [#347](https://github.com/TelebirrApp/TelebirrApp/pull/347#issuecomment-1879184587) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +7. 🗣 Commented on [#175](https://github.com/eastgenomics/dias_batch_running/pull/175#issuecomment-1879085164) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +8. 🗣 Commented on [#174](https://github.com/eastgenomics/dias_batch_running/pull/174#issuecomment-1879044194) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#2699](https://github.com/metabrainz/listenbrainz-server/pull/2699#issuecomment-1878950132) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#2697](https://github.com/metabrainz/listenbrainz-server/pull/2697#issuecomment-1878908824) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 61a1cc51e034f94787af2eee01ccef3d19ed6d4f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jan 2024 03:16:51 +0000 Subject: [PATCH 1102/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3ab907a3..13ffc401 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#433](https://github.com/manoharan-lab/holopy/pull/433#issuecomment-1879505821) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -2. 🗣 Commented on [#298](https://github.com/AdvancedPhotonSource/tike/pull/298#issuecomment-1879304466) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -3. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -4. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) -5. 🗣 Commented on [#351](https://github.com/TelebirrApp/TelebirrApp/pull/351#issuecomment-1879200935) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -6. 🗣 Commented on [#347](https://github.com/TelebirrApp/TelebirrApp/pull/347#issuecomment-1879184587) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -7. 🗣 Commented on [#175](https://github.com/eastgenomics/dias_batch_running/pull/175#issuecomment-1879085164) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -8. 🗣 Commented on [#174](https://github.com/eastgenomics/dias_batch_running/pull/174#issuecomment-1879044194) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#2699](https://github.com/metabrainz/listenbrainz-server/pull/2699#issuecomment-1878950132) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#2697](https://github.com/metabrainz/listenbrainz-server/pull/2697#issuecomment-1878908824) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1042](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1042#issuecomment-1879513089) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#433](https://github.com/manoharan-lab/holopy/pull/433#issuecomment-1879505821) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +3. 🗣 Commented on [#298](https://github.com/AdvancedPhotonSource/tike/pull/298#issuecomment-1879304466) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +4. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +5. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +6. 🗣 Commented on [#351](https://github.com/TelebirrApp/TelebirrApp/pull/351#issuecomment-1879200935) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +7. 🗣 Commented on [#347](https://github.com/TelebirrApp/TelebirrApp/pull/347#issuecomment-1879184587) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +8. 🗣 Commented on [#175](https://github.com/eastgenomics/dias_batch_running/pull/175#issuecomment-1879085164) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +9. 🗣 Commented on [#174](https://github.com/eastgenomics/dias_batch_running/pull/174#issuecomment-1879044194) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#2699](https://github.com/metabrainz/listenbrainz-server/pull/2699#issuecomment-1878950132) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From ae49c63eeeeb64f25caf28527fa60015da573bcb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jan 2024 09:14:32 +0000 Subject: [PATCH 1103/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 13ffc401..d92d232a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1042](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1042#issuecomment-1879513089) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#433](https://github.com/manoharan-lab/holopy/pull/433#issuecomment-1879505821) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -3. 🗣 Commented on [#298](https://github.com/AdvancedPhotonSource/tike/pull/298#issuecomment-1879304466) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -4. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -5. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) -6. 🗣 Commented on [#351](https://github.com/TelebirrApp/TelebirrApp/pull/351#issuecomment-1879200935) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -7. 🗣 Commented on [#347](https://github.com/TelebirrApp/TelebirrApp/pull/347#issuecomment-1879184587) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -8. 🗣 Commented on [#175](https://github.com/eastgenomics/dias_batch_running/pull/175#issuecomment-1879085164) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -9. 🗣 Commented on [#174](https://github.com/eastgenomics/dias_batch_running/pull/174#issuecomment-1879044194) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#2699](https://github.com/metabrainz/listenbrainz-server/pull/2699#issuecomment-1878950132) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1464](https://github.com/openSUSE/osc/pull/1464#issuecomment-1879598602) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#1042](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1042#issuecomment-1879513089) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#433](https://github.com/manoharan-lab/holopy/pull/433#issuecomment-1879505821) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +4. 🗣 Commented on [#298](https://github.com/AdvancedPhotonSource/tike/pull/298#issuecomment-1879304466) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +5. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +6. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +7. 🗣 Commented on [#351](https://github.com/TelebirrApp/TelebirrApp/pull/351#issuecomment-1879200935) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +8. 🗣 Commented on [#347](https://github.com/TelebirrApp/TelebirrApp/pull/347#issuecomment-1879184587) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +9. 🗣 Commented on [#175](https://github.com/eastgenomics/dias_batch_running/pull/175#issuecomment-1879085164) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +10. 🗣 Commented on [#174](https://github.com/eastgenomics/dias_batch_running/pull/174#issuecomment-1879044194) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From 73bedee54a1545780f496b28e8686706784090ca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jan 2024 19:37:02 +0000 Subject: [PATCH 1104/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d92d232a..54c66520 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1464](https://github.com/openSUSE/osc/pull/1464#issuecomment-1879598602) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#1042](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1042#issuecomment-1879513089) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#433](https://github.com/manoharan-lab/holopy/pull/433#issuecomment-1879505821) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -4. 🗣 Commented on [#298](https://github.com/AdvancedPhotonSource/tike/pull/298#issuecomment-1879304466) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -5. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -6. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) -7. 🗣 Commented on [#351](https://github.com/TelebirrApp/TelebirrApp/pull/351#issuecomment-1879200935) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -8. 🗣 Commented on [#347](https://github.com/TelebirrApp/TelebirrApp/pull/347#issuecomment-1879184587) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -9. 🗣 Commented on [#175](https://github.com/eastgenomics/dias_batch_running/pull/175#issuecomment-1879085164) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) -10. 🗣 Commented on [#174](https://github.com/eastgenomics/dias_batch_running/pull/174#issuecomment-1879044194) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#400](https://github.com/TelebirrApp/TelebirrApp/pull/400#issuecomment-1879794102) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +2. 🗣 Commented on [#1464](https://github.com/openSUSE/osc/pull/1464#issuecomment-1879598602) in [openSUSE/osc](https://github.com/openSUSE/osc) +3. 🗣 Commented on [#1042](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1042#issuecomment-1879513089) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#433](https://github.com/manoharan-lab/holopy/pull/433#issuecomment-1879505821) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +5. 🗣 Commented on [#298](https://github.com/AdvancedPhotonSource/tike/pull/298#issuecomment-1879304466) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +6. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +7. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +8. 🗣 Commented on [#351](https://github.com/TelebirrApp/TelebirrApp/pull/351#issuecomment-1879200935) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +9. 🗣 Commented on [#347](https://github.com/TelebirrApp/TelebirrApp/pull/347#issuecomment-1879184587) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +10. 🗣 Commented on [#175](https://github.com/eastgenomics/dias_batch_running/pull/175#issuecomment-1879085164) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) From 29501e13b0f083d88b832443143b1912b899ca3a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jan 2024 20:37:23 +0000 Subject: [PATCH 1105/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 54c66520..4a27078b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#400](https://github.com/TelebirrApp/TelebirrApp/pull/400#issuecomment-1879794102) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -2. 🗣 Commented on [#1464](https://github.com/openSUSE/osc/pull/1464#issuecomment-1879598602) in [openSUSE/osc](https://github.com/openSUSE/osc) -3. 🗣 Commented on [#1042](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1042#issuecomment-1879513089) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#433](https://github.com/manoharan-lab/holopy/pull/433#issuecomment-1879505821) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -5. 🗣 Commented on [#298](https://github.com/AdvancedPhotonSource/tike/pull/298#issuecomment-1879304466) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -6. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -7. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) -8. 🗣 Commented on [#351](https://github.com/TelebirrApp/TelebirrApp/pull/351#issuecomment-1879200935) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -9. 🗣 Commented on [#347](https://github.com/TelebirrApp/TelebirrApp/pull/347#issuecomment-1879184587) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -10. 🗣 Commented on [#175](https://github.com/eastgenomics/dias_batch_running/pull/175#issuecomment-1879085164) in [eastgenomics/dias_batch_running](https://github.com/eastgenomics/dias_batch_running) +1. 🗣 Commented on [#416](https://github.com/TelebirrApp/TelebirrApp/pull/416#issuecomment-1879821636) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +2. 🗣 Commented on [#400](https://github.com/TelebirrApp/TelebirrApp/pull/400#issuecomment-1879794102) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +3. 🗣 Commented on [#1464](https://github.com/openSUSE/osc/pull/1464#issuecomment-1879598602) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#1042](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1042#issuecomment-1879513089) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#433](https://github.com/manoharan-lab/holopy/pull/433#issuecomment-1879505821) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +6. 🗣 Commented on [#298](https://github.com/AdvancedPhotonSource/tike/pull/298#issuecomment-1879304466) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +7. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +8. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +9. 🗣 Commented on [#351](https://github.com/TelebirrApp/TelebirrApp/pull/351#issuecomment-1879200935) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +10. 🗣 Commented on [#347](https://github.com/TelebirrApp/TelebirrApp/pull/347#issuecomment-1879184587) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) From 60d174ed0046ac7895492c83a53a1f0b19cb5106 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jan 2024 23:15:37 +0000 Subject: [PATCH 1106/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4a27078b..b9b9629d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#416](https://github.com/TelebirrApp/TelebirrApp/pull/416#issuecomment-1879821636) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -2. 🗣 Commented on [#400](https://github.com/TelebirrApp/TelebirrApp/pull/400#issuecomment-1879794102) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -3. 🗣 Commented on [#1464](https://github.com/openSUSE/osc/pull/1464#issuecomment-1879598602) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#1042](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1042#issuecomment-1879513089) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#433](https://github.com/manoharan-lab/holopy/pull/433#issuecomment-1879505821) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -6. 🗣 Commented on [#298](https://github.com/AdvancedPhotonSource/tike/pull/298#issuecomment-1879304466) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -7. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -8. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) -9. 🗣 Commented on [#351](https://github.com/TelebirrApp/TelebirrApp/pull/351#issuecomment-1879200935) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -10. 🗣 Commented on [#347](https://github.com/TelebirrApp/TelebirrApp/pull/347#issuecomment-1879184587) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +1. 🗣 Commented on [#237](https://github.com/CartoonFan/lutris/pull/237#issuecomment-1879863723) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#416](https://github.com/TelebirrApp/TelebirrApp/pull/416#issuecomment-1879821636) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +3. 🗣 Commented on [#400](https://github.com/TelebirrApp/TelebirrApp/pull/400#issuecomment-1879794102) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +4. 🗣 Commented on [#1464](https://github.com/openSUSE/osc/pull/1464#issuecomment-1879598602) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#1042](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1042#issuecomment-1879513089) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#433](https://github.com/manoharan-lab/holopy/pull/433#issuecomment-1879505821) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +7. 🗣 Commented on [#298](https://github.com/AdvancedPhotonSource/tike/pull/298#issuecomment-1879304466) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +8. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +9. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +10. 🗣 Commented on [#351](https://github.com/TelebirrApp/TelebirrApp/pull/351#issuecomment-1879200935) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) From 3c04164492a8d2bc5e51b4ffb8f8e9dda83c4d63 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Jan 2024 03:17:03 +0000 Subject: [PATCH 1107/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b9b9629d..ed64367a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#237](https://github.com/CartoonFan/lutris/pull/237#issuecomment-1879863723) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#416](https://github.com/TelebirrApp/TelebirrApp/pull/416#issuecomment-1879821636) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -3. 🗣 Commented on [#400](https://github.com/TelebirrApp/TelebirrApp/pull/400#issuecomment-1879794102) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -4. 🗣 Commented on [#1464](https://github.com/openSUSE/osc/pull/1464#issuecomment-1879598602) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#1042](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1042#issuecomment-1879513089) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#433](https://github.com/manoharan-lab/holopy/pull/433#issuecomment-1879505821) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -7. 🗣 Commented on [#298](https://github.com/AdvancedPhotonSource/tike/pull/298#issuecomment-1879304466) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -8. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -9. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) -10. 🗣 Commented on [#351](https://github.com/TelebirrApp/TelebirrApp/pull/351#issuecomment-1879200935) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +1. 🗣 Commented on [#2](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/2#issuecomment-1879922397) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +2. 🗣 Commented on [#237](https://github.com/CartoonFan/lutris/pull/237#issuecomment-1879863723) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#416](https://github.com/TelebirrApp/TelebirrApp/pull/416#issuecomment-1879821636) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +4. 🗣 Commented on [#400](https://github.com/TelebirrApp/TelebirrApp/pull/400#issuecomment-1879794102) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +5. 🗣 Commented on [#1464](https://github.com/openSUSE/osc/pull/1464#issuecomment-1879598602) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#1042](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1042#issuecomment-1879513089) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#433](https://github.com/manoharan-lab/holopy/pull/433#issuecomment-1879505821) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +8. 🗣 Commented on [#298](https://github.com/AdvancedPhotonSource/tike/pull/298#issuecomment-1879304466) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +9. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +10. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) From f286812a17df1f47233318fc161d7afe7a3792a4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Jan 2024 05:15:43 +0000 Subject: [PATCH 1108/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ed64367a..e74b5c8d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/2#issuecomment-1879922397) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -2. 🗣 Commented on [#237](https://github.com/CartoonFan/lutris/pull/237#issuecomment-1879863723) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#416](https://github.com/TelebirrApp/TelebirrApp/pull/416#issuecomment-1879821636) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -4. 🗣 Commented on [#400](https://github.com/TelebirrApp/TelebirrApp/pull/400#issuecomment-1879794102) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -5. 🗣 Commented on [#1464](https://github.com/openSUSE/osc/pull/1464#issuecomment-1879598602) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#1042](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1042#issuecomment-1879513089) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#433](https://github.com/manoharan-lab/holopy/pull/433#issuecomment-1879505821) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -8. 🗣 Commented on [#298](https://github.com/AdvancedPhotonSource/tike/pull/298#issuecomment-1879304466) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -9. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -10. 🗣 Commented on [#45](https://github.com/MDAnalysis/hole2-mdakit/pull/45#issuecomment-1879209576) in [MDAnalysis/hole2-mdakit](https://github.com/MDAnalysis/hole2-mdakit) +1. 🗣 Commented on [#3](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/3#issuecomment-1879947566) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +2. 🗣 Commented on [#2](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/2#issuecomment-1879922397) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +3. 🗣 Commented on [#237](https://github.com/CartoonFan/lutris/pull/237#issuecomment-1879863723) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#416](https://github.com/TelebirrApp/TelebirrApp/pull/416#issuecomment-1879821636) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +5. 🗣 Commented on [#400](https://github.com/TelebirrApp/TelebirrApp/pull/400#issuecomment-1879794102) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +6. 🗣 Commented on [#1464](https://github.com/openSUSE/osc/pull/1464#issuecomment-1879598602) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#1042](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1042#issuecomment-1879513089) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#433](https://github.com/manoharan-lab/holopy/pull/433#issuecomment-1879505821) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +9. 🗣 Commented on [#298](https://github.com/AdvancedPhotonSource/tike/pull/298#issuecomment-1879304466) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +10. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) From 953e2dd4d8d044ec901fe66873e02beff711012a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Jan 2024 06:37:46 +0000 Subject: [PATCH 1109/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e74b5c8d..2d6ec013 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/3#issuecomment-1879947566) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -2. 🗣 Commented on [#2](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/2#issuecomment-1879922397) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -3. 🗣 Commented on [#237](https://github.com/CartoonFan/lutris/pull/237#issuecomment-1879863723) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#416](https://github.com/TelebirrApp/TelebirrApp/pull/416#issuecomment-1879821636) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -5. 🗣 Commented on [#400](https://github.com/TelebirrApp/TelebirrApp/pull/400#issuecomment-1879794102) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -6. 🗣 Commented on [#1464](https://github.com/openSUSE/osc/pull/1464#issuecomment-1879598602) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#1042](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1042#issuecomment-1879513089) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#433](https://github.com/manoharan-lab/holopy/pull/433#issuecomment-1879505821) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -9. 🗣 Commented on [#298](https://github.com/AdvancedPhotonSource/tike/pull/298#issuecomment-1879304466) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -10. 🗣 Commented on [#354](https://github.com/TelebirrApp/TelebirrApp/pull/354#issuecomment-1879216742) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +1. 🗣 Commented on [#4](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/4#issuecomment-1879970794) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +2. 🗣 Commented on [#4415](https://github.com/MDAnalysis/mdanalysis/pull/4415#issuecomment-1879970537) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#3](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/3#issuecomment-1879947566) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +4. 🗣 Commented on [#2](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/2#issuecomment-1879922397) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +5. 🗣 Commented on [#237](https://github.com/CartoonFan/lutris/pull/237#issuecomment-1879863723) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#416](https://github.com/TelebirrApp/TelebirrApp/pull/416#issuecomment-1879821636) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +7. 🗣 Commented on [#400](https://github.com/TelebirrApp/TelebirrApp/pull/400#issuecomment-1879794102) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +8. 🗣 Commented on [#1464](https://github.com/openSUSE/osc/pull/1464#issuecomment-1879598602) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#1042](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1042#issuecomment-1879513089) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#433](https://github.com/manoharan-lab/holopy/pull/433#issuecomment-1879505821) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) From 645eb96535eb41a864f6413ba0891beb31079bc3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Jan 2024 07:14:27 +0000 Subject: [PATCH 1110/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2d6ec013..aa02d76e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/4#issuecomment-1879970794) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -2. 🗣 Commented on [#4415](https://github.com/MDAnalysis/mdanalysis/pull/4415#issuecomment-1879970537) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#3](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/3#issuecomment-1879947566) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -4. 🗣 Commented on [#2](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/2#issuecomment-1879922397) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -5. 🗣 Commented on [#237](https://github.com/CartoonFan/lutris/pull/237#issuecomment-1879863723) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#416](https://github.com/TelebirrApp/TelebirrApp/pull/416#issuecomment-1879821636) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -7. 🗣 Commented on [#400](https://github.com/TelebirrApp/TelebirrApp/pull/400#issuecomment-1879794102) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -8. 🗣 Commented on [#1464](https://github.com/openSUSE/osc/pull/1464#issuecomment-1879598602) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#1042](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1042#issuecomment-1879513089) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#433](https://github.com/manoharan-lab/holopy/pull/433#issuecomment-1879505821) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +1. 🗣 Commented on [#5](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/5#issuecomment-1879972478) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +2. 🗣 Commented on [#4](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/4#issuecomment-1879970794) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +3. 🗣 Commented on [#4415](https://github.com/MDAnalysis/mdanalysis/pull/4415#issuecomment-1879970537) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#3](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/3#issuecomment-1879947566) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +5. 🗣 Commented on [#2](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/2#issuecomment-1879922397) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +6. 🗣 Commented on [#237](https://github.com/CartoonFan/lutris/pull/237#issuecomment-1879863723) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#416](https://github.com/TelebirrApp/TelebirrApp/pull/416#issuecomment-1879821636) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +8. 🗣 Commented on [#400](https://github.com/TelebirrApp/TelebirrApp/pull/400#issuecomment-1879794102) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +9. 🗣 Commented on [#1464](https://github.com/openSUSE/osc/pull/1464#issuecomment-1879598602) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#1042](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1042#issuecomment-1879513089) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 6a5a8916e7e8fcb2ef4b43b59bfc027f04373c65 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Jan 2024 09:14:58 +0000 Subject: [PATCH 1111/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index aa02d76e..53e85c3a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/5#issuecomment-1879972478) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -2. 🗣 Commented on [#4](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/4#issuecomment-1879970794) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -3. 🗣 Commented on [#4415](https://github.com/MDAnalysis/mdanalysis/pull/4415#issuecomment-1879970537) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#3](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/3#issuecomment-1879947566) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -5. 🗣 Commented on [#2](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/2#issuecomment-1879922397) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -6. 🗣 Commented on [#237](https://github.com/CartoonFan/lutris/pull/237#issuecomment-1879863723) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#416](https://github.com/TelebirrApp/TelebirrApp/pull/416#issuecomment-1879821636) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -8. 🗣 Commented on [#400](https://github.com/TelebirrApp/TelebirrApp/pull/400#issuecomment-1879794102) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -9. 🗣 Commented on [#1464](https://github.com/openSUSE/osc/pull/1464#issuecomment-1879598602) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#1042](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1042#issuecomment-1879513089) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#953](https://github.com/avaframe/AvaFrame/pull/953#issuecomment-1879994954) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#5](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/5#issuecomment-1879972478) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +3. 🗣 Commented on [#4](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/4#issuecomment-1879970794) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +4. 🗣 Commented on [#4415](https://github.com/MDAnalysis/mdanalysis/pull/4415#issuecomment-1879970537) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#3](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/3#issuecomment-1879947566) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +6. 🗣 Commented on [#2](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/2#issuecomment-1879922397) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +7. 🗣 Commented on [#237](https://github.com/CartoonFan/lutris/pull/237#issuecomment-1879863723) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#416](https://github.com/TelebirrApp/TelebirrApp/pull/416#issuecomment-1879821636) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +9. 🗣 Commented on [#400](https://github.com/TelebirrApp/TelebirrApp/pull/400#issuecomment-1879794102) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +10. 🗣 Commented on [#1464](https://github.com/openSUSE/osc/pull/1464#issuecomment-1879598602) in [openSUSE/osc](https://github.com/openSUSE/osc) From 6fa0dab78fdc58be899a2cc001c53acf58992924 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 02:11:18 +0000 Subject: [PATCH 1112/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 53e85c3a..dfdd741e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#953](https://github.com/avaframe/AvaFrame/pull/953#issuecomment-1879994954) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#5](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/5#issuecomment-1879972478) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -3. 🗣 Commented on [#4](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/4#issuecomment-1879970794) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -4. 🗣 Commented on [#4415](https://github.com/MDAnalysis/mdanalysis/pull/4415#issuecomment-1879970537) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#3](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/3#issuecomment-1879947566) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -6. 🗣 Commented on [#2](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/2#issuecomment-1879922397) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -7. 🗣 Commented on [#237](https://github.com/CartoonFan/lutris/pull/237#issuecomment-1879863723) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#416](https://github.com/TelebirrApp/TelebirrApp/pull/416#issuecomment-1879821636) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -9. 🗣 Commented on [#400](https://github.com/TelebirrApp/TelebirrApp/pull/400#issuecomment-1879794102) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -10. 🗣 Commented on [#1464](https://github.com/openSUSE/osc/pull/1464#issuecomment-1879598602) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#238](https://github.com/CartoonFan/lutris/pull/238#issuecomment-1880284350) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#953](https://github.com/avaframe/AvaFrame/pull/953#issuecomment-1879994954) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#5](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/5#issuecomment-1879972478) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +4. 🗣 Commented on [#4](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/4#issuecomment-1879970794) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +5. 🗣 Commented on [#4415](https://github.com/MDAnalysis/mdanalysis/pull/4415#issuecomment-1879970537) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#3](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/3#issuecomment-1879947566) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +7. 🗣 Commented on [#2](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/2#issuecomment-1879922397) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +8. 🗣 Commented on [#237](https://github.com/CartoonFan/lutris/pull/237#issuecomment-1879863723) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#416](https://github.com/TelebirrApp/TelebirrApp/pull/416#issuecomment-1879821636) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +10. 🗣 Commented on [#400](https://github.com/TelebirrApp/TelebirrApp/pull/400#issuecomment-1879794102) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) From f39f2a24e2d6c442857062fa5a85cd4625e2efc3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 03:17:34 +0000 Subject: [PATCH 1113/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dfdd741e..aad992f4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#238](https://github.com/CartoonFan/lutris/pull/238#issuecomment-1880284350) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#953](https://github.com/avaframe/AvaFrame/pull/953#issuecomment-1879994954) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#5](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/5#issuecomment-1879972478) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -4. 🗣 Commented on [#4](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/4#issuecomment-1879970794) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -5. 🗣 Commented on [#4415](https://github.com/MDAnalysis/mdanalysis/pull/4415#issuecomment-1879970537) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#3](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/3#issuecomment-1879947566) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -7. 🗣 Commented on [#2](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/2#issuecomment-1879922397) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -8. 🗣 Commented on [#237](https://github.com/CartoonFan/lutris/pull/237#issuecomment-1879863723) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#416](https://github.com/TelebirrApp/TelebirrApp/pull/416#issuecomment-1879821636) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) -10. 🗣 Commented on [#400](https://github.com/TelebirrApp/TelebirrApp/pull/400#issuecomment-1879794102) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +1. 🗣 Commented on [#9118](https://github.com/statsmodels/statsmodels/pull/9118#issuecomment-1880329486) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +2. 🗣 Commented on [#238](https://github.com/CartoonFan/lutris/pull/238#issuecomment-1880284350) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#953](https://github.com/avaframe/AvaFrame/pull/953#issuecomment-1879994954) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#5](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/5#issuecomment-1879972478) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +5. 🗣 Commented on [#4](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/4#issuecomment-1879970794) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +6. 🗣 Commented on [#4415](https://github.com/MDAnalysis/mdanalysis/pull/4415#issuecomment-1879970537) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#3](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/3#issuecomment-1879947566) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +8. 🗣 Commented on [#2](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/2#issuecomment-1879922397) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +9. 🗣 Commented on [#237](https://github.com/CartoonFan/lutris/pull/237#issuecomment-1879863723) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#416](https://github.com/TelebirrApp/TelebirrApp/pull/416#issuecomment-1879821636) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) From 9c5fde429c65ed4c20b39732ece4726757075b98 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 10:18:48 +0000 Subject: [PATCH 1114/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index aad992f4..4e547fd6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#9118](https://github.com/statsmodels/statsmodels/pull/9118#issuecomment-1880329486) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -2. 🗣 Commented on [#238](https://github.com/CartoonFan/lutris/pull/238#issuecomment-1880284350) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#953](https://github.com/avaframe/AvaFrame/pull/953#issuecomment-1879994954) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#5](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/5#issuecomment-1879972478) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -5. 🗣 Commented on [#4](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/4#issuecomment-1879970794) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -6. 🗣 Commented on [#4415](https://github.com/MDAnalysis/mdanalysis/pull/4415#issuecomment-1879970537) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#3](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/3#issuecomment-1879947566) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -8. 🗣 Commented on [#2](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/2#issuecomment-1879922397) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -9. 🗣 Commented on [#237](https://github.com/CartoonFan/lutris/pull/237#issuecomment-1879863723) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#416](https://github.com/TelebirrApp/TelebirrApp/pull/416#issuecomment-1879821636) in [TelebirrApp/TelebirrApp](https://github.com/TelebirrApp/TelebirrApp) +1. 🗣 Commented on [#681](https://github.com/OpenFreeEnergy/openfe/pull/681#issuecomment-1880669731) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#9118](https://github.com/statsmodels/statsmodels/pull/9118#issuecomment-1880329486) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#238](https://github.com/CartoonFan/lutris/pull/238#issuecomment-1880284350) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#953](https://github.com/avaframe/AvaFrame/pull/953#issuecomment-1879994954) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#5](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/5#issuecomment-1879972478) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +6. 🗣 Commented on [#4](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/4#issuecomment-1879970794) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +7. 🗣 Commented on [#4415](https://github.com/MDAnalysis/mdanalysis/pull/4415#issuecomment-1879970537) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#3](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/3#issuecomment-1879947566) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +9. 🗣 Commented on [#2](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/2#issuecomment-1879922397) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +10. 🗣 Commented on [#237](https://github.com/CartoonFan/lutris/pull/237#issuecomment-1879863723) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 7f9cc1cba4b4f33d8202ccd17491b6081d8ae752 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 14:15:56 +0000 Subject: [PATCH 1115/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4e547fd6..dfc4d4a2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#681](https://github.com/OpenFreeEnergy/openfe/pull/681#issuecomment-1880669731) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#9118](https://github.com/statsmodels/statsmodels/pull/9118#issuecomment-1880329486) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#238](https://github.com/CartoonFan/lutris/pull/238#issuecomment-1880284350) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#953](https://github.com/avaframe/AvaFrame/pull/953#issuecomment-1879994954) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#5](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/5#issuecomment-1879972478) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -6. 🗣 Commented on [#4](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/4#issuecomment-1879970794) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -7. 🗣 Commented on [#4415](https://github.com/MDAnalysis/mdanalysis/pull/4415#issuecomment-1879970537) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#3](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/3#issuecomment-1879947566) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -9. 🗣 Commented on [#2](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/2#issuecomment-1879922397) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -10. 🗣 Commented on [#237](https://github.com/CartoonFan/lutris/pull/237#issuecomment-1879863723) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#93](https://github.com/eastgenomics/eggd_conductor/pull/93#issuecomment-1881077757) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +2. 🗣 Commented on [#681](https://github.com/OpenFreeEnergy/openfe/pull/681#issuecomment-1880669731) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#9118](https://github.com/statsmodels/statsmodels/pull/9118#issuecomment-1880329486) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +4. 🗣 Commented on [#238](https://github.com/CartoonFan/lutris/pull/238#issuecomment-1880284350) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#953](https://github.com/avaframe/AvaFrame/pull/953#issuecomment-1879994954) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#5](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/5#issuecomment-1879972478) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +7. 🗣 Commented on [#4](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/4#issuecomment-1879970794) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +8. 🗣 Commented on [#4415](https://github.com/MDAnalysis/mdanalysis/pull/4415#issuecomment-1879970537) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#3](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/3#issuecomment-1879947566) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +10. 🗣 Commented on [#2](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/2#issuecomment-1879922397) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) From 9753e063d220ee9ffc99ca27e48cfbd70b10d68c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 15:17:16 +0000 Subject: [PATCH 1116/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dfc4d4a2..879d5a5b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#93](https://github.com/eastgenomics/eggd_conductor/pull/93#issuecomment-1881077757) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -2. 🗣 Commented on [#681](https://github.com/OpenFreeEnergy/openfe/pull/681#issuecomment-1880669731) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#9118](https://github.com/statsmodels/statsmodels/pull/9118#issuecomment-1880329486) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -4. 🗣 Commented on [#238](https://github.com/CartoonFan/lutris/pull/238#issuecomment-1880284350) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#953](https://github.com/avaframe/AvaFrame/pull/953#issuecomment-1879994954) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#5](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/5#issuecomment-1879972478) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -7. 🗣 Commented on [#4](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/4#issuecomment-1879970794) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -8. 🗣 Commented on [#4415](https://github.com/MDAnalysis/mdanalysis/pull/4415#issuecomment-1879970537) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#3](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/3#issuecomment-1879947566) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -10. 🗣 Commented on [#2](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/2#issuecomment-1879922397) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +1. 🗣 Commented on [#106](https://github.com/Richard-Sti/csiborgtools/pull/106#issuecomment-1881143927) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +2. 🗣 Commented on [#93](https://github.com/eastgenomics/eggd_conductor/pull/93#issuecomment-1881077757) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +3. 🗣 Commented on [#681](https://github.com/OpenFreeEnergy/openfe/pull/681#issuecomment-1880669731) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#9118](https://github.com/statsmodels/statsmodels/pull/9118#issuecomment-1880329486) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#238](https://github.com/CartoonFan/lutris/pull/238#issuecomment-1880284350) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#953](https://github.com/avaframe/AvaFrame/pull/953#issuecomment-1879994954) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#5](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/5#issuecomment-1879972478) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +8. 🗣 Commented on [#4](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/4#issuecomment-1879970794) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +9. 🗣 Commented on [#4415](https://github.com/MDAnalysis/mdanalysis/pull/4415#issuecomment-1879970537) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#3](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/3#issuecomment-1879947566) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) From 3014eaa21b10376fbb71d4286d6b8b45faddfb5b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 17:15:14 +0000 Subject: [PATCH 1117/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 879d5a5b..1f289bcb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#106](https://github.com/Richard-Sti/csiborgtools/pull/106#issuecomment-1881143927) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -2. 🗣 Commented on [#93](https://github.com/eastgenomics/eggd_conductor/pull/93#issuecomment-1881077757) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -3. 🗣 Commented on [#681](https://github.com/OpenFreeEnergy/openfe/pull/681#issuecomment-1880669731) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#9118](https://github.com/statsmodels/statsmodels/pull/9118#issuecomment-1880329486) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -5. 🗣 Commented on [#238](https://github.com/CartoonFan/lutris/pull/238#issuecomment-1880284350) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#953](https://github.com/avaframe/AvaFrame/pull/953#issuecomment-1879994954) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#5](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/5#issuecomment-1879972478) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -8. 🗣 Commented on [#4](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/4#issuecomment-1879970794) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -9. 🗣 Commented on [#4415](https://github.com/MDAnalysis/mdanalysis/pull/4415#issuecomment-1879970537) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#3](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/3#issuecomment-1879947566) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +1. 🗣 Commented on [#241](https://github.com/wtbarnes/fiasco/pull/241#issuecomment-1881475309) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) +2. 🗣 Commented on [#106](https://github.com/Richard-Sti/csiborgtools/pull/106#issuecomment-1881143927) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +3. 🗣 Commented on [#93](https://github.com/eastgenomics/eggd_conductor/pull/93#issuecomment-1881077757) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +4. 🗣 Commented on [#681](https://github.com/OpenFreeEnergy/openfe/pull/681#issuecomment-1880669731) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#9118](https://github.com/statsmodels/statsmodels/pull/9118#issuecomment-1880329486) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +6. 🗣 Commented on [#238](https://github.com/CartoonFan/lutris/pull/238#issuecomment-1880284350) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#953](https://github.com/avaframe/AvaFrame/pull/953#issuecomment-1879994954) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#5](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/5#issuecomment-1879972478) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +9. 🗣 Commented on [#4](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/4#issuecomment-1879970794) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +10. 🗣 Commented on [#4415](https://github.com/MDAnalysis/mdanalysis/pull/4415#issuecomment-1879970537) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 5392f99daacc38cda2c56c5522de4ef2412fe074 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 20:37:21 +0000 Subject: [PATCH 1118/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1f289bcb..e128cd4c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#241](https://github.com/wtbarnes/fiasco/pull/241#issuecomment-1881475309) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) -2. 🗣 Commented on [#106](https://github.com/Richard-Sti/csiborgtools/pull/106#issuecomment-1881143927) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -3. 🗣 Commented on [#93](https://github.com/eastgenomics/eggd_conductor/pull/93#issuecomment-1881077757) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -4. 🗣 Commented on [#681](https://github.com/OpenFreeEnergy/openfe/pull/681#issuecomment-1880669731) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#9118](https://github.com/statsmodels/statsmodels/pull/9118#issuecomment-1880329486) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -6. 🗣 Commented on [#238](https://github.com/CartoonFan/lutris/pull/238#issuecomment-1880284350) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#953](https://github.com/avaframe/AvaFrame/pull/953#issuecomment-1879994954) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#5](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/5#issuecomment-1879972478) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -9. 🗣 Commented on [#4](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/4#issuecomment-1879970794) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -10. 🗣 Commented on [#4415](https://github.com/MDAnalysis/mdanalysis/pull/4415#issuecomment-1879970537) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#4417](https://github.com/MDAnalysis/mdanalysis/pull/4417#issuecomment-1881775542) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#468](https://github.com/oemof/tespy/pull/468#issuecomment-1881764189) in [oemof/tespy](https://github.com/oemof/tespy) +3. 🗣 Commented on [#241](https://github.com/wtbarnes/fiasco/pull/241#issuecomment-1881475309) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) +4. 🗣 Commented on [#106](https://github.com/Richard-Sti/csiborgtools/pull/106#issuecomment-1881143927) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +5. 🗣 Commented on [#93](https://github.com/eastgenomics/eggd_conductor/pull/93#issuecomment-1881077757) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +6. 🗣 Commented on [#681](https://github.com/OpenFreeEnergy/openfe/pull/681#issuecomment-1880669731) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#9118](https://github.com/statsmodels/statsmodels/pull/9118#issuecomment-1880329486) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +8. 🗣 Commented on [#238](https://github.com/CartoonFan/lutris/pull/238#issuecomment-1880284350) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#953](https://github.com/avaframe/AvaFrame/pull/953#issuecomment-1879994954) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#5](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/5#issuecomment-1879972478) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) From 283f4e5595b700c2b7da21cfaf063728830aeb74 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 21:37:17 +0000 Subject: [PATCH 1119/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e128cd4c..ab71b852 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4417](https://github.com/MDAnalysis/mdanalysis/pull/4417#issuecomment-1881775542) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#468](https://github.com/oemof/tespy/pull/468#issuecomment-1881764189) in [oemof/tespy](https://github.com/oemof/tespy) -3. 🗣 Commented on [#241](https://github.com/wtbarnes/fiasco/pull/241#issuecomment-1881475309) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) -4. 🗣 Commented on [#106](https://github.com/Richard-Sti/csiborgtools/pull/106#issuecomment-1881143927) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -5. 🗣 Commented on [#93](https://github.com/eastgenomics/eggd_conductor/pull/93#issuecomment-1881077757) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -6. 🗣 Commented on [#681](https://github.com/OpenFreeEnergy/openfe/pull/681#issuecomment-1880669731) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#9118](https://github.com/statsmodels/statsmodels/pull/9118#issuecomment-1880329486) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -8. 🗣 Commented on [#238](https://github.com/CartoonFan/lutris/pull/238#issuecomment-1880284350) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#953](https://github.com/avaframe/AvaFrame/pull/953#issuecomment-1879994954) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#5](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/5#issuecomment-1879972478) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +1. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881848921) in [innobi/pantab](https://github.com/innobi/pantab) +2. 🗣 Commented on [#4417](https://github.com/MDAnalysis/mdanalysis/pull/4417#issuecomment-1881775542) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#468](https://github.com/oemof/tespy/pull/468#issuecomment-1881764189) in [oemof/tespy](https://github.com/oemof/tespy) +4. 🗣 Commented on [#241](https://github.com/wtbarnes/fiasco/pull/241#issuecomment-1881475309) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) +5. 🗣 Commented on [#106](https://github.com/Richard-Sti/csiborgtools/pull/106#issuecomment-1881143927) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +6. 🗣 Commented on [#93](https://github.com/eastgenomics/eggd_conductor/pull/93#issuecomment-1881077757) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +7. 🗣 Commented on [#681](https://github.com/OpenFreeEnergy/openfe/pull/681#issuecomment-1880669731) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#9118](https://github.com/statsmodels/statsmodels/pull/9118#issuecomment-1880329486) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +9. 🗣 Commented on [#238](https://github.com/CartoonFan/lutris/pull/238#issuecomment-1880284350) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#953](https://github.com/avaframe/AvaFrame/pull/953#issuecomment-1879994954) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From eb87d1c4d47540f76a1c3358c58758eb94899da3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 23:16:45 +0000 Subject: [PATCH 1120/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ab71b852..caed8d61 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881848921) in [innobi/pantab](https://github.com/innobi/pantab) -2. 🗣 Commented on [#4417](https://github.com/MDAnalysis/mdanalysis/pull/4417#issuecomment-1881775542) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#468](https://github.com/oemof/tespy/pull/468#issuecomment-1881764189) in [oemof/tespy](https://github.com/oemof/tespy) -4. 🗣 Commented on [#241](https://github.com/wtbarnes/fiasco/pull/241#issuecomment-1881475309) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) -5. 🗣 Commented on [#106](https://github.com/Richard-Sti/csiborgtools/pull/106#issuecomment-1881143927) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -6. 🗣 Commented on [#93](https://github.com/eastgenomics/eggd_conductor/pull/93#issuecomment-1881077757) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -7. 🗣 Commented on [#681](https://github.com/OpenFreeEnergy/openfe/pull/681#issuecomment-1880669731) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#9118](https://github.com/statsmodels/statsmodels/pull/9118#issuecomment-1880329486) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -9. 🗣 Commented on [#238](https://github.com/CartoonFan/lutris/pull/238#issuecomment-1880284350) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#953](https://github.com/avaframe/AvaFrame/pull/953#issuecomment-1879994954) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881958373) in [innobi/pantab](https://github.com/innobi/pantab) +2. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881848921) in [innobi/pantab](https://github.com/innobi/pantab) +3. 🗣 Commented on [#4417](https://github.com/MDAnalysis/mdanalysis/pull/4417#issuecomment-1881775542) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#468](https://github.com/oemof/tespy/pull/468#issuecomment-1881764189) in [oemof/tespy](https://github.com/oemof/tespy) +5. 🗣 Commented on [#241](https://github.com/wtbarnes/fiasco/pull/241#issuecomment-1881475309) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) +6. 🗣 Commented on [#106](https://github.com/Richard-Sti/csiborgtools/pull/106#issuecomment-1881143927) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +7. 🗣 Commented on [#93](https://github.com/eastgenomics/eggd_conductor/pull/93#issuecomment-1881077757) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +8. 🗣 Commented on [#681](https://github.com/OpenFreeEnergy/openfe/pull/681#issuecomment-1880669731) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#9118](https://github.com/statsmodels/statsmodels/pull/9118#issuecomment-1880329486) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +10. 🗣 Commented on [#238](https://github.com/CartoonFan/lutris/pull/238#issuecomment-1880284350) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From ea5320df136c6857d62cc6acc3e0e1fc96f0fdf2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 23:37:24 +0000 Subject: [PATCH 1121/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index caed8d61..645f5e5f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881958373) in [innobi/pantab](https://github.com/innobi/pantab) -2. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881848921) in [innobi/pantab](https://github.com/innobi/pantab) -3. 🗣 Commented on [#4417](https://github.com/MDAnalysis/mdanalysis/pull/4417#issuecomment-1881775542) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#468](https://github.com/oemof/tespy/pull/468#issuecomment-1881764189) in [oemof/tespy](https://github.com/oemof/tespy) -5. 🗣 Commented on [#241](https://github.com/wtbarnes/fiasco/pull/241#issuecomment-1881475309) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) -6. 🗣 Commented on [#106](https://github.com/Richard-Sti/csiborgtools/pull/106#issuecomment-1881143927) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -7. 🗣 Commented on [#93](https://github.com/eastgenomics/eggd_conductor/pull/93#issuecomment-1881077757) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -8. 🗣 Commented on [#681](https://github.com/OpenFreeEnergy/openfe/pull/681#issuecomment-1880669731) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#9118](https://github.com/statsmodels/statsmodels/pull/9118#issuecomment-1880329486) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -10. 🗣 Commented on [#238](https://github.com/CartoonFan/lutris/pull/238#issuecomment-1880284350) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881985415) in [innobi/pantab](https://github.com/innobi/pantab) +2. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881975217) in [innobi/pantab](https://github.com/innobi/pantab) +3. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881958373) in [innobi/pantab](https://github.com/innobi/pantab) +4. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881848921) in [innobi/pantab](https://github.com/innobi/pantab) +5. 🗣 Commented on [#4417](https://github.com/MDAnalysis/mdanalysis/pull/4417#issuecomment-1881775542) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#468](https://github.com/oemof/tespy/pull/468#issuecomment-1881764189) in [oemof/tespy](https://github.com/oemof/tespy) +7. 🗣 Commented on [#241](https://github.com/wtbarnes/fiasco/pull/241#issuecomment-1881475309) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) +8. 🗣 Commented on [#106](https://github.com/Richard-Sti/csiborgtools/pull/106#issuecomment-1881143927) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +9. 🗣 Commented on [#93](https://github.com/eastgenomics/eggd_conductor/pull/93#issuecomment-1881077757) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +10. 🗣 Commented on [#681](https://github.com/OpenFreeEnergy/openfe/pull/681#issuecomment-1880669731) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 8e7272dc320435ce04a850ef6d842ab86571dece Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Jan 2024 01:14:43 +0000 Subject: [PATCH 1122/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 645f5e5f..9ebb3678 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881985415) in [innobi/pantab](https://github.com/innobi/pantab) -2. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881975217) in [innobi/pantab](https://github.com/innobi/pantab) -3. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881958373) in [innobi/pantab](https://github.com/innobi/pantab) -4. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881848921) in [innobi/pantab](https://github.com/innobi/pantab) -5. 🗣 Commented on [#4417](https://github.com/MDAnalysis/mdanalysis/pull/4417#issuecomment-1881775542) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#468](https://github.com/oemof/tespy/pull/468#issuecomment-1881764189) in [oemof/tespy](https://github.com/oemof/tespy) -7. 🗣 Commented on [#241](https://github.com/wtbarnes/fiasco/pull/241#issuecomment-1881475309) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) -8. 🗣 Commented on [#106](https://github.com/Richard-Sti/csiborgtools/pull/106#issuecomment-1881143927) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -9. 🗣 Commented on [#93](https://github.com/eastgenomics/eggd_conductor/pull/93#issuecomment-1881077757) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -10. 🗣 Commented on [#681](https://github.com/OpenFreeEnergy/openfe/pull/681#issuecomment-1880669731) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882024522) in [innobi/pantab](https://github.com/innobi/pantab) +2. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881985415) in [innobi/pantab](https://github.com/innobi/pantab) +3. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881975217) in [innobi/pantab](https://github.com/innobi/pantab) +4. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881958373) in [innobi/pantab](https://github.com/innobi/pantab) +5. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881848921) in [innobi/pantab](https://github.com/innobi/pantab) +6. 🗣 Commented on [#4417](https://github.com/MDAnalysis/mdanalysis/pull/4417#issuecomment-1881775542) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#468](https://github.com/oemof/tespy/pull/468#issuecomment-1881764189) in [oemof/tespy](https://github.com/oemof/tespy) +8. 🗣 Commented on [#241](https://github.com/wtbarnes/fiasco/pull/241#issuecomment-1881475309) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) +9. 🗣 Commented on [#106](https://github.com/Richard-Sti/csiborgtools/pull/106#issuecomment-1881143927) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +10. 🗣 Commented on [#93](https://github.com/eastgenomics/eggd_conductor/pull/93#issuecomment-1881077757) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) From 6af4f126cd46dc6e7176377dcacef2d1f5c2bec7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Jan 2024 02:11:56 +0000 Subject: [PATCH 1123/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9ebb3678..31d5f343 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882024522) in [innobi/pantab](https://github.com/innobi/pantab) -2. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881985415) in [innobi/pantab](https://github.com/innobi/pantab) -3. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881975217) in [innobi/pantab](https://github.com/innobi/pantab) -4. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881958373) in [innobi/pantab](https://github.com/innobi/pantab) -5. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881848921) in [innobi/pantab](https://github.com/innobi/pantab) -6. 🗣 Commented on [#4417](https://github.com/MDAnalysis/mdanalysis/pull/4417#issuecomment-1881775542) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#468](https://github.com/oemof/tespy/pull/468#issuecomment-1881764189) in [oemof/tespy](https://github.com/oemof/tespy) -8. 🗣 Commented on [#241](https://github.com/wtbarnes/fiasco/pull/241#issuecomment-1881475309) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) -9. 🗣 Commented on [#106](https://github.com/Richard-Sti/csiborgtools/pull/106#issuecomment-1881143927) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -10. 🗣 Commented on [#93](https://github.com/eastgenomics/eggd_conductor/pull/93#issuecomment-1881077757) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +1. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882129307) in [innobi/pantab](https://github.com/innobi/pantab) +2. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882024522) in [innobi/pantab](https://github.com/innobi/pantab) +3. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881985415) in [innobi/pantab](https://github.com/innobi/pantab) +4. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881975217) in [innobi/pantab](https://github.com/innobi/pantab) +5. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881958373) in [innobi/pantab](https://github.com/innobi/pantab) +6. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881848921) in [innobi/pantab](https://github.com/innobi/pantab) +7. 🗣 Commented on [#4417](https://github.com/MDAnalysis/mdanalysis/pull/4417#issuecomment-1881775542) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#468](https://github.com/oemof/tespy/pull/468#issuecomment-1881764189) in [oemof/tespy](https://github.com/oemof/tespy) +9. 🗣 Commented on [#241](https://github.com/wtbarnes/fiasco/pull/241#issuecomment-1881475309) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) +10. 🗣 Commented on [#106](https://github.com/Richard-Sti/csiborgtools/pull/106#issuecomment-1881143927) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) From cac642de2a9292cc9028f6afe70a66b9a826eebb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Jan 2024 03:17:40 +0000 Subject: [PATCH 1124/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 31d5f343..8c903d87 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882129307) in [innobi/pantab](https://github.com/innobi/pantab) -2. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882024522) in [innobi/pantab](https://github.com/innobi/pantab) -3. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881985415) in [innobi/pantab](https://github.com/innobi/pantab) -4. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881975217) in [innobi/pantab](https://github.com/innobi/pantab) -5. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881958373) in [innobi/pantab](https://github.com/innobi/pantab) -6. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881848921) in [innobi/pantab](https://github.com/innobi/pantab) -7. 🗣 Commented on [#4417](https://github.com/MDAnalysis/mdanalysis/pull/4417#issuecomment-1881775542) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#468](https://github.com/oemof/tespy/pull/468#issuecomment-1881764189) in [oemof/tespy](https://github.com/oemof/tespy) -9. 🗣 Commented on [#241](https://github.com/wtbarnes/fiasco/pull/241#issuecomment-1881475309) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) -10. 🗣 Commented on [#106](https://github.com/Richard-Sti/csiborgtools/pull/106#issuecomment-1881143927) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +1. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882288716) in [innobi/pantab](https://github.com/innobi/pantab) +2. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882129307) in [innobi/pantab](https://github.com/innobi/pantab) +3. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882024522) in [innobi/pantab](https://github.com/innobi/pantab) +4. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881985415) in [innobi/pantab](https://github.com/innobi/pantab) +5. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881975217) in [innobi/pantab](https://github.com/innobi/pantab) +6. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881958373) in [innobi/pantab](https://github.com/innobi/pantab) +7. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881848921) in [innobi/pantab](https://github.com/innobi/pantab) +8. 🗣 Commented on [#4417](https://github.com/MDAnalysis/mdanalysis/pull/4417#issuecomment-1881775542) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#468](https://github.com/oemof/tespy/pull/468#issuecomment-1881764189) in [oemof/tespy](https://github.com/oemof/tespy) +10. 🗣 Commented on [#241](https://github.com/wtbarnes/fiasco/pull/241#issuecomment-1881475309) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) From d4ff1b80e74e714a144230d79a5e3e6c7ebdb39d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Jan 2024 05:15:41 +0000 Subject: [PATCH 1125/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8c903d87..465fad8e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882288716) in [innobi/pantab](https://github.com/innobi/pantab) -2. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882129307) in [innobi/pantab](https://github.com/innobi/pantab) -3. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882024522) in [innobi/pantab](https://github.com/innobi/pantab) -4. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881985415) in [innobi/pantab](https://github.com/innobi/pantab) -5. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881975217) in [innobi/pantab](https://github.com/innobi/pantab) -6. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881958373) in [innobi/pantab](https://github.com/innobi/pantab) -7. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881848921) in [innobi/pantab](https://github.com/innobi/pantab) -8. 🗣 Commented on [#4417](https://github.com/MDAnalysis/mdanalysis/pull/4417#issuecomment-1881775542) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#468](https://github.com/oemof/tespy/pull/468#issuecomment-1881764189) in [oemof/tespy](https://github.com/oemof/tespy) -10. 🗣 Commented on [#241](https://github.com/wtbarnes/fiasco/pull/241#issuecomment-1881475309) in [wtbarnes/fiasco](https://github.com/wtbarnes/fiasco) +1. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882423184) in [innobi/pantab](https://github.com/innobi/pantab) +2. 🗣 Commented on [#239](https://github.com/CartoonFan/lutris/pull/239#issuecomment-1882407051) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882402862) in [innobi/pantab](https://github.com/innobi/pantab) +4. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882288716) in [innobi/pantab](https://github.com/innobi/pantab) +5. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882129307) in [innobi/pantab](https://github.com/innobi/pantab) +6. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882024522) in [innobi/pantab](https://github.com/innobi/pantab) +7. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881985415) in [innobi/pantab](https://github.com/innobi/pantab) +8. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881975217) in [innobi/pantab](https://github.com/innobi/pantab) +9. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881958373) in [innobi/pantab](https://github.com/innobi/pantab) +10. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881848921) in [innobi/pantab](https://github.com/innobi/pantab) From 5f49e4277f45776bcaaedfa9bc2c0ab2c3991b8e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Jan 2024 07:17:29 +0000 Subject: [PATCH 1126/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 465fad8e..b9e9654d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882423184) in [innobi/pantab](https://github.com/innobi/pantab) -2. 🗣 Commented on [#239](https://github.com/CartoonFan/lutris/pull/239#issuecomment-1882407051) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882402862) in [innobi/pantab](https://github.com/innobi/pantab) -4. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882288716) in [innobi/pantab](https://github.com/innobi/pantab) -5. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882129307) in [innobi/pantab](https://github.com/innobi/pantab) -6. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882024522) in [innobi/pantab](https://github.com/innobi/pantab) -7. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881985415) in [innobi/pantab](https://github.com/innobi/pantab) -8. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881975217) in [innobi/pantab](https://github.com/innobi/pantab) -9. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881958373) in [innobi/pantab](https://github.com/innobi/pantab) -10. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881848921) in [innobi/pantab](https://github.com/innobi/pantab) +1. 🗣 Commented on [#18](https://github.com/brianhang/pokerpals/pull/18#issuecomment-1882499349) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +2. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882423184) in [innobi/pantab](https://github.com/innobi/pantab) +3. 🗣 Commented on [#239](https://github.com/CartoonFan/lutris/pull/239#issuecomment-1882407051) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882402862) in [innobi/pantab](https://github.com/innobi/pantab) +5. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882288716) in [innobi/pantab](https://github.com/innobi/pantab) +6. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882129307) in [innobi/pantab](https://github.com/innobi/pantab) +7. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882024522) in [innobi/pantab](https://github.com/innobi/pantab) +8. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881985415) in [innobi/pantab](https://github.com/innobi/pantab) +9. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881975217) in [innobi/pantab](https://github.com/innobi/pantab) +10. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881958373) in [innobi/pantab](https://github.com/innobi/pantab) From 179fbae4008f99c8091440dee1a461575cf8c9a9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Jan 2024 10:18:01 +0000 Subject: [PATCH 1127/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b9e9654d..edc8f86e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#18](https://github.com/brianhang/pokerpals/pull/18#issuecomment-1882499349) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -2. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882423184) in [innobi/pantab](https://github.com/innobi/pantab) -3. 🗣 Commented on [#239](https://github.com/CartoonFan/lutris/pull/239#issuecomment-1882407051) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882402862) in [innobi/pantab](https://github.com/innobi/pantab) -5. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882288716) in [innobi/pantab](https://github.com/innobi/pantab) -6. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882129307) in [innobi/pantab](https://github.com/innobi/pantab) -7. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882024522) in [innobi/pantab](https://github.com/innobi/pantab) -8. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881985415) in [innobi/pantab](https://github.com/innobi/pantab) -9. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881975217) in [innobi/pantab](https://github.com/innobi/pantab) -10. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881958373) in [innobi/pantab](https://github.com/innobi/pantab) +1. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#50](https://github.com/tjhowse/modbus4mqtt/pull/50#issuecomment-1882748637) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +3. 🗣 Commented on [#18](https://github.com/brianhang/pokerpals/pull/18#issuecomment-1882499349) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +4. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882423184) in [innobi/pantab](https://github.com/innobi/pantab) +5. 🗣 Commented on [#239](https://github.com/CartoonFan/lutris/pull/239#issuecomment-1882407051) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882402862) in [innobi/pantab](https://github.com/innobi/pantab) +7. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882288716) in [innobi/pantab](https://github.com/innobi/pantab) +8. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882129307) in [innobi/pantab](https://github.com/innobi/pantab) +9. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882024522) in [innobi/pantab](https://github.com/innobi/pantab) +10. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881985415) in [innobi/pantab](https://github.com/innobi/pantab) From 08edb291532a385472c57f03458dc42037b74768 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Jan 2024 12:32:20 +0000 Subject: [PATCH 1128/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index edc8f86e..0935d5e1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#50](https://github.com/tjhowse/modbus4mqtt/pull/50#issuecomment-1882748637) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) -3. 🗣 Commented on [#18](https://github.com/brianhang/pokerpals/pull/18#issuecomment-1882499349) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -4. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882423184) in [innobi/pantab](https://github.com/innobi/pantab) -5. 🗣 Commented on [#239](https://github.com/CartoonFan/lutris/pull/239#issuecomment-1882407051) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882402862) in [innobi/pantab](https://github.com/innobi/pantab) -7. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882288716) in [innobi/pantab](https://github.com/innobi/pantab) -8. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882129307) in [innobi/pantab](https://github.com/innobi/pantab) -9. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882024522) in [innobi/pantab](https://github.com/innobi/pantab) -10. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1881985415) in [innobi/pantab](https://github.com/innobi/pantab) +1. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +2. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#50](https://github.com/tjhowse/modbus4mqtt/pull/50#issuecomment-1882748637) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +4. 🗣 Commented on [#18](https://github.com/brianhang/pokerpals/pull/18#issuecomment-1882499349) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +5. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882423184) in [innobi/pantab](https://github.com/innobi/pantab) +6. 🗣 Commented on [#239](https://github.com/CartoonFan/lutris/pull/239#issuecomment-1882407051) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882402862) in [innobi/pantab](https://github.com/innobi/pantab) +8. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882288716) in [innobi/pantab](https://github.com/innobi/pantab) +9. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882129307) in [innobi/pantab](https://github.com/innobi/pantab) +10. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882024522) in [innobi/pantab](https://github.com/innobi/pantab) From 52de47bd5721f4e6a2ddd88c4368dcf21a06d4ca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Jan 2024 13:41:23 +0000 Subject: [PATCH 1129/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0935d5e1..ddcf7eec 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -2. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#50](https://github.com/tjhowse/modbus4mqtt/pull/50#issuecomment-1882748637) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) -4. 🗣 Commented on [#18](https://github.com/brianhang/pokerpals/pull/18#issuecomment-1882499349) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -5. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882423184) in [innobi/pantab](https://github.com/innobi/pantab) -6. 🗣 Commented on [#239](https://github.com/CartoonFan/lutris/pull/239#issuecomment-1882407051) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882402862) in [innobi/pantab](https://github.com/innobi/pantab) -8. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882288716) in [innobi/pantab](https://github.com/innobi/pantab) -9. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882129307) in [innobi/pantab](https://github.com/innobi/pantab) -10. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882024522) in [innobi/pantab](https://github.com/innobi/pantab) +1. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +2. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +3. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#50](https://github.com/tjhowse/modbus4mqtt/pull/50#issuecomment-1882748637) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +5. 🗣 Commented on [#18](https://github.com/brianhang/pokerpals/pull/18#issuecomment-1882499349) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +6. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882423184) in [innobi/pantab](https://github.com/innobi/pantab) +7. 🗣 Commented on [#239](https://github.com/CartoonFan/lutris/pull/239#issuecomment-1882407051) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882402862) in [innobi/pantab](https://github.com/innobi/pantab) +9. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882288716) in [innobi/pantab](https://github.com/innobi/pantab) +10. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882129307) in [innobi/pantab](https://github.com/innobi/pantab) From 4a5ded846107e5461c3b83a14c88c7ba817d6fbe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Jan 2024 16:21:41 +0000 Subject: [PATCH 1130/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ddcf7eec..e963d975 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -2. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -3. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#50](https://github.com/tjhowse/modbus4mqtt/pull/50#issuecomment-1882748637) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) -5. 🗣 Commented on [#18](https://github.com/brianhang/pokerpals/pull/18#issuecomment-1882499349) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -6. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882423184) in [innobi/pantab](https://github.com/innobi/pantab) -7. 🗣 Commented on [#239](https://github.com/CartoonFan/lutris/pull/239#issuecomment-1882407051) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882402862) in [innobi/pantab](https://github.com/innobi/pantab) -9. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882288716) in [innobi/pantab](https://github.com/innobi/pantab) -10. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882129307) in [innobi/pantab](https://github.com/innobi/pantab) +1. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +3. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +4. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#50](https://github.com/tjhowse/modbus4mqtt/pull/50#issuecomment-1882748637) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +6. 🗣 Commented on [#18](https://github.com/brianhang/pokerpals/pull/18#issuecomment-1882499349) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +7. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882423184) in [innobi/pantab](https://github.com/innobi/pantab) +8. 🗣 Commented on [#239](https://github.com/CartoonFan/lutris/pull/239#issuecomment-1882407051) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882402862) in [innobi/pantab](https://github.com/innobi/pantab) +10. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882288716) in [innobi/pantab](https://github.com/innobi/pantab) From 7ba385c2cbee9be7aef9c1251a0ab55c7e95f759 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Jan 2024 22:15:52 +0000 Subject: [PATCH 1131/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e963d975..43823080 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -3. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -4. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#50](https://github.com/tjhowse/modbus4mqtt/pull/50#issuecomment-1882748637) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) -6. 🗣 Commented on [#18](https://github.com/brianhang/pokerpals/pull/18#issuecomment-1882499349) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -7. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882423184) in [innobi/pantab](https://github.com/innobi/pantab) -8. 🗣 Commented on [#239](https://github.com/CartoonFan/lutris/pull/239#issuecomment-1882407051) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882402862) in [innobi/pantab](https://github.com/innobi/pantab) -10. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882288716) in [innobi/pantab](https://github.com/innobi/pantab) +1. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +2. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +4. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +5. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#50](https://github.com/tjhowse/modbus4mqtt/pull/50#issuecomment-1882748637) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +7. 🗣 Commented on [#18](https://github.com/brianhang/pokerpals/pull/18#issuecomment-1882499349) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +8. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882423184) in [innobi/pantab](https://github.com/innobi/pantab) +9. 🗣 Commented on [#239](https://github.com/CartoonFan/lutris/pull/239#issuecomment-1882407051) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882402862) in [innobi/pantab](https://github.com/innobi/pantab) From 45eadc77e51bd1fb893205e21508d99a14aa6ed7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 09:16:41 +0000 Subject: [PATCH 1132/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 43823080..91fa0226 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -2. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -4. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -5. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#50](https://github.com/tjhowse/modbus4mqtt/pull/50#issuecomment-1882748637) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) -7. 🗣 Commented on [#18](https://github.com/brianhang/pokerpals/pull/18#issuecomment-1882499349) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -8. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882423184) in [innobi/pantab](https://github.com/innobi/pantab) -9. 🗣 Commented on [#239](https://github.com/CartoonFan/lutris/pull/239#issuecomment-1882407051) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882402862) in [innobi/pantab](https://github.com/innobi/pantab) +1. 🗣 Commented on [#19](https://github.com/eastgenomics/eggd_artemis/pull/19#issuecomment-1884458617) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +2. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +3. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +5. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +6. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#50](https://github.com/tjhowse/modbus4mqtt/pull/50#issuecomment-1882748637) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +8. 🗣 Commented on [#18](https://github.com/brianhang/pokerpals/pull/18#issuecomment-1882499349) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +9. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882423184) in [innobi/pantab](https://github.com/innobi/pantab) +10. 🗣 Commented on [#239](https://github.com/CartoonFan/lutris/pull/239#issuecomment-1882407051) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 1a037960670680387d60ffbddaded5d9f7a6b053 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 13:20:12 +0000 Subject: [PATCH 1133/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 91fa0226..1171ff00 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#19](https://github.com/eastgenomics/eggd_artemis/pull/19#issuecomment-1884458617) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -2. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -3. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -5. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -6. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#50](https://github.com/tjhowse/modbus4mqtt/pull/50#issuecomment-1882748637) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) -8. 🗣 Commented on [#18](https://github.com/brianhang/pokerpals/pull/18#issuecomment-1882499349) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -9. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882423184) in [innobi/pantab](https://github.com/innobi/pantab) -10. 🗣 Commented on [#239](https://github.com/CartoonFan/lutris/pull/239#issuecomment-1882407051) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#315](https://github.com/DeMarcoLab/fibsem/pull/315#issuecomment-1884789371) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +2. 🗣 Commented on [#19](https://github.com/eastgenomics/eggd_artemis/pull/19#issuecomment-1884458617) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +3. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +4. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +6. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +7. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#50](https://github.com/tjhowse/modbus4mqtt/pull/50#issuecomment-1882748637) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +9. 🗣 Commented on [#18](https://github.com/brianhang/pokerpals/pull/18#issuecomment-1882499349) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +10. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882423184) in [innobi/pantab](https://github.com/innobi/pantab) From d8bde1a0c50ba04ed5a453338c6f11822ffe0c15 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 14:37:11 +0000 Subject: [PATCH 1134/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1171ff00..4badea40 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#315](https://github.com/DeMarcoLab/fibsem/pull/315#issuecomment-1884789371) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -2. 🗣 Commented on [#19](https://github.com/eastgenomics/eggd_artemis/pull/19#issuecomment-1884458617) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -3. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -4. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -6. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -7. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#50](https://github.com/tjhowse/modbus4mqtt/pull/50#issuecomment-1882748637) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) -9. 🗣 Commented on [#18](https://github.com/brianhang/pokerpals/pull/18#issuecomment-1882499349) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -10. 🗣 Commented on [#218](https://github.com/innobi/pantab/pull/218#issuecomment-1882423184) in [innobi/pantab](https://github.com/innobi/pantab) +1. 🗣 Commented on [#886](https://github.com/ToFuProject/tofu/pull/886#issuecomment-1884959067) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#315](https://github.com/DeMarcoLab/fibsem/pull/315#issuecomment-1884789371) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +3. 🗣 Commented on [#19](https://github.com/eastgenomics/eggd_artemis/pull/19#issuecomment-1884458617) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +4. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +5. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +7. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +8. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#50](https://github.com/tjhowse/modbus4mqtt/pull/50#issuecomment-1882748637) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +10. 🗣 Commented on [#18](https://github.com/brianhang/pokerpals/pull/18#issuecomment-1882499349) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) From 46903a3081b307534e7fc38e939456aa21bba4b1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 15:15:56 +0000 Subject: [PATCH 1135/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4badea40..fc13f5a8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#886](https://github.com/ToFuProject/tofu/pull/886#issuecomment-1884959067) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#315](https://github.com/DeMarcoLab/fibsem/pull/315#issuecomment-1884789371) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -3. 🗣 Commented on [#19](https://github.com/eastgenomics/eggd_artemis/pull/19#issuecomment-1884458617) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -4. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -5. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -7. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -8. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#50](https://github.com/tjhowse/modbus4mqtt/pull/50#issuecomment-1882748637) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) -10. 🗣 Commented on [#18](https://github.com/brianhang/pokerpals/pull/18#issuecomment-1882499349) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +1. 🗣 Commented on [#21692](https://github.com/spyder-ide/spyder/pull/21692#issuecomment-1885016715) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#886](https://github.com/ToFuProject/tofu/pull/886#issuecomment-1884959067) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#315](https://github.com/DeMarcoLab/fibsem/pull/315#issuecomment-1884789371) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +4. 🗣 Commented on [#19](https://github.com/eastgenomics/eggd_artemis/pull/19#issuecomment-1884458617) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +5. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +6. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +8. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +9. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#50](https://github.com/tjhowse/modbus4mqtt/pull/50#issuecomment-1882748637) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) From 71ada1801b383e381a440475a66bb03139084e2f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 15:36:58 +0000 Subject: [PATCH 1136/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fc13f5a8..1205e47f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21692](https://github.com/spyder-ide/spyder/pull/21692#issuecomment-1885016715) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#886](https://github.com/ToFuProject/tofu/pull/886#issuecomment-1884959067) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#315](https://github.com/DeMarcoLab/fibsem/pull/315#issuecomment-1884789371) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -4. 🗣 Commented on [#19](https://github.com/eastgenomics/eggd_artemis/pull/19#issuecomment-1884458617) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -5. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -6. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -8. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -9. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#50](https://github.com/tjhowse/modbus4mqtt/pull/50#issuecomment-1882748637) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +1. 🗣 Commented on [#1425](https://github.com/spacetelescope/jwql/pull/1425#issuecomment-1885091462) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#21692](https://github.com/spyder-ide/spyder/pull/21692#issuecomment-1885016715) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#886](https://github.com/ToFuProject/tofu/pull/886#issuecomment-1884959067) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#315](https://github.com/DeMarcoLab/fibsem/pull/315#issuecomment-1884789371) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +5. 🗣 Commented on [#19](https://github.com/eastgenomics/eggd_artemis/pull/19#issuecomment-1884458617) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +6. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +7. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +9. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +10. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From cd6e874d58cbbcbc36c06ec4ab0caca9c977355c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 16:22:24 +0000 Subject: [PATCH 1137/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1205e47f..2e6641b7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1425](https://github.com/spacetelescope/jwql/pull/1425#issuecomment-1885091462) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#21692](https://github.com/spyder-ide/spyder/pull/21692#issuecomment-1885016715) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#886](https://github.com/ToFuProject/tofu/pull/886#issuecomment-1884959067) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#315](https://github.com/DeMarcoLab/fibsem/pull/315#issuecomment-1884789371) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -5. 🗣 Commented on [#19](https://github.com/eastgenomics/eggd_artemis/pull/19#issuecomment-1884458617) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -6. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -7. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -9. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -10. 🗣 Commented on [#21685](https://github.com/spyder-ide/spyder/pull/21685#issuecomment-1882787186) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#72](https://github.com/eastgenomics/eris/pull/72#issuecomment-1885142503) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#1425](https://github.com/spacetelescope/jwql/pull/1425#issuecomment-1885091462) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#21692](https://github.com/spyder-ide/spyder/pull/21692#issuecomment-1885016715) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#886](https://github.com/ToFuProject/tofu/pull/886#issuecomment-1884959067) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#315](https://github.com/DeMarcoLab/fibsem/pull/315#issuecomment-1884789371) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +6. 🗣 Commented on [#19](https://github.com/eastgenomics/eggd_artemis/pull/19#issuecomment-1884458617) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +7. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +8. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +10. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) From 346db535e72f75d1004669cbbebe3df6f06c7969 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 17:14:02 +0000 Subject: [PATCH 1138/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2e6641b7..d9943219 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#72](https://github.com/eastgenomics/eris/pull/72#issuecomment-1885142503) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#1425](https://github.com/spacetelescope/jwql/pull/1425#issuecomment-1885091462) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#21692](https://github.com/spyder-ide/spyder/pull/21692#issuecomment-1885016715) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#886](https://github.com/ToFuProject/tofu/pull/886#issuecomment-1884959067) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#315](https://github.com/DeMarcoLab/fibsem/pull/315#issuecomment-1884789371) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -6. 🗣 Commented on [#19](https://github.com/eastgenomics/eggd_artemis/pull/19#issuecomment-1884458617) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -7. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -8. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -10. 🗣 Commented on [#95](https://github.com/eastgenomics/eggd_conductor/pull/95#issuecomment-1882920331) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +1. 🗣 Commented on [#103](https://github.com/aimclub/BAMT/pull/103#issuecomment-1885257209) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +2. 🗣 Commented on [#72](https://github.com/eastgenomics/eris/pull/72#issuecomment-1885142503) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#1425](https://github.com/spacetelescope/jwql/pull/1425#issuecomment-1885091462) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#21692](https://github.com/spyder-ide/spyder/pull/21692#issuecomment-1885016715) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#886](https://github.com/ToFuProject/tofu/pull/886#issuecomment-1884959067) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#315](https://github.com/DeMarcoLab/fibsem/pull/315#issuecomment-1884789371) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +7. 🗣 Commented on [#19](https://github.com/eastgenomics/eggd_artemis/pull/19#issuecomment-1884458617) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +8. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +9. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) From d27c1a41ee4b6422ee59d405b57fc518e0913cb0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 18:38:35 +0000 Subject: [PATCH 1139/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d9943219..74f184d0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#103](https://github.com/aimclub/BAMT/pull/103#issuecomment-1885257209) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -2. 🗣 Commented on [#72](https://github.com/eastgenomics/eris/pull/72#issuecomment-1885142503) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#1425](https://github.com/spacetelescope/jwql/pull/1425#issuecomment-1885091462) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#21692](https://github.com/spyder-ide/spyder/pull/21692#issuecomment-1885016715) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#886](https://github.com/ToFuProject/tofu/pull/886#issuecomment-1884959067) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#315](https://github.com/DeMarcoLab/fibsem/pull/315#issuecomment-1884789371) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -7. 🗣 Commented on [#19](https://github.com/eastgenomics/eggd_artemis/pull/19#issuecomment-1884458617) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -8. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -9. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#96](https://github.com/eastgenomics/eggd_conductor/pull/96#issuecomment-1883006923) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +1. 🗣 Commented on [#436](https://github.com/manoharan-lab/holopy/pull/436#issuecomment-1885395063) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +2. 🗣 Commented on [#103](https://github.com/aimclub/BAMT/pull/103#issuecomment-1885257209) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +3. 🗣 Commented on [#72](https://github.com/eastgenomics/eris/pull/72#issuecomment-1885142503) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#1425](https://github.com/spacetelescope/jwql/pull/1425#issuecomment-1885091462) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#21692](https://github.com/spyder-ide/spyder/pull/21692#issuecomment-1885016715) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#886](https://github.com/ToFuProject/tofu/pull/886#issuecomment-1884959067) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#315](https://github.com/DeMarcoLab/fibsem/pull/315#issuecomment-1884789371) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +8. 🗣 Commented on [#19](https://github.com/eastgenomics/eggd_artemis/pull/19#issuecomment-1884458617) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +9. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +10. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 770f24ec01e2261b0d8c022b9fb7898bfaaf0211 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 19:13:16 +0000 Subject: [PATCH 1140/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 74f184d0..5c935bf9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#436](https://github.com/manoharan-lab/holopy/pull/436#issuecomment-1885395063) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -2. 🗣 Commented on [#103](https://github.com/aimclub/BAMT/pull/103#issuecomment-1885257209) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -3. 🗣 Commented on [#72](https://github.com/eastgenomics/eris/pull/72#issuecomment-1885142503) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#1425](https://github.com/spacetelescope/jwql/pull/1425#issuecomment-1885091462) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#21692](https://github.com/spyder-ide/spyder/pull/21692#issuecomment-1885016715) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#886](https://github.com/ToFuProject/tofu/pull/886#issuecomment-1884959067) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#315](https://github.com/DeMarcoLab/fibsem/pull/315#issuecomment-1884789371) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -8. 🗣 Commented on [#19](https://github.com/eastgenomics/eggd_artemis/pull/19#issuecomment-1884458617) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -9. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -10. 🗣 Commented on [#71](https://github.com/eastgenomics/eris/pull/71#issuecomment-1883347759) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#601](https://github.com/HEXRD/hexrd/pull/601#issuecomment-1885418303) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#436](https://github.com/manoharan-lab/holopy/pull/436#issuecomment-1885395063) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +3. 🗣 Commented on [#103](https://github.com/aimclub/BAMT/pull/103#issuecomment-1885257209) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +4. 🗣 Commented on [#72](https://github.com/eastgenomics/eris/pull/72#issuecomment-1885142503) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#1425](https://github.com/spacetelescope/jwql/pull/1425#issuecomment-1885091462) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#21692](https://github.com/spyder-ide/spyder/pull/21692#issuecomment-1885016715) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#886](https://github.com/ToFuProject/tofu/pull/886#issuecomment-1884959067) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#315](https://github.com/DeMarcoLab/fibsem/pull/315#issuecomment-1884789371) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +9. 🗣 Commented on [#19](https://github.com/eastgenomics/eggd_artemis/pull/19#issuecomment-1884458617) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +10. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) From fbcf6f412c8aecfa6d48cb2577ddbbf53c9356df Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 21:37:12 +0000 Subject: [PATCH 1141/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5c935bf9..e0c64872 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#601](https://github.com/HEXRD/hexrd/pull/601#issuecomment-1885418303) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#436](https://github.com/manoharan-lab/holopy/pull/436#issuecomment-1885395063) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -3. 🗣 Commented on [#103](https://github.com/aimclub/BAMT/pull/103#issuecomment-1885257209) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -4. 🗣 Commented on [#72](https://github.com/eastgenomics/eris/pull/72#issuecomment-1885142503) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#1425](https://github.com/spacetelescope/jwql/pull/1425#issuecomment-1885091462) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#21692](https://github.com/spyder-ide/spyder/pull/21692#issuecomment-1885016715) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#886](https://github.com/ToFuProject/tofu/pull/886#issuecomment-1884959067) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#315](https://github.com/DeMarcoLab/fibsem/pull/315#issuecomment-1884789371) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -9. 🗣 Commented on [#19](https://github.com/eastgenomics/eggd_artemis/pull/19#issuecomment-1884458617) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -10. 🗣 Commented on [#1086](https://github.com/yeatmanlab/pyAFQ/pull/1086#issuecomment-1883863613) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +1. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) +2. 🗣 Commented on [#7](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/7#issuecomment-1885747196) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +3. 🗣 Commented on [#601](https://github.com/HEXRD/hexrd/pull/601#issuecomment-1885418303) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +4. 🗣 Commented on [#436](https://github.com/manoharan-lab/holopy/pull/436#issuecomment-1885395063) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +5. 🗣 Commented on [#103](https://github.com/aimclub/BAMT/pull/103#issuecomment-1885257209) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +6. 🗣 Commented on [#72](https://github.com/eastgenomics/eris/pull/72#issuecomment-1885142503) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#1425](https://github.com/spacetelescope/jwql/pull/1425#issuecomment-1885091462) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#21692](https://github.com/spyder-ide/spyder/pull/21692#issuecomment-1885016715) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#886](https://github.com/ToFuProject/tofu/pull/886#issuecomment-1884959067) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#315](https://github.com/DeMarcoLab/fibsem/pull/315#issuecomment-1884789371) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) From cc97eb8ea31da28755241ad8671a6f46fd343c6c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 22:15:41 +0000 Subject: [PATCH 1142/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e0c64872..d248157a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) -2. 🗣 Commented on [#7](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/7#issuecomment-1885747196) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -3. 🗣 Commented on [#601](https://github.com/HEXRD/hexrd/pull/601#issuecomment-1885418303) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -4. 🗣 Commented on [#436](https://github.com/manoharan-lab/holopy/pull/436#issuecomment-1885395063) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -5. 🗣 Commented on [#103](https://github.com/aimclub/BAMT/pull/103#issuecomment-1885257209) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -6. 🗣 Commented on [#72](https://github.com/eastgenomics/eris/pull/72#issuecomment-1885142503) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#1425](https://github.com/spacetelescope/jwql/pull/1425#issuecomment-1885091462) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#21692](https://github.com/spyder-ide/spyder/pull/21692#issuecomment-1885016715) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#886](https://github.com/ToFuProject/tofu/pull/886#issuecomment-1884959067) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#315](https://github.com/DeMarcoLab/fibsem/pull/315#issuecomment-1884789371) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +1. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) +3. 🗣 Commented on [#7](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/7#issuecomment-1885747196) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +4. 🗣 Commented on [#601](https://github.com/HEXRD/hexrd/pull/601#issuecomment-1885418303) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#436](https://github.com/manoharan-lab/holopy/pull/436#issuecomment-1885395063) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +6. 🗣 Commented on [#103](https://github.com/aimclub/BAMT/pull/103#issuecomment-1885257209) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +7. 🗣 Commented on [#72](https://github.com/eastgenomics/eris/pull/72#issuecomment-1885142503) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#1425](https://github.com/spacetelescope/jwql/pull/1425#issuecomment-1885091462) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#21692](https://github.com/spyder-ide/spyder/pull/21692#issuecomment-1885016715) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#886](https://github.com/ToFuProject/tofu/pull/886#issuecomment-1884959067) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From e56faac87b272855a751a3d315e61155ca9a5ca2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Jan 2024 01:14:45 +0000 Subject: [PATCH 1143/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d248157a..baafc250 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) -3. 🗣 Commented on [#7](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/7#issuecomment-1885747196) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -4. 🗣 Commented on [#601](https://github.com/HEXRD/hexrd/pull/601#issuecomment-1885418303) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#436](https://github.com/manoharan-lab/holopy/pull/436#issuecomment-1885395063) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -6. 🗣 Commented on [#103](https://github.com/aimclub/BAMT/pull/103#issuecomment-1885257209) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -7. 🗣 Commented on [#72](https://github.com/eastgenomics/eris/pull/72#issuecomment-1885142503) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#1425](https://github.com/spacetelescope/jwql/pull/1425#issuecomment-1885091462) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#21692](https://github.com/spyder-ide/spyder/pull/21692#issuecomment-1885016715) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#886](https://github.com/ToFuProject/tofu/pull/886#issuecomment-1884959067) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) +2. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) +4. 🗣 Commented on [#7](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/7#issuecomment-1885747196) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +5. 🗣 Commented on [#601](https://github.com/HEXRD/hexrd/pull/601#issuecomment-1885418303) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +6. 🗣 Commented on [#436](https://github.com/manoharan-lab/holopy/pull/436#issuecomment-1885395063) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +7. 🗣 Commented on [#103](https://github.com/aimclub/BAMT/pull/103#issuecomment-1885257209) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +8. 🗣 Commented on [#72](https://github.com/eastgenomics/eris/pull/72#issuecomment-1885142503) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#1425](https://github.com/spacetelescope/jwql/pull/1425#issuecomment-1885091462) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#21692](https://github.com/spyder-ide/spyder/pull/21692#issuecomment-1885016715) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From c4c48508cc2c7c2f9918b986c3b666995cdf571c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Jan 2024 02:43:23 +0000 Subject: [PATCH 1144/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index baafc250..ab82ff87 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) -2. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) -4. 🗣 Commented on [#7](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/7#issuecomment-1885747196) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -5. 🗣 Commented on [#601](https://github.com/HEXRD/hexrd/pull/601#issuecomment-1885418303) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -6. 🗣 Commented on [#436](https://github.com/manoharan-lab/holopy/pull/436#issuecomment-1885395063) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -7. 🗣 Commented on [#103](https://github.com/aimclub/BAMT/pull/103#issuecomment-1885257209) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -8. 🗣 Commented on [#72](https://github.com/eastgenomics/eris/pull/72#issuecomment-1885142503) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#1425](https://github.com/spacetelescope/jwql/pull/1425#issuecomment-1885091462) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#21692](https://github.com/spyder-ide/spyder/pull/21692#issuecomment-1885016715) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) +3. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) +5. 🗣 Commented on [#7](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/7#issuecomment-1885747196) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +6. 🗣 Commented on [#601](https://github.com/HEXRD/hexrd/pull/601#issuecomment-1885418303) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +7. 🗣 Commented on [#436](https://github.com/manoharan-lab/holopy/pull/436#issuecomment-1885395063) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +8. 🗣 Commented on [#103](https://github.com/aimclub/BAMT/pull/103#issuecomment-1885257209) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +9. 🗣 Commented on [#72](https://github.com/eastgenomics/eris/pull/72#issuecomment-1885142503) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#1425](https://github.com/spacetelescope/jwql/pull/1425#issuecomment-1885091462) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From f3b5cb77d62a718e289893ca70dde88049d83b91 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Jan 2024 10:38:58 +0000 Subject: [PATCH 1145/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ab82ff87..27bd5adb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) -3. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) -5. 🗣 Commented on [#7](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/7#issuecomment-1885747196) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -6. 🗣 Commented on [#601](https://github.com/HEXRD/hexrd/pull/601#issuecomment-1885418303) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -7. 🗣 Commented on [#436](https://github.com/manoharan-lab/holopy/pull/436#issuecomment-1885395063) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -8. 🗣 Commented on [#103](https://github.com/aimclub/BAMT/pull/103#issuecomment-1885257209) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -9. 🗣 Commented on [#72](https://github.com/eastgenomics/eris/pull/72#issuecomment-1885142503) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#1425](https://github.com/spacetelescope/jwql/pull/1425#issuecomment-1885091462) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +2. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) +4. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) +6. 🗣 Commented on [#7](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/7#issuecomment-1885747196) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +7. 🗣 Commented on [#601](https://github.com/HEXRD/hexrd/pull/601#issuecomment-1885418303) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +8. 🗣 Commented on [#436](https://github.com/manoharan-lab/holopy/pull/436#issuecomment-1885395063) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +9. 🗣 Commented on [#103](https://github.com/aimclub/BAMT/pull/103#issuecomment-1885257209) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +10. 🗣 Commented on [#72](https://github.com/eastgenomics/eris/pull/72#issuecomment-1885142503) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 21cfbfa2c2d986edb339231b1292a0247c51d436 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Jan 2024 11:37:14 +0000 Subject: [PATCH 1146/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 27bd5adb..00ec1302 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -2. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) -4. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) -6. 🗣 Commented on [#7](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/7#issuecomment-1885747196) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -7. 🗣 Commented on [#601](https://github.com/HEXRD/hexrd/pull/601#issuecomment-1885418303) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -8. 🗣 Commented on [#436](https://github.com/manoharan-lab/holopy/pull/436#issuecomment-1885395063) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -9. 🗣 Commented on [#103](https://github.com/aimclub/BAMT/pull/103#issuecomment-1885257209) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -10. 🗣 Commented on [#72](https://github.com/eastgenomics/eris/pull/72#issuecomment-1885142503) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) +2. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +3. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) +5. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) +7. 🗣 Commented on [#7](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/7#issuecomment-1885747196) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +8. 🗣 Commented on [#601](https://github.com/HEXRD/hexrd/pull/601#issuecomment-1885418303) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +9. 🗣 Commented on [#436](https://github.com/manoharan-lab/holopy/pull/436#issuecomment-1885395063) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +10. 🗣 Commented on [#103](https://github.com/aimclub/BAMT/pull/103#issuecomment-1885257209) in [aimclub/BAMT](https://github.com/aimclub/BAMT) From 829caea0972e863af9c69f6815f7672a0881769d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Jan 2024 15:37:23 +0000 Subject: [PATCH 1147/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 00ec1302..8ff3b494 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) -2. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -3. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) -5. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) -7. 🗣 Commented on [#7](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/7#issuecomment-1885747196) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -8. 🗣 Commented on [#601](https://github.com/HEXRD/hexrd/pull/601#issuecomment-1885418303) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -9. 🗣 Commented on [#436](https://github.com/manoharan-lab/holopy/pull/436#issuecomment-1885395063) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -10. 🗣 Commented on [#103](https://github.com/aimclub/BAMT/pull/103#issuecomment-1885257209) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +1. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) +3. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +4. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) +6. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) +8. 🗣 Commented on [#7](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/7#issuecomment-1885747196) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +9. 🗣 Commented on [#601](https://github.com/HEXRD/hexrd/pull/601#issuecomment-1885418303) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +10. 🗣 Commented on [#436](https://github.com/manoharan-lab/holopy/pull/436#issuecomment-1885395063) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) From 9410981a3e1fbe382558895fa1d85e9953e7b10c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Jan 2024 16:22:21 +0000 Subject: [PATCH 1148/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8ff3b494..7b9cb817 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) -3. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -4. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) -6. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) -8. 🗣 Commented on [#7](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/7#issuecomment-1885747196) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -9. 🗣 Commented on [#601](https://github.com/HEXRD/hexrd/pull/601#issuecomment-1885418303) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -10. 🗣 Commented on [#436](https://github.com/manoharan-lab/holopy/pull/436#issuecomment-1885395063) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +1. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) +2. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) +4. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +5. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) +7. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) +9. 🗣 Commented on [#7](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/7#issuecomment-1885747196) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +10. 🗣 Commented on [#601](https://github.com/HEXRD/hexrd/pull/601#issuecomment-1885418303) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) From 4993a6da3cb9ae7155ccb3540d0c1ab146514e5e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Jan 2024 16:41:48 +0000 Subject: [PATCH 1149/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7b9cb817..476ebdbc 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) -2. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) -4. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -5. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) -7. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) -9. 🗣 Commented on [#7](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/7#issuecomment-1885747196) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -10. 🗣 Commented on [#601](https://github.com/HEXRD/hexrd/pull/601#issuecomment-1885418303) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +1. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +2. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) +3. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) +5. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +6. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) +8. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) +10. 🗣 Commented on [#7](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/7#issuecomment-1885747196) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) From d41282aa4cbeabea42cf27a1e7415b50c54626ff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Jan 2024 17:14:50 +0000 Subject: [PATCH 1150/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 476ebdbc..71c66b51 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -2. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) -3. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) -5. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -6. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) -8. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) -10. 🗣 Commented on [#7](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/7#issuecomment-1885747196) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +1. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +2. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +3. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) +4. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) +6. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +7. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) +9. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) From b1a8c4f339ac685e982be3a51ecb134791e7a6b0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Jan 2024 18:38:03 +0000 Subject: [PATCH 1151/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 71c66b51..45bbed57 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -2. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -3. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) -4. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) -6. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -7. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) -9. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#4425](https://github.com/pyload/pyload/pull/4425#issuecomment-1885756701) in [pyload/pyload](https://github.com/pyload/pyload) +1. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +3. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +4. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) +5. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) +7. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +8. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) +10. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 11e8d7268aaf2fde3e3b4c09bddb951fe510ec1b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Jan 2024 19:13:45 +0000 Subject: [PATCH 1152/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 45bbed57..e60af4c8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -3. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -4. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) -5. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) -7. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -8. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) -10. 🗣 Commented on [#1426](https://github.com/spacetelescope/jwql/pull/1426#issuecomment-1885778745) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +4. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +5. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) +6. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) +8. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +9. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) From 27025aeef993fe9983d142d5fc02f0b22865d089 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Jan 2024 20:18:43 +0000 Subject: [PATCH 1153/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e60af4c8..79822b90 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -4. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -5. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) -6. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) -8. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -9. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#670](https://github.com/EducationalTestingService/rsmtool/pull/670#issuecomment-1885935940) in [EducationalTestingService/rsmtool](https://github.com/EducationalTestingService/rsmtool) +1. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +5. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +6. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) +7. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) +9. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +10. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 7ce26e5f6a6d35752156844d6a76e4f9d8fe68f7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 04:20:51 +0000 Subject: [PATCH 1154/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 79822b90..e2df3a2b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -5. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -6. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) -7. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) -9. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -10. 🗣 Commented on [#240](https://github.com/CartoonFan/lutris/pull/240#issuecomment-1886099993) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +6. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +7. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) +8. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) +10. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) From c5f9113be3012d156a999541ca352f1bd7f53d01 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 09:37:26 +0000 Subject: [PATCH 1155/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e2df3a2b..0c1319bf 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -6. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -7. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) -8. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) -10. 🗣 Commented on [#1](https://github.com/Remi-Gau/dFC/pull/1#issuecomment-1886818467) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +1. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +7. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +8. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) +9. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) From 1bf08b48baa9f26d359f4c53ed6ca0401df14f84 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 10:18:01 +0000 Subject: [PATCH 1156/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0c1319bf..72f5fa10 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -7. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -8. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) -9. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_generate_bed/pull/27#issuecomment-1886916558) in [eastgenomics/eggd_generate_bed](https://github.com/eastgenomics/eggd_generate_bed) +1. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) +2. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +8. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +9. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) +10. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 8183fa3c3b5f2a6ac4156e07ef6426a7cc62fda7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 13:37:22 +0000 Subject: [PATCH 1157/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 72f5fa10..7d3aca6f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) -2. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -8. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -9. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) -10. 🗣 Commented on [#1427](https://github.com/spacetelescope/jwql/pull/1427#issuecomment-1887407117) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) +2. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) +3. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +9. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +10. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) From 399a2190143c6dbd42ef4f6ed498d914d2478169 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 14:37:12 +0000 Subject: [PATCH 1158/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7d3aca6f..58f17b84 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) -2. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) -3. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -9. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -10. 🗣 Commented on [#1](https://github.com/eastgenomics/MetricsOutput_edit/pull/1#issuecomment-1887453526) in [eastgenomics/MetricsOutput_edit](https://github.com/eastgenomics/MetricsOutput_edit) +1. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) +3. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) +4. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +10. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) From 9889cf747d4243e5258dfa7a2052148372bc41b6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 16:21:53 +0000 Subject: [PATCH 1159/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 58f17b84..a23ef213 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) -3. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) -4. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) -10. 🗣 Commented on [#780](https://github.com/StingraySoftware/stingray/pull/780#issuecomment-1887529107) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +1. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +2. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) +4. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) +5. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) From 8616f4028a3f8c25ebba258f9773aad22ea61f17 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 17:37:16 +0000 Subject: [PATCH 1160/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a23ef213..0211c9ac 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -2. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) -4. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) -5. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#46](https://github.com/oemof/oemof-network/pull/46#issuecomment-1887561914) in [oemof/oemof-network](https://github.com/oemof/oemof-network) +1. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +2. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +3. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) +5. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) +6. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 4367badb63f4468ea3bf6de8f3596e5a5f2ad5fa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 20:37:30 +0000 Subject: [PATCH 1161/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0211c9ac..7e35012d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -2. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -3. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) -5. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) -6. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#1431](https://github.com/spacetelescope/jwql/pull/1431#issuecomment-1887745717) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#4162](https://github.com/MDAnalysis/mdanalysis/pull/4162#issuecomment-1889913037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +3. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +4. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) +6. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) +7. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 3e775f1f86efee48c0e8f78ca9c2e3fcea9dd2d0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 21:13:45 +0000 Subject: [PATCH 1162/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7e35012d..50896e52 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4162](https://github.com/MDAnalysis/mdanalysis/pull/4162#issuecomment-1889913037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -3. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -4. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) -6. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) -7. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#21647](https://github.com/spyder-ide/spyder/pull/21647#issuecomment-1887781831) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#1286](https://github.com/rpm-software-management/mock/pull/1286#issuecomment-1889938717) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +2. 🗣 Commented on [#4162](https://github.com/MDAnalysis/mdanalysis/pull/4162#issuecomment-1889913037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +4. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +5. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) +7. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) +8. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 384732615516fbfca40cff48ad250cef9697ec73 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 22:15:30 +0000 Subject: [PATCH 1163/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 50896e52..e794b29c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1286](https://github.com/rpm-software-management/mock/pull/1286#issuecomment-1889938717) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -2. 🗣 Commented on [#4162](https://github.com/MDAnalysis/mdanalysis/pull/4162#issuecomment-1889913037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -4. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -5. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) -7. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) -8. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#1433](https://github.com/spacetelescope/jwql/pull/1433#issuecomment-1887895772) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#603](https://github.com/HEXRD/hexrd/pull/603#issuecomment-1889982165) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#1286](https://github.com/rpm-software-management/mock/pull/1286#issuecomment-1889938717) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +3. 🗣 Commented on [#4162](https://github.com/MDAnalysis/mdanalysis/pull/4162#issuecomment-1889913037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +5. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +6. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) +8. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) +9. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) From 3584ceeb00868bad43ad5355786f2f47b488749f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 02:10:05 +0000 Subject: [PATCH 1164/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e794b29c..fc5220c1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#603](https://github.com/HEXRD/hexrd/pull/603#issuecomment-1889982165) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#1286](https://github.com/rpm-software-management/mock/pull/1286#issuecomment-1889938717) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -3. 🗣 Commented on [#4162](https://github.com/MDAnalysis/mdanalysis/pull/4162#issuecomment-1889913037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -5. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -6. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) -8. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) -9. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#876](https://github.com/scilus/scilpy/pull/876#issuecomment-1888390828) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#14](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/14#issuecomment-1890231983) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +2. 🗣 Commented on [#603](https://github.com/HEXRD/hexrd/pull/603#issuecomment-1889982165) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#1286](https://github.com/rpm-software-management/mock/pull/1286#issuecomment-1889938717) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +4. 🗣 Commented on [#4162](https://github.com/MDAnalysis/mdanalysis/pull/4162#issuecomment-1889913037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +6. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +7. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) +9. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) +10. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From a04e0b420057a80651639d4825c8715246f05728 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 02:41:41 +0000 Subject: [PATCH 1165/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fc5220c1..fd841e61 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#14](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/14#issuecomment-1890231983) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -2. 🗣 Commented on [#603](https://github.com/HEXRD/hexrd/pull/603#issuecomment-1889982165) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#1286](https://github.com/rpm-software-management/mock/pull/1286#issuecomment-1889938717) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -4. 🗣 Commented on [#4162](https://github.com/MDAnalysis/mdanalysis/pull/4162#issuecomment-1889913037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -6. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -7. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) -9. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) -10. 🗣 Commented on [#5399](https://github.com/rhinstaller/anaconda/pull/5399#issuecomment-1888734675) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#3038](https://github.com/dipy/dipy/pull/3038#issuecomment-1890263799) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#14](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/14#issuecomment-1890231983) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +3. 🗣 Commented on [#603](https://github.com/HEXRD/hexrd/pull/603#issuecomment-1889982165) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +4. 🗣 Commented on [#1286](https://github.com/rpm-software-management/mock/pull/1286#issuecomment-1889938717) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +5. 🗣 Commented on [#4162](https://github.com/MDAnalysis/mdanalysis/pull/4162#issuecomment-1889913037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +7. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +8. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) +10. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) From bfb98d8e7be491013ac58d136bf3651c4af20ee8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 03:17:05 +0000 Subject: [PATCH 1166/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fd841e61..bfe4af36 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3038](https://github.com/dipy/dipy/pull/3038#issuecomment-1890263799) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#14](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/14#issuecomment-1890231983) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -3. 🗣 Commented on [#603](https://github.com/HEXRD/hexrd/pull/603#issuecomment-1889982165) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -4. 🗣 Commented on [#1286](https://github.com/rpm-software-management/mock/pull/1286#issuecomment-1889938717) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -5. 🗣 Commented on [#4162](https://github.com/MDAnalysis/mdanalysis/pull/4162#issuecomment-1889913037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -7. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -8. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) -10. 🗣 Commented on [#474](https://github.com/oemof/tespy/pull/474#issuecomment-1888787307) in [oemof/tespy](https://github.com/oemof/tespy) +1. 🗣 Commented on [#13](https://github.com/sarnold/gitchangelog/pull/13#issuecomment-1890269768) in [sarnold/gitchangelog](https://github.com/sarnold/gitchangelog) +2. 🗣 Commented on [#3038](https://github.com/dipy/dipy/pull/3038#issuecomment-1890263799) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#14](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/14#issuecomment-1890231983) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +4. 🗣 Commented on [#603](https://github.com/HEXRD/hexrd/pull/603#issuecomment-1889982165) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#1286](https://github.com/rpm-software-management/mock/pull/1286#issuecomment-1889938717) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +6. 🗣 Commented on [#4162](https://github.com/MDAnalysis/mdanalysis/pull/4162#issuecomment-1889913037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +8. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +9. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) From 313969e78b26846cf8018e69dac1be8335cddb40 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 05:15:39 +0000 Subject: [PATCH 1167/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bfe4af36..2757bd83 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#13](https://github.com/sarnold/gitchangelog/pull/13#issuecomment-1890269768) in [sarnold/gitchangelog](https://github.com/sarnold/gitchangelog) -2. 🗣 Commented on [#3038](https://github.com/dipy/dipy/pull/3038#issuecomment-1890263799) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#14](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/14#issuecomment-1890231983) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -4. 🗣 Commented on [#603](https://github.com/HEXRD/hexrd/pull/603#issuecomment-1889982165) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#1286](https://github.com/rpm-software-management/mock/pull/1286#issuecomment-1889938717) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -6. 🗣 Commented on [#4162](https://github.com/MDAnalysis/mdanalysis/pull/4162#issuecomment-1889913037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -8. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -9. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_workbook_parser/pull/1#issuecomment-1889217346) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) +1. 🗣 Commented on [#49](https://github.com/aguinane/nem-reader/pull/49#issuecomment-1890306660) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +2. 🗣 Commented on [#13](https://github.com/sarnold/gitchangelog/pull/13#issuecomment-1890269768) in [sarnold/gitchangelog](https://github.com/sarnold/gitchangelog) +3. 🗣 Commented on [#3038](https://github.com/dipy/dipy/pull/3038#issuecomment-1890263799) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#14](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/14#issuecomment-1890231983) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +5. 🗣 Commented on [#603](https://github.com/HEXRD/hexrd/pull/603#issuecomment-1889982165) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +6. 🗣 Commented on [#1286](https://github.com/rpm-software-management/mock/pull/1286#issuecomment-1889938717) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +7. 🗣 Commented on [#4162](https://github.com/MDAnalysis/mdanalysis/pull/4162#issuecomment-1889913037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +9. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +10. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 9ceaee4f24a32255a8b9c213ea141dae29349f53 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 08:19:31 +0000 Subject: [PATCH 1168/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2757bd83..201c4087 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#49](https://github.com/aguinane/nem-reader/pull/49#issuecomment-1890306660) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -2. 🗣 Commented on [#13](https://github.com/sarnold/gitchangelog/pull/13#issuecomment-1890269768) in [sarnold/gitchangelog](https://github.com/sarnold/gitchangelog) -3. 🗣 Commented on [#3038](https://github.com/dipy/dipy/pull/3038#issuecomment-1890263799) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#14](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/14#issuecomment-1890231983) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -5. 🗣 Commented on [#603](https://github.com/HEXRD/hexrd/pull/603#issuecomment-1889982165) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -6. 🗣 Commented on [#1286](https://github.com/rpm-software-management/mock/pull/1286#issuecomment-1889938717) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -7. 🗣 Commented on [#4162](https://github.com/MDAnalysis/mdanalysis/pull/4162#issuecomment-1889913037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -9. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -10. 🗣 Commented on [#4423](https://github.com/MDAnalysis/mdanalysis/pull/4423#issuecomment-1889344237) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#8](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/8#issuecomment-1890367679) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +2. 🗣 Commented on [#49](https://github.com/aguinane/nem-reader/pull/49#issuecomment-1890306660) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +3. 🗣 Commented on [#13](https://github.com/sarnold/gitchangelog/pull/13#issuecomment-1890269768) in [sarnold/gitchangelog](https://github.com/sarnold/gitchangelog) +4. 🗣 Commented on [#3038](https://github.com/dipy/dipy/pull/3038#issuecomment-1890263799) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#14](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/14#issuecomment-1890231983) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +6. 🗣 Commented on [#603](https://github.com/HEXRD/hexrd/pull/603#issuecomment-1889982165) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +7. 🗣 Commented on [#1286](https://github.com/rpm-software-management/mock/pull/1286#issuecomment-1889938717) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +8. 🗣 Commented on [#4162](https://github.com/MDAnalysis/mdanalysis/pull/4162#issuecomment-1889913037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +10. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) From a70366f3c268bc0a1c653bf1b4b0798122d1ffa0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 09:37:20 +0000 Subject: [PATCH 1169/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 201c4087..f70f55da 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#8](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/8#issuecomment-1890367679) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -2. 🗣 Commented on [#49](https://github.com/aguinane/nem-reader/pull/49#issuecomment-1890306660) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -3. 🗣 Commented on [#13](https://github.com/sarnold/gitchangelog/pull/13#issuecomment-1890269768) in [sarnold/gitchangelog](https://github.com/sarnold/gitchangelog) -4. 🗣 Commented on [#3038](https://github.com/dipy/dipy/pull/3038#issuecomment-1890263799) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#14](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/14#issuecomment-1890231983) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -6. 🗣 Commented on [#603](https://github.com/HEXRD/hexrd/pull/603#issuecomment-1889982165) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -7. 🗣 Commented on [#1286](https://github.com/rpm-software-management/mock/pull/1286#issuecomment-1889938717) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -8. 🗣 Commented on [#4162](https://github.com/MDAnalysis/mdanalysis/pull/4162#issuecomment-1889913037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -10. 🗣 Commented on [#392](https://github.com/NASA-Planetary-Science/sbpy/pull/392#issuecomment-1889525561) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +1. 🗣 Commented on [#241](https://github.com/CartoonFan/lutris/pull/241#issuecomment-1890392297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#8](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/8#issuecomment-1890367679) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +3. 🗣 Commented on [#49](https://github.com/aguinane/nem-reader/pull/49#issuecomment-1890306660) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +4. 🗣 Commented on [#13](https://github.com/sarnold/gitchangelog/pull/13#issuecomment-1890269768) in [sarnold/gitchangelog](https://github.com/sarnold/gitchangelog) +5. 🗣 Commented on [#3038](https://github.com/dipy/dipy/pull/3038#issuecomment-1890263799) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#14](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/14#issuecomment-1890231983) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +7. 🗣 Commented on [#603](https://github.com/HEXRD/hexrd/pull/603#issuecomment-1889982165) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +8. 🗣 Commented on [#1286](https://github.com/rpm-software-management/mock/pull/1286#issuecomment-1889938717) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +9. 🗣 Commented on [#4162](https://github.com/MDAnalysis/mdanalysis/pull/4162#issuecomment-1889913037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) From bc8736353096996ad33a1166ec9153c8494c672d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 14 Jan 2024 11:37:09 +0000 Subject: [PATCH 1170/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f70f55da..3cf0f88a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#241](https://github.com/CartoonFan/lutris/pull/241#issuecomment-1890392297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#8](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/8#issuecomment-1890367679) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -3. 🗣 Commented on [#49](https://github.com/aguinane/nem-reader/pull/49#issuecomment-1890306660) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -4. 🗣 Commented on [#13](https://github.com/sarnold/gitchangelog/pull/13#issuecomment-1890269768) in [sarnold/gitchangelog](https://github.com/sarnold/gitchangelog) -5. 🗣 Commented on [#3038](https://github.com/dipy/dipy/pull/3038#issuecomment-1890263799) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#14](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/14#issuecomment-1890231983) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -7. 🗣 Commented on [#603](https://github.com/HEXRD/hexrd/pull/603#issuecomment-1889982165) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -8. 🗣 Commented on [#1286](https://github.com/rpm-software-management/mock/pull/1286#issuecomment-1889938717) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -9. 🗣 Commented on [#4162](https://github.com/MDAnalysis/mdanalysis/pull/4162#issuecomment-1889913037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#99](https://github.com/eastgenomics/eggd_conductor/pull/99#issuecomment-1889699543) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +1. 🗣 Commented on [#10](https://github.com/kossiitkgp/mailing-scripts/pull/10#issuecomment-1890923202) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +2. 🗣 Commented on [#13](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/13#issuecomment-1890923068) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +3. 🗣 Commented on [#241](https://github.com/CartoonFan/lutris/pull/241#issuecomment-1890392297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#8](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/8#issuecomment-1890367679) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +5. 🗣 Commented on [#49](https://github.com/aguinane/nem-reader/pull/49#issuecomment-1890306660) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +6. 🗣 Commented on [#13](https://github.com/sarnold/gitchangelog/pull/13#issuecomment-1890269768) in [sarnold/gitchangelog](https://github.com/sarnold/gitchangelog) +7. 🗣 Commented on [#3038](https://github.com/dipy/dipy/pull/3038#issuecomment-1890263799) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#14](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/14#issuecomment-1890231983) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +9. 🗣 Commented on [#603](https://github.com/HEXRD/hexrd/pull/603#issuecomment-1889982165) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +10. 🗣 Commented on [#1286](https://github.com/rpm-software-management/mock/pull/1286#issuecomment-1889938717) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) From a4cf0175dcc889fba0e88b09967df036afcb0ae8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 14 Jan 2024 23:17:14 +0000 Subject: [PATCH 1171/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3cf0f88a..95948073 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#10](https://github.com/kossiitkgp/mailing-scripts/pull/10#issuecomment-1890923202) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -2. 🗣 Commented on [#13](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/13#issuecomment-1890923068) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -3. 🗣 Commented on [#241](https://github.com/CartoonFan/lutris/pull/241#issuecomment-1890392297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#8](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/8#issuecomment-1890367679) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -5. 🗣 Commented on [#49](https://github.com/aguinane/nem-reader/pull/49#issuecomment-1890306660) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -6. 🗣 Commented on [#13](https://github.com/sarnold/gitchangelog/pull/13#issuecomment-1890269768) in [sarnold/gitchangelog](https://github.com/sarnold/gitchangelog) -7. 🗣 Commented on [#3038](https://github.com/dipy/dipy/pull/3038#issuecomment-1890263799) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#14](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/14#issuecomment-1890231983) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -9. 🗣 Commented on [#603](https://github.com/HEXRD/hexrd/pull/603#issuecomment-1889982165) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -10. 🗣 Commented on [#1286](https://github.com/rpm-software-management/mock/pull/1286#issuecomment-1889938717) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +1. 🗣 Commented on [#3039](https://github.com/dipy/dipy/pull/3039#issuecomment-1891098418) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#10](https://github.com/kossiitkgp/mailing-scripts/pull/10#issuecomment-1890923202) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +3. 🗣 Commented on [#13](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/13#issuecomment-1890923068) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +4. 🗣 Commented on [#241](https://github.com/CartoonFan/lutris/pull/241#issuecomment-1890392297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#8](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/8#issuecomment-1890367679) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +6. 🗣 Commented on [#49](https://github.com/aguinane/nem-reader/pull/49#issuecomment-1890306660) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +7. 🗣 Commented on [#13](https://github.com/sarnold/gitchangelog/pull/13#issuecomment-1890269768) in [sarnold/gitchangelog](https://github.com/sarnold/gitchangelog) +8. 🗣 Commented on [#3038](https://github.com/dipy/dipy/pull/3038#issuecomment-1890263799) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#14](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/14#issuecomment-1890231983) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +10. 🗣 Commented on [#603](https://github.com/HEXRD/hexrd/pull/603#issuecomment-1889982165) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) From 7ac1c4ed7a8f391099313f35d955da390ff55954 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 01:17:03 +0000 Subject: [PATCH 1172/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 95948073..26f52f49 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3039](https://github.com/dipy/dipy/pull/3039#issuecomment-1891098418) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#10](https://github.com/kossiitkgp/mailing-scripts/pull/10#issuecomment-1890923202) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -3. 🗣 Commented on [#13](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/13#issuecomment-1890923068) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -4. 🗣 Commented on [#241](https://github.com/CartoonFan/lutris/pull/241#issuecomment-1890392297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#8](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/8#issuecomment-1890367679) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -6. 🗣 Commented on [#49](https://github.com/aguinane/nem-reader/pull/49#issuecomment-1890306660) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -7. 🗣 Commented on [#13](https://github.com/sarnold/gitchangelog/pull/13#issuecomment-1890269768) in [sarnold/gitchangelog](https://github.com/sarnold/gitchangelog) -8. 🗣 Commented on [#3038](https://github.com/dipy/dipy/pull/3038#issuecomment-1890263799) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#14](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/14#issuecomment-1890231983) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -10. 🗣 Commented on [#603](https://github.com/HEXRD/hexrd/pull/603#issuecomment-1889982165) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +1. 🗣 Commented on [#242](https://github.com/CartoonFan/lutris/pull/242#issuecomment-1891146615) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#21707](https://github.com/spyder-ide/spyder/pull/21707#issuecomment-1891127547) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#3039](https://github.com/dipy/dipy/pull/3039#issuecomment-1891098418) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#10](https://github.com/kossiitkgp/mailing-scripts/pull/10#issuecomment-1890923202) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +5. 🗣 Commented on [#13](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/13#issuecomment-1890923068) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +6. 🗣 Commented on [#241](https://github.com/CartoonFan/lutris/pull/241#issuecomment-1890392297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#8](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/8#issuecomment-1890367679) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +8. 🗣 Commented on [#49](https://github.com/aguinane/nem-reader/pull/49#issuecomment-1890306660) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +9. 🗣 Commented on [#13](https://github.com/sarnold/gitchangelog/pull/13#issuecomment-1890269768) in [sarnold/gitchangelog](https://github.com/sarnold/gitchangelog) +10. 🗣 Commented on [#3038](https://github.com/dipy/dipy/pull/3038#issuecomment-1890263799) in [dipy/dipy](https://github.com/dipy/dipy) From 2e7d9892810387dd6ed237ad0a33ab1c5140ec2f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 02:19:28 +0000 Subject: [PATCH 1173/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 26f52f49..916383a0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#242](https://github.com/CartoonFan/lutris/pull/242#issuecomment-1891146615) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#21707](https://github.com/spyder-ide/spyder/pull/21707#issuecomment-1891127547) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#3039](https://github.com/dipy/dipy/pull/3039#issuecomment-1891098418) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#10](https://github.com/kossiitkgp/mailing-scripts/pull/10#issuecomment-1890923202) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -5. 🗣 Commented on [#13](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/13#issuecomment-1890923068) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -6. 🗣 Commented on [#241](https://github.com/CartoonFan/lutris/pull/241#issuecomment-1890392297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#8](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/8#issuecomment-1890367679) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -8. 🗣 Commented on [#49](https://github.com/aguinane/nem-reader/pull/49#issuecomment-1890306660) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -9. 🗣 Commented on [#13](https://github.com/sarnold/gitchangelog/pull/13#issuecomment-1890269768) in [sarnold/gitchangelog](https://github.com/sarnold/gitchangelog) -10. 🗣 Commented on [#3038](https://github.com/dipy/dipy/pull/3038#issuecomment-1890263799) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#5401](https://github.com/rhinstaller/anaconda/pull/5401#issuecomment-1891189740) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#242](https://github.com/CartoonFan/lutris/pull/242#issuecomment-1891146615) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#21707](https://github.com/spyder-ide/spyder/pull/21707#issuecomment-1891127547) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#3039](https://github.com/dipy/dipy/pull/3039#issuecomment-1891098418) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#10](https://github.com/kossiitkgp/mailing-scripts/pull/10#issuecomment-1890923202) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +6. 🗣 Commented on [#13](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/13#issuecomment-1890923068) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +7. 🗣 Commented on [#241](https://github.com/CartoonFan/lutris/pull/241#issuecomment-1890392297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#8](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/8#issuecomment-1890367679) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +9. 🗣 Commented on [#49](https://github.com/aguinane/nem-reader/pull/49#issuecomment-1890306660) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +10. 🗣 Commented on [#13](https://github.com/sarnold/gitchangelog/pull/13#issuecomment-1890269768) in [sarnold/gitchangelog](https://github.com/sarnold/gitchangelog) From b2bf1fefc399df280763a1a9da0023d488dc4064 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 09:17:57 +0000 Subject: [PATCH 1174/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 916383a0..61a6ae07 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5401](https://github.com/rhinstaller/anaconda/pull/5401#issuecomment-1891189740) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#242](https://github.com/CartoonFan/lutris/pull/242#issuecomment-1891146615) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#21707](https://github.com/spyder-ide/spyder/pull/21707#issuecomment-1891127547) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#3039](https://github.com/dipy/dipy/pull/3039#issuecomment-1891098418) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#10](https://github.com/kossiitkgp/mailing-scripts/pull/10#issuecomment-1890923202) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -6. 🗣 Commented on [#13](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/13#issuecomment-1890923068) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -7. 🗣 Commented on [#241](https://github.com/CartoonFan/lutris/pull/241#issuecomment-1890392297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#8](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/8#issuecomment-1890367679) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -9. 🗣 Commented on [#49](https://github.com/aguinane/nem-reader/pull/49#issuecomment-1890306660) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -10. 🗣 Commented on [#13](https://github.com/sarnold/gitchangelog/pull/13#issuecomment-1890269768) in [sarnold/gitchangelog](https://github.com/sarnold/gitchangelog) +1. 🗣 Commented on [#1469](https://github.com/openSUSE/osc/pull/1469#issuecomment-1891630788) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#5401](https://github.com/rhinstaller/anaconda/pull/5401#issuecomment-1891189740) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#242](https://github.com/CartoonFan/lutris/pull/242#issuecomment-1891146615) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#21707](https://github.com/spyder-ide/spyder/pull/21707#issuecomment-1891127547) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#3039](https://github.com/dipy/dipy/pull/3039#issuecomment-1891098418) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#10](https://github.com/kossiitkgp/mailing-scripts/pull/10#issuecomment-1890923202) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +7. 🗣 Commented on [#13](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/13#issuecomment-1890923068) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +8. 🗣 Commented on [#241](https://github.com/CartoonFan/lutris/pull/241#issuecomment-1890392297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#8](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/8#issuecomment-1890367679) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +10. 🗣 Commented on [#49](https://github.com/aguinane/nem-reader/pull/49#issuecomment-1890306660) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) From e4d090d998b674cda8fa63e1c1450aad4de68ef5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 11:14:29 +0000 Subject: [PATCH 1175/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 61a6ae07..3d3d3251 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1469](https://github.com/openSUSE/osc/pull/1469#issuecomment-1891630788) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#5401](https://github.com/rhinstaller/anaconda/pull/5401#issuecomment-1891189740) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#242](https://github.com/CartoonFan/lutris/pull/242#issuecomment-1891146615) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#21707](https://github.com/spyder-ide/spyder/pull/21707#issuecomment-1891127547) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#3039](https://github.com/dipy/dipy/pull/3039#issuecomment-1891098418) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#10](https://github.com/kossiitkgp/mailing-scripts/pull/10#issuecomment-1890923202) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -7. 🗣 Commented on [#13](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/13#issuecomment-1890923068) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -8. 🗣 Commented on [#241](https://github.com/CartoonFan/lutris/pull/241#issuecomment-1890392297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#8](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/8#issuecomment-1890367679) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -10. 🗣 Commented on [#49](https://github.com/aguinane/nem-reader/pull/49#issuecomment-1890306660) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +1. 🗣 Commented on [#5403](https://github.com/rhinstaller/anaconda/pull/5403#issuecomment-1891884019) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#1469](https://github.com/openSUSE/osc/pull/1469#issuecomment-1891630788) in [openSUSE/osc](https://github.com/openSUSE/osc) +3. 🗣 Commented on [#5401](https://github.com/rhinstaller/anaconda/pull/5401#issuecomment-1891189740) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#242](https://github.com/CartoonFan/lutris/pull/242#issuecomment-1891146615) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#21707](https://github.com/spyder-ide/spyder/pull/21707#issuecomment-1891127547) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#3039](https://github.com/dipy/dipy/pull/3039#issuecomment-1891098418) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#10](https://github.com/kossiitkgp/mailing-scripts/pull/10#issuecomment-1890923202) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +8. 🗣 Commented on [#13](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/13#issuecomment-1890923068) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +9. 🗣 Commented on [#241](https://github.com/CartoonFan/lutris/pull/241#issuecomment-1890392297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#8](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/8#issuecomment-1890367679) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) From 91304332055ed18b23d76c434914079ca3d2e6e7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 13:20:38 +0000 Subject: [PATCH 1176/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3d3d3251..dcf55a25 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5403](https://github.com/rhinstaller/anaconda/pull/5403#issuecomment-1891884019) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#1469](https://github.com/openSUSE/osc/pull/1469#issuecomment-1891630788) in [openSUSE/osc](https://github.com/openSUSE/osc) -3. 🗣 Commented on [#5401](https://github.com/rhinstaller/anaconda/pull/5401#issuecomment-1891189740) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#242](https://github.com/CartoonFan/lutris/pull/242#issuecomment-1891146615) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#21707](https://github.com/spyder-ide/spyder/pull/21707#issuecomment-1891127547) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#3039](https://github.com/dipy/dipy/pull/3039#issuecomment-1891098418) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#10](https://github.com/kossiitkgp/mailing-scripts/pull/10#issuecomment-1890923202) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -8. 🗣 Commented on [#13](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/13#issuecomment-1890923068) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -9. 🗣 Commented on [#241](https://github.com/CartoonFan/lutris/pull/241#issuecomment-1890392297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#8](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/8#issuecomment-1890367679) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +1. 🗣 Commented on [#73](https://github.com/eastgenomics/eris/pull/73#issuecomment-1892110322) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#5403](https://github.com/rhinstaller/anaconda/pull/5403#issuecomment-1891884019) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#1469](https://github.com/openSUSE/osc/pull/1469#issuecomment-1891630788) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#5401](https://github.com/rhinstaller/anaconda/pull/5401#issuecomment-1891189740) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#242](https://github.com/CartoonFan/lutris/pull/242#issuecomment-1891146615) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#21707](https://github.com/spyder-ide/spyder/pull/21707#issuecomment-1891127547) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#3039](https://github.com/dipy/dipy/pull/3039#issuecomment-1891098418) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#10](https://github.com/kossiitkgp/mailing-scripts/pull/10#issuecomment-1890923202) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +9. 🗣 Commented on [#13](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/13#issuecomment-1890923068) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +10. 🗣 Commented on [#241](https://github.com/CartoonFan/lutris/pull/241#issuecomment-1890392297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 52825c74e7c9ce7b601bc0d95ac7d53fb81af0d2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 13:37:24 +0000 Subject: [PATCH 1177/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dcf55a25..55bf1eea 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#73](https://github.com/eastgenomics/eris/pull/73#issuecomment-1892110322) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#5403](https://github.com/rhinstaller/anaconda/pull/5403#issuecomment-1891884019) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#1469](https://github.com/openSUSE/osc/pull/1469#issuecomment-1891630788) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#5401](https://github.com/rhinstaller/anaconda/pull/5401#issuecomment-1891189740) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#242](https://github.com/CartoonFan/lutris/pull/242#issuecomment-1891146615) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#21707](https://github.com/spyder-ide/spyder/pull/21707#issuecomment-1891127547) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#3039](https://github.com/dipy/dipy/pull/3039#issuecomment-1891098418) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#10](https://github.com/kossiitkgp/mailing-scripts/pull/10#issuecomment-1890923202) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -9. 🗣 Commented on [#13](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/13#issuecomment-1890923068) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) -10. 🗣 Commented on [#241](https://github.com/CartoonFan/lutris/pull/241#issuecomment-1890392297) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#1674](https://github.com/OGGM/oggm/pull/1674#issuecomment-1892177403) in [OGGM/oggm](https://github.com/OGGM/oggm) +2. 🗣 Commented on [#73](https://github.com/eastgenomics/eris/pull/73#issuecomment-1892110322) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#5403](https://github.com/rhinstaller/anaconda/pull/5403#issuecomment-1891884019) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#1469](https://github.com/openSUSE/osc/pull/1469#issuecomment-1891630788) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#5401](https://github.com/rhinstaller/anaconda/pull/5401#issuecomment-1891189740) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#242](https://github.com/CartoonFan/lutris/pull/242#issuecomment-1891146615) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#21707](https://github.com/spyder-ide/spyder/pull/21707#issuecomment-1891127547) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#3039](https://github.com/dipy/dipy/pull/3039#issuecomment-1891098418) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#10](https://github.com/kossiitkgp/mailing-scripts/pull/10#issuecomment-1890923202) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +10. 🗣 Commented on [#13](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/13#issuecomment-1890923068) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) From 682a2b1ffab714f7f457ec019d84ac81eb41e63e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 14:16:00 +0000 Subject: [PATCH 1178/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 55bf1eea..111fbb1f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1674](https://github.com/OGGM/oggm/pull/1674#issuecomment-1892177403) in [OGGM/oggm](https://github.com/OGGM/oggm) -2. 🗣 Commented on [#73](https://github.com/eastgenomics/eris/pull/73#issuecomment-1892110322) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#5403](https://github.com/rhinstaller/anaconda/pull/5403#issuecomment-1891884019) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#1469](https://github.com/openSUSE/osc/pull/1469#issuecomment-1891630788) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#5401](https://github.com/rhinstaller/anaconda/pull/5401#issuecomment-1891189740) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#242](https://github.com/CartoonFan/lutris/pull/242#issuecomment-1891146615) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#21707](https://github.com/spyder-ide/spyder/pull/21707#issuecomment-1891127547) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#3039](https://github.com/dipy/dipy/pull/3039#issuecomment-1891098418) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#10](https://github.com/kossiitkgp/mailing-scripts/pull/10#issuecomment-1890923202) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -10. 🗣 Commented on [#13](https://github.com/EdinsonRequena/tiktok-backend-clone/pull/13#issuecomment-1890923068) in [EdinsonRequena/tiktok-backend-clone](https://github.com/EdinsonRequena/tiktok-backend-clone) +1. 🗣 Commented on [#5404](https://github.com/rhinstaller/anaconda/pull/5404#issuecomment-1892235189) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#5](https://github.com/FirePing32/PyPSI/pull/5#issuecomment-1892194066) in [FirePing32/PyPSI](https://github.com/FirePing32/PyPSI) +3. 🗣 Commented on [#1674](https://github.com/OGGM/oggm/pull/1674#issuecomment-1892177403) in [OGGM/oggm](https://github.com/OGGM/oggm) +4. 🗣 Commented on [#73](https://github.com/eastgenomics/eris/pull/73#issuecomment-1892110322) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#5403](https://github.com/rhinstaller/anaconda/pull/5403#issuecomment-1891884019) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#1469](https://github.com/openSUSE/osc/pull/1469#issuecomment-1891630788) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#5401](https://github.com/rhinstaller/anaconda/pull/5401#issuecomment-1891189740) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#242](https://github.com/CartoonFan/lutris/pull/242#issuecomment-1891146615) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#21707](https://github.com/spyder-ide/spyder/pull/21707#issuecomment-1891127547) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#3039](https://github.com/dipy/dipy/pull/3039#issuecomment-1891098418) in [dipy/dipy](https://github.com/dipy/dipy) From 487ae269dd6424cfdb914a833894298af65e7081 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 14:37:36 +0000 Subject: [PATCH 1179/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 111fbb1f..0b9c0122 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5404](https://github.com/rhinstaller/anaconda/pull/5404#issuecomment-1892235189) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#5](https://github.com/FirePing32/PyPSI/pull/5#issuecomment-1892194066) in [FirePing32/PyPSI](https://github.com/FirePing32/PyPSI) -3. 🗣 Commented on [#1674](https://github.com/OGGM/oggm/pull/1674#issuecomment-1892177403) in [OGGM/oggm](https://github.com/OGGM/oggm) -4. 🗣 Commented on [#73](https://github.com/eastgenomics/eris/pull/73#issuecomment-1892110322) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#5403](https://github.com/rhinstaller/anaconda/pull/5403#issuecomment-1891884019) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#1469](https://github.com/openSUSE/osc/pull/1469#issuecomment-1891630788) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#5401](https://github.com/rhinstaller/anaconda/pull/5401#issuecomment-1891189740) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#242](https://github.com/CartoonFan/lutris/pull/242#issuecomment-1891146615) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#21707](https://github.com/spyder-ide/spyder/pull/21707#issuecomment-1891127547) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#3039](https://github.com/dipy/dipy/pull/3039#issuecomment-1891098418) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#954](https://github.com/avaframe/AvaFrame/pull/954#issuecomment-1892274596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#5404](https://github.com/rhinstaller/anaconda/pull/5404#issuecomment-1892235189) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#5](https://github.com/FirePing32/PyPSI/pull/5#issuecomment-1892194066) in [FirePing32/PyPSI](https://github.com/FirePing32/PyPSI) +4. 🗣 Commented on [#1674](https://github.com/OGGM/oggm/pull/1674#issuecomment-1892177403) in [OGGM/oggm](https://github.com/OGGM/oggm) +5. 🗣 Commented on [#73](https://github.com/eastgenomics/eris/pull/73#issuecomment-1892110322) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#5403](https://github.com/rhinstaller/anaconda/pull/5403#issuecomment-1891884019) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#1469](https://github.com/openSUSE/osc/pull/1469#issuecomment-1891630788) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#5401](https://github.com/rhinstaller/anaconda/pull/5401#issuecomment-1891189740) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#242](https://github.com/CartoonFan/lutris/pull/242#issuecomment-1891146615) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#21707](https://github.com/spyder-ide/spyder/pull/21707#issuecomment-1891127547) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From a4e9a15e39b81e2713e2ef3599ebebbbd949e3d8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 15:37:39 +0000 Subject: [PATCH 1180/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0b9c0122..1ffdca76 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#954](https://github.com/avaframe/AvaFrame/pull/954#issuecomment-1892274596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#5404](https://github.com/rhinstaller/anaconda/pull/5404#issuecomment-1892235189) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#5](https://github.com/FirePing32/PyPSI/pull/5#issuecomment-1892194066) in [FirePing32/PyPSI](https://github.com/FirePing32/PyPSI) -4. 🗣 Commented on [#1674](https://github.com/OGGM/oggm/pull/1674#issuecomment-1892177403) in [OGGM/oggm](https://github.com/OGGM/oggm) -5. 🗣 Commented on [#73](https://github.com/eastgenomics/eris/pull/73#issuecomment-1892110322) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#5403](https://github.com/rhinstaller/anaconda/pull/5403#issuecomment-1891884019) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#1469](https://github.com/openSUSE/osc/pull/1469#issuecomment-1891630788) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#5401](https://github.com/rhinstaller/anaconda/pull/5401#issuecomment-1891189740) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#242](https://github.com/CartoonFan/lutris/pull/242#issuecomment-1891146615) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#21707](https://github.com/spyder-ide/spyder/pull/21707#issuecomment-1891127547) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#260](https://github.com/OpenFreeEnergy/gufe/pull/260#issuecomment-1892374794) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#954](https://github.com/avaframe/AvaFrame/pull/954#issuecomment-1892274596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#5404](https://github.com/rhinstaller/anaconda/pull/5404#issuecomment-1892235189) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#5](https://github.com/FirePing32/PyPSI/pull/5#issuecomment-1892194066) in [FirePing32/PyPSI](https://github.com/FirePing32/PyPSI) +5. 🗣 Commented on [#1674](https://github.com/OGGM/oggm/pull/1674#issuecomment-1892177403) in [OGGM/oggm](https://github.com/OGGM/oggm) +6. 🗣 Commented on [#73](https://github.com/eastgenomics/eris/pull/73#issuecomment-1892110322) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#5403](https://github.com/rhinstaller/anaconda/pull/5403#issuecomment-1891884019) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#1469](https://github.com/openSUSE/osc/pull/1469#issuecomment-1891630788) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#5401](https://github.com/rhinstaller/anaconda/pull/5401#issuecomment-1891189740) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#242](https://github.com/CartoonFan/lutris/pull/242#issuecomment-1891146615) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 527aa49df151a295add8daba081de0784f0406db Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 20:17:23 +0000 Subject: [PATCH 1181/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1ffdca76..e16cb50b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#260](https://github.com/OpenFreeEnergy/gufe/pull/260#issuecomment-1892374794) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#954](https://github.com/avaframe/AvaFrame/pull/954#issuecomment-1892274596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#5404](https://github.com/rhinstaller/anaconda/pull/5404#issuecomment-1892235189) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#5](https://github.com/FirePing32/PyPSI/pull/5#issuecomment-1892194066) in [FirePing32/PyPSI](https://github.com/FirePing32/PyPSI) -5. 🗣 Commented on [#1674](https://github.com/OGGM/oggm/pull/1674#issuecomment-1892177403) in [OGGM/oggm](https://github.com/OGGM/oggm) -6. 🗣 Commented on [#73](https://github.com/eastgenomics/eris/pull/73#issuecomment-1892110322) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#5403](https://github.com/rhinstaller/anaconda/pull/5403#issuecomment-1891884019) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#1469](https://github.com/openSUSE/osc/pull/1469#issuecomment-1891630788) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#5401](https://github.com/rhinstaller/anaconda/pull/5401#issuecomment-1891189740) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#242](https://github.com/CartoonFan/lutris/pull/242#issuecomment-1891146615) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#222](https://github.com/scil-vital/dwi_ml/pull/222#issuecomment-1892706986) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +2. 🗣 Commented on [#260](https://github.com/OpenFreeEnergy/gufe/pull/260#issuecomment-1892374794) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#954](https://github.com/avaframe/AvaFrame/pull/954#issuecomment-1892274596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#5404](https://github.com/rhinstaller/anaconda/pull/5404#issuecomment-1892235189) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#5](https://github.com/FirePing32/PyPSI/pull/5#issuecomment-1892194066) in [FirePing32/PyPSI](https://github.com/FirePing32/PyPSI) +6. 🗣 Commented on [#1674](https://github.com/OGGM/oggm/pull/1674#issuecomment-1892177403) in [OGGM/oggm](https://github.com/OGGM/oggm) +7. 🗣 Commented on [#73](https://github.com/eastgenomics/eris/pull/73#issuecomment-1892110322) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#5403](https://github.com/rhinstaller/anaconda/pull/5403#issuecomment-1891884019) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#1469](https://github.com/openSUSE/osc/pull/1469#issuecomment-1891630788) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#5401](https://github.com/rhinstaller/anaconda/pull/5401#issuecomment-1891189740) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From ae71ab3c5bdeb91f0299c5dc2432a3ac42bc7007 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jan 2024 01:14:38 +0000 Subject: [PATCH 1182/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e16cb50b..f73b14cd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#222](https://github.com/scil-vital/dwi_ml/pull/222#issuecomment-1892706986) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -2. 🗣 Commented on [#260](https://github.com/OpenFreeEnergy/gufe/pull/260#issuecomment-1892374794) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#954](https://github.com/avaframe/AvaFrame/pull/954#issuecomment-1892274596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#5404](https://github.com/rhinstaller/anaconda/pull/5404#issuecomment-1892235189) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#5](https://github.com/FirePing32/PyPSI/pull/5#issuecomment-1892194066) in [FirePing32/PyPSI](https://github.com/FirePing32/PyPSI) -6. 🗣 Commented on [#1674](https://github.com/OGGM/oggm/pull/1674#issuecomment-1892177403) in [OGGM/oggm](https://github.com/OGGM/oggm) -7. 🗣 Commented on [#73](https://github.com/eastgenomics/eris/pull/73#issuecomment-1892110322) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#5403](https://github.com/rhinstaller/anaconda/pull/5403#issuecomment-1891884019) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#1469](https://github.com/openSUSE/osc/pull/1469#issuecomment-1891630788) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#5401](https://github.com/rhinstaller/anaconda/pull/5401#issuecomment-1891189740) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#492](https://github.com/OpenFreeEnergy/openfe/pull/492#issuecomment-1892901245) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#222](https://github.com/scil-vital/dwi_ml/pull/222#issuecomment-1892706986) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +3. 🗣 Commented on [#260](https://github.com/OpenFreeEnergy/gufe/pull/260#issuecomment-1892374794) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#954](https://github.com/avaframe/AvaFrame/pull/954#issuecomment-1892274596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#5404](https://github.com/rhinstaller/anaconda/pull/5404#issuecomment-1892235189) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#5](https://github.com/FirePing32/PyPSI/pull/5#issuecomment-1892194066) in [FirePing32/PyPSI](https://github.com/FirePing32/PyPSI) +7. 🗣 Commented on [#1674](https://github.com/OGGM/oggm/pull/1674#issuecomment-1892177403) in [OGGM/oggm](https://github.com/OGGM/oggm) +8. 🗣 Commented on [#73](https://github.com/eastgenomics/eris/pull/73#issuecomment-1892110322) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#5403](https://github.com/rhinstaller/anaconda/pull/5403#issuecomment-1891884019) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#1469](https://github.com/openSUSE/osc/pull/1469#issuecomment-1891630788) in [openSUSE/osc](https://github.com/openSUSE/osc) From a73273397953bf32acfdb9bb734ae43eb0c8a9f4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jan 2024 03:19:02 +0000 Subject: [PATCH 1183/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f73b14cd..a94c16f6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#492](https://github.com/OpenFreeEnergy/openfe/pull/492#issuecomment-1892901245) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#222](https://github.com/scil-vital/dwi_ml/pull/222#issuecomment-1892706986) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -3. 🗣 Commented on [#260](https://github.com/OpenFreeEnergy/gufe/pull/260#issuecomment-1892374794) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#954](https://github.com/avaframe/AvaFrame/pull/954#issuecomment-1892274596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#5404](https://github.com/rhinstaller/anaconda/pull/5404#issuecomment-1892235189) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#5](https://github.com/FirePing32/PyPSI/pull/5#issuecomment-1892194066) in [FirePing32/PyPSI](https://github.com/FirePing32/PyPSI) -7. 🗣 Commented on [#1674](https://github.com/OGGM/oggm/pull/1674#issuecomment-1892177403) in [OGGM/oggm](https://github.com/OGGM/oggm) -8. 🗣 Commented on [#73](https://github.com/eastgenomics/eris/pull/73#issuecomment-1892110322) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#5403](https://github.com/rhinstaller/anaconda/pull/5403#issuecomment-1891884019) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#1469](https://github.com/openSUSE/osc/pull/1469#issuecomment-1891630788) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#888](https://github.com/ToFuProject/tofu/pull/888#issuecomment-1893002857) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#492](https://github.com/OpenFreeEnergy/openfe/pull/492#issuecomment-1892901245) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#222](https://github.com/scil-vital/dwi_ml/pull/222#issuecomment-1892706986) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +4. 🗣 Commented on [#260](https://github.com/OpenFreeEnergy/gufe/pull/260#issuecomment-1892374794) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#954](https://github.com/avaframe/AvaFrame/pull/954#issuecomment-1892274596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#5404](https://github.com/rhinstaller/anaconda/pull/5404#issuecomment-1892235189) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#5](https://github.com/FirePing32/PyPSI/pull/5#issuecomment-1892194066) in [FirePing32/PyPSI](https://github.com/FirePing32/PyPSI) +8. 🗣 Commented on [#1674](https://github.com/OGGM/oggm/pull/1674#issuecomment-1892177403) in [OGGM/oggm](https://github.com/OGGM/oggm) +9. 🗣 Commented on [#73](https://github.com/eastgenomics/eris/pull/73#issuecomment-1892110322) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#5403](https://github.com/rhinstaller/anaconda/pull/5403#issuecomment-1891884019) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 2e7de039e14c7acafb0938849086d2fb3687379d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jan 2024 09:37:42 +0000 Subject: [PATCH 1184/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a94c16f6..79a56a2c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#888](https://github.com/ToFuProject/tofu/pull/888#issuecomment-1893002857) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#492](https://github.com/OpenFreeEnergy/openfe/pull/492#issuecomment-1892901245) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#222](https://github.com/scil-vital/dwi_ml/pull/222#issuecomment-1892706986) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -4. 🗣 Commented on [#260](https://github.com/OpenFreeEnergy/gufe/pull/260#issuecomment-1892374794) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#954](https://github.com/avaframe/AvaFrame/pull/954#issuecomment-1892274596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#5404](https://github.com/rhinstaller/anaconda/pull/5404#issuecomment-1892235189) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#5](https://github.com/FirePing32/PyPSI/pull/5#issuecomment-1892194066) in [FirePing32/PyPSI](https://github.com/FirePing32/PyPSI) -8. 🗣 Commented on [#1674](https://github.com/OGGM/oggm/pull/1674#issuecomment-1892177403) in [OGGM/oggm](https://github.com/OGGM/oggm) -9. 🗣 Commented on [#73](https://github.com/eastgenomics/eris/pull/73#issuecomment-1892110322) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#5403](https://github.com/rhinstaller/anaconda/pull/5403#issuecomment-1891884019) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#655](https://github.com/SergeyPirogov/webdriver_manager/pull/655#issuecomment-1893362981) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +2. 🗣 Commented on [#888](https://github.com/ToFuProject/tofu/pull/888#issuecomment-1893002857) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#492](https://github.com/OpenFreeEnergy/openfe/pull/492#issuecomment-1892901245) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#222](https://github.com/scil-vital/dwi_ml/pull/222#issuecomment-1892706986) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +5. 🗣 Commented on [#260](https://github.com/OpenFreeEnergy/gufe/pull/260#issuecomment-1892374794) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#954](https://github.com/avaframe/AvaFrame/pull/954#issuecomment-1892274596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#5404](https://github.com/rhinstaller/anaconda/pull/5404#issuecomment-1892235189) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#5](https://github.com/FirePing32/PyPSI/pull/5#issuecomment-1892194066) in [FirePing32/PyPSI](https://github.com/FirePing32/PyPSI) +9. 🗣 Commented on [#1674](https://github.com/OGGM/oggm/pull/1674#issuecomment-1892177403) in [OGGM/oggm](https://github.com/OGGM/oggm) +10. 🗣 Commented on [#73](https://github.com/eastgenomics/eris/pull/73#issuecomment-1892110322) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 688932f3edc74bde91dab799ebc3369da9e76dda Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jan 2024 12:32:31 +0000 Subject: [PATCH 1185/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 79a56a2c..6a19c701 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#655](https://github.com/SergeyPirogov/webdriver_manager/pull/655#issuecomment-1893362981) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -2. 🗣 Commented on [#888](https://github.com/ToFuProject/tofu/pull/888#issuecomment-1893002857) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#492](https://github.com/OpenFreeEnergy/openfe/pull/492#issuecomment-1892901245) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#222](https://github.com/scil-vital/dwi_ml/pull/222#issuecomment-1892706986) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -5. 🗣 Commented on [#260](https://github.com/OpenFreeEnergy/gufe/pull/260#issuecomment-1892374794) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#954](https://github.com/avaframe/AvaFrame/pull/954#issuecomment-1892274596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#5404](https://github.com/rhinstaller/anaconda/pull/5404#issuecomment-1892235189) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#5](https://github.com/FirePing32/PyPSI/pull/5#issuecomment-1892194066) in [FirePing32/PyPSI](https://github.com/FirePing32/PyPSI) -9. 🗣 Commented on [#1674](https://github.com/OGGM/oggm/pull/1674#issuecomment-1892177403) in [OGGM/oggm](https://github.com/OGGM/oggm) -10. 🗣 Commented on [#73](https://github.com/eastgenomics/eris/pull/73#issuecomment-1892110322) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#74](https://github.com/eastgenomics/eris/pull/74#issuecomment-1893640136) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#59](https://github.com/eastgenomics/trendyQC/pull/59#issuecomment-1893616580) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +3. 🗣 Commented on [#655](https://github.com/SergeyPirogov/webdriver_manager/pull/655#issuecomment-1893362981) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +4. 🗣 Commented on [#888](https://github.com/ToFuProject/tofu/pull/888#issuecomment-1893002857) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#492](https://github.com/OpenFreeEnergy/openfe/pull/492#issuecomment-1892901245) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#222](https://github.com/scil-vital/dwi_ml/pull/222#issuecomment-1892706986) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +7. 🗣 Commented on [#260](https://github.com/OpenFreeEnergy/gufe/pull/260#issuecomment-1892374794) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#954](https://github.com/avaframe/AvaFrame/pull/954#issuecomment-1892274596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#5404](https://github.com/rhinstaller/anaconda/pull/5404#issuecomment-1892235189) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#5](https://github.com/FirePing32/PyPSI/pull/5#issuecomment-1892194066) in [FirePing32/PyPSI](https://github.com/FirePing32/PyPSI) From efd05662e2c9b363613b79ee9dffc5839cd573e6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jan 2024 13:20:20 +0000 Subject: [PATCH 1186/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6a19c701..f1e88624 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#74](https://github.com/eastgenomics/eris/pull/74#issuecomment-1893640136) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#59](https://github.com/eastgenomics/trendyQC/pull/59#issuecomment-1893616580) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -3. 🗣 Commented on [#655](https://github.com/SergeyPirogov/webdriver_manager/pull/655#issuecomment-1893362981) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -4. 🗣 Commented on [#888](https://github.com/ToFuProject/tofu/pull/888#issuecomment-1893002857) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#492](https://github.com/OpenFreeEnergy/openfe/pull/492#issuecomment-1892901245) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#222](https://github.com/scil-vital/dwi_ml/pull/222#issuecomment-1892706986) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -7. 🗣 Commented on [#260](https://github.com/OpenFreeEnergy/gufe/pull/260#issuecomment-1892374794) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#954](https://github.com/avaframe/AvaFrame/pull/954#issuecomment-1892274596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#5404](https://github.com/rhinstaller/anaconda/pull/5404#issuecomment-1892235189) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#5](https://github.com/FirePing32/PyPSI/pull/5#issuecomment-1892194066) in [FirePing32/PyPSI](https://github.com/FirePing32/PyPSI) +1. 🗣 Commented on [#75](https://github.com/eastgenomics/eris/pull/75#issuecomment-1893697744) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#74](https://github.com/eastgenomics/eris/pull/74#issuecomment-1893640136) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#59](https://github.com/eastgenomics/trendyQC/pull/59#issuecomment-1893616580) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +4. 🗣 Commented on [#655](https://github.com/SergeyPirogov/webdriver_manager/pull/655#issuecomment-1893362981) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +5. 🗣 Commented on [#888](https://github.com/ToFuProject/tofu/pull/888#issuecomment-1893002857) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#492](https://github.com/OpenFreeEnergy/openfe/pull/492#issuecomment-1892901245) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#222](https://github.com/scil-vital/dwi_ml/pull/222#issuecomment-1892706986) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +8. 🗣 Commented on [#260](https://github.com/OpenFreeEnergy/gufe/pull/260#issuecomment-1892374794) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +9. 🗣 Commented on [#954](https://github.com/avaframe/AvaFrame/pull/954#issuecomment-1892274596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#5404](https://github.com/rhinstaller/anaconda/pull/5404#issuecomment-1892235189) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From e81e938521f646bc2d456a9efeb6626114bc0ef4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jan 2024 14:15:38 +0000 Subject: [PATCH 1187/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f1e88624..1f353772 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#75](https://github.com/eastgenomics/eris/pull/75#issuecomment-1893697744) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#74](https://github.com/eastgenomics/eris/pull/74#issuecomment-1893640136) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#59](https://github.com/eastgenomics/trendyQC/pull/59#issuecomment-1893616580) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -4. 🗣 Commented on [#655](https://github.com/SergeyPirogov/webdriver_manager/pull/655#issuecomment-1893362981) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -5. 🗣 Commented on [#888](https://github.com/ToFuProject/tofu/pull/888#issuecomment-1893002857) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#492](https://github.com/OpenFreeEnergy/openfe/pull/492#issuecomment-1892901245) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#222](https://github.com/scil-vital/dwi_ml/pull/222#issuecomment-1892706986) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -8. 🗣 Commented on [#260](https://github.com/OpenFreeEnergy/gufe/pull/260#issuecomment-1892374794) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -9. 🗣 Commented on [#954](https://github.com/avaframe/AvaFrame/pull/954#issuecomment-1892274596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#5404](https://github.com/rhinstaller/anaconda/pull/5404#issuecomment-1892235189) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#180](https://github.com/eastgenomics/eggd_dias_batch/pull/180#issuecomment-1893794511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +2. 🗣 Commented on [#75](https://github.com/eastgenomics/eris/pull/75#issuecomment-1893697744) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#74](https://github.com/eastgenomics/eris/pull/74#issuecomment-1893640136) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#59](https://github.com/eastgenomics/trendyQC/pull/59#issuecomment-1893616580) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +5. 🗣 Commented on [#655](https://github.com/SergeyPirogov/webdriver_manager/pull/655#issuecomment-1893362981) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +6. 🗣 Commented on [#888](https://github.com/ToFuProject/tofu/pull/888#issuecomment-1893002857) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#492](https://github.com/OpenFreeEnergy/openfe/pull/492#issuecomment-1892901245) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#222](https://github.com/scil-vital/dwi_ml/pull/222#issuecomment-1892706986) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +9. 🗣 Commented on [#260](https://github.com/OpenFreeEnergy/gufe/pull/260#issuecomment-1892374794) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#954](https://github.com/avaframe/AvaFrame/pull/954#issuecomment-1892274596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From 6ecbe323760f97e08f4cbf1ceab75f2f58f4da52 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jan 2024 14:37:24 +0000 Subject: [PATCH 1188/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1f353772..de74a688 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#180](https://github.com/eastgenomics/eggd_dias_batch/pull/180#issuecomment-1893794511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -2. 🗣 Commented on [#75](https://github.com/eastgenomics/eris/pull/75#issuecomment-1893697744) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#74](https://github.com/eastgenomics/eris/pull/74#issuecomment-1893640136) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#59](https://github.com/eastgenomics/trendyQC/pull/59#issuecomment-1893616580) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -5. 🗣 Commented on [#655](https://github.com/SergeyPirogov/webdriver_manager/pull/655#issuecomment-1893362981) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -6. 🗣 Commented on [#888](https://github.com/ToFuProject/tofu/pull/888#issuecomment-1893002857) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#492](https://github.com/OpenFreeEnergy/openfe/pull/492#issuecomment-1892901245) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#222](https://github.com/scil-vital/dwi_ml/pull/222#issuecomment-1892706986) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -9. 🗣 Commented on [#260](https://github.com/OpenFreeEnergy/gufe/pull/260#issuecomment-1892374794) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#954](https://github.com/avaframe/AvaFrame/pull/954#issuecomment-1892274596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#59](https://github.com/elinscott/ase_koopmans/pull/59#issuecomment-1893867097) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) +2. 🗣 Commented on [#180](https://github.com/eastgenomics/eggd_dias_batch/pull/180#issuecomment-1893794511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +3. 🗣 Commented on [#75](https://github.com/eastgenomics/eris/pull/75#issuecomment-1893697744) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#74](https://github.com/eastgenomics/eris/pull/74#issuecomment-1893640136) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#59](https://github.com/eastgenomics/trendyQC/pull/59#issuecomment-1893616580) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +6. 🗣 Commented on [#655](https://github.com/SergeyPirogov/webdriver_manager/pull/655#issuecomment-1893362981) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +7. 🗣 Commented on [#888](https://github.com/ToFuProject/tofu/pull/888#issuecomment-1893002857) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#492](https://github.com/OpenFreeEnergy/openfe/pull/492#issuecomment-1892901245) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#222](https://github.com/scil-vital/dwi_ml/pull/222#issuecomment-1892706986) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +10. 🗣 Commented on [#260](https://github.com/OpenFreeEnergy/gufe/pull/260#issuecomment-1892374794) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From 4cf6bfe5fff6417c62c71ed1ebdcd905780233c2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jan 2024 15:17:17 +0000 Subject: [PATCH 1189/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index de74a688..01f0e98c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#59](https://github.com/elinscott/ase_koopmans/pull/59#issuecomment-1893867097) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) -2. 🗣 Commented on [#180](https://github.com/eastgenomics/eggd_dias_batch/pull/180#issuecomment-1893794511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -3. 🗣 Commented on [#75](https://github.com/eastgenomics/eris/pull/75#issuecomment-1893697744) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#74](https://github.com/eastgenomics/eris/pull/74#issuecomment-1893640136) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#59](https://github.com/eastgenomics/trendyQC/pull/59#issuecomment-1893616580) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -6. 🗣 Commented on [#655](https://github.com/SergeyPirogov/webdriver_manager/pull/655#issuecomment-1893362981) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -7. 🗣 Commented on [#888](https://github.com/ToFuProject/tofu/pull/888#issuecomment-1893002857) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#492](https://github.com/OpenFreeEnergy/openfe/pull/492#issuecomment-1892901245) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#222](https://github.com/scil-vital/dwi_ml/pull/222#issuecomment-1892706986) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -10. 🗣 Commented on [#260](https://github.com/OpenFreeEnergy/gufe/pull/260#issuecomment-1892374794) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#955](https://github.com/avaframe/AvaFrame/pull/955#issuecomment-1893945358) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#489](https://github.com/HEPCloud/decisionengine_modules/pull/489#issuecomment-1893936794) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +3. 🗣 Commented on [#59](https://github.com/elinscott/ase_koopmans/pull/59#issuecomment-1893867097) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) +4. 🗣 Commented on [#180](https://github.com/eastgenomics/eggd_dias_batch/pull/180#issuecomment-1893794511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +5. 🗣 Commented on [#75](https://github.com/eastgenomics/eris/pull/75#issuecomment-1893697744) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#74](https://github.com/eastgenomics/eris/pull/74#issuecomment-1893640136) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#59](https://github.com/eastgenomics/trendyQC/pull/59#issuecomment-1893616580) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +8. 🗣 Commented on [#655](https://github.com/SergeyPirogov/webdriver_manager/pull/655#issuecomment-1893362981) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +9. 🗣 Commented on [#888](https://github.com/ToFuProject/tofu/pull/888#issuecomment-1893002857) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#492](https://github.com/OpenFreeEnergy/openfe/pull/492#issuecomment-1892901245) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 15abf3489ddabaf8f0d9885402da3317b4817867 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jan 2024 16:22:09 +0000 Subject: [PATCH 1190/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 01f0e98c..9d34e076 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#955](https://github.com/avaframe/AvaFrame/pull/955#issuecomment-1893945358) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#489](https://github.com/HEPCloud/decisionengine_modules/pull/489#issuecomment-1893936794) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -3. 🗣 Commented on [#59](https://github.com/elinscott/ase_koopmans/pull/59#issuecomment-1893867097) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) -4. 🗣 Commented on [#180](https://github.com/eastgenomics/eggd_dias_batch/pull/180#issuecomment-1893794511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -5. 🗣 Commented on [#75](https://github.com/eastgenomics/eris/pull/75#issuecomment-1893697744) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#74](https://github.com/eastgenomics/eris/pull/74#issuecomment-1893640136) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#59](https://github.com/eastgenomics/trendyQC/pull/59#issuecomment-1893616580) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -8. 🗣 Commented on [#655](https://github.com/SergeyPirogov/webdriver_manager/pull/655#issuecomment-1893362981) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -9. 🗣 Commented on [#888](https://github.com/ToFuProject/tofu/pull/888#issuecomment-1893002857) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#492](https://github.com/OpenFreeEnergy/openfe/pull/492#issuecomment-1892901245) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#21710](https://github.com/spyder-ide/spyder/pull/21710#issuecomment-1894059241) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#955](https://github.com/avaframe/AvaFrame/pull/955#issuecomment-1893945358) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#489](https://github.com/HEPCloud/decisionengine_modules/pull/489#issuecomment-1893936794) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +4. 🗣 Commented on [#59](https://github.com/elinscott/ase_koopmans/pull/59#issuecomment-1893867097) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) +5. 🗣 Commented on [#180](https://github.com/eastgenomics/eggd_dias_batch/pull/180#issuecomment-1893794511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +6. 🗣 Commented on [#75](https://github.com/eastgenomics/eris/pull/75#issuecomment-1893697744) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#74](https://github.com/eastgenomics/eris/pull/74#issuecomment-1893640136) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#59](https://github.com/eastgenomics/trendyQC/pull/59#issuecomment-1893616580) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +9. 🗣 Commented on [#655](https://github.com/SergeyPirogov/webdriver_manager/pull/655#issuecomment-1893362981) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +10. 🗣 Commented on [#888](https://github.com/ToFuProject/tofu/pull/888#issuecomment-1893002857) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From 4bb848642f50e569c6432d1daf5f557b2d545854 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jan 2024 19:13:32 +0000 Subject: [PATCH 1191/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9d34e076..5e5cb11f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21710](https://github.com/spyder-ide/spyder/pull/21710#issuecomment-1894059241) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#955](https://github.com/avaframe/AvaFrame/pull/955#issuecomment-1893945358) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#489](https://github.com/HEPCloud/decisionengine_modules/pull/489#issuecomment-1893936794) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -4. 🗣 Commented on [#59](https://github.com/elinscott/ase_koopmans/pull/59#issuecomment-1893867097) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) -5. 🗣 Commented on [#180](https://github.com/eastgenomics/eggd_dias_batch/pull/180#issuecomment-1893794511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -6. 🗣 Commented on [#75](https://github.com/eastgenomics/eris/pull/75#issuecomment-1893697744) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#74](https://github.com/eastgenomics/eris/pull/74#issuecomment-1893640136) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#59](https://github.com/eastgenomics/trendyQC/pull/59#issuecomment-1893616580) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -9. 🗣 Commented on [#655](https://github.com/SergeyPirogov/webdriver_manager/pull/655#issuecomment-1893362981) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -10. 🗣 Commented on [#888](https://github.com/ToFuProject/tofu/pull/888#issuecomment-1893002857) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#1045](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1045#issuecomment-1894309034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#21710](https://github.com/spyder-ide/spyder/pull/21710#issuecomment-1894059241) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#955](https://github.com/avaframe/AvaFrame/pull/955#issuecomment-1893945358) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#489](https://github.com/HEPCloud/decisionengine_modules/pull/489#issuecomment-1893936794) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +5. 🗣 Commented on [#59](https://github.com/elinscott/ase_koopmans/pull/59#issuecomment-1893867097) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) +6. 🗣 Commented on [#180](https://github.com/eastgenomics/eggd_dias_batch/pull/180#issuecomment-1893794511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +7. 🗣 Commented on [#75](https://github.com/eastgenomics/eris/pull/75#issuecomment-1893697744) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#74](https://github.com/eastgenomics/eris/pull/74#issuecomment-1893640136) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#59](https://github.com/eastgenomics/trendyQC/pull/59#issuecomment-1893616580) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +10. 🗣 Commented on [#655](https://github.com/SergeyPirogov/webdriver_manager/pull/655#issuecomment-1893362981) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) From 202093a659955cfba5e4c0240ebdf5f69b4aa2b4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jan 2024 21:14:59 +0000 Subject: [PATCH 1192/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5e5cb11f..75fb85d4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1045](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1045#issuecomment-1894309034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#21710](https://github.com/spyder-ide/spyder/pull/21710#issuecomment-1894059241) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#955](https://github.com/avaframe/AvaFrame/pull/955#issuecomment-1893945358) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#489](https://github.com/HEPCloud/decisionengine_modules/pull/489#issuecomment-1893936794) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -5. 🗣 Commented on [#59](https://github.com/elinscott/ase_koopmans/pull/59#issuecomment-1893867097) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) -6. 🗣 Commented on [#180](https://github.com/eastgenomics/eggd_dias_batch/pull/180#issuecomment-1893794511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -7. 🗣 Commented on [#75](https://github.com/eastgenomics/eris/pull/75#issuecomment-1893697744) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#74](https://github.com/eastgenomics/eris/pull/74#issuecomment-1893640136) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#59](https://github.com/eastgenomics/trendyQC/pull/59#issuecomment-1893616580) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -10. 🗣 Commented on [#655](https://github.com/SergeyPirogov/webdriver_manager/pull/655#issuecomment-1893362981) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +1. 🗣 Commented on [#1634](https://github.com/zarr-developers/zarr-python/pull/1634#issuecomment-1894499907) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +2. 🗣 Commented on [#1045](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1045#issuecomment-1894309034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#21710](https://github.com/spyder-ide/spyder/pull/21710#issuecomment-1894059241) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#955](https://github.com/avaframe/AvaFrame/pull/955#issuecomment-1893945358) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#489](https://github.com/HEPCloud/decisionengine_modules/pull/489#issuecomment-1893936794) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +6. 🗣 Commented on [#59](https://github.com/elinscott/ase_koopmans/pull/59#issuecomment-1893867097) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) +7. 🗣 Commented on [#180](https://github.com/eastgenomics/eggd_dias_batch/pull/180#issuecomment-1893794511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +8. 🗣 Commented on [#75](https://github.com/eastgenomics/eris/pull/75#issuecomment-1893697744) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#74](https://github.com/eastgenomics/eris/pull/74#issuecomment-1893640136) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#59](https://github.com/eastgenomics/trendyQC/pull/59#issuecomment-1893616580) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) From c25fb98f56c260a8489a07fb6eef61073325a84a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 01:15:13 +0000 Subject: [PATCH 1193/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 75fb85d4..d39b6029 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1634](https://github.com/zarr-developers/zarr-python/pull/1634#issuecomment-1894499907) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -2. 🗣 Commented on [#1045](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1045#issuecomment-1894309034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#21710](https://github.com/spyder-ide/spyder/pull/21710#issuecomment-1894059241) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#955](https://github.com/avaframe/AvaFrame/pull/955#issuecomment-1893945358) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#489](https://github.com/HEPCloud/decisionengine_modules/pull/489#issuecomment-1893936794) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -6. 🗣 Commented on [#59](https://github.com/elinscott/ase_koopmans/pull/59#issuecomment-1893867097) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) -7. 🗣 Commented on [#180](https://github.com/eastgenomics/eggd_dias_batch/pull/180#issuecomment-1893794511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -8. 🗣 Commented on [#75](https://github.com/eastgenomics/eris/pull/75#issuecomment-1893697744) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#74](https://github.com/eastgenomics/eris/pull/74#issuecomment-1893640136) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#59](https://github.com/eastgenomics/trendyQC/pull/59#issuecomment-1893616580) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +1. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) +2. 🗣 Commented on [#376](https://github.com/NASA-Planetary-Science/sbpy/pull/376#issuecomment-1894758873) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +3. 🗣 Commented on [#1634](https://github.com/zarr-developers/zarr-python/pull/1634#issuecomment-1894499907) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +4. 🗣 Commented on [#1045](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1045#issuecomment-1894309034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#21710](https://github.com/spyder-ide/spyder/pull/21710#issuecomment-1894059241) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#955](https://github.com/avaframe/AvaFrame/pull/955#issuecomment-1893945358) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#489](https://github.com/HEPCloud/decisionengine_modules/pull/489#issuecomment-1893936794) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +8. 🗣 Commented on [#59](https://github.com/elinscott/ase_koopmans/pull/59#issuecomment-1893867097) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) +9. 🗣 Commented on [#180](https://github.com/eastgenomics/eggd_dias_batch/pull/180#issuecomment-1893794511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +10. 🗣 Commented on [#75](https://github.com/eastgenomics/eris/pull/75#issuecomment-1893697744) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 5a7a4db00f8b39158bb0b20f1175e37554ef3e82 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 04:20:43 +0000 Subject: [PATCH 1194/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d39b6029..a18074e7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) -2. 🗣 Commented on [#376](https://github.com/NASA-Planetary-Science/sbpy/pull/376#issuecomment-1894758873) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -3. 🗣 Commented on [#1634](https://github.com/zarr-developers/zarr-python/pull/1634#issuecomment-1894499907) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -4. 🗣 Commented on [#1045](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1045#issuecomment-1894309034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#21710](https://github.com/spyder-ide/spyder/pull/21710#issuecomment-1894059241) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#955](https://github.com/avaframe/AvaFrame/pull/955#issuecomment-1893945358) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#489](https://github.com/HEPCloud/decisionengine_modules/pull/489#issuecomment-1893936794) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -8. 🗣 Commented on [#59](https://github.com/elinscott/ase_koopmans/pull/59#issuecomment-1893867097) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) -9. 🗣 Commented on [#180](https://github.com/eastgenomics/eggd_dias_batch/pull/180#issuecomment-1893794511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -10. 🗣 Commented on [#75](https://github.com/eastgenomics/eris/pull/75#issuecomment-1893697744) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) +2. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) +3. 🗣 Commented on [#376](https://github.com/NASA-Planetary-Science/sbpy/pull/376#issuecomment-1894758873) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +4. 🗣 Commented on [#1634](https://github.com/zarr-developers/zarr-python/pull/1634#issuecomment-1894499907) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +5. 🗣 Commented on [#1045](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1045#issuecomment-1894309034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#21710](https://github.com/spyder-ide/spyder/pull/21710#issuecomment-1894059241) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#955](https://github.com/avaframe/AvaFrame/pull/955#issuecomment-1893945358) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#489](https://github.com/HEPCloud/decisionengine_modules/pull/489#issuecomment-1893936794) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +9. 🗣 Commented on [#59](https://github.com/elinscott/ase_koopmans/pull/59#issuecomment-1893867097) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) +10. 🗣 Commented on [#180](https://github.com/eastgenomics/eggd_dias_batch/pull/180#issuecomment-1893794511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) From 964b8065a284eb0b09f7f47a1569ba5e7b49d7f0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 05:37:10 +0000 Subject: [PATCH 1195/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a18074e7..cfbd174d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) -2. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) -3. 🗣 Commented on [#376](https://github.com/NASA-Planetary-Science/sbpy/pull/376#issuecomment-1894758873) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -4. 🗣 Commented on [#1634](https://github.com/zarr-developers/zarr-python/pull/1634#issuecomment-1894499907) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -5. 🗣 Commented on [#1045](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1045#issuecomment-1894309034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#21710](https://github.com/spyder-ide/spyder/pull/21710#issuecomment-1894059241) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#955](https://github.com/avaframe/AvaFrame/pull/955#issuecomment-1893945358) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#489](https://github.com/HEPCloud/decisionengine_modules/pull/489#issuecomment-1893936794) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -9. 🗣 Commented on [#59](https://github.com/elinscott/ase_koopmans/pull/59#issuecomment-1893867097) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) -10. 🗣 Commented on [#180](https://github.com/eastgenomics/eggd_dias_batch/pull/180#issuecomment-1893794511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +1. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) +3. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) +4. 🗣 Commented on [#376](https://github.com/NASA-Planetary-Science/sbpy/pull/376#issuecomment-1894758873) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +5. 🗣 Commented on [#1634](https://github.com/zarr-developers/zarr-python/pull/1634#issuecomment-1894499907) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +6. 🗣 Commented on [#1045](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1045#issuecomment-1894309034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#21710](https://github.com/spyder-ide/spyder/pull/21710#issuecomment-1894059241) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#955](https://github.com/avaframe/AvaFrame/pull/955#issuecomment-1893945358) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#489](https://github.com/HEPCloud/decisionengine_modules/pull/489#issuecomment-1893936794) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +10. 🗣 Commented on [#59](https://github.com/elinscott/ase_koopmans/pull/59#issuecomment-1893867097) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) From 2775da8dbcb4006aebe626bb262990a4281caeda Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 10:18:20 +0000 Subject: [PATCH 1196/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cfbd174d..5f243e4c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) -3. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) -4. 🗣 Commented on [#376](https://github.com/NASA-Planetary-Science/sbpy/pull/376#issuecomment-1894758873) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -5. 🗣 Commented on [#1634](https://github.com/zarr-developers/zarr-python/pull/1634#issuecomment-1894499907) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -6. 🗣 Commented on [#1045](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1045#issuecomment-1894309034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#21710](https://github.com/spyder-ide/spyder/pull/21710#issuecomment-1894059241) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#955](https://github.com/avaframe/AvaFrame/pull/955#issuecomment-1893945358) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#489](https://github.com/HEPCloud/decisionengine_modules/pull/489#issuecomment-1893936794) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -10. 🗣 Commented on [#59](https://github.com/elinscott/ase_koopmans/pull/59#issuecomment-1893867097) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) +1. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) +2. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) +4. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) +5. 🗣 Commented on [#376](https://github.com/NASA-Planetary-Science/sbpy/pull/376#issuecomment-1894758873) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +6. 🗣 Commented on [#1634](https://github.com/zarr-developers/zarr-python/pull/1634#issuecomment-1894499907) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +7. 🗣 Commented on [#1045](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1045#issuecomment-1894309034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#21710](https://github.com/spyder-ide/spyder/pull/21710#issuecomment-1894059241) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#955](https://github.com/avaframe/AvaFrame/pull/955#issuecomment-1893945358) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#489](https://github.com/HEPCloud/decisionengine_modules/pull/489#issuecomment-1893936794) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) From c87c618265ad29f16afd20ff9218cbbfb12ba631 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 12:32:20 +0000 Subject: [PATCH 1197/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5f243e4c..99b8e700 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) -2. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) -4. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) -5. 🗣 Commented on [#376](https://github.com/NASA-Planetary-Science/sbpy/pull/376#issuecomment-1894758873) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -6. 🗣 Commented on [#1634](https://github.com/zarr-developers/zarr-python/pull/1634#issuecomment-1894499907) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -7. 🗣 Commented on [#1045](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1045#issuecomment-1894309034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#21710](https://github.com/spyder-ide/spyder/pull/21710#issuecomment-1894059241) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#955](https://github.com/avaframe/AvaFrame/pull/955#issuecomment-1893945358) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#489](https://github.com/HEPCloud/decisionengine_modules/pull/489#issuecomment-1893936794) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +1. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +2. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) +3. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) +5. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) +6. 🗣 Commented on [#376](https://github.com/NASA-Planetary-Science/sbpy/pull/376#issuecomment-1894758873) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +7. 🗣 Commented on [#1634](https://github.com/zarr-developers/zarr-python/pull/1634#issuecomment-1894499907) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +8. 🗣 Commented on [#1045](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1045#issuecomment-1894309034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#21710](https://github.com/spyder-ide/spyder/pull/21710#issuecomment-1894059241) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#955](https://github.com/avaframe/AvaFrame/pull/955#issuecomment-1893945358) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From c19a6ee771b7189c5f313708b87319cbb84c132a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 16:22:15 +0000 Subject: [PATCH 1198/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 99b8e700..d3c1299f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) -2. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) -3. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) -5. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) -6. 🗣 Commented on [#376](https://github.com/NASA-Planetary-Science/sbpy/pull/376#issuecomment-1894758873) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -7. 🗣 Commented on [#1634](https://github.com/zarr-developers/zarr-python/pull/1634#issuecomment-1894499907) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -8. 🗣 Commented on [#1045](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1045#issuecomment-1894309034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#21710](https://github.com/spyder-ide/spyder/pull/21710#issuecomment-1894059241) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#955](https://github.com/avaframe/AvaFrame/pull/955#issuecomment-1893945358) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +3. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) +4. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) +6. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) +7. 🗣 Commented on [#376](https://github.com/NASA-Planetary-Science/sbpy/pull/376#issuecomment-1894758873) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +8. 🗣 Commented on [#1634](https://github.com/zarr-developers/zarr-python/pull/1634#issuecomment-1894499907) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +9. 🗣 Commented on [#1045](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1045#issuecomment-1894309034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#21710](https://github.com/spyder-ide/spyder/pull/21710#issuecomment-1894059241) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 7e1974362b0c8bc35deeb2f404ab47c7af7194f8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 17:14:56 +0000 Subject: [PATCH 1199/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d3c1299f..921493be 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) -3. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) -4. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) -6. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) -7. 🗣 Commented on [#376](https://github.com/NASA-Planetary-Science/sbpy/pull/376#issuecomment-1894758873) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -8. 🗣 Commented on [#1634](https://github.com/zarr-developers/zarr-python/pull/1634#issuecomment-1894499907) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -9. 🗣 Commented on [#1045](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1045#issuecomment-1894309034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#21710](https://github.com/spyder-ide/spyder/pull/21710#issuecomment-1894059241) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#5411](https://github.com/rhinstaller/anaconda/pull/5411#issuecomment-1896218502) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +4. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) +5. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) +7. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) +8. 🗣 Commented on [#376](https://github.com/NASA-Planetary-Science/sbpy/pull/376#issuecomment-1894758873) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +9. 🗣 Commented on [#1634](https://github.com/zarr-developers/zarr-python/pull/1634#issuecomment-1894499907) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +10. 🗣 Commented on [#1045](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1045#issuecomment-1894309034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From c09ed24fce02be941b8f4a5da5cfb6a45e30ab47 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 19:37:15 +0000 Subject: [PATCH 1200/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 921493be..b0a46a41 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5411](https://github.com/rhinstaller/anaconda/pull/5411#issuecomment-1896218502) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) -4. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) -5. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) -7. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) -8. 🗣 Commented on [#376](https://github.com/NASA-Planetary-Science/sbpy/pull/376#issuecomment-1894758873) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -9. 🗣 Commented on [#1634](https://github.com/zarr-developers/zarr-python/pull/1634#issuecomment-1894499907) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -10. 🗣 Commented on [#1045](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1045#issuecomment-1894309034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#2717](https://github.com/metabrainz/listenbrainz-server/pull/2717#issuecomment-1896496625) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#5411](https://github.com/rhinstaller/anaconda/pull/5411#issuecomment-1896218502) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +5. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) +6. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) +8. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) +9. 🗣 Commented on [#376](https://github.com/NASA-Planetary-Science/sbpy/pull/376#issuecomment-1894758873) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +10. 🗣 Commented on [#1634](https://github.com/zarr-developers/zarr-python/pull/1634#issuecomment-1894499907) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) From efe5a03764ba9f92da8b2f01a0b23b8acf5840bb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 20:17:49 +0000 Subject: [PATCH 1201/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b0a46a41..f3119a64 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2717](https://github.com/metabrainz/listenbrainz-server/pull/2717#issuecomment-1896496625) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#5411](https://github.com/rhinstaller/anaconda/pull/5411#issuecomment-1896218502) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) -5. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) -6. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) -8. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) -9. 🗣 Commented on [#376](https://github.com/NASA-Planetary-Science/sbpy/pull/376#issuecomment-1894758873) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -10. 🗣 Commented on [#1634](https://github.com/zarr-developers/zarr-python/pull/1634#issuecomment-1894499907) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +1. 🗣 Commented on [#182](https://github.com/eastgenomics/eggd_dias_batch/pull/182#issuecomment-1896617681) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +2. 🗣 Commented on [#2717](https://github.com/metabrainz/listenbrainz-server/pull/2717#issuecomment-1896496625) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#5411](https://github.com/rhinstaller/anaconda/pull/5411#issuecomment-1896218502) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +6. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) +7. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) +9. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) +10. 🗣 Commented on [#376](https://github.com/NASA-Planetary-Science/sbpy/pull/376#issuecomment-1894758873) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) From 77dc43b4ad70e1813f968c31edbb835fb2242952 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 21:37:15 +0000 Subject: [PATCH 1202/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f3119a64..ae8471f7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#182](https://github.com/eastgenomics/eggd_dias_batch/pull/182#issuecomment-1896617681) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -2. 🗣 Commented on [#2717](https://github.com/metabrainz/listenbrainz-server/pull/2717#issuecomment-1896496625) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#5411](https://github.com/rhinstaller/anaconda/pull/5411#issuecomment-1896218502) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) -6. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) -7. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) -9. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) -10. 🗣 Commented on [#376](https://github.com/NASA-Planetary-Science/sbpy/pull/376#issuecomment-1894758873) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +1. 🗣 Commented on [#221](https://github.com/scil-vital/dwi_ml/pull/221#issuecomment-1896855608) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +2. 🗣 Commented on [#182](https://github.com/eastgenomics/eggd_dias_batch/pull/182#issuecomment-1896617681) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +3. 🗣 Commented on [#2717](https://github.com/metabrainz/listenbrainz-server/pull/2717#issuecomment-1896496625) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#5411](https://github.com/rhinstaller/anaconda/pull/5411#issuecomment-1896218502) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +7. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) +8. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) +10. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) From d79d122a6e11def6e015cde37e319306cd7a3fb5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 22:15:51 +0000 Subject: [PATCH 1203/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ae8471f7..0dfbcdee 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#221](https://github.com/scil-vital/dwi_ml/pull/221#issuecomment-1896855608) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -2. 🗣 Commented on [#182](https://github.com/eastgenomics/eggd_dias_batch/pull/182#issuecomment-1896617681) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -3. 🗣 Commented on [#2717](https://github.com/metabrainz/listenbrainz-server/pull/2717#issuecomment-1896496625) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#5411](https://github.com/rhinstaller/anaconda/pull/5411#issuecomment-1896218502) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) -7. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) -8. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) -10. 🗣 Commented on [#43](https://github.com/ddobie/dwf_prepipe/pull/43#issuecomment-1894765595) in [ddobie/dwf_prepipe](https://github.com/ddobie/dwf_prepipe) +1. 🗣 Commented on [#76](https://github.com/eastgenomics/eris/pull/76#issuecomment-1896984945) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#221](https://github.com/scil-vital/dwi_ml/pull/221#issuecomment-1896855608) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +3. 🗣 Commented on [#182](https://github.com/eastgenomics/eggd_dias_batch/pull/182#issuecomment-1896617681) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +4. 🗣 Commented on [#2717](https://github.com/metabrainz/listenbrainz-server/pull/2717#issuecomment-1896496625) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#5411](https://github.com/rhinstaller/anaconda/pull/5411#issuecomment-1896218502) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +8. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) +9. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) From 840e07298a26b06afb9ba162b074abb18a3990f4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 22:37:11 +0000 Subject: [PATCH 1204/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0dfbcdee..db41f2f5 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#76](https://github.com/eastgenomics/eris/pull/76#issuecomment-1896984945) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#221](https://github.com/scil-vital/dwi_ml/pull/221#issuecomment-1896855608) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -3. 🗣 Commented on [#182](https://github.com/eastgenomics/eggd_dias_batch/pull/182#issuecomment-1896617681) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -4. 🗣 Commented on [#2717](https://github.com/metabrainz/listenbrainz-server/pull/2717#issuecomment-1896496625) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#5411](https://github.com/rhinstaller/anaconda/pull/5411#issuecomment-1896218502) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) -8. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) -9. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#403](https://github.com/payu-org/payu/pull/403#issuecomment-1894909100) in [payu-org/payu](https://github.com/payu-org/payu) +1. 🗣 Commented on [#890](https://github.com/ToFuProject/tofu/pull/890#issuecomment-1897090651) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#76](https://github.com/eastgenomics/eris/pull/76#issuecomment-1896984945) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#221](https://github.com/scil-vital/dwi_ml/pull/221#issuecomment-1896855608) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +4. 🗣 Commented on [#182](https://github.com/eastgenomics/eggd_dias_batch/pull/182#issuecomment-1896617681) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +5. 🗣 Commented on [#2717](https://github.com/metabrainz/listenbrainz-server/pull/2717#issuecomment-1896496625) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#5411](https://github.com/rhinstaller/anaconda/pull/5411#issuecomment-1896218502) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +9. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) +10. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From c24069f5b12b6a90f3243d4a547f328ad9251e8f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 23:18:17 +0000 Subject: [PATCH 1205/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index db41f2f5..5724cf66 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#890](https://github.com/ToFuProject/tofu/pull/890#issuecomment-1897090651) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#76](https://github.com/eastgenomics/eris/pull/76#issuecomment-1896984945) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#221](https://github.com/scil-vital/dwi_ml/pull/221#issuecomment-1896855608) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -4. 🗣 Commented on [#182](https://github.com/eastgenomics/eggd_dias_batch/pull/182#issuecomment-1896617681) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -5. 🗣 Commented on [#2717](https://github.com/metabrainz/listenbrainz-server/pull/2717#issuecomment-1896496625) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#5411](https://github.com/rhinstaller/anaconda/pull/5411#issuecomment-1896218502) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) -9. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) -10. 🗣 Commented on [#244](https://github.com/CartoonFan/lutris/pull/244#issuecomment-1894960587) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#560](https://github.com/NeuralEnsemble/elephant/pull/560#issuecomment-1897296914) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +2. 🗣 Commented on [#890](https://github.com/ToFuProject/tofu/pull/890#issuecomment-1897090651) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#76](https://github.com/eastgenomics/eris/pull/76#issuecomment-1896984945) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#221](https://github.com/scil-vital/dwi_ml/pull/221#issuecomment-1896855608) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +5. 🗣 Commented on [#182](https://github.com/eastgenomics/eggd_dias_batch/pull/182#issuecomment-1896617681) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +6. 🗣 Commented on [#2717](https://github.com/metabrainz/listenbrainz-server/pull/2717#issuecomment-1896496625) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#5411](https://github.com/rhinstaller/anaconda/pull/5411#issuecomment-1896218502) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +10. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) From 9133e88df72b4196b262a3e896407293dcba7731 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 01:14:29 +0000 Subject: [PATCH 1206/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5724cf66..a0f2f875 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#560](https://github.com/NeuralEnsemble/elephant/pull/560#issuecomment-1897296914) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -2. 🗣 Commented on [#890](https://github.com/ToFuProject/tofu/pull/890#issuecomment-1897090651) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#76](https://github.com/eastgenomics/eris/pull/76#issuecomment-1896984945) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#221](https://github.com/scil-vital/dwi_ml/pull/221#issuecomment-1896855608) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -5. 🗣 Commented on [#182](https://github.com/eastgenomics/eggd_dias_batch/pull/182#issuecomment-1896617681) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -6. 🗣 Commented on [#2717](https://github.com/metabrainz/listenbrainz-server/pull/2717#issuecomment-1896496625) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#5411](https://github.com/rhinstaller/anaconda/pull/5411#issuecomment-1896218502) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) -10. 🗣 Commented on [#20](https://github.com/cirKITers/Quantum-Siren/pull/20#issuecomment-1895434483) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) +1. 🗣 Commented on [#393](https://github.com/NASA-Planetary-Science/sbpy/pull/393#issuecomment-1897569871) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +2. 🗣 Commented on [#560](https://github.com/NeuralEnsemble/elephant/pull/560#issuecomment-1897296914) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +3. 🗣 Commented on [#890](https://github.com/ToFuProject/tofu/pull/890#issuecomment-1897090651) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#76](https://github.com/eastgenomics/eris/pull/76#issuecomment-1896984945) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#221](https://github.com/scil-vital/dwi_ml/pull/221#issuecomment-1896855608) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +6. 🗣 Commented on [#182](https://github.com/eastgenomics/eggd_dias_batch/pull/182#issuecomment-1896617681) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +7. 🗣 Commented on [#2717](https://github.com/metabrainz/listenbrainz-server/pull/2717#issuecomment-1896496625) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#5411](https://github.com/rhinstaller/anaconda/pull/5411#issuecomment-1896218502) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) From 4e2e8b3d7fce5bde6afa731c7f02a33e356a178d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 12:32:14 +0000 Subject: [PATCH 1207/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a0f2f875..5bc1a74a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#393](https://github.com/NASA-Planetary-Science/sbpy/pull/393#issuecomment-1897569871) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -2. 🗣 Commented on [#560](https://github.com/NeuralEnsemble/elephant/pull/560#issuecomment-1897296914) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -3. 🗣 Commented on [#890](https://github.com/ToFuProject/tofu/pull/890#issuecomment-1897090651) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#76](https://github.com/eastgenomics/eris/pull/76#issuecomment-1896984945) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#221](https://github.com/scil-vital/dwi_ml/pull/221#issuecomment-1896855608) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -6. 🗣 Commented on [#182](https://github.com/eastgenomics/eggd_dias_batch/pull/182#issuecomment-1896617681) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -7. 🗣 Commented on [#2717](https://github.com/metabrainz/listenbrainz-server/pull/2717#issuecomment-1896496625) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#5411](https://github.com/rhinstaller/anaconda/pull/5411#issuecomment-1896218502) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#118](https://github.com/MDAnalysis/MDAKits/pull/118#issuecomment-1895695415) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +1. 🗣 Commented on [#77](https://github.com/eastgenomics/eris/pull/77#issuecomment-1898393683) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#393](https://github.com/NASA-Planetary-Science/sbpy/pull/393#issuecomment-1897569871) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +3. 🗣 Commented on [#560](https://github.com/NeuralEnsemble/elephant/pull/560#issuecomment-1897296914) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +4. 🗣 Commented on [#890](https://github.com/ToFuProject/tofu/pull/890#issuecomment-1897090651) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#76](https://github.com/eastgenomics/eris/pull/76#issuecomment-1896984945) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#221](https://github.com/scil-vital/dwi_ml/pull/221#issuecomment-1896855608) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +7. 🗣 Commented on [#182](https://github.com/eastgenomics/eggd_dias_batch/pull/182#issuecomment-1896617681) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +8. 🗣 Commented on [#2717](https://github.com/metabrainz/listenbrainz-server/pull/2717#issuecomment-1896496625) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#5411](https://github.com/rhinstaller/anaconda/pull/5411#issuecomment-1896218502) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From ba1e41658327048b997b2cef1f414832a0f94ebc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 13:20:30 +0000 Subject: [PATCH 1208/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5bc1a74a..3ec37280 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#77](https://github.com/eastgenomics/eris/pull/77#issuecomment-1898393683) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#393](https://github.com/NASA-Planetary-Science/sbpy/pull/393#issuecomment-1897569871) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -3. 🗣 Commented on [#560](https://github.com/NeuralEnsemble/elephant/pull/560#issuecomment-1897296914) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -4. 🗣 Commented on [#890](https://github.com/ToFuProject/tofu/pull/890#issuecomment-1897090651) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#76](https://github.com/eastgenomics/eris/pull/76#issuecomment-1896984945) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#221](https://github.com/scil-vital/dwi_ml/pull/221#issuecomment-1896855608) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -7. 🗣 Commented on [#182](https://github.com/eastgenomics/eggd_dias_batch/pull/182#issuecomment-1896617681) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -8. 🗣 Commented on [#2717](https://github.com/metabrainz/listenbrainz-server/pull/2717#issuecomment-1896496625) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#5411](https://github.com/rhinstaller/anaconda/pull/5411#issuecomment-1896218502) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#689](https://github.com/OpenFreeEnergy/openfe/pull/689#issuecomment-1896087590) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#2720](https://github.com/metabrainz/listenbrainz-server/pull/2720#issuecomment-1898418800) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#2719](https://github.com/metabrainz/listenbrainz-server/pull/2719#issuecomment-1898405425) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#20](https://github.com/eastgenomics/eggd_artemis/pull/20#issuecomment-1898396020) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +4. 🗣 Commented on [#77](https://github.com/eastgenomics/eris/pull/77#issuecomment-1898393683) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#393](https://github.com/NASA-Planetary-Science/sbpy/pull/393#issuecomment-1897569871) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +6. 🗣 Commented on [#560](https://github.com/NeuralEnsemble/elephant/pull/560#issuecomment-1897296914) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +7. 🗣 Commented on [#890](https://github.com/ToFuProject/tofu/pull/890#issuecomment-1897090651) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#76](https://github.com/eastgenomics/eris/pull/76#issuecomment-1896984945) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#221](https://github.com/scil-vital/dwi_ml/pull/221#issuecomment-1896855608) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +10. 🗣 Commented on [#182](https://github.com/eastgenomics/eggd_dias_batch/pull/182#issuecomment-1896617681) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) From 5595d9fd4eb2a4d0d510441e601874f6ace81aae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 14:37:19 +0000 Subject: [PATCH 1209/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3ec37280..23499230 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2720](https://github.com/metabrainz/listenbrainz-server/pull/2720#issuecomment-1898418800) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#2719](https://github.com/metabrainz/listenbrainz-server/pull/2719#issuecomment-1898405425) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#20](https://github.com/eastgenomics/eggd_artemis/pull/20#issuecomment-1898396020) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -4. 🗣 Commented on [#77](https://github.com/eastgenomics/eris/pull/77#issuecomment-1898393683) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#393](https://github.com/NASA-Planetary-Science/sbpy/pull/393#issuecomment-1897569871) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -6. 🗣 Commented on [#560](https://github.com/NeuralEnsemble/elephant/pull/560#issuecomment-1897296914) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -7. 🗣 Commented on [#890](https://github.com/ToFuProject/tofu/pull/890#issuecomment-1897090651) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#76](https://github.com/eastgenomics/eris/pull/76#issuecomment-1896984945) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#221](https://github.com/scil-vital/dwi_ml/pull/221#issuecomment-1896855608) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -10. 🗣 Commented on [#182](https://github.com/eastgenomics/eggd_dias_batch/pull/182#issuecomment-1896617681) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +1. 🗣 Commented on [#78](https://github.com/eastgenomics/eris/pull/78#issuecomment-1898574168) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#2720](https://github.com/metabrainz/listenbrainz-server/pull/2720#issuecomment-1898418800) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#2719](https://github.com/metabrainz/listenbrainz-server/pull/2719#issuecomment-1898405425) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#20](https://github.com/eastgenomics/eggd_artemis/pull/20#issuecomment-1898396020) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +5. 🗣 Commented on [#77](https://github.com/eastgenomics/eris/pull/77#issuecomment-1898393683) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#393](https://github.com/NASA-Planetary-Science/sbpy/pull/393#issuecomment-1897569871) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +7. 🗣 Commented on [#560](https://github.com/NeuralEnsemble/elephant/pull/560#issuecomment-1897296914) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +8. 🗣 Commented on [#890](https://github.com/ToFuProject/tofu/pull/890#issuecomment-1897090651) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#76](https://github.com/eastgenomics/eris/pull/76#issuecomment-1896984945) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#221](https://github.com/scil-vital/dwi_ml/pull/221#issuecomment-1896855608) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) From 42ca2b2b0c02cb95df6e510c59bd48fcfa5a39f0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 15:17:22 +0000 Subject: [PATCH 1210/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 23499230..70b29aa9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#78](https://github.com/eastgenomics/eris/pull/78#issuecomment-1898574168) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#2720](https://github.com/metabrainz/listenbrainz-server/pull/2720#issuecomment-1898418800) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#2719](https://github.com/metabrainz/listenbrainz-server/pull/2719#issuecomment-1898405425) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#20](https://github.com/eastgenomics/eggd_artemis/pull/20#issuecomment-1898396020) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -5. 🗣 Commented on [#77](https://github.com/eastgenomics/eris/pull/77#issuecomment-1898393683) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#393](https://github.com/NASA-Planetary-Science/sbpy/pull/393#issuecomment-1897569871) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -7. 🗣 Commented on [#560](https://github.com/NeuralEnsemble/elephant/pull/560#issuecomment-1897296914) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -8. 🗣 Commented on [#890](https://github.com/ToFuProject/tofu/pull/890#issuecomment-1897090651) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#76](https://github.com/eastgenomics/eris/pull/76#issuecomment-1896984945) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#221](https://github.com/scil-vital/dwi_ml/pull/221#issuecomment-1896855608) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +1. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#1435](https://github.com/spacetelescope/jwql/pull/1435#issuecomment-1898667857) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#78](https://github.com/eastgenomics/eris/pull/78#issuecomment-1898574168) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#2720](https://github.com/metabrainz/listenbrainz-server/pull/2720#issuecomment-1898418800) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#2719](https://github.com/metabrainz/listenbrainz-server/pull/2719#issuecomment-1898405425) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#20](https://github.com/eastgenomics/eggd_artemis/pull/20#issuecomment-1898396020) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +7. 🗣 Commented on [#77](https://github.com/eastgenomics/eris/pull/77#issuecomment-1898393683) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#393](https://github.com/NASA-Planetary-Science/sbpy/pull/393#issuecomment-1897569871) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +9. 🗣 Commented on [#560](https://github.com/NeuralEnsemble/elephant/pull/560#issuecomment-1897296914) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +10. 🗣 Commented on [#890](https://github.com/ToFuProject/tofu/pull/890#issuecomment-1897090651) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From 334d0395888b219c2122932e254457c6c8c8145b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 17:15:20 +0000 Subject: [PATCH 1211/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 70b29aa9..7d10549f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#1435](https://github.com/spacetelescope/jwql/pull/1435#issuecomment-1898667857) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#78](https://github.com/eastgenomics/eris/pull/78#issuecomment-1898574168) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#2720](https://github.com/metabrainz/listenbrainz-server/pull/2720#issuecomment-1898418800) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#2719](https://github.com/metabrainz/listenbrainz-server/pull/2719#issuecomment-1898405425) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#20](https://github.com/eastgenomics/eggd_artemis/pull/20#issuecomment-1898396020) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -7. 🗣 Commented on [#77](https://github.com/eastgenomics/eris/pull/77#issuecomment-1898393683) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#393](https://github.com/NASA-Planetary-Science/sbpy/pull/393#issuecomment-1897569871) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -9. 🗣 Commented on [#560](https://github.com/NeuralEnsemble/elephant/pull/560#issuecomment-1897296914) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -10. 🗣 Commented on [#890](https://github.com/ToFuProject/tofu/pull/890#issuecomment-1897090651) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#1435](https://github.com/spacetelescope/jwql/pull/1435#issuecomment-1898667857) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#78](https://github.com/eastgenomics/eris/pull/78#issuecomment-1898574168) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#2720](https://github.com/metabrainz/listenbrainz-server/pull/2720#issuecomment-1898418800) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#2719](https://github.com/metabrainz/listenbrainz-server/pull/2719#issuecomment-1898405425) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#20](https://github.com/eastgenomics/eggd_artemis/pull/20#issuecomment-1898396020) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +8. 🗣 Commented on [#77](https://github.com/eastgenomics/eris/pull/77#issuecomment-1898393683) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#393](https://github.com/NASA-Planetary-Science/sbpy/pull/393#issuecomment-1897569871) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +10. 🗣 Commented on [#560](https://github.com/NeuralEnsemble/elephant/pull/560#issuecomment-1897296914) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) From 9ed283e939c1164dab308a713cc5de8701527a02 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 19:13:13 +0000 Subject: [PATCH 1212/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7d10549f..28f351ef 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#1435](https://github.com/spacetelescope/jwql/pull/1435#issuecomment-1898667857) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#78](https://github.com/eastgenomics/eris/pull/78#issuecomment-1898574168) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#2720](https://github.com/metabrainz/listenbrainz-server/pull/2720#issuecomment-1898418800) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#2719](https://github.com/metabrainz/listenbrainz-server/pull/2719#issuecomment-1898405425) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#20](https://github.com/eastgenomics/eggd_artemis/pull/20#issuecomment-1898396020) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -8. 🗣 Commented on [#77](https://github.com/eastgenomics/eris/pull/77#issuecomment-1898393683) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#393](https://github.com/NASA-Planetary-Science/sbpy/pull/393#issuecomment-1897569871) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -10. 🗣 Commented on [#560](https://github.com/NeuralEnsemble/elephant/pull/560#issuecomment-1897296914) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +1. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#1435](https://github.com/spacetelescope/jwql/pull/1435#issuecomment-1898667857) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#78](https://github.com/eastgenomics/eris/pull/78#issuecomment-1898574168) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#2720](https://github.com/metabrainz/listenbrainz-server/pull/2720#issuecomment-1898418800) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#2719](https://github.com/metabrainz/listenbrainz-server/pull/2719#issuecomment-1898405425) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#20](https://github.com/eastgenomics/eggd_artemis/pull/20#issuecomment-1898396020) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +9. 🗣 Commented on [#77](https://github.com/eastgenomics/eris/pull/77#issuecomment-1898393683) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#393](https://github.com/NASA-Planetary-Science/sbpy/pull/393#issuecomment-1897569871) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) From a64ed135947bb3ed7955e691fc272ed5fd21288a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 21:14:55 +0000 Subject: [PATCH 1213/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 28f351ef..161627d3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#1435](https://github.com/spacetelescope/jwql/pull/1435#issuecomment-1898667857) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#78](https://github.com/eastgenomics/eris/pull/78#issuecomment-1898574168) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#2720](https://github.com/metabrainz/listenbrainz-server/pull/2720#issuecomment-1898418800) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#2719](https://github.com/metabrainz/listenbrainz-server/pull/2719#issuecomment-1898405425) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#20](https://github.com/eastgenomics/eggd_artemis/pull/20#issuecomment-1898396020) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -9. 🗣 Commented on [#77](https://github.com/eastgenomics/eris/pull/77#issuecomment-1898393683) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#393](https://github.com/NASA-Planetary-Science/sbpy/pull/393#issuecomment-1897569871) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +1. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +2. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#1435](https://github.com/spacetelescope/jwql/pull/1435#issuecomment-1898667857) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#78](https://github.com/eastgenomics/eris/pull/78#issuecomment-1898574168) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#2720](https://github.com/metabrainz/listenbrainz-server/pull/2720#issuecomment-1898418800) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#2719](https://github.com/metabrainz/listenbrainz-server/pull/2719#issuecomment-1898405425) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#20](https://github.com/eastgenomics/eggd_artemis/pull/20#issuecomment-1898396020) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +10. 🗣 Commented on [#77](https://github.com/eastgenomics/eris/pull/77#issuecomment-1898393683) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 6a71ab5a8a2d7a431a23bc6b6794e2bfd2b531d9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 23:17:14 +0000 Subject: [PATCH 1214/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 161627d3..ed71ed45 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -2. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#1435](https://github.com/spacetelescope/jwql/pull/1435#issuecomment-1898667857) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#78](https://github.com/eastgenomics/eris/pull/78#issuecomment-1898574168) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#2720](https://github.com/metabrainz/listenbrainz-server/pull/2720#issuecomment-1898418800) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#2719](https://github.com/metabrainz/listenbrainz-server/pull/2719#issuecomment-1898405425) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#20](https://github.com/eastgenomics/eggd_artemis/pull/20#issuecomment-1898396020) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -10. 🗣 Commented on [#77](https://github.com/eastgenomics/eris/pull/77#issuecomment-1898393683) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) +2. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +3. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#1435](https://github.com/spacetelescope/jwql/pull/1435#issuecomment-1898667857) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#78](https://github.com/eastgenomics/eris/pull/78#issuecomment-1898574168) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#2720](https://github.com/metabrainz/listenbrainz-server/pull/2720#issuecomment-1898418800) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#2719](https://github.com/metabrainz/listenbrainz-server/pull/2719#issuecomment-1898405425) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#20](https://github.com/eastgenomics/eggd_artemis/pull/20#issuecomment-1898396020) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) From 3a66cfa6becbc0aa3799ce15f70065af932c7286 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 04:38:49 +0000 Subject: [PATCH 1215/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ed71ed45..3313797a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) -2. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -3. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#1435](https://github.com/spacetelescope/jwql/pull/1435#issuecomment-1898667857) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#78](https://github.com/eastgenomics/eris/pull/78#issuecomment-1898574168) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#2720](https://github.com/metabrainz/listenbrainz-server/pull/2720#issuecomment-1898418800) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#2719](https://github.com/metabrainz/listenbrainz-server/pull/2719#issuecomment-1898405425) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#20](https://github.com/eastgenomics/eggd_artemis/pull/20#issuecomment-1898396020) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +1. 🗣 Commented on [#21](https://github.com/drauger-os-development/website/pull/21#issuecomment-1899751944) in [drauger-os-development/website](https://github.com/drauger-os-development/website) +2. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) +3. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +4. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#1435](https://github.com/spacetelescope/jwql/pull/1435#issuecomment-1898667857) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#78](https://github.com/eastgenomics/eris/pull/78#issuecomment-1898574168) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#2720](https://github.com/metabrainz/listenbrainz-server/pull/2720#issuecomment-1898418800) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#2719](https://github.com/metabrainz/listenbrainz-server/pull/2719#issuecomment-1898405425) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 13db3c417b940f3d0698d60a96f8398b65e7ea8b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 09:16:32 +0000 Subject: [PATCH 1216/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3313797a..f9cfedb4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21](https://github.com/drauger-os-development/website/pull/21#issuecomment-1899751944) in [drauger-os-development/website](https://github.com/drauger-os-development/website) -2. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) -3. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -4. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#1435](https://github.com/spacetelescope/jwql/pull/1435#issuecomment-1898667857) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#78](https://github.com/eastgenomics/eris/pull/78#issuecomment-1898574168) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#2720](https://github.com/metabrainz/listenbrainz-server/pull/2720#issuecomment-1898418800) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#2719](https://github.com/metabrainz/listenbrainz-server/pull/2719#issuecomment-1898405425) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#5414](https://github.com/rhinstaller/anaconda/pull/5414#issuecomment-1900027641) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#21](https://github.com/drauger-os-development/website/pull/21#issuecomment-1899751944) in [drauger-os-development/website](https://github.com/drauger-os-development/website) +3. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) +4. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +5. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#1435](https://github.com/spacetelescope/jwql/pull/1435#issuecomment-1898667857) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#78](https://github.com/eastgenomics/eris/pull/78#issuecomment-1898574168) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#2720](https://github.com/metabrainz/listenbrainz-server/pull/2720#issuecomment-1898418800) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 42a8ceccead5ebe960ebe07ffc2ba809580111f2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 10:18:10 +0000 Subject: [PATCH 1217/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f9cfedb4..ee59ac2b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5414](https://github.com/rhinstaller/anaconda/pull/5414#issuecomment-1900027641) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#21](https://github.com/drauger-os-development/website/pull/21#issuecomment-1899751944) in [drauger-os-development/website](https://github.com/drauger-os-development/website) -3. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) -4. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -5. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#1435](https://github.com/spacetelescope/jwql/pull/1435#issuecomment-1898667857) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#78](https://github.com/eastgenomics/eris/pull/78#issuecomment-1898574168) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#2720](https://github.com/metabrainz/listenbrainz-server/pull/2720#issuecomment-1898418800) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#517](https://github.com/aramis-lab/clinicadl/pull/517#issuecomment-1900101001) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +2. 🗣 Commented on [#5414](https://github.com/rhinstaller/anaconda/pull/5414#issuecomment-1900027641) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#21](https://github.com/drauger-os-development/website/pull/21#issuecomment-1899751944) in [drauger-os-development/website](https://github.com/drauger-os-development/website) +4. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) +5. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +6. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#1435](https://github.com/spacetelescope/jwql/pull/1435#issuecomment-1898667857) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#78](https://github.com/eastgenomics/eris/pull/78#issuecomment-1898574168) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From cfc4b7ae89db7627c13c4646d6afa3b0186b68f4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 12:31:51 +0000 Subject: [PATCH 1218/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ee59ac2b..ba50f18f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#517](https://github.com/aramis-lab/clinicadl/pull/517#issuecomment-1900101001) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -2. 🗣 Commented on [#5414](https://github.com/rhinstaller/anaconda/pull/5414#issuecomment-1900027641) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#21](https://github.com/drauger-os-development/website/pull/21#issuecomment-1899751944) in [drauger-os-development/website](https://github.com/drauger-os-development/website) -4. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) -5. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -6. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#1435](https://github.com/spacetelescope/jwql/pull/1435#issuecomment-1898667857) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#78](https://github.com/eastgenomics/eris/pull/78#issuecomment-1898574168) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#666](https://github.com/OpenFreeEnergy/openfe/pull/666#issuecomment-1900331621) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#517](https://github.com/aramis-lab/clinicadl/pull/517#issuecomment-1900101001) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +3. 🗣 Commented on [#5414](https://github.com/rhinstaller/anaconda/pull/5414#issuecomment-1900027641) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#21](https://github.com/drauger-os-development/website/pull/21#issuecomment-1899751944) in [drauger-os-development/website](https://github.com/drauger-os-development/website) +5. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) +6. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +7. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#1435](https://github.com/spacetelescope/jwql/pull/1435#issuecomment-1898667857) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From b3cdd5f2fe097baa5fb549cafbbb68df67c27c79 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 14:37:13 +0000 Subject: [PATCH 1219/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ba50f18f..ae85bad3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#666](https://github.com/OpenFreeEnergy/openfe/pull/666#issuecomment-1900331621) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#517](https://github.com/aramis-lab/clinicadl/pull/517#issuecomment-1900101001) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -3. 🗣 Commented on [#5414](https://github.com/rhinstaller/anaconda/pull/5414#issuecomment-1900027641) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#21](https://github.com/drauger-os-development/website/pull/21#issuecomment-1899751944) in [drauger-os-development/website](https://github.com/drauger-os-development/website) -5. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) -6. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -7. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#1435](https://github.com/spacetelescope/jwql/pull/1435#issuecomment-1898667857) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#2892](https://github.com/statsmodels/statsmodels/pull/2892#issuecomment-1900511959) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +2. 🗣 Commented on [#666](https://github.com/OpenFreeEnergy/openfe/pull/666#issuecomment-1900331621) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#517](https://github.com/aramis-lab/clinicadl/pull/517#issuecomment-1900101001) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +4. 🗣 Commented on [#5414](https://github.com/rhinstaller/anaconda/pull/5414#issuecomment-1900027641) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#21](https://github.com/drauger-os-development/website/pull/21#issuecomment-1899751944) in [drauger-os-development/website](https://github.com/drauger-os-development/website) +6. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) +7. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +8. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +9. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From ce17bb8e375532edeb463b0114c658e32bfe3951 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 15:17:44 +0000 Subject: [PATCH 1220/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ae85bad3..7a4fa6dd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2892](https://github.com/statsmodels/statsmodels/pull/2892#issuecomment-1900511959) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -2. 🗣 Commented on [#666](https://github.com/OpenFreeEnergy/openfe/pull/666#issuecomment-1900331621) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#517](https://github.com/aramis-lab/clinicadl/pull/517#issuecomment-1900101001) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -4. 🗣 Commented on [#5414](https://github.com/rhinstaller/anaconda/pull/5414#issuecomment-1900027641) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#21](https://github.com/drauger-os-development/website/pull/21#issuecomment-1899751944) in [drauger-os-development/website](https://github.com/drauger-os-development/website) -6. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) -7. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -8. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -9. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#957](https://github.com/avaframe/AvaFrame/pull/957#issuecomment-1898672879) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#1251](https://github.com/aimclub/FEDOT/pull/1251#issuecomment-1900545496) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#2892](https://github.com/statsmodels/statsmodels/pull/2892#issuecomment-1900511959) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#666](https://github.com/OpenFreeEnergy/openfe/pull/666#issuecomment-1900331621) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#517](https://github.com/aramis-lab/clinicadl/pull/517#issuecomment-1900101001) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +5. 🗣 Commented on [#5414](https://github.com/rhinstaller/anaconda/pull/5414#issuecomment-1900027641) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#21](https://github.com/drauger-os-development/website/pull/21#issuecomment-1899751944) in [drauger-os-development/website](https://github.com/drauger-os-development/website) +7. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) +8. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +9. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From f35c108dd104cc76671412ba4531559245877e73 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 15:37:33 +0000 Subject: [PATCH 1221/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7a4fa6dd..a4bf228a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1251](https://github.com/aimclub/FEDOT/pull/1251#issuecomment-1900545496) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#2892](https://github.com/statsmodels/statsmodels/pull/2892#issuecomment-1900511959) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#666](https://github.com/OpenFreeEnergy/openfe/pull/666#issuecomment-1900331621) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#517](https://github.com/aramis-lab/clinicadl/pull/517#issuecomment-1900101001) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -5. 🗣 Commented on [#5414](https://github.com/rhinstaller/anaconda/pull/5414#issuecomment-1900027641) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#21](https://github.com/drauger-os-development/website/pull/21#issuecomment-1899751944) in [drauger-os-development/website](https://github.com/drauger-os-development/website) -7. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) -8. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -9. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#2723](https://github.com/metabrainz/listenbrainz-server/pull/2723#issuecomment-1898855346) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1252](https://github.com/aimclub/FEDOT/pull/1252#issuecomment-1900615475) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#1251](https://github.com/aimclub/FEDOT/pull/1251#issuecomment-1900545496) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#2892](https://github.com/statsmodels/statsmodels/pull/2892#issuecomment-1900511959) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +4. 🗣 Commented on [#666](https://github.com/OpenFreeEnergy/openfe/pull/666#issuecomment-1900331621) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#517](https://github.com/aramis-lab/clinicadl/pull/517#issuecomment-1900101001) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +6. 🗣 Commented on [#5414](https://github.com/rhinstaller/anaconda/pull/5414#issuecomment-1900027641) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#21](https://github.com/drauger-os-development/website/pull/21#issuecomment-1899751944) in [drauger-os-development/website](https://github.com/drauger-os-development/website) +8. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) +9. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +10. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From e6eba945136ac4d8adc2af9a151b3fb647ee6b4b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 16:21:50 +0000 Subject: [PATCH 1222/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a4bf228a..cdd08d62 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1252](https://github.com/aimclub/FEDOT/pull/1252#issuecomment-1900615475) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#1251](https://github.com/aimclub/FEDOT/pull/1251#issuecomment-1900545496) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#2892](https://github.com/statsmodels/statsmodels/pull/2892#issuecomment-1900511959) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -4. 🗣 Commented on [#666](https://github.com/OpenFreeEnergy/openfe/pull/666#issuecomment-1900331621) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#517](https://github.com/aramis-lab/clinicadl/pull/517#issuecomment-1900101001) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -6. 🗣 Commented on [#5414](https://github.com/rhinstaller/anaconda/pull/5414#issuecomment-1900027641) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#21](https://github.com/drauger-os-development/website/pull/21#issuecomment-1899751944) in [drauger-os-development/website](https://github.com/drauger-os-development/website) -8. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) -9. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -10. 🗣 Commented on [#273](https://github.com/OpenFreeEnergy/gufe/pull/273#issuecomment-1899025437) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#1253](https://github.com/aimclub/FEDOT/pull/1253#issuecomment-1900655915) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#1252](https://github.com/aimclub/FEDOT/pull/1252#issuecomment-1900615475) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#1251](https://github.com/aimclub/FEDOT/pull/1251#issuecomment-1900545496) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#2892](https://github.com/statsmodels/statsmodels/pull/2892#issuecomment-1900511959) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#666](https://github.com/OpenFreeEnergy/openfe/pull/666#issuecomment-1900331621) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#517](https://github.com/aramis-lab/clinicadl/pull/517#issuecomment-1900101001) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +7. 🗣 Commented on [#5414](https://github.com/rhinstaller/anaconda/pull/5414#issuecomment-1900027641) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#21](https://github.com/drauger-os-development/website/pull/21#issuecomment-1899751944) in [drauger-os-development/website](https://github.com/drauger-os-development/website) +9. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) +10. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) From b332ed4341522b83860c8f8f2f56ddf3455841bc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 17:15:02 +0000 Subject: [PATCH 1223/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cdd08d62..622f2295 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1253](https://github.com/aimclub/FEDOT/pull/1253#issuecomment-1900655915) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#1252](https://github.com/aimclub/FEDOT/pull/1252#issuecomment-1900615475) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#1251](https://github.com/aimclub/FEDOT/pull/1251#issuecomment-1900545496) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#2892](https://github.com/statsmodels/statsmodels/pull/2892#issuecomment-1900511959) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -5. 🗣 Commented on [#666](https://github.com/OpenFreeEnergy/openfe/pull/666#issuecomment-1900331621) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#517](https://github.com/aramis-lab/clinicadl/pull/517#issuecomment-1900101001) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -7. 🗣 Commented on [#5414](https://github.com/rhinstaller/anaconda/pull/5414#issuecomment-1900027641) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#21](https://github.com/drauger-os-development/website/pull/21#issuecomment-1899751944) in [drauger-os-development/website](https://github.com/drauger-os-development/website) -9. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) -10. 🗣 Commented on [#188](https://github.com/AdvancedPhotonSource/tike/pull/188#issuecomment-1899179712) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +1. 🗣 Commented on [#1047](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1047#issuecomment-1900758480) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#1253](https://github.com/aimclub/FEDOT/pull/1253#issuecomment-1900655915) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#1252](https://github.com/aimclub/FEDOT/pull/1252#issuecomment-1900615475) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#1251](https://github.com/aimclub/FEDOT/pull/1251#issuecomment-1900545496) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#2892](https://github.com/statsmodels/statsmodels/pull/2892#issuecomment-1900511959) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +6. 🗣 Commented on [#666](https://github.com/OpenFreeEnergy/openfe/pull/666#issuecomment-1900331621) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#517](https://github.com/aramis-lab/clinicadl/pull/517#issuecomment-1900101001) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +8. 🗣 Commented on [#5414](https://github.com/rhinstaller/anaconda/pull/5414#issuecomment-1900027641) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#21](https://github.com/drauger-os-development/website/pull/21#issuecomment-1899751944) in [drauger-os-development/website](https://github.com/drauger-os-development/website) +10. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) From daa7091265dc20904e25646ce536b98acf8334de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 21:14:20 +0000 Subject: [PATCH 1224/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 622f2295..ac5f166f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1047](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1047#issuecomment-1900758480) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#1253](https://github.com/aimclub/FEDOT/pull/1253#issuecomment-1900655915) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#1252](https://github.com/aimclub/FEDOT/pull/1252#issuecomment-1900615475) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#1251](https://github.com/aimclub/FEDOT/pull/1251#issuecomment-1900545496) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#2892](https://github.com/statsmodels/statsmodels/pull/2892#issuecomment-1900511959) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -6. 🗣 Commented on [#666](https://github.com/OpenFreeEnergy/openfe/pull/666#issuecomment-1900331621) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#517](https://github.com/aramis-lab/clinicadl/pull/517#issuecomment-1900101001) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -8. 🗣 Commented on [#5414](https://github.com/rhinstaller/anaconda/pull/5414#issuecomment-1900027641) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#21](https://github.com/drauger-os-development/website/pull/21#issuecomment-1899751944) in [drauger-os-development/website](https://github.com/drauger-os-development/website) -10. 🗣 Commented on [#2](https://github.com/AliceDTRH/pyhOn/pull/2#issuecomment-1899340840) in [AliceDTRH/pyhOn](https://github.com/AliceDTRH/pyhOn) +1. 🗣 Commented on [#110](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/110#issuecomment-1901120690) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +2. 🗣 Commented on [#1437](https://github.com/spacetelescope/jwql/pull/1437#issuecomment-1901089342) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#1047](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1047#issuecomment-1900758480) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#1253](https://github.com/aimclub/FEDOT/pull/1253#issuecomment-1900655915) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#1252](https://github.com/aimclub/FEDOT/pull/1252#issuecomment-1900615475) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#1251](https://github.com/aimclub/FEDOT/pull/1251#issuecomment-1900545496) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#2892](https://github.com/statsmodels/statsmodels/pull/2892#issuecomment-1900511959) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +8. 🗣 Commented on [#666](https://github.com/OpenFreeEnergy/openfe/pull/666#issuecomment-1900331621) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#517](https://github.com/aramis-lab/clinicadl/pull/517#issuecomment-1900101001) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +10. 🗣 Commented on [#5414](https://github.com/rhinstaller/anaconda/pull/5414#issuecomment-1900027641) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From b282c4bae9adac32dc6aaab0b40863336ad24053 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jan 2024 01:14:06 +0000 Subject: [PATCH 1225/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ac5f166f..9be87c7e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#110](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/110#issuecomment-1901120690) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -2. 🗣 Commented on [#1437](https://github.com/spacetelescope/jwql/pull/1437#issuecomment-1901089342) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#1047](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1047#issuecomment-1900758480) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#1253](https://github.com/aimclub/FEDOT/pull/1253#issuecomment-1900655915) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#1252](https://github.com/aimclub/FEDOT/pull/1252#issuecomment-1900615475) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#1251](https://github.com/aimclub/FEDOT/pull/1251#issuecomment-1900545496) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#2892](https://github.com/statsmodels/statsmodels/pull/2892#issuecomment-1900511959) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -8. 🗣 Commented on [#666](https://github.com/OpenFreeEnergy/openfe/pull/666#issuecomment-1900331621) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#517](https://github.com/aramis-lab/clinicadl/pull/517#issuecomment-1900101001) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -10. 🗣 Commented on [#5414](https://github.com/rhinstaller/anaconda/pull/5414#issuecomment-1900027641) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#18](https://github.com/kkuba91/turnament_organizer/pull/18#issuecomment-1901516642) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +2. 🗣 Commented on [#110](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/110#issuecomment-1901120690) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +3. 🗣 Commented on [#1437](https://github.com/spacetelescope/jwql/pull/1437#issuecomment-1901089342) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#1047](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1047#issuecomment-1900758480) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1253](https://github.com/aimclub/FEDOT/pull/1253#issuecomment-1900655915) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#1252](https://github.com/aimclub/FEDOT/pull/1252#issuecomment-1900615475) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#1251](https://github.com/aimclub/FEDOT/pull/1251#issuecomment-1900545496) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#2892](https://github.com/statsmodels/statsmodels/pull/2892#issuecomment-1900511959) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +9. 🗣 Commented on [#666](https://github.com/OpenFreeEnergy/openfe/pull/666#issuecomment-1900331621) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#517](https://github.com/aramis-lab/clinicadl/pull/517#issuecomment-1900101001) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) From b22589b4d24e51a804a070307f2e50b176d814bc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jan 2024 04:38:21 +0000 Subject: [PATCH 1226/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9be87c7e..b7ae5817 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#18](https://github.com/kkuba91/turnament_organizer/pull/18#issuecomment-1901516642) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -2. 🗣 Commented on [#110](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/110#issuecomment-1901120690) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -3. 🗣 Commented on [#1437](https://github.com/spacetelescope/jwql/pull/1437#issuecomment-1901089342) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#1047](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1047#issuecomment-1900758480) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1253](https://github.com/aimclub/FEDOT/pull/1253#issuecomment-1900655915) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#1252](https://github.com/aimclub/FEDOT/pull/1252#issuecomment-1900615475) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#1251](https://github.com/aimclub/FEDOT/pull/1251#issuecomment-1900545496) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#2892](https://github.com/statsmodels/statsmodels/pull/2892#issuecomment-1900511959) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -9. 🗣 Commented on [#666](https://github.com/OpenFreeEnergy/openfe/pull/666#issuecomment-1900331621) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#517](https://github.com/aramis-lab/clinicadl/pull/517#issuecomment-1900101001) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +1. 🗣 Commented on [#1](https://github.com/EdinsonRequena/data_optimization_test/pull/1#issuecomment-1901741847) in [EdinsonRequena/data_optimization_test](https://github.com/EdinsonRequena/data_optimization_test) +2. 🗣 Commented on [#18](https://github.com/kkuba91/turnament_organizer/pull/18#issuecomment-1901516642) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +3. 🗣 Commented on [#110](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/110#issuecomment-1901120690) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +4. 🗣 Commented on [#1437](https://github.com/spacetelescope/jwql/pull/1437#issuecomment-1901089342) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#1047](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1047#issuecomment-1900758480) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#1253](https://github.com/aimclub/FEDOT/pull/1253#issuecomment-1900655915) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#1252](https://github.com/aimclub/FEDOT/pull/1252#issuecomment-1900615475) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#1251](https://github.com/aimclub/FEDOT/pull/1251#issuecomment-1900545496) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#2892](https://github.com/statsmodels/statsmodels/pull/2892#issuecomment-1900511959) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +10. 🗣 Commented on [#666](https://github.com/OpenFreeEnergy/openfe/pull/666#issuecomment-1900331621) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 7ea7ffe0fd6790979a67457571d2c687d1c41fb4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jan 2024 05:37:24 +0000 Subject: [PATCH 1227/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b7ae5817..f2ec3dc9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/EdinsonRequena/data_optimization_test/pull/1#issuecomment-1901741847) in [EdinsonRequena/data_optimization_test](https://github.com/EdinsonRequena/data_optimization_test) -2. 🗣 Commented on [#18](https://github.com/kkuba91/turnament_organizer/pull/18#issuecomment-1901516642) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -3. 🗣 Commented on [#110](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/110#issuecomment-1901120690) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -4. 🗣 Commented on [#1437](https://github.com/spacetelescope/jwql/pull/1437#issuecomment-1901089342) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#1047](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1047#issuecomment-1900758480) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#1253](https://github.com/aimclub/FEDOT/pull/1253#issuecomment-1900655915) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#1252](https://github.com/aimclub/FEDOT/pull/1252#issuecomment-1900615475) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#1251](https://github.com/aimclub/FEDOT/pull/1251#issuecomment-1900545496) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#2892](https://github.com/statsmodels/statsmodels/pull/2892#issuecomment-1900511959) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -10. 🗣 Commented on [#666](https://github.com/OpenFreeEnergy/openfe/pull/666#issuecomment-1900331621) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#1](https://github.com/ddobie/DWF_broker/pull/1#issuecomment-1901766191) in [ddobie/DWF_broker](https://github.com/ddobie/DWF_broker) +2. 🗣 Commented on [#1](https://github.com/EdinsonRequena/data_optimization_test/pull/1#issuecomment-1901741847) in [EdinsonRequena/data_optimization_test](https://github.com/EdinsonRequena/data_optimization_test) +3. 🗣 Commented on [#18](https://github.com/kkuba91/turnament_organizer/pull/18#issuecomment-1901516642) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +4. 🗣 Commented on [#110](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/110#issuecomment-1901120690) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +5. 🗣 Commented on [#1437](https://github.com/spacetelescope/jwql/pull/1437#issuecomment-1901089342) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#1047](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1047#issuecomment-1900758480) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#1253](https://github.com/aimclub/FEDOT/pull/1253#issuecomment-1900655915) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#1252](https://github.com/aimclub/FEDOT/pull/1252#issuecomment-1900615475) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#1251](https://github.com/aimclub/FEDOT/pull/1251#issuecomment-1900545496) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#2892](https://github.com/statsmodels/statsmodels/pull/2892#issuecomment-1900511959) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) From 8213c284ea88753aa6b0a4a3d30f754a0aa6e8e7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jan 2024 08:37:14 +0000 Subject: [PATCH 1228/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f2ec3dc9..3efc221f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/ddobie/DWF_broker/pull/1#issuecomment-1901766191) in [ddobie/DWF_broker](https://github.com/ddobie/DWF_broker) -2. 🗣 Commented on [#1](https://github.com/EdinsonRequena/data_optimization_test/pull/1#issuecomment-1901741847) in [EdinsonRequena/data_optimization_test](https://github.com/EdinsonRequena/data_optimization_test) -3. 🗣 Commented on [#18](https://github.com/kkuba91/turnament_organizer/pull/18#issuecomment-1901516642) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -4. 🗣 Commented on [#110](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/110#issuecomment-1901120690) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -5. 🗣 Commented on [#1437](https://github.com/spacetelescope/jwql/pull/1437#issuecomment-1901089342) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#1047](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1047#issuecomment-1900758480) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#1253](https://github.com/aimclub/FEDOT/pull/1253#issuecomment-1900655915) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#1252](https://github.com/aimclub/FEDOT/pull/1252#issuecomment-1900615475) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#1251](https://github.com/aimclub/FEDOT/pull/1251#issuecomment-1900545496) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#2892](https://github.com/statsmodels/statsmodels/pull/2892#issuecomment-1900511959) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +1. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +2. 🗣 Commented on [#145](https://github.com/DeMarcoLab/autolamella/pull/145#issuecomment-1901952633) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +3. 🗣 Commented on [#515](https://github.com/askap-vast/vast-tools/pull/515#issuecomment-1901947772) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +4. 🗣 Commented on [#1](https://github.com/ddobie/DWF_broker/pull/1#issuecomment-1901766191) in [ddobie/DWF_broker](https://github.com/ddobie/DWF_broker) +5. 🗣 Commented on [#1](https://github.com/EdinsonRequena/data_optimization_test/pull/1#issuecomment-1901741847) in [EdinsonRequena/data_optimization_test](https://github.com/EdinsonRequena/data_optimization_test) +6. 🗣 Commented on [#18](https://github.com/kkuba91/turnament_organizer/pull/18#issuecomment-1901516642) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +7. 🗣 Commented on [#110](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/110#issuecomment-1901120690) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +8. 🗣 Commented on [#1437](https://github.com/spacetelescope/jwql/pull/1437#issuecomment-1901089342) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#1047](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1047#issuecomment-1900758480) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#1253](https://github.com/aimclub/FEDOT/pull/1253#issuecomment-1900655915) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From bde904b5c00504eab231830a9e9c33346bff4e69 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 21 Jan 2024 11:13:00 +0000 Subject: [PATCH 1229/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3efc221f..7b87b7c3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -2. 🗣 Commented on [#145](https://github.com/DeMarcoLab/autolamella/pull/145#issuecomment-1901952633) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -3. 🗣 Commented on [#515](https://github.com/askap-vast/vast-tools/pull/515#issuecomment-1901947772) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -4. 🗣 Commented on [#1](https://github.com/ddobie/DWF_broker/pull/1#issuecomment-1901766191) in [ddobie/DWF_broker](https://github.com/ddobie/DWF_broker) -5. 🗣 Commented on [#1](https://github.com/EdinsonRequena/data_optimization_test/pull/1#issuecomment-1901741847) in [EdinsonRequena/data_optimization_test](https://github.com/EdinsonRequena/data_optimization_test) -6. 🗣 Commented on [#18](https://github.com/kkuba91/turnament_organizer/pull/18#issuecomment-1901516642) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -7. 🗣 Commented on [#110](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/110#issuecomment-1901120690) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -8. 🗣 Commented on [#1437](https://github.com/spacetelescope/jwql/pull/1437#issuecomment-1901089342) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#1047](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1047#issuecomment-1900758480) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#1253](https://github.com/aimclub/FEDOT/pull/1253#issuecomment-1900655915) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) +2. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +3. 🗣 Commented on [#145](https://github.com/DeMarcoLab/autolamella/pull/145#issuecomment-1901952633) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +4. 🗣 Commented on [#515](https://github.com/askap-vast/vast-tools/pull/515#issuecomment-1901947772) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +5. 🗣 Commented on [#1](https://github.com/ddobie/DWF_broker/pull/1#issuecomment-1901766191) in [ddobie/DWF_broker](https://github.com/ddobie/DWF_broker) +6. 🗣 Commented on [#1](https://github.com/EdinsonRequena/data_optimization_test/pull/1#issuecomment-1901741847) in [EdinsonRequena/data_optimization_test](https://github.com/EdinsonRequena/data_optimization_test) +7. 🗣 Commented on [#18](https://github.com/kkuba91/turnament_organizer/pull/18#issuecomment-1901516642) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +8. 🗣 Commented on [#110](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/110#issuecomment-1901120690) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +9. 🗣 Commented on [#1437](https://github.com/spacetelescope/jwql/pull/1437#issuecomment-1901089342) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#1047](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1047#issuecomment-1900758480) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From b071677b86741886ef7cef705856340aba241dbe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 21 Jan 2024 18:20:07 +0000 Subject: [PATCH 1230/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7b87b7c3..c4bbaac9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) -2. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -3. 🗣 Commented on [#145](https://github.com/DeMarcoLab/autolamella/pull/145#issuecomment-1901952633) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -4. 🗣 Commented on [#515](https://github.com/askap-vast/vast-tools/pull/515#issuecomment-1901947772) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -5. 🗣 Commented on [#1](https://github.com/ddobie/DWF_broker/pull/1#issuecomment-1901766191) in [ddobie/DWF_broker](https://github.com/ddobie/DWF_broker) -6. 🗣 Commented on [#1](https://github.com/EdinsonRequena/data_optimization_test/pull/1#issuecomment-1901741847) in [EdinsonRequena/data_optimization_test](https://github.com/EdinsonRequena/data_optimization_test) -7. 🗣 Commented on [#18](https://github.com/kkuba91/turnament_organizer/pull/18#issuecomment-1901516642) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -8. 🗣 Commented on [#110](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/110#issuecomment-1901120690) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -9. 🗣 Commented on [#1437](https://github.com/spacetelescope/jwql/pull/1437#issuecomment-1901089342) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#1047](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1047#issuecomment-1900758480) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +2. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) +3. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +4. 🗣 Commented on [#145](https://github.com/DeMarcoLab/autolamella/pull/145#issuecomment-1901952633) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +5. 🗣 Commented on [#515](https://github.com/askap-vast/vast-tools/pull/515#issuecomment-1901947772) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +6. 🗣 Commented on [#1](https://github.com/ddobie/DWF_broker/pull/1#issuecomment-1901766191) in [ddobie/DWF_broker](https://github.com/ddobie/DWF_broker) +7. 🗣 Commented on [#1](https://github.com/EdinsonRequena/data_optimization_test/pull/1#issuecomment-1901741847) in [EdinsonRequena/data_optimization_test](https://github.com/EdinsonRequena/data_optimization_test) +8. 🗣 Commented on [#18](https://github.com/kkuba91/turnament_organizer/pull/18#issuecomment-1901516642) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +9. 🗣 Commented on [#110](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/110#issuecomment-1901120690) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +10. 🗣 Commented on [#1437](https://github.com/spacetelescope/jwql/pull/1437#issuecomment-1901089342) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 0a628558480d4e47e10572bce6faf2c1f9d6b363 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 21 Jan 2024 19:12:49 +0000 Subject: [PATCH 1231/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c4bbaac9..c596912b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -2. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) -3. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -4. 🗣 Commented on [#145](https://github.com/DeMarcoLab/autolamella/pull/145#issuecomment-1901952633) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -5. 🗣 Commented on [#515](https://github.com/askap-vast/vast-tools/pull/515#issuecomment-1901947772) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -6. 🗣 Commented on [#1](https://github.com/ddobie/DWF_broker/pull/1#issuecomment-1901766191) in [ddobie/DWF_broker](https://github.com/ddobie/DWF_broker) -7. 🗣 Commented on [#1](https://github.com/EdinsonRequena/data_optimization_test/pull/1#issuecomment-1901741847) in [EdinsonRequena/data_optimization_test](https://github.com/EdinsonRequena/data_optimization_test) -8. 🗣 Commented on [#18](https://github.com/kkuba91/turnament_organizer/pull/18#issuecomment-1901516642) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -9. 🗣 Commented on [#110](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/110#issuecomment-1901120690) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -10. 🗣 Commented on [#1437](https://github.com/spacetelescope/jwql/pull/1437#issuecomment-1901089342) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +3. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) +4. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +5. 🗣 Commented on [#145](https://github.com/DeMarcoLab/autolamella/pull/145#issuecomment-1901952633) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +6. 🗣 Commented on [#515](https://github.com/askap-vast/vast-tools/pull/515#issuecomment-1901947772) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +7. 🗣 Commented on [#1](https://github.com/ddobie/DWF_broker/pull/1#issuecomment-1901766191) in [ddobie/DWF_broker](https://github.com/ddobie/DWF_broker) +8. 🗣 Commented on [#1](https://github.com/EdinsonRequena/data_optimization_test/pull/1#issuecomment-1901741847) in [EdinsonRequena/data_optimization_test](https://github.com/EdinsonRequena/data_optimization_test) +9. 🗣 Commented on [#18](https://github.com/kkuba91/turnament_organizer/pull/18#issuecomment-1901516642) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +10. 🗣 Commented on [#110](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/110#issuecomment-1901120690) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) From 0d3ddef63d3d1c07c4f77cbdcf3dd3557db11990 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 21 Jan 2024 20:17:00 +0000 Subject: [PATCH 1232/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c596912b..0ffd3c12 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -3. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) -4. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -5. 🗣 Commented on [#145](https://github.com/DeMarcoLab/autolamella/pull/145#issuecomment-1901952633) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -6. 🗣 Commented on [#515](https://github.com/askap-vast/vast-tools/pull/515#issuecomment-1901947772) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -7. 🗣 Commented on [#1](https://github.com/ddobie/DWF_broker/pull/1#issuecomment-1901766191) in [ddobie/DWF_broker](https://github.com/ddobie/DWF_broker) -8. 🗣 Commented on [#1](https://github.com/EdinsonRequena/data_optimization_test/pull/1#issuecomment-1901741847) in [EdinsonRequena/data_optimization_test](https://github.com/EdinsonRequena/data_optimization_test) -9. 🗣 Commented on [#18](https://github.com/kkuba91/turnament_organizer/pull/18#issuecomment-1901516642) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -10. 🗣 Commented on [#110](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/110#issuecomment-1901120690) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +1. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +4. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) +5. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +6. 🗣 Commented on [#145](https://github.com/DeMarcoLab/autolamella/pull/145#issuecomment-1901952633) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +7. 🗣 Commented on [#515](https://github.com/askap-vast/vast-tools/pull/515#issuecomment-1901947772) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +8. 🗣 Commented on [#1](https://github.com/ddobie/DWF_broker/pull/1#issuecomment-1901766191) in [ddobie/DWF_broker](https://github.com/ddobie/DWF_broker) +9. 🗣 Commented on [#1](https://github.com/EdinsonRequena/data_optimization_test/pull/1#issuecomment-1901741847) in [EdinsonRequena/data_optimization_test](https://github.com/EdinsonRequena/data_optimization_test) +10. 🗣 Commented on [#18](https://github.com/kkuba91/turnament_organizer/pull/18#issuecomment-1901516642) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) From e992309e2ce1b5cc2fa52669a87de0d63e509094 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 21 Jan 2024 21:37:28 +0000 Subject: [PATCH 1233/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0ffd3c12..d2df6b9e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -4. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) -5. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -6. 🗣 Commented on [#145](https://github.com/DeMarcoLab/autolamella/pull/145#issuecomment-1901952633) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -7. 🗣 Commented on [#515](https://github.com/askap-vast/vast-tools/pull/515#issuecomment-1901947772) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -8. 🗣 Commented on [#1](https://github.com/ddobie/DWF_broker/pull/1#issuecomment-1901766191) in [ddobie/DWF_broker](https://github.com/ddobie/DWF_broker) -9. 🗣 Commented on [#1](https://github.com/EdinsonRequena/data_optimization_test/pull/1#issuecomment-1901741847) in [EdinsonRequena/data_optimization_test](https://github.com/EdinsonRequena/data_optimization_test) -10. 🗣 Commented on [#18](https://github.com/kkuba91/turnament_organizer/pull/18#issuecomment-1901516642) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +1. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +5. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) +6. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +7. 🗣 Commented on [#145](https://github.com/DeMarcoLab/autolamella/pull/145#issuecomment-1901952633) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +8. 🗣 Commented on [#515](https://github.com/askap-vast/vast-tools/pull/515#issuecomment-1901947772) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +9. 🗣 Commented on [#1](https://github.com/ddobie/DWF_broker/pull/1#issuecomment-1901766191) in [ddobie/DWF_broker](https://github.com/ddobie/DWF_broker) +10. 🗣 Commented on [#1](https://github.com/EdinsonRequena/data_optimization_test/pull/1#issuecomment-1901741847) in [EdinsonRequena/data_optimization_test](https://github.com/EdinsonRequena/data_optimization_test) From e6fb6787647269d812326bf32259eccd05c4d004 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 01:17:57 +0000 Subject: [PATCH 1234/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d2df6b9e..fd3c82bd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -5. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) -6. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -7. 🗣 Commented on [#145](https://github.com/DeMarcoLab/autolamella/pull/145#issuecomment-1901952633) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -8. 🗣 Commented on [#515](https://github.com/askap-vast/vast-tools/pull/515#issuecomment-1901947772) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -9. 🗣 Commented on [#1](https://github.com/ddobie/DWF_broker/pull/1#issuecomment-1901766191) in [ddobie/DWF_broker](https://github.com/ddobie/DWF_broker) -10. 🗣 Commented on [#1](https://github.com/EdinsonRequena/data_optimization_test/pull/1#issuecomment-1901741847) in [EdinsonRequena/data_optimization_test](https://github.com/EdinsonRequena/data_optimization_test) +1. 🗣 Commented on [#86](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/86#issuecomment-1902833619) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) +2. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +6. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) +7. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +8. 🗣 Commented on [#145](https://github.com/DeMarcoLab/autolamella/pull/145#issuecomment-1901952633) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +9. 🗣 Commented on [#515](https://github.com/askap-vast/vast-tools/pull/515#issuecomment-1901947772) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +10. 🗣 Commented on [#1](https://github.com/ddobie/DWF_broker/pull/1#issuecomment-1901766191) in [ddobie/DWF_broker](https://github.com/ddobie/DWF_broker) From 095f21049b8675c9ffc9dc14e1cce42b54397233 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 02:20:49 +0000 Subject: [PATCH 1235/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fd3c82bd..b6dd9f58 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#86](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/86#issuecomment-1902833619) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) -2. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -6. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) -7. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -8. 🗣 Commented on [#145](https://github.com/DeMarcoLab/autolamella/pull/145#issuecomment-1901952633) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -9. 🗣 Commented on [#515](https://github.com/askap-vast/vast-tools/pull/515#issuecomment-1901947772) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -10. 🗣 Commented on [#1](https://github.com/ddobie/DWF_broker/pull/1#issuecomment-1901766191) in [ddobie/DWF_broker](https://github.com/ddobie/DWF_broker) +1. 🗣 Commented on [#17](https://github.com/rasbt/LLMs-from-scratch/pull/17#issuecomment-1902915042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +2. 🗣 Commented on [#86](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/86#issuecomment-1902833619) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) +3. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +7. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) +8. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +9. 🗣 Commented on [#145](https://github.com/DeMarcoLab/autolamella/pull/145#issuecomment-1901952633) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +10. 🗣 Commented on [#515](https://github.com/askap-vast/vast-tools/pull/515#issuecomment-1901947772) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) From e5e6798a8fd599f1301060967ed40f34ff9f2275 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 10:18:23 +0000 Subject: [PATCH 1236/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b6dd9f58..fd00eac9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#17](https://github.com/rasbt/LLMs-from-scratch/pull/17#issuecomment-1902915042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -2. 🗣 Commented on [#86](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/86#issuecomment-1902833619) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) -3. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -7. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) -8. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -9. 🗣 Commented on [#145](https://github.com/DeMarcoLab/autolamella/pull/145#issuecomment-1901952633) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -10. 🗣 Commented on [#515](https://github.com/askap-vast/vast-tools/pull/515#issuecomment-1901947772) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +1. 🗣 Commented on [#5416](https://github.com/rhinstaller/anaconda/pull/5416#issuecomment-1903656258) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#17](https://github.com/rasbt/LLMs-from-scratch/pull/17#issuecomment-1902915042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +3. 🗣 Commented on [#86](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/86#issuecomment-1902833619) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) +4. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +8. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) +9. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +10. 🗣 Commented on [#145](https://github.com/DeMarcoLab/autolamella/pull/145#issuecomment-1901952633) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) From fd6c18c6c267d5e8668eae43791ca14ed1ed12e6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 12:33:28 +0000 Subject: [PATCH 1237/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fd00eac9..cd074802 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5416](https://github.com/rhinstaller/anaconda/pull/5416#issuecomment-1903656258) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#17](https://github.com/rasbt/LLMs-from-scratch/pull/17#issuecomment-1902915042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -3. 🗣 Commented on [#86](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/86#issuecomment-1902833619) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) -4. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -8. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) -9. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -10. 🗣 Commented on [#145](https://github.com/DeMarcoLab/autolamella/pull/145#issuecomment-1901952633) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +1. 🗣 Commented on [#61](https://github.com/eastgenomics/trendyQC/pull/61#issuecomment-1903892619) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +2. 🗣 Commented on [#5416](https://github.com/rhinstaller/anaconda/pull/5416#issuecomment-1903656258) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#17](https://github.com/rasbt/LLMs-from-scratch/pull/17#issuecomment-1902915042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +4. 🗣 Commented on [#86](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/86#issuecomment-1902833619) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) +5. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +9. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) +10. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) From caf5c195ba0315934474fcf9b0f089e9b869a936 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 16:41:10 +0000 Subject: [PATCH 1238/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cd074802..95127164 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#61](https://github.com/eastgenomics/trendyQC/pull/61#issuecomment-1903892619) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -2. 🗣 Commented on [#5416](https://github.com/rhinstaller/anaconda/pull/5416#issuecomment-1903656258) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#17](https://github.com/rasbt/LLMs-from-scratch/pull/17#issuecomment-1902915042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -4. 🗣 Commented on [#86](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/86#issuecomment-1902833619) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) -5. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -9. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) -10. 🗣 Commented on [#316](https://github.com/DeMarcoLab/fibsem/pull/316#issuecomment-1901953436) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +1. 🗣 Commented on [#5417](https://github.com/rhinstaller/anaconda/pull/5417#issuecomment-1904357806) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#61](https://github.com/eastgenomics/trendyQC/pull/61#issuecomment-1903892619) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +3. 🗣 Commented on [#5416](https://github.com/rhinstaller/anaconda/pull/5416#issuecomment-1903656258) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#17](https://github.com/rasbt/LLMs-from-scratch/pull/17#issuecomment-1902915042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +5. 🗣 Commented on [#86](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/86#issuecomment-1902833619) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) +6. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +10. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) From 4a765622f689b22debae2708dd0e131ca7cba471 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 20:37:32 +0000 Subject: [PATCH 1239/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 95127164..9ae03bee 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5417](https://github.com/rhinstaller/anaconda/pull/5417#issuecomment-1904357806) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#61](https://github.com/eastgenomics/trendyQC/pull/61#issuecomment-1903892619) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -3. 🗣 Commented on [#5416](https://github.com/rhinstaller/anaconda/pull/5416#issuecomment-1903656258) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#17](https://github.com/rasbt/LLMs-from-scratch/pull/17#issuecomment-1902915042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -5. 🗣 Commented on [#86](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/86#issuecomment-1902833619) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) -6. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -10. 🗣 Commented on [#479](https://github.com/oemof/tespy/pull/479#issuecomment-1902595810) in [oemof/tespy](https://github.com/oemof/tespy) +1. 🗣 Commented on [#4357](https://github.com/uwcirg/truenth-portal/pull/4357#issuecomment-1904741740) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +2. 🗣 Commented on [#5417](https://github.com/rhinstaller/anaconda/pull/5417#issuecomment-1904357806) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#61](https://github.com/eastgenomics/trendyQC/pull/61#issuecomment-1903892619) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +4. 🗣 Commented on [#5416](https://github.com/rhinstaller/anaconda/pull/5416#issuecomment-1903656258) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#17](https://github.com/rasbt/LLMs-from-scratch/pull/17#issuecomment-1902915042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +6. 🗣 Commented on [#86](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/86#issuecomment-1902833619) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) +7. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) From 1756ee6f76d0c35d9641e9302a8fde6cfc4aba8e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jan 2024 07:16:11 +0000 Subject: [PATCH 1240/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9ae03bee..a504c1ef 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4357](https://github.com/uwcirg/truenth-portal/pull/4357#issuecomment-1904741740) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -2. 🗣 Commented on [#5417](https://github.com/rhinstaller/anaconda/pull/5417#issuecomment-1904357806) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#61](https://github.com/eastgenomics/trendyQC/pull/61#issuecomment-1903892619) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -4. 🗣 Commented on [#5416](https://github.com/rhinstaller/anaconda/pull/5416#issuecomment-1903656258) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#17](https://github.com/rasbt/LLMs-from-scratch/pull/17#issuecomment-1902915042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -6. 🗣 Commented on [#86](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/86#issuecomment-1902833619) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) -7. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#714](https://github.com/StingraySoftware/stingray/pull/714#issuecomment-1902708808) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +1. 🗣 Commented on [#411](https://github.com/payu-org/payu/pull/411#issuecomment-1905412714) in [payu-org/payu](https://github.com/payu-org/payu) +2. 🗣 Commented on [#4357](https://github.com/uwcirg/truenth-portal/pull/4357#issuecomment-1904741740) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +3. 🗣 Commented on [#5417](https://github.com/rhinstaller/anaconda/pull/5417#issuecomment-1904357806) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#61](https://github.com/eastgenomics/trendyQC/pull/61#issuecomment-1903892619) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +5. 🗣 Commented on [#5416](https://github.com/rhinstaller/anaconda/pull/5416#issuecomment-1903656258) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#17](https://github.com/rasbt/LLMs-from-scratch/pull/17#issuecomment-1902915042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +7. 🗣 Commented on [#86](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/86#issuecomment-1902833619) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) +8. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From da0d2f6a4f2463354fa4f02c7208e7c7e22c879b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jan 2024 10:39:34 +0000 Subject: [PATCH 1241/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a504c1ef..9a3d9dfb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#411](https://github.com/payu-org/payu/pull/411#issuecomment-1905412714) in [payu-org/payu](https://github.com/payu-org/payu) -2. 🗣 Commented on [#4357](https://github.com/uwcirg/truenth-portal/pull/4357#issuecomment-1904741740) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -3. 🗣 Commented on [#5417](https://github.com/rhinstaller/anaconda/pull/5417#issuecomment-1904357806) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#61](https://github.com/eastgenomics/trendyQC/pull/61#issuecomment-1903892619) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -5. 🗣 Commented on [#5416](https://github.com/rhinstaller/anaconda/pull/5416#issuecomment-1903656258) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#17](https://github.com/rasbt/LLMs-from-scratch/pull/17#issuecomment-1902915042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -7. 🗣 Commented on [#86](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/86#issuecomment-1902833619) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) -8. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#893](https://github.com/ToFuProject/tofu/pull/893#issuecomment-1902723662) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#2729](https://github.com/metabrainz/listenbrainz-server/pull/2729#issuecomment-1905748765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#411](https://github.com/payu-org/payu/pull/411#issuecomment-1905412714) in [payu-org/payu](https://github.com/payu-org/payu) +3. 🗣 Commented on [#4357](https://github.com/uwcirg/truenth-portal/pull/4357#issuecomment-1904741740) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +4. 🗣 Commented on [#5417](https://github.com/rhinstaller/anaconda/pull/5417#issuecomment-1904357806) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#61](https://github.com/eastgenomics/trendyQC/pull/61#issuecomment-1903892619) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +6. 🗣 Commented on [#5416](https://github.com/rhinstaller/anaconda/pull/5416#issuecomment-1903656258) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#17](https://github.com/rasbt/LLMs-from-scratch/pull/17#issuecomment-1902915042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +8. 🗣 Commented on [#86](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/86#issuecomment-1902833619) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) +9. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 00e5f732a001f93837ced560a6db4c3f3fe6af38 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jan 2024 12:32:37 +0000 Subject: [PATCH 1242/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9a3d9dfb..28798286 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2729](https://github.com/metabrainz/listenbrainz-server/pull/2729#issuecomment-1905748765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#411](https://github.com/payu-org/payu/pull/411#issuecomment-1905412714) in [payu-org/payu](https://github.com/payu-org/payu) -3. 🗣 Commented on [#4357](https://github.com/uwcirg/truenth-portal/pull/4357#issuecomment-1904741740) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -4. 🗣 Commented on [#5417](https://github.com/rhinstaller/anaconda/pull/5417#issuecomment-1904357806) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#61](https://github.com/eastgenomics/trendyQC/pull/61#issuecomment-1903892619) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -6. 🗣 Commented on [#5416](https://github.com/rhinstaller/anaconda/pull/5416#issuecomment-1903656258) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#17](https://github.com/rasbt/LLMs-from-scratch/pull/17#issuecomment-1902915042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -8. 🗣 Commented on [#86](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/86#issuecomment-1902833619) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) -9. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#4407](https://github.com/MDAnalysis/mdanalysis/pull/4407#issuecomment-1902740518) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/Lomap/pull/47#issuecomment-1905960120) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +2. 🗣 Commented on [#2729](https://github.com/metabrainz/listenbrainz-server/pull/2729#issuecomment-1905748765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#411](https://github.com/payu-org/payu/pull/411#issuecomment-1905412714) in [payu-org/payu](https://github.com/payu-org/payu) +4. 🗣 Commented on [#4357](https://github.com/uwcirg/truenth-portal/pull/4357#issuecomment-1904741740) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +5. 🗣 Commented on [#5417](https://github.com/rhinstaller/anaconda/pull/5417#issuecomment-1904357806) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#61](https://github.com/eastgenomics/trendyQC/pull/61#issuecomment-1903892619) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +7. 🗣 Commented on [#5416](https://github.com/rhinstaller/anaconda/pull/5416#issuecomment-1903656258) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#17](https://github.com/rasbt/LLMs-from-scratch/pull/17#issuecomment-1902915042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +9. 🗣 Commented on [#86](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/86#issuecomment-1902833619) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) +10. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From 120e23e14f3d903101a3a3f4f1ccd5b85e5994eb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jan 2024 14:15:54 +0000 Subject: [PATCH 1243/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 28798286..6da7a3be 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/Lomap/pull/47#issuecomment-1905960120) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -2. 🗣 Commented on [#2729](https://github.com/metabrainz/listenbrainz-server/pull/2729#issuecomment-1905748765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#411](https://github.com/payu-org/payu/pull/411#issuecomment-1905412714) in [payu-org/payu](https://github.com/payu-org/payu) -4. 🗣 Commented on [#4357](https://github.com/uwcirg/truenth-portal/pull/4357#issuecomment-1904741740) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -5. 🗣 Commented on [#5417](https://github.com/rhinstaller/anaconda/pull/5417#issuecomment-1904357806) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#61](https://github.com/eastgenomics/trendyQC/pull/61#issuecomment-1903892619) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -7. 🗣 Commented on [#5416](https://github.com/rhinstaller/anaconda/pull/5416#issuecomment-1903656258) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#17](https://github.com/rasbt/LLMs-from-scratch/pull/17#issuecomment-1902915042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -9. 🗣 Commented on [#86](https://github.com/MDAnalysis/mdanalysis-sphinx-theme/pull/86#issuecomment-1902833619) in [MDAnalysis/mdanalysis-sphinx-theme](https://github.com/MDAnalysis/mdanalysis-sphinx-theme) -10. 🗣 Commented on [#894](https://github.com/ToFuProject/tofu/pull/894#issuecomment-1902767748) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1906128964) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +2. 🗣 Commented on [#93](https://github.com/INT-NIT/DigLabTools/pull/93#issuecomment-1906088355) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +3. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/Lomap/pull/47#issuecomment-1905960120) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +4. 🗣 Commented on [#2729](https://github.com/metabrainz/listenbrainz-server/pull/2729#issuecomment-1905748765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#411](https://github.com/payu-org/payu/pull/411#issuecomment-1905412714) in [payu-org/payu](https://github.com/payu-org/payu) +6. 🗣 Commented on [#4357](https://github.com/uwcirg/truenth-portal/pull/4357#issuecomment-1904741740) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +7. 🗣 Commented on [#5417](https://github.com/rhinstaller/anaconda/pull/5417#issuecomment-1904357806) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#61](https://github.com/eastgenomics/trendyQC/pull/61#issuecomment-1903892619) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +9. 🗣 Commented on [#5416](https://github.com/rhinstaller/anaconda/pull/5416#issuecomment-1903656258) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#17](https://github.com/rasbt/LLMs-from-scratch/pull/17#issuecomment-1902915042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) From fdae1e07597668f54b1febd5fa7344360d62f469 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jan 2024 16:22:38 +0000 Subject: [PATCH 1244/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6da7a3be..875abe4d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1906128964) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -2. 🗣 Commented on [#93](https://github.com/INT-NIT/DigLabTools/pull/93#issuecomment-1906088355) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -3. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/Lomap/pull/47#issuecomment-1905960120) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -4. 🗣 Commented on [#2729](https://github.com/metabrainz/listenbrainz-server/pull/2729#issuecomment-1905748765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#411](https://github.com/payu-org/payu/pull/411#issuecomment-1905412714) in [payu-org/payu](https://github.com/payu-org/payu) -6. 🗣 Commented on [#4357](https://github.com/uwcirg/truenth-portal/pull/4357#issuecomment-1904741740) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -7. 🗣 Commented on [#5417](https://github.com/rhinstaller/anaconda/pull/5417#issuecomment-1904357806) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#61](https://github.com/eastgenomics/trendyQC/pull/61#issuecomment-1903892619) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -9. 🗣 Commented on [#5416](https://github.com/rhinstaller/anaconda/pull/5416#issuecomment-1903656258) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#17](https://github.com/rasbt/LLMs-from-scratch/pull/17#issuecomment-1902915042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +1. 🗣 Commented on [#33](https://github.com/OpenFreeEnergy/kartograf/pull/33#issuecomment-1906401539) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +2. 🗣 Commented on [#1440](https://github.com/spacetelescope/jwql/pull/1440#issuecomment-1906371568) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1906128964) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +4. 🗣 Commented on [#93](https://github.com/INT-NIT/DigLabTools/pull/93#issuecomment-1906088355) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +5. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/Lomap/pull/47#issuecomment-1905960120) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +6. 🗣 Commented on [#2729](https://github.com/metabrainz/listenbrainz-server/pull/2729#issuecomment-1905748765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#411](https://github.com/payu-org/payu/pull/411#issuecomment-1905412714) in [payu-org/payu](https://github.com/payu-org/payu) +8. 🗣 Commented on [#4357](https://github.com/uwcirg/truenth-portal/pull/4357#issuecomment-1904741740) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +9. 🗣 Commented on [#5417](https://github.com/rhinstaller/anaconda/pull/5417#issuecomment-1904357806) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#61](https://github.com/eastgenomics/trendyQC/pull/61#issuecomment-1903892619) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) From 0be53357c3236704fa529350266f26b86fa55427 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jan 2024 18:21:28 +0000 Subject: [PATCH 1245/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 875abe4d..c7cf1cb2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#33](https://github.com/OpenFreeEnergy/kartograf/pull/33#issuecomment-1906401539) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -2. 🗣 Commented on [#1440](https://github.com/spacetelescope/jwql/pull/1440#issuecomment-1906371568) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1906128964) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -4. 🗣 Commented on [#93](https://github.com/INT-NIT/DigLabTools/pull/93#issuecomment-1906088355) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -5. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/Lomap/pull/47#issuecomment-1905960120) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -6. 🗣 Commented on [#2729](https://github.com/metabrainz/listenbrainz-server/pull/2729#issuecomment-1905748765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#411](https://github.com/payu-org/payu/pull/411#issuecomment-1905412714) in [payu-org/payu](https://github.com/payu-org/payu) -8. 🗣 Commented on [#4357](https://github.com/uwcirg/truenth-portal/pull/4357#issuecomment-1904741740) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -9. 🗣 Commented on [#5417](https://github.com/rhinstaller/anaconda/pull/5417#issuecomment-1904357806) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#61](https://github.com/eastgenomics/trendyQC/pull/61#issuecomment-1903892619) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +1. 🗣 Commented on [#1049](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1049#issuecomment-1906611760) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#2730](https://github.com/metabrainz/listenbrainz-server/pull/2730#issuecomment-1906607795) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#33](https://github.com/OpenFreeEnergy/kartograf/pull/33#issuecomment-1906401539) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +4. 🗣 Commented on [#1440](https://github.com/spacetelescope/jwql/pull/1440#issuecomment-1906371568) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1906128964) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +6. 🗣 Commented on [#93](https://github.com/INT-NIT/DigLabTools/pull/93#issuecomment-1906088355) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +7. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/Lomap/pull/47#issuecomment-1905960120) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +8. 🗣 Commented on [#2729](https://github.com/metabrainz/listenbrainz-server/pull/2729#issuecomment-1905748765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#411](https://github.com/payu-org/payu/pull/411#issuecomment-1905412714) in [payu-org/payu](https://github.com/payu-org/payu) +10. 🗣 Commented on [#4357](https://github.com/uwcirg/truenth-portal/pull/4357#issuecomment-1904741740) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) From 9e6e31a29b225d464cc6f675b298fe184a8b9833 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jan 2024 20:18:11 +0000 Subject: [PATCH 1246/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c7cf1cb2..b7f7dc6b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1049](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1049#issuecomment-1906611760) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#2730](https://github.com/metabrainz/listenbrainz-server/pull/2730#issuecomment-1906607795) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#33](https://github.com/OpenFreeEnergy/kartograf/pull/33#issuecomment-1906401539) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -4. 🗣 Commented on [#1440](https://github.com/spacetelescope/jwql/pull/1440#issuecomment-1906371568) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1906128964) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -6. 🗣 Commented on [#93](https://github.com/INT-NIT/DigLabTools/pull/93#issuecomment-1906088355) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -7. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/Lomap/pull/47#issuecomment-1905960120) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -8. 🗣 Commented on [#2729](https://github.com/metabrainz/listenbrainz-server/pull/2729#issuecomment-1905748765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#411](https://github.com/payu-org/payu/pull/411#issuecomment-1905412714) in [payu-org/payu](https://github.com/payu-org/payu) -10. 🗣 Commented on [#4357](https://github.com/uwcirg/truenth-portal/pull/4357#issuecomment-1904741740) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +1. 🗣 Commented on [#1473](https://github.com/openSUSE/osc/pull/1473#issuecomment-1906810450) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#1049](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1049#issuecomment-1906611760) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#2730](https://github.com/metabrainz/listenbrainz-server/pull/2730#issuecomment-1906607795) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#33](https://github.com/OpenFreeEnergy/kartograf/pull/33#issuecomment-1906401539) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +5. 🗣 Commented on [#1440](https://github.com/spacetelescope/jwql/pull/1440#issuecomment-1906371568) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1906128964) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +7. 🗣 Commented on [#93](https://github.com/INT-NIT/DigLabTools/pull/93#issuecomment-1906088355) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +8. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/Lomap/pull/47#issuecomment-1905960120) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +9. 🗣 Commented on [#2729](https://github.com/metabrainz/listenbrainz-server/pull/2729#issuecomment-1905748765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#411](https://github.com/payu-org/payu/pull/411#issuecomment-1905412714) in [payu-org/payu](https://github.com/payu-org/payu) From 39c110514770f7bb5c37c6cae748d78b56564ea7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 01:16:02 +0000 Subject: [PATCH 1247/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b7f7dc6b..b4c30732 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1473](https://github.com/openSUSE/osc/pull/1473#issuecomment-1906810450) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#1049](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1049#issuecomment-1906611760) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#2730](https://github.com/metabrainz/listenbrainz-server/pull/2730#issuecomment-1906607795) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#33](https://github.com/OpenFreeEnergy/kartograf/pull/33#issuecomment-1906401539) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -5. 🗣 Commented on [#1440](https://github.com/spacetelescope/jwql/pull/1440#issuecomment-1906371568) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1906128964) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -7. 🗣 Commented on [#93](https://github.com/INT-NIT/DigLabTools/pull/93#issuecomment-1906088355) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -8. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/Lomap/pull/47#issuecomment-1905960120) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -9. 🗣 Commented on [#2729](https://github.com/metabrainz/listenbrainz-server/pull/2729#issuecomment-1905748765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#411](https://github.com/payu-org/payu/pull/411#issuecomment-1905412714) in [payu-org/payu](https://github.com/payu-org/payu) +1. 🗣 Commented on [#4358](https://github.com/uwcirg/truenth-portal/pull/4358#issuecomment-1907107014) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +2. 🗣 Commented on [#1473](https://github.com/openSUSE/osc/pull/1473#issuecomment-1906810450) in [openSUSE/osc](https://github.com/openSUSE/osc) +3. 🗣 Commented on [#1049](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1049#issuecomment-1906611760) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#2730](https://github.com/metabrainz/listenbrainz-server/pull/2730#issuecomment-1906607795) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#33](https://github.com/OpenFreeEnergy/kartograf/pull/33#issuecomment-1906401539) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +6. 🗣 Commented on [#1440](https://github.com/spacetelescope/jwql/pull/1440#issuecomment-1906371568) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1906128964) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +8. 🗣 Commented on [#93](https://github.com/INT-NIT/DigLabTools/pull/93#issuecomment-1906088355) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +9. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/Lomap/pull/47#issuecomment-1905960120) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +10. 🗣 Commented on [#2729](https://github.com/metabrainz/listenbrainz-server/pull/2729#issuecomment-1905748765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 514454abe2843cc71fe3a34595144d72496ca666 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 06:22:23 +0000 Subject: [PATCH 1248/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b4c30732..d8f74445 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4358](https://github.com/uwcirg/truenth-portal/pull/4358#issuecomment-1907107014) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -2. 🗣 Commented on [#1473](https://github.com/openSUSE/osc/pull/1473#issuecomment-1906810450) in [openSUSE/osc](https://github.com/openSUSE/osc) -3. 🗣 Commented on [#1049](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1049#issuecomment-1906611760) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#2730](https://github.com/metabrainz/listenbrainz-server/pull/2730#issuecomment-1906607795) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#33](https://github.com/OpenFreeEnergy/kartograf/pull/33#issuecomment-1906401539) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -6. 🗣 Commented on [#1440](https://github.com/spacetelescope/jwql/pull/1440#issuecomment-1906371568) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1906128964) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -8. 🗣 Commented on [#93](https://github.com/INT-NIT/DigLabTools/pull/93#issuecomment-1906088355) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -9. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/Lomap/pull/47#issuecomment-1905960120) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) -10. 🗣 Commented on [#2729](https://github.com/metabrainz/listenbrainz-server/pull/2729#issuecomment-1905748765) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#2731](https://github.com/metabrainz/listenbrainz-server/pull/2731#issuecomment-1907440632) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#4358](https://github.com/uwcirg/truenth-portal/pull/4358#issuecomment-1907107014) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +3. 🗣 Commented on [#1473](https://github.com/openSUSE/osc/pull/1473#issuecomment-1906810450) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#1049](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1049#issuecomment-1906611760) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#2730](https://github.com/metabrainz/listenbrainz-server/pull/2730#issuecomment-1906607795) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#33](https://github.com/OpenFreeEnergy/kartograf/pull/33#issuecomment-1906401539) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +7. 🗣 Commented on [#1440](https://github.com/spacetelescope/jwql/pull/1440#issuecomment-1906371568) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1906128964) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +9. 🗣 Commented on [#93](https://github.com/INT-NIT/DigLabTools/pull/93#issuecomment-1906088355) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +10. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/Lomap/pull/47#issuecomment-1905960120) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) From 1178866c0df8dccbbeb29aabd8226a8c976956a2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 06:39:40 +0000 Subject: [PATCH 1249/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d8f74445..f5e14426 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2731](https://github.com/metabrainz/listenbrainz-server/pull/2731#issuecomment-1907440632) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#4358](https://github.com/uwcirg/truenth-portal/pull/4358#issuecomment-1907107014) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -3. 🗣 Commented on [#1473](https://github.com/openSUSE/osc/pull/1473#issuecomment-1906810450) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#1049](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1049#issuecomment-1906611760) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#2730](https://github.com/metabrainz/listenbrainz-server/pull/2730#issuecomment-1906607795) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#33](https://github.com/OpenFreeEnergy/kartograf/pull/33#issuecomment-1906401539) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -7. 🗣 Commented on [#1440](https://github.com/spacetelescope/jwql/pull/1440#issuecomment-1906371568) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1906128964) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -9. 🗣 Commented on [#93](https://github.com/INT-NIT/DigLabTools/pull/93#issuecomment-1906088355) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -10. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/Lomap/pull/47#issuecomment-1905960120) in [OpenFreeEnergy/Lomap](https://github.com/OpenFreeEnergy/Lomap) +1. 🗣 Commented on [#7](https://github.com/PyThaiNLP/PyThaiTTS/pull/7#issuecomment-1907460386) in [PyThaiNLP/PyThaiTTS](https://github.com/PyThaiNLP/PyThaiTTS) +2. 🗣 Commented on [#2731](https://github.com/metabrainz/listenbrainz-server/pull/2731#issuecomment-1907440632) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#4358](https://github.com/uwcirg/truenth-portal/pull/4358#issuecomment-1907107014) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +4. 🗣 Commented on [#1473](https://github.com/openSUSE/osc/pull/1473#issuecomment-1906810450) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#1049](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1049#issuecomment-1906611760) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#2730](https://github.com/metabrainz/listenbrainz-server/pull/2730#issuecomment-1906607795) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#33](https://github.com/OpenFreeEnergy/kartograf/pull/33#issuecomment-1906401539) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +8. 🗣 Commented on [#1440](https://github.com/spacetelescope/jwql/pull/1440#issuecomment-1906371568) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1906128964) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +10. 🗣 Commented on [#93](https://github.com/INT-NIT/DigLabTools/pull/93#issuecomment-1906088355) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) From ff4b9f036e2fca06ccc5c8e81bf6de80dd8fa555 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 09:17:04 +0000 Subject: [PATCH 1250/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f5e14426..c135a5ea 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#7](https://github.com/PyThaiNLP/PyThaiTTS/pull/7#issuecomment-1907460386) in [PyThaiNLP/PyThaiTTS](https://github.com/PyThaiNLP/PyThaiTTS) -2. 🗣 Commented on [#2731](https://github.com/metabrainz/listenbrainz-server/pull/2731#issuecomment-1907440632) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#4358](https://github.com/uwcirg/truenth-portal/pull/4358#issuecomment-1907107014) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -4. 🗣 Commented on [#1473](https://github.com/openSUSE/osc/pull/1473#issuecomment-1906810450) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#1049](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1049#issuecomment-1906611760) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#2730](https://github.com/metabrainz/listenbrainz-server/pull/2730#issuecomment-1906607795) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#33](https://github.com/OpenFreeEnergy/kartograf/pull/33#issuecomment-1906401539) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -8. 🗣 Commented on [#1440](https://github.com/spacetelescope/jwql/pull/1440#issuecomment-1906371568) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1906128964) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -10. 🗣 Commented on [#93](https://github.com/INT-NIT/DigLabTools/pull/93#issuecomment-1906088355) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +1. 🗣 Commented on [#4438](https://github.com/MDAnalysis/mdanalysis/pull/4438#issuecomment-1907699409) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#7](https://github.com/PyThaiNLP/PyThaiTTS/pull/7#issuecomment-1907460386) in [PyThaiNLP/PyThaiTTS](https://github.com/PyThaiNLP/PyThaiTTS) +3. 🗣 Commented on [#2731](https://github.com/metabrainz/listenbrainz-server/pull/2731#issuecomment-1907440632) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#4358](https://github.com/uwcirg/truenth-portal/pull/4358#issuecomment-1907107014) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +5. 🗣 Commented on [#1473](https://github.com/openSUSE/osc/pull/1473#issuecomment-1906810450) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#1049](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1049#issuecomment-1906611760) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#2730](https://github.com/metabrainz/listenbrainz-server/pull/2730#issuecomment-1906607795) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#33](https://github.com/OpenFreeEnergy/kartograf/pull/33#issuecomment-1906401539) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +9. 🗣 Commented on [#1440](https://github.com/spacetelescope/jwql/pull/1440#issuecomment-1906371568) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1906128964) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) From a5b5ac59dacc9dc16274299ee6131d6a37d3e03f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 09:37:28 +0000 Subject: [PATCH 1251/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c135a5ea..b0e804c4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4438](https://github.com/MDAnalysis/mdanalysis/pull/4438#issuecomment-1907699409) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#7](https://github.com/PyThaiNLP/PyThaiTTS/pull/7#issuecomment-1907460386) in [PyThaiNLP/PyThaiTTS](https://github.com/PyThaiNLP/PyThaiTTS) -3. 🗣 Commented on [#2731](https://github.com/metabrainz/listenbrainz-server/pull/2731#issuecomment-1907440632) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#4358](https://github.com/uwcirg/truenth-portal/pull/4358#issuecomment-1907107014) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -5. 🗣 Commented on [#1473](https://github.com/openSUSE/osc/pull/1473#issuecomment-1906810450) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#1049](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1049#issuecomment-1906611760) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#2730](https://github.com/metabrainz/listenbrainz-server/pull/2730#issuecomment-1906607795) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#33](https://github.com/OpenFreeEnergy/kartograf/pull/33#issuecomment-1906401539) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -9. 🗣 Commented on [#1440](https://github.com/spacetelescope/jwql/pull/1440#issuecomment-1906371568) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1906128964) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +1. 🗣 Commented on [#48](https://github.com/Remi-Gau/nilearn/pull/48#issuecomment-1907729870) in [Remi-Gau/nilearn](https://github.com/Remi-Gau/nilearn) +2. 🗣 Commented on [#4438](https://github.com/MDAnalysis/mdanalysis/pull/4438#issuecomment-1907699409) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#7](https://github.com/PyThaiNLP/PyThaiTTS/pull/7#issuecomment-1907460386) in [PyThaiNLP/PyThaiTTS](https://github.com/PyThaiNLP/PyThaiTTS) +4. 🗣 Commented on [#2731](https://github.com/metabrainz/listenbrainz-server/pull/2731#issuecomment-1907440632) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#4358](https://github.com/uwcirg/truenth-portal/pull/4358#issuecomment-1907107014) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +6. 🗣 Commented on [#1473](https://github.com/openSUSE/osc/pull/1473#issuecomment-1906810450) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#1049](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1049#issuecomment-1906611760) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#2730](https://github.com/metabrainz/listenbrainz-server/pull/2730#issuecomment-1906607795) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#33](https://github.com/OpenFreeEnergy/kartograf/pull/33#issuecomment-1906401539) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +10. 🗣 Commented on [#1440](https://github.com/spacetelescope/jwql/pull/1440#issuecomment-1906371568) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 1fe83dc9f09c729d6adc9dcd8ba1236557645346 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 10:18:23 +0000 Subject: [PATCH 1252/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b0e804c4..ee46dad4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#48](https://github.com/Remi-Gau/nilearn/pull/48#issuecomment-1907729870) in [Remi-Gau/nilearn](https://github.com/Remi-Gau/nilearn) -2. 🗣 Commented on [#4438](https://github.com/MDAnalysis/mdanalysis/pull/4438#issuecomment-1907699409) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#7](https://github.com/PyThaiNLP/PyThaiTTS/pull/7#issuecomment-1907460386) in [PyThaiNLP/PyThaiTTS](https://github.com/PyThaiNLP/PyThaiTTS) -4. 🗣 Commented on [#2731](https://github.com/metabrainz/listenbrainz-server/pull/2731#issuecomment-1907440632) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#4358](https://github.com/uwcirg/truenth-portal/pull/4358#issuecomment-1907107014) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -6. 🗣 Commented on [#1473](https://github.com/openSUSE/osc/pull/1473#issuecomment-1906810450) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#1049](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1049#issuecomment-1906611760) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#2730](https://github.com/metabrainz/listenbrainz-server/pull/2730#issuecomment-1906607795) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#33](https://github.com/OpenFreeEnergy/kartograf/pull/33#issuecomment-1906401539) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -10. 🗣 Commented on [#1440](https://github.com/spacetelescope/jwql/pull/1440#issuecomment-1906371568) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#4440](https://github.com/MDAnalysis/mdanalysis/pull/4440#issuecomment-1907824735) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#220](https://github.com/OpenSCAP/openscap-report/pull/220#issuecomment-1907808121) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +3. 🗣 Commented on [#48](https://github.com/Remi-Gau/nilearn/pull/48#issuecomment-1907729870) in [Remi-Gau/nilearn](https://github.com/Remi-Gau/nilearn) +4. 🗣 Commented on [#4438](https://github.com/MDAnalysis/mdanalysis/pull/4438#issuecomment-1907699409) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#7](https://github.com/PyThaiNLP/PyThaiTTS/pull/7#issuecomment-1907460386) in [PyThaiNLP/PyThaiTTS](https://github.com/PyThaiNLP/PyThaiTTS) +6. 🗣 Commented on [#2731](https://github.com/metabrainz/listenbrainz-server/pull/2731#issuecomment-1907440632) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#4358](https://github.com/uwcirg/truenth-portal/pull/4358#issuecomment-1907107014) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +8. 🗣 Commented on [#1473](https://github.com/openSUSE/osc/pull/1473#issuecomment-1906810450) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#1049](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1049#issuecomment-1906611760) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#2730](https://github.com/metabrainz/listenbrainz-server/pull/2730#issuecomment-1906607795) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 9fc863e43c7049aea58d2b86e56b41ab9068dd0b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 11:14:21 +0000 Subject: [PATCH 1253/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ee46dad4..8e6a1583 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4440](https://github.com/MDAnalysis/mdanalysis/pull/4440#issuecomment-1907824735) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#220](https://github.com/OpenSCAP/openscap-report/pull/220#issuecomment-1907808121) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -3. 🗣 Commented on [#48](https://github.com/Remi-Gau/nilearn/pull/48#issuecomment-1907729870) in [Remi-Gau/nilearn](https://github.com/Remi-Gau/nilearn) -4. 🗣 Commented on [#4438](https://github.com/MDAnalysis/mdanalysis/pull/4438#issuecomment-1907699409) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#7](https://github.com/PyThaiNLP/PyThaiTTS/pull/7#issuecomment-1907460386) in [PyThaiNLP/PyThaiTTS](https://github.com/PyThaiNLP/PyThaiTTS) -6. 🗣 Commented on [#2731](https://github.com/metabrainz/listenbrainz-server/pull/2731#issuecomment-1907440632) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#4358](https://github.com/uwcirg/truenth-portal/pull/4358#issuecomment-1907107014) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -8. 🗣 Commented on [#1473](https://github.com/openSUSE/osc/pull/1473#issuecomment-1906810450) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#1049](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1049#issuecomment-1906611760) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#2730](https://github.com/metabrainz/listenbrainz-server/pull/2730#issuecomment-1906607795) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1287](https://github.com/rpm-software-management/mock/pull/1287#issuecomment-1907880106) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +2. 🗣 Commented on [#4440](https://github.com/MDAnalysis/mdanalysis/pull/4440#issuecomment-1907824735) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#220](https://github.com/OpenSCAP/openscap-report/pull/220#issuecomment-1907808121) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +4. 🗣 Commented on [#48](https://github.com/Remi-Gau/nilearn/pull/48#issuecomment-1907729870) in [Remi-Gau/nilearn](https://github.com/Remi-Gau/nilearn) +5. 🗣 Commented on [#4438](https://github.com/MDAnalysis/mdanalysis/pull/4438#issuecomment-1907699409) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#7](https://github.com/PyThaiNLP/PyThaiTTS/pull/7#issuecomment-1907460386) in [PyThaiNLP/PyThaiTTS](https://github.com/PyThaiNLP/PyThaiTTS) +7. 🗣 Commented on [#2731](https://github.com/metabrainz/listenbrainz-server/pull/2731#issuecomment-1907440632) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#4358](https://github.com/uwcirg/truenth-portal/pull/4358#issuecomment-1907107014) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +9. 🗣 Commented on [#1473](https://github.com/openSUSE/osc/pull/1473#issuecomment-1906810450) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#1049](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1049#issuecomment-1906611760) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From e5a28c4c93f125f9deffffc47027e5639da46b65 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 13:20:23 +0000 Subject: [PATCH 1254/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8e6a1583..081a4902 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1287](https://github.com/rpm-software-management/mock/pull/1287#issuecomment-1907880106) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -2. 🗣 Commented on [#4440](https://github.com/MDAnalysis/mdanalysis/pull/4440#issuecomment-1907824735) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#220](https://github.com/OpenSCAP/openscap-report/pull/220#issuecomment-1907808121) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -4. 🗣 Commented on [#48](https://github.com/Remi-Gau/nilearn/pull/48#issuecomment-1907729870) in [Remi-Gau/nilearn](https://github.com/Remi-Gau/nilearn) -5. 🗣 Commented on [#4438](https://github.com/MDAnalysis/mdanalysis/pull/4438#issuecomment-1907699409) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#7](https://github.com/PyThaiNLP/PyThaiTTS/pull/7#issuecomment-1907460386) in [PyThaiNLP/PyThaiTTS](https://github.com/PyThaiNLP/PyThaiTTS) -7. 🗣 Commented on [#2731](https://github.com/metabrainz/listenbrainz-server/pull/2731#issuecomment-1907440632) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#4358](https://github.com/uwcirg/truenth-portal/pull/4358#issuecomment-1907107014) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -9. 🗣 Commented on [#1473](https://github.com/openSUSE/osc/pull/1473#issuecomment-1906810450) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#1049](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1049#issuecomment-1906611760) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#5](https://github.com/avaframe/AmaConnector/pull/5#issuecomment-1908106109) in [avaframe/AmaConnector](https://github.com/avaframe/AmaConnector) +2. 🗣 Commented on [#1287](https://github.com/rpm-software-management/mock/pull/1287#issuecomment-1907880106) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +3. 🗣 Commented on [#4440](https://github.com/MDAnalysis/mdanalysis/pull/4440#issuecomment-1907824735) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#220](https://github.com/OpenSCAP/openscap-report/pull/220#issuecomment-1907808121) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +5. 🗣 Commented on [#48](https://github.com/Remi-Gau/nilearn/pull/48#issuecomment-1907729870) in [Remi-Gau/nilearn](https://github.com/Remi-Gau/nilearn) +6. 🗣 Commented on [#4438](https://github.com/MDAnalysis/mdanalysis/pull/4438#issuecomment-1907699409) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#7](https://github.com/PyThaiNLP/PyThaiTTS/pull/7#issuecomment-1907460386) in [PyThaiNLP/PyThaiTTS](https://github.com/PyThaiNLP/PyThaiTTS) +8. 🗣 Commented on [#2731](https://github.com/metabrainz/listenbrainz-server/pull/2731#issuecomment-1907440632) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#4358](https://github.com/uwcirg/truenth-portal/pull/4358#issuecomment-1907107014) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +10. 🗣 Commented on [#1473](https://github.com/openSUSE/osc/pull/1473#issuecomment-1906810450) in [openSUSE/osc](https://github.com/openSUSE/osc) From aebce81cdd57caf19052149aa5a9d30ccb9fda5f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 15:18:08 +0000 Subject: [PATCH 1255/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 081a4902..1dd1c502 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5](https://github.com/avaframe/AmaConnector/pull/5#issuecomment-1908106109) in [avaframe/AmaConnector](https://github.com/avaframe/AmaConnector) -2. 🗣 Commented on [#1287](https://github.com/rpm-software-management/mock/pull/1287#issuecomment-1907880106) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -3. 🗣 Commented on [#4440](https://github.com/MDAnalysis/mdanalysis/pull/4440#issuecomment-1907824735) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#220](https://github.com/OpenSCAP/openscap-report/pull/220#issuecomment-1907808121) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -5. 🗣 Commented on [#48](https://github.com/Remi-Gau/nilearn/pull/48#issuecomment-1907729870) in [Remi-Gau/nilearn](https://github.com/Remi-Gau/nilearn) -6. 🗣 Commented on [#4438](https://github.com/MDAnalysis/mdanalysis/pull/4438#issuecomment-1907699409) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#7](https://github.com/PyThaiNLP/PyThaiTTS/pull/7#issuecomment-1907460386) in [PyThaiNLP/PyThaiTTS](https://github.com/PyThaiNLP/PyThaiTTS) -8. 🗣 Commented on [#2731](https://github.com/metabrainz/listenbrainz-server/pull/2731#issuecomment-1907440632) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#4358](https://github.com/uwcirg/truenth-portal/pull/4358#issuecomment-1907107014) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -10. 🗣 Commented on [#1473](https://github.com/openSUSE/osc/pull/1473#issuecomment-1906810450) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#1442](https://github.com/spacetelescope/jwql/pull/1442#issuecomment-1908333784) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#5](https://github.com/avaframe/AmaConnector/pull/5#issuecomment-1908106109) in [avaframe/AmaConnector](https://github.com/avaframe/AmaConnector) +3. 🗣 Commented on [#1287](https://github.com/rpm-software-management/mock/pull/1287#issuecomment-1907880106) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +4. 🗣 Commented on [#4440](https://github.com/MDAnalysis/mdanalysis/pull/4440#issuecomment-1907824735) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#220](https://github.com/OpenSCAP/openscap-report/pull/220#issuecomment-1907808121) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +6. 🗣 Commented on [#48](https://github.com/Remi-Gau/nilearn/pull/48#issuecomment-1907729870) in [Remi-Gau/nilearn](https://github.com/Remi-Gau/nilearn) +7. 🗣 Commented on [#4438](https://github.com/MDAnalysis/mdanalysis/pull/4438#issuecomment-1907699409) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#7](https://github.com/PyThaiNLP/PyThaiTTS/pull/7#issuecomment-1907460386) in [PyThaiNLP/PyThaiTTS](https://github.com/PyThaiNLP/PyThaiTTS) +9. 🗣 Commented on [#2731](https://github.com/metabrainz/listenbrainz-server/pull/2731#issuecomment-1907440632) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#4358](https://github.com/uwcirg/truenth-portal/pull/4358#issuecomment-1907107014) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) From d64ef2284c8afb9b9e9101babcb767ebe45f2f67 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 15:37:16 +0000 Subject: [PATCH 1256/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1dd1c502..bcec05b7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1442](https://github.com/spacetelescope/jwql/pull/1442#issuecomment-1908333784) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#5](https://github.com/avaframe/AmaConnector/pull/5#issuecomment-1908106109) in [avaframe/AmaConnector](https://github.com/avaframe/AmaConnector) -3. 🗣 Commented on [#1287](https://github.com/rpm-software-management/mock/pull/1287#issuecomment-1907880106) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -4. 🗣 Commented on [#4440](https://github.com/MDAnalysis/mdanalysis/pull/4440#issuecomment-1907824735) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#220](https://github.com/OpenSCAP/openscap-report/pull/220#issuecomment-1907808121) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -6. 🗣 Commented on [#48](https://github.com/Remi-Gau/nilearn/pull/48#issuecomment-1907729870) in [Remi-Gau/nilearn](https://github.com/Remi-Gau/nilearn) -7. 🗣 Commented on [#4438](https://github.com/MDAnalysis/mdanalysis/pull/4438#issuecomment-1907699409) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#7](https://github.com/PyThaiNLP/PyThaiTTS/pull/7#issuecomment-1907460386) in [PyThaiNLP/PyThaiTTS](https://github.com/PyThaiNLP/PyThaiTTS) -9. 🗣 Commented on [#2731](https://github.com/metabrainz/listenbrainz-server/pull/2731#issuecomment-1907440632) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#4358](https://github.com/uwcirg/truenth-portal/pull/4358#issuecomment-1907107014) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +1. 🗣 Commented on [#501](https://github.com/zarr-developers/numcodecs/pull/501#issuecomment-1908341386) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +2. 🗣 Commented on [#1442](https://github.com/spacetelescope/jwql/pull/1442#issuecomment-1908333784) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#5](https://github.com/avaframe/AmaConnector/pull/5#issuecomment-1908106109) in [avaframe/AmaConnector](https://github.com/avaframe/AmaConnector) +4. 🗣 Commented on [#1287](https://github.com/rpm-software-management/mock/pull/1287#issuecomment-1907880106) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +5. 🗣 Commented on [#4440](https://github.com/MDAnalysis/mdanalysis/pull/4440#issuecomment-1907824735) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#220](https://github.com/OpenSCAP/openscap-report/pull/220#issuecomment-1907808121) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +7. 🗣 Commented on [#48](https://github.com/Remi-Gau/nilearn/pull/48#issuecomment-1907729870) in [Remi-Gau/nilearn](https://github.com/Remi-Gau/nilearn) +8. 🗣 Commented on [#4438](https://github.com/MDAnalysis/mdanalysis/pull/4438#issuecomment-1907699409) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#7](https://github.com/PyThaiNLP/PyThaiTTS/pull/7#issuecomment-1907460386) in [PyThaiNLP/PyThaiTTS](https://github.com/PyThaiNLP/PyThaiTTS) +10. 🗣 Commented on [#2731](https://github.com/metabrainz/listenbrainz-server/pull/2731#issuecomment-1907440632) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From a33233a8ded5d55306338448f99bcb002e71f78e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 16:41:30 +0000 Subject: [PATCH 1257/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bcec05b7..f61b72d3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#501](https://github.com/zarr-developers/numcodecs/pull/501#issuecomment-1908341386) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -2. 🗣 Commented on [#1442](https://github.com/spacetelescope/jwql/pull/1442#issuecomment-1908333784) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#5](https://github.com/avaframe/AmaConnector/pull/5#issuecomment-1908106109) in [avaframe/AmaConnector](https://github.com/avaframe/AmaConnector) -4. 🗣 Commented on [#1287](https://github.com/rpm-software-management/mock/pull/1287#issuecomment-1907880106) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -5. 🗣 Commented on [#4440](https://github.com/MDAnalysis/mdanalysis/pull/4440#issuecomment-1907824735) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#220](https://github.com/OpenSCAP/openscap-report/pull/220#issuecomment-1907808121) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -7. 🗣 Commented on [#48](https://github.com/Remi-Gau/nilearn/pull/48#issuecomment-1907729870) in [Remi-Gau/nilearn](https://github.com/Remi-Gau/nilearn) -8. 🗣 Commented on [#4438](https://github.com/MDAnalysis/mdanalysis/pull/4438#issuecomment-1907699409) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#7](https://github.com/PyThaiNLP/PyThaiTTS/pull/7#issuecomment-1907460386) in [PyThaiNLP/PyThaiTTS](https://github.com/PyThaiNLP/PyThaiTTS) -10. 🗣 Commented on [#2731](https://github.com/metabrainz/listenbrainz-server/pull/2731#issuecomment-1907440632) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1653](https://github.com/HEXRD/hexrdgui/pull/1653#issuecomment-1908494335) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +2. 🗣 Commented on [#1444](https://github.com/spacetelescope/jwql/pull/1444#issuecomment-1908479077) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#501](https://github.com/zarr-developers/numcodecs/pull/501#issuecomment-1908341386) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +4. 🗣 Commented on [#1442](https://github.com/spacetelescope/jwql/pull/1442#issuecomment-1908333784) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#5](https://github.com/avaframe/AmaConnector/pull/5#issuecomment-1908106109) in [avaframe/AmaConnector](https://github.com/avaframe/AmaConnector) +6. 🗣 Commented on [#1287](https://github.com/rpm-software-management/mock/pull/1287#issuecomment-1907880106) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +7. 🗣 Commented on [#4440](https://github.com/MDAnalysis/mdanalysis/pull/4440#issuecomment-1907824735) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#220](https://github.com/OpenSCAP/openscap-report/pull/220#issuecomment-1907808121) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +9. 🗣 Commented on [#48](https://github.com/Remi-Gau/nilearn/pull/48#issuecomment-1907729870) in [Remi-Gau/nilearn](https://github.com/Remi-Gau/nilearn) +10. 🗣 Commented on [#4438](https://github.com/MDAnalysis/mdanalysis/pull/4438#issuecomment-1907699409) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From fb22020a1c2d61b3919dd1b88c0d814fa87349ae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 17:15:20 +0000 Subject: [PATCH 1258/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f61b72d3..ffd7e42c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1653](https://github.com/HEXRD/hexrdgui/pull/1653#issuecomment-1908494335) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -2. 🗣 Commented on [#1444](https://github.com/spacetelescope/jwql/pull/1444#issuecomment-1908479077) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#501](https://github.com/zarr-developers/numcodecs/pull/501#issuecomment-1908341386) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -4. 🗣 Commented on [#1442](https://github.com/spacetelescope/jwql/pull/1442#issuecomment-1908333784) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#5](https://github.com/avaframe/AmaConnector/pull/5#issuecomment-1908106109) in [avaframe/AmaConnector](https://github.com/avaframe/AmaConnector) -6. 🗣 Commented on [#1287](https://github.com/rpm-software-management/mock/pull/1287#issuecomment-1907880106) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -7. 🗣 Commented on [#4440](https://github.com/MDAnalysis/mdanalysis/pull/4440#issuecomment-1907824735) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#220](https://github.com/OpenSCAP/openscap-report/pull/220#issuecomment-1907808121) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -9. 🗣 Commented on [#48](https://github.com/Remi-Gau/nilearn/pull/48#issuecomment-1907729870) in [Remi-Gau/nilearn](https://github.com/Remi-Gau/nilearn) -10. 🗣 Commented on [#4438](https://github.com/MDAnalysis/mdanalysis/pull/4438#issuecomment-1907699409) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#1445](https://github.com/spacetelescope/jwql/pull/1445#issuecomment-1908522566) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#1653](https://github.com/HEXRD/hexrdgui/pull/1653#issuecomment-1908494335) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +3. 🗣 Commented on [#1444](https://github.com/spacetelescope/jwql/pull/1444#issuecomment-1908479077) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#501](https://github.com/zarr-developers/numcodecs/pull/501#issuecomment-1908341386) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +5. 🗣 Commented on [#1442](https://github.com/spacetelescope/jwql/pull/1442#issuecomment-1908333784) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#5](https://github.com/avaframe/AmaConnector/pull/5#issuecomment-1908106109) in [avaframe/AmaConnector](https://github.com/avaframe/AmaConnector) +7. 🗣 Commented on [#1287](https://github.com/rpm-software-management/mock/pull/1287#issuecomment-1907880106) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +8. 🗣 Commented on [#4440](https://github.com/MDAnalysis/mdanalysis/pull/4440#issuecomment-1907824735) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#220](https://github.com/OpenSCAP/openscap-report/pull/220#issuecomment-1907808121) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +10. 🗣 Commented on [#48](https://github.com/Remi-Gau/nilearn/pull/48#issuecomment-1907729870) in [Remi-Gau/nilearn](https://github.com/Remi-Gau/nilearn) From c067f07eb3d696becaac56088a5be6e2e47ca83c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 17:37:13 +0000 Subject: [PATCH 1259/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ffd7e42c..be403930 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1445](https://github.com/spacetelescope/jwql/pull/1445#issuecomment-1908522566) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#1653](https://github.com/HEXRD/hexrdgui/pull/1653#issuecomment-1908494335) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -3. 🗣 Commented on [#1444](https://github.com/spacetelescope/jwql/pull/1444#issuecomment-1908479077) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#501](https://github.com/zarr-developers/numcodecs/pull/501#issuecomment-1908341386) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -5. 🗣 Commented on [#1442](https://github.com/spacetelescope/jwql/pull/1442#issuecomment-1908333784) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#5](https://github.com/avaframe/AmaConnector/pull/5#issuecomment-1908106109) in [avaframe/AmaConnector](https://github.com/avaframe/AmaConnector) -7. 🗣 Commented on [#1287](https://github.com/rpm-software-management/mock/pull/1287#issuecomment-1907880106) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -8. 🗣 Commented on [#4440](https://github.com/MDAnalysis/mdanalysis/pull/4440#issuecomment-1907824735) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#220](https://github.com/OpenSCAP/openscap-report/pull/220#issuecomment-1907808121) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -10. 🗣 Commented on [#48](https://github.com/Remi-Gau/nilearn/pull/48#issuecomment-1907729870) in [Remi-Gau/nilearn](https://github.com/Remi-Gau/nilearn) +1. 🗣 Commented on [#1638](https://github.com/zarr-developers/zarr-python/pull/1638#issuecomment-1908581873) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +2. 🗣 Commented on [#1445](https://github.com/spacetelescope/jwql/pull/1445#issuecomment-1908522566) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#1653](https://github.com/HEXRD/hexrdgui/pull/1653#issuecomment-1908494335) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +4. 🗣 Commented on [#1444](https://github.com/spacetelescope/jwql/pull/1444#issuecomment-1908479077) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#501](https://github.com/zarr-developers/numcodecs/pull/501#issuecomment-1908341386) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +6. 🗣 Commented on [#1442](https://github.com/spacetelescope/jwql/pull/1442#issuecomment-1908333784) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#5](https://github.com/avaframe/AmaConnector/pull/5#issuecomment-1908106109) in [avaframe/AmaConnector](https://github.com/avaframe/AmaConnector) +8. 🗣 Commented on [#1287](https://github.com/rpm-software-management/mock/pull/1287#issuecomment-1907880106) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +9. 🗣 Commented on [#4440](https://github.com/MDAnalysis/mdanalysis/pull/4440#issuecomment-1907824735) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#220](https://github.com/OpenSCAP/openscap-report/pull/220#issuecomment-1907808121) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) From 8c5f1d67cb50ed355f5d7212775cf88519ec63e0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 19:14:09 +0000 Subject: [PATCH 1260/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index be403930..9b1b193f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1638](https://github.com/zarr-developers/zarr-python/pull/1638#issuecomment-1908581873) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -2. 🗣 Commented on [#1445](https://github.com/spacetelescope/jwql/pull/1445#issuecomment-1908522566) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#1653](https://github.com/HEXRD/hexrdgui/pull/1653#issuecomment-1908494335) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -4. 🗣 Commented on [#1444](https://github.com/spacetelescope/jwql/pull/1444#issuecomment-1908479077) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#501](https://github.com/zarr-developers/numcodecs/pull/501#issuecomment-1908341386) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -6. 🗣 Commented on [#1442](https://github.com/spacetelescope/jwql/pull/1442#issuecomment-1908333784) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#5](https://github.com/avaframe/AmaConnector/pull/5#issuecomment-1908106109) in [avaframe/AmaConnector](https://github.com/avaframe/AmaConnector) -8. 🗣 Commented on [#1287](https://github.com/rpm-software-management/mock/pull/1287#issuecomment-1907880106) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -9. 🗣 Commented on [#4440](https://github.com/MDAnalysis/mdanalysis/pull/4440#issuecomment-1907824735) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#220](https://github.com/OpenSCAP/openscap-report/pull/220#issuecomment-1907808121) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +1. 🗣 Commented on [#515](https://github.com/UIUCLibrary/Speedwagon/pull/515#issuecomment-1908753739) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +2. 🗣 Commented on [#1638](https://github.com/zarr-developers/zarr-python/pull/1638#issuecomment-1908581873) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +3. 🗣 Commented on [#1445](https://github.com/spacetelescope/jwql/pull/1445#issuecomment-1908522566) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#1653](https://github.com/HEXRD/hexrdgui/pull/1653#issuecomment-1908494335) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +5. 🗣 Commented on [#1444](https://github.com/spacetelescope/jwql/pull/1444#issuecomment-1908479077) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#501](https://github.com/zarr-developers/numcodecs/pull/501#issuecomment-1908341386) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +7. 🗣 Commented on [#1442](https://github.com/spacetelescope/jwql/pull/1442#issuecomment-1908333784) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#5](https://github.com/avaframe/AmaConnector/pull/5#issuecomment-1908106109) in [avaframe/AmaConnector](https://github.com/avaframe/AmaConnector) +9. 🗣 Commented on [#1287](https://github.com/rpm-software-management/mock/pull/1287#issuecomment-1907880106) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +10. 🗣 Commented on [#4440](https://github.com/MDAnalysis/mdanalysis/pull/4440#issuecomment-1907824735) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From a889f7d5fc52306b7efbbe72c82cc023bec56b53 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:18:16 +0000 Subject: [PATCH 1261/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9b1b193f..20f47459 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#515](https://github.com/UIUCLibrary/Speedwagon/pull/515#issuecomment-1908753739) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -2. 🗣 Commented on [#1638](https://github.com/zarr-developers/zarr-python/pull/1638#issuecomment-1908581873) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -3. 🗣 Commented on [#1445](https://github.com/spacetelescope/jwql/pull/1445#issuecomment-1908522566) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#1653](https://github.com/HEXRD/hexrdgui/pull/1653#issuecomment-1908494335) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -5. 🗣 Commented on [#1444](https://github.com/spacetelescope/jwql/pull/1444#issuecomment-1908479077) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#501](https://github.com/zarr-developers/numcodecs/pull/501#issuecomment-1908341386) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -7. 🗣 Commented on [#1442](https://github.com/spacetelescope/jwql/pull/1442#issuecomment-1908333784) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#5](https://github.com/avaframe/AmaConnector/pull/5#issuecomment-1908106109) in [avaframe/AmaConnector](https://github.com/avaframe/AmaConnector) -9. 🗣 Commented on [#1287](https://github.com/rpm-software-management/mock/pull/1287#issuecomment-1907880106) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -10. 🗣 Commented on [#4440](https://github.com/MDAnalysis/mdanalysis/pull/4440#issuecomment-1907824735) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#885](https://github.com/scilus/scilpy/pull/885#issuecomment-1908851367) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#246](https://github.com/CartoonFan/lutris/pull/246#issuecomment-1908829093) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#515](https://github.com/UIUCLibrary/Speedwagon/pull/515#issuecomment-1908753739) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +4. 🗣 Commented on [#1638](https://github.com/zarr-developers/zarr-python/pull/1638#issuecomment-1908581873) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +5. 🗣 Commented on [#1445](https://github.com/spacetelescope/jwql/pull/1445#issuecomment-1908522566) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#1653](https://github.com/HEXRD/hexrdgui/pull/1653#issuecomment-1908494335) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +7. 🗣 Commented on [#1444](https://github.com/spacetelescope/jwql/pull/1444#issuecomment-1908479077) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#501](https://github.com/zarr-developers/numcodecs/pull/501#issuecomment-1908341386) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +9. 🗣 Commented on [#1442](https://github.com/spacetelescope/jwql/pull/1442#issuecomment-1908333784) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#5](https://github.com/avaframe/AmaConnector/pull/5#issuecomment-1908106109) in [avaframe/AmaConnector](https://github.com/avaframe/AmaConnector) From 54910159f0693378662bb38cd68764b998e10b2a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 21:37:12 +0000 Subject: [PATCH 1262/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 20f47459..1c157b11 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#885](https://github.com/scilus/scilpy/pull/885#issuecomment-1908851367) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#246](https://github.com/CartoonFan/lutris/pull/246#issuecomment-1908829093) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#515](https://github.com/UIUCLibrary/Speedwagon/pull/515#issuecomment-1908753739) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -4. 🗣 Commented on [#1638](https://github.com/zarr-developers/zarr-python/pull/1638#issuecomment-1908581873) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -5. 🗣 Commented on [#1445](https://github.com/spacetelescope/jwql/pull/1445#issuecomment-1908522566) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#1653](https://github.com/HEXRD/hexrdgui/pull/1653#issuecomment-1908494335) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -7. 🗣 Commented on [#1444](https://github.com/spacetelescope/jwql/pull/1444#issuecomment-1908479077) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#501](https://github.com/zarr-developers/numcodecs/pull/501#issuecomment-1908341386) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -9. 🗣 Commented on [#1442](https://github.com/spacetelescope/jwql/pull/1442#issuecomment-1908333784) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#5](https://github.com/avaframe/AmaConnector/pull/5#issuecomment-1908106109) in [avaframe/AmaConnector](https://github.com/avaframe/AmaConnector) +1. 🗣 Commented on [#1447](https://github.com/spacetelescope/jwql/pull/1447#issuecomment-1908955702) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#1446](https://github.com/spacetelescope/jwql/pull/1446#issuecomment-1908931229) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#885](https://github.com/scilus/scilpy/pull/885#issuecomment-1908851367) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#246](https://github.com/CartoonFan/lutris/pull/246#issuecomment-1908829093) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#515](https://github.com/UIUCLibrary/Speedwagon/pull/515#issuecomment-1908753739) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +6. 🗣 Commented on [#1638](https://github.com/zarr-developers/zarr-python/pull/1638#issuecomment-1908581873) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +7. 🗣 Commented on [#1445](https://github.com/spacetelescope/jwql/pull/1445#issuecomment-1908522566) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#1653](https://github.com/HEXRD/hexrdgui/pull/1653#issuecomment-1908494335) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +9. 🗣 Commented on [#1444](https://github.com/spacetelescope/jwql/pull/1444#issuecomment-1908479077) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#501](https://github.com/zarr-developers/numcodecs/pull/501#issuecomment-1908341386) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) From cdf3023bfe678273769d65c7d017aa3306aaa9ba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 22:15:44 +0000 Subject: [PATCH 1263/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1c157b11..83ae0fa6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1447](https://github.com/spacetelescope/jwql/pull/1447#issuecomment-1908955702) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#1446](https://github.com/spacetelescope/jwql/pull/1446#issuecomment-1908931229) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#885](https://github.com/scilus/scilpy/pull/885#issuecomment-1908851367) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#246](https://github.com/CartoonFan/lutris/pull/246#issuecomment-1908829093) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#515](https://github.com/UIUCLibrary/Speedwagon/pull/515#issuecomment-1908753739) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -6. 🗣 Commented on [#1638](https://github.com/zarr-developers/zarr-python/pull/1638#issuecomment-1908581873) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -7. 🗣 Commented on [#1445](https://github.com/spacetelescope/jwql/pull/1445#issuecomment-1908522566) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#1653](https://github.com/HEXRD/hexrdgui/pull/1653#issuecomment-1908494335) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -9. 🗣 Commented on [#1444](https://github.com/spacetelescope/jwql/pull/1444#issuecomment-1908479077) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#501](https://github.com/zarr-developers/numcodecs/pull/501#issuecomment-1908341386) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +1. 🗣 Commented on [#1051](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1051#issuecomment-1908992621) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#1447](https://github.com/spacetelescope/jwql/pull/1447#issuecomment-1908955702) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#1446](https://github.com/spacetelescope/jwql/pull/1446#issuecomment-1908931229) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#885](https://github.com/scilus/scilpy/pull/885#issuecomment-1908851367) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#246](https://github.com/CartoonFan/lutris/pull/246#issuecomment-1908829093) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#515](https://github.com/UIUCLibrary/Speedwagon/pull/515#issuecomment-1908753739) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +7. 🗣 Commented on [#1638](https://github.com/zarr-developers/zarr-python/pull/1638#issuecomment-1908581873) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +8. 🗣 Commented on [#1445](https://github.com/spacetelescope/jwql/pull/1445#issuecomment-1908522566) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#1653](https://github.com/HEXRD/hexrdgui/pull/1653#issuecomment-1908494335) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +10. 🗣 Commented on [#1444](https://github.com/spacetelescope/jwql/pull/1444#issuecomment-1908479077) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 5a62ecb9fa36760860a516a2cf09ce9a3ccbe01c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 02:18:52 +0000 Subject: [PATCH 1264/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 83ae0fa6..634c027f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1051](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1051#issuecomment-1908992621) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#1447](https://github.com/spacetelescope/jwql/pull/1447#issuecomment-1908955702) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#1446](https://github.com/spacetelescope/jwql/pull/1446#issuecomment-1908931229) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#885](https://github.com/scilus/scilpy/pull/885#issuecomment-1908851367) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#246](https://github.com/CartoonFan/lutris/pull/246#issuecomment-1908829093) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#515](https://github.com/UIUCLibrary/Speedwagon/pull/515#issuecomment-1908753739) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -7. 🗣 Commented on [#1638](https://github.com/zarr-developers/zarr-python/pull/1638#issuecomment-1908581873) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -8. 🗣 Commented on [#1445](https://github.com/spacetelescope/jwql/pull/1445#issuecomment-1908522566) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#1653](https://github.com/HEXRD/hexrdgui/pull/1653#issuecomment-1908494335) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -10. 🗣 Commented on [#1444](https://github.com/spacetelescope/jwql/pull/1444#issuecomment-1908479077) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#5423](https://github.com/rhinstaller/anaconda/pull/5423#issuecomment-1909195104) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#1051](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1051#issuecomment-1908992621) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#1447](https://github.com/spacetelescope/jwql/pull/1447#issuecomment-1908955702) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#1446](https://github.com/spacetelescope/jwql/pull/1446#issuecomment-1908931229) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#885](https://github.com/scilus/scilpy/pull/885#issuecomment-1908851367) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#246](https://github.com/CartoonFan/lutris/pull/246#issuecomment-1908829093) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#515](https://github.com/UIUCLibrary/Speedwagon/pull/515#issuecomment-1908753739) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +8. 🗣 Commented on [#1638](https://github.com/zarr-developers/zarr-python/pull/1638#issuecomment-1908581873) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +9. 🗣 Commented on [#1445](https://github.com/spacetelescope/jwql/pull/1445#issuecomment-1908522566) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#1653](https://github.com/HEXRD/hexrdgui/pull/1653#issuecomment-1908494335) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) From 60a845a91df841d32abbb57a2058e9b32a375f9b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 11:37:10 +0000 Subject: [PATCH 1265/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 634c027f..9a466c52 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5423](https://github.com/rhinstaller/anaconda/pull/5423#issuecomment-1909195104) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#1051](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1051#issuecomment-1908992621) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#1447](https://github.com/spacetelescope/jwql/pull/1447#issuecomment-1908955702) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#1446](https://github.com/spacetelescope/jwql/pull/1446#issuecomment-1908931229) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#885](https://github.com/scilus/scilpy/pull/885#issuecomment-1908851367) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#246](https://github.com/CartoonFan/lutris/pull/246#issuecomment-1908829093) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#515](https://github.com/UIUCLibrary/Speedwagon/pull/515#issuecomment-1908753739) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -8. 🗣 Commented on [#1638](https://github.com/zarr-developers/zarr-python/pull/1638#issuecomment-1908581873) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -9. 🗣 Commented on [#1445](https://github.com/spacetelescope/jwql/pull/1445#issuecomment-1908522566) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#1653](https://github.com/HEXRD/hexrdgui/pull/1653#issuecomment-1908494335) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +1. 🗣 Commented on [#3851](https://github.com/privacyidea/privacyidea/pull/3851#issuecomment-1909992229) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#5423](https://github.com/rhinstaller/anaconda/pull/5423#issuecomment-1909195104) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#1051](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1051#issuecomment-1908992621) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#1447](https://github.com/spacetelescope/jwql/pull/1447#issuecomment-1908955702) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#1446](https://github.com/spacetelescope/jwql/pull/1446#issuecomment-1908931229) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#885](https://github.com/scilus/scilpy/pull/885#issuecomment-1908851367) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#246](https://github.com/CartoonFan/lutris/pull/246#issuecomment-1908829093) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#515](https://github.com/UIUCLibrary/Speedwagon/pull/515#issuecomment-1908753739) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +9. 🗣 Commented on [#1638](https://github.com/zarr-developers/zarr-python/pull/1638#issuecomment-1908581873) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +10. 🗣 Commented on [#1445](https://github.com/spacetelescope/jwql/pull/1445#issuecomment-1908522566) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 76c4b5ee5e0437c8abbd2b11e0a24718a85df272 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 12:32:51 +0000 Subject: [PATCH 1266/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9a466c52..8f10cbae 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3851](https://github.com/privacyidea/privacyidea/pull/3851#issuecomment-1909992229) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#5423](https://github.com/rhinstaller/anaconda/pull/5423#issuecomment-1909195104) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#1051](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1051#issuecomment-1908992621) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#1447](https://github.com/spacetelescope/jwql/pull/1447#issuecomment-1908955702) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#1446](https://github.com/spacetelescope/jwql/pull/1446#issuecomment-1908931229) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#885](https://github.com/scilus/scilpy/pull/885#issuecomment-1908851367) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#246](https://github.com/CartoonFan/lutris/pull/246#issuecomment-1908829093) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#515](https://github.com/UIUCLibrary/Speedwagon/pull/515#issuecomment-1908753739) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -9. 🗣 Commented on [#1638](https://github.com/zarr-developers/zarr-python/pull/1638#issuecomment-1908581873) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -10. 🗣 Commented on [#1445](https://github.com/spacetelescope/jwql/pull/1445#issuecomment-1908522566) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#5424](https://github.com/rhinstaller/anaconda/pull/5424#issuecomment-1910011097) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#3851](https://github.com/privacyidea/privacyidea/pull/3851#issuecomment-1909992229) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#5423](https://github.com/rhinstaller/anaconda/pull/5423#issuecomment-1909195104) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#1051](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1051#issuecomment-1908992621) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1447](https://github.com/spacetelescope/jwql/pull/1447#issuecomment-1908955702) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#1446](https://github.com/spacetelescope/jwql/pull/1446#issuecomment-1908931229) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#885](https://github.com/scilus/scilpy/pull/885#issuecomment-1908851367) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#246](https://github.com/CartoonFan/lutris/pull/246#issuecomment-1908829093) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#515](https://github.com/UIUCLibrary/Speedwagon/pull/515#issuecomment-1908753739) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +10. 🗣 Commented on [#1638](https://github.com/zarr-developers/zarr-python/pull/1638#issuecomment-1908581873) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) From 2e13e56ed29e78942d16cf4243c63f22f99b86de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 15:18:01 +0000 Subject: [PATCH 1267/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8f10cbae..e9825356 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5424](https://github.com/rhinstaller/anaconda/pull/5424#issuecomment-1910011097) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#3851](https://github.com/privacyidea/privacyidea/pull/3851#issuecomment-1909992229) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#5423](https://github.com/rhinstaller/anaconda/pull/5423#issuecomment-1909195104) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#1051](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1051#issuecomment-1908992621) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1447](https://github.com/spacetelescope/jwql/pull/1447#issuecomment-1908955702) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#1446](https://github.com/spacetelescope/jwql/pull/1446#issuecomment-1908931229) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#885](https://github.com/scilus/scilpy/pull/885#issuecomment-1908851367) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#246](https://github.com/CartoonFan/lutris/pull/246#issuecomment-1908829093) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#515](https://github.com/UIUCLibrary/Speedwagon/pull/515#issuecomment-1908753739) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -10. 🗣 Commented on [#1638](https://github.com/zarr-developers/zarr-python/pull/1638#issuecomment-1908581873) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +1. 🗣 Commented on [#616](https://github.com/NeuralEnsemble/elephant/pull/616#issuecomment-1910397767) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +2. 🗣 Commented on [#5424](https://github.com/rhinstaller/anaconda/pull/5424#issuecomment-1910011097) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#3851](https://github.com/privacyidea/privacyidea/pull/3851#issuecomment-1909992229) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +4. 🗣 Commented on [#5423](https://github.com/rhinstaller/anaconda/pull/5423#issuecomment-1909195104) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#1051](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1051#issuecomment-1908992621) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#1447](https://github.com/spacetelescope/jwql/pull/1447#issuecomment-1908955702) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#1446](https://github.com/spacetelescope/jwql/pull/1446#issuecomment-1908931229) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#885](https://github.com/scilus/scilpy/pull/885#issuecomment-1908851367) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#246](https://github.com/CartoonFan/lutris/pull/246#issuecomment-1908829093) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#515](https://github.com/UIUCLibrary/Speedwagon/pull/515#issuecomment-1908753739) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) From 6993c7fc965fe4147d0a028ddcf361acbea79d3c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 15:37:28 +0000 Subject: [PATCH 1268/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e9825356..95b89bed 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#616](https://github.com/NeuralEnsemble/elephant/pull/616#issuecomment-1910397767) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -2. 🗣 Commented on [#5424](https://github.com/rhinstaller/anaconda/pull/5424#issuecomment-1910011097) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#3851](https://github.com/privacyidea/privacyidea/pull/3851#issuecomment-1909992229) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -4. 🗣 Commented on [#5423](https://github.com/rhinstaller/anaconda/pull/5423#issuecomment-1909195104) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#1051](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1051#issuecomment-1908992621) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#1447](https://github.com/spacetelescope/jwql/pull/1447#issuecomment-1908955702) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#1446](https://github.com/spacetelescope/jwql/pull/1446#issuecomment-1908931229) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#885](https://github.com/scilus/scilpy/pull/885#issuecomment-1908851367) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#246](https://github.com/CartoonFan/lutris/pull/246#issuecomment-1908829093) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#515](https://github.com/UIUCLibrary/Speedwagon/pull/515#issuecomment-1908753739) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +1. 🗣 Commented on [#66](https://github.com/hasl-sensor/integration/pull/66#issuecomment-1910434893) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +2. 🗣 Commented on [#616](https://github.com/NeuralEnsemble/elephant/pull/616#issuecomment-1910397767) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +3. 🗣 Commented on [#5424](https://github.com/rhinstaller/anaconda/pull/5424#issuecomment-1910011097) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#3851](https://github.com/privacyidea/privacyidea/pull/3851#issuecomment-1909992229) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#5423](https://github.com/rhinstaller/anaconda/pull/5423#issuecomment-1909195104) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#1051](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1051#issuecomment-1908992621) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#1447](https://github.com/spacetelescope/jwql/pull/1447#issuecomment-1908955702) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#1446](https://github.com/spacetelescope/jwql/pull/1446#issuecomment-1908931229) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#885](https://github.com/scilus/scilpy/pull/885#issuecomment-1908851367) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#246](https://github.com/CartoonFan/lutris/pull/246#issuecomment-1908829093) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 23a2114d6d9eb1396a01b37b757a2f5a0dddb480 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 16:22:39 +0000 Subject: [PATCH 1269/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 95b89bed..40976130 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#66](https://github.com/hasl-sensor/integration/pull/66#issuecomment-1910434893) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -2. 🗣 Commented on [#616](https://github.com/NeuralEnsemble/elephant/pull/616#issuecomment-1910397767) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -3. 🗣 Commented on [#5424](https://github.com/rhinstaller/anaconda/pull/5424#issuecomment-1910011097) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#3851](https://github.com/privacyidea/privacyidea/pull/3851#issuecomment-1909992229) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#5423](https://github.com/rhinstaller/anaconda/pull/5423#issuecomment-1909195104) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#1051](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1051#issuecomment-1908992621) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#1447](https://github.com/spacetelescope/jwql/pull/1447#issuecomment-1908955702) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#1446](https://github.com/spacetelescope/jwql/pull/1446#issuecomment-1908931229) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#885](https://github.com/scilus/scilpy/pull/885#issuecomment-1908851367) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#246](https://github.com/CartoonFan/lutris/pull/246#issuecomment-1908829093) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#691](https://github.com/OpenFreeEnergy/openfe/pull/691#issuecomment-1910533073) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#1053](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1053#issuecomment-1910508653) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#66](https://github.com/hasl-sensor/integration/pull/66#issuecomment-1910434893) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +4. 🗣 Commented on [#616](https://github.com/NeuralEnsemble/elephant/pull/616#issuecomment-1910397767) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +5. 🗣 Commented on [#5424](https://github.com/rhinstaller/anaconda/pull/5424#issuecomment-1910011097) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#3851](https://github.com/privacyidea/privacyidea/pull/3851#issuecomment-1909992229) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +7. 🗣 Commented on [#5423](https://github.com/rhinstaller/anaconda/pull/5423#issuecomment-1909195104) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#1051](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1051#issuecomment-1908992621) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#1447](https://github.com/spacetelescope/jwql/pull/1447#issuecomment-1908955702) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#1446](https://github.com/spacetelescope/jwql/pull/1446#issuecomment-1908931229) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 2c030a7a20085c6af598af8d615f8f2949287109 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 16:42:45 +0000 Subject: [PATCH 1270/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 40976130..53491c76 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#691](https://github.com/OpenFreeEnergy/openfe/pull/691#issuecomment-1910533073) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#1053](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1053#issuecomment-1910508653) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#66](https://github.com/hasl-sensor/integration/pull/66#issuecomment-1910434893) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -4. 🗣 Commented on [#616](https://github.com/NeuralEnsemble/elephant/pull/616#issuecomment-1910397767) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -5. 🗣 Commented on [#5424](https://github.com/rhinstaller/anaconda/pull/5424#issuecomment-1910011097) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#3851](https://github.com/privacyidea/privacyidea/pull/3851#issuecomment-1909992229) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -7. 🗣 Commented on [#5423](https://github.com/rhinstaller/anaconda/pull/5423#issuecomment-1909195104) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#1051](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1051#issuecomment-1908992621) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#1447](https://github.com/spacetelescope/jwql/pull/1447#issuecomment-1908955702) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#1446](https://github.com/spacetelescope/jwql/pull/1446#issuecomment-1908931229) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#761](https://github.com/EducationalTestingService/skll/pull/761#issuecomment-1910560108) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +2. 🗣 Commented on [#691](https://github.com/OpenFreeEnergy/openfe/pull/691#issuecomment-1910533073) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#1053](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1053#issuecomment-1910508653) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#66](https://github.com/hasl-sensor/integration/pull/66#issuecomment-1910434893) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +5. 🗣 Commented on [#616](https://github.com/NeuralEnsemble/elephant/pull/616#issuecomment-1910397767) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +6. 🗣 Commented on [#5424](https://github.com/rhinstaller/anaconda/pull/5424#issuecomment-1910011097) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#3851](https://github.com/privacyidea/privacyidea/pull/3851#issuecomment-1909992229) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#5423](https://github.com/rhinstaller/anaconda/pull/5423#issuecomment-1909195104) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#1051](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1051#issuecomment-1908992621) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#1447](https://github.com/spacetelescope/jwql/pull/1447#issuecomment-1908955702) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From e6df6eb2b2d3b4c3903ef8c9e0b27fc0a663fa5f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 17:15:12 +0000 Subject: [PATCH 1271/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 53491c76..3e0b4d42 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#761](https://github.com/EducationalTestingService/skll/pull/761#issuecomment-1910560108) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -2. 🗣 Commented on [#691](https://github.com/OpenFreeEnergy/openfe/pull/691#issuecomment-1910533073) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#1053](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1053#issuecomment-1910508653) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#66](https://github.com/hasl-sensor/integration/pull/66#issuecomment-1910434893) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -5. 🗣 Commented on [#616](https://github.com/NeuralEnsemble/elephant/pull/616#issuecomment-1910397767) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -6. 🗣 Commented on [#5424](https://github.com/rhinstaller/anaconda/pull/5424#issuecomment-1910011097) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#3851](https://github.com/privacyidea/privacyidea/pull/3851#issuecomment-1909992229) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#5423](https://github.com/rhinstaller/anaconda/pull/5423#issuecomment-1909195104) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#1051](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1051#issuecomment-1908992621) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#1447](https://github.com/spacetelescope/jwql/pull/1447#issuecomment-1908955702) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#1448](https://github.com/spacetelescope/jwql/pull/1448#issuecomment-1910623889) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#761](https://github.com/EducationalTestingService/skll/pull/761#issuecomment-1910560108) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +3. 🗣 Commented on [#691](https://github.com/OpenFreeEnergy/openfe/pull/691#issuecomment-1910533073) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#1053](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1053#issuecomment-1910508653) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#66](https://github.com/hasl-sensor/integration/pull/66#issuecomment-1910434893) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +6. 🗣 Commented on [#616](https://github.com/NeuralEnsemble/elephant/pull/616#issuecomment-1910397767) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +7. 🗣 Commented on [#5424](https://github.com/rhinstaller/anaconda/pull/5424#issuecomment-1910011097) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#3851](https://github.com/privacyidea/privacyidea/pull/3851#issuecomment-1909992229) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#5423](https://github.com/rhinstaller/anaconda/pull/5423#issuecomment-1909195104) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#1051](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1051#issuecomment-1908992621) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 055506efdc372879e7f51b3793b2332fd339466f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 18:39:51 +0000 Subject: [PATCH 1272/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3e0b4d42..8af4569d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1448](https://github.com/spacetelescope/jwql/pull/1448#issuecomment-1910623889) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#761](https://github.com/EducationalTestingService/skll/pull/761#issuecomment-1910560108) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -3. 🗣 Commented on [#691](https://github.com/OpenFreeEnergy/openfe/pull/691#issuecomment-1910533073) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#1053](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1053#issuecomment-1910508653) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#66](https://github.com/hasl-sensor/integration/pull/66#issuecomment-1910434893) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -6. 🗣 Commented on [#616](https://github.com/NeuralEnsemble/elephant/pull/616#issuecomment-1910397767) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -7. 🗣 Commented on [#5424](https://github.com/rhinstaller/anaconda/pull/5424#issuecomment-1910011097) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#3851](https://github.com/privacyidea/privacyidea/pull/3851#issuecomment-1909992229) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#5423](https://github.com/rhinstaller/anaconda/pull/5423#issuecomment-1909195104) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#1051](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1051#issuecomment-1908992621) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#887](https://github.com/scilus/scilpy/pull/887#issuecomment-1910764769) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#1448](https://github.com/spacetelescope/jwql/pull/1448#issuecomment-1910623889) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#761](https://github.com/EducationalTestingService/skll/pull/761#issuecomment-1910560108) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +4. 🗣 Commented on [#691](https://github.com/OpenFreeEnergy/openfe/pull/691#issuecomment-1910533073) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#1053](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1053#issuecomment-1910508653) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#66](https://github.com/hasl-sensor/integration/pull/66#issuecomment-1910434893) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +7. 🗣 Commented on [#616](https://github.com/NeuralEnsemble/elephant/pull/616#issuecomment-1910397767) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +8. 🗣 Commented on [#5424](https://github.com/rhinstaller/anaconda/pull/5424#issuecomment-1910011097) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#3851](https://github.com/privacyidea/privacyidea/pull/3851#issuecomment-1909992229) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#5423](https://github.com/rhinstaller/anaconda/pull/5423#issuecomment-1909195104) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 3c062adcae481412d4a54433259b2fb193e7bfea Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 19:13:31 +0000 Subject: [PATCH 1273/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8af4569d..f0c6b2e1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#887](https://github.com/scilus/scilpy/pull/887#issuecomment-1910764769) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#1448](https://github.com/spacetelescope/jwql/pull/1448#issuecomment-1910623889) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#761](https://github.com/EducationalTestingService/skll/pull/761#issuecomment-1910560108) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -4. 🗣 Commented on [#691](https://github.com/OpenFreeEnergy/openfe/pull/691#issuecomment-1910533073) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#1053](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1053#issuecomment-1910508653) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#66](https://github.com/hasl-sensor/integration/pull/66#issuecomment-1910434893) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -7. 🗣 Commented on [#616](https://github.com/NeuralEnsemble/elephant/pull/616#issuecomment-1910397767) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -8. 🗣 Commented on [#5424](https://github.com/rhinstaller/anaconda/pull/5424#issuecomment-1910011097) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#3851](https://github.com/privacyidea/privacyidea/pull/3851#issuecomment-1909992229) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#5423](https://github.com/rhinstaller/anaconda/pull/5423#issuecomment-1909195104) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#1655](https://github.com/HEXRD/hexrdgui/pull/1655#issuecomment-1910805734) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +3. 🗣 Commented on [#887](https://github.com/scilus/scilpy/pull/887#issuecomment-1910764769) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#1448](https://github.com/spacetelescope/jwql/pull/1448#issuecomment-1910623889) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#761](https://github.com/EducationalTestingService/skll/pull/761#issuecomment-1910560108) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +6. 🗣 Commented on [#691](https://github.com/OpenFreeEnergy/openfe/pull/691#issuecomment-1910533073) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#1053](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1053#issuecomment-1910508653) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#66](https://github.com/hasl-sensor/integration/pull/66#issuecomment-1910434893) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +9. 🗣 Commented on [#616](https://github.com/NeuralEnsemble/elephant/pull/616#issuecomment-1910397767) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +10. 🗣 Commented on [#5424](https://github.com/rhinstaller/anaconda/pull/5424#issuecomment-1910011097) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 94c4abf1cb2e34c248b9273af61742915a771302 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 20:37:24 +0000 Subject: [PATCH 1274/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f0c6b2e1..694b3db2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#1655](https://github.com/HEXRD/hexrdgui/pull/1655#issuecomment-1910805734) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -3. 🗣 Commented on [#887](https://github.com/scilus/scilpy/pull/887#issuecomment-1910764769) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#1448](https://github.com/spacetelescope/jwql/pull/1448#issuecomment-1910623889) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#761](https://github.com/EducationalTestingService/skll/pull/761#issuecomment-1910560108) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -6. 🗣 Commented on [#691](https://github.com/OpenFreeEnergy/openfe/pull/691#issuecomment-1910533073) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#1053](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1053#issuecomment-1910508653) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#66](https://github.com/hasl-sensor/integration/pull/66#issuecomment-1910434893) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -9. 🗣 Commented on [#616](https://github.com/NeuralEnsemble/elephant/pull/616#issuecomment-1910397767) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -10. 🗣 Commented on [#5424](https://github.com/rhinstaller/anaconda/pull/5424#issuecomment-1910011097) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#1655](https://github.com/HEXRD/hexrdgui/pull/1655#issuecomment-1910805734) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +4. 🗣 Commented on [#887](https://github.com/scilus/scilpy/pull/887#issuecomment-1910764769) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#1448](https://github.com/spacetelescope/jwql/pull/1448#issuecomment-1910623889) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#761](https://github.com/EducationalTestingService/skll/pull/761#issuecomment-1910560108) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +7. 🗣 Commented on [#691](https://github.com/OpenFreeEnergy/openfe/pull/691#issuecomment-1910533073) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#1053](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1053#issuecomment-1910508653) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#66](https://github.com/hasl-sensor/integration/pull/66#issuecomment-1910434893) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +10. 🗣 Commented on [#616](https://github.com/NeuralEnsemble/elephant/pull/616#issuecomment-1910397767) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) From 6c71d707374cfdb30b5ab25a852e8ae7deb0c00f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 21:13:43 +0000 Subject: [PATCH 1275/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 694b3db2..8edc4bc7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#1655](https://github.com/HEXRD/hexrdgui/pull/1655#issuecomment-1910805734) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -4. 🗣 Commented on [#887](https://github.com/scilus/scilpy/pull/887#issuecomment-1910764769) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#1448](https://github.com/spacetelescope/jwql/pull/1448#issuecomment-1910623889) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#761](https://github.com/EducationalTestingService/skll/pull/761#issuecomment-1910560108) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -7. 🗣 Commented on [#691](https://github.com/OpenFreeEnergy/openfe/pull/691#issuecomment-1910533073) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#1053](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1053#issuecomment-1910508653) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#66](https://github.com/hasl-sensor/integration/pull/66#issuecomment-1910434893) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -10. 🗣 Commented on [#616](https://github.com/NeuralEnsemble/elephant/pull/616#issuecomment-1910397767) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +1. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +2. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#1655](https://github.com/HEXRD/hexrdgui/pull/1655#issuecomment-1910805734) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +5. 🗣 Commented on [#887](https://github.com/scilus/scilpy/pull/887#issuecomment-1910764769) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#1448](https://github.com/spacetelescope/jwql/pull/1448#issuecomment-1910623889) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#761](https://github.com/EducationalTestingService/skll/pull/761#issuecomment-1910560108) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +8. 🗣 Commented on [#691](https://github.com/OpenFreeEnergy/openfe/pull/691#issuecomment-1910533073) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#1053](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1053#issuecomment-1910508653) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#66](https://github.com/hasl-sensor/integration/pull/66#issuecomment-1910434893) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) From 62b532f0ef040b68e044f5e21638d80510e34c18 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Jan 2024 04:20:36 +0000 Subject: [PATCH 1276/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8edc4bc7..3c5e215e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -2. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#1655](https://github.com/HEXRD/hexrdgui/pull/1655#issuecomment-1910805734) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -5. 🗣 Commented on [#887](https://github.com/scilus/scilpy/pull/887#issuecomment-1910764769) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#1448](https://github.com/spacetelescope/jwql/pull/1448#issuecomment-1910623889) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#761](https://github.com/EducationalTestingService/skll/pull/761#issuecomment-1910560108) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -8. 🗣 Commented on [#691](https://github.com/OpenFreeEnergy/openfe/pull/691#issuecomment-1910533073) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#1053](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1053#issuecomment-1910508653) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#66](https://github.com/hasl-sensor/integration/pull/66#issuecomment-1910434893) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +1. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +2. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +3. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#1655](https://github.com/HEXRD/hexrdgui/pull/1655#issuecomment-1910805734) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +6. 🗣 Commented on [#887](https://github.com/scilus/scilpy/pull/887#issuecomment-1910764769) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#1448](https://github.com/spacetelescope/jwql/pull/1448#issuecomment-1910623889) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#761](https://github.com/EducationalTestingService/skll/pull/761#issuecomment-1910560108) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +9. 🗣 Commented on [#691](https://github.com/OpenFreeEnergy/openfe/pull/691#issuecomment-1910533073) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#1053](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1053#issuecomment-1910508653) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 70549556354d26f59f07dc51e800176ec81bf95d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Jan 2024 09:16:23 +0000 Subject: [PATCH 1277/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3c5e215e..bfed834b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -2. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -3. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#1655](https://github.com/HEXRD/hexrdgui/pull/1655#issuecomment-1910805734) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -6. 🗣 Commented on [#887](https://github.com/scilus/scilpy/pull/887#issuecomment-1910764769) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#1448](https://github.com/spacetelescope/jwql/pull/1448#issuecomment-1910623889) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#761](https://github.com/EducationalTestingService/skll/pull/761#issuecomment-1910560108) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -9. 🗣 Commented on [#691](https://github.com/OpenFreeEnergy/openfe/pull/691#issuecomment-1910533073) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#1053](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1053#issuecomment-1910508653) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +3. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +4. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#1655](https://github.com/HEXRD/hexrdgui/pull/1655#issuecomment-1910805734) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +7. 🗣 Commented on [#887](https://github.com/scilus/scilpy/pull/887#issuecomment-1910764769) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#1448](https://github.com/spacetelescope/jwql/pull/1448#issuecomment-1910623889) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#761](https://github.com/EducationalTestingService/skll/pull/761#issuecomment-1910560108) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +10. 🗣 Commented on [#691](https://github.com/OpenFreeEnergy/openfe/pull/691#issuecomment-1910533073) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From bd525e28e6234549cd91cd21f4c8b3cba2cf6a9d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Jan 2024 13:17:23 +0000 Subject: [PATCH 1278/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bfed834b..864cb2a1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -3. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -4. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#1655](https://github.com/HEXRD/hexrdgui/pull/1655#issuecomment-1910805734) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -7. 🗣 Commented on [#887](https://github.com/scilus/scilpy/pull/887#issuecomment-1910764769) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#1448](https://github.com/spacetelescope/jwql/pull/1448#issuecomment-1910623889) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#761](https://github.com/EducationalTestingService/skll/pull/761#issuecomment-1910560108) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -10. 🗣 Commented on [#691](https://github.com/OpenFreeEnergy/openfe/pull/691#issuecomment-1910533073) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +2. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +4. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +5. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#1655](https://github.com/HEXRD/hexrdgui/pull/1655#issuecomment-1910805734) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +8. 🗣 Commented on [#887](https://github.com/scilus/scilpy/pull/887#issuecomment-1910764769) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#1448](https://github.com/spacetelescope/jwql/pull/1448#issuecomment-1910623889) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#761](https://github.com/EducationalTestingService/skll/pull/761#issuecomment-1910560108) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) From dec748e31638131a30faf938426836c9cd4588d1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Jan 2024 15:16:03 +0000 Subject: [PATCH 1279/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 864cb2a1..7c48b723 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -2. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -4. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -5. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#1655](https://github.com/HEXRD/hexrdgui/pull/1655#issuecomment-1910805734) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -8. 🗣 Commented on [#887](https://github.com/scilus/scilpy/pull/887#issuecomment-1910764769) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#1448](https://github.com/spacetelescope/jwql/pull/1448#issuecomment-1910623889) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#761](https://github.com/EducationalTestingService/skll/pull/761#issuecomment-1910560108) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +1. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +2. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +3. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +5. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +6. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#1655](https://github.com/HEXRD/hexrdgui/pull/1655#issuecomment-1910805734) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +9. 🗣 Commented on [#887](https://github.com/scilus/scilpy/pull/887#issuecomment-1910764769) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#1448](https://github.com/spacetelescope/jwql/pull/1448#issuecomment-1910623889) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 3fc1b192bbbd86d02e115b34a948fdae713c1504 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Jan 2024 16:19:56 +0000 Subject: [PATCH 1280/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7c48b723..bf1380e1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -2. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -3. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -5. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -6. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#1655](https://github.com/HEXRD/hexrdgui/pull/1655#issuecomment-1910805734) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -9. 🗣 Commented on [#887](https://github.com/scilus/scilpy/pull/887#issuecomment-1910764769) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#1448](https://github.com/spacetelescope/jwql/pull/1448#issuecomment-1910623889) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +2. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +3. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +4. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +6. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +7. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#1655](https://github.com/HEXRD/hexrdgui/pull/1655#issuecomment-1910805734) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +10. 🗣 Commented on [#887](https://github.com/scilus/scilpy/pull/887#issuecomment-1910764769) in [scilus/scilpy](https://github.com/scilus/scilpy) From 1df0c1b9b939af913c861275773e30a679f9b695 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Jan 2024 16:38:12 +0000 Subject: [PATCH 1281/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bf1380e1..a4f41e10 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -2. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -3. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -4. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -6. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -7. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#1655](https://github.com/HEXRD/hexrdgui/pull/1655#issuecomment-1910805734) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -10. 🗣 Commented on [#887](https://github.com/scilus/scilpy/pull/887#issuecomment-1910764769) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +3. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +4. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +5. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +7. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +8. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#1655](https://github.com/HEXRD/hexrdgui/pull/1655#issuecomment-1910805734) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) From 572e93d7d403493a892de8ba3d4186e1631ce248 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Jan 2024 17:13:22 +0000 Subject: [PATCH 1282/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a4f41e10..119e59a1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -3. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -4. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -5. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -7. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -8. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#1655](https://github.com/HEXRD/hexrdgui/pull/1655#issuecomment-1910805734) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +1. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +4. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +5. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +6. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +8. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +9. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 701dee714fd141a3daa7acfd32542adec4e6b7e6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Jan 2024 18:37:12 +0000 Subject: [PATCH 1283/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 119e59a1..dfbf497b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -4. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -5. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -6. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -8. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -9. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#1449](https://github.com/spacetelescope/jwql/pull/1449#issuecomment-1910807469) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#394](https://github.com/NASA-Planetary-Science/sbpy/pull/394#issuecomment-1912503891) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +2. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +5. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +6. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +7. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +9. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +10. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 4bc3e28c15c6c8d27dd08f5f4faa84d80a4040b9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Jan 2024 21:13:58 +0000 Subject: [PATCH 1284/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dfbf497b..c2641f8e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#394](https://github.com/NASA-Planetary-Science/sbpy/pull/394#issuecomment-1912503891) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -2. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -5. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -6. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -7. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -9. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -10. 🗣 Commented on [#1055](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1055#issuecomment-1910943778) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#1056](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1056#issuecomment-1912677276) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#394](https://github.com/NASA-Planetary-Science/sbpy/pull/394#issuecomment-1912503891) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +3. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +6. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +7. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +8. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +9. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +10. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) From 46e61adccb57ecdbae7eecbf47ba0f6e128e3eeb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 01:08:12 +0000 Subject: [PATCH 1285/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c2641f8e..83ad4568 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1056](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1056#issuecomment-1912677276) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#394](https://github.com/NASA-Planetary-Science/sbpy/pull/394#issuecomment-1912503891) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -3. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -6. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -7. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -8. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -9. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -10. 🗣 Commented on [#1091](https://github.com/yeatmanlab/pyAFQ/pull/1091#issuecomment-1910989487) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +1. 🗣 Commented on [#55](https://github.com/AllenInstitute/em_stitch/pull/55#issuecomment-1912855811) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +2. 🗣 Commented on [#1056](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1056#issuecomment-1912677276) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#394](https://github.com/NASA-Planetary-Science/sbpy/pull/394#issuecomment-1912503891) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +4. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +7. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +8. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +9. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) From 7679f7599e0c3550c3dcb05da9815428f319bcff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 11:11:38 +0000 Subject: [PATCH 1286/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 83ad4568..f112a3c8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#55](https://github.com/AllenInstitute/em_stitch/pull/55#issuecomment-1912855811) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -2. 🗣 Commented on [#1056](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1056#issuecomment-1912677276) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#394](https://github.com/NASA-Planetary-Science/sbpy/pull/394#issuecomment-1912503891) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -4. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -7. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -8. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -9. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#102](https://github.com/drauger-os-development/edamame/pull/102#issuecomment-1911433450) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +1. 🗣 Commented on [#2936](https://github.com/astropy/astroquery/pull/2936#issuecomment-1913114167) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#55](https://github.com/AllenInstitute/em_stitch/pull/55#issuecomment-1912855811) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +3. 🗣 Commented on [#1056](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1056#issuecomment-1912677276) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#394](https://github.com/NASA-Planetary-Science/sbpy/pull/394#issuecomment-1912503891) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +5. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +8. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +9. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +10. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From 6614f5d658b0696560b8c79f6dcce8feebd017bd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 14:13:17 +0000 Subject: [PATCH 1287/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f112a3c8..dace6350 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2936](https://github.com/astropy/astroquery/pull/2936#issuecomment-1913114167) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#55](https://github.com/AllenInstitute/em_stitch/pull/55#issuecomment-1912855811) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -3. 🗣 Commented on [#1056](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1056#issuecomment-1912677276) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#394](https://github.com/NASA-Planetary-Science/sbpy/pull/394#issuecomment-1912503891) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -5. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -8. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -9. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -10. 🗣 Commented on [#275](https://github.com/OpenFreeEnergy/gufe/pull/275#issuecomment-1911681410) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#898](https://github.com/ToFuProject/tofu/pull/898#issuecomment-1913169124) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#2936](https://github.com/astropy/astroquery/pull/2936#issuecomment-1913114167) in [astropy/astroquery](https://github.com/astropy/astroquery) +3. 🗣 Commented on [#55](https://github.com/AllenInstitute/em_stitch/pull/55#issuecomment-1912855811) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +4. 🗣 Commented on [#1056](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1056#issuecomment-1912677276) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#394](https://github.com/NASA-Planetary-Science/sbpy/pull/394#issuecomment-1912503891) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +6. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +9. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +10. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) From 2a8b8b0446a86d0d91a06f1bd903485a7e913a87 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 22:14:15 +0000 Subject: [PATCH 1288/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dace6350..482e8b95 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#898](https://github.com/ToFuProject/tofu/pull/898#issuecomment-1913169124) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#2936](https://github.com/astropy/astroquery/pull/2936#issuecomment-1913114167) in [astropy/astroquery](https://github.com/astropy/astroquery) -3. 🗣 Commented on [#55](https://github.com/AllenInstitute/em_stitch/pull/55#issuecomment-1912855811) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -4. 🗣 Commented on [#1056](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1056#issuecomment-1912677276) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#394](https://github.com/NASA-Planetary-Science/sbpy/pull/394#issuecomment-1912503891) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -6. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -9. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -10. 🗣 Commented on [#224](https://github.com/OpenSCAP/openscap-report/pull/224#issuecomment-1912032254) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +1. 🗣 Commented on [#103](https://github.com/drauger-os-development/edamame/pull/103#issuecomment-1913347963) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +2. 🗣 Commented on [#898](https://github.com/ToFuProject/tofu/pull/898#issuecomment-1913169124) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#2936](https://github.com/astropy/astroquery/pull/2936#issuecomment-1913114167) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#55](https://github.com/AllenInstitute/em_stitch/pull/55#issuecomment-1912855811) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +5. 🗣 Commented on [#1056](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1056#issuecomment-1912677276) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#394](https://github.com/NASA-Planetary-Science/sbpy/pull/394#issuecomment-1912503891) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +7. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +9. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +10. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) From 73c5d3481bbba4751344a7b928a2ad0b1c16484e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 23:15:21 +0000 Subject: [PATCH 1289/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 482e8b95..c8e18d97 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#103](https://github.com/drauger-os-development/edamame/pull/103#issuecomment-1913347963) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -2. 🗣 Commented on [#898](https://github.com/ToFuProject/tofu/pull/898#issuecomment-1913169124) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#2936](https://github.com/astropy/astroquery/pull/2936#issuecomment-1913114167) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#55](https://github.com/AllenInstitute/em_stitch/pull/55#issuecomment-1912855811) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -5. 🗣 Commented on [#1056](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1056#issuecomment-1912677276) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#394](https://github.com/NASA-Planetary-Science/sbpy/pull/394#issuecomment-1912503891) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -7. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -9. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -10. 🗣 Commented on [#4](https://github.com/eastgenomics/gene_annotation2bed/pull/4#issuecomment-1912231744) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +1. 🗣 Commented on [#792](https://github.com/StingraySoftware/stingray/pull/792#issuecomment-1913356537) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +2. 🗣 Commented on [#103](https://github.com/drauger-os-development/edamame/pull/103#issuecomment-1913347963) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +3. 🗣 Commented on [#898](https://github.com/ToFuProject/tofu/pull/898#issuecomment-1913169124) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#2936](https://github.com/astropy/astroquery/pull/2936#issuecomment-1913114167) in [astropy/astroquery](https://github.com/astropy/astroquery) +5. 🗣 Commented on [#55](https://github.com/AllenInstitute/em_stitch/pull/55#issuecomment-1912855811) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +6. 🗣 Commented on [#1056](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1056#issuecomment-1912677276) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#394](https://github.com/NASA-Planetary-Science/sbpy/pull/394#issuecomment-1912503891) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +8. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) From b4cc6565104c776c765606f05dcffedad67b44e1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 28 Jan 2024 05:15:02 +0000 Subject: [PATCH 1290/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c8e18d97..152c2950 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#792](https://github.com/StingraySoftware/stingray/pull/792#issuecomment-1913356537) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -2. 🗣 Commented on [#103](https://github.com/drauger-os-development/edamame/pull/103#issuecomment-1913347963) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -3. 🗣 Commented on [#898](https://github.com/ToFuProject/tofu/pull/898#issuecomment-1913169124) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#2936](https://github.com/astropy/astroquery/pull/2936#issuecomment-1913114167) in [astropy/astroquery](https://github.com/astropy/astroquery) -5. 🗣 Commented on [#55](https://github.com/AllenInstitute/em_stitch/pull/55#issuecomment-1912855811) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -6. 🗣 Commented on [#1056](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1056#issuecomment-1912677276) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#394](https://github.com/NASA-Planetary-Science/sbpy/pull/394#issuecomment-1912503891) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -8. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#588](https://github.com/ExoCTK/exoctk/pull/588#issuecomment-1912291635) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +1. 🗣 Commented on [#247](https://github.com/CartoonFan/lutris/pull/247#issuecomment-1913452357) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#792](https://github.com/StingraySoftware/stingray/pull/792#issuecomment-1913356537) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +3. 🗣 Commented on [#103](https://github.com/drauger-os-development/edamame/pull/103#issuecomment-1913347963) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +4. 🗣 Commented on [#898](https://github.com/ToFuProject/tofu/pull/898#issuecomment-1913169124) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#2936](https://github.com/astropy/astroquery/pull/2936#issuecomment-1913114167) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#55](https://github.com/AllenInstitute/em_stitch/pull/55#issuecomment-1912855811) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +7. 🗣 Commented on [#1056](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1056#issuecomment-1912677276) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#394](https://github.com/NASA-Planetary-Science/sbpy/pull/394#issuecomment-1912503891) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +9. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From dac62258209f64f469864d22b02c3b26a2c5693d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 28 Jan 2024 10:16:11 +0000 Subject: [PATCH 1291/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 152c2950..2f38dec9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#247](https://github.com/CartoonFan/lutris/pull/247#issuecomment-1913452357) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#792](https://github.com/StingraySoftware/stingray/pull/792#issuecomment-1913356537) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -3. 🗣 Commented on [#103](https://github.com/drauger-os-development/edamame/pull/103#issuecomment-1913347963) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -4. 🗣 Commented on [#898](https://github.com/ToFuProject/tofu/pull/898#issuecomment-1913169124) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#2936](https://github.com/astropy/astroquery/pull/2936#issuecomment-1913114167) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#55](https://github.com/AllenInstitute/em_stitch/pull/55#issuecomment-1912855811) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -7. 🗣 Commented on [#1056](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1056#issuecomment-1912677276) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#394](https://github.com/NASA-Planetary-Science/sbpy/pull/394#issuecomment-1912503891) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -9. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#277](https://github.com/OpenFreeEnergy/gufe/pull/277#issuecomment-1912328002) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#12](https://github.com/0xPrateek/Stake/pull/12#issuecomment-1913542562) in [0xPrateek/Stake](https://github.com/0xPrateek/Stake) +2. 🗣 Commented on [#247](https://github.com/CartoonFan/lutris/pull/247#issuecomment-1913452357) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#792](https://github.com/StingraySoftware/stingray/pull/792#issuecomment-1913356537) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +4. 🗣 Commented on [#103](https://github.com/drauger-os-development/edamame/pull/103#issuecomment-1913347963) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +5. 🗣 Commented on [#898](https://github.com/ToFuProject/tofu/pull/898#issuecomment-1913169124) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#2936](https://github.com/astropy/astroquery/pull/2936#issuecomment-1913114167) in [astropy/astroquery](https://github.com/astropy/astroquery) +7. 🗣 Commented on [#55](https://github.com/AllenInstitute/em_stitch/pull/55#issuecomment-1912855811) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +8. 🗣 Commented on [#1056](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1056#issuecomment-1912677276) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#394](https://github.com/NASA-Planetary-Science/sbpy/pull/394#issuecomment-1912503891) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +10. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From e6ade2f89f6a0f2742178ac8c824312a343a2795 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 12:29:05 +0000 Subject: [PATCH 1292/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2f38dec9..5b9f7145 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#12](https://github.com/0xPrateek/Stake/pull/12#issuecomment-1913542562) in [0xPrateek/Stake](https://github.com/0xPrateek/Stake) -2. 🗣 Commented on [#247](https://github.com/CartoonFan/lutris/pull/247#issuecomment-1913452357) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#792](https://github.com/StingraySoftware/stingray/pull/792#issuecomment-1913356537) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -4. 🗣 Commented on [#103](https://github.com/drauger-os-development/edamame/pull/103#issuecomment-1913347963) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -5. 🗣 Commented on [#898](https://github.com/ToFuProject/tofu/pull/898#issuecomment-1913169124) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#2936](https://github.com/astropy/astroquery/pull/2936#issuecomment-1913114167) in [astropy/astroquery](https://github.com/astropy/astroquery) -7. 🗣 Commented on [#55](https://github.com/AllenInstitute/em_stitch/pull/55#issuecomment-1912855811) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -8. 🗣 Commented on [#1056](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1056#issuecomment-1912677276) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#394](https://github.com/NASA-Planetary-Science/sbpy/pull/394#issuecomment-1912503891) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -10. 🗣 Commented on [#81](https://github.com/eastgenomics/eris/pull/81#issuecomment-1912380533) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#958](https://github.com/avaframe/AvaFrame/pull/958#issuecomment-1914532287) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#3852](https://github.com/privacyidea/privacyidea/pull/3852#issuecomment-1914529586) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#12](https://github.com/0xPrateek/Stake/pull/12#issuecomment-1913542562) in [0xPrateek/Stake](https://github.com/0xPrateek/Stake) +4. 🗣 Commented on [#247](https://github.com/CartoonFan/lutris/pull/247#issuecomment-1913452357) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#792](https://github.com/StingraySoftware/stingray/pull/792#issuecomment-1913356537) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +6. 🗣 Commented on [#103](https://github.com/drauger-os-development/edamame/pull/103#issuecomment-1913347963) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +7. 🗣 Commented on [#898](https://github.com/ToFuProject/tofu/pull/898#issuecomment-1913169124) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#2936](https://github.com/astropy/astroquery/pull/2936#issuecomment-1913114167) in [astropy/astroquery](https://github.com/astropy/astroquery) +9. 🗣 Commented on [#55](https://github.com/AllenInstitute/em_stitch/pull/55#issuecomment-1912855811) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +10. 🗣 Commented on [#1056](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1056#issuecomment-1912677276) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 01b6c97010b93947044a3ae5b867aebedaef6ffc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 12:49:21 +0000 Subject: [PATCH 1293/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5b9f7145..f7b9f45f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#958](https://github.com/avaframe/AvaFrame/pull/958#issuecomment-1914532287) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#3852](https://github.com/privacyidea/privacyidea/pull/3852#issuecomment-1914529586) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#12](https://github.com/0xPrateek/Stake/pull/12#issuecomment-1913542562) in [0xPrateek/Stake](https://github.com/0xPrateek/Stake) -4. 🗣 Commented on [#247](https://github.com/CartoonFan/lutris/pull/247#issuecomment-1913452357) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#792](https://github.com/StingraySoftware/stingray/pull/792#issuecomment-1913356537) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -6. 🗣 Commented on [#103](https://github.com/drauger-os-development/edamame/pull/103#issuecomment-1913347963) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -7. 🗣 Commented on [#898](https://github.com/ToFuProject/tofu/pull/898#issuecomment-1913169124) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#2936](https://github.com/astropy/astroquery/pull/2936#issuecomment-1913114167) in [astropy/astroquery](https://github.com/astropy/astroquery) -9. 🗣 Commented on [#55](https://github.com/AllenInstitute/em_stitch/pull/55#issuecomment-1912855811) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -10. 🗣 Commented on [#1056](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1056#issuecomment-1912677276) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#278](https://github.com/OpenFreeEnergy/gufe/pull/278#issuecomment-1914614646) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#958](https://github.com/avaframe/AvaFrame/pull/958#issuecomment-1914532287) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#3852](https://github.com/privacyidea/privacyidea/pull/3852#issuecomment-1914529586) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +4. 🗣 Commented on [#12](https://github.com/0xPrateek/Stake/pull/12#issuecomment-1913542562) in [0xPrateek/Stake](https://github.com/0xPrateek/Stake) +5. 🗣 Commented on [#247](https://github.com/CartoonFan/lutris/pull/247#issuecomment-1913452357) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#792](https://github.com/StingraySoftware/stingray/pull/792#issuecomment-1913356537) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +7. 🗣 Commented on [#103](https://github.com/drauger-os-development/edamame/pull/103#issuecomment-1913347963) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +8. 🗣 Commented on [#898](https://github.com/ToFuProject/tofu/pull/898#issuecomment-1913169124) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#2936](https://github.com/astropy/astroquery/pull/2936#issuecomment-1913114167) in [astropy/astroquery](https://github.com/astropy/astroquery) +10. 🗣 Commented on [#55](https://github.com/AllenInstitute/em_stitch/pull/55#issuecomment-1912855811) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) From c9bc6dd6f7f541e0707c696cd9e76824e1c3b9dc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 15:15:26 +0000 Subject: [PATCH 1294/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f7b9f45f..db807ac1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#278](https://github.com/OpenFreeEnergy/gufe/pull/278#issuecomment-1914614646) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#958](https://github.com/avaframe/AvaFrame/pull/958#issuecomment-1914532287) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#3852](https://github.com/privacyidea/privacyidea/pull/3852#issuecomment-1914529586) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -4. 🗣 Commented on [#12](https://github.com/0xPrateek/Stake/pull/12#issuecomment-1913542562) in [0xPrateek/Stake](https://github.com/0xPrateek/Stake) -5. 🗣 Commented on [#247](https://github.com/CartoonFan/lutris/pull/247#issuecomment-1913452357) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#792](https://github.com/StingraySoftware/stingray/pull/792#issuecomment-1913356537) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -7. 🗣 Commented on [#103](https://github.com/drauger-os-development/edamame/pull/103#issuecomment-1913347963) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -8. 🗣 Commented on [#898](https://github.com/ToFuProject/tofu/pull/898#issuecomment-1913169124) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#2936](https://github.com/astropy/astroquery/pull/2936#issuecomment-1913114167) in [astropy/astroquery](https://github.com/astropy/astroquery) -10. 🗣 Commented on [#55](https://github.com/AllenInstitute/em_stitch/pull/55#issuecomment-1912855811) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +1. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +2. 🗣 Commented on [#693](https://github.com/OpenFreeEnergy/openfe/pull/693#issuecomment-1914828292) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#278](https://github.com/OpenFreeEnergy/gufe/pull/278#issuecomment-1914614646) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#958](https://github.com/avaframe/AvaFrame/pull/958#issuecomment-1914532287) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#3852](https://github.com/privacyidea/privacyidea/pull/3852#issuecomment-1914529586) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#12](https://github.com/0xPrateek/Stake/pull/12#issuecomment-1913542562) in [0xPrateek/Stake](https://github.com/0xPrateek/Stake) +7. 🗣 Commented on [#247](https://github.com/CartoonFan/lutris/pull/247#issuecomment-1913452357) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#792](https://github.com/StingraySoftware/stingray/pull/792#issuecomment-1913356537) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +9. 🗣 Commented on [#103](https://github.com/drauger-os-development/edamame/pull/103#issuecomment-1913347963) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +10. 🗣 Commented on [#898](https://github.com/ToFuProject/tofu/pull/898#issuecomment-1913169124) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From bfc48b857bcabf2d901766d9f70707cce976a314 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 16:19:17 +0000 Subject: [PATCH 1295/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index db807ac1..e2e7fdcc 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -2. 🗣 Commented on [#693](https://github.com/OpenFreeEnergy/openfe/pull/693#issuecomment-1914828292) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#278](https://github.com/OpenFreeEnergy/gufe/pull/278#issuecomment-1914614646) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#958](https://github.com/avaframe/AvaFrame/pull/958#issuecomment-1914532287) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#3852](https://github.com/privacyidea/privacyidea/pull/3852#issuecomment-1914529586) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#12](https://github.com/0xPrateek/Stake/pull/12#issuecomment-1913542562) in [0xPrateek/Stake](https://github.com/0xPrateek/Stake) -7. 🗣 Commented on [#247](https://github.com/CartoonFan/lutris/pull/247#issuecomment-1913452357) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#792](https://github.com/StingraySoftware/stingray/pull/792#issuecomment-1913356537) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -9. 🗣 Commented on [#103](https://github.com/drauger-os-development/edamame/pull/103#issuecomment-1913347963) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -10. 🗣 Commented on [#898](https://github.com/ToFuProject/tofu/pull/898#issuecomment-1913169124) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +3. 🗣 Commented on [#693](https://github.com/OpenFreeEnergy/openfe/pull/693#issuecomment-1914828292) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#278](https://github.com/OpenFreeEnergy/gufe/pull/278#issuecomment-1914614646) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#958](https://github.com/avaframe/AvaFrame/pull/958#issuecomment-1914532287) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#3852](https://github.com/privacyidea/privacyidea/pull/3852#issuecomment-1914529586) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +7. 🗣 Commented on [#12](https://github.com/0xPrateek/Stake/pull/12#issuecomment-1913542562) in [0xPrateek/Stake](https://github.com/0xPrateek/Stake) +8. 🗣 Commented on [#247](https://github.com/CartoonFan/lutris/pull/247#issuecomment-1913452357) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#792](https://github.com/StingraySoftware/stingray/pull/792#issuecomment-1913356537) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +10. 🗣 Commented on [#103](https://github.com/drauger-os-development/edamame/pull/103#issuecomment-1913347963) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) From 01f33043ff9e14a3498abe2455c8bc3581929fbe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 18:19:15 +0000 Subject: [PATCH 1296/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e2e7fdcc..e1088c46 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -3. 🗣 Commented on [#693](https://github.com/OpenFreeEnergy/openfe/pull/693#issuecomment-1914828292) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#278](https://github.com/OpenFreeEnergy/gufe/pull/278#issuecomment-1914614646) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#958](https://github.com/avaframe/AvaFrame/pull/958#issuecomment-1914532287) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#3852](https://github.com/privacyidea/privacyidea/pull/3852#issuecomment-1914529586) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -7. 🗣 Commented on [#12](https://github.com/0xPrateek/Stake/pull/12#issuecomment-1913542562) in [0xPrateek/Stake](https://github.com/0xPrateek/Stake) -8. 🗣 Commented on [#247](https://github.com/CartoonFan/lutris/pull/247#issuecomment-1913452357) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#792](https://github.com/StingraySoftware/stingray/pull/792#issuecomment-1913356537) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -10. 🗣 Commented on [#103](https://github.com/drauger-os-development/edamame/pull/103#issuecomment-1913347963) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +1. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +4. 🗣 Commented on [#693](https://github.com/OpenFreeEnergy/openfe/pull/693#issuecomment-1914828292) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#278](https://github.com/OpenFreeEnergy/gufe/pull/278#issuecomment-1914614646) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#958](https://github.com/avaframe/AvaFrame/pull/958#issuecomment-1914532287) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#3852](https://github.com/privacyidea/privacyidea/pull/3852#issuecomment-1914529586) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#12](https://github.com/0xPrateek/Stake/pull/12#issuecomment-1913542562) in [0xPrateek/Stake](https://github.com/0xPrateek/Stake) +9. 🗣 Commented on [#247](https://github.com/CartoonFan/lutris/pull/247#issuecomment-1913452357) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#792](https://github.com/StingraySoftware/stingray/pull/792#issuecomment-1913356537) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) From a4a14254703abc611d0e18bd11a291a398d155a1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 19:12:18 +0000 Subject: [PATCH 1297/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e1088c46..4ce2e902 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -4. 🗣 Commented on [#693](https://github.com/OpenFreeEnergy/openfe/pull/693#issuecomment-1914828292) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#278](https://github.com/OpenFreeEnergy/gufe/pull/278#issuecomment-1914614646) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#958](https://github.com/avaframe/AvaFrame/pull/958#issuecomment-1914532287) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#3852](https://github.com/privacyidea/privacyidea/pull/3852#issuecomment-1914529586) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#12](https://github.com/0xPrateek/Stake/pull/12#issuecomment-1913542562) in [0xPrateek/Stake](https://github.com/0xPrateek/Stake) -9. 🗣 Commented on [#247](https://github.com/CartoonFan/lutris/pull/247#issuecomment-1913452357) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#792](https://github.com/StingraySoftware/stingray/pull/792#issuecomment-1913356537) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +1. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) +2. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +4. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +5. 🗣 Commented on [#693](https://github.com/OpenFreeEnergy/openfe/pull/693#issuecomment-1914828292) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#278](https://github.com/OpenFreeEnergy/gufe/pull/278#issuecomment-1914614646) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#958](https://github.com/avaframe/AvaFrame/pull/958#issuecomment-1914532287) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#3852](https://github.com/privacyidea/privacyidea/pull/3852#issuecomment-1914529586) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#12](https://github.com/0xPrateek/Stake/pull/12#issuecomment-1913542562) in [0xPrateek/Stake](https://github.com/0xPrateek/Stake) +10. 🗣 Commented on [#247](https://github.com/CartoonFan/lutris/pull/247#issuecomment-1913452357) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From b914af8fe55e49e509e8231b8b35d7589a525086 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 20:16:44 +0000 Subject: [PATCH 1298/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4ce2e902..3069d141 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) -2. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -4. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -5. 🗣 Commented on [#693](https://github.com/OpenFreeEnergy/openfe/pull/693#issuecomment-1914828292) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#278](https://github.com/OpenFreeEnergy/gufe/pull/278#issuecomment-1914614646) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#958](https://github.com/avaframe/AvaFrame/pull/958#issuecomment-1914532287) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#3852](https://github.com/privacyidea/privacyidea/pull/3852#issuecomment-1914529586) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#12](https://github.com/0xPrateek/Stake/pull/12#issuecomment-1913542562) in [0xPrateek/Stake](https://github.com/0xPrateek/Stake) -10. 🗣 Commented on [#247](https://github.com/CartoonFan/lutris/pull/247#issuecomment-1913452357) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#73](https://github.com/Remi-Gau/bids2cite/pull/73#issuecomment-1915453227) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +2. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) +3. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +6. 🗣 Commented on [#693](https://github.com/OpenFreeEnergy/openfe/pull/693#issuecomment-1914828292) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#278](https://github.com/OpenFreeEnergy/gufe/pull/278#issuecomment-1914614646) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#958](https://github.com/avaframe/AvaFrame/pull/958#issuecomment-1914532287) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#3852](https://github.com/privacyidea/privacyidea/pull/3852#issuecomment-1914529586) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#12](https://github.com/0xPrateek/Stake/pull/12#issuecomment-1913542562) in [0xPrateek/Stake](https://github.com/0xPrateek/Stake) From ef8f029779d6e0ffb6ec8e4d1cbbcce6d8194d66 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 21:13:37 +0000 Subject: [PATCH 1299/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3069d141..f9597be0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#73](https://github.com/Remi-Gau/bids2cite/pull/73#issuecomment-1915453227) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) -2. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) -3. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -6. 🗣 Commented on [#693](https://github.com/OpenFreeEnergy/openfe/pull/693#issuecomment-1914828292) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#278](https://github.com/OpenFreeEnergy/gufe/pull/278#issuecomment-1914614646) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#958](https://github.com/avaframe/AvaFrame/pull/958#issuecomment-1914532287) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#3852](https://github.com/privacyidea/privacyidea/pull/3852#issuecomment-1914529586) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#12](https://github.com/0xPrateek/Stake/pull/12#issuecomment-1913542562) in [0xPrateek/Stake](https://github.com/0xPrateek/Stake) +1. 🗣 Commented on [#1456](https://github.com/spacetelescope/jwql/pull/1456#issuecomment-1915576072) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#73](https://github.com/Remi-Gau/bids2cite/pull/73#issuecomment-1915453227) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +3. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) +4. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +7. 🗣 Commented on [#693](https://github.com/OpenFreeEnergy/openfe/pull/693#issuecomment-1914828292) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#278](https://github.com/OpenFreeEnergy/gufe/pull/278#issuecomment-1914614646) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +9. 🗣 Commented on [#958](https://github.com/avaframe/AvaFrame/pull/958#issuecomment-1914532287) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#3852](https://github.com/privacyidea/privacyidea/pull/3852#issuecomment-1914529586) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From 15dbf79de6fca50fea24e5b86b05ac94232cc1b6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 23:16:26 +0000 Subject: [PATCH 1300/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f9597be0..3c237e91 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1456](https://github.com/spacetelescope/jwql/pull/1456#issuecomment-1915576072) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#73](https://github.com/Remi-Gau/bids2cite/pull/73#issuecomment-1915453227) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) -3. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) -4. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -7. 🗣 Commented on [#693](https://github.com/OpenFreeEnergy/openfe/pull/693#issuecomment-1914828292) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#278](https://github.com/OpenFreeEnergy/gufe/pull/278#issuecomment-1914614646) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -9. 🗣 Commented on [#958](https://github.com/avaframe/AvaFrame/pull/958#issuecomment-1914532287) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#3852](https://github.com/privacyidea/privacyidea/pull/3852#issuecomment-1914529586) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/kartograf/pull/35#issuecomment-1915727357) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +2. 🗣 Commented on [#1456](https://github.com/spacetelescope/jwql/pull/1456#issuecomment-1915576072) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#73](https://github.com/Remi-Gau/bids2cite/pull/73#issuecomment-1915453227) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +4. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) +5. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +8. 🗣 Commented on [#693](https://github.com/OpenFreeEnergy/openfe/pull/693#issuecomment-1914828292) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#278](https://github.com/OpenFreeEnergy/gufe/pull/278#issuecomment-1914614646) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#958](https://github.com/avaframe/AvaFrame/pull/958#issuecomment-1914532287) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From fa85402b0da209cb28d06afa7526ec2502e463be Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 01:09:03 +0000 Subject: [PATCH 1301/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3c237e91..1fc516f5 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/kartograf/pull/35#issuecomment-1915727357) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -2. 🗣 Commented on [#1456](https://github.com/spacetelescope/jwql/pull/1456#issuecomment-1915576072) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#73](https://github.com/Remi-Gau/bids2cite/pull/73#issuecomment-1915453227) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) -4. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) -5. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -8. 🗣 Commented on [#693](https://github.com/OpenFreeEnergy/openfe/pull/693#issuecomment-1914828292) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#278](https://github.com/OpenFreeEnergy/gufe/pull/278#issuecomment-1914614646) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#958](https://github.com/avaframe/AvaFrame/pull/958#issuecomment-1914532287) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#1058](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1058#issuecomment-1915840058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/kartograf/pull/35#issuecomment-1915727357) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +3. 🗣 Commented on [#1456](https://github.com/spacetelescope/jwql/pull/1456#issuecomment-1915576072) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#73](https://github.com/Remi-Gau/bids2cite/pull/73#issuecomment-1915453227) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +5. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) +6. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +8. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +9. 🗣 Commented on [#693](https://github.com/OpenFreeEnergy/openfe/pull/693#issuecomment-1914828292) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#278](https://github.com/OpenFreeEnergy/gufe/pull/278#issuecomment-1914614646) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From fc7e4e17b405fe460402ad97f58e3d120b1a2d32 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 02:36:59 +0000 Subject: [PATCH 1302/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1fc516f5..cae17b12 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1058](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1058#issuecomment-1915840058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/kartograf/pull/35#issuecomment-1915727357) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -3. 🗣 Commented on [#1456](https://github.com/spacetelescope/jwql/pull/1456#issuecomment-1915576072) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#73](https://github.com/Remi-Gau/bids2cite/pull/73#issuecomment-1915453227) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) -5. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) -6. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -8. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -9. 🗣 Commented on [#693](https://github.com/OpenFreeEnergy/openfe/pull/693#issuecomment-1914828292) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#278](https://github.com/OpenFreeEnergy/gufe/pull/278#issuecomment-1914614646) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#3053](https://github.com/dipy/dipy/pull/3053#issuecomment-1915934169) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#1058](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1058#issuecomment-1915840058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/kartograf/pull/35#issuecomment-1915727357) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +4. 🗣 Commented on [#1456](https://github.com/spacetelescope/jwql/pull/1456#issuecomment-1915576072) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#73](https://github.com/Remi-Gau/bids2cite/pull/73#issuecomment-1915453227) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +6. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) +7. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +10. 🗣 Commented on [#693](https://github.com/OpenFreeEnergy/openfe/pull/693#issuecomment-1914828292) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 8c65dc081d76a43ee7cf964d03532c8966380e42 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 05:37:11 +0000 Subject: [PATCH 1303/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cae17b12..5dffd75e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3053](https://github.com/dipy/dipy/pull/3053#issuecomment-1915934169) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#1058](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1058#issuecomment-1915840058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/kartograf/pull/35#issuecomment-1915727357) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -4. 🗣 Commented on [#1456](https://github.com/spacetelescope/jwql/pull/1456#issuecomment-1915576072) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#73](https://github.com/Remi-Gau/bids2cite/pull/73#issuecomment-1915453227) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) -6. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) -7. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -10. 🗣 Commented on [#693](https://github.com/OpenFreeEnergy/openfe/pull/693#issuecomment-1914828292) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#279](https://github.com/OpenFreeEnergy/gufe/pull/279#issuecomment-1916107623) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#3053](https://github.com/dipy/dipy/pull/3053#issuecomment-1915934169) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#1058](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1058#issuecomment-1915840058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/kartograf/pull/35#issuecomment-1915727357) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +5. 🗣 Commented on [#1456](https://github.com/spacetelescope/jwql/pull/1456#issuecomment-1915576072) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#73](https://github.com/Remi-Gau/bids2cite/pull/73#issuecomment-1915453227) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +7. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) +8. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) From f55b3f60f47119b9140937f0b9d314b80cf64241 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 09:16:16 +0000 Subject: [PATCH 1304/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5dffd75e..9d60aed8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#279](https://github.com/OpenFreeEnergy/gufe/pull/279#issuecomment-1916107623) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#3053](https://github.com/dipy/dipy/pull/3053#issuecomment-1915934169) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#1058](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1058#issuecomment-1915840058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/kartograf/pull/35#issuecomment-1915727357) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -5. 🗣 Commented on [#1456](https://github.com/spacetelescope/jwql/pull/1456#issuecomment-1915576072) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#73](https://github.com/Remi-Gau/bids2cite/pull/73#issuecomment-1915453227) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) -7. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) -8. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#522](https://github.com/aramis-lab/clinicadl/pull/522#issuecomment-1914868471) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +1. 🗣 Commented on [#276](https://github.com/OpenFreeEnergy/gufe/pull/276#issuecomment-1916360273) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#279](https://github.com/OpenFreeEnergy/gufe/pull/279#issuecomment-1916107623) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#3053](https://github.com/dipy/dipy/pull/3053#issuecomment-1915934169) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#1058](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1058#issuecomment-1915840058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/kartograf/pull/35#issuecomment-1915727357) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +6. 🗣 Commented on [#1456](https://github.com/spacetelescope/jwql/pull/1456#issuecomment-1915576072) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#73](https://github.com/Remi-Gau/bids2cite/pull/73#issuecomment-1915453227) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +8. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) +9. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) From c8064dbc9589b1043723939165f5f59aa680c6d9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 13:17:18 +0000 Subject: [PATCH 1305/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9d60aed8..45a1439d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#276](https://github.com/OpenFreeEnergy/gufe/pull/276#issuecomment-1916360273) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#279](https://github.com/OpenFreeEnergy/gufe/pull/279#issuecomment-1916107623) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#3053](https://github.com/dipy/dipy/pull/3053#issuecomment-1915934169) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#1058](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1058#issuecomment-1915840058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/kartograf/pull/35#issuecomment-1915727357) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -6. 🗣 Commented on [#1456](https://github.com/spacetelescope/jwql/pull/1456#issuecomment-1915576072) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#73](https://github.com/Remi-Gau/bids2cite/pull/73#issuecomment-1915453227) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) -8. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) -9. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#262](https://github.com/aimclub/GOLEM/pull/262#issuecomment-1915053626) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +1. 🗣 Commented on [#695](https://github.com/OpenFreeEnergy/openfe/pull/695#issuecomment-1916795482) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#276](https://github.com/OpenFreeEnergy/gufe/pull/276#issuecomment-1916360273) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#279](https://github.com/OpenFreeEnergy/gufe/pull/279#issuecomment-1916107623) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#3053](https://github.com/dipy/dipy/pull/3053#issuecomment-1915934169) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#1058](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1058#issuecomment-1915840058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/kartograf/pull/35#issuecomment-1915727357) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +7. 🗣 Commented on [#1456](https://github.com/spacetelescope/jwql/pull/1456#issuecomment-1915576072) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#73](https://github.com/Remi-Gau/bids2cite/pull/73#issuecomment-1915453227) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +9. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) +10. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 23e5d966beba292f90ff1b3cfe107c36cfb5bb12 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 14:14:20 +0000 Subject: [PATCH 1306/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 45a1439d..a4f0e570 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#695](https://github.com/OpenFreeEnergy/openfe/pull/695#issuecomment-1916795482) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#276](https://github.com/OpenFreeEnergy/gufe/pull/276#issuecomment-1916360273) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#279](https://github.com/OpenFreeEnergy/gufe/pull/279#issuecomment-1916107623) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#3053](https://github.com/dipy/dipy/pull/3053#issuecomment-1915934169) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#1058](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1058#issuecomment-1915840058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/kartograf/pull/35#issuecomment-1915727357) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -7. 🗣 Commented on [#1456](https://github.com/spacetelescope/jwql/pull/1456#issuecomment-1915576072) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#73](https://github.com/Remi-Gau/bids2cite/pull/73#issuecomment-1915453227) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) -9. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) -10. 🗣 Commented on [#1455](https://github.com/spacetelescope/jwql/pull/1455#issuecomment-1915290597) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#5435](https://github.com/rhinstaller/anaconda/pull/5435#issuecomment-1916908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#695](https://github.com/OpenFreeEnergy/openfe/pull/695#issuecomment-1916795482) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#276](https://github.com/OpenFreeEnergy/gufe/pull/276#issuecomment-1916360273) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#279](https://github.com/OpenFreeEnergy/gufe/pull/279#issuecomment-1916107623) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#3053](https://github.com/dipy/dipy/pull/3053#issuecomment-1915934169) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#1058](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1058#issuecomment-1915840058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/kartograf/pull/35#issuecomment-1915727357) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +8. 🗣 Commented on [#1456](https://github.com/spacetelescope/jwql/pull/1456#issuecomment-1915576072) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#73](https://github.com/Remi-Gau/bids2cite/pull/73#issuecomment-1915453227) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +10. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) From e001c5938f5b76bc4e9790e0710be3906a975587 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 15:37:08 +0000 Subject: [PATCH 1307/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a4f0e570..f66b72eb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5435](https://github.com/rhinstaller/anaconda/pull/5435#issuecomment-1916908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#695](https://github.com/OpenFreeEnergy/openfe/pull/695#issuecomment-1916795482) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#276](https://github.com/OpenFreeEnergy/gufe/pull/276#issuecomment-1916360273) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#279](https://github.com/OpenFreeEnergy/gufe/pull/279#issuecomment-1916107623) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#3053](https://github.com/dipy/dipy/pull/3053#issuecomment-1915934169) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#1058](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1058#issuecomment-1915840058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/kartograf/pull/35#issuecomment-1915727357) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -8. 🗣 Commented on [#1456](https://github.com/spacetelescope/jwql/pull/1456#issuecomment-1915576072) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#73](https://github.com/Remi-Gau/bids2cite/pull/73#issuecomment-1915453227) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) -10. 🗣 Commented on [#484](https://github.com/oemof/tespy/pull/484#issuecomment-1915353183) in [oemof/tespy](https://github.com/oemof/tespy) +1. 🗣 Commented on [#2736](https://github.com/metabrainz/listenbrainz-server/pull/2736#issuecomment-1917142536) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#590](https://github.com/ExoCTK/exoctk/pull/590#issuecomment-1917129542) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +3. 🗣 Commented on [#5435](https://github.com/rhinstaller/anaconda/pull/5435#issuecomment-1916908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#695](https://github.com/OpenFreeEnergy/openfe/pull/695#issuecomment-1916795482) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#276](https://github.com/OpenFreeEnergy/gufe/pull/276#issuecomment-1916360273) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#279](https://github.com/OpenFreeEnergy/gufe/pull/279#issuecomment-1916107623) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#3053](https://github.com/dipy/dipy/pull/3053#issuecomment-1915934169) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#1058](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1058#issuecomment-1915840058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/kartograf/pull/35#issuecomment-1915727357) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +10. 🗣 Commented on [#1456](https://github.com/spacetelescope/jwql/pull/1456#issuecomment-1915576072) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From edee10dd034fcd360486d8d2574ef8101d807eac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 16:19:44 +0000 Subject: [PATCH 1308/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f66b72eb..8b1c682a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2736](https://github.com/metabrainz/listenbrainz-server/pull/2736#issuecomment-1917142536) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#590](https://github.com/ExoCTK/exoctk/pull/590#issuecomment-1917129542) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -3. 🗣 Commented on [#5435](https://github.com/rhinstaller/anaconda/pull/5435#issuecomment-1916908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#695](https://github.com/OpenFreeEnergy/openfe/pull/695#issuecomment-1916795482) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#276](https://github.com/OpenFreeEnergy/gufe/pull/276#issuecomment-1916360273) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#279](https://github.com/OpenFreeEnergy/gufe/pull/279#issuecomment-1916107623) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#3053](https://github.com/dipy/dipy/pull/3053#issuecomment-1915934169) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#1058](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1058#issuecomment-1915840058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/kartograf/pull/35#issuecomment-1915727357) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -10. 🗣 Commented on [#1456](https://github.com/spacetelescope/jwql/pull/1456#issuecomment-1915576072) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#1299](https://github.com/rpm-software-management/mock/pull/1299#issuecomment-1917376957) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +2. 🗣 Commented on [#2736](https://github.com/metabrainz/listenbrainz-server/pull/2736#issuecomment-1917142536) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#590](https://github.com/ExoCTK/exoctk/pull/590#issuecomment-1917129542) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +4. 🗣 Commented on [#5435](https://github.com/rhinstaller/anaconda/pull/5435#issuecomment-1916908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#695](https://github.com/OpenFreeEnergy/openfe/pull/695#issuecomment-1916795482) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#276](https://github.com/OpenFreeEnergy/gufe/pull/276#issuecomment-1916360273) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#279](https://github.com/OpenFreeEnergy/gufe/pull/279#issuecomment-1916107623) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#3053](https://github.com/dipy/dipy/pull/3053#issuecomment-1915934169) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#1058](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1058#issuecomment-1915840058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/kartograf/pull/35#issuecomment-1915727357) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) From c73e5e31b6f483998ae26ba584cb6387d956f8d0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 16:40:45 +0000 Subject: [PATCH 1309/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8b1c682a..9125ce1e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1299](https://github.com/rpm-software-management/mock/pull/1299#issuecomment-1917376957) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -2. 🗣 Commented on [#2736](https://github.com/metabrainz/listenbrainz-server/pull/2736#issuecomment-1917142536) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#590](https://github.com/ExoCTK/exoctk/pull/590#issuecomment-1917129542) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -4. 🗣 Commented on [#5435](https://github.com/rhinstaller/anaconda/pull/5435#issuecomment-1916908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#695](https://github.com/OpenFreeEnergy/openfe/pull/695#issuecomment-1916795482) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#276](https://github.com/OpenFreeEnergy/gufe/pull/276#issuecomment-1916360273) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#279](https://github.com/OpenFreeEnergy/gufe/pull/279#issuecomment-1916107623) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#3053](https://github.com/dipy/dipy/pull/3053#issuecomment-1915934169) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#1058](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1058#issuecomment-1915840058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/kartograf/pull/35#issuecomment-1915727357) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +1. 🗣 Commented on [#107](https://github.com/Richard-Sti/csiborgtools/pull/107#issuecomment-1917394472) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +2. 🗣 Commented on [#1299](https://github.com/rpm-software-management/mock/pull/1299#issuecomment-1917376957) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +3. 🗣 Commented on [#2736](https://github.com/metabrainz/listenbrainz-server/pull/2736#issuecomment-1917142536) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#590](https://github.com/ExoCTK/exoctk/pull/590#issuecomment-1917129542) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +5. 🗣 Commented on [#5435](https://github.com/rhinstaller/anaconda/pull/5435#issuecomment-1916908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#695](https://github.com/OpenFreeEnergy/openfe/pull/695#issuecomment-1916795482) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#276](https://github.com/OpenFreeEnergy/gufe/pull/276#issuecomment-1916360273) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#279](https://github.com/OpenFreeEnergy/gufe/pull/279#issuecomment-1916107623) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +9. 🗣 Commented on [#3053](https://github.com/dipy/dipy/pull/3053#issuecomment-1915934169) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#1058](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1058#issuecomment-1915840058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 96034b95f48de4ceeac77e5c549a5683744dfa66 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 19:37:10 +0000 Subject: [PATCH 1310/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9125ce1e..41f0606f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#107](https://github.com/Richard-Sti/csiborgtools/pull/107#issuecomment-1917394472) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -2. 🗣 Commented on [#1299](https://github.com/rpm-software-management/mock/pull/1299#issuecomment-1917376957) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -3. 🗣 Commented on [#2736](https://github.com/metabrainz/listenbrainz-server/pull/2736#issuecomment-1917142536) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#590](https://github.com/ExoCTK/exoctk/pull/590#issuecomment-1917129542) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -5. 🗣 Commented on [#5435](https://github.com/rhinstaller/anaconda/pull/5435#issuecomment-1916908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#695](https://github.com/OpenFreeEnergy/openfe/pull/695#issuecomment-1916795482) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#276](https://github.com/OpenFreeEnergy/gufe/pull/276#issuecomment-1916360273) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#279](https://github.com/OpenFreeEnergy/gufe/pull/279#issuecomment-1916107623) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -9. 🗣 Commented on [#3053](https://github.com/dipy/dipy/pull/3053#issuecomment-1915934169) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#1058](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1058#issuecomment-1915840058) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#656](https://github.com/einsteinpy/einsteinpy/pull/656#issuecomment-1917740353) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +2. 🗣 Commented on [#107](https://github.com/Richard-Sti/csiborgtools/pull/107#issuecomment-1917394472) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +3. 🗣 Commented on [#1299](https://github.com/rpm-software-management/mock/pull/1299#issuecomment-1917376957) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +4. 🗣 Commented on [#2736](https://github.com/metabrainz/listenbrainz-server/pull/2736#issuecomment-1917142536) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#590](https://github.com/ExoCTK/exoctk/pull/590#issuecomment-1917129542) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +6. 🗣 Commented on [#5435](https://github.com/rhinstaller/anaconda/pull/5435#issuecomment-1916908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#695](https://github.com/OpenFreeEnergy/openfe/pull/695#issuecomment-1916795482) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#276](https://github.com/OpenFreeEnergy/gufe/pull/276#issuecomment-1916360273) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +9. 🗣 Commented on [#279](https://github.com/OpenFreeEnergy/gufe/pull/279#issuecomment-1916107623) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#3053](https://github.com/dipy/dipy/pull/3053#issuecomment-1915934169) in [dipy/dipy](https://github.com/dipy/dipy) From fd451651fe4d98ce21a1062e1d06fb24ce8dba53 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 22:14:30 +0000 Subject: [PATCH 1311/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 41f0606f..9e828748 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#656](https://github.com/einsteinpy/einsteinpy/pull/656#issuecomment-1917740353) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -2. 🗣 Commented on [#107](https://github.com/Richard-Sti/csiborgtools/pull/107#issuecomment-1917394472) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -3. 🗣 Commented on [#1299](https://github.com/rpm-software-management/mock/pull/1299#issuecomment-1917376957) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -4. 🗣 Commented on [#2736](https://github.com/metabrainz/listenbrainz-server/pull/2736#issuecomment-1917142536) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#590](https://github.com/ExoCTK/exoctk/pull/590#issuecomment-1917129542) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -6. 🗣 Commented on [#5435](https://github.com/rhinstaller/anaconda/pull/5435#issuecomment-1916908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#695](https://github.com/OpenFreeEnergy/openfe/pull/695#issuecomment-1916795482) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#276](https://github.com/OpenFreeEnergy/gufe/pull/276#issuecomment-1916360273) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -9. 🗣 Commented on [#279](https://github.com/OpenFreeEnergy/gufe/pull/279#issuecomment-1916107623) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#3053](https://github.com/dipy/dipy/pull/3053#issuecomment-1915934169) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#591](https://github.com/ExoCTK/exoctk/pull/591#issuecomment-1917937108) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +2. 🗣 Commented on [#656](https://github.com/einsteinpy/einsteinpy/pull/656#issuecomment-1917740353) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +3. 🗣 Commented on [#107](https://github.com/Richard-Sti/csiborgtools/pull/107#issuecomment-1917394472) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +4. 🗣 Commented on [#1299](https://github.com/rpm-software-management/mock/pull/1299#issuecomment-1917376957) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +5. 🗣 Commented on [#2736](https://github.com/metabrainz/listenbrainz-server/pull/2736#issuecomment-1917142536) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#590](https://github.com/ExoCTK/exoctk/pull/590#issuecomment-1917129542) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +7. 🗣 Commented on [#5435](https://github.com/rhinstaller/anaconda/pull/5435#issuecomment-1916908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#695](https://github.com/OpenFreeEnergy/openfe/pull/695#issuecomment-1916795482) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#276](https://github.com/OpenFreeEnergy/gufe/pull/276#issuecomment-1916360273) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#279](https://github.com/OpenFreeEnergy/gufe/pull/279#issuecomment-1916107623) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From 09f42145c4f4ea242b79afa1c3572c0003d40a7b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 10:16:41 +0000 Subject: [PATCH 1312/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9e828748..b2a22fdb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#591](https://github.com/ExoCTK/exoctk/pull/591#issuecomment-1917937108) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -2. 🗣 Commented on [#656](https://github.com/einsteinpy/einsteinpy/pull/656#issuecomment-1917740353) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -3. 🗣 Commented on [#107](https://github.com/Richard-Sti/csiborgtools/pull/107#issuecomment-1917394472) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -4. 🗣 Commented on [#1299](https://github.com/rpm-software-management/mock/pull/1299#issuecomment-1917376957) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -5. 🗣 Commented on [#2736](https://github.com/metabrainz/listenbrainz-server/pull/2736#issuecomment-1917142536) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#590](https://github.com/ExoCTK/exoctk/pull/590#issuecomment-1917129542) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -7. 🗣 Commented on [#5435](https://github.com/rhinstaller/anaconda/pull/5435#issuecomment-1916908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#695](https://github.com/OpenFreeEnergy/openfe/pull/695#issuecomment-1916795482) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#276](https://github.com/OpenFreeEnergy/gufe/pull/276#issuecomment-1916360273) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#279](https://github.com/OpenFreeEnergy/gufe/pull/279#issuecomment-1916107623) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#5432](https://github.com/rhinstaller/anaconda/pull/5432#issuecomment-1918762787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#591](https://github.com/ExoCTK/exoctk/pull/591#issuecomment-1917937108) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +3. 🗣 Commented on [#656](https://github.com/einsteinpy/einsteinpy/pull/656#issuecomment-1917740353) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +4. 🗣 Commented on [#107](https://github.com/Richard-Sti/csiborgtools/pull/107#issuecomment-1917394472) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +5. 🗣 Commented on [#1299](https://github.com/rpm-software-management/mock/pull/1299#issuecomment-1917376957) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +6. 🗣 Commented on [#2736](https://github.com/metabrainz/listenbrainz-server/pull/2736#issuecomment-1917142536) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#590](https://github.com/ExoCTK/exoctk/pull/590#issuecomment-1917129542) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +8. 🗣 Commented on [#5435](https://github.com/rhinstaller/anaconda/pull/5435#issuecomment-1916908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#695](https://github.com/OpenFreeEnergy/openfe/pull/695#issuecomment-1916795482) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#276](https://github.com/OpenFreeEnergy/gufe/pull/276#issuecomment-1916360273) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From 0ca69acfadfb7cdffea0c60b4569f117e7c3eb43 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 11:12:44 +0000 Subject: [PATCH 1313/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b2a22fdb..b40fc770 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5432](https://github.com/rhinstaller/anaconda/pull/5432#issuecomment-1918762787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#591](https://github.com/ExoCTK/exoctk/pull/591#issuecomment-1917937108) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -3. 🗣 Commented on [#656](https://github.com/einsteinpy/einsteinpy/pull/656#issuecomment-1917740353) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -4. 🗣 Commented on [#107](https://github.com/Richard-Sti/csiborgtools/pull/107#issuecomment-1917394472) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -5. 🗣 Commented on [#1299](https://github.com/rpm-software-management/mock/pull/1299#issuecomment-1917376957) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -6. 🗣 Commented on [#2736](https://github.com/metabrainz/listenbrainz-server/pull/2736#issuecomment-1917142536) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#590](https://github.com/ExoCTK/exoctk/pull/590#issuecomment-1917129542) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -8. 🗣 Commented on [#5435](https://github.com/rhinstaller/anaconda/pull/5435#issuecomment-1916908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#695](https://github.com/OpenFreeEnergy/openfe/pull/695#issuecomment-1916795482) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#276](https://github.com/OpenFreeEnergy/gufe/pull/276#issuecomment-1916360273) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_sex_check/pull/1#issuecomment-1918864269) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +2. 🗣 Commented on [#83](https://github.com/eastgenomics/eris/pull/83#issuecomment-1918843397) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#5432](https://github.com/rhinstaller/anaconda/pull/5432#issuecomment-1918762787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#591](https://github.com/ExoCTK/exoctk/pull/591#issuecomment-1917937108) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +5. 🗣 Commented on [#656](https://github.com/einsteinpy/einsteinpy/pull/656#issuecomment-1917740353) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +6. 🗣 Commented on [#107](https://github.com/Richard-Sti/csiborgtools/pull/107#issuecomment-1917394472) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +7. 🗣 Commented on [#1299](https://github.com/rpm-software-management/mock/pull/1299#issuecomment-1917376957) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +8. 🗣 Commented on [#2736](https://github.com/metabrainz/listenbrainz-server/pull/2736#issuecomment-1917142536) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#590](https://github.com/ExoCTK/exoctk/pull/590#issuecomment-1917129542) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +10. 🗣 Commented on [#5435](https://github.com/rhinstaller/anaconda/pull/5435#issuecomment-1916908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From d1a6661f6dc96284cf6e4a6afc615440be355299 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 12:28:45 +0000 Subject: [PATCH 1314/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b40fc770..ba33c212 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_sex_check/pull/1#issuecomment-1918864269) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -2. 🗣 Commented on [#83](https://github.com/eastgenomics/eris/pull/83#issuecomment-1918843397) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#5432](https://github.com/rhinstaller/anaconda/pull/5432#issuecomment-1918762787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#591](https://github.com/ExoCTK/exoctk/pull/591#issuecomment-1917937108) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -5. 🗣 Commented on [#656](https://github.com/einsteinpy/einsteinpy/pull/656#issuecomment-1917740353) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -6. 🗣 Commented on [#107](https://github.com/Richard-Sti/csiborgtools/pull/107#issuecomment-1917394472) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -7. 🗣 Commented on [#1299](https://github.com/rpm-software-management/mock/pull/1299#issuecomment-1917376957) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -8. 🗣 Commented on [#2736](https://github.com/metabrainz/listenbrainz-server/pull/2736#issuecomment-1917142536) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#590](https://github.com/ExoCTK/exoctk/pull/590#issuecomment-1917129542) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -10. 🗣 Commented on [#5435](https://github.com/rhinstaller/anaconda/pull/5435#issuecomment-1916908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +2. 🗣 Commented on [#959](https://github.com/avaframe/AvaFrame/pull/959#issuecomment-1918939500) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_sex_check/pull/1#issuecomment-1918864269) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +4. 🗣 Commented on [#83](https://github.com/eastgenomics/eris/pull/83#issuecomment-1918843397) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#5432](https://github.com/rhinstaller/anaconda/pull/5432#issuecomment-1918762787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#591](https://github.com/ExoCTK/exoctk/pull/591#issuecomment-1917937108) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +7. 🗣 Commented on [#656](https://github.com/einsteinpy/einsteinpy/pull/656#issuecomment-1917740353) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +8. 🗣 Commented on [#107](https://github.com/Richard-Sti/csiborgtools/pull/107#issuecomment-1917394472) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +9. 🗣 Commented on [#1299](https://github.com/rpm-software-management/mock/pull/1299#issuecomment-1917376957) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +10. 🗣 Commented on [#2736](https://github.com/metabrainz/listenbrainz-server/pull/2736#issuecomment-1917142536) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 7dd95ad97ce96a9ec341a364f584ac09e1362ca5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 13:17:04 +0000 Subject: [PATCH 1315/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ba33c212..68e3eb3e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) -2. 🗣 Commented on [#959](https://github.com/avaframe/AvaFrame/pull/959#issuecomment-1918939500) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_sex_check/pull/1#issuecomment-1918864269) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -4. 🗣 Commented on [#83](https://github.com/eastgenomics/eris/pull/83#issuecomment-1918843397) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#5432](https://github.com/rhinstaller/anaconda/pull/5432#issuecomment-1918762787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#591](https://github.com/ExoCTK/exoctk/pull/591#issuecomment-1917937108) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -7. 🗣 Commented on [#656](https://github.com/einsteinpy/einsteinpy/pull/656#issuecomment-1917740353) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -8. 🗣 Commented on [#107](https://github.com/Richard-Sti/csiborgtools/pull/107#issuecomment-1917394472) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -9. 🗣 Commented on [#1299](https://github.com/rpm-software-management/mock/pull/1299#issuecomment-1917376957) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -10. 🗣 Commented on [#2736](https://github.com/metabrainz/listenbrainz-server/pull/2736#issuecomment-1917142536) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +2. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +3. 🗣 Commented on [#959](https://github.com/avaframe/AvaFrame/pull/959#issuecomment-1918939500) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_sex_check/pull/1#issuecomment-1918864269) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +5. 🗣 Commented on [#83](https://github.com/eastgenomics/eris/pull/83#issuecomment-1918843397) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#5432](https://github.com/rhinstaller/anaconda/pull/5432#issuecomment-1918762787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#591](https://github.com/ExoCTK/exoctk/pull/591#issuecomment-1917937108) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +8. 🗣 Commented on [#656](https://github.com/einsteinpy/einsteinpy/pull/656#issuecomment-1917740353) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +9. 🗣 Commented on [#107](https://github.com/Richard-Sti/csiborgtools/pull/107#issuecomment-1917394472) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +10. 🗣 Commented on [#1299](https://github.com/rpm-software-management/mock/pull/1299#issuecomment-1917376957) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) From 618fc8fce46e1053d921f40acc1328977a3654d6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 14:13:57 +0000 Subject: [PATCH 1316/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 68e3eb3e..77268497 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -2. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) -3. 🗣 Commented on [#959](https://github.com/avaframe/AvaFrame/pull/959#issuecomment-1918939500) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_sex_check/pull/1#issuecomment-1918864269) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -5. 🗣 Commented on [#83](https://github.com/eastgenomics/eris/pull/83#issuecomment-1918843397) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#5432](https://github.com/rhinstaller/anaconda/pull/5432#issuecomment-1918762787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#591](https://github.com/ExoCTK/exoctk/pull/591#issuecomment-1917937108) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -8. 🗣 Commented on [#656](https://github.com/einsteinpy/einsteinpy/pull/656#issuecomment-1917740353) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -9. 🗣 Commented on [#107](https://github.com/Richard-Sti/csiborgtools/pull/107#issuecomment-1917394472) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -10. 🗣 Commented on [#1299](https://github.com/rpm-software-management/mock/pull/1299#issuecomment-1917376957) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +1. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +2. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +3. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +4. 🗣 Commented on [#959](https://github.com/avaframe/AvaFrame/pull/959#issuecomment-1918939500) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_sex_check/pull/1#issuecomment-1918864269) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +6. 🗣 Commented on [#83](https://github.com/eastgenomics/eris/pull/83#issuecomment-1918843397) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#5432](https://github.com/rhinstaller/anaconda/pull/5432#issuecomment-1918762787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#591](https://github.com/ExoCTK/exoctk/pull/591#issuecomment-1917937108) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +9. 🗣 Commented on [#656](https://github.com/einsteinpy/einsteinpy/pull/656#issuecomment-1917740353) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +10. 🗣 Commented on [#107](https://github.com/Richard-Sti/csiborgtools/pull/107#issuecomment-1917394472) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) From 404bc51597f30260a5de65f69c8913689597e689 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 17:12:52 +0000 Subject: [PATCH 1317/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 77268497..4da43c38 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -2. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -3. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) -4. 🗣 Commented on [#959](https://github.com/avaframe/AvaFrame/pull/959#issuecomment-1918939500) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_sex_check/pull/1#issuecomment-1918864269) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -6. 🗣 Commented on [#83](https://github.com/eastgenomics/eris/pull/83#issuecomment-1918843397) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#5432](https://github.com/rhinstaller/anaconda/pull/5432#issuecomment-1918762787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#591](https://github.com/ExoCTK/exoctk/pull/591#issuecomment-1917937108) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -9. 🗣 Commented on [#656](https://github.com/einsteinpy/einsteinpy/pull/656#issuecomment-1917740353) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -10. 🗣 Commented on [#107](https://github.com/Richard-Sti/csiborgtools/pull/107#issuecomment-1917394472) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +1. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +3. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +4. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +5. 🗣 Commented on [#959](https://github.com/avaframe/AvaFrame/pull/959#issuecomment-1918939500) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_sex_check/pull/1#issuecomment-1918864269) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +7. 🗣 Commented on [#83](https://github.com/eastgenomics/eris/pull/83#issuecomment-1918843397) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#5432](https://github.com/rhinstaller/anaconda/pull/5432#issuecomment-1918762787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#591](https://github.com/ExoCTK/exoctk/pull/591#issuecomment-1917937108) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +10. 🗣 Commented on [#656](https://github.com/einsteinpy/einsteinpy/pull/656#issuecomment-1917740353) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) From 2217c8a7749602afbe3b92263007c979760f8065 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 17:37:08 +0000 Subject: [PATCH 1318/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4da43c38..4c8badc0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -3. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -4. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) -5. 🗣 Commented on [#959](https://github.com/avaframe/AvaFrame/pull/959#issuecomment-1918939500) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_sex_check/pull/1#issuecomment-1918864269) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -7. 🗣 Commented on [#83](https://github.com/eastgenomics/eris/pull/83#issuecomment-1918843397) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#5432](https://github.com/rhinstaller/anaconda/pull/5432#issuecomment-1918762787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#591](https://github.com/ExoCTK/exoctk/pull/591#issuecomment-1917937108) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -10. 🗣 Commented on [#656](https://github.com/einsteinpy/einsteinpy/pull/656#issuecomment-1917740353) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +1. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +2. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +4. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +5. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +6. 🗣 Commented on [#959](https://github.com/avaframe/AvaFrame/pull/959#issuecomment-1918939500) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_sex_check/pull/1#issuecomment-1918864269) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +8. 🗣 Commented on [#83](https://github.com/eastgenomics/eris/pull/83#issuecomment-1918843397) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#5432](https://github.com/rhinstaller/anaconda/pull/5432#issuecomment-1918762787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#591](https://github.com/ExoCTK/exoctk/pull/591#issuecomment-1917937108) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) From ed29b99b1820d2e08e9ae50dcd37f147369246f2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 18:15:37 +0000 Subject: [PATCH 1319/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4c8badc0..4743da46 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -2. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -4. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -5. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) -6. 🗣 Commented on [#959](https://github.com/avaframe/AvaFrame/pull/959#issuecomment-1918939500) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_sex_check/pull/1#issuecomment-1918864269) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -8. 🗣 Commented on [#83](https://github.com/eastgenomics/eris/pull/83#issuecomment-1918843397) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#5432](https://github.com/rhinstaller/anaconda/pull/5432#issuecomment-1918762787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#591](https://github.com/ExoCTK/exoctk/pull/591#issuecomment-1917937108) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +1. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +3. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +5. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +6. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +7. 🗣 Commented on [#959](https://github.com/avaframe/AvaFrame/pull/959#issuecomment-1918939500) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_sex_check/pull/1#issuecomment-1918864269) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +9. 🗣 Commented on [#83](https://github.com/eastgenomics/eris/pull/83#issuecomment-1918843397) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#5432](https://github.com/rhinstaller/anaconda/pull/5432#issuecomment-1918762787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From f6347c98d335972effe2d2c6fba0fbdbba0a738b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 18:37:12 +0000 Subject: [PATCH 1320/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4743da46..fda86a17 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -3. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -5. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -6. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) -7. 🗣 Commented on [#959](https://github.com/avaframe/AvaFrame/pull/959#issuecomment-1918939500) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_sex_check/pull/1#issuecomment-1918864269) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -9. 🗣 Commented on [#83](https://github.com/eastgenomics/eris/pull/83#issuecomment-1918843397) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#5432](https://github.com/rhinstaller/anaconda/pull/5432#issuecomment-1918762787) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#1059](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1059#issuecomment-1919678807) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +4. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +6. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +7. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +8. 🗣 Commented on [#959](https://github.com/avaframe/AvaFrame/pull/959#issuecomment-1918939500) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_sex_check/pull/1#issuecomment-1918864269) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +10. 🗣 Commented on [#83](https://github.com/eastgenomics/eris/pull/83#issuecomment-1918843397) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 6d1a2cf1e9be8fb67e8f522a720b5214c9d74d40 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 19:11:41 +0000 Subject: [PATCH 1321/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fda86a17..5f014e26 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1059](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1059#issuecomment-1919678807) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -4. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -6. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -7. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) -8. 🗣 Commented on [#959](https://github.com/avaframe/AvaFrame/pull/959#issuecomment-1918939500) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_sex_check/pull/1#issuecomment-1918864269) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -10. 🗣 Commented on [#83](https://github.com/eastgenomics/eris/pull/83#issuecomment-1918843397) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#613](https://github.com/HEXRD/hexrd/pull/613#issuecomment-1919737544) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#1059](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1059#issuecomment-1919678807) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +5. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +7. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +8. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +9. 🗣 Commented on [#959](https://github.com/avaframe/AvaFrame/pull/959#issuecomment-1918939500) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_sex_check/pull/1#issuecomment-1918864269) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) From c6fc25d5d68b561ef9c6788257f517673677a950 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 21:15:13 +0000 Subject: [PATCH 1322/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5f014e26..ba0efac1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#613](https://github.com/HEXRD/hexrd/pull/613#issuecomment-1919737544) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#1059](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1059#issuecomment-1919678807) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -5. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -7. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -8. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) -9. 🗣 Commented on [#959](https://github.com/avaframe/AvaFrame/pull/959#issuecomment-1918939500) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_sex_check/pull/1#issuecomment-1918864269) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +1. 🗣 Commented on [#2748](https://github.com/metabrainz/listenbrainz-server/pull/2748#issuecomment-1919966549) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#613](https://github.com/HEXRD/hexrd/pull/613#issuecomment-1919737544) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#1059](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1059#issuecomment-1919678807) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +6. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +8. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +9. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +10. 🗣 Commented on [#959](https://github.com/avaframe/AvaFrame/pull/959#issuecomment-1918939500) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From 2354abb8acbb16a08d2b60ebe4b61d11cbf0ce00 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 01:13:11 +0000 Subject: [PATCH 1323/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ba0efac1..c105e2a8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2748](https://github.com/metabrainz/listenbrainz-server/pull/2748#issuecomment-1919966549) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#613](https://github.com/HEXRD/hexrd/pull/613#issuecomment-1919737544) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#1059](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1059#issuecomment-1919678807) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -6. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -8. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -9. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) -10. 🗣 Commented on [#959](https://github.com/avaframe/AvaFrame/pull/959#issuecomment-1918939500) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#1](https://github.com/GenevieveBuckley/napari-animation/pull/1#issuecomment-1920226931) in [GenevieveBuckley/napari-animation](https://github.com/GenevieveBuckley/napari-animation) +2. 🗣 Commented on [#2748](https://github.com/metabrainz/listenbrainz-server/pull/2748#issuecomment-1919966549) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#613](https://github.com/HEXRD/hexrd/pull/613#issuecomment-1919737544) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +4. 🗣 Commented on [#1059](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1059#issuecomment-1919678807) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +7. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +9. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +10. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) From 431ba2152ddd01ce2ed0ee9d21f0d447e3717a96 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 08:19:26 +0000 Subject: [PATCH 1324/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c105e2a8..ba36db34 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/GenevieveBuckley/napari-animation/pull/1#issuecomment-1920226931) in [GenevieveBuckley/napari-animation](https://github.com/GenevieveBuckley/napari-animation) -2. 🗣 Commented on [#2748](https://github.com/metabrainz/listenbrainz-server/pull/2748#issuecomment-1919966549) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#613](https://github.com/HEXRD/hexrd/pull/613#issuecomment-1919737544) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -4. 🗣 Commented on [#1059](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1059#issuecomment-1919678807) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -7. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -9. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -10. 🗣 Commented on [#1](https://github.com/Seluj78/shellhub-python/pull/1#issuecomment-1918970680) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +1. 🗣 Commented on [#248](https://github.com/CartoonFan/lutris/pull/248#issuecomment-1920732556) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#1](https://github.com/GenevieveBuckley/napari-animation/pull/1#issuecomment-1920226931) in [GenevieveBuckley/napari-animation](https://github.com/GenevieveBuckley/napari-animation) +3. 🗣 Commented on [#2748](https://github.com/metabrainz/listenbrainz-server/pull/2748#issuecomment-1919966549) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#613](https://github.com/HEXRD/hexrd/pull/613#issuecomment-1919737544) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#1059](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1059#issuecomment-1919678807) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +8. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +10. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) From 3af6deb481ec9ff46dce223c672a3362e197b5a7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 10:37:09 +0000 Subject: [PATCH 1325/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ba36db34..17279a2a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#248](https://github.com/CartoonFan/lutris/pull/248#issuecomment-1920732556) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#1](https://github.com/GenevieveBuckley/napari-animation/pull/1#issuecomment-1920226931) in [GenevieveBuckley/napari-animation](https://github.com/GenevieveBuckley/napari-animation) -3. 🗣 Commented on [#2748](https://github.com/metabrainz/listenbrainz-server/pull/2748#issuecomment-1919966549) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#613](https://github.com/HEXRD/hexrd/pull/613#issuecomment-1919737544) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#1059](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1059#issuecomment-1919678807) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -8. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -10. 🗣 Commented on [#167](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/167#issuecomment-1919065787) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +1. 🗣 Commented on [#1633](https://github.com/odlgroup/odl/pull/1633#issuecomment-1920995686) in [odlgroup/odl](https://github.com/odlgroup/odl) +2. 🗣 Commented on [#248](https://github.com/CartoonFan/lutris/pull/248#issuecomment-1920732556) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#1](https://github.com/GenevieveBuckley/napari-animation/pull/1#issuecomment-1920226931) in [GenevieveBuckley/napari-animation](https://github.com/GenevieveBuckley/napari-animation) +4. 🗣 Commented on [#2748](https://github.com/metabrainz/listenbrainz-server/pull/2748#issuecomment-1919966549) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#613](https://github.com/HEXRD/hexrd/pull/613#issuecomment-1919737544) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +6. 🗣 Commented on [#1059](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1059#issuecomment-1919678807) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +9. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) From 23bf48a69e251df543250dfb56c368c5b9a335f9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 13:17:18 +0000 Subject: [PATCH 1326/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 17279a2a..231f5f25 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1633](https://github.com/odlgroup/odl/pull/1633#issuecomment-1920995686) in [odlgroup/odl](https://github.com/odlgroup/odl) -2. 🗣 Commented on [#248](https://github.com/CartoonFan/lutris/pull/248#issuecomment-1920732556) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#1](https://github.com/GenevieveBuckley/napari-animation/pull/1#issuecomment-1920226931) in [GenevieveBuckley/napari-animation](https://github.com/GenevieveBuckley/napari-animation) -4. 🗣 Commented on [#2748](https://github.com/metabrainz/listenbrainz-server/pull/2748#issuecomment-1919966549) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#613](https://github.com/HEXRD/hexrd/pull/613#issuecomment-1919737544) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -6. 🗣 Commented on [#1059](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1059#issuecomment-1919678807) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -9. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#168](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/168#issuecomment-1919185264) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +1. 🗣 Commented on [#1301](https://github.com/rpm-software-management/mock/pull/1301#issuecomment-1921271584) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +2. 🗣 Commented on [#1633](https://github.com/odlgroup/odl/pull/1633#issuecomment-1920995686) in [odlgroup/odl](https://github.com/odlgroup/odl) +3. 🗣 Commented on [#248](https://github.com/CartoonFan/lutris/pull/248#issuecomment-1920732556) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#1](https://github.com/GenevieveBuckley/napari-animation/pull/1#issuecomment-1920226931) in [GenevieveBuckley/napari-animation](https://github.com/GenevieveBuckley/napari-animation) +5. 🗣 Commented on [#2748](https://github.com/metabrainz/listenbrainz-server/pull/2748#issuecomment-1919966549) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#613](https://github.com/HEXRD/hexrd/pull/613#issuecomment-1919737544) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +7. 🗣 Commented on [#1059](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1059#issuecomment-1919678807) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +10. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From c36b642ff2f4b24ba294aadb778e422bedd8f6ec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 14:14:33 +0000 Subject: [PATCH 1327/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 231f5f25..ab826457 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1301](https://github.com/rpm-software-management/mock/pull/1301#issuecomment-1921271584) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -2. 🗣 Commented on [#1633](https://github.com/odlgroup/odl/pull/1633#issuecomment-1920995686) in [odlgroup/odl](https://github.com/odlgroup/odl) -3. 🗣 Commented on [#248](https://github.com/CartoonFan/lutris/pull/248#issuecomment-1920732556) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#1](https://github.com/GenevieveBuckley/napari-animation/pull/1#issuecomment-1920226931) in [GenevieveBuckley/napari-animation](https://github.com/GenevieveBuckley/napari-animation) -5. 🗣 Commented on [#2748](https://github.com/metabrainz/listenbrainz-server/pull/2748#issuecomment-1919966549) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#613](https://github.com/HEXRD/hexrd/pull/613#issuecomment-1919737544) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -7. 🗣 Commented on [#1059](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1059#issuecomment-1919678807) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -10. 🗣 Commented on [#2747](https://github.com/metabrainz/listenbrainz-server/pull/2747#issuecomment-1919538359) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1634](https://github.com/odlgroup/odl/pull/1634#issuecomment-1921352185) in [odlgroup/odl](https://github.com/odlgroup/odl) +2. 🗣 Commented on [#1301](https://github.com/rpm-software-management/mock/pull/1301#issuecomment-1921271584) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +3. 🗣 Commented on [#1633](https://github.com/odlgroup/odl/pull/1633#issuecomment-1920995686) in [odlgroup/odl](https://github.com/odlgroup/odl) +4. 🗣 Commented on [#248](https://github.com/CartoonFan/lutris/pull/248#issuecomment-1920732556) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#1](https://github.com/GenevieveBuckley/napari-animation/pull/1#issuecomment-1920226931) in [GenevieveBuckley/napari-animation](https://github.com/GenevieveBuckley/napari-animation) +6. 🗣 Commented on [#2748](https://github.com/metabrainz/listenbrainz-server/pull/2748#issuecomment-1919966549) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#613](https://github.com/HEXRD/hexrd/pull/613#issuecomment-1919737544) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +8. 🗣 Commented on [#1059](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1059#issuecomment-1919678807) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) From e6d520e7b21ab5fb079c37fec512608e5080debe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 14:37:13 +0000 Subject: [PATCH 1328/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ab826457..749c833e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1634](https://github.com/odlgroup/odl/pull/1634#issuecomment-1921352185) in [odlgroup/odl](https://github.com/odlgroup/odl) -2. 🗣 Commented on [#1301](https://github.com/rpm-software-management/mock/pull/1301#issuecomment-1921271584) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -3. 🗣 Commented on [#1633](https://github.com/odlgroup/odl/pull/1633#issuecomment-1920995686) in [odlgroup/odl](https://github.com/odlgroup/odl) -4. 🗣 Commented on [#248](https://github.com/CartoonFan/lutris/pull/248#issuecomment-1920732556) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#1](https://github.com/GenevieveBuckley/napari-animation/pull/1#issuecomment-1920226931) in [GenevieveBuckley/napari-animation](https://github.com/GenevieveBuckley/napari-animation) -6. 🗣 Commented on [#2748](https://github.com/metabrainz/listenbrainz-server/pull/2748#issuecomment-1919966549) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#613](https://github.com/HEXRD/hexrd/pull/613#issuecomment-1919737544) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -8. 🗣 Commented on [#1059](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1059#issuecomment-1919678807) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#300](https://github.com/AdvancedPhotonSource/tike/pull/300#issuecomment-1919554164) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +1. 🗣 Commented on [#1476](https://github.com/openSUSE/osc/pull/1476#issuecomment-1921448953) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#1634](https://github.com/odlgroup/odl/pull/1634#issuecomment-1921352185) in [odlgroup/odl](https://github.com/odlgroup/odl) +3. 🗣 Commented on [#1301](https://github.com/rpm-software-management/mock/pull/1301#issuecomment-1921271584) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +4. 🗣 Commented on [#1633](https://github.com/odlgroup/odl/pull/1633#issuecomment-1920995686) in [odlgroup/odl](https://github.com/odlgroup/odl) +5. 🗣 Commented on [#248](https://github.com/CartoonFan/lutris/pull/248#issuecomment-1920732556) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#1](https://github.com/GenevieveBuckley/napari-animation/pull/1#issuecomment-1920226931) in [GenevieveBuckley/napari-animation](https://github.com/GenevieveBuckley/napari-animation) +7. 🗣 Commented on [#2748](https://github.com/metabrainz/listenbrainz-server/pull/2748#issuecomment-1919966549) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#613](https://github.com/HEXRD/hexrd/pull/613#issuecomment-1919737544) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +9. 🗣 Commented on [#1059](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1059#issuecomment-1919678807) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From e8b5a5be78f61aa4f31505fdabb2365708078ed8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 15:15:21 +0000 Subject: [PATCH 1329/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 749c833e..84ef0ad1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1476](https://github.com/openSUSE/osc/pull/1476#issuecomment-1921448953) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#1634](https://github.com/odlgroup/odl/pull/1634#issuecomment-1921352185) in [odlgroup/odl](https://github.com/odlgroup/odl) -3. 🗣 Commented on [#1301](https://github.com/rpm-software-management/mock/pull/1301#issuecomment-1921271584) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -4. 🗣 Commented on [#1633](https://github.com/odlgroup/odl/pull/1633#issuecomment-1920995686) in [odlgroup/odl](https://github.com/odlgroup/odl) -5. 🗣 Commented on [#248](https://github.com/CartoonFan/lutris/pull/248#issuecomment-1920732556) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#1](https://github.com/GenevieveBuckley/napari-animation/pull/1#issuecomment-1920226931) in [GenevieveBuckley/napari-animation](https://github.com/GenevieveBuckley/napari-animation) -7. 🗣 Commented on [#2748](https://github.com/metabrainz/listenbrainz-server/pull/2748#issuecomment-1919966549) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#613](https://github.com/HEXRD/hexrd/pull/613#issuecomment-1919737544) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -9. 🗣 Commented on [#1059](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1059#issuecomment-1919678807) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#84](https://github.com/eastgenomics/eris/pull/84#issuecomment-1919594905) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/1#issuecomment-1921544057) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +2. 🗣 Commented on [#21757](https://github.com/spyder-ide/spyder/pull/21757#issuecomment-1921489311) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#5441](https://github.com/rhinstaller/anaconda/pull/5441#issuecomment-1921483907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#1476](https://github.com/openSUSE/osc/pull/1476#issuecomment-1921448953) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#1634](https://github.com/odlgroup/odl/pull/1634#issuecomment-1921352185) in [odlgroup/odl](https://github.com/odlgroup/odl) +6. 🗣 Commented on [#1301](https://github.com/rpm-software-management/mock/pull/1301#issuecomment-1921271584) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +7. 🗣 Commented on [#1633](https://github.com/odlgroup/odl/pull/1633#issuecomment-1920995686) in [odlgroup/odl](https://github.com/odlgroup/odl) +8. 🗣 Commented on [#248](https://github.com/CartoonFan/lutris/pull/248#issuecomment-1920732556) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#1](https://github.com/GenevieveBuckley/napari-animation/pull/1#issuecomment-1920226931) in [GenevieveBuckley/napari-animation](https://github.com/GenevieveBuckley/napari-animation) +10. 🗣 Commented on [#2748](https://github.com/metabrainz/listenbrainz-server/pull/2748#issuecomment-1919966549) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From f97041dc04f6b20c9afc0589b689105f1931bf07 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 15:37:21 +0000 Subject: [PATCH 1330/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 84ef0ad1..59d72962 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/1#issuecomment-1921544057) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -2. 🗣 Commented on [#21757](https://github.com/spyder-ide/spyder/pull/21757#issuecomment-1921489311) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#5441](https://github.com/rhinstaller/anaconda/pull/5441#issuecomment-1921483907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#1476](https://github.com/openSUSE/osc/pull/1476#issuecomment-1921448953) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#1634](https://github.com/odlgroup/odl/pull/1634#issuecomment-1921352185) in [odlgroup/odl](https://github.com/odlgroup/odl) -6. 🗣 Commented on [#1301](https://github.com/rpm-software-management/mock/pull/1301#issuecomment-1921271584) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -7. 🗣 Commented on [#1633](https://github.com/odlgroup/odl/pull/1633#issuecomment-1920995686) in [odlgroup/odl](https://github.com/odlgroup/odl) -8. 🗣 Commented on [#248](https://github.com/CartoonFan/lutris/pull/248#issuecomment-1920732556) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#1](https://github.com/GenevieveBuckley/napari-animation/pull/1#issuecomment-1920226931) in [GenevieveBuckley/napari-animation](https://github.com/GenevieveBuckley/napari-animation) -10. 🗣 Commented on [#2748](https://github.com/metabrainz/listenbrainz-server/pull/2748#issuecomment-1919966549) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_filtering_comparison/pull/1#issuecomment-1921575391) in [eastgenomics/variant_filtering_comparison](https://github.com/eastgenomics/variant_filtering_comparison) +2. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/1#issuecomment-1921544057) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +3. 🗣 Commented on [#21757](https://github.com/spyder-ide/spyder/pull/21757#issuecomment-1921489311) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#5441](https://github.com/rhinstaller/anaconda/pull/5441#issuecomment-1921483907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#1476](https://github.com/openSUSE/osc/pull/1476#issuecomment-1921448953) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#1634](https://github.com/odlgroup/odl/pull/1634#issuecomment-1921352185) in [odlgroup/odl](https://github.com/odlgroup/odl) +7. 🗣 Commented on [#1301](https://github.com/rpm-software-management/mock/pull/1301#issuecomment-1921271584) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +8. 🗣 Commented on [#1633](https://github.com/odlgroup/odl/pull/1633#issuecomment-1920995686) in [odlgroup/odl](https://github.com/odlgroup/odl) +9. 🗣 Commented on [#248](https://github.com/CartoonFan/lutris/pull/248#issuecomment-1920732556) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#1](https://github.com/GenevieveBuckley/napari-animation/pull/1#issuecomment-1920226931) in [GenevieveBuckley/napari-animation](https://github.com/GenevieveBuckley/napari-animation) From 707fac93d91a103a0536b04db259d8abae8e1e56 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 17:16:06 +0000 Subject: [PATCH 1331/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 59d72962..0bf2fc28 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_filtering_comparison/pull/1#issuecomment-1921575391) in [eastgenomics/variant_filtering_comparison](https://github.com/eastgenomics/variant_filtering_comparison) -2. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/1#issuecomment-1921544057) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -3. 🗣 Commented on [#21757](https://github.com/spyder-ide/spyder/pull/21757#issuecomment-1921489311) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#5441](https://github.com/rhinstaller/anaconda/pull/5441#issuecomment-1921483907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#1476](https://github.com/openSUSE/osc/pull/1476#issuecomment-1921448953) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#1634](https://github.com/odlgroup/odl/pull/1634#issuecomment-1921352185) in [odlgroup/odl](https://github.com/odlgroup/odl) -7. 🗣 Commented on [#1301](https://github.com/rpm-software-management/mock/pull/1301#issuecomment-1921271584) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -8. 🗣 Commented on [#1633](https://github.com/odlgroup/odl/pull/1633#issuecomment-1920995686) in [odlgroup/odl](https://github.com/odlgroup/odl) -9. 🗣 Commented on [#248](https://github.com/CartoonFan/lutris/pull/248#issuecomment-1920732556) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#1](https://github.com/GenevieveBuckley/napari-animation/pull/1#issuecomment-1920226931) in [GenevieveBuckley/napari-animation](https://github.com/GenevieveBuckley/napari-animation) +1. 🗣 Commented on [#85](https://github.com/eastgenomics/eris/pull/85#issuecomment-1921808700) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_filtering_comparison/pull/1#issuecomment-1921575391) in [eastgenomics/variant_filtering_comparison](https://github.com/eastgenomics/variant_filtering_comparison) +3. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/1#issuecomment-1921544057) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +4. 🗣 Commented on [#21757](https://github.com/spyder-ide/spyder/pull/21757#issuecomment-1921489311) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#5441](https://github.com/rhinstaller/anaconda/pull/5441#issuecomment-1921483907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#1476](https://github.com/openSUSE/osc/pull/1476#issuecomment-1921448953) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#1634](https://github.com/odlgroup/odl/pull/1634#issuecomment-1921352185) in [odlgroup/odl](https://github.com/odlgroup/odl) +8. 🗣 Commented on [#1301](https://github.com/rpm-software-management/mock/pull/1301#issuecomment-1921271584) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +9. 🗣 Commented on [#1633](https://github.com/odlgroup/odl/pull/1633#issuecomment-1920995686) in [odlgroup/odl](https://github.com/odlgroup/odl) +10. 🗣 Commented on [#248](https://github.com/CartoonFan/lutris/pull/248#issuecomment-1920732556) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 20660acedb5ee51f60a54f18005721560eaee502 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 18:19:02 +0000 Subject: [PATCH 1332/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0bf2fc28..38ef32bc 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#85](https://github.com/eastgenomics/eris/pull/85#issuecomment-1921808700) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_filtering_comparison/pull/1#issuecomment-1921575391) in [eastgenomics/variant_filtering_comparison](https://github.com/eastgenomics/variant_filtering_comparison) -3. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/1#issuecomment-1921544057) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -4. 🗣 Commented on [#21757](https://github.com/spyder-ide/spyder/pull/21757#issuecomment-1921489311) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#5441](https://github.com/rhinstaller/anaconda/pull/5441#issuecomment-1921483907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#1476](https://github.com/openSUSE/osc/pull/1476#issuecomment-1921448953) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#1634](https://github.com/odlgroup/odl/pull/1634#issuecomment-1921352185) in [odlgroup/odl](https://github.com/odlgroup/odl) -8. 🗣 Commented on [#1301](https://github.com/rpm-software-management/mock/pull/1301#issuecomment-1921271584) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -9. 🗣 Commented on [#1633](https://github.com/odlgroup/odl/pull/1633#issuecomment-1920995686) in [odlgroup/odl](https://github.com/odlgroup/odl) -10. 🗣 Commented on [#248](https://github.com/CartoonFan/lutris/pull/248#issuecomment-1920732556) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#592](https://github.com/ExoCTK/exoctk/pull/592#issuecomment-1921893175) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +2. 🗣 Commented on [#85](https://github.com/eastgenomics/eris/pull/85#issuecomment-1921808700) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_filtering_comparison/pull/1#issuecomment-1921575391) in [eastgenomics/variant_filtering_comparison](https://github.com/eastgenomics/variant_filtering_comparison) +4. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/1#issuecomment-1921544057) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +5. 🗣 Commented on [#21757](https://github.com/spyder-ide/spyder/pull/21757#issuecomment-1921489311) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#5441](https://github.com/rhinstaller/anaconda/pull/5441#issuecomment-1921483907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#1476](https://github.com/openSUSE/osc/pull/1476#issuecomment-1921448953) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#1634](https://github.com/odlgroup/odl/pull/1634#issuecomment-1921352185) in [odlgroup/odl](https://github.com/odlgroup/odl) +9. 🗣 Commented on [#1301](https://github.com/rpm-software-management/mock/pull/1301#issuecomment-1921271584) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +10. 🗣 Commented on [#1633](https://github.com/odlgroup/odl/pull/1633#issuecomment-1920995686) in [odlgroup/odl](https://github.com/odlgroup/odl) From 33e684a61e6f527834ffbe74e18886fa18dc491b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 21:14:20 +0000 Subject: [PATCH 1333/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 38ef32bc..49cb5385 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#592](https://github.com/ExoCTK/exoctk/pull/592#issuecomment-1921893175) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -2. 🗣 Commented on [#85](https://github.com/eastgenomics/eris/pull/85#issuecomment-1921808700) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_filtering_comparison/pull/1#issuecomment-1921575391) in [eastgenomics/variant_filtering_comparison](https://github.com/eastgenomics/variant_filtering_comparison) -4. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/1#issuecomment-1921544057) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -5. 🗣 Commented on [#21757](https://github.com/spyder-ide/spyder/pull/21757#issuecomment-1921489311) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#5441](https://github.com/rhinstaller/anaconda/pull/5441#issuecomment-1921483907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#1476](https://github.com/openSUSE/osc/pull/1476#issuecomment-1921448953) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#1634](https://github.com/odlgroup/odl/pull/1634#issuecomment-1921352185) in [odlgroup/odl](https://github.com/odlgroup/odl) -9. 🗣 Commented on [#1301](https://github.com/rpm-software-management/mock/pull/1301#issuecomment-1921271584) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -10. 🗣 Commented on [#1633](https://github.com/odlgroup/odl/pull/1633#issuecomment-1920995686) in [odlgroup/odl](https://github.com/odlgroup/odl) +1. 🗣 Commented on [#4359](https://github.com/uwcirg/truenth-portal/pull/4359#issuecomment-1922250674) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +2. 🗣 Commented on [#1669](https://github.com/OGGM/oggm/pull/1669#issuecomment-1922242095) in [OGGM/oggm](https://github.com/OGGM/oggm) +3. 🗣 Commented on [#1](https://github.com/maxsu/IFProject/pull/1#issuecomment-1922220926) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +4. 🗣 Commented on [#592](https://github.com/ExoCTK/exoctk/pull/592#issuecomment-1921893175) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +5. 🗣 Commented on [#85](https://github.com/eastgenomics/eris/pull/85#issuecomment-1921808700) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_filtering_comparison/pull/1#issuecomment-1921575391) in [eastgenomics/variant_filtering_comparison](https://github.com/eastgenomics/variant_filtering_comparison) +7. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/1#issuecomment-1921544057) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +8. 🗣 Commented on [#21757](https://github.com/spyder-ide/spyder/pull/21757#issuecomment-1921489311) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#5441](https://github.com/rhinstaller/anaconda/pull/5441#issuecomment-1921483907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#1476](https://github.com/openSUSE/osc/pull/1476#issuecomment-1921448953) in [openSUSE/osc](https://github.com/openSUSE/osc) From 3f6da76309854b750bb7a05c41e461e9a0747775 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 23:15:27 +0000 Subject: [PATCH 1334/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 49cb5385..13671cf8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4359](https://github.com/uwcirg/truenth-portal/pull/4359#issuecomment-1922250674) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -2. 🗣 Commented on [#1669](https://github.com/OGGM/oggm/pull/1669#issuecomment-1922242095) in [OGGM/oggm](https://github.com/OGGM/oggm) -3. 🗣 Commented on [#1](https://github.com/maxsu/IFProject/pull/1#issuecomment-1922220926) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -4. 🗣 Commented on [#592](https://github.com/ExoCTK/exoctk/pull/592#issuecomment-1921893175) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -5. 🗣 Commented on [#85](https://github.com/eastgenomics/eris/pull/85#issuecomment-1921808700) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_filtering_comparison/pull/1#issuecomment-1921575391) in [eastgenomics/variant_filtering_comparison](https://github.com/eastgenomics/variant_filtering_comparison) -7. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/1#issuecomment-1921544057) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -8. 🗣 Commented on [#21757](https://github.com/spyder-ide/spyder/pull/21757#issuecomment-1921489311) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#5441](https://github.com/rhinstaller/anaconda/pull/5441#issuecomment-1921483907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#1476](https://github.com/openSUSE/osc/pull/1476#issuecomment-1921448953) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#437](https://github.com/SDXorg/pysd/pull/437#issuecomment-1922451552) in [SDXorg/pysd](https://github.com/SDXorg/pysd) +2. 🗣 Commented on [#4359](https://github.com/uwcirg/truenth-portal/pull/4359#issuecomment-1922250674) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +3. 🗣 Commented on [#1669](https://github.com/OGGM/oggm/pull/1669#issuecomment-1922242095) in [OGGM/oggm](https://github.com/OGGM/oggm) +4. 🗣 Commented on [#1](https://github.com/maxsu/IFProject/pull/1#issuecomment-1922220926) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +5. 🗣 Commented on [#592](https://github.com/ExoCTK/exoctk/pull/592#issuecomment-1921893175) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +6. 🗣 Commented on [#85](https://github.com/eastgenomics/eris/pull/85#issuecomment-1921808700) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_filtering_comparison/pull/1#issuecomment-1921575391) in [eastgenomics/variant_filtering_comparison](https://github.com/eastgenomics/variant_filtering_comparison) +8. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/1#issuecomment-1921544057) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +9. 🗣 Commented on [#21757](https://github.com/spyder-ide/spyder/pull/21757#issuecomment-1921489311) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#5441](https://github.com/rhinstaller/anaconda/pull/5441#issuecomment-1921483907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 606d44d370a5d74464a7e3c44bf3a3b04a1100ce Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 09:37:06 +0000 Subject: [PATCH 1335/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 13671cf8..21b3154c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#437](https://github.com/SDXorg/pysd/pull/437#issuecomment-1922451552) in [SDXorg/pysd](https://github.com/SDXorg/pysd) -2. 🗣 Commented on [#4359](https://github.com/uwcirg/truenth-portal/pull/4359#issuecomment-1922250674) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -3. 🗣 Commented on [#1669](https://github.com/OGGM/oggm/pull/1669#issuecomment-1922242095) in [OGGM/oggm](https://github.com/OGGM/oggm) -4. 🗣 Commented on [#1](https://github.com/maxsu/IFProject/pull/1#issuecomment-1922220926) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -5. 🗣 Commented on [#592](https://github.com/ExoCTK/exoctk/pull/592#issuecomment-1921893175) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -6. 🗣 Commented on [#85](https://github.com/eastgenomics/eris/pull/85#issuecomment-1921808700) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_filtering_comparison/pull/1#issuecomment-1921575391) in [eastgenomics/variant_filtering_comparison](https://github.com/eastgenomics/variant_filtering_comparison) -8. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/1#issuecomment-1921544057) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -9. 🗣 Commented on [#21757](https://github.com/spyder-ide/spyder/pull/21757#issuecomment-1921489311) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#5441](https://github.com/rhinstaller/anaconda/pull/5441#issuecomment-1921483907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#188](https://github.com/eastgenomics/eggd_dias_batch/pull/188#issuecomment-1923396441) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +2. 🗣 Commented on [#437](https://github.com/SDXorg/pysd/pull/437#issuecomment-1922451552) in [SDXorg/pysd](https://github.com/SDXorg/pysd) +3. 🗣 Commented on [#4359](https://github.com/uwcirg/truenth-portal/pull/4359#issuecomment-1922250674) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +4. 🗣 Commented on [#1669](https://github.com/OGGM/oggm/pull/1669#issuecomment-1922242095) in [OGGM/oggm](https://github.com/OGGM/oggm) +5. 🗣 Commented on [#1](https://github.com/maxsu/IFProject/pull/1#issuecomment-1922220926) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +6. 🗣 Commented on [#592](https://github.com/ExoCTK/exoctk/pull/592#issuecomment-1921893175) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +7. 🗣 Commented on [#85](https://github.com/eastgenomics/eris/pull/85#issuecomment-1921808700) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_filtering_comparison/pull/1#issuecomment-1921575391) in [eastgenomics/variant_filtering_comparison](https://github.com/eastgenomics/variant_filtering_comparison) +9. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/1#issuecomment-1921544057) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +10. 🗣 Commented on [#21757](https://github.com/spyder-ide/spyder/pull/21757#issuecomment-1921489311) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From ae8c192d3938e3b091e9f562b85fad3323c6f1b8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 10:16:43 +0000 Subject: [PATCH 1336/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 21b3154c..a32722a8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#188](https://github.com/eastgenomics/eggd_dias_batch/pull/188#issuecomment-1923396441) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -2. 🗣 Commented on [#437](https://github.com/SDXorg/pysd/pull/437#issuecomment-1922451552) in [SDXorg/pysd](https://github.com/SDXorg/pysd) -3. 🗣 Commented on [#4359](https://github.com/uwcirg/truenth-portal/pull/4359#issuecomment-1922250674) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -4. 🗣 Commented on [#1669](https://github.com/OGGM/oggm/pull/1669#issuecomment-1922242095) in [OGGM/oggm](https://github.com/OGGM/oggm) -5. 🗣 Commented on [#1](https://github.com/maxsu/IFProject/pull/1#issuecomment-1922220926) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -6. 🗣 Commented on [#592](https://github.com/ExoCTK/exoctk/pull/592#issuecomment-1921893175) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -7. 🗣 Commented on [#85](https://github.com/eastgenomics/eris/pull/85#issuecomment-1921808700) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_filtering_comparison/pull/1#issuecomment-1921575391) in [eastgenomics/variant_filtering_comparison](https://github.com/eastgenomics/variant_filtering_comparison) -9. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/1#issuecomment-1921544057) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -10. 🗣 Commented on [#21757](https://github.com/spyder-ide/spyder/pull/21757#issuecomment-1921489311) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#1](https://github.com/eastgenomics/TSO500_Compare_Output/pull/1#issuecomment-1923438222) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +2. 🗣 Commented on [#188](https://github.com/eastgenomics/eggd_dias_batch/pull/188#issuecomment-1923396441) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +3. 🗣 Commented on [#437](https://github.com/SDXorg/pysd/pull/437#issuecomment-1922451552) in [SDXorg/pysd](https://github.com/SDXorg/pysd) +4. 🗣 Commented on [#4359](https://github.com/uwcirg/truenth-portal/pull/4359#issuecomment-1922250674) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +5. 🗣 Commented on [#1669](https://github.com/OGGM/oggm/pull/1669#issuecomment-1922242095) in [OGGM/oggm](https://github.com/OGGM/oggm) +6. 🗣 Commented on [#1](https://github.com/maxsu/IFProject/pull/1#issuecomment-1922220926) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +7. 🗣 Commented on [#592](https://github.com/ExoCTK/exoctk/pull/592#issuecomment-1921893175) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +8. 🗣 Commented on [#85](https://github.com/eastgenomics/eris/pull/85#issuecomment-1921808700) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_filtering_comparison/pull/1#issuecomment-1921575391) in [eastgenomics/variant_filtering_comparison](https://github.com/eastgenomics/variant_filtering_comparison) +10. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/1#issuecomment-1921544057) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) From 156e2a70472826fce0d1d214ee7a283dde3adf6e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 11:13:16 +0000 Subject: [PATCH 1337/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a32722a8..caac6a27 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/eastgenomics/TSO500_Compare_Output/pull/1#issuecomment-1923438222) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -2. 🗣 Commented on [#188](https://github.com/eastgenomics/eggd_dias_batch/pull/188#issuecomment-1923396441) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -3. 🗣 Commented on [#437](https://github.com/SDXorg/pysd/pull/437#issuecomment-1922451552) in [SDXorg/pysd](https://github.com/SDXorg/pysd) -4. 🗣 Commented on [#4359](https://github.com/uwcirg/truenth-portal/pull/4359#issuecomment-1922250674) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -5. 🗣 Commented on [#1669](https://github.com/OGGM/oggm/pull/1669#issuecomment-1922242095) in [OGGM/oggm](https://github.com/OGGM/oggm) -6. 🗣 Commented on [#1](https://github.com/maxsu/IFProject/pull/1#issuecomment-1922220926) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -7. 🗣 Commented on [#592](https://github.com/ExoCTK/exoctk/pull/592#issuecomment-1921893175) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -8. 🗣 Commented on [#85](https://github.com/eastgenomics/eris/pull/85#issuecomment-1921808700) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#1](https://github.com/eastgenomics/variant_filtering_comparison/pull/1#issuecomment-1921575391) in [eastgenomics/variant_filtering_comparison](https://github.com/eastgenomics/variant_filtering_comparison) -10. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/1#issuecomment-1921544057) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +1. 🗣 Commented on [#700](https://github.com/OpenFreeEnergy/openfe/pull/700#issuecomment-1923592501) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#65](https://github.com/eastgenomics/trendyQC/pull/65#issuecomment-1923561225) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +3. 🗣 Commented on [#1](https://github.com/eastgenomics/TSO500_Compare_Output/pull/1#issuecomment-1923438222) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +4. 🗣 Commented on [#188](https://github.com/eastgenomics/eggd_dias_batch/pull/188#issuecomment-1923396441) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +5. 🗣 Commented on [#437](https://github.com/SDXorg/pysd/pull/437#issuecomment-1922451552) in [SDXorg/pysd](https://github.com/SDXorg/pysd) +6. 🗣 Commented on [#4359](https://github.com/uwcirg/truenth-portal/pull/4359#issuecomment-1922250674) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +7. 🗣 Commented on [#1669](https://github.com/OGGM/oggm/pull/1669#issuecomment-1922242095) in [OGGM/oggm](https://github.com/OGGM/oggm) +8. 🗣 Commented on [#1](https://github.com/maxsu/IFProject/pull/1#issuecomment-1922220926) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +9. 🗣 Commented on [#592](https://github.com/ExoCTK/exoctk/pull/592#issuecomment-1921893175) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +10. 🗣 Commented on [#85](https://github.com/eastgenomics/eris/pull/85#issuecomment-1921808700) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From a1e59d9773f1b96c2b9ced1db4f2c77be3f2ad26 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 14:14:23 +0000 Subject: [PATCH 1338/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index caac6a27..8a2bae18 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#700](https://github.com/OpenFreeEnergy/openfe/pull/700#issuecomment-1923592501) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#65](https://github.com/eastgenomics/trendyQC/pull/65#issuecomment-1923561225) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -3. 🗣 Commented on [#1](https://github.com/eastgenomics/TSO500_Compare_Output/pull/1#issuecomment-1923438222) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -4. 🗣 Commented on [#188](https://github.com/eastgenomics/eggd_dias_batch/pull/188#issuecomment-1923396441) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -5. 🗣 Commented on [#437](https://github.com/SDXorg/pysd/pull/437#issuecomment-1922451552) in [SDXorg/pysd](https://github.com/SDXorg/pysd) -6. 🗣 Commented on [#4359](https://github.com/uwcirg/truenth-portal/pull/4359#issuecomment-1922250674) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -7. 🗣 Commented on [#1669](https://github.com/OGGM/oggm/pull/1669#issuecomment-1922242095) in [OGGM/oggm](https://github.com/OGGM/oggm) -8. 🗣 Commented on [#1](https://github.com/maxsu/IFProject/pull/1#issuecomment-1922220926) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -9. 🗣 Commented on [#592](https://github.com/ExoCTK/exoctk/pull/592#issuecomment-1921893175) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -10. 🗣 Commented on [#85](https://github.com/eastgenomics/eris/pull/85#issuecomment-1921808700) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#86](https://github.com/eastgenomics/eris/pull/86#issuecomment-1923867541) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#700](https://github.com/OpenFreeEnergy/openfe/pull/700#issuecomment-1923592501) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#65](https://github.com/eastgenomics/trendyQC/pull/65#issuecomment-1923561225) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +4. 🗣 Commented on [#1](https://github.com/eastgenomics/TSO500_Compare_Output/pull/1#issuecomment-1923438222) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +5. 🗣 Commented on [#188](https://github.com/eastgenomics/eggd_dias_batch/pull/188#issuecomment-1923396441) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +6. 🗣 Commented on [#437](https://github.com/SDXorg/pysd/pull/437#issuecomment-1922451552) in [SDXorg/pysd](https://github.com/SDXorg/pysd) +7. 🗣 Commented on [#4359](https://github.com/uwcirg/truenth-portal/pull/4359#issuecomment-1922250674) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +8. 🗣 Commented on [#1669](https://github.com/OGGM/oggm/pull/1669#issuecomment-1922242095) in [OGGM/oggm](https://github.com/OGGM/oggm) +9. 🗣 Commented on [#1](https://github.com/maxsu/IFProject/pull/1#issuecomment-1922220926) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +10. 🗣 Commented on [#592](https://github.com/ExoCTK/exoctk/pull/592#issuecomment-1921893175) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) From b2e221e4c5c3a522a139490c523d01540a1b6a71 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 14:37:12 +0000 Subject: [PATCH 1339/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8a2bae18..a997b3ac 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#86](https://github.com/eastgenomics/eris/pull/86#issuecomment-1923867541) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#700](https://github.com/OpenFreeEnergy/openfe/pull/700#issuecomment-1923592501) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#65](https://github.com/eastgenomics/trendyQC/pull/65#issuecomment-1923561225) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -4. 🗣 Commented on [#1](https://github.com/eastgenomics/TSO500_Compare_Output/pull/1#issuecomment-1923438222) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -5. 🗣 Commented on [#188](https://github.com/eastgenomics/eggd_dias_batch/pull/188#issuecomment-1923396441) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -6. 🗣 Commented on [#437](https://github.com/SDXorg/pysd/pull/437#issuecomment-1922451552) in [SDXorg/pysd](https://github.com/SDXorg/pysd) -7. 🗣 Commented on [#4359](https://github.com/uwcirg/truenth-portal/pull/4359#issuecomment-1922250674) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -8. 🗣 Commented on [#1669](https://github.com/OGGM/oggm/pull/1669#issuecomment-1922242095) in [OGGM/oggm](https://github.com/OGGM/oggm) -9. 🗣 Commented on [#1](https://github.com/maxsu/IFProject/pull/1#issuecomment-1922220926) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -10. 🗣 Commented on [#592](https://github.com/ExoCTK/exoctk/pull/592#issuecomment-1921893175) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +1. 🗣 Commented on [#47](https://github.com/tilde-lab/metis-client/pull/47#issuecomment-1923973629) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) +2. 🗣 Commented on [#86](https://github.com/eastgenomics/eris/pull/86#issuecomment-1923867541) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#700](https://github.com/OpenFreeEnergy/openfe/pull/700#issuecomment-1923592501) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#65](https://github.com/eastgenomics/trendyQC/pull/65#issuecomment-1923561225) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +5. 🗣 Commented on [#1](https://github.com/eastgenomics/TSO500_Compare_Output/pull/1#issuecomment-1923438222) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +6. 🗣 Commented on [#188](https://github.com/eastgenomics/eggd_dias_batch/pull/188#issuecomment-1923396441) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +7. 🗣 Commented on [#437](https://github.com/SDXorg/pysd/pull/437#issuecomment-1922451552) in [SDXorg/pysd](https://github.com/SDXorg/pysd) +8. 🗣 Commented on [#4359](https://github.com/uwcirg/truenth-portal/pull/4359#issuecomment-1922250674) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +9. 🗣 Commented on [#1669](https://github.com/OGGM/oggm/pull/1669#issuecomment-1922242095) in [OGGM/oggm](https://github.com/OGGM/oggm) +10. 🗣 Commented on [#1](https://github.com/maxsu/IFProject/pull/1#issuecomment-1922220926) in [maxsu/IFProject](https://github.com/maxsu/IFProject) From fdea3d9aafa091d1954f2aefb9e915ccb4f41923 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 16:18:16 +0000 Subject: [PATCH 1340/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a997b3ac..f79bcbc8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#47](https://github.com/tilde-lab/metis-client/pull/47#issuecomment-1923973629) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) -2. 🗣 Commented on [#86](https://github.com/eastgenomics/eris/pull/86#issuecomment-1923867541) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#700](https://github.com/OpenFreeEnergy/openfe/pull/700#issuecomment-1923592501) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#65](https://github.com/eastgenomics/trendyQC/pull/65#issuecomment-1923561225) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -5. 🗣 Commented on [#1](https://github.com/eastgenomics/TSO500_Compare_Output/pull/1#issuecomment-1923438222) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -6. 🗣 Commented on [#188](https://github.com/eastgenomics/eggd_dias_batch/pull/188#issuecomment-1923396441) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -7. 🗣 Commented on [#437](https://github.com/SDXorg/pysd/pull/437#issuecomment-1922451552) in [SDXorg/pysd](https://github.com/SDXorg/pysd) -8. 🗣 Commented on [#4359](https://github.com/uwcirg/truenth-portal/pull/4359#issuecomment-1922250674) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -9. 🗣 Commented on [#1669](https://github.com/OGGM/oggm/pull/1669#issuecomment-1922242095) in [OGGM/oggm](https://github.com/OGGM/oggm) -10. 🗣 Commented on [#1](https://github.com/maxsu/IFProject/pull/1#issuecomment-1922220926) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +1. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/kartograf/pull/36#issuecomment-1924125699) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +2. 🗣 Commented on [#47](https://github.com/tilde-lab/metis-client/pull/47#issuecomment-1923973629) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) +3. 🗣 Commented on [#86](https://github.com/eastgenomics/eris/pull/86#issuecomment-1923867541) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#700](https://github.com/OpenFreeEnergy/openfe/pull/700#issuecomment-1923592501) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#65](https://github.com/eastgenomics/trendyQC/pull/65#issuecomment-1923561225) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +6. 🗣 Commented on [#1](https://github.com/eastgenomics/TSO500_Compare_Output/pull/1#issuecomment-1923438222) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +7. 🗣 Commented on [#188](https://github.com/eastgenomics/eggd_dias_batch/pull/188#issuecomment-1923396441) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +8. 🗣 Commented on [#437](https://github.com/SDXorg/pysd/pull/437#issuecomment-1922451552) in [SDXorg/pysd](https://github.com/SDXorg/pysd) +9. 🗣 Commented on [#4359](https://github.com/uwcirg/truenth-portal/pull/4359#issuecomment-1922250674) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +10. 🗣 Commented on [#1669](https://github.com/OGGM/oggm/pull/1669#issuecomment-1922242095) in [OGGM/oggm](https://github.com/OGGM/oggm) From c540c24fbf0fba2cdab8ecc5222de8b3cf86b856 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 17:15:59 +0000 Subject: [PATCH 1341/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f79bcbc8..880e242e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/kartograf/pull/36#issuecomment-1924125699) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -2. 🗣 Commented on [#47](https://github.com/tilde-lab/metis-client/pull/47#issuecomment-1923973629) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) -3. 🗣 Commented on [#86](https://github.com/eastgenomics/eris/pull/86#issuecomment-1923867541) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#700](https://github.com/OpenFreeEnergy/openfe/pull/700#issuecomment-1923592501) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#65](https://github.com/eastgenomics/trendyQC/pull/65#issuecomment-1923561225) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -6. 🗣 Commented on [#1](https://github.com/eastgenomics/TSO500_Compare_Output/pull/1#issuecomment-1923438222) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -7. 🗣 Commented on [#188](https://github.com/eastgenomics/eggd_dias_batch/pull/188#issuecomment-1923396441) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -8. 🗣 Commented on [#437](https://github.com/SDXorg/pysd/pull/437#issuecomment-1922451552) in [SDXorg/pysd](https://github.com/SDXorg/pysd) -9. 🗣 Commented on [#4359](https://github.com/uwcirg/truenth-portal/pull/4359#issuecomment-1922250674) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -10. 🗣 Commented on [#1669](https://github.com/OGGM/oggm/pull/1669#issuecomment-1922242095) in [OGGM/oggm](https://github.com/OGGM/oggm) +1. 🗣 Commented on [#2](https://github.com/eastgenomics/TSO500_Compare_Output/pull/2#issuecomment-1924308994) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +2. 🗣 Commented on [#701](https://github.com/HEPCloud/decisionengine/pull/701#issuecomment-1924298233) in [HEPCloud/decisionengine](https://github.com/HEPCloud/decisionengine) +3. 🗣 Commented on [#226](https://github.com/scil-vital/dwi_ml/pull/226#issuecomment-1924267458) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +4. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/kartograf/pull/36#issuecomment-1924125699) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +5. 🗣 Commented on [#47](https://github.com/tilde-lab/metis-client/pull/47#issuecomment-1923973629) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) +6. 🗣 Commented on [#86](https://github.com/eastgenomics/eris/pull/86#issuecomment-1923867541) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#700](https://github.com/OpenFreeEnergy/openfe/pull/700#issuecomment-1923592501) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#65](https://github.com/eastgenomics/trendyQC/pull/65#issuecomment-1923561225) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +9. 🗣 Commented on [#1](https://github.com/eastgenomics/TSO500_Compare_Output/pull/1#issuecomment-1923438222) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +10. 🗣 Commented on [#188](https://github.com/eastgenomics/eggd_dias_batch/pull/188#issuecomment-1923396441) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) From 4411e55be205d4c4b2538a589f396017b5b464b8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 17:37:14 +0000 Subject: [PATCH 1342/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 880e242e..a9f27ec9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/eastgenomics/TSO500_Compare_Output/pull/2#issuecomment-1924308994) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -2. 🗣 Commented on [#701](https://github.com/HEPCloud/decisionengine/pull/701#issuecomment-1924298233) in [HEPCloud/decisionengine](https://github.com/HEPCloud/decisionengine) -3. 🗣 Commented on [#226](https://github.com/scil-vital/dwi_ml/pull/226#issuecomment-1924267458) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -4. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/kartograf/pull/36#issuecomment-1924125699) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -5. 🗣 Commented on [#47](https://github.com/tilde-lab/metis-client/pull/47#issuecomment-1923973629) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) -6. 🗣 Commented on [#86](https://github.com/eastgenomics/eris/pull/86#issuecomment-1923867541) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#700](https://github.com/OpenFreeEnergy/openfe/pull/700#issuecomment-1923592501) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#65](https://github.com/eastgenomics/trendyQC/pull/65#issuecomment-1923561225) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -9. 🗣 Commented on [#1](https://github.com/eastgenomics/TSO500_Compare_Output/pull/1#issuecomment-1923438222) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -10. 🗣 Commented on [#188](https://github.com/eastgenomics/eggd_dias_batch/pull/188#issuecomment-1923396441) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +1. 🗣 Commented on [#503](https://github.com/zarr-developers/numcodecs/pull/503#issuecomment-1924342643) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +2. 🗣 Commented on [#2](https://github.com/eastgenomics/TSO500_Compare_Output/pull/2#issuecomment-1924308994) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +3. 🗣 Commented on [#701](https://github.com/HEPCloud/decisionengine/pull/701#issuecomment-1924298233) in [HEPCloud/decisionengine](https://github.com/HEPCloud/decisionengine) +4. 🗣 Commented on [#226](https://github.com/scil-vital/dwi_ml/pull/226#issuecomment-1924267458) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +5. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/kartograf/pull/36#issuecomment-1924125699) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +6. 🗣 Commented on [#47](https://github.com/tilde-lab/metis-client/pull/47#issuecomment-1923973629) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) +7. 🗣 Commented on [#86](https://github.com/eastgenomics/eris/pull/86#issuecomment-1923867541) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#700](https://github.com/OpenFreeEnergy/openfe/pull/700#issuecomment-1923592501) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#65](https://github.com/eastgenomics/trendyQC/pull/65#issuecomment-1923561225) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +10. 🗣 Commented on [#1](https://github.com/eastgenomics/TSO500_Compare_Output/pull/1#issuecomment-1923438222) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) From 25d88acaa4debd1e25ffbbf2f5aee154f48260e1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 20:37:38 +0000 Subject: [PATCH 1343/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a9f27ec9..e23af683 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#503](https://github.com/zarr-developers/numcodecs/pull/503#issuecomment-1924342643) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -2. 🗣 Commented on [#2](https://github.com/eastgenomics/TSO500_Compare_Output/pull/2#issuecomment-1924308994) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -3. 🗣 Commented on [#701](https://github.com/HEPCloud/decisionengine/pull/701#issuecomment-1924298233) in [HEPCloud/decisionengine](https://github.com/HEPCloud/decisionengine) -4. 🗣 Commented on [#226](https://github.com/scil-vital/dwi_ml/pull/226#issuecomment-1924267458) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -5. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/kartograf/pull/36#issuecomment-1924125699) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -6. 🗣 Commented on [#47](https://github.com/tilde-lab/metis-client/pull/47#issuecomment-1923973629) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) -7. 🗣 Commented on [#86](https://github.com/eastgenomics/eris/pull/86#issuecomment-1923867541) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#700](https://github.com/OpenFreeEnergy/openfe/pull/700#issuecomment-1923592501) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#65](https://github.com/eastgenomics/trendyQC/pull/65#issuecomment-1923561225) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -10. 🗣 Commented on [#1](https://github.com/eastgenomics/TSO500_Compare_Output/pull/1#issuecomment-1923438222) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +1. 🗣 Commented on [#1060](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1060#issuecomment-1924653804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#503](https://github.com/zarr-developers/numcodecs/pull/503#issuecomment-1924342643) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +3. 🗣 Commented on [#2](https://github.com/eastgenomics/TSO500_Compare_Output/pull/2#issuecomment-1924308994) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +4. 🗣 Commented on [#701](https://github.com/HEPCloud/decisionengine/pull/701#issuecomment-1924298233) in [HEPCloud/decisionengine](https://github.com/HEPCloud/decisionengine) +5. 🗣 Commented on [#226](https://github.com/scil-vital/dwi_ml/pull/226#issuecomment-1924267458) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +6. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/kartograf/pull/36#issuecomment-1924125699) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +7. 🗣 Commented on [#47](https://github.com/tilde-lab/metis-client/pull/47#issuecomment-1923973629) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) +8. 🗣 Commented on [#86](https://github.com/eastgenomics/eris/pull/86#issuecomment-1923867541) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#700](https://github.com/OpenFreeEnergy/openfe/pull/700#issuecomment-1923592501) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#65](https://github.com/eastgenomics/trendyQC/pull/65#issuecomment-1923561225) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) From 634f45dafb70a16a41dfecb87fc7e8863e0ab445 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 22:37:11 +0000 Subject: [PATCH 1344/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e23af683..1dcdb1dd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1060](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1060#issuecomment-1924653804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#503](https://github.com/zarr-developers/numcodecs/pull/503#issuecomment-1924342643) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -3. 🗣 Commented on [#2](https://github.com/eastgenomics/TSO500_Compare_Output/pull/2#issuecomment-1924308994) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -4. 🗣 Commented on [#701](https://github.com/HEPCloud/decisionengine/pull/701#issuecomment-1924298233) in [HEPCloud/decisionengine](https://github.com/HEPCloud/decisionengine) -5. 🗣 Commented on [#226](https://github.com/scil-vital/dwi_ml/pull/226#issuecomment-1924267458) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -6. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/kartograf/pull/36#issuecomment-1924125699) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -7. 🗣 Commented on [#47](https://github.com/tilde-lab/metis-client/pull/47#issuecomment-1923973629) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) -8. 🗣 Commented on [#86](https://github.com/eastgenomics/eris/pull/86#issuecomment-1923867541) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#700](https://github.com/OpenFreeEnergy/openfe/pull/700#issuecomment-1923592501) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#65](https://github.com/eastgenomics/trendyQC/pull/65#issuecomment-1923561225) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +1. 🗣 Commented on [#21762](https://github.com/spyder-ide/spyder/pull/21762#issuecomment-1924780756) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#1060](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1060#issuecomment-1924653804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#503](https://github.com/zarr-developers/numcodecs/pull/503#issuecomment-1924342643) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +4. 🗣 Commented on [#2](https://github.com/eastgenomics/TSO500_Compare_Output/pull/2#issuecomment-1924308994) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +5. 🗣 Commented on [#701](https://github.com/HEPCloud/decisionengine/pull/701#issuecomment-1924298233) in [HEPCloud/decisionengine](https://github.com/HEPCloud/decisionengine) +6. 🗣 Commented on [#226](https://github.com/scil-vital/dwi_ml/pull/226#issuecomment-1924267458) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +7. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/kartograf/pull/36#issuecomment-1924125699) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +8. 🗣 Commented on [#47](https://github.com/tilde-lab/metis-client/pull/47#issuecomment-1923973629) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) +9. 🗣 Commented on [#86](https://github.com/eastgenomics/eris/pull/86#issuecomment-1923867541) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#700](https://github.com/OpenFreeEnergy/openfe/pull/700#issuecomment-1923592501) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 9fdbbcf497afe9a5c9d41d368e97c6b6c1ebe5da Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 01:07:48 +0000 Subject: [PATCH 1345/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1dcdb1dd..c25f934d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21762](https://github.com/spyder-ide/spyder/pull/21762#issuecomment-1924780756) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#1060](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1060#issuecomment-1924653804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#503](https://github.com/zarr-developers/numcodecs/pull/503#issuecomment-1924342643) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -4. 🗣 Commented on [#2](https://github.com/eastgenomics/TSO500_Compare_Output/pull/2#issuecomment-1924308994) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -5. 🗣 Commented on [#701](https://github.com/HEPCloud/decisionengine/pull/701#issuecomment-1924298233) in [HEPCloud/decisionengine](https://github.com/HEPCloud/decisionengine) -6. 🗣 Commented on [#226](https://github.com/scil-vital/dwi_ml/pull/226#issuecomment-1924267458) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -7. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/kartograf/pull/36#issuecomment-1924125699) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -8. 🗣 Commented on [#47](https://github.com/tilde-lab/metis-client/pull/47#issuecomment-1923973629) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) -9. 🗣 Commented on [#86](https://github.com/eastgenomics/eris/pull/86#issuecomment-1923867541) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#700](https://github.com/OpenFreeEnergy/openfe/pull/700#issuecomment-1923592501) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#2](https://github.com/maxsu/IFProject/pull/2#issuecomment-1924941322) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +2. 🗣 Commented on [#21762](https://github.com/spyder-ide/spyder/pull/21762#issuecomment-1924780756) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#1060](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1060#issuecomment-1924653804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#503](https://github.com/zarr-developers/numcodecs/pull/503#issuecomment-1924342643) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +5. 🗣 Commented on [#2](https://github.com/eastgenomics/TSO500_Compare_Output/pull/2#issuecomment-1924308994) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +6. 🗣 Commented on [#701](https://github.com/HEPCloud/decisionengine/pull/701#issuecomment-1924298233) in [HEPCloud/decisionengine](https://github.com/HEPCloud/decisionengine) +7. 🗣 Commented on [#226](https://github.com/scil-vital/dwi_ml/pull/226#issuecomment-1924267458) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +8. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/kartograf/pull/36#issuecomment-1924125699) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +9. 🗣 Commented on [#47](https://github.com/tilde-lab/metis-client/pull/47#issuecomment-1923973629) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) +10. 🗣 Commented on [#86](https://github.com/eastgenomics/eris/pull/86#issuecomment-1923867541) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 74d1a47600c7c84c57e6e81dd2760bb2e42c8107 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 11:12:21 +0000 Subject: [PATCH 1346/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c25f934d..cd991de3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/maxsu/IFProject/pull/2#issuecomment-1924941322) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -2. 🗣 Commented on [#21762](https://github.com/spyder-ide/spyder/pull/21762#issuecomment-1924780756) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#1060](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1060#issuecomment-1924653804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#503](https://github.com/zarr-developers/numcodecs/pull/503#issuecomment-1924342643) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -5. 🗣 Commented on [#2](https://github.com/eastgenomics/TSO500_Compare_Output/pull/2#issuecomment-1924308994) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -6. 🗣 Commented on [#701](https://github.com/HEPCloud/decisionengine/pull/701#issuecomment-1924298233) in [HEPCloud/decisionengine](https://github.com/HEPCloud/decisionengine) -7. 🗣 Commented on [#226](https://github.com/scil-vital/dwi_ml/pull/226#issuecomment-1924267458) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -8. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/kartograf/pull/36#issuecomment-1924125699) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -9. 🗣 Commented on [#47](https://github.com/tilde-lab/metis-client/pull/47#issuecomment-1923973629) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) -10. 🗣 Commented on [#86](https://github.com/eastgenomics/eris/pull/86#issuecomment-1923867541) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#249](https://github.com/CartoonFan/lutris/pull/249#issuecomment-1925280456) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#2](https://github.com/maxsu/IFProject/pull/2#issuecomment-1924941322) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +3. 🗣 Commented on [#21762](https://github.com/spyder-ide/spyder/pull/21762#issuecomment-1924780756) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#1060](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1060#issuecomment-1924653804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#503](https://github.com/zarr-developers/numcodecs/pull/503#issuecomment-1924342643) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +6. 🗣 Commented on [#2](https://github.com/eastgenomics/TSO500_Compare_Output/pull/2#issuecomment-1924308994) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +7. 🗣 Commented on [#701](https://github.com/HEPCloud/decisionengine/pull/701#issuecomment-1924298233) in [HEPCloud/decisionengine](https://github.com/HEPCloud/decisionengine) +8. 🗣 Commented on [#226](https://github.com/scil-vital/dwi_ml/pull/226#issuecomment-1924267458) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +9. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/kartograf/pull/36#issuecomment-1924125699) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +10. 🗣 Commented on [#47](https://github.com/tilde-lab/metis-client/pull/47#issuecomment-1923973629) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) From f423ece551c721e90ef16bc05b5363361156e427 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 14:38:11 +0000 Subject: [PATCH 1347/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cd991de3..a0ab33a7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#249](https://github.com/CartoonFan/lutris/pull/249#issuecomment-1925280456) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#2](https://github.com/maxsu/IFProject/pull/2#issuecomment-1924941322) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -3. 🗣 Commented on [#21762](https://github.com/spyder-ide/spyder/pull/21762#issuecomment-1924780756) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#1060](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1060#issuecomment-1924653804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#503](https://github.com/zarr-developers/numcodecs/pull/503#issuecomment-1924342643) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -6. 🗣 Commented on [#2](https://github.com/eastgenomics/TSO500_Compare_Output/pull/2#issuecomment-1924308994) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -7. 🗣 Commented on [#701](https://github.com/HEPCloud/decisionengine/pull/701#issuecomment-1924298233) in [HEPCloud/decisionengine](https://github.com/HEPCloud/decisionengine) -8. 🗣 Commented on [#226](https://github.com/scil-vital/dwi_ml/pull/226#issuecomment-1924267458) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -9. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/kartograf/pull/36#issuecomment-1924125699) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -10. 🗣 Commented on [#47](https://github.com/tilde-lab/metis-client/pull/47#issuecomment-1923973629) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) +1. 🗣 Commented on [#1244](https://github.com/aimclub/FEDOT/pull/1244#issuecomment-1925343191) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#249](https://github.com/CartoonFan/lutris/pull/249#issuecomment-1925280456) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#2](https://github.com/maxsu/IFProject/pull/2#issuecomment-1924941322) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +4. 🗣 Commented on [#21762](https://github.com/spyder-ide/spyder/pull/21762#issuecomment-1924780756) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#1060](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1060#issuecomment-1924653804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#503](https://github.com/zarr-developers/numcodecs/pull/503#issuecomment-1924342643) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +7. 🗣 Commented on [#2](https://github.com/eastgenomics/TSO500_Compare_Output/pull/2#issuecomment-1924308994) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +8. 🗣 Commented on [#701](https://github.com/HEPCloud/decisionengine/pull/701#issuecomment-1924298233) in [HEPCloud/decisionengine](https://github.com/HEPCloud/decisionengine) +9. 🗣 Commented on [#226](https://github.com/scil-vital/dwi_ml/pull/226#issuecomment-1924267458) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +10. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/kartograf/pull/36#issuecomment-1924125699) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) From f6e301e804f4e7b6371c4189bc6c8698dcf87223 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 16:37:19 +0000 Subject: [PATCH 1348/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a0ab33a7..3b973525 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1244](https://github.com/aimclub/FEDOT/pull/1244#issuecomment-1925343191) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#249](https://github.com/CartoonFan/lutris/pull/249#issuecomment-1925280456) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#2](https://github.com/maxsu/IFProject/pull/2#issuecomment-1924941322) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -4. 🗣 Commented on [#21762](https://github.com/spyder-ide/spyder/pull/21762#issuecomment-1924780756) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#1060](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1060#issuecomment-1924653804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#503](https://github.com/zarr-developers/numcodecs/pull/503#issuecomment-1924342643) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -7. 🗣 Commented on [#2](https://github.com/eastgenomics/TSO500_Compare_Output/pull/2#issuecomment-1924308994) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -8. 🗣 Commented on [#701](https://github.com/HEPCloud/decisionengine/pull/701#issuecomment-1924298233) in [HEPCloud/decisionengine](https://github.com/HEPCloud/decisionengine) -9. 🗣 Commented on [#226](https://github.com/scil-vital/dwi_ml/pull/226#issuecomment-1924267458) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -10. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/kartograf/pull/36#issuecomment-1924125699) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +1. 🗣 Commented on [#21392](https://github.com/spyder-ide/spyder/pull/21392#issuecomment-1925375563) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#1244](https://github.com/aimclub/FEDOT/pull/1244#issuecomment-1925343191) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#249](https://github.com/CartoonFan/lutris/pull/249#issuecomment-1925280456) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#2](https://github.com/maxsu/IFProject/pull/2#issuecomment-1924941322) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +5. 🗣 Commented on [#21762](https://github.com/spyder-ide/spyder/pull/21762#issuecomment-1924780756) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#1060](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1060#issuecomment-1924653804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#503](https://github.com/zarr-developers/numcodecs/pull/503#issuecomment-1924342643) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +8. 🗣 Commented on [#2](https://github.com/eastgenomics/TSO500_Compare_Output/pull/2#issuecomment-1924308994) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +9. 🗣 Commented on [#701](https://github.com/HEPCloud/decisionengine/pull/701#issuecomment-1924298233) in [HEPCloud/decisionengine](https://github.com/HEPCloud/decisionengine) +10. 🗣 Commented on [#226](https://github.com/scil-vital/dwi_ml/pull/226#issuecomment-1924267458) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) From b2698c637f5c25f60a6344d2256e3e8703a3509c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 21:12:24 +0000 Subject: [PATCH 1349/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3b973525..ace03e08 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21392](https://github.com/spyder-ide/spyder/pull/21392#issuecomment-1925375563) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#1244](https://github.com/aimclub/FEDOT/pull/1244#issuecomment-1925343191) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#249](https://github.com/CartoonFan/lutris/pull/249#issuecomment-1925280456) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#2](https://github.com/maxsu/IFProject/pull/2#issuecomment-1924941322) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -5. 🗣 Commented on [#21762](https://github.com/spyder-ide/spyder/pull/21762#issuecomment-1924780756) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#1060](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1060#issuecomment-1924653804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#503](https://github.com/zarr-developers/numcodecs/pull/503#issuecomment-1924342643) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -8. 🗣 Commented on [#2](https://github.com/eastgenomics/TSO500_Compare_Output/pull/2#issuecomment-1924308994) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -9. 🗣 Commented on [#701](https://github.com/HEPCloud/decisionengine/pull/701#issuecomment-1924298233) in [HEPCloud/decisionengine](https://github.com/HEPCloud/decisionengine) -10. 🗣 Commented on [#226](https://github.com/scil-vital/dwi_ml/pull/226#issuecomment-1924267458) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +1. 🗣 Commented on [#1102](https://github.com/yeatmanlab/pyAFQ/pull/1102#issuecomment-1925451320) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +2. 🗣 Commented on [#21392](https://github.com/spyder-ide/spyder/pull/21392#issuecomment-1925375563) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#1244](https://github.com/aimclub/FEDOT/pull/1244#issuecomment-1925343191) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#249](https://github.com/CartoonFan/lutris/pull/249#issuecomment-1925280456) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#2](https://github.com/maxsu/IFProject/pull/2#issuecomment-1924941322) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +6. 🗣 Commented on [#21762](https://github.com/spyder-ide/spyder/pull/21762#issuecomment-1924780756) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#1060](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1060#issuecomment-1924653804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#503](https://github.com/zarr-developers/numcodecs/pull/503#issuecomment-1924342643) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +9. 🗣 Commented on [#2](https://github.com/eastgenomics/TSO500_Compare_Output/pull/2#issuecomment-1924308994) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +10. 🗣 Commented on [#701](https://github.com/HEPCloud/decisionengine/pull/701#issuecomment-1924298233) in [HEPCloud/decisionengine](https://github.com/HEPCloud/decisionengine) From 557e7996bd097dcfb5e1db1c0b13429d95963a4d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 4 Feb 2024 12:46:01 +0000 Subject: [PATCH 1350/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ace03e08..59a3315b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1102](https://github.com/yeatmanlab/pyAFQ/pull/1102#issuecomment-1925451320) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -2. 🗣 Commented on [#21392](https://github.com/spyder-ide/spyder/pull/21392#issuecomment-1925375563) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#1244](https://github.com/aimclub/FEDOT/pull/1244#issuecomment-1925343191) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#249](https://github.com/CartoonFan/lutris/pull/249#issuecomment-1925280456) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#2](https://github.com/maxsu/IFProject/pull/2#issuecomment-1924941322) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -6. 🗣 Commented on [#21762](https://github.com/spyder-ide/spyder/pull/21762#issuecomment-1924780756) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#1060](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1060#issuecomment-1924653804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#503](https://github.com/zarr-developers/numcodecs/pull/503#issuecomment-1924342643) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -9. 🗣 Commented on [#2](https://github.com/eastgenomics/TSO500_Compare_Output/pull/2#issuecomment-1924308994) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -10. 🗣 Commented on [#701](https://github.com/HEPCloud/decisionengine/pull/701#issuecomment-1924298233) in [HEPCloud/decisionengine](https://github.com/HEPCloud/decisionengine) +1. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) +2. 🗣 Commented on [#1686](https://github.com/OGGM/oggm/pull/1686#issuecomment-1925734764) in [OGGM/oggm](https://github.com/OGGM/oggm) +3. 🗣 Commented on [#1102](https://github.com/yeatmanlab/pyAFQ/pull/1102#issuecomment-1925451320) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +4. 🗣 Commented on [#21392](https://github.com/spyder-ide/spyder/pull/21392#issuecomment-1925375563) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#1244](https://github.com/aimclub/FEDOT/pull/1244#issuecomment-1925343191) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#249](https://github.com/CartoonFan/lutris/pull/249#issuecomment-1925280456) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#2](https://github.com/maxsu/IFProject/pull/2#issuecomment-1924941322) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +8. 🗣 Commented on [#21762](https://github.com/spyder-ide/spyder/pull/21762#issuecomment-1924780756) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#1060](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1060#issuecomment-1924653804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#503](https://github.com/zarr-developers/numcodecs/pull/503#issuecomment-1924342643) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) From 6432325fb91b6e1a1ada49d266a3efdb5dbbaaa9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 4 Feb 2024 16:18:19 +0000 Subject: [PATCH 1351/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 59a3315b..07e54089 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) -2. 🗣 Commented on [#1686](https://github.com/OGGM/oggm/pull/1686#issuecomment-1925734764) in [OGGM/oggm](https://github.com/OGGM/oggm) -3. 🗣 Commented on [#1102](https://github.com/yeatmanlab/pyAFQ/pull/1102#issuecomment-1925451320) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -4. 🗣 Commented on [#21392](https://github.com/spyder-ide/spyder/pull/21392#issuecomment-1925375563) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#1244](https://github.com/aimclub/FEDOT/pull/1244#issuecomment-1925343191) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#249](https://github.com/CartoonFan/lutris/pull/249#issuecomment-1925280456) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#2](https://github.com/maxsu/IFProject/pull/2#issuecomment-1924941322) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -8. 🗣 Commented on [#21762](https://github.com/spyder-ide/spyder/pull/21762#issuecomment-1924780756) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#1060](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1060#issuecomment-1924653804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#503](https://github.com/zarr-developers/numcodecs/pull/503#issuecomment-1924342643) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +1. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +2. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) +3. 🗣 Commented on [#1686](https://github.com/OGGM/oggm/pull/1686#issuecomment-1925734764) in [OGGM/oggm](https://github.com/OGGM/oggm) +4. 🗣 Commented on [#1102](https://github.com/yeatmanlab/pyAFQ/pull/1102#issuecomment-1925451320) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +5. 🗣 Commented on [#21392](https://github.com/spyder-ide/spyder/pull/21392#issuecomment-1925375563) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#1244](https://github.com/aimclub/FEDOT/pull/1244#issuecomment-1925343191) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#249](https://github.com/CartoonFan/lutris/pull/249#issuecomment-1925280456) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#2](https://github.com/maxsu/IFProject/pull/2#issuecomment-1924941322) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +9. 🗣 Commented on [#21762](https://github.com/spyder-ide/spyder/pull/21762#issuecomment-1924780756) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#1060](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1060#issuecomment-1924653804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 94885e457ff8b5dc3fe61b6f46585dcabc58d6fb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 08:19:59 +0000 Subject: [PATCH 1352/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 07e54089..f9f3c513 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -2. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) -3. 🗣 Commented on [#1686](https://github.com/OGGM/oggm/pull/1686#issuecomment-1925734764) in [OGGM/oggm](https://github.com/OGGM/oggm) -4. 🗣 Commented on [#1102](https://github.com/yeatmanlab/pyAFQ/pull/1102#issuecomment-1925451320) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -5. 🗣 Commented on [#21392](https://github.com/spyder-ide/spyder/pull/21392#issuecomment-1925375563) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#1244](https://github.com/aimclub/FEDOT/pull/1244#issuecomment-1925343191) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#249](https://github.com/CartoonFan/lutris/pull/249#issuecomment-1925280456) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#2](https://github.com/maxsu/IFProject/pull/2#issuecomment-1924941322) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -9. 🗣 Commented on [#21762](https://github.com/spyder-ide/spyder/pull/21762#issuecomment-1924780756) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#1060](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1060#issuecomment-1924653804) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +2. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +3. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) +4. 🗣 Commented on [#1686](https://github.com/OGGM/oggm/pull/1686#issuecomment-1925734764) in [OGGM/oggm](https://github.com/OGGM/oggm) +5. 🗣 Commented on [#1102](https://github.com/yeatmanlab/pyAFQ/pull/1102#issuecomment-1925451320) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +6. 🗣 Commented on [#21392](https://github.com/spyder-ide/spyder/pull/21392#issuecomment-1925375563) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#1244](https://github.com/aimclub/FEDOT/pull/1244#issuecomment-1925343191) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#249](https://github.com/CartoonFan/lutris/pull/249#issuecomment-1925280456) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#2](https://github.com/maxsu/IFProject/pull/2#issuecomment-1924941322) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +10. 🗣 Commented on [#21762](https://github.com/spyder-ide/spyder/pull/21762#issuecomment-1924780756) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 833c7502e85252554f42fa59d46536fc0cc2305d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 11:36:55 +0000 Subject: [PATCH 1353/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f9f3c513..ed8b8929 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -2. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -3. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) -4. 🗣 Commented on [#1686](https://github.com/OGGM/oggm/pull/1686#issuecomment-1925734764) in [OGGM/oggm](https://github.com/OGGM/oggm) -5. 🗣 Commented on [#1102](https://github.com/yeatmanlab/pyAFQ/pull/1102#issuecomment-1925451320) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -6. 🗣 Commented on [#21392](https://github.com/spyder-ide/spyder/pull/21392#issuecomment-1925375563) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#1244](https://github.com/aimclub/FEDOT/pull/1244#issuecomment-1925343191) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#249](https://github.com/CartoonFan/lutris/pull/249#issuecomment-1925280456) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#2](https://github.com/maxsu/IFProject/pull/2#issuecomment-1924941322) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -10. 🗣 Commented on [#21762](https://github.com/spyder-ide/spyder/pull/21762#issuecomment-1924780756) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +2. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +3. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +4. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) +5. 🗣 Commented on [#1686](https://github.com/OGGM/oggm/pull/1686#issuecomment-1925734764) in [OGGM/oggm](https://github.com/OGGM/oggm) +6. 🗣 Commented on [#1102](https://github.com/yeatmanlab/pyAFQ/pull/1102#issuecomment-1925451320) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +7. 🗣 Commented on [#21392](https://github.com/spyder-ide/spyder/pull/21392#issuecomment-1925375563) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#1244](https://github.com/aimclub/FEDOT/pull/1244#issuecomment-1925343191) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#249](https://github.com/CartoonFan/lutris/pull/249#issuecomment-1925280456) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#2](https://github.com/maxsu/IFProject/pull/2#issuecomment-1924941322) in [maxsu/IFProject](https://github.com/maxsu/IFProject) From fdddd41bba25782fa17b83e93be2a6b70c4f7798 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 13:37:08 +0000 Subject: [PATCH 1354/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ed8b8929..8b70a31e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -2. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -3. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -4. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) -5. 🗣 Commented on [#1686](https://github.com/OGGM/oggm/pull/1686#issuecomment-1925734764) in [OGGM/oggm](https://github.com/OGGM/oggm) -6. 🗣 Commented on [#1102](https://github.com/yeatmanlab/pyAFQ/pull/1102#issuecomment-1925451320) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -7. 🗣 Commented on [#21392](https://github.com/spyder-ide/spyder/pull/21392#issuecomment-1925375563) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#1244](https://github.com/aimclub/FEDOT/pull/1244#issuecomment-1925343191) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#249](https://github.com/CartoonFan/lutris/pull/249#issuecomment-1925280456) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#2](https://github.com/maxsu/IFProject/pull/2#issuecomment-1924941322) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +1. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +3. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +4. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +5. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) +6. 🗣 Commented on [#1686](https://github.com/OGGM/oggm/pull/1686#issuecomment-1925734764) in [OGGM/oggm](https://github.com/OGGM/oggm) +7. 🗣 Commented on [#1102](https://github.com/yeatmanlab/pyAFQ/pull/1102#issuecomment-1925451320) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +8. 🗣 Commented on [#21392](https://github.com/spyder-ide/spyder/pull/21392#issuecomment-1925375563) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#1244](https://github.com/aimclub/FEDOT/pull/1244#issuecomment-1925343191) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#249](https://github.com/CartoonFan/lutris/pull/249#issuecomment-1925280456) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 5631440f16462dbc94b1205699f1a8bb0eb99e64 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 15:15:28 +0000 Subject: [PATCH 1355/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8b70a31e..4b4952b6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -3. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -4. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -5. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) -6. 🗣 Commented on [#1686](https://github.com/OGGM/oggm/pull/1686#issuecomment-1925734764) in [OGGM/oggm](https://github.com/OGGM/oggm) -7. 🗣 Commented on [#1102](https://github.com/yeatmanlab/pyAFQ/pull/1102#issuecomment-1925451320) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -8. 🗣 Commented on [#21392](https://github.com/spyder-ide/spyder/pull/21392#issuecomment-1925375563) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#1244](https://github.com/aimclub/FEDOT/pull/1244#issuecomment-1925343191) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#249](https://github.com/CartoonFan/lutris/pull/249#issuecomment-1925280456) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +2. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +4. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +5. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +6. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) +7. 🗣 Commented on [#1686](https://github.com/OGGM/oggm/pull/1686#issuecomment-1925734764) in [OGGM/oggm](https://github.com/OGGM/oggm) +8. 🗣 Commented on [#1102](https://github.com/yeatmanlab/pyAFQ/pull/1102#issuecomment-1925451320) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +9. 🗣 Commented on [#21392](https://github.com/spyder-ide/spyder/pull/21392#issuecomment-1925375563) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#1244](https://github.com/aimclub/FEDOT/pull/1244#issuecomment-1925343191) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From 676644b1a3afe579b6ce0ca88ade8d62f76f91c1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 16:19:04 +0000 Subject: [PATCH 1356/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4b4952b6..d5da403b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -2. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -4. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -5. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -6. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) -7. 🗣 Commented on [#1686](https://github.com/OGGM/oggm/pull/1686#issuecomment-1925734764) in [OGGM/oggm](https://github.com/OGGM/oggm) -8. 🗣 Commented on [#1102](https://github.com/yeatmanlab/pyAFQ/pull/1102#issuecomment-1925451320) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -9. 🗣 Commented on [#21392](https://github.com/spyder-ide/spyder/pull/21392#issuecomment-1925375563) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#1244](https://github.com/aimclub/FEDOT/pull/1244#issuecomment-1925343191) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#17](https://github.com/eastgenomics/code_school/pull/17#issuecomment-1927299870) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) +2. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +3. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +5. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +6. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +7. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) +8. 🗣 Commented on [#1686](https://github.com/OGGM/oggm/pull/1686#issuecomment-1925734764) in [OGGM/oggm](https://github.com/OGGM/oggm) +9. 🗣 Commented on [#1102](https://github.com/yeatmanlab/pyAFQ/pull/1102#issuecomment-1925451320) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +10. 🗣 Commented on [#21392](https://github.com/spyder-ide/spyder/pull/21392#issuecomment-1925375563) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From aabd3235355e433027146c499f4f30678c01a360 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 17:14:15 +0000 Subject: [PATCH 1357/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d5da403b..1a3d76ce 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#17](https://github.com/eastgenomics/code_school/pull/17#issuecomment-1927299870) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) -2. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -3. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -5. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -6. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -7. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) -8. 🗣 Commented on [#1686](https://github.com/OGGM/oggm/pull/1686#issuecomment-1925734764) in [OGGM/oggm](https://github.com/OGGM/oggm) -9. 🗣 Commented on [#1102](https://github.com/yeatmanlab/pyAFQ/pull/1102#issuecomment-1925451320) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -10. 🗣 Commented on [#21392](https://github.com/spyder-ide/spyder/pull/21392#issuecomment-1925375563) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#209](https://github.com/cleder/pygeoif/pull/209#issuecomment-1927416831) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +2. 🗣 Commented on [#17](https://github.com/eastgenomics/code_school/pull/17#issuecomment-1927299870) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) +3. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +4. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +6. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +7. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +8. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) +9. 🗣 Commented on [#1686](https://github.com/OGGM/oggm/pull/1686#issuecomment-1925734764) in [OGGM/oggm](https://github.com/OGGM/oggm) +10. 🗣 Commented on [#1102](https://github.com/yeatmanlab/pyAFQ/pull/1102#issuecomment-1925451320) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) From a3150c225bbdf6e6dcf047452fe67d80c73e696e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 21:14:09 +0000 Subject: [PATCH 1358/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1a3d76ce..c051b3fc 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#209](https://github.com/cleder/pygeoif/pull/209#issuecomment-1927416831) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -2. 🗣 Commented on [#17](https://github.com/eastgenomics/code_school/pull/17#issuecomment-1927299870) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) -3. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -4. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -6. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -7. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -8. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) -9. 🗣 Commented on [#1686](https://github.com/OGGM/oggm/pull/1686#issuecomment-1925734764) in [OGGM/oggm](https://github.com/OGGM/oggm) -10. 🗣 Commented on [#1102](https://github.com/yeatmanlab/pyAFQ/pull/1102#issuecomment-1925451320) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +1. 🗣 Commented on [#703](https://github.com/OpenFreeEnergy/openfe/pull/703#issuecomment-1928033802) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#209](https://github.com/cleder/pygeoif/pull/209#issuecomment-1927416831) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +3. 🗣 Commented on [#17](https://github.com/eastgenomics/code_school/pull/17#issuecomment-1927299870) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) +4. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +5. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +7. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +8. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +9. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) +10. 🗣 Commented on [#1686](https://github.com/OGGM/oggm/pull/1686#issuecomment-1925734764) in [OGGM/oggm](https://github.com/OGGM/oggm) From 71b74c62b7296333292a4dc1176f3e6773e5dd51 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 23:37:14 +0000 Subject: [PATCH 1359/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c051b3fc..496cb393 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#703](https://github.com/OpenFreeEnergy/openfe/pull/703#issuecomment-1928033802) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#209](https://github.com/cleder/pygeoif/pull/209#issuecomment-1927416831) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -3. 🗣 Commented on [#17](https://github.com/eastgenomics/code_school/pull/17#issuecomment-1927299870) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) -4. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -5. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -7. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -8. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -9. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) -10. 🗣 Commented on [#1686](https://github.com/OGGM/oggm/pull/1686#issuecomment-1925734764) in [OGGM/oggm](https://github.com/OGGM/oggm) +1. 🗣 Commented on [#1103](https://github.com/yeatmanlab/pyAFQ/pull/1103#issuecomment-1928505754) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +2. 🗣 Commented on [#703](https://github.com/OpenFreeEnergy/openfe/pull/703#issuecomment-1928033802) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#209](https://github.com/cleder/pygeoif/pull/209#issuecomment-1927416831) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +4. 🗣 Commented on [#17](https://github.com/eastgenomics/code_school/pull/17#issuecomment-1927299870) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) +5. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +6. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +8. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +9. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +10. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) From 594568ddb477ff0156b19543e6166b26fad29ed5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 03:37:11 +0000 Subject: [PATCH 1360/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 496cb393..d7c51562 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1103](https://github.com/yeatmanlab/pyAFQ/pull/1103#issuecomment-1928505754) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -2. 🗣 Commented on [#703](https://github.com/OpenFreeEnergy/openfe/pull/703#issuecomment-1928033802) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#209](https://github.com/cleder/pygeoif/pull/209#issuecomment-1927416831) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -4. 🗣 Commented on [#17](https://github.com/eastgenomics/code_school/pull/17#issuecomment-1927299870) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) -5. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -6. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -8. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -9. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -10. 🗣 Commented on [#1615](https://github.com/OGGM/oggm/pull/1615#issuecomment-1925735978) in [OGGM/oggm](https://github.com/OGGM/oggm) +1. 🗣 Commented on [#794](https://github.com/spacetelescope/webbpsf/pull/794#issuecomment-1928716654) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#1103](https://github.com/yeatmanlab/pyAFQ/pull/1103#issuecomment-1928505754) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +3. 🗣 Commented on [#703](https://github.com/OpenFreeEnergy/openfe/pull/703#issuecomment-1928033802) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#209](https://github.com/cleder/pygeoif/pull/209#issuecomment-1927416831) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +5. 🗣 Commented on [#17](https://github.com/eastgenomics/code_school/pull/17#issuecomment-1927299870) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) +6. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +7. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +9. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +10. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) From 3e8dcf962b30da930cd1939405436b1f069244b7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 11:13:19 +0000 Subject: [PATCH 1361/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d7c51562..c1089968 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#794](https://github.com/spacetelescope/webbpsf/pull/794#issuecomment-1928716654) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#1103](https://github.com/yeatmanlab/pyAFQ/pull/1103#issuecomment-1928505754) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -3. 🗣 Commented on [#703](https://github.com/OpenFreeEnergy/openfe/pull/703#issuecomment-1928033802) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#209](https://github.com/cleder/pygeoif/pull/209#issuecomment-1927416831) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -5. 🗣 Commented on [#17](https://github.com/eastgenomics/code_school/pull/17#issuecomment-1927299870) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) -6. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -7. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -9. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) -10. 🗣 Commented on [#24](https://github.com/rasbt/LLMs-from-scratch/pull/24#issuecomment-1925805400) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +1. 🗣 Commented on [#115](https://github.com/aimclub/Fedot.Industrial/pull/115#issuecomment-1929275632) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +2. 🗣 Commented on [#794](https://github.com/spacetelescope/webbpsf/pull/794#issuecomment-1928716654) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#1103](https://github.com/yeatmanlab/pyAFQ/pull/1103#issuecomment-1928505754) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +4. 🗣 Commented on [#703](https://github.com/OpenFreeEnergy/openfe/pull/703#issuecomment-1928033802) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#209](https://github.com/cleder/pygeoif/pull/209#issuecomment-1927416831) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +6. 🗣 Commented on [#17](https://github.com/eastgenomics/code_school/pull/17#issuecomment-1927299870) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) +7. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +8. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +10. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) From 00d824e100056f7f1164fa619050dd0ddc4251cd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 11:37:01 +0000 Subject: [PATCH 1362/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c1089968..323ceb9d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#115](https://github.com/aimclub/Fedot.Industrial/pull/115#issuecomment-1929275632) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -2. 🗣 Commented on [#794](https://github.com/spacetelescope/webbpsf/pull/794#issuecomment-1928716654) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#1103](https://github.com/yeatmanlab/pyAFQ/pull/1103#issuecomment-1928505754) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -4. 🗣 Commented on [#703](https://github.com/OpenFreeEnergy/openfe/pull/703#issuecomment-1928033802) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#209](https://github.com/cleder/pygeoif/pull/209#issuecomment-1927416831) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -6. 🗣 Commented on [#17](https://github.com/eastgenomics/code_school/pull/17#issuecomment-1927299870) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) -7. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -8. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) -10. 🗣 Commented on [#5](https://github.com/GenevieveBuckley/micro-sam/pull/5#issuecomment-1926396511) in [GenevieveBuckley/micro-sam](https://github.com/GenevieveBuckley/micro-sam) +1. 🗣 Commented on [#149](https://github.com/lettucecfd/lettuce/pull/149#issuecomment-1929321788) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +2. 🗣 Commented on [#115](https://github.com/aimclub/Fedot.Industrial/pull/115#issuecomment-1929275632) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +3. 🗣 Commented on [#794](https://github.com/spacetelescope/webbpsf/pull/794#issuecomment-1928716654) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#1103](https://github.com/yeatmanlab/pyAFQ/pull/1103#issuecomment-1928505754) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +5. 🗣 Commented on [#703](https://github.com/OpenFreeEnergy/openfe/pull/703#issuecomment-1928033802) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#209](https://github.com/cleder/pygeoif/pull/209#issuecomment-1927416831) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +7. 🗣 Commented on [#17](https://github.com/eastgenomics/code_school/pull/17#issuecomment-1927299870) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) +8. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +9. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) From 463b6478bb83505840dba20d780d7a7f2723c2e7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 13:19:11 +0000 Subject: [PATCH 1363/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 323ceb9d..662f3b25 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#149](https://github.com/lettucecfd/lettuce/pull/149#issuecomment-1929321788) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -2. 🗣 Commented on [#115](https://github.com/aimclub/Fedot.Industrial/pull/115#issuecomment-1929275632) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -3. 🗣 Commented on [#794](https://github.com/spacetelescope/webbpsf/pull/794#issuecomment-1928716654) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#1103](https://github.com/yeatmanlab/pyAFQ/pull/1103#issuecomment-1928505754) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -5. 🗣 Commented on [#703](https://github.com/OpenFreeEnergy/openfe/pull/703#issuecomment-1928033802) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#209](https://github.com/cleder/pygeoif/pull/209#issuecomment-1927416831) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -7. 🗣 Commented on [#17](https://github.com/eastgenomics/code_school/pull/17#issuecomment-1927299870) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) -8. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -9. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#4](https://github.com/maxsu/IFProject/pull/4#issuecomment-1926763919) in [maxsu/IFProject](https://github.com/maxsu/IFProject) +1. 🗣 Commented on [#54](https://github.com/eastgenomics/Genetics_Ark/pull/54#issuecomment-1929473587) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +2. 🗣 Commented on [#149](https://github.com/lettucecfd/lettuce/pull/149#issuecomment-1929321788) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +3. 🗣 Commented on [#115](https://github.com/aimclub/Fedot.Industrial/pull/115#issuecomment-1929275632) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#794](https://github.com/spacetelescope/webbpsf/pull/794#issuecomment-1928716654) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#1103](https://github.com/yeatmanlab/pyAFQ/pull/1103#issuecomment-1928505754) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +6. 🗣 Commented on [#703](https://github.com/OpenFreeEnergy/openfe/pull/703#issuecomment-1928033802) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#209](https://github.com/cleder/pygeoif/pull/209#issuecomment-1927416831) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +8. 🗣 Commented on [#17](https://github.com/eastgenomics/code_school/pull/17#issuecomment-1927299870) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) +9. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +10. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 4c7b94277c06c75de42f326b987427f7a5f2879c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 16:19:42 +0000 Subject: [PATCH 1364/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 662f3b25..c5b5cc0a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#54](https://github.com/eastgenomics/Genetics_Ark/pull/54#issuecomment-1929473587) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -2. 🗣 Commented on [#149](https://github.com/lettucecfd/lettuce/pull/149#issuecomment-1929321788) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -3. 🗣 Commented on [#115](https://github.com/aimclub/Fedot.Industrial/pull/115#issuecomment-1929275632) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#794](https://github.com/spacetelescope/webbpsf/pull/794#issuecomment-1928716654) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#1103](https://github.com/yeatmanlab/pyAFQ/pull/1103#issuecomment-1928505754) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -6. 🗣 Commented on [#703](https://github.com/OpenFreeEnergy/openfe/pull/703#issuecomment-1928033802) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#209](https://github.com/cleder/pygeoif/pull/209#issuecomment-1927416831) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -8. 🗣 Commented on [#17](https://github.com/eastgenomics/code_school/pull/17#issuecomment-1927299870) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) -9. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -10. 🗣 Commented on [#250](https://github.com/CartoonFan/lutris/pull/250#issuecomment-1927012313) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#5458](https://github.com/rhinstaller/anaconda/pull/5458#issuecomment-1930115342) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#54](https://github.com/eastgenomics/Genetics_Ark/pull/54#issuecomment-1929473587) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +3. 🗣 Commented on [#149](https://github.com/lettucecfd/lettuce/pull/149#issuecomment-1929321788) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +4. 🗣 Commented on [#115](https://github.com/aimclub/Fedot.Industrial/pull/115#issuecomment-1929275632) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +5. 🗣 Commented on [#794](https://github.com/spacetelescope/webbpsf/pull/794#issuecomment-1928716654) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#1103](https://github.com/yeatmanlab/pyAFQ/pull/1103#issuecomment-1928505754) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +7. 🗣 Commented on [#703](https://github.com/OpenFreeEnergy/openfe/pull/703#issuecomment-1928033802) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#209](https://github.com/cleder/pygeoif/pull/209#issuecomment-1927416831) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +9. 🗣 Commented on [#17](https://github.com/eastgenomics/code_school/pull/17#issuecomment-1927299870) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) +10. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) From 79d4437c122a1efa2738e9a4a6b796c3090bce54 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 16:37:55 +0000 Subject: [PATCH 1365/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c5b5cc0a..7a5f2c12 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5458](https://github.com/rhinstaller/anaconda/pull/5458#issuecomment-1930115342) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#54](https://github.com/eastgenomics/Genetics_Ark/pull/54#issuecomment-1929473587) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -3. 🗣 Commented on [#149](https://github.com/lettucecfd/lettuce/pull/149#issuecomment-1929321788) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -4. 🗣 Commented on [#115](https://github.com/aimclub/Fedot.Industrial/pull/115#issuecomment-1929275632) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -5. 🗣 Commented on [#794](https://github.com/spacetelescope/webbpsf/pull/794#issuecomment-1928716654) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#1103](https://github.com/yeatmanlab/pyAFQ/pull/1103#issuecomment-1928505754) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -7. 🗣 Commented on [#703](https://github.com/OpenFreeEnergy/openfe/pull/703#issuecomment-1928033802) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#209](https://github.com/cleder/pygeoif/pull/209#issuecomment-1927416831) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -9. 🗣 Commented on [#17](https://github.com/eastgenomics/code_school/pull/17#issuecomment-1927299870) in [eastgenomics/code_school](https://github.com/eastgenomics/code_school) -10. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/2#issuecomment-1927191246) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +1. 🗣 Commented on [#21769](https://github.com/spyder-ide/spyder/pull/21769#issuecomment-1930282919) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#116](https://github.com/aimclub/Fedot.Industrial/pull/116#issuecomment-1930258043) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +3. 🗣 Commented on [#136](https://github.com/lettucecfd/lettuce/pull/136#issuecomment-1930231038) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +4. 🗣 Commented on [#5458](https://github.com/rhinstaller/anaconda/pull/5458#issuecomment-1930115342) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#54](https://github.com/eastgenomics/Genetics_Ark/pull/54#issuecomment-1929473587) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +6. 🗣 Commented on [#149](https://github.com/lettucecfd/lettuce/pull/149#issuecomment-1929321788) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +7. 🗣 Commented on [#115](https://github.com/aimclub/Fedot.Industrial/pull/115#issuecomment-1929275632) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +8. 🗣 Commented on [#794](https://github.com/spacetelescope/webbpsf/pull/794#issuecomment-1928716654) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +9. 🗣 Commented on [#1103](https://github.com/yeatmanlab/pyAFQ/pull/1103#issuecomment-1928505754) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +10. 🗣 Commented on [#703](https://github.com/OpenFreeEnergy/openfe/pull/703#issuecomment-1928033802) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 75d33bbb72cb2c35101326e7e73acdcc1d6472a5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 17:37:15 +0000 Subject: [PATCH 1366/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7a5f2c12..7583c069 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21769](https://github.com/spyder-ide/spyder/pull/21769#issuecomment-1930282919) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#116](https://github.com/aimclub/Fedot.Industrial/pull/116#issuecomment-1930258043) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -3. 🗣 Commented on [#136](https://github.com/lettucecfd/lettuce/pull/136#issuecomment-1930231038) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -4. 🗣 Commented on [#5458](https://github.com/rhinstaller/anaconda/pull/5458#issuecomment-1930115342) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#54](https://github.com/eastgenomics/Genetics_Ark/pull/54#issuecomment-1929473587) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -6. 🗣 Commented on [#149](https://github.com/lettucecfd/lettuce/pull/149#issuecomment-1929321788) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -7. 🗣 Commented on [#115](https://github.com/aimclub/Fedot.Industrial/pull/115#issuecomment-1929275632) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -8. 🗣 Commented on [#794](https://github.com/spacetelescope/webbpsf/pull/794#issuecomment-1928716654) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -9. 🗣 Commented on [#1103](https://github.com/yeatmanlab/pyAFQ/pull/1103#issuecomment-1928505754) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -10. 🗣 Commented on [#703](https://github.com/OpenFreeEnergy/openfe/pull/703#issuecomment-1928033802) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#10](https://github.com/eastgenomics/Haemonc_requests/pull/10#issuecomment-1930406969) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) +2. 🗣 Commented on [#21769](https://github.com/spyder-ide/spyder/pull/21769#issuecomment-1930282919) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#116](https://github.com/aimclub/Fedot.Industrial/pull/116#issuecomment-1930258043) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#136](https://github.com/lettucecfd/lettuce/pull/136#issuecomment-1930231038) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +5. 🗣 Commented on [#5458](https://github.com/rhinstaller/anaconda/pull/5458#issuecomment-1930115342) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#54](https://github.com/eastgenomics/Genetics_Ark/pull/54#issuecomment-1929473587) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +7. 🗣 Commented on [#149](https://github.com/lettucecfd/lettuce/pull/149#issuecomment-1929321788) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +8. 🗣 Commented on [#115](https://github.com/aimclub/Fedot.Industrial/pull/115#issuecomment-1929275632) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +9. 🗣 Commented on [#794](https://github.com/spacetelescope/webbpsf/pull/794#issuecomment-1928716654) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +10. 🗣 Commented on [#1103](https://github.com/yeatmanlab/pyAFQ/pull/1103#issuecomment-1928505754) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) From 7db1b2d409c9ba2b1dab7a2eb3202ad6b779a1c3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 21:13:51 +0000 Subject: [PATCH 1367/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7583c069..f8c25eb6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#10](https://github.com/eastgenomics/Haemonc_requests/pull/10#issuecomment-1930406969) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) -2. 🗣 Commented on [#21769](https://github.com/spyder-ide/spyder/pull/21769#issuecomment-1930282919) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#116](https://github.com/aimclub/Fedot.Industrial/pull/116#issuecomment-1930258043) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#136](https://github.com/lettucecfd/lettuce/pull/136#issuecomment-1930231038) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -5. 🗣 Commented on [#5458](https://github.com/rhinstaller/anaconda/pull/5458#issuecomment-1930115342) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#54](https://github.com/eastgenomics/Genetics_Ark/pull/54#issuecomment-1929473587) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -7. 🗣 Commented on [#149](https://github.com/lettucecfd/lettuce/pull/149#issuecomment-1929321788) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -8. 🗣 Commented on [#115](https://github.com/aimclub/Fedot.Industrial/pull/115#issuecomment-1929275632) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -9. 🗣 Commented on [#794](https://github.com/spacetelescope/webbpsf/pull/794#issuecomment-1928716654) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -10. 🗣 Commented on [#1103](https://github.com/yeatmanlab/pyAFQ/pull/1103#issuecomment-1928505754) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +1. 🗣 Commented on [#798](https://github.com/spacetelescope/webbpsf/pull/798#issuecomment-1930712173) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#10](https://github.com/eastgenomics/Haemonc_requests/pull/10#issuecomment-1930406969) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) +3. 🗣 Commented on [#21769](https://github.com/spyder-ide/spyder/pull/21769#issuecomment-1930282919) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#116](https://github.com/aimclub/Fedot.Industrial/pull/116#issuecomment-1930258043) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +5. 🗣 Commented on [#136](https://github.com/lettucecfd/lettuce/pull/136#issuecomment-1930231038) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +6. 🗣 Commented on [#5458](https://github.com/rhinstaller/anaconda/pull/5458#issuecomment-1930115342) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#54](https://github.com/eastgenomics/Genetics_Ark/pull/54#issuecomment-1929473587) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +8. 🗣 Commented on [#149](https://github.com/lettucecfd/lettuce/pull/149#issuecomment-1929321788) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +9. 🗣 Commented on [#115](https://github.com/aimclub/Fedot.Industrial/pull/115#issuecomment-1929275632) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#794](https://github.com/spacetelescope/webbpsf/pull/794#issuecomment-1928716654) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) From 84fc4c91406b91f7e5792d00d772c26cbab0d264 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 21:37:14 +0000 Subject: [PATCH 1368/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f8c25eb6..a9438794 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#798](https://github.com/spacetelescope/webbpsf/pull/798#issuecomment-1930712173) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#10](https://github.com/eastgenomics/Haemonc_requests/pull/10#issuecomment-1930406969) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) -3. 🗣 Commented on [#21769](https://github.com/spyder-ide/spyder/pull/21769#issuecomment-1930282919) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#116](https://github.com/aimclub/Fedot.Industrial/pull/116#issuecomment-1930258043) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -5. 🗣 Commented on [#136](https://github.com/lettucecfd/lettuce/pull/136#issuecomment-1930231038) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -6. 🗣 Commented on [#5458](https://github.com/rhinstaller/anaconda/pull/5458#issuecomment-1930115342) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#54](https://github.com/eastgenomics/Genetics_Ark/pull/54#issuecomment-1929473587) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -8. 🗣 Commented on [#149](https://github.com/lettucecfd/lettuce/pull/149#issuecomment-1929321788) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -9. 🗣 Commented on [#115](https://github.com/aimclub/Fedot.Industrial/pull/115#issuecomment-1929275632) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#794](https://github.com/spacetelescope/webbpsf/pull/794#issuecomment-1928716654) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +1. 🗣 Commented on [#3109](https://github.com/reframe-hpc/reframe/pull/3109#issuecomment-1930779122) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +2. 🗣 Commented on [#798](https://github.com/spacetelescope/webbpsf/pull/798#issuecomment-1930712173) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#10](https://github.com/eastgenomics/Haemonc_requests/pull/10#issuecomment-1930406969) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) +4. 🗣 Commented on [#21769](https://github.com/spyder-ide/spyder/pull/21769#issuecomment-1930282919) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#116](https://github.com/aimclub/Fedot.Industrial/pull/116#issuecomment-1930258043) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#136](https://github.com/lettucecfd/lettuce/pull/136#issuecomment-1930231038) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +7. 🗣 Commented on [#5458](https://github.com/rhinstaller/anaconda/pull/5458#issuecomment-1930115342) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#54](https://github.com/eastgenomics/Genetics_Ark/pull/54#issuecomment-1929473587) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +9. 🗣 Commented on [#149](https://github.com/lettucecfd/lettuce/pull/149#issuecomment-1929321788) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +10. 🗣 Commented on [#115](https://github.com/aimclub/Fedot.Industrial/pull/115#issuecomment-1929275632) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) From 0b27ee9262be5f0257f66e8f8c17905046eb427a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 22:14:13 +0000 Subject: [PATCH 1369/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a9438794..1aac877a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3109](https://github.com/reframe-hpc/reframe/pull/3109#issuecomment-1930779122) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -2. 🗣 Commented on [#798](https://github.com/spacetelescope/webbpsf/pull/798#issuecomment-1930712173) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#10](https://github.com/eastgenomics/Haemonc_requests/pull/10#issuecomment-1930406969) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) -4. 🗣 Commented on [#21769](https://github.com/spyder-ide/spyder/pull/21769#issuecomment-1930282919) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#116](https://github.com/aimclub/Fedot.Industrial/pull/116#issuecomment-1930258043) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#136](https://github.com/lettucecfd/lettuce/pull/136#issuecomment-1930231038) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -7. 🗣 Commented on [#5458](https://github.com/rhinstaller/anaconda/pull/5458#issuecomment-1930115342) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#54](https://github.com/eastgenomics/Genetics_Ark/pull/54#issuecomment-1929473587) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -9. 🗣 Commented on [#149](https://github.com/lettucecfd/lettuce/pull/149#issuecomment-1929321788) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -10. 🗣 Commented on [#115](https://github.com/aimclub/Fedot.Industrial/pull/115#issuecomment-1929275632) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +1. 🗣 Commented on [#286](https://github.com/OpenFreeEnergy/gufe/pull/286#issuecomment-1930809393) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#3109](https://github.com/reframe-hpc/reframe/pull/3109#issuecomment-1930779122) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +3. 🗣 Commented on [#798](https://github.com/spacetelescope/webbpsf/pull/798#issuecomment-1930712173) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#10](https://github.com/eastgenomics/Haemonc_requests/pull/10#issuecomment-1930406969) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) +5. 🗣 Commented on [#21769](https://github.com/spyder-ide/spyder/pull/21769#issuecomment-1930282919) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#116](https://github.com/aimclub/Fedot.Industrial/pull/116#issuecomment-1930258043) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#136](https://github.com/lettucecfd/lettuce/pull/136#issuecomment-1930231038) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +8. 🗣 Commented on [#5458](https://github.com/rhinstaller/anaconda/pull/5458#issuecomment-1930115342) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#54](https://github.com/eastgenomics/Genetics_Ark/pull/54#issuecomment-1929473587) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +10. 🗣 Commented on [#149](https://github.com/lettucecfd/lettuce/pull/149#issuecomment-1929321788) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) From 30245a0f6d5aff1a76f9d424687eaa51d212ef4e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 23:15:35 +0000 Subject: [PATCH 1370/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1aac877a..a5da9d80 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#286](https://github.com/OpenFreeEnergy/gufe/pull/286#issuecomment-1930809393) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#3109](https://github.com/reframe-hpc/reframe/pull/3109#issuecomment-1930779122) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -3. 🗣 Commented on [#798](https://github.com/spacetelescope/webbpsf/pull/798#issuecomment-1930712173) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#10](https://github.com/eastgenomics/Haemonc_requests/pull/10#issuecomment-1930406969) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) -5. 🗣 Commented on [#21769](https://github.com/spyder-ide/spyder/pull/21769#issuecomment-1930282919) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#116](https://github.com/aimclub/Fedot.Industrial/pull/116#issuecomment-1930258043) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#136](https://github.com/lettucecfd/lettuce/pull/136#issuecomment-1930231038) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -8. 🗣 Commented on [#5458](https://github.com/rhinstaller/anaconda/pull/5458#issuecomment-1930115342) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#54](https://github.com/eastgenomics/Genetics_Ark/pull/54#issuecomment-1929473587) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -10. 🗣 Commented on [#149](https://github.com/lettucecfd/lettuce/pull/149#issuecomment-1929321788) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +1. 🗣 Commented on [#705](https://github.com/OpenFreeEnergy/openfe/pull/705#issuecomment-1930913545) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#286](https://github.com/OpenFreeEnergy/gufe/pull/286#issuecomment-1930809393) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#3109](https://github.com/reframe-hpc/reframe/pull/3109#issuecomment-1930779122) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +4. 🗣 Commented on [#798](https://github.com/spacetelescope/webbpsf/pull/798#issuecomment-1930712173) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#10](https://github.com/eastgenomics/Haemonc_requests/pull/10#issuecomment-1930406969) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) +6. 🗣 Commented on [#21769](https://github.com/spyder-ide/spyder/pull/21769#issuecomment-1930282919) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#116](https://github.com/aimclub/Fedot.Industrial/pull/116#issuecomment-1930258043) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +8. 🗣 Commented on [#136](https://github.com/lettucecfd/lettuce/pull/136#issuecomment-1930231038) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +9. 🗣 Commented on [#5458](https://github.com/rhinstaller/anaconda/pull/5458#issuecomment-1930115342) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#54](https://github.com/eastgenomics/Genetics_Ark/pull/54#issuecomment-1929473587) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) From f412b5482d07679d7179607075a30fc29ab5f52a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 01:07:13 +0000 Subject: [PATCH 1371/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a5da9d80..bec95cc0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#705](https://github.com/OpenFreeEnergy/openfe/pull/705#issuecomment-1930913545) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#286](https://github.com/OpenFreeEnergy/gufe/pull/286#issuecomment-1930809393) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#3109](https://github.com/reframe-hpc/reframe/pull/3109#issuecomment-1930779122) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -4. 🗣 Commented on [#798](https://github.com/spacetelescope/webbpsf/pull/798#issuecomment-1930712173) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#10](https://github.com/eastgenomics/Haemonc_requests/pull/10#issuecomment-1930406969) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) -6. 🗣 Commented on [#21769](https://github.com/spyder-ide/spyder/pull/21769#issuecomment-1930282919) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#116](https://github.com/aimclub/Fedot.Industrial/pull/116#issuecomment-1930258043) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -8. 🗣 Commented on [#136](https://github.com/lettucecfd/lettuce/pull/136#issuecomment-1930231038) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -9. 🗣 Commented on [#5458](https://github.com/rhinstaller/anaconda/pull/5458#issuecomment-1930115342) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#54](https://github.com/eastgenomics/Genetics_Ark/pull/54#issuecomment-1929473587) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +1. 🗣 Commented on [#1061](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1061#issuecomment-1930984003) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#301](https://github.com/AdvancedPhotonSource/tike/pull/301#issuecomment-1930966798) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +3. 🗣 Commented on [#705](https://github.com/OpenFreeEnergy/openfe/pull/705#issuecomment-1930913545) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#286](https://github.com/OpenFreeEnergy/gufe/pull/286#issuecomment-1930809393) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#3109](https://github.com/reframe-hpc/reframe/pull/3109#issuecomment-1930779122) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +6. 🗣 Commented on [#798](https://github.com/spacetelescope/webbpsf/pull/798#issuecomment-1930712173) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +7. 🗣 Commented on [#10](https://github.com/eastgenomics/Haemonc_requests/pull/10#issuecomment-1930406969) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) +8. 🗣 Commented on [#21769](https://github.com/spyder-ide/spyder/pull/21769#issuecomment-1930282919) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#116](https://github.com/aimclub/Fedot.Industrial/pull/116#issuecomment-1930258043) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#136](https://github.com/lettucecfd/lettuce/pull/136#issuecomment-1930231038) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) From 813def30cdf1cb5f4dea8db26ad035e4f8900040 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 03:17:15 +0000 Subject: [PATCH 1372/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bec95cc0..b38a46ce 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1061](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1061#issuecomment-1930984003) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#301](https://github.com/AdvancedPhotonSource/tike/pull/301#issuecomment-1930966798) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -3. 🗣 Commented on [#705](https://github.com/OpenFreeEnergy/openfe/pull/705#issuecomment-1930913545) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#286](https://github.com/OpenFreeEnergy/gufe/pull/286#issuecomment-1930809393) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#3109](https://github.com/reframe-hpc/reframe/pull/3109#issuecomment-1930779122) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -6. 🗣 Commented on [#798](https://github.com/spacetelescope/webbpsf/pull/798#issuecomment-1930712173) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -7. 🗣 Commented on [#10](https://github.com/eastgenomics/Haemonc_requests/pull/10#issuecomment-1930406969) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) -8. 🗣 Commented on [#21769](https://github.com/spyder-ide/spyder/pull/21769#issuecomment-1930282919) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#116](https://github.com/aimclub/Fedot.Industrial/pull/116#issuecomment-1930258043) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#136](https://github.com/lettucecfd/lettuce/pull/136#issuecomment-1930231038) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +1. 🗣 Commented on [#4361](https://github.com/uwcirg/truenth-portal/pull/4361#issuecomment-1931182644) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +2. 🗣 Commented on [#1061](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1061#issuecomment-1930984003) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#301](https://github.com/AdvancedPhotonSource/tike/pull/301#issuecomment-1930966798) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +4. 🗣 Commented on [#705](https://github.com/OpenFreeEnergy/openfe/pull/705#issuecomment-1930913545) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#286](https://github.com/OpenFreeEnergy/gufe/pull/286#issuecomment-1930809393) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#3109](https://github.com/reframe-hpc/reframe/pull/3109#issuecomment-1930779122) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +7. 🗣 Commented on [#798](https://github.com/spacetelescope/webbpsf/pull/798#issuecomment-1930712173) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#10](https://github.com/eastgenomics/Haemonc_requests/pull/10#issuecomment-1930406969) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) +9. 🗣 Commented on [#21769](https://github.com/spyder-ide/spyder/pull/21769#issuecomment-1930282919) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#116](https://github.com/aimclub/Fedot.Industrial/pull/116#issuecomment-1930258043) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) From afbda45b12b2a189c5235f4fa00b4c86ea658fff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 09:15:53 +0000 Subject: [PATCH 1373/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b38a46ce..5a85be37 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4361](https://github.com/uwcirg/truenth-portal/pull/4361#issuecomment-1931182644) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -2. 🗣 Commented on [#1061](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1061#issuecomment-1930984003) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#301](https://github.com/AdvancedPhotonSource/tike/pull/301#issuecomment-1930966798) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -4. 🗣 Commented on [#705](https://github.com/OpenFreeEnergy/openfe/pull/705#issuecomment-1930913545) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#286](https://github.com/OpenFreeEnergy/gufe/pull/286#issuecomment-1930809393) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#3109](https://github.com/reframe-hpc/reframe/pull/3109#issuecomment-1930779122) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -7. 🗣 Commented on [#798](https://github.com/spacetelescope/webbpsf/pull/798#issuecomment-1930712173) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#10](https://github.com/eastgenomics/Haemonc_requests/pull/10#issuecomment-1930406969) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) -9. 🗣 Commented on [#21769](https://github.com/spyder-ide/spyder/pull/21769#issuecomment-1930282919) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#116](https://github.com/aimclub/Fedot.Industrial/pull/116#issuecomment-1930258043) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +1. 🗣 Commented on [#9144](https://github.com/statsmodels/statsmodels/pull/9144#issuecomment-1931568624) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +2. 🗣 Commented on [#4361](https://github.com/uwcirg/truenth-portal/pull/4361#issuecomment-1931182644) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +3. 🗣 Commented on [#1061](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1061#issuecomment-1930984003) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#301](https://github.com/AdvancedPhotonSource/tike/pull/301#issuecomment-1930966798) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +5. 🗣 Commented on [#705](https://github.com/OpenFreeEnergy/openfe/pull/705#issuecomment-1930913545) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#286](https://github.com/OpenFreeEnergy/gufe/pull/286#issuecomment-1930809393) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#3109](https://github.com/reframe-hpc/reframe/pull/3109#issuecomment-1930779122) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +8. 🗣 Commented on [#798](https://github.com/spacetelescope/webbpsf/pull/798#issuecomment-1930712173) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +9. 🗣 Commented on [#10](https://github.com/eastgenomics/Haemonc_requests/pull/10#issuecomment-1930406969) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) +10. 🗣 Commented on [#21769](https://github.com/spyder-ide/spyder/pull/21769#issuecomment-1930282919) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 0d00f244d21980f72cfc31cb6d9315dd0d7e33c3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 11:13:36 +0000 Subject: [PATCH 1374/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5a85be37..a3548f09 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#9144](https://github.com/statsmodels/statsmodels/pull/9144#issuecomment-1931568624) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -2. 🗣 Commented on [#4361](https://github.com/uwcirg/truenth-portal/pull/4361#issuecomment-1931182644) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -3. 🗣 Commented on [#1061](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1061#issuecomment-1930984003) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#301](https://github.com/AdvancedPhotonSource/tike/pull/301#issuecomment-1930966798) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -5. 🗣 Commented on [#705](https://github.com/OpenFreeEnergy/openfe/pull/705#issuecomment-1930913545) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#286](https://github.com/OpenFreeEnergy/gufe/pull/286#issuecomment-1930809393) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#3109](https://github.com/reframe-hpc/reframe/pull/3109#issuecomment-1930779122) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -8. 🗣 Commented on [#798](https://github.com/spacetelescope/webbpsf/pull/798#issuecomment-1930712173) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -9. 🗣 Commented on [#10](https://github.com/eastgenomics/Haemonc_requests/pull/10#issuecomment-1930406969) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) -10. 🗣 Commented on [#21769](https://github.com/spyder-ide/spyder/pull/21769#issuecomment-1930282919) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#87](https://github.com/eastgenomics/eris/pull/87#issuecomment-1931765937) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#9144](https://github.com/statsmodels/statsmodels/pull/9144#issuecomment-1931568624) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#4361](https://github.com/uwcirg/truenth-portal/pull/4361#issuecomment-1931182644) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +4. 🗣 Commented on [#1061](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1061#issuecomment-1930984003) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#301](https://github.com/AdvancedPhotonSource/tike/pull/301#issuecomment-1930966798) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +6. 🗣 Commented on [#705](https://github.com/OpenFreeEnergy/openfe/pull/705#issuecomment-1930913545) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#286](https://github.com/OpenFreeEnergy/gufe/pull/286#issuecomment-1930809393) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#3109](https://github.com/reframe-hpc/reframe/pull/3109#issuecomment-1930779122) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +9. 🗣 Commented on [#798](https://github.com/spacetelescope/webbpsf/pull/798#issuecomment-1930712173) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +10. 🗣 Commented on [#10](https://github.com/eastgenomics/Haemonc_requests/pull/10#issuecomment-1930406969) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) From 27ed54fc931c46d417bd3345a17f87d6174145dd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 12:48:51 +0000 Subject: [PATCH 1375/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a3548f09..09dab560 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#87](https://github.com/eastgenomics/eris/pull/87#issuecomment-1931765937) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#9144](https://github.com/statsmodels/statsmodels/pull/9144#issuecomment-1931568624) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#4361](https://github.com/uwcirg/truenth-portal/pull/4361#issuecomment-1931182644) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -4. 🗣 Commented on [#1061](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1061#issuecomment-1930984003) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#301](https://github.com/AdvancedPhotonSource/tike/pull/301#issuecomment-1930966798) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -6. 🗣 Commented on [#705](https://github.com/OpenFreeEnergy/openfe/pull/705#issuecomment-1930913545) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#286](https://github.com/OpenFreeEnergy/gufe/pull/286#issuecomment-1930809393) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#3109](https://github.com/reframe-hpc/reframe/pull/3109#issuecomment-1930779122) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -9. 🗣 Commented on [#798](https://github.com/spacetelescope/webbpsf/pull/798#issuecomment-1930712173) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -10. 🗣 Commented on [#10](https://github.com/eastgenomics/Haemonc_requests/pull/10#issuecomment-1930406969) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) +1. 🗣 Commented on [#484](https://github.com/Spoken-tutorial/spoken-website/pull/484#issuecomment-1931949733) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +2. 🗣 Commented on [#88](https://github.com/eastgenomics/eris/pull/88#issuecomment-1931941198) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#87](https://github.com/eastgenomics/eris/pull/87#issuecomment-1931765937) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#9144](https://github.com/statsmodels/statsmodels/pull/9144#issuecomment-1931568624) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#4361](https://github.com/uwcirg/truenth-portal/pull/4361#issuecomment-1931182644) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +6. 🗣 Commented on [#1061](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1061#issuecomment-1930984003) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#301](https://github.com/AdvancedPhotonSource/tike/pull/301#issuecomment-1930966798) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +8. 🗣 Commented on [#705](https://github.com/OpenFreeEnergy/openfe/pull/705#issuecomment-1930913545) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#286](https://github.com/OpenFreeEnergy/gufe/pull/286#issuecomment-1930809393) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#3109](https://github.com/reframe-hpc/reframe/pull/3109#issuecomment-1930779122) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) From c4bbba7c09d220ccf109012231d9dcfc27f4970a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 13:16:47 +0000 Subject: [PATCH 1376/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 09dab560..6d974367 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#484](https://github.com/Spoken-tutorial/spoken-website/pull/484#issuecomment-1931949733) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -2. 🗣 Commented on [#88](https://github.com/eastgenomics/eris/pull/88#issuecomment-1931941198) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#87](https://github.com/eastgenomics/eris/pull/87#issuecomment-1931765937) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#9144](https://github.com/statsmodels/statsmodels/pull/9144#issuecomment-1931568624) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -5. 🗣 Commented on [#4361](https://github.com/uwcirg/truenth-portal/pull/4361#issuecomment-1931182644) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -6. 🗣 Commented on [#1061](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1061#issuecomment-1930984003) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#301](https://github.com/AdvancedPhotonSource/tike/pull/301#issuecomment-1930966798) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -8. 🗣 Commented on [#705](https://github.com/OpenFreeEnergy/openfe/pull/705#issuecomment-1930913545) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#286](https://github.com/OpenFreeEnergy/gufe/pull/286#issuecomment-1930809393) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#3109](https://github.com/reframe-hpc/reframe/pull/3109#issuecomment-1930779122) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +1. 🗣 Commented on [#52](https://github.com/bento-dbaas/volume-provider/pull/52#issuecomment-1931991731) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) +2. 🗣 Commented on [#484](https://github.com/Spoken-tutorial/spoken-website/pull/484#issuecomment-1931949733) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +3. 🗣 Commented on [#88](https://github.com/eastgenomics/eris/pull/88#issuecomment-1931941198) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#87](https://github.com/eastgenomics/eris/pull/87#issuecomment-1931765937) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#9144](https://github.com/statsmodels/statsmodels/pull/9144#issuecomment-1931568624) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +6. 🗣 Commented on [#4361](https://github.com/uwcirg/truenth-portal/pull/4361#issuecomment-1931182644) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +7. 🗣 Commented on [#1061](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1061#issuecomment-1930984003) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#301](https://github.com/AdvancedPhotonSource/tike/pull/301#issuecomment-1930966798) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +9. 🗣 Commented on [#705](https://github.com/OpenFreeEnergy/openfe/pull/705#issuecomment-1930913545) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#286](https://github.com/OpenFreeEnergy/gufe/pull/286#issuecomment-1930809393) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From 9f4bfe41ed7232fd50254d753c93ad91b9aa0a2f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 16:21:01 +0000 Subject: [PATCH 1377/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6d974367..6a106a1b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#52](https://github.com/bento-dbaas/volume-provider/pull/52#issuecomment-1931991731) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) -2. 🗣 Commented on [#484](https://github.com/Spoken-tutorial/spoken-website/pull/484#issuecomment-1931949733) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -3. 🗣 Commented on [#88](https://github.com/eastgenomics/eris/pull/88#issuecomment-1931941198) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#87](https://github.com/eastgenomics/eris/pull/87#issuecomment-1931765937) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#9144](https://github.com/statsmodels/statsmodels/pull/9144#issuecomment-1931568624) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -6. 🗣 Commented on [#4361](https://github.com/uwcirg/truenth-portal/pull/4361#issuecomment-1931182644) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -7. 🗣 Commented on [#1061](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1061#issuecomment-1930984003) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#301](https://github.com/AdvancedPhotonSource/tike/pull/301#issuecomment-1930966798) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -9. 🗣 Commented on [#705](https://github.com/OpenFreeEnergy/openfe/pull/705#issuecomment-1930913545) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#286](https://github.com/OpenFreeEnergy/gufe/pull/286#issuecomment-1930809393) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1932380425) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +2. 🗣 Commented on [#617](https://github.com/NeuralEnsemble/elephant/pull/617#issuecomment-1932371994) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +3. 🗣 Commented on [#52](https://github.com/bento-dbaas/volume-provider/pull/52#issuecomment-1931991731) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) +4. 🗣 Commented on [#484](https://github.com/Spoken-tutorial/spoken-website/pull/484#issuecomment-1931949733) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +5. 🗣 Commented on [#88](https://github.com/eastgenomics/eris/pull/88#issuecomment-1931941198) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#87](https://github.com/eastgenomics/eris/pull/87#issuecomment-1931765937) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#9144](https://github.com/statsmodels/statsmodels/pull/9144#issuecomment-1931568624) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +8. 🗣 Commented on [#4361](https://github.com/uwcirg/truenth-portal/pull/4361#issuecomment-1931182644) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +9. 🗣 Commented on [#1061](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1061#issuecomment-1930984003) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#301](https://github.com/AdvancedPhotonSource/tike/pull/301#issuecomment-1930966798) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) From 1c94488f300484579c73adae441bde014de7b486 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 18:19:17 +0000 Subject: [PATCH 1378/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6a106a1b..e8a76630 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1932380425) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -2. 🗣 Commented on [#617](https://github.com/NeuralEnsemble/elephant/pull/617#issuecomment-1932371994) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -3. 🗣 Commented on [#52](https://github.com/bento-dbaas/volume-provider/pull/52#issuecomment-1931991731) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) -4. 🗣 Commented on [#484](https://github.com/Spoken-tutorial/spoken-website/pull/484#issuecomment-1931949733) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -5. 🗣 Commented on [#88](https://github.com/eastgenomics/eris/pull/88#issuecomment-1931941198) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#87](https://github.com/eastgenomics/eris/pull/87#issuecomment-1931765937) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#9144](https://github.com/statsmodels/statsmodels/pull/9144#issuecomment-1931568624) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -8. 🗣 Commented on [#4361](https://github.com/uwcirg/truenth-portal/pull/4361#issuecomment-1931182644) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -9. 🗣 Commented on [#1061](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1061#issuecomment-1930984003) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#301](https://github.com/AdvancedPhotonSource/tike/pull/301#issuecomment-1930966798) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +1. 🗣 Commented on [#10](https://github.com/Seluj78/shellhub-python/pull/10#issuecomment-1932595197) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +2. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1932380425) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +3. 🗣 Commented on [#617](https://github.com/NeuralEnsemble/elephant/pull/617#issuecomment-1932371994) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +4. 🗣 Commented on [#52](https://github.com/bento-dbaas/volume-provider/pull/52#issuecomment-1931991731) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) +5. 🗣 Commented on [#484](https://github.com/Spoken-tutorial/spoken-website/pull/484#issuecomment-1931949733) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +6. 🗣 Commented on [#88](https://github.com/eastgenomics/eris/pull/88#issuecomment-1931941198) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#87](https://github.com/eastgenomics/eris/pull/87#issuecomment-1931765937) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#9144](https://github.com/statsmodels/statsmodels/pull/9144#issuecomment-1931568624) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +9. 🗣 Commented on [#4361](https://github.com/uwcirg/truenth-portal/pull/4361#issuecomment-1931182644) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +10. 🗣 Commented on [#1061](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1061#issuecomment-1930984003) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 9d0b9b79a4e29d44874cb52241f2876ccd35a649 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 23:15:48 +0000 Subject: [PATCH 1379/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e8a76630..f1e4d036 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#10](https://github.com/Seluj78/shellhub-python/pull/10#issuecomment-1932595197) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) -2. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1932380425) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -3. 🗣 Commented on [#617](https://github.com/NeuralEnsemble/elephant/pull/617#issuecomment-1932371994) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -4. 🗣 Commented on [#52](https://github.com/bento-dbaas/volume-provider/pull/52#issuecomment-1931991731) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) -5. 🗣 Commented on [#484](https://github.com/Spoken-tutorial/spoken-website/pull/484#issuecomment-1931949733) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -6. 🗣 Commented on [#88](https://github.com/eastgenomics/eris/pull/88#issuecomment-1931941198) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#87](https://github.com/eastgenomics/eris/pull/87#issuecomment-1931765937) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#9144](https://github.com/statsmodels/statsmodels/pull/9144#issuecomment-1931568624) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -9. 🗣 Commented on [#4361](https://github.com/uwcirg/truenth-portal/pull/4361#issuecomment-1931182644) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -10. 🗣 Commented on [#1061](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1061#issuecomment-1930984003) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#1063](https://github.com/4DNucleome/PartSeg/pull/1063#issuecomment-1933061214) in [4DNucleome/PartSeg](https://github.com/4DNucleome/PartSeg) +2. 🗣 Commented on [#10](https://github.com/Seluj78/shellhub-python/pull/10#issuecomment-1932595197) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +3. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1932380425) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +4. 🗣 Commented on [#617](https://github.com/NeuralEnsemble/elephant/pull/617#issuecomment-1932371994) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +5. 🗣 Commented on [#52](https://github.com/bento-dbaas/volume-provider/pull/52#issuecomment-1931991731) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) +6. 🗣 Commented on [#484](https://github.com/Spoken-tutorial/spoken-website/pull/484#issuecomment-1931949733) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +7. 🗣 Commented on [#88](https://github.com/eastgenomics/eris/pull/88#issuecomment-1931941198) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#87](https://github.com/eastgenomics/eris/pull/87#issuecomment-1931765937) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#9144](https://github.com/statsmodels/statsmodels/pull/9144#issuecomment-1931568624) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +10. 🗣 Commented on [#4361](https://github.com/uwcirg/truenth-portal/pull/4361#issuecomment-1931182644) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) From 1fb3a5ccd9bc2f8b4d5051c007d9784f04815da0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 8 Feb 2024 11:12:46 +0000 Subject: [PATCH 1380/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f1e4d036..f9917833 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1063](https://github.com/4DNucleome/PartSeg/pull/1063#issuecomment-1933061214) in [4DNucleome/PartSeg](https://github.com/4DNucleome/PartSeg) -2. 🗣 Commented on [#10](https://github.com/Seluj78/shellhub-python/pull/10#issuecomment-1932595197) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) -3. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1932380425) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -4. 🗣 Commented on [#617](https://github.com/NeuralEnsemble/elephant/pull/617#issuecomment-1932371994) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -5. 🗣 Commented on [#52](https://github.com/bento-dbaas/volume-provider/pull/52#issuecomment-1931991731) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) -6. 🗣 Commented on [#484](https://github.com/Spoken-tutorial/spoken-website/pull/484#issuecomment-1931949733) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -7. 🗣 Commented on [#88](https://github.com/eastgenomics/eris/pull/88#issuecomment-1931941198) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#87](https://github.com/eastgenomics/eris/pull/87#issuecomment-1931765937) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#9144](https://github.com/statsmodels/statsmodels/pull/9144#issuecomment-1931568624) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -10. 🗣 Commented on [#4361](https://github.com/uwcirg/truenth-portal/pull/4361#issuecomment-1931182644) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +1. 🗣 Commented on [#706](https://github.com/OpenFreeEnergy/openfe/pull/706#issuecomment-1933810283) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#1063](https://github.com/4DNucleome/PartSeg/pull/1063#issuecomment-1933061214) in [4DNucleome/PartSeg](https://github.com/4DNucleome/PartSeg) +3. 🗣 Commented on [#10](https://github.com/Seluj78/shellhub-python/pull/10#issuecomment-1932595197) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +4. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1932380425) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +5. 🗣 Commented on [#617](https://github.com/NeuralEnsemble/elephant/pull/617#issuecomment-1932371994) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +6. 🗣 Commented on [#52](https://github.com/bento-dbaas/volume-provider/pull/52#issuecomment-1931991731) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) +7. 🗣 Commented on [#484](https://github.com/Spoken-tutorial/spoken-website/pull/484#issuecomment-1931949733) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +8. 🗣 Commented on [#88](https://github.com/eastgenomics/eris/pull/88#issuecomment-1931941198) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#87](https://github.com/eastgenomics/eris/pull/87#issuecomment-1931765937) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#9144](https://github.com/statsmodels/statsmodels/pull/9144#issuecomment-1931568624) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) From f3bb27e29d1cc35f5475be8a478e3423619595f0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 8 Feb 2024 12:28:48 +0000 Subject: [PATCH 1381/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f9917833..f2f6c068 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#706](https://github.com/OpenFreeEnergy/openfe/pull/706#issuecomment-1933810283) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#1063](https://github.com/4DNucleome/PartSeg/pull/1063#issuecomment-1933061214) in [4DNucleome/PartSeg](https://github.com/4DNucleome/PartSeg) -3. 🗣 Commented on [#10](https://github.com/Seluj78/shellhub-python/pull/10#issuecomment-1932595197) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) -4. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1932380425) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -5. 🗣 Commented on [#617](https://github.com/NeuralEnsemble/elephant/pull/617#issuecomment-1932371994) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -6. 🗣 Commented on [#52](https://github.com/bento-dbaas/volume-provider/pull/52#issuecomment-1931991731) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) -7. 🗣 Commented on [#484](https://github.com/Spoken-tutorial/spoken-website/pull/484#issuecomment-1931949733) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -8. 🗣 Commented on [#88](https://github.com/eastgenomics/eris/pull/88#issuecomment-1931941198) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#87](https://github.com/eastgenomics/eris/pull/87#issuecomment-1931765937) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#9144](https://github.com/statsmodels/statsmodels/pull/9144#issuecomment-1931568624) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +1. 🗣 Commented on [#798](https://github.com/StingraySoftware/stingray/pull/798#issuecomment-1933915531) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +2. 🗣 Commented on [#706](https://github.com/OpenFreeEnergy/openfe/pull/706#issuecomment-1933810283) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#1063](https://github.com/4DNucleome/PartSeg/pull/1063#issuecomment-1933061214) in [4DNucleome/PartSeg](https://github.com/4DNucleome/PartSeg) +4. 🗣 Commented on [#10](https://github.com/Seluj78/shellhub-python/pull/10#issuecomment-1932595197) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +5. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1932380425) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +6. 🗣 Commented on [#617](https://github.com/NeuralEnsemble/elephant/pull/617#issuecomment-1932371994) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +7. 🗣 Commented on [#52](https://github.com/bento-dbaas/volume-provider/pull/52#issuecomment-1931991731) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) +8. 🗣 Commented on [#484](https://github.com/Spoken-tutorial/spoken-website/pull/484#issuecomment-1931949733) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +9. 🗣 Commented on [#88](https://github.com/eastgenomics/eris/pull/88#issuecomment-1931941198) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#87](https://github.com/eastgenomics/eris/pull/87#issuecomment-1931765937) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 262fbe6ad782f4c8ef4a053ed124895397d777c0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 8 Feb 2024 13:37:08 +0000 Subject: [PATCH 1382/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f2f6c068..cc6b8ce6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#798](https://github.com/StingraySoftware/stingray/pull/798#issuecomment-1933915531) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -2. 🗣 Commented on [#706](https://github.com/OpenFreeEnergy/openfe/pull/706#issuecomment-1933810283) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#1063](https://github.com/4DNucleome/PartSeg/pull/1063#issuecomment-1933061214) in [4DNucleome/PartSeg](https://github.com/4DNucleome/PartSeg) -4. 🗣 Commented on [#10](https://github.com/Seluj78/shellhub-python/pull/10#issuecomment-1932595197) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) -5. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1932380425) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -6. 🗣 Commented on [#617](https://github.com/NeuralEnsemble/elephant/pull/617#issuecomment-1932371994) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -7. 🗣 Commented on [#52](https://github.com/bento-dbaas/volume-provider/pull/52#issuecomment-1931991731) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) -8. 🗣 Commented on [#484](https://github.com/Spoken-tutorial/spoken-website/pull/484#issuecomment-1931949733) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -9. 🗣 Commented on [#88](https://github.com/eastgenomics/eris/pull/88#issuecomment-1931941198) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#87](https://github.com/eastgenomics/eris/pull/87#issuecomment-1931765937) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#287](https://github.com/OpenFreeEnergy/gufe/pull/287#issuecomment-1934123901) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#798](https://github.com/StingraySoftware/stingray/pull/798#issuecomment-1933915531) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +3. 🗣 Commented on [#706](https://github.com/OpenFreeEnergy/openfe/pull/706#issuecomment-1933810283) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#1063](https://github.com/4DNucleome/PartSeg/pull/1063#issuecomment-1933061214) in [4DNucleome/PartSeg](https://github.com/4DNucleome/PartSeg) +5. 🗣 Commented on [#10](https://github.com/Seluj78/shellhub-python/pull/10#issuecomment-1932595197) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +6. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1932380425) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +7. 🗣 Commented on [#617](https://github.com/NeuralEnsemble/elephant/pull/617#issuecomment-1932371994) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +8. 🗣 Commented on [#52](https://github.com/bento-dbaas/volume-provider/pull/52#issuecomment-1931991731) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) +9. 🗣 Commented on [#484](https://github.com/Spoken-tutorial/spoken-website/pull/484#issuecomment-1931949733) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +10. 🗣 Commented on [#88](https://github.com/eastgenomics/eris/pull/88#issuecomment-1931941198) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From e47756fd5b08ec317c94a3e33b4f47dbde6f65bf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 8 Feb 2024 14:13:57 +0000 Subject: [PATCH 1383/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cc6b8ce6..0db85446 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#287](https://github.com/OpenFreeEnergy/gufe/pull/287#issuecomment-1934123901) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#798](https://github.com/StingraySoftware/stingray/pull/798#issuecomment-1933915531) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -3. 🗣 Commented on [#706](https://github.com/OpenFreeEnergy/openfe/pull/706#issuecomment-1933810283) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#1063](https://github.com/4DNucleome/PartSeg/pull/1063#issuecomment-1933061214) in [4DNucleome/PartSeg](https://github.com/4DNucleome/PartSeg) -5. 🗣 Commented on [#10](https://github.com/Seluj78/shellhub-python/pull/10#issuecomment-1932595197) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) -6. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1932380425) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -7. 🗣 Commented on [#617](https://github.com/NeuralEnsemble/elephant/pull/617#issuecomment-1932371994) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -8. 🗣 Commented on [#52](https://github.com/bento-dbaas/volume-provider/pull/52#issuecomment-1931991731) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) -9. 🗣 Commented on [#484](https://github.com/Spoken-tutorial/spoken-website/pull/484#issuecomment-1931949733) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -10. 🗣 Commented on [#88](https://github.com/eastgenomics/eris/pull/88#issuecomment-1931941198) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#1660](https://github.com/zarr-developers/zarr-python/pull/1660#issuecomment-1934195956) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +2. 🗣 Commented on [#287](https://github.com/OpenFreeEnergy/gufe/pull/287#issuecomment-1934123901) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#798](https://github.com/StingraySoftware/stingray/pull/798#issuecomment-1933915531) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +4. 🗣 Commented on [#706](https://github.com/OpenFreeEnergy/openfe/pull/706#issuecomment-1933810283) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#1063](https://github.com/4DNucleome/PartSeg/pull/1063#issuecomment-1933061214) in [4DNucleome/PartSeg](https://github.com/4DNucleome/PartSeg) +6. 🗣 Commented on [#10](https://github.com/Seluj78/shellhub-python/pull/10#issuecomment-1932595197) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +7. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1932380425) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +8. 🗣 Commented on [#617](https://github.com/NeuralEnsemble/elephant/pull/617#issuecomment-1932371994) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +9. 🗣 Commented on [#52](https://github.com/bento-dbaas/volume-provider/pull/52#issuecomment-1931991731) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) +10. 🗣 Commented on [#484](https://github.com/Spoken-tutorial/spoken-website/pull/484#issuecomment-1931949733) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) From 8b34bcaa3c380664b7083636c5fce4beeceaa233 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 8 Feb 2024 15:16:19 +0000 Subject: [PATCH 1384/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0db85446..7867f276 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1660](https://github.com/zarr-developers/zarr-python/pull/1660#issuecomment-1934195956) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -2. 🗣 Commented on [#287](https://github.com/OpenFreeEnergy/gufe/pull/287#issuecomment-1934123901) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#798](https://github.com/StingraySoftware/stingray/pull/798#issuecomment-1933915531) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -4. 🗣 Commented on [#706](https://github.com/OpenFreeEnergy/openfe/pull/706#issuecomment-1933810283) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#1063](https://github.com/4DNucleome/PartSeg/pull/1063#issuecomment-1933061214) in [4DNucleome/PartSeg](https://github.com/4DNucleome/PartSeg) -6. 🗣 Commented on [#10](https://github.com/Seluj78/shellhub-python/pull/10#issuecomment-1932595197) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) -7. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1932380425) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -8. 🗣 Commented on [#617](https://github.com/NeuralEnsemble/elephant/pull/617#issuecomment-1932371994) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -9. 🗣 Commented on [#52](https://github.com/bento-dbaas/volume-provider/pull/52#issuecomment-1931991731) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) -10. 🗣 Commented on [#484](https://github.com/Spoken-tutorial/spoken-website/pull/484#issuecomment-1931949733) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +1. 🗣 Commented on [#5463](https://github.com/rhinstaller/anaconda/pull/5463#issuecomment-1934290191) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#1660](https://github.com/zarr-developers/zarr-python/pull/1660#issuecomment-1934195956) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +3. 🗣 Commented on [#287](https://github.com/OpenFreeEnergy/gufe/pull/287#issuecomment-1934123901) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#798](https://github.com/StingraySoftware/stingray/pull/798#issuecomment-1933915531) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +5. 🗣 Commented on [#706](https://github.com/OpenFreeEnergy/openfe/pull/706#issuecomment-1933810283) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#1063](https://github.com/4DNucleome/PartSeg/pull/1063#issuecomment-1933061214) in [4DNucleome/PartSeg](https://github.com/4DNucleome/PartSeg) +7. 🗣 Commented on [#10](https://github.com/Seluj78/shellhub-python/pull/10#issuecomment-1932595197) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +8. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1932380425) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +9. 🗣 Commented on [#617](https://github.com/NeuralEnsemble/elephant/pull/617#issuecomment-1932371994) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +10. 🗣 Commented on [#52](https://github.com/bento-dbaas/volume-provider/pull/52#issuecomment-1931991731) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) From 36baa60831fbaad10aec8bb9d32809cc622f7327 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 8 Feb 2024 15:37:52 +0000 Subject: [PATCH 1385/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7867f276..633975c0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5463](https://github.com/rhinstaller/anaconda/pull/5463#issuecomment-1934290191) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#1660](https://github.com/zarr-developers/zarr-python/pull/1660#issuecomment-1934195956) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -3. 🗣 Commented on [#287](https://github.com/OpenFreeEnergy/gufe/pull/287#issuecomment-1934123901) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#798](https://github.com/StingraySoftware/stingray/pull/798#issuecomment-1933915531) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -5. 🗣 Commented on [#706](https://github.com/OpenFreeEnergy/openfe/pull/706#issuecomment-1933810283) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#1063](https://github.com/4DNucleome/PartSeg/pull/1063#issuecomment-1933061214) in [4DNucleome/PartSeg](https://github.com/4DNucleome/PartSeg) -7. 🗣 Commented on [#10](https://github.com/Seluj78/shellhub-python/pull/10#issuecomment-1932595197) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) -8. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1932380425) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) -9. 🗣 Commented on [#617](https://github.com/NeuralEnsemble/elephant/pull/617#issuecomment-1932371994) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -10. 🗣 Commented on [#52](https://github.com/bento-dbaas/volume-provider/pull/52#issuecomment-1931991731) in [bento-dbaas/volume-provider](https://github.com/bento-dbaas/volume-provider) +1. 🗣 Commented on [#117](https://github.com/aimclub/Fedot.Industrial/pull/117#issuecomment-1934356811) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +2. 🗣 Commented on [#1257](https://github.com/aimclub/FEDOT/pull/1257#issuecomment-1934352825) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#5463](https://github.com/rhinstaller/anaconda/pull/5463#issuecomment-1934290191) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#1660](https://github.com/zarr-developers/zarr-python/pull/1660#issuecomment-1934195956) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +5. 🗣 Commented on [#287](https://github.com/OpenFreeEnergy/gufe/pull/287#issuecomment-1934123901) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#798](https://github.com/StingraySoftware/stingray/pull/798#issuecomment-1933915531) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +7. 🗣 Commented on [#706](https://github.com/OpenFreeEnergy/openfe/pull/706#issuecomment-1933810283) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#1063](https://github.com/4DNucleome/PartSeg/pull/1063#issuecomment-1933061214) in [4DNucleome/PartSeg](https://github.com/4DNucleome/PartSeg) +9. 🗣 Commented on [#10](https://github.com/Seluj78/shellhub-python/pull/10#issuecomment-1932595197) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +10. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1932380425) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) From a53acf39385bef0702084b715c1d9e7bd703e44c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 8 Feb 2024 17:37:21 +0000 Subject: [PATCH 1386/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 633975c0..b7800215 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#117](https://github.com/aimclub/Fedot.Industrial/pull/117#issuecomment-1934356811) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -2. 🗣 Commented on [#1257](https://github.com/aimclub/FEDOT/pull/1257#issuecomment-1934352825) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#5463](https://github.com/rhinstaller/anaconda/pull/5463#issuecomment-1934290191) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#1660](https://github.com/zarr-developers/zarr-python/pull/1660#issuecomment-1934195956) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -5. 🗣 Commented on [#287](https://github.com/OpenFreeEnergy/gufe/pull/287#issuecomment-1934123901) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#798](https://github.com/StingraySoftware/stingray/pull/798#issuecomment-1933915531) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -7. 🗣 Commented on [#706](https://github.com/OpenFreeEnergy/openfe/pull/706#issuecomment-1933810283) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#1063](https://github.com/4DNucleome/PartSeg/pull/1063#issuecomment-1933061214) in [4DNucleome/PartSeg](https://github.com/4DNucleome/PartSeg) -9. 🗣 Commented on [#10](https://github.com/Seluj78/shellhub-python/pull/10#issuecomment-1932595197) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) -10. 🗣 Commented on [#20](https://github.com/gagnonanthony/CCPM/pull/20#issuecomment-1932380425) in [gagnonanthony/CCPM](https://github.com/gagnonanthony/CCPM) +1. 🗣 Commented on [#497](https://github.com/aramis-lab/clinicadl/pull/497#issuecomment-1934589525) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +2. 🗣 Commented on [#117](https://github.com/aimclub/Fedot.Industrial/pull/117#issuecomment-1934356811) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +3. 🗣 Commented on [#1257](https://github.com/aimclub/FEDOT/pull/1257#issuecomment-1934352825) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#5463](https://github.com/rhinstaller/anaconda/pull/5463#issuecomment-1934290191) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#1660](https://github.com/zarr-developers/zarr-python/pull/1660#issuecomment-1934195956) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +6. 🗣 Commented on [#287](https://github.com/OpenFreeEnergy/gufe/pull/287#issuecomment-1934123901) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#798](https://github.com/StingraySoftware/stingray/pull/798#issuecomment-1933915531) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +8. 🗣 Commented on [#706](https://github.com/OpenFreeEnergy/openfe/pull/706#issuecomment-1933810283) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#1063](https://github.com/4DNucleome/PartSeg/pull/1063#issuecomment-1933061214) in [4DNucleome/PartSeg](https://github.com/4DNucleome/PartSeg) +10. 🗣 Commented on [#10](https://github.com/Seluj78/shellhub-python/pull/10#issuecomment-1932595197) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) From 2d039c6ff6d8790e0a77037c138f89edff7fa003 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 8 Feb 2024 18:19:13 +0000 Subject: [PATCH 1387/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b7800215..763fc57a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#497](https://github.com/aramis-lab/clinicadl/pull/497#issuecomment-1934589525) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -2. 🗣 Commented on [#117](https://github.com/aimclub/Fedot.Industrial/pull/117#issuecomment-1934356811) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -3. 🗣 Commented on [#1257](https://github.com/aimclub/FEDOT/pull/1257#issuecomment-1934352825) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#5463](https://github.com/rhinstaller/anaconda/pull/5463#issuecomment-1934290191) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#1660](https://github.com/zarr-developers/zarr-python/pull/1660#issuecomment-1934195956) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -6. 🗣 Commented on [#287](https://github.com/OpenFreeEnergy/gufe/pull/287#issuecomment-1934123901) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#798](https://github.com/StingraySoftware/stingray/pull/798#issuecomment-1933915531) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -8. 🗣 Commented on [#706](https://github.com/OpenFreeEnergy/openfe/pull/706#issuecomment-1933810283) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#1063](https://github.com/4DNucleome/PartSeg/pull/1063#issuecomment-1933061214) in [4DNucleome/PartSeg](https://github.com/4DNucleome/PartSeg) -10. 🗣 Commented on [#10](https://github.com/Seluj78/shellhub-python/pull/10#issuecomment-1932595197) in [Seluj78/shellhub-python](https://github.com/Seluj78/shellhub-python) +1. 🗣 Commented on [#1479](https://github.com/spacetelescope/jwql/pull/1479#issuecomment-1934625725) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#497](https://github.com/aramis-lab/clinicadl/pull/497#issuecomment-1934589525) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +3. 🗣 Commented on [#117](https://github.com/aimclub/Fedot.Industrial/pull/117#issuecomment-1934356811) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#1257](https://github.com/aimclub/FEDOT/pull/1257#issuecomment-1934352825) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#5463](https://github.com/rhinstaller/anaconda/pull/5463#issuecomment-1934290191) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#1660](https://github.com/zarr-developers/zarr-python/pull/1660#issuecomment-1934195956) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +7. 🗣 Commented on [#287](https://github.com/OpenFreeEnergy/gufe/pull/287#issuecomment-1934123901) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#798](https://github.com/StingraySoftware/stingray/pull/798#issuecomment-1933915531) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +9. 🗣 Commented on [#706](https://github.com/OpenFreeEnergy/openfe/pull/706#issuecomment-1933810283) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#1063](https://github.com/4DNucleome/PartSeg/pull/1063#issuecomment-1933061214) in [4DNucleome/PartSeg](https://github.com/4DNucleome/PartSeg) From de733ed966816579e0c1534f9c36120d2a1c86ef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 8 Feb 2024 20:15:44 +0000 Subject: [PATCH 1388/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 763fc57a..1aeaf827 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1479](https://github.com/spacetelescope/jwql/pull/1479#issuecomment-1934625725) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#497](https://github.com/aramis-lab/clinicadl/pull/497#issuecomment-1934589525) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -3. 🗣 Commented on [#117](https://github.com/aimclub/Fedot.Industrial/pull/117#issuecomment-1934356811) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#1257](https://github.com/aimclub/FEDOT/pull/1257#issuecomment-1934352825) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#5463](https://github.com/rhinstaller/anaconda/pull/5463#issuecomment-1934290191) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#1660](https://github.com/zarr-developers/zarr-python/pull/1660#issuecomment-1934195956) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -7. 🗣 Commented on [#287](https://github.com/OpenFreeEnergy/gufe/pull/287#issuecomment-1934123901) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#798](https://github.com/StingraySoftware/stingray/pull/798#issuecomment-1933915531) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -9. 🗣 Commented on [#706](https://github.com/OpenFreeEnergy/openfe/pull/706#issuecomment-1933810283) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#1063](https://github.com/4DNucleome/PartSeg/pull/1063#issuecomment-1933061214) in [4DNucleome/PartSeg](https://github.com/4DNucleome/PartSeg) +1. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +2. 🗣 Commented on [#1063](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1063#issuecomment-1934847662) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#1479](https://github.com/spacetelescope/jwql/pull/1479#issuecomment-1934625725) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#497](https://github.com/aramis-lab/clinicadl/pull/497#issuecomment-1934589525) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +5. 🗣 Commented on [#117](https://github.com/aimclub/Fedot.Industrial/pull/117#issuecomment-1934356811) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#1257](https://github.com/aimclub/FEDOT/pull/1257#issuecomment-1934352825) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#5463](https://github.com/rhinstaller/anaconda/pull/5463#issuecomment-1934290191) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#1660](https://github.com/zarr-developers/zarr-python/pull/1660#issuecomment-1934195956) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +9. 🗣 Commented on [#287](https://github.com/OpenFreeEnergy/gufe/pull/287#issuecomment-1934123901) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#798](https://github.com/StingraySoftware/stingray/pull/798#issuecomment-1933915531) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) From 3336577e17a4791294d0c924f5676dc55f2a03bf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 Feb 2024 10:16:28 +0000 Subject: [PATCH 1389/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1aeaf827..96f5486f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -2. 🗣 Commented on [#1063](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1063#issuecomment-1934847662) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#1479](https://github.com/spacetelescope/jwql/pull/1479#issuecomment-1934625725) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#497](https://github.com/aramis-lab/clinicadl/pull/497#issuecomment-1934589525) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -5. 🗣 Commented on [#117](https://github.com/aimclub/Fedot.Industrial/pull/117#issuecomment-1934356811) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#1257](https://github.com/aimclub/FEDOT/pull/1257#issuecomment-1934352825) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#5463](https://github.com/rhinstaller/anaconda/pull/5463#issuecomment-1934290191) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#1660](https://github.com/zarr-developers/zarr-python/pull/1660#issuecomment-1934195956) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -9. 🗣 Commented on [#287](https://github.com/OpenFreeEnergy/gufe/pull/287#issuecomment-1934123901) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#798](https://github.com/StingraySoftware/stingray/pull/798#issuecomment-1933915531) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +1. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +2. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +3. 🗣 Commented on [#1063](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1063#issuecomment-1934847662) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#1479](https://github.com/spacetelescope/jwql/pull/1479#issuecomment-1934625725) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#497](https://github.com/aramis-lab/clinicadl/pull/497#issuecomment-1934589525) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +6. 🗣 Commented on [#117](https://github.com/aimclub/Fedot.Industrial/pull/117#issuecomment-1934356811) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#1257](https://github.com/aimclub/FEDOT/pull/1257#issuecomment-1934352825) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#5463](https://github.com/rhinstaller/anaconda/pull/5463#issuecomment-1934290191) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#1660](https://github.com/zarr-developers/zarr-python/pull/1660#issuecomment-1934195956) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +10. 🗣 Commented on [#287](https://github.com/OpenFreeEnergy/gufe/pull/287#issuecomment-1934123901) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From 372bd63872572c36e3db79ef44b5e843b449c14a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 Feb 2024 12:28:00 +0000 Subject: [PATCH 1390/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 96f5486f..830a4a2b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -2. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -3. 🗣 Commented on [#1063](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1063#issuecomment-1934847662) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#1479](https://github.com/spacetelescope/jwql/pull/1479#issuecomment-1934625725) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#497](https://github.com/aramis-lab/clinicadl/pull/497#issuecomment-1934589525) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -6. 🗣 Commented on [#117](https://github.com/aimclub/Fedot.Industrial/pull/117#issuecomment-1934356811) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#1257](https://github.com/aimclub/FEDOT/pull/1257#issuecomment-1934352825) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#5463](https://github.com/rhinstaller/anaconda/pull/5463#issuecomment-1934290191) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#1660](https://github.com/zarr-developers/zarr-python/pull/1660#issuecomment-1934195956) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -10. 🗣 Commented on [#287](https://github.com/OpenFreeEnergy/gufe/pull/287#issuecomment-1934123901) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +3. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +4. 🗣 Commented on [#1063](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1063#issuecomment-1934847662) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1479](https://github.com/spacetelescope/jwql/pull/1479#issuecomment-1934625725) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#497](https://github.com/aramis-lab/clinicadl/pull/497#issuecomment-1934589525) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +7. 🗣 Commented on [#117](https://github.com/aimclub/Fedot.Industrial/pull/117#issuecomment-1934356811) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +8. 🗣 Commented on [#1257](https://github.com/aimclub/FEDOT/pull/1257#issuecomment-1934352825) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#5463](https://github.com/rhinstaller/anaconda/pull/5463#issuecomment-1934290191) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#1660](https://github.com/zarr-developers/zarr-python/pull/1660#issuecomment-1934195956) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) From 330ecda097b6e749c5b6e79bf9ab1f735f22a6c9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 Feb 2024 13:16:32 +0000 Subject: [PATCH 1391/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 830a4a2b..ec9131d0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -3. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -4. 🗣 Commented on [#1063](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1063#issuecomment-1934847662) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1479](https://github.com/spacetelescope/jwql/pull/1479#issuecomment-1934625725) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#497](https://github.com/aramis-lab/clinicadl/pull/497#issuecomment-1934589525) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -7. 🗣 Commented on [#117](https://github.com/aimclub/Fedot.Industrial/pull/117#issuecomment-1934356811) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -8. 🗣 Commented on [#1257](https://github.com/aimclub/FEDOT/pull/1257#issuecomment-1934352825) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#5463](https://github.com/rhinstaller/anaconda/pull/5463#issuecomment-1934290191) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#1660](https://github.com/zarr-developers/zarr-python/pull/1660#issuecomment-1934195956) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +1. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +2. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +4. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +5. 🗣 Commented on [#1063](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1063#issuecomment-1934847662) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#1479](https://github.com/spacetelescope/jwql/pull/1479#issuecomment-1934625725) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#497](https://github.com/aramis-lab/clinicadl/pull/497#issuecomment-1934589525) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +8. 🗣 Commented on [#117](https://github.com/aimclub/Fedot.Industrial/pull/117#issuecomment-1934356811) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +9. 🗣 Commented on [#1257](https://github.com/aimclub/FEDOT/pull/1257#issuecomment-1934352825) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#5463](https://github.com/rhinstaller/anaconda/pull/5463#issuecomment-1934290191) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 5bd922f4b9b71378081079af64d815c05e0ed70d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 Feb 2024 13:37:11 +0000 Subject: [PATCH 1392/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ec9131d0..b5971347 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -2. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -4. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -5. 🗣 Commented on [#1063](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1063#issuecomment-1934847662) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#1479](https://github.com/spacetelescope/jwql/pull/1479#issuecomment-1934625725) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#497](https://github.com/aramis-lab/clinicadl/pull/497#issuecomment-1934589525) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -8. 🗣 Commented on [#117](https://github.com/aimclub/Fedot.Industrial/pull/117#issuecomment-1934356811) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -9. 🗣 Commented on [#1257](https://github.com/aimclub/FEDOT/pull/1257#issuecomment-1934352825) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#5463](https://github.com/rhinstaller/anaconda/pull/5463#issuecomment-1934290191) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +2. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +3. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +5. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +6. 🗣 Commented on [#1063](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1063#issuecomment-1934847662) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#1479](https://github.com/spacetelescope/jwql/pull/1479#issuecomment-1934625725) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#497](https://github.com/aramis-lab/clinicadl/pull/497#issuecomment-1934589525) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +9. 🗣 Commented on [#117](https://github.com/aimclub/Fedot.Industrial/pull/117#issuecomment-1934356811) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#1257](https://github.com/aimclub/FEDOT/pull/1257#issuecomment-1934352825) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From 7730e38711226ef3d67802345f2dc67802525f1c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 Feb 2024 15:15:05 +0000 Subject: [PATCH 1393/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b5971347..b002c5ef 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -2. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -3. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -5. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -6. 🗣 Commented on [#1063](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1063#issuecomment-1934847662) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#1479](https://github.com/spacetelescope/jwql/pull/1479#issuecomment-1934625725) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#497](https://github.com/aramis-lab/clinicadl/pull/497#issuecomment-1934589525) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -9. 🗣 Commented on [#117](https://github.com/aimclub/Fedot.Industrial/pull/117#issuecomment-1934356811) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#1257](https://github.com/aimclub/FEDOT/pull/1257#issuecomment-1934352825) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) +2. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +3. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +4. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +6. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +7. 🗣 Commented on [#1063](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1063#issuecomment-1934847662) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#1479](https://github.com/spacetelescope/jwql/pull/1479#issuecomment-1934625725) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#497](https://github.com/aramis-lab/clinicadl/pull/497#issuecomment-1934589525) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +10. 🗣 Commented on [#117](https://github.com/aimclub/Fedot.Industrial/pull/117#issuecomment-1934356811) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) From e038d20900650b3e7b4540c969590645ed8b343f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 Feb 2024 15:37:12 +0000 Subject: [PATCH 1394/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b002c5ef..4f7af699 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) -2. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -3. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -4. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -6. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -7. 🗣 Commented on [#1063](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1063#issuecomment-1934847662) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#1479](https://github.com/spacetelescope/jwql/pull/1479#issuecomment-1934625725) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#497](https://github.com/aramis-lab/clinicadl/pull/497#issuecomment-1934589525) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -10. 🗣 Commented on [#117](https://github.com/aimclub/Fedot.Industrial/pull/117#issuecomment-1934356811) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +1. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +2. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) +3. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +4. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +5. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +7. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +8. 🗣 Commented on [#1063](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1063#issuecomment-1934847662) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#1479](https://github.com/spacetelescope/jwql/pull/1479#issuecomment-1934625725) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#497](https://github.com/aramis-lab/clinicadl/pull/497#issuecomment-1934589525) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) From 528f6e739d59f34c1fb373f8af3915bc6fa2aaef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 Feb 2024 18:19:18 +0000 Subject: [PATCH 1395/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4f7af699..9d13e773 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -2. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) -3. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -4. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -5. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -7. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -8. 🗣 Commented on [#1063](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1063#issuecomment-1934847662) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#1479](https://github.com/spacetelescope/jwql/pull/1479#issuecomment-1934625725) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#497](https://github.com/aramis-lab/clinicadl/pull/497#issuecomment-1934589525) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +1. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +2. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +3. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) +4. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +5. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +6. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +8. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +9. 🗣 Commented on [#1063](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1063#issuecomment-1934847662) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#1479](https://github.com/spacetelescope/jwql/pull/1479#issuecomment-1934625725) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From b10369063e48c1841c62875d8ff3e303dbc685c5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 Feb 2024 19:13:20 +0000 Subject: [PATCH 1396/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9d13e773..ccb4fecc 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -2. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -3. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) -4. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -5. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -6. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -8. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -9. 🗣 Commented on [#1063](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1063#issuecomment-1934847662) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#1479](https://github.com/spacetelescope/jwql/pull/1479#issuecomment-1934625725) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +3. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) +5. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +6. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +7. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +9. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +10. 🗣 Commented on [#1063](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1063#issuecomment-1934847662) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From afceb79a5e5133833156b135981a375da72d2989 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 Feb 2024 22:16:01 +0000 Subject: [PATCH 1397/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ccb4fecc..4cd1b987 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -3. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) -5. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -6. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -7. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -9. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -10. 🗣 Commented on [#1063](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1063#issuecomment-1934847662) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) +3. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +4. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +5. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) +6. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +7. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +8. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +10. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) From adb9792d2ac19084f744c3dc41c1f8061befa1c9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Feb 2024 02:00:49 +0000 Subject: [PATCH 1398/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4cd1b987..e5d27196 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) -3. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -4. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -5. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) -6. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -7. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -8. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -10. 🗣 Commented on [#1105](https://github.com/yeatmanlab/pyAFQ/pull/1105#issuecomment-1934858627) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +1. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +2. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +5. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) +7. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +8. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +9. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) From 26749c0013857e86cdf6a1911c4e92e101a83ca5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Feb 2024 08:17:30 +0000 Subject: [PATCH 1399/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e5d27196..1c3c832c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -2. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -5. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) -7. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -8. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -9. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#3113](https://github.com/reframe-hpc/reframe/pull/3113#issuecomment-1935658164) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +1. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +3. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) +5. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +6. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) +8. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +9. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +10. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 3bac1f19594c527e0852640980d07af4fe941b9d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Feb 2024 12:27:06 +0000 Subject: [PATCH 1400/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1c3c832c..20b5ea5f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -3. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) -5. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -6. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) -8. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -9. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -10. 🗣 Commented on [#251](https://github.com/CartoonFan/lutris/pull/251#issuecomment-1935815750) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) +2. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +4. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +7. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +8. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) +9. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +10. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) From 80d70060204e24d6ec2b505b1cf8bb763f9f6bb1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Feb 2024 19:11:43 +0000 Subject: [PATCH 1401/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 20b5ea5f..17dc2a89 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) -2. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -4. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -7. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -8. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) -9. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -10. 🗣 Commented on [#1317](https://github.com/rpm-software-management/mock/pull/1317#issuecomment-1935905922) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +1. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) +3. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +5. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) +7. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +8. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +9. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) +10. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) From db2ba5517bac735045a28ee785d46591e4e9fe0e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Feb 2024 20:37:22 +0000 Subject: [PATCH 1402/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 17dc2a89..aaab7ca0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) -3. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -5. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) -7. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -8. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -9. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) -10. 🗣 Commented on [#486](https://github.com/Spoken-tutorial/spoken-website/pull/486#issuecomment-1935931611) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +1. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +2. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) +4. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +6. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) +8. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +9. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) From 478185ef1aa25ad7ad70ab252391399cc3402d10 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 11 Feb 2024 07:37:10 +0000 Subject: [PATCH 1403/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index aaab7ca0..9c483892 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -2. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) -4. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -6. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) -8. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -9. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#10](https://github.com/ITMO-NSS-team/TorchCNNBuilder/pull/10#issuecomment-1936087620) in [ITMO-NSS-team/TorchCNNBuilder](https://github.com/ITMO-NSS-team/TorchCNNBuilder) +1. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +2. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +3. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) +5. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +7. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) +9. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +10. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) From 6949eeb0300d3f7f417abaf8f7410eab2d4c8ad8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 11 Feb 2024 11:12:34 +0000 Subject: [PATCH 1404/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9c483892..615a4fa3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -2. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -3. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) -5. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -7. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) -9. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) -10. 🗣 Commented on [#118](https://github.com/aimclub/Fedot.Industrial/pull/118#issuecomment-1936141815) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +1. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +3. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +4. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) +6. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +8. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) +10. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) From e73e73b884f61c4b085de73611cc213ba46d78de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 11 Feb 2024 13:16:50 +0000 Subject: [PATCH 1405/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 615a4fa3..0245dcab 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -3. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -4. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) -6. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -8. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) -10. 🗣 Commented on [#3](https://github.com/eastgenomics/TSO500_Compare_Output/pull/3#issuecomment-1936397259) in [eastgenomics/TSO500_Compare_Output](https://github.com/eastgenomics/TSO500_Compare_Output) +1. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +4. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +5. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) +7. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +9. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) From f3ce3b2e73ac6f118eb67dfd569374c4b7449bc7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 11 Feb 2024 23:16:15 +0000 Subject: [PATCH 1406/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0245dcab..dbb77340 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -4. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -5. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) -7. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -9. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#2947](https://github.com/astropy/astroquery/pull/2947#issuecomment-1936425984) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +2. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +5. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +6. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) +8. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +10. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 333929b134f27ce61cc0dc0dffabb50ef366fc74 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 09:37:08 +0000 Subject: [PATCH 1407/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dbb77340..145135d1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -2. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -5. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -6. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) -8. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) -10. 🗣 Commented on [#2769](https://github.com/metabrainz/listenbrainz-server/pull/2769#issuecomment-1936655151) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +2. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +3. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +6. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +7. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) +9. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) From 60ad145581f3fce02e86cd50512608611783ebb5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 10:37:32 +0000 Subject: [PATCH 1408/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 145135d1..c245a99b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -2. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -3. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -6. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -7. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) -9. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#179](https://github.com/gwpy/pyomicron/pull/179#issuecomment-1936804557) in [gwpy/pyomicron](https://github.com/gwpy/pyomicron) +1. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +3. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +4. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +7. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +8. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) +10. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 7dffc70ae865e3ab22557606cab058d783fca74e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 13:18:01 +0000 Subject: [PATCH 1409/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c245a99b..10b5426a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -3. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -4. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -7. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -8. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) -10. 🗣 Commented on [#1065](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1065#issuecomment-1936922413) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) +2. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +4. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +5. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +8. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +9. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) From 782fd297ed6fc2229093f31d3c994104c5d54b14 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 14:37:23 +0000 Subject: [PATCH 1410/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 10b5426a..37bc8f12 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) -2. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -4. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -5. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -8. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -9. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#1635](https://github.com/odlgroup/odl/pull/1635#issuecomment-1936990878) in [odlgroup/odl](https://github.com/odlgroup/odl) +1. 🗣 Commented on [#1349](https://github.com/openSUSE/osc/pull/1349#issuecomment-1938762520) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) +3. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +5. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +6. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +9. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +10. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 6fd683cc4b08d20c67c425ba46cd23dd90fbf5c2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 15:37:12 +0000 Subject: [PATCH 1411/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 37bc8f12..241d6de5 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1349](https://github.com/openSUSE/osc/pull/1349#issuecomment-1938762520) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) -3. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -5. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -6. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -9. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -10. 🗣 Commented on [#252](https://github.com/CartoonFan/lutris/pull/252#issuecomment-1937094552) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#1691](https://github.com/astropy/photutils/pull/1691#issuecomment-1938881334) in [astropy/photutils](https://github.com/astropy/photutils) +2. 🗣 Commented on [#1349](https://github.com/openSUSE/osc/pull/1349#issuecomment-1938762520) in [openSUSE/osc](https://github.com/openSUSE/osc) +3. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) +4. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +6. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +7. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +10. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) From 003e3524dc4b20f613f0ccd3aaf6de5fc4e05177 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 16:20:40 +0000 Subject: [PATCH 1412/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 241d6de5..f262a99a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1691](https://github.com/astropy/photutils/pull/1691#issuecomment-1938881334) in [astropy/photutils](https://github.com/astropy/photutils) -2. 🗣 Commented on [#1349](https://github.com/openSUSE/osc/pull/1349#issuecomment-1938762520) in [openSUSE/osc](https://github.com/openSUSE/osc) -3. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) -4. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -6. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -7. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -10. 🗣 Commented on [#1](https://github.com/Cybsloth/de_zoomcamp_2024/pull/1#issuecomment-1937113421) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +1. 🗣 Commented on [#1481](https://github.com/spacetelescope/jwql/pull/1481#issuecomment-1939000941) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#1691](https://github.com/astropy/photutils/pull/1691#issuecomment-1938881334) in [astropy/photutils](https://github.com/astropy/photutils) +3. 🗣 Commented on [#1349](https://github.com/openSUSE/osc/pull/1349#issuecomment-1938762520) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) +5. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +7. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +8. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) From d92898c39ef3ff66a01d96337f05c42b634607a5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 17:13:39 +0000 Subject: [PATCH 1413/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f262a99a..2390e86b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1481](https://github.com/spacetelescope/jwql/pull/1481#issuecomment-1939000941) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#1691](https://github.com/astropy/photutils/pull/1691#issuecomment-1938881334) in [astropy/photutils](https://github.com/astropy/photutils) -3. 🗣 Commented on [#1349](https://github.com/openSUSE/osc/pull/1349#issuecomment-1938762520) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) -5. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -7. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -8. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#799](https://github.com/StingraySoftware/stingray/pull/799#issuecomment-1937459644) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +1. 🗣 Commented on [#2773](https://github.com/metabrainz/listenbrainz-server/pull/2773#issuecomment-1939144361) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#1481](https://github.com/spacetelescope/jwql/pull/1481#issuecomment-1939000941) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#1691](https://github.com/astropy/photutils/pull/1691#issuecomment-1938881334) in [astropy/photutils](https://github.com/astropy/photutils) +4. 🗣 Commented on [#1349](https://github.com/openSUSE/osc/pull/1349#issuecomment-1938762520) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) +6. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +8. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +9. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From c8ff6691080681c09011414f24085ec2941f9342 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 19:15:24 +0000 Subject: [PATCH 1414/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2390e86b..f7c48755 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2773](https://github.com/metabrainz/listenbrainz-server/pull/2773#issuecomment-1939144361) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#1481](https://github.com/spacetelescope/jwql/pull/1481#issuecomment-1939000941) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#1691](https://github.com/astropy/photutils/pull/1691#issuecomment-1938881334) in [astropy/photutils](https://github.com/astropy/photutils) -4. 🗣 Commented on [#1349](https://github.com/openSUSE/osc/pull/1349#issuecomment-1938762520) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) -6. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -8. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -9. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#719](https://github.com/OpenFreeEnergy/openfe/pull/719#issuecomment-1937571448) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#801](https://github.com/spacetelescope/webbpsf/pull/801#issuecomment-1939365963) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#2773](https://github.com/metabrainz/listenbrainz-server/pull/2773#issuecomment-1939144361) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#1481](https://github.com/spacetelescope/jwql/pull/1481#issuecomment-1939000941) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#1691](https://github.com/astropy/photutils/pull/1691#issuecomment-1938881334) in [astropy/photutils](https://github.com/astropy/photutils) +5. 🗣 Commented on [#1349](https://github.com/openSUSE/osc/pull/1349#issuecomment-1938762520) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) +7. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +9. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +10. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 2db45a998b8bc5fd821b8fa5e825cff2b4a2822b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 22:38:26 +0000 Subject: [PATCH 1415/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f7c48755..cf1444d0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#801](https://github.com/spacetelescope/webbpsf/pull/801#issuecomment-1939365963) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#2773](https://github.com/metabrainz/listenbrainz-server/pull/2773#issuecomment-1939144361) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#1481](https://github.com/spacetelescope/jwql/pull/1481#issuecomment-1939000941) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#1691](https://github.com/astropy/photutils/pull/1691#issuecomment-1938881334) in [astropy/photutils](https://github.com/astropy/photutils) -5. 🗣 Commented on [#1349](https://github.com/openSUSE/osc/pull/1349#issuecomment-1938762520) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) -7. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -9. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -10. 🗣 Commented on [#720](https://github.com/OpenFreeEnergy/openfe/pull/720#issuecomment-1937724221) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#895](https://github.com/scilus/scilpy/pull/895#issuecomment-1939686147) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#801](https://github.com/spacetelescope/webbpsf/pull/801#issuecomment-1939365963) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#2773](https://github.com/metabrainz/listenbrainz-server/pull/2773#issuecomment-1939144361) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#1481](https://github.com/spacetelescope/jwql/pull/1481#issuecomment-1939000941) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#1691](https://github.com/astropy/photutils/pull/1691#issuecomment-1938881334) in [astropy/photutils](https://github.com/astropy/photutils) +6. 🗣 Commented on [#1349](https://github.com/openSUSE/osc/pull/1349#issuecomment-1938762520) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) +8. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +9. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +10. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) From 78e24c4b91d932640bf37981763f68d427cbde61 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 23:15:11 +0000 Subject: [PATCH 1416/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cf1444d0..0caee012 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#895](https://github.com/scilus/scilpy/pull/895#issuecomment-1939686147) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#801](https://github.com/spacetelescope/webbpsf/pull/801#issuecomment-1939365963) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#2773](https://github.com/metabrainz/listenbrainz-server/pull/2773#issuecomment-1939144361) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#1481](https://github.com/spacetelescope/jwql/pull/1481#issuecomment-1939000941) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#1691](https://github.com/astropy/photutils/pull/1691#issuecomment-1938881334) in [astropy/photutils](https://github.com/astropy/photutils) -6. 🗣 Commented on [#1349](https://github.com/openSUSE/osc/pull/1349#issuecomment-1938762520) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) -8. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -9. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -10. 🗣 Commented on [#2](https://github.com/Cybsloth/de_zoomcamp_2024/pull/2#issuecomment-1937898301) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +1. 🗣 Commented on [#5469](https://github.com/rhinstaller/anaconda/pull/5469#issuecomment-1939754079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#895](https://github.com/scilus/scilpy/pull/895#issuecomment-1939686147) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#801](https://github.com/spacetelescope/webbpsf/pull/801#issuecomment-1939365963) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#2773](https://github.com/metabrainz/listenbrainz-server/pull/2773#issuecomment-1939144361) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#1481](https://github.com/spacetelescope/jwql/pull/1481#issuecomment-1939000941) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#1691](https://github.com/astropy/photutils/pull/1691#issuecomment-1938881334) in [astropy/photutils](https://github.com/astropy/photutils) +7. 🗣 Commented on [#1349](https://github.com/openSUSE/osc/pull/1349#issuecomment-1938762520) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) +9. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) From fc1a6530ef546750fec02c102eca6ea037d5d277 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 01:09:23 +0000 Subject: [PATCH 1417/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0caee012..a0c20c80 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5469](https://github.com/rhinstaller/anaconda/pull/5469#issuecomment-1939754079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#895](https://github.com/scilus/scilpy/pull/895#issuecomment-1939686147) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#801](https://github.com/spacetelescope/webbpsf/pull/801#issuecomment-1939365963) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#2773](https://github.com/metabrainz/listenbrainz-server/pull/2773#issuecomment-1939144361) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#1481](https://github.com/spacetelescope/jwql/pull/1481#issuecomment-1939000941) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#1691](https://github.com/astropy/photutils/pull/1691#issuecomment-1938881334) in [astropy/photutils](https://github.com/astropy/photutils) -7. 🗣 Commented on [#1349](https://github.com/openSUSE/osc/pull/1349#issuecomment-1938762520) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) -9. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_dias_batch/pull/192#issuecomment-1938307628) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +1. 🗣 Commented on [#800](https://github.com/StingraySoftware/stingray/pull/800#issuecomment-1939922521) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +2. 🗣 Commented on [#5469](https://github.com/rhinstaller/anaconda/pull/5469#issuecomment-1939754079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#895](https://github.com/scilus/scilpy/pull/895#issuecomment-1939686147) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#801](https://github.com/spacetelescope/webbpsf/pull/801#issuecomment-1939365963) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#2773](https://github.com/metabrainz/listenbrainz-server/pull/2773#issuecomment-1939144361) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#1481](https://github.com/spacetelescope/jwql/pull/1481#issuecomment-1939000941) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#1691](https://github.com/astropy/photutils/pull/1691#issuecomment-1938881334) in [astropy/photutils](https://github.com/astropy/photutils) +8. 🗣 Commented on [#1349](https://github.com/openSUSE/osc/pull/1349#issuecomment-1938762520) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) +10. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From 4515ca627f084775aa5bb83e1d7bc67c1fa1a14b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 09:15:29 +0000 Subject: [PATCH 1418/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a0c20c80..553858f6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#800](https://github.com/StingraySoftware/stingray/pull/800#issuecomment-1939922521) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -2. 🗣 Commented on [#5469](https://github.com/rhinstaller/anaconda/pull/5469#issuecomment-1939754079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#895](https://github.com/scilus/scilpy/pull/895#issuecomment-1939686147) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#801](https://github.com/spacetelescope/webbpsf/pull/801#issuecomment-1939365963) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#2773](https://github.com/metabrainz/listenbrainz-server/pull/2773#issuecomment-1939144361) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#1481](https://github.com/spacetelescope/jwql/pull/1481#issuecomment-1939000941) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#1691](https://github.com/astropy/photutils/pull/1691#issuecomment-1938881334) in [astropy/photutils](https://github.com/astropy/photutils) -8. 🗣 Commented on [#1349](https://github.com/openSUSE/osc/pull/1349#issuecomment-1938762520) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) -10. 🗣 Commented on [#289](https://github.com/OpenFreeEnergy/gufe/pull/289#issuecomment-1938398917) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#191](https://github.com/damnever/pigar/pull/191#issuecomment-1940763233) in [damnever/pigar](https://github.com/damnever/pigar) +2. 🗣 Commented on [#800](https://github.com/StingraySoftware/stingray/pull/800#issuecomment-1939922521) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +3. 🗣 Commented on [#5469](https://github.com/rhinstaller/anaconda/pull/5469#issuecomment-1939754079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#895](https://github.com/scilus/scilpy/pull/895#issuecomment-1939686147) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#801](https://github.com/spacetelescope/webbpsf/pull/801#issuecomment-1939365963) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#2773](https://github.com/metabrainz/listenbrainz-server/pull/2773#issuecomment-1939144361) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#1481](https://github.com/spacetelescope/jwql/pull/1481#issuecomment-1939000941) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#1691](https://github.com/astropy/photutils/pull/1691#issuecomment-1938881334) in [astropy/photutils](https://github.com/astropy/photutils) +9. 🗣 Commented on [#1349](https://github.com/openSUSE/osc/pull/1349#issuecomment-1938762520) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) From d3ab923efd210d0473989657919f3e6782809226 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 11:15:27 +0000 Subject: [PATCH 1419/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 553858f6..b5210f91 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#191](https://github.com/damnever/pigar/pull/191#issuecomment-1940763233) in [damnever/pigar](https://github.com/damnever/pigar) -2. 🗣 Commented on [#800](https://github.com/StingraySoftware/stingray/pull/800#issuecomment-1939922521) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -3. 🗣 Commented on [#5469](https://github.com/rhinstaller/anaconda/pull/5469#issuecomment-1939754079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#895](https://github.com/scilus/scilpy/pull/895#issuecomment-1939686147) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#801](https://github.com/spacetelescope/webbpsf/pull/801#issuecomment-1939365963) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#2773](https://github.com/metabrainz/listenbrainz-server/pull/2773#issuecomment-1939144361) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#1481](https://github.com/spacetelescope/jwql/pull/1481#issuecomment-1939000941) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#1691](https://github.com/astropy/photutils/pull/1691#issuecomment-1938881334) in [astropy/photutils](https://github.com/astropy/photutils) -9. 🗣 Commented on [#1349](https://github.com/openSUSE/osc/pull/1349#issuecomment-1938762520) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#10](https://github.com/thoth-pub/thoth-loader/pull/10#issuecomment-1938624365) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) +1. 🗣 Commented on [#521](https://github.com/aramis-lab/clinicadl/pull/521#issuecomment-1941166338) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +2. 🗣 Commented on [#2776](https://github.com/metabrainz/listenbrainz-server/pull/2776#issuecomment-1941156594) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#191](https://github.com/damnever/pigar/pull/191#issuecomment-1940763233) in [damnever/pigar](https://github.com/damnever/pigar) +4. 🗣 Commented on [#800](https://github.com/StingraySoftware/stingray/pull/800#issuecomment-1939922521) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +5. 🗣 Commented on [#5469](https://github.com/rhinstaller/anaconda/pull/5469#issuecomment-1939754079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#895](https://github.com/scilus/scilpy/pull/895#issuecomment-1939686147) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#801](https://github.com/spacetelescope/webbpsf/pull/801#issuecomment-1939365963) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#2773](https://github.com/metabrainz/listenbrainz-server/pull/2773#issuecomment-1939144361) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#1481](https://github.com/spacetelescope/jwql/pull/1481#issuecomment-1939000941) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#1691](https://github.com/astropy/photutils/pull/1691#issuecomment-1938881334) in [astropy/photutils](https://github.com/astropy/photutils) From 27db2ad34b07607647c2b11b52d47fe6cd362978 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 12:28:16 +0000 Subject: [PATCH 1420/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b5210f91..2bc08250 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#521](https://github.com/aramis-lab/clinicadl/pull/521#issuecomment-1941166338) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -2. 🗣 Commented on [#2776](https://github.com/metabrainz/listenbrainz-server/pull/2776#issuecomment-1941156594) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#191](https://github.com/damnever/pigar/pull/191#issuecomment-1940763233) in [damnever/pigar](https://github.com/damnever/pigar) -4. 🗣 Commented on [#800](https://github.com/StingraySoftware/stingray/pull/800#issuecomment-1939922521) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -5. 🗣 Commented on [#5469](https://github.com/rhinstaller/anaconda/pull/5469#issuecomment-1939754079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#895](https://github.com/scilus/scilpy/pull/895#issuecomment-1939686147) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#801](https://github.com/spacetelescope/webbpsf/pull/801#issuecomment-1939365963) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#2773](https://github.com/metabrainz/listenbrainz-server/pull/2773#issuecomment-1939144361) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#1481](https://github.com/spacetelescope/jwql/pull/1481#issuecomment-1939000941) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#1691](https://github.com/astropy/photutils/pull/1691#issuecomment-1938881334) in [astropy/photutils](https://github.com/astropy/photutils) +1. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#1052](https://github.com/oemof/oemof-solph/pull/1052#issuecomment-1941336092) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +3. 🗣 Commented on [#521](https://github.com/aramis-lab/clinicadl/pull/521#issuecomment-1941166338) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +4. 🗣 Commented on [#2776](https://github.com/metabrainz/listenbrainz-server/pull/2776#issuecomment-1941156594) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#191](https://github.com/damnever/pigar/pull/191#issuecomment-1940763233) in [damnever/pigar](https://github.com/damnever/pigar) +6. 🗣 Commented on [#800](https://github.com/StingraySoftware/stingray/pull/800#issuecomment-1939922521) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +7. 🗣 Commented on [#5469](https://github.com/rhinstaller/anaconda/pull/5469#issuecomment-1939754079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#895](https://github.com/scilus/scilpy/pull/895#issuecomment-1939686147) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#801](https://github.com/spacetelescope/webbpsf/pull/801#issuecomment-1939365963) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +10. 🗣 Commented on [#2773](https://github.com/metabrainz/listenbrainz-server/pull/2773#issuecomment-1939144361) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 3069b78887266f1c3775b00483a11d2e914c4b1e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 15:15:58 +0000 Subject: [PATCH 1421/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2bc08250..75c4ba2e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#1052](https://github.com/oemof/oemof-solph/pull/1052#issuecomment-1941336092) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -3. 🗣 Commented on [#521](https://github.com/aramis-lab/clinicadl/pull/521#issuecomment-1941166338) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -4. 🗣 Commented on [#2776](https://github.com/metabrainz/listenbrainz-server/pull/2776#issuecomment-1941156594) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#191](https://github.com/damnever/pigar/pull/191#issuecomment-1940763233) in [damnever/pigar](https://github.com/damnever/pigar) -6. 🗣 Commented on [#800](https://github.com/StingraySoftware/stingray/pull/800#issuecomment-1939922521) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -7. 🗣 Commented on [#5469](https://github.com/rhinstaller/anaconda/pull/5469#issuecomment-1939754079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#895](https://github.com/scilus/scilpy/pull/895#issuecomment-1939686147) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#801](https://github.com/spacetelescope/webbpsf/pull/801#issuecomment-1939365963) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -10. 🗣 Commented on [#2773](https://github.com/metabrainz/listenbrainz-server/pull/2773#issuecomment-1939144361) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#896](https://github.com/scilus/scilpy/pull/896#issuecomment-1941706421) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#1052](https://github.com/oemof/oemof-solph/pull/1052#issuecomment-1941336092) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +4. 🗣 Commented on [#521](https://github.com/aramis-lab/clinicadl/pull/521#issuecomment-1941166338) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +5. 🗣 Commented on [#2776](https://github.com/metabrainz/listenbrainz-server/pull/2776#issuecomment-1941156594) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#191](https://github.com/damnever/pigar/pull/191#issuecomment-1940763233) in [damnever/pigar](https://github.com/damnever/pigar) +7. 🗣 Commented on [#800](https://github.com/StingraySoftware/stingray/pull/800#issuecomment-1939922521) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +8. 🗣 Commented on [#5469](https://github.com/rhinstaller/anaconda/pull/5469#issuecomment-1939754079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#895](https://github.com/scilus/scilpy/pull/895#issuecomment-1939686147) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#801](https://github.com/spacetelescope/webbpsf/pull/801#issuecomment-1939365963) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) From b73bcd3d20e3a07ce23371737930b531ed6ac599 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 17:13:23 +0000 Subject: [PATCH 1422/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 75c4ba2e..1ae58e9a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#896](https://github.com/scilus/scilpy/pull/896#issuecomment-1941706421) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#1052](https://github.com/oemof/oemof-solph/pull/1052#issuecomment-1941336092) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -4. 🗣 Commented on [#521](https://github.com/aramis-lab/clinicadl/pull/521#issuecomment-1941166338) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -5. 🗣 Commented on [#2776](https://github.com/metabrainz/listenbrainz-server/pull/2776#issuecomment-1941156594) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#191](https://github.com/damnever/pigar/pull/191#issuecomment-1940763233) in [damnever/pigar](https://github.com/damnever/pigar) -7. 🗣 Commented on [#800](https://github.com/StingraySoftware/stingray/pull/800#issuecomment-1939922521) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -8. 🗣 Commented on [#5469](https://github.com/rhinstaller/anaconda/pull/5469#issuecomment-1939754079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#895](https://github.com/scilus/scilpy/pull/895#issuecomment-1939686147) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#801](https://github.com/spacetelescope/webbpsf/pull/801#issuecomment-1939365963) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +1. 🗣 Commented on [#3107](https://github.com/reframe-hpc/reframe/pull/3107#issuecomment-1941997994) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +2. 🗣 Commented on [#896](https://github.com/scilus/scilpy/pull/896#issuecomment-1941706421) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#1052](https://github.com/oemof/oemof-solph/pull/1052#issuecomment-1941336092) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +5. 🗣 Commented on [#521](https://github.com/aramis-lab/clinicadl/pull/521#issuecomment-1941166338) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +6. 🗣 Commented on [#2776](https://github.com/metabrainz/listenbrainz-server/pull/2776#issuecomment-1941156594) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#191](https://github.com/damnever/pigar/pull/191#issuecomment-1940763233) in [damnever/pigar](https://github.com/damnever/pigar) +8. 🗣 Commented on [#800](https://github.com/StingraySoftware/stingray/pull/800#issuecomment-1939922521) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +9. 🗣 Commented on [#5469](https://github.com/rhinstaller/anaconda/pull/5469#issuecomment-1939754079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#895](https://github.com/scilus/scilpy/pull/895#issuecomment-1939686147) in [scilus/scilpy](https://github.com/scilus/scilpy) From 239944e6dc3fc8da048b066d5b48034e4bfd75b9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 18:20:35 +0000 Subject: [PATCH 1423/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1ae58e9a..3c5bd368 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3107](https://github.com/reframe-hpc/reframe/pull/3107#issuecomment-1941997994) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -2. 🗣 Commented on [#896](https://github.com/scilus/scilpy/pull/896#issuecomment-1941706421) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#1052](https://github.com/oemof/oemof-solph/pull/1052#issuecomment-1941336092) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -5. 🗣 Commented on [#521](https://github.com/aramis-lab/clinicadl/pull/521#issuecomment-1941166338) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -6. 🗣 Commented on [#2776](https://github.com/metabrainz/listenbrainz-server/pull/2776#issuecomment-1941156594) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#191](https://github.com/damnever/pigar/pull/191#issuecomment-1940763233) in [damnever/pigar](https://github.com/damnever/pigar) -8. 🗣 Commented on [#800](https://github.com/StingraySoftware/stingray/pull/800#issuecomment-1939922521) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -9. 🗣 Commented on [#5469](https://github.com/rhinstaller/anaconda/pull/5469#issuecomment-1939754079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#895](https://github.com/scilus/scilpy/pull/895#issuecomment-1939686147) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#722](https://github.com/OpenFreeEnergy/openfe/pull/722#issuecomment-1942095200) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#3107](https://github.com/reframe-hpc/reframe/pull/3107#issuecomment-1941997994) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +3. 🗣 Commented on [#896](https://github.com/scilus/scilpy/pull/896#issuecomment-1941706421) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#1052](https://github.com/oemof/oemof-solph/pull/1052#issuecomment-1941336092) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +6. 🗣 Commented on [#521](https://github.com/aramis-lab/clinicadl/pull/521#issuecomment-1941166338) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +7. 🗣 Commented on [#2776](https://github.com/metabrainz/listenbrainz-server/pull/2776#issuecomment-1941156594) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#191](https://github.com/damnever/pigar/pull/191#issuecomment-1940763233) in [damnever/pigar](https://github.com/damnever/pigar) +9. 🗣 Commented on [#800](https://github.com/StingraySoftware/stingray/pull/800#issuecomment-1939922521) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +10. 🗣 Commented on [#5469](https://github.com/rhinstaller/anaconda/pull/5469#issuecomment-1939754079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From c87cb90ded6ffd3f9749f5cfadc9c3bb6d9bd34d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 19:12:18 +0000 Subject: [PATCH 1424/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3c5bd368..b843c0a5 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#722](https://github.com/OpenFreeEnergy/openfe/pull/722#issuecomment-1942095200) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#3107](https://github.com/reframe-hpc/reframe/pull/3107#issuecomment-1941997994) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -3. 🗣 Commented on [#896](https://github.com/scilus/scilpy/pull/896#issuecomment-1941706421) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#1052](https://github.com/oemof/oemof-solph/pull/1052#issuecomment-1941336092) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -6. 🗣 Commented on [#521](https://github.com/aramis-lab/clinicadl/pull/521#issuecomment-1941166338) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -7. 🗣 Commented on [#2776](https://github.com/metabrainz/listenbrainz-server/pull/2776#issuecomment-1941156594) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#191](https://github.com/damnever/pigar/pull/191#issuecomment-1940763233) in [damnever/pigar](https://github.com/damnever/pigar) -9. 🗣 Commented on [#800](https://github.com/StingraySoftware/stingray/pull/800#issuecomment-1939922521) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -10. 🗣 Commented on [#5469](https://github.com/rhinstaller/anaconda/pull/5469#issuecomment-1939754079) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#1637](https://github.com/odlgroup/odl/pull/1637#issuecomment-1942173160) in [odlgroup/odl](https://github.com/odlgroup/odl) +2. 🗣 Commented on [#722](https://github.com/OpenFreeEnergy/openfe/pull/722#issuecomment-1942095200) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#3107](https://github.com/reframe-hpc/reframe/pull/3107#issuecomment-1941997994) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +4. 🗣 Commented on [#896](https://github.com/scilus/scilpy/pull/896#issuecomment-1941706421) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#1052](https://github.com/oemof/oemof-solph/pull/1052#issuecomment-1941336092) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +7. 🗣 Commented on [#521](https://github.com/aramis-lab/clinicadl/pull/521#issuecomment-1941166338) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +8. 🗣 Commented on [#2776](https://github.com/metabrainz/listenbrainz-server/pull/2776#issuecomment-1941156594) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#191](https://github.com/damnever/pigar/pull/191#issuecomment-1940763233) in [damnever/pigar](https://github.com/damnever/pigar) +10. 🗣 Commented on [#800](https://github.com/StingraySoftware/stingray/pull/800#issuecomment-1939922521) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) From d99fd778c68574358b02adf9f20d4f2043e9b141 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 20:18:38 +0000 Subject: [PATCH 1425/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b843c0a5..a66b74c3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1637](https://github.com/odlgroup/odl/pull/1637#issuecomment-1942173160) in [odlgroup/odl](https://github.com/odlgroup/odl) -2. 🗣 Commented on [#722](https://github.com/OpenFreeEnergy/openfe/pull/722#issuecomment-1942095200) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#3107](https://github.com/reframe-hpc/reframe/pull/3107#issuecomment-1941997994) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -4. 🗣 Commented on [#896](https://github.com/scilus/scilpy/pull/896#issuecomment-1941706421) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#1052](https://github.com/oemof/oemof-solph/pull/1052#issuecomment-1941336092) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -7. 🗣 Commented on [#521](https://github.com/aramis-lab/clinicadl/pull/521#issuecomment-1941166338) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -8. 🗣 Commented on [#2776](https://github.com/metabrainz/listenbrainz-server/pull/2776#issuecomment-1941156594) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#191](https://github.com/damnever/pigar/pull/191#issuecomment-1940763233) in [damnever/pigar](https://github.com/damnever/pigar) -10. 🗣 Commented on [#800](https://github.com/StingraySoftware/stingray/pull/800#issuecomment-1939922521) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +1. 🗣 Commented on [#802](https://github.com/spacetelescope/webbpsf/pull/802#issuecomment-1942313912) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#1637](https://github.com/odlgroup/odl/pull/1637#issuecomment-1942173160) in [odlgroup/odl](https://github.com/odlgroup/odl) +3. 🗣 Commented on [#722](https://github.com/OpenFreeEnergy/openfe/pull/722#issuecomment-1942095200) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#3107](https://github.com/reframe-hpc/reframe/pull/3107#issuecomment-1941997994) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +5. 🗣 Commented on [#896](https://github.com/scilus/scilpy/pull/896#issuecomment-1941706421) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#1052](https://github.com/oemof/oemof-solph/pull/1052#issuecomment-1941336092) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +8. 🗣 Commented on [#521](https://github.com/aramis-lab/clinicadl/pull/521#issuecomment-1941166338) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +9. 🗣 Commented on [#2776](https://github.com/metabrainz/listenbrainz-server/pull/2776#issuecomment-1941156594) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#191](https://github.com/damnever/pigar/pull/191#issuecomment-1940763233) in [damnever/pigar](https://github.com/damnever/pigar) From 7758265400c69bfa7ab1b7dc0ba6a45fbb8a6bed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 23:15:44 +0000 Subject: [PATCH 1426/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a66b74c3..98531967 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#802](https://github.com/spacetelescope/webbpsf/pull/802#issuecomment-1942313912) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#1637](https://github.com/odlgroup/odl/pull/1637#issuecomment-1942173160) in [odlgroup/odl](https://github.com/odlgroup/odl) -3. 🗣 Commented on [#722](https://github.com/OpenFreeEnergy/openfe/pull/722#issuecomment-1942095200) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#3107](https://github.com/reframe-hpc/reframe/pull/3107#issuecomment-1941997994) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -5. 🗣 Commented on [#896](https://github.com/scilus/scilpy/pull/896#issuecomment-1941706421) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#1052](https://github.com/oemof/oemof-solph/pull/1052#issuecomment-1941336092) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -8. 🗣 Commented on [#521](https://github.com/aramis-lab/clinicadl/pull/521#issuecomment-1941166338) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -9. 🗣 Commented on [#2776](https://github.com/metabrainz/listenbrainz-server/pull/2776#issuecomment-1941156594) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#191](https://github.com/damnever/pigar/pull/191#issuecomment-1940763233) in [damnever/pigar](https://github.com/damnever/pigar) +1. 🗣 Commented on [#1067](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1067#issuecomment-1942779248) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#802](https://github.com/spacetelescope/webbpsf/pull/802#issuecomment-1942313912) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#1637](https://github.com/odlgroup/odl/pull/1637#issuecomment-1942173160) in [odlgroup/odl](https://github.com/odlgroup/odl) +4. 🗣 Commented on [#722](https://github.com/OpenFreeEnergy/openfe/pull/722#issuecomment-1942095200) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#3107](https://github.com/reframe-hpc/reframe/pull/3107#issuecomment-1941997994) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +6. 🗣 Commented on [#896](https://github.com/scilus/scilpy/pull/896#issuecomment-1941706421) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#1052](https://github.com/oemof/oemof-solph/pull/1052#issuecomment-1941336092) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +9. 🗣 Commented on [#521](https://github.com/aramis-lab/clinicadl/pull/521#issuecomment-1941166338) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +10. 🗣 Commented on [#2776](https://github.com/metabrainz/listenbrainz-server/pull/2776#issuecomment-1941156594) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 32434cdf1e65885539239440505d61f0a129dfb8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 02:37:21 +0000 Subject: [PATCH 1427/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 98531967..0035529d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1067](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1067#issuecomment-1942779248) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#802](https://github.com/spacetelescope/webbpsf/pull/802#issuecomment-1942313912) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#1637](https://github.com/odlgroup/odl/pull/1637#issuecomment-1942173160) in [odlgroup/odl](https://github.com/odlgroup/odl) -4. 🗣 Commented on [#722](https://github.com/OpenFreeEnergy/openfe/pull/722#issuecomment-1942095200) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#3107](https://github.com/reframe-hpc/reframe/pull/3107#issuecomment-1941997994) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -6. 🗣 Commented on [#896](https://github.com/scilus/scilpy/pull/896#issuecomment-1941706421) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#1052](https://github.com/oemof/oemof-solph/pull/1052#issuecomment-1941336092) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -9. 🗣 Commented on [#521](https://github.com/aramis-lab/clinicadl/pull/521#issuecomment-1941166338) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -10. 🗣 Commented on [#2776](https://github.com/metabrainz/listenbrainz-server/pull/2776#issuecomment-1941156594) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#4363](https://github.com/uwcirg/truenth-portal/pull/4363#issuecomment-1942977705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +2. 🗣 Commented on [#1067](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1067#issuecomment-1942779248) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#802](https://github.com/spacetelescope/webbpsf/pull/802#issuecomment-1942313912) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#1637](https://github.com/odlgroup/odl/pull/1637#issuecomment-1942173160) in [odlgroup/odl](https://github.com/odlgroup/odl) +5. 🗣 Commented on [#722](https://github.com/OpenFreeEnergy/openfe/pull/722#issuecomment-1942095200) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#3107](https://github.com/reframe-hpc/reframe/pull/3107#issuecomment-1941997994) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +7. 🗣 Commented on [#896](https://github.com/scilus/scilpy/pull/896#issuecomment-1941706421) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#1052](https://github.com/oemof/oemof-solph/pull/1052#issuecomment-1941336092) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +10. 🗣 Commented on [#521](https://github.com/aramis-lab/clinicadl/pull/521#issuecomment-1941166338) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) From c7e7c0e4bb34fa20e99749217c3b6732b6c2c1d8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 04:19:08 +0000 Subject: [PATCH 1428/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0035529d..9c1fcb26 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4363](https://github.com/uwcirg/truenth-portal/pull/4363#issuecomment-1942977705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -2. 🗣 Commented on [#1067](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1067#issuecomment-1942779248) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#802](https://github.com/spacetelescope/webbpsf/pull/802#issuecomment-1942313912) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#1637](https://github.com/odlgroup/odl/pull/1637#issuecomment-1942173160) in [odlgroup/odl](https://github.com/odlgroup/odl) -5. 🗣 Commented on [#722](https://github.com/OpenFreeEnergy/openfe/pull/722#issuecomment-1942095200) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#3107](https://github.com/reframe-hpc/reframe/pull/3107#issuecomment-1941997994) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -7. 🗣 Commented on [#896](https://github.com/scilus/scilpy/pull/896#issuecomment-1941706421) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#1052](https://github.com/oemof/oemof-solph/pull/1052#issuecomment-1941336092) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -10. 🗣 Commented on [#521](https://github.com/aramis-lab/clinicadl/pull/521#issuecomment-1941166338) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +1. 🗣 Commented on [#4457](https://github.com/MDAnalysis/mdanalysis/pull/4457#issuecomment-1943053640) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#4363](https://github.com/uwcirg/truenth-portal/pull/4363#issuecomment-1942977705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +3. 🗣 Commented on [#1067](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1067#issuecomment-1942779248) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#802](https://github.com/spacetelescope/webbpsf/pull/802#issuecomment-1942313912) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#1637](https://github.com/odlgroup/odl/pull/1637#issuecomment-1942173160) in [odlgroup/odl](https://github.com/odlgroup/odl) +6. 🗣 Commented on [#722](https://github.com/OpenFreeEnergy/openfe/pull/722#issuecomment-1942095200) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#3107](https://github.com/reframe-hpc/reframe/pull/3107#issuecomment-1941997994) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +8. 🗣 Commented on [#896](https://github.com/scilus/scilpy/pull/896#issuecomment-1941706421) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#1052](https://github.com/oemof/oemof-solph/pull/1052#issuecomment-1941336092) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) From b0da2bdf532eda06907d74c60093ba35cd2e89b5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 11:15:19 +0000 Subject: [PATCH 1429/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9c1fcb26..e875d643 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4457](https://github.com/MDAnalysis/mdanalysis/pull/4457#issuecomment-1943053640) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#4363](https://github.com/uwcirg/truenth-portal/pull/4363#issuecomment-1942977705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -3. 🗣 Commented on [#1067](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1067#issuecomment-1942779248) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#802](https://github.com/spacetelescope/webbpsf/pull/802#issuecomment-1942313912) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#1637](https://github.com/odlgroup/odl/pull/1637#issuecomment-1942173160) in [odlgroup/odl](https://github.com/odlgroup/odl) -6. 🗣 Commented on [#722](https://github.com/OpenFreeEnergy/openfe/pull/722#issuecomment-1942095200) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#3107](https://github.com/reframe-hpc/reframe/pull/3107#issuecomment-1941997994) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -8. 🗣 Commented on [#896](https://github.com/scilus/scilpy/pull/896#issuecomment-1941706421) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#1052](https://github.com/oemof/oemof-solph/pull/1052#issuecomment-1941336092) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +1. 🗣 Commented on [#1322](https://github.com/rpm-software-management/mock/pull/1322#issuecomment-1943517141) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +2. 🗣 Commented on [#4457](https://github.com/MDAnalysis/mdanalysis/pull/4457#issuecomment-1943053640) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#4363](https://github.com/uwcirg/truenth-portal/pull/4363#issuecomment-1942977705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +4. 🗣 Commented on [#1067](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1067#issuecomment-1942779248) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#802](https://github.com/spacetelescope/webbpsf/pull/802#issuecomment-1942313912) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#1637](https://github.com/odlgroup/odl/pull/1637#issuecomment-1942173160) in [odlgroup/odl](https://github.com/odlgroup/odl) +7. 🗣 Commented on [#722](https://github.com/OpenFreeEnergy/openfe/pull/722#issuecomment-1942095200) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#3107](https://github.com/reframe-hpc/reframe/pull/3107#issuecomment-1941997994) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +9. 🗣 Commented on [#896](https://github.com/scilus/scilpy/pull/896#issuecomment-1941706421) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From ba80bc71b5367ecfa1cfecc574d0e8088eaabc6a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 12:29:23 +0000 Subject: [PATCH 1430/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e875d643..ef2339ec 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1322](https://github.com/rpm-software-management/mock/pull/1322#issuecomment-1943517141) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -2. 🗣 Commented on [#4457](https://github.com/MDAnalysis/mdanalysis/pull/4457#issuecomment-1943053640) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#4363](https://github.com/uwcirg/truenth-portal/pull/4363#issuecomment-1942977705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -4. 🗣 Commented on [#1067](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1067#issuecomment-1942779248) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#802](https://github.com/spacetelescope/webbpsf/pull/802#issuecomment-1942313912) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#1637](https://github.com/odlgroup/odl/pull/1637#issuecomment-1942173160) in [odlgroup/odl](https://github.com/odlgroup/odl) -7. 🗣 Commented on [#722](https://github.com/OpenFreeEnergy/openfe/pull/722#issuecomment-1942095200) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#3107](https://github.com/reframe-hpc/reframe/pull/3107#issuecomment-1941997994) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -9. 🗣 Commented on [#896](https://github.com/scilus/scilpy/pull/896#issuecomment-1941706421) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#721](https://github.com/OpenFreeEnergy/openfe/pull/721#issuecomment-1941352439) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#21666](https://github.com/spyder-ide/spyder/pull/21666#issuecomment-1943635577) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/3#issuecomment-1943633250) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +3. 🗣 Commented on [#253](https://github.com/CartoonFan/lutris/pull/253#issuecomment-1943617270) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#1322](https://github.com/rpm-software-management/mock/pull/1322#issuecomment-1943517141) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +5. 🗣 Commented on [#4457](https://github.com/MDAnalysis/mdanalysis/pull/4457#issuecomment-1943053640) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#4363](https://github.com/uwcirg/truenth-portal/pull/4363#issuecomment-1942977705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +7. 🗣 Commented on [#1067](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1067#issuecomment-1942779248) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#802](https://github.com/spacetelescope/webbpsf/pull/802#issuecomment-1942313912) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +9. 🗣 Commented on [#1637](https://github.com/odlgroup/odl/pull/1637#issuecomment-1942173160) in [odlgroup/odl](https://github.com/odlgroup/odl) +10. 🗣 Commented on [#722](https://github.com/OpenFreeEnergy/openfe/pull/722#issuecomment-1942095200) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 64aecf138a5c186530c6e4430233b636e4ecfd9e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 12:49:46 +0000 Subject: [PATCH 1431/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ef2339ec..7b864b1f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21666](https://github.com/spyder-ide/spyder/pull/21666#issuecomment-1943635577) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/3#issuecomment-1943633250) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -3. 🗣 Commented on [#253](https://github.com/CartoonFan/lutris/pull/253#issuecomment-1943617270) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#1322](https://github.com/rpm-software-management/mock/pull/1322#issuecomment-1943517141) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -5. 🗣 Commented on [#4457](https://github.com/MDAnalysis/mdanalysis/pull/4457#issuecomment-1943053640) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#4363](https://github.com/uwcirg/truenth-portal/pull/4363#issuecomment-1942977705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -7. 🗣 Commented on [#1067](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1067#issuecomment-1942779248) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#802](https://github.com/spacetelescope/webbpsf/pull/802#issuecomment-1942313912) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -9. 🗣 Commented on [#1637](https://github.com/odlgroup/odl/pull/1637#issuecomment-1942173160) in [odlgroup/odl](https://github.com/odlgroup/odl) -10. 🗣 Commented on [#722](https://github.com/OpenFreeEnergy/openfe/pull/722#issuecomment-1942095200) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#487](https://github.com/Spoken-tutorial/spoken-website/pull/487#issuecomment-1943678393) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +2. 🗣 Commented on [#21666](https://github.com/spyder-ide/spyder/pull/21666#issuecomment-1943635577) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/3#issuecomment-1943633250) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +4. 🗣 Commented on [#253](https://github.com/CartoonFan/lutris/pull/253#issuecomment-1943617270) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#1322](https://github.com/rpm-software-management/mock/pull/1322#issuecomment-1943517141) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +6. 🗣 Commented on [#4457](https://github.com/MDAnalysis/mdanalysis/pull/4457#issuecomment-1943053640) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#4363](https://github.com/uwcirg/truenth-portal/pull/4363#issuecomment-1942977705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +8. 🗣 Commented on [#1067](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1067#issuecomment-1942779248) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#802](https://github.com/spacetelescope/webbpsf/pull/802#issuecomment-1942313912) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +10. 🗣 Commented on [#1637](https://github.com/odlgroup/odl/pull/1637#issuecomment-1942173160) in [odlgroup/odl](https://github.com/odlgroup/odl) From 747644d6e495e1784e84ccdcdb13dbb364ab042b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 14:15:12 +0000 Subject: [PATCH 1432/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7b864b1f..2d273225 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#487](https://github.com/Spoken-tutorial/spoken-website/pull/487#issuecomment-1943678393) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -2. 🗣 Commented on [#21666](https://github.com/spyder-ide/spyder/pull/21666#issuecomment-1943635577) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/3#issuecomment-1943633250) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -4. 🗣 Commented on [#253](https://github.com/CartoonFan/lutris/pull/253#issuecomment-1943617270) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#1322](https://github.com/rpm-software-management/mock/pull/1322#issuecomment-1943517141) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -6. 🗣 Commented on [#4457](https://github.com/MDAnalysis/mdanalysis/pull/4457#issuecomment-1943053640) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#4363](https://github.com/uwcirg/truenth-portal/pull/4363#issuecomment-1942977705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -8. 🗣 Commented on [#1067](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1067#issuecomment-1942779248) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#802](https://github.com/spacetelescope/webbpsf/pull/802#issuecomment-1942313912) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -10. 🗣 Commented on [#1637](https://github.com/odlgroup/odl/pull/1637#issuecomment-1942173160) in [odlgroup/odl](https://github.com/odlgroup/odl) +1. 🗣 Commented on [#518](https://github.com/aramis-lab/clinicadl/pull/518#issuecomment-1943838336) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +2. 🗣 Commented on [#487](https://github.com/Spoken-tutorial/spoken-website/pull/487#issuecomment-1943678393) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +3. 🗣 Commented on [#21666](https://github.com/spyder-ide/spyder/pull/21666#issuecomment-1943635577) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/3#issuecomment-1943633250) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +5. 🗣 Commented on [#253](https://github.com/CartoonFan/lutris/pull/253#issuecomment-1943617270) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#1322](https://github.com/rpm-software-management/mock/pull/1322#issuecomment-1943517141) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +7. 🗣 Commented on [#4457](https://github.com/MDAnalysis/mdanalysis/pull/4457#issuecomment-1943053640) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#4363](https://github.com/uwcirg/truenth-portal/pull/4363#issuecomment-1942977705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +9. 🗣 Commented on [#1067](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1067#issuecomment-1942779248) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#802](https://github.com/spacetelescope/webbpsf/pull/802#issuecomment-1942313912) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) From 917619230fab084f30fb4758e71cbb2977be7644 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 14:37:13 +0000 Subject: [PATCH 1433/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2d273225..05016d8f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#518](https://github.com/aramis-lab/clinicadl/pull/518#issuecomment-1943838336) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -2. 🗣 Commented on [#487](https://github.com/Spoken-tutorial/spoken-website/pull/487#issuecomment-1943678393) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -3. 🗣 Commented on [#21666](https://github.com/spyder-ide/spyder/pull/21666#issuecomment-1943635577) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/3#issuecomment-1943633250) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -5. 🗣 Commented on [#253](https://github.com/CartoonFan/lutris/pull/253#issuecomment-1943617270) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#1322](https://github.com/rpm-software-management/mock/pull/1322#issuecomment-1943517141) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -7. 🗣 Commented on [#4457](https://github.com/MDAnalysis/mdanalysis/pull/4457#issuecomment-1943053640) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#4363](https://github.com/uwcirg/truenth-portal/pull/4363#issuecomment-1942977705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -9. 🗣 Commented on [#1067](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1067#issuecomment-1942779248) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#802](https://github.com/spacetelescope/webbpsf/pull/802#issuecomment-1942313912) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +1. 🗣 Commented on [#724](https://github.com/OpenFreeEnergy/openfe/pull/724#issuecomment-1943914476) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#518](https://github.com/aramis-lab/clinicadl/pull/518#issuecomment-1943838336) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +3. 🗣 Commented on [#487](https://github.com/Spoken-tutorial/spoken-website/pull/487#issuecomment-1943678393) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +4. 🗣 Commented on [#21666](https://github.com/spyder-ide/spyder/pull/21666#issuecomment-1943635577) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/3#issuecomment-1943633250) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +6. 🗣 Commented on [#253](https://github.com/CartoonFan/lutris/pull/253#issuecomment-1943617270) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#1322](https://github.com/rpm-software-management/mock/pull/1322#issuecomment-1943517141) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +8. 🗣 Commented on [#4457](https://github.com/MDAnalysis/mdanalysis/pull/4457#issuecomment-1943053640) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#4363](https://github.com/uwcirg/truenth-portal/pull/4363#issuecomment-1942977705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +10. 🗣 Commented on [#1067](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1067#issuecomment-1942779248) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 3d30c9d8c91c18eba64a5ee2a0eb15dbcb0d8418 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 16:20:02 +0000 Subject: [PATCH 1434/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 05016d8f..c3111ecb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#724](https://github.com/OpenFreeEnergy/openfe/pull/724#issuecomment-1943914476) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#518](https://github.com/aramis-lab/clinicadl/pull/518#issuecomment-1943838336) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -3. 🗣 Commented on [#487](https://github.com/Spoken-tutorial/spoken-website/pull/487#issuecomment-1943678393) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -4. 🗣 Commented on [#21666](https://github.com/spyder-ide/spyder/pull/21666#issuecomment-1943635577) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/3#issuecomment-1943633250) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -6. 🗣 Commented on [#253](https://github.com/CartoonFan/lutris/pull/253#issuecomment-1943617270) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#1322](https://github.com/rpm-software-management/mock/pull/1322#issuecomment-1943517141) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -8. 🗣 Commented on [#4457](https://github.com/MDAnalysis/mdanalysis/pull/4457#issuecomment-1943053640) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#4363](https://github.com/uwcirg/truenth-portal/pull/4363#issuecomment-1942977705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -10. 🗣 Commented on [#1067](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1067#issuecomment-1942779248) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#2782](https://github.com/metabrainz/listenbrainz-server/pull/2782#issuecomment-1944110316) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#904](https://github.com/ToFuProject/tofu/pull/904#issuecomment-1944092433) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#724](https://github.com/OpenFreeEnergy/openfe/pull/724#issuecomment-1943914476) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#518](https://github.com/aramis-lab/clinicadl/pull/518#issuecomment-1943838336) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +6. 🗣 Commented on [#487](https://github.com/Spoken-tutorial/spoken-website/pull/487#issuecomment-1943678393) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +7. 🗣 Commented on [#21666](https://github.com/spyder-ide/spyder/pull/21666#issuecomment-1943635577) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/3#issuecomment-1943633250) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +9. 🗣 Commented on [#253](https://github.com/CartoonFan/lutris/pull/253#issuecomment-1943617270) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#1322](https://github.com/rpm-software-management/mock/pull/1322#issuecomment-1943517141) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) From c4a0893b1943de4d5cfe1bc50afcc8f5fbb212a1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 16:38:25 +0000 Subject: [PATCH 1435/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c3111ecb..699e22fe 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#2782](https://github.com/metabrainz/listenbrainz-server/pull/2782#issuecomment-1944110316) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#904](https://github.com/ToFuProject/tofu/pull/904#issuecomment-1944092433) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#724](https://github.com/OpenFreeEnergy/openfe/pull/724#issuecomment-1943914476) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#518](https://github.com/aramis-lab/clinicadl/pull/518#issuecomment-1943838336) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -6. 🗣 Commented on [#487](https://github.com/Spoken-tutorial/spoken-website/pull/487#issuecomment-1943678393) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -7. 🗣 Commented on [#21666](https://github.com/spyder-ide/spyder/pull/21666#issuecomment-1943635577) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/3#issuecomment-1943633250) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -9. 🗣 Commented on [#253](https://github.com/CartoonFan/lutris/pull/253#issuecomment-1943617270) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#1322](https://github.com/rpm-software-management/mock/pull/1322#issuecomment-1943517141) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +1. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#2782](https://github.com/metabrainz/listenbrainz-server/pull/2782#issuecomment-1944110316) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#904](https://github.com/ToFuProject/tofu/pull/904#issuecomment-1944092433) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#724](https://github.com/OpenFreeEnergy/openfe/pull/724#issuecomment-1943914476) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#518](https://github.com/aramis-lab/clinicadl/pull/518#issuecomment-1943838336) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +7. 🗣 Commented on [#487](https://github.com/Spoken-tutorial/spoken-website/pull/487#issuecomment-1943678393) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +8. 🗣 Commented on [#21666](https://github.com/spyder-ide/spyder/pull/21666#issuecomment-1943635577) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/3#issuecomment-1943633250) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +10. 🗣 Commented on [#253](https://github.com/CartoonFan/lutris/pull/253#issuecomment-1943617270) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 4b9394ca43f23a686c2b2e4f1d18b250c3cff291 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 20:16:01 +0000 Subject: [PATCH 1436/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 699e22fe..fe5fbfaa 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#2782](https://github.com/metabrainz/listenbrainz-server/pull/2782#issuecomment-1944110316) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#904](https://github.com/ToFuProject/tofu/pull/904#issuecomment-1944092433) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#724](https://github.com/OpenFreeEnergy/openfe/pull/724#issuecomment-1943914476) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#518](https://github.com/aramis-lab/clinicadl/pull/518#issuecomment-1943838336) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -7. 🗣 Commented on [#487](https://github.com/Spoken-tutorial/spoken-website/pull/487#issuecomment-1943678393) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -8. 🗣 Commented on [#21666](https://github.com/spyder-ide/spyder/pull/21666#issuecomment-1943635577) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/3#issuecomment-1943633250) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -10. 🗣 Commented on [#253](https://github.com/CartoonFan/lutris/pull/253#issuecomment-1943617270) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#1482](https://github.com/spacetelescope/jwql/pull/1482#issuecomment-1944516938) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#2782](https://github.com/metabrainz/listenbrainz-server/pull/2782#issuecomment-1944110316) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#904](https://github.com/ToFuProject/tofu/pull/904#issuecomment-1944092433) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#724](https://github.com/OpenFreeEnergy/openfe/pull/724#issuecomment-1943914476) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#518](https://github.com/aramis-lab/clinicadl/pull/518#issuecomment-1943838336) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +8. 🗣 Commented on [#487](https://github.com/Spoken-tutorial/spoken-website/pull/487#issuecomment-1943678393) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +9. 🗣 Commented on [#21666](https://github.com/spyder-ide/spyder/pull/21666#issuecomment-1943635577) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/3#issuecomment-1943633250) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) From a2b48b7236001c006d6626ee43142e5b154cd122 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 15 Feb 2024 01:09:16 +0000 Subject: [PATCH 1437/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fe5fbfaa..6c4cf1d3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1482](https://github.com/spacetelescope/jwql/pull/1482#issuecomment-1944516938) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#2782](https://github.com/metabrainz/listenbrainz-server/pull/2782#issuecomment-1944110316) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#904](https://github.com/ToFuProject/tofu/pull/904#issuecomment-1944092433) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#724](https://github.com/OpenFreeEnergy/openfe/pull/724#issuecomment-1943914476) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#518](https://github.com/aramis-lab/clinicadl/pull/518#issuecomment-1943838336) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -8. 🗣 Commented on [#487](https://github.com/Spoken-tutorial/spoken-website/pull/487#issuecomment-1943678393) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -9. 🗣 Commented on [#21666](https://github.com/spyder-ide/spyder/pull/21666#issuecomment-1943635577) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/3#issuecomment-1943633250) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +1. 🗣 Commented on [#3095](https://github.com/reframe-hpc/reframe/pull/3095#issuecomment-1945028294) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +2. 🗣 Commented on [#1482](https://github.com/spacetelescope/jwql/pull/1482#issuecomment-1944516938) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#2782](https://github.com/metabrainz/listenbrainz-server/pull/2782#issuecomment-1944110316) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#904](https://github.com/ToFuProject/tofu/pull/904#issuecomment-1944092433) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#724](https://github.com/OpenFreeEnergy/openfe/pull/724#issuecomment-1943914476) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#518](https://github.com/aramis-lab/clinicadl/pull/518#issuecomment-1943838336) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +9. 🗣 Commented on [#487](https://github.com/Spoken-tutorial/spoken-website/pull/487#issuecomment-1943678393) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +10. 🗣 Commented on [#21666](https://github.com/spyder-ide/spyder/pull/21666#issuecomment-1943635577) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 5cf422b72d806678fdca122dc2b5939436f572a5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 15 Feb 2024 04:19:15 +0000 Subject: [PATCH 1438/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6c4cf1d3..df83aeeb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3095](https://github.com/reframe-hpc/reframe/pull/3095#issuecomment-1945028294) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -2. 🗣 Commented on [#1482](https://github.com/spacetelescope/jwql/pull/1482#issuecomment-1944516938) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#2782](https://github.com/metabrainz/listenbrainz-server/pull/2782#issuecomment-1944110316) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#904](https://github.com/ToFuProject/tofu/pull/904#issuecomment-1944092433) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#724](https://github.com/OpenFreeEnergy/openfe/pull/724#issuecomment-1943914476) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#518](https://github.com/aramis-lab/clinicadl/pull/518#issuecomment-1943838336) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -9. 🗣 Commented on [#487](https://github.com/Spoken-tutorial/spoken-website/pull/487#issuecomment-1943678393) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -10. 🗣 Commented on [#21666](https://github.com/spyder-ide/spyder/pull/21666#issuecomment-1943635577) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#804](https://github.com/spacetelescope/webbpsf/pull/804#issuecomment-1945325426) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#3095](https://github.com/reframe-hpc/reframe/pull/3095#issuecomment-1945028294) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +3. 🗣 Commented on [#1482](https://github.com/spacetelescope/jwql/pull/1482#issuecomment-1944516938) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#2782](https://github.com/metabrainz/listenbrainz-server/pull/2782#issuecomment-1944110316) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#904](https://github.com/ToFuProject/tofu/pull/904#issuecomment-1944092433) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#724](https://github.com/OpenFreeEnergy/openfe/pull/724#issuecomment-1943914476) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#518](https://github.com/aramis-lab/clinicadl/pull/518#issuecomment-1943838336) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +10. 🗣 Commented on [#487](https://github.com/Spoken-tutorial/spoken-website/pull/487#issuecomment-1943678393) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) From 763b478f9cbe4495b00df82cbce7d751d9ca9bed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 15 Feb 2024 08:37:28 +0000 Subject: [PATCH 1439/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index df83aeeb..2d89fdc6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#804](https://github.com/spacetelescope/webbpsf/pull/804#issuecomment-1945325426) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#3095](https://github.com/reframe-hpc/reframe/pull/3095#issuecomment-1945028294) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -3. 🗣 Commented on [#1482](https://github.com/spacetelescope/jwql/pull/1482#issuecomment-1944516938) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#2782](https://github.com/metabrainz/listenbrainz-server/pull/2782#issuecomment-1944110316) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#904](https://github.com/ToFuProject/tofu/pull/904#issuecomment-1944092433) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#724](https://github.com/OpenFreeEnergy/openfe/pull/724#issuecomment-1943914476) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#518](https://github.com/aramis-lab/clinicadl/pull/518#issuecomment-1943838336) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -10. 🗣 Commented on [#487](https://github.com/Spoken-tutorial/spoken-website/pull/487#issuecomment-1943678393) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +1. 🗣 Commented on [#4458](https://github.com/MDAnalysis/mdanalysis/pull/4458#issuecomment-1945585838) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#804](https://github.com/spacetelescope/webbpsf/pull/804#issuecomment-1945325426) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#3095](https://github.com/reframe-hpc/reframe/pull/3095#issuecomment-1945028294) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +4. 🗣 Commented on [#1482](https://github.com/spacetelescope/jwql/pull/1482#issuecomment-1944516938) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +7. 🗣 Commented on [#2782](https://github.com/metabrainz/listenbrainz-server/pull/2782#issuecomment-1944110316) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#904](https://github.com/ToFuProject/tofu/pull/904#issuecomment-1944092433) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#724](https://github.com/OpenFreeEnergy/openfe/pull/724#issuecomment-1943914476) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#518](https://github.com/aramis-lab/clinicadl/pull/518#issuecomment-1943838336) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) From ba7fd5dfc3c75e24f6b0fbb4c51365fe8fbe5a94 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 15 Feb 2024 10:17:20 +0000 Subject: [PATCH 1440/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2d89fdc6..1f5f9170 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4458](https://github.com/MDAnalysis/mdanalysis/pull/4458#issuecomment-1945585838) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#804](https://github.com/spacetelescope/webbpsf/pull/804#issuecomment-1945325426) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#3095](https://github.com/reframe-hpc/reframe/pull/3095#issuecomment-1945028294) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -4. 🗣 Commented on [#1482](https://github.com/spacetelescope/jwql/pull/1482#issuecomment-1944516938) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -7. 🗣 Commented on [#2782](https://github.com/metabrainz/listenbrainz-server/pull/2782#issuecomment-1944110316) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#904](https://github.com/ToFuProject/tofu/pull/904#issuecomment-1944092433) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#724](https://github.com/OpenFreeEnergy/openfe/pull/724#issuecomment-1943914476) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#518](https://github.com/aramis-lab/clinicadl/pull/518#issuecomment-1943838336) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +1. 🗣 Commented on [#89](https://github.com/eastgenomics/eris/pull/89#issuecomment-1945748179) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#4458](https://github.com/MDAnalysis/mdanalysis/pull/4458#issuecomment-1945585838) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#804](https://github.com/spacetelescope/webbpsf/pull/804#issuecomment-1945325426) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#3095](https://github.com/reframe-hpc/reframe/pull/3095#issuecomment-1945028294) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +5. 🗣 Commented on [#1482](https://github.com/spacetelescope/jwql/pull/1482#issuecomment-1944516938) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#2782](https://github.com/metabrainz/listenbrainz-server/pull/2782#issuecomment-1944110316) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#904](https://github.com/ToFuProject/tofu/pull/904#issuecomment-1944092433) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#724](https://github.com/OpenFreeEnergy/openfe/pull/724#issuecomment-1943914476) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From df43379743f202a23f5099eaaa610332640c5664 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 15 Feb 2024 12:28:25 +0000 Subject: [PATCH 1441/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1f5f9170..abccd153 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#89](https://github.com/eastgenomics/eris/pull/89#issuecomment-1945748179) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#4458](https://github.com/MDAnalysis/mdanalysis/pull/4458#issuecomment-1945585838) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#804](https://github.com/spacetelescope/webbpsf/pull/804#issuecomment-1945325426) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#3095](https://github.com/reframe-hpc/reframe/pull/3095#issuecomment-1945028294) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -5. 🗣 Commented on [#1482](https://github.com/spacetelescope/jwql/pull/1482#issuecomment-1944516938) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#2782](https://github.com/metabrainz/listenbrainz-server/pull/2782#issuecomment-1944110316) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#904](https://github.com/ToFuProject/tofu/pull/904#issuecomment-1944092433) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#724](https://github.com/OpenFreeEnergy/openfe/pull/724#issuecomment-1943914476) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#24](https://github.com/eastgenomics/themis/pull/24#issuecomment-1945954003) in [eastgenomics/themis](https://github.com/eastgenomics/themis) +2. 🗣 Commented on [#89](https://github.com/eastgenomics/eris/pull/89#issuecomment-1945748179) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#4458](https://github.com/MDAnalysis/mdanalysis/pull/4458#issuecomment-1945585838) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#804](https://github.com/spacetelescope/webbpsf/pull/804#issuecomment-1945325426) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#3095](https://github.com/reframe-hpc/reframe/pull/3095#issuecomment-1945028294) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +6. 🗣 Commented on [#1482](https://github.com/spacetelescope/jwql/pull/1482#issuecomment-1944516938) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +9. 🗣 Commented on [#2782](https://github.com/metabrainz/listenbrainz-server/pull/2782#issuecomment-1944110316) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#904](https://github.com/ToFuProject/tofu/pull/904#issuecomment-1944092433) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From af3bf3e0f18d080b315bcfadc721fbeb9a03d71f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 15 Feb 2024 12:48:59 +0000 Subject: [PATCH 1442/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index abccd153..2b830d90 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#24](https://github.com/eastgenomics/themis/pull/24#issuecomment-1945954003) in [eastgenomics/themis](https://github.com/eastgenomics/themis) -2. 🗣 Commented on [#89](https://github.com/eastgenomics/eris/pull/89#issuecomment-1945748179) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#4458](https://github.com/MDAnalysis/mdanalysis/pull/4458#issuecomment-1945585838) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#804](https://github.com/spacetelescope/webbpsf/pull/804#issuecomment-1945325426) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#3095](https://github.com/reframe-hpc/reframe/pull/3095#issuecomment-1945028294) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -6. 🗣 Commented on [#1482](https://github.com/spacetelescope/jwql/pull/1482#issuecomment-1944516938) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -9. 🗣 Commented on [#2782](https://github.com/metabrainz/listenbrainz-server/pull/2782#issuecomment-1944110316) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#904](https://github.com/ToFuProject/tofu/pull/904#issuecomment-1944092433) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#105](https://github.com/aimclub/BAMT/pull/105#issuecomment-1946006900) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +2. 🗣 Commented on [#24](https://github.com/eastgenomics/themis/pull/24#issuecomment-1945954003) in [eastgenomics/themis](https://github.com/eastgenomics/themis) +3. 🗣 Commented on [#89](https://github.com/eastgenomics/eris/pull/89#issuecomment-1945748179) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#4458](https://github.com/MDAnalysis/mdanalysis/pull/4458#issuecomment-1945585838) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#804](https://github.com/spacetelescope/webbpsf/pull/804#issuecomment-1945325426) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#3095](https://github.com/reframe-hpc/reframe/pull/3095#issuecomment-1945028294) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +7. 🗣 Commented on [#1482](https://github.com/spacetelescope/jwql/pull/1482#issuecomment-1944516938) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +10. 🗣 Commented on [#2782](https://github.com/metabrainz/listenbrainz-server/pull/2782#issuecomment-1944110316) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From e04c0c341b4fe569186b24b4a6d23e9a5de94933 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 15 Feb 2024 18:20:36 +0000 Subject: [PATCH 1443/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2b830d90..3011e96f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#105](https://github.com/aimclub/BAMT/pull/105#issuecomment-1946006900) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -2. 🗣 Commented on [#24](https://github.com/eastgenomics/themis/pull/24#issuecomment-1945954003) in [eastgenomics/themis](https://github.com/eastgenomics/themis) -3. 🗣 Commented on [#89](https://github.com/eastgenomics/eris/pull/89#issuecomment-1945748179) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#4458](https://github.com/MDAnalysis/mdanalysis/pull/4458#issuecomment-1945585838) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#804](https://github.com/spacetelescope/webbpsf/pull/804#issuecomment-1945325426) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#3095](https://github.com/reframe-hpc/reframe/pull/3095#issuecomment-1945028294) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -7. 🗣 Commented on [#1482](https://github.com/spacetelescope/jwql/pull/1482#issuecomment-1944516938) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -10. 🗣 Commented on [#2782](https://github.com/metabrainz/listenbrainz-server/pull/2782#issuecomment-1944110316) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#903](https://github.com/scilus/scilpy/pull/903#issuecomment-1946825015) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#105](https://github.com/aimclub/BAMT/pull/105#issuecomment-1946006900) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +3. 🗣 Commented on [#24](https://github.com/eastgenomics/themis/pull/24#issuecomment-1945954003) in [eastgenomics/themis](https://github.com/eastgenomics/themis) +4. 🗣 Commented on [#89](https://github.com/eastgenomics/eris/pull/89#issuecomment-1945748179) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#4458](https://github.com/MDAnalysis/mdanalysis/pull/4458#issuecomment-1945585838) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#804](https://github.com/spacetelescope/webbpsf/pull/804#issuecomment-1945325426) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +7. 🗣 Commented on [#3095](https://github.com/reframe-hpc/reframe/pull/3095#issuecomment-1945028294) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +8. 🗣 Commented on [#1482](https://github.com/spacetelescope/jwql/pull/1482#issuecomment-1944516938) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) From d94190e4d22254ffdfc8464974267d1ac961e296 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 15 Feb 2024 22:37:20 +0000 Subject: [PATCH 1444/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3011e96f..dea62bb0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#903](https://github.com/scilus/scilpy/pull/903#issuecomment-1946825015) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#105](https://github.com/aimclub/BAMT/pull/105#issuecomment-1946006900) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -3. 🗣 Commented on [#24](https://github.com/eastgenomics/themis/pull/24#issuecomment-1945954003) in [eastgenomics/themis](https://github.com/eastgenomics/themis) -4. 🗣 Commented on [#89](https://github.com/eastgenomics/eris/pull/89#issuecomment-1945748179) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#4458](https://github.com/MDAnalysis/mdanalysis/pull/4458#issuecomment-1945585838) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#804](https://github.com/spacetelescope/webbpsf/pull/804#issuecomment-1945325426) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -7. 🗣 Commented on [#3095](https://github.com/reframe-hpc/reframe/pull/3095#issuecomment-1945028294) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -8. 🗣 Commented on [#1482](https://github.com/spacetelescope/jwql/pull/1482#issuecomment-1944516938) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#803](https://github.com/spacetelescope/webbpsf/pull/803#issuecomment-1944127225) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +1. 🗣 Commented on [#258](https://github.com/casacore/python-casacore/pull/258#issuecomment-1947434160) in [casacore/python-casacore](https://github.com/casacore/python-casacore) +2. 🗣 Commented on [#903](https://github.com/scilus/scilpy/pull/903#issuecomment-1946825015) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#105](https://github.com/aimclub/BAMT/pull/105#issuecomment-1946006900) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +4. 🗣 Commented on [#24](https://github.com/eastgenomics/themis/pull/24#issuecomment-1945954003) in [eastgenomics/themis](https://github.com/eastgenomics/themis) +5. 🗣 Commented on [#89](https://github.com/eastgenomics/eris/pull/89#issuecomment-1945748179) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#4458](https://github.com/MDAnalysis/mdanalysis/pull/4458#issuecomment-1945585838) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#804](https://github.com/spacetelescope/webbpsf/pull/804#issuecomment-1945325426) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#3095](https://github.com/reframe-hpc/reframe/pull/3095#issuecomment-1945028294) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +9. 🗣 Commented on [#1482](https://github.com/spacetelescope/jwql/pull/1482#issuecomment-1944516938) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 834e69b8ad9e6bb4c452d51f5848a47c3ff903ae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Feb 2024 08:19:27 +0000 Subject: [PATCH 1445/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dea62bb0..679a37c8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#258](https://github.com/casacore/python-casacore/pull/258#issuecomment-1947434160) in [casacore/python-casacore](https://github.com/casacore/python-casacore) -2. 🗣 Commented on [#903](https://github.com/scilus/scilpy/pull/903#issuecomment-1946825015) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#105](https://github.com/aimclub/BAMT/pull/105#issuecomment-1946006900) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -4. 🗣 Commented on [#24](https://github.com/eastgenomics/themis/pull/24#issuecomment-1945954003) in [eastgenomics/themis](https://github.com/eastgenomics/themis) -5. 🗣 Commented on [#89](https://github.com/eastgenomics/eris/pull/89#issuecomment-1945748179) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#4458](https://github.com/MDAnalysis/mdanalysis/pull/4458#issuecomment-1945585838) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#804](https://github.com/spacetelescope/webbpsf/pull/804#issuecomment-1945325426) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#3095](https://github.com/reframe-hpc/reframe/pull/3095#issuecomment-1945028294) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -9. 🗣 Commented on [#1482](https://github.com/spacetelescope/jwql/pull/1482#issuecomment-1944516938) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#21804](https://github.com/spyder-ide/spyder/pull/21804#issuecomment-1944177368) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#729](https://github.com/OpenFreeEnergy/openfe/pull/729#issuecomment-1947935649) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#526](https://github.com/bengosney/isitbinday/pull/526#issuecomment-1947927536) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +3. 🗣 Commented on [#258](https://github.com/casacore/python-casacore/pull/258#issuecomment-1947434160) in [casacore/python-casacore](https://github.com/casacore/python-casacore) +4. 🗣 Commented on [#903](https://github.com/scilus/scilpy/pull/903#issuecomment-1946825015) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#105](https://github.com/aimclub/BAMT/pull/105#issuecomment-1946006900) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +6. 🗣 Commented on [#24](https://github.com/eastgenomics/themis/pull/24#issuecomment-1945954003) in [eastgenomics/themis](https://github.com/eastgenomics/themis) +7. 🗣 Commented on [#89](https://github.com/eastgenomics/eris/pull/89#issuecomment-1945748179) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#4458](https://github.com/MDAnalysis/mdanalysis/pull/4458#issuecomment-1945585838) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#804](https://github.com/spacetelescope/webbpsf/pull/804#issuecomment-1945325426) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +10. 🗣 Commented on [#3095](https://github.com/reframe-hpc/reframe/pull/3095#issuecomment-1945028294) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) From c892c752147ad9ffa56d0dcec4684da393c6cdbc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Feb 2024 10:17:36 +0000 Subject: [PATCH 1446/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 679a37c8..c5258243 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#729](https://github.com/OpenFreeEnergy/openfe/pull/729#issuecomment-1947935649) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#526](https://github.com/bengosney/isitbinday/pull/526#issuecomment-1947927536) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) -3. 🗣 Commented on [#258](https://github.com/casacore/python-casacore/pull/258#issuecomment-1947434160) in [casacore/python-casacore](https://github.com/casacore/python-casacore) -4. 🗣 Commented on [#903](https://github.com/scilus/scilpy/pull/903#issuecomment-1946825015) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#105](https://github.com/aimclub/BAMT/pull/105#issuecomment-1946006900) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -6. 🗣 Commented on [#24](https://github.com/eastgenomics/themis/pull/24#issuecomment-1945954003) in [eastgenomics/themis](https://github.com/eastgenomics/themis) -7. 🗣 Commented on [#89](https://github.com/eastgenomics/eris/pull/89#issuecomment-1945748179) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#4458](https://github.com/MDAnalysis/mdanalysis/pull/4458#issuecomment-1945585838) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#804](https://github.com/spacetelescope/webbpsf/pull/804#issuecomment-1945325426) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -10. 🗣 Commented on [#3095](https://github.com/reframe-hpc/reframe/pull/3095#issuecomment-1945028294) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +1. 🗣 Commented on [#6](https://github.com/eastgenomics/gene_annotation2bed/pull/6#issuecomment-1948074019) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +2. 🗣 Commented on [#729](https://github.com/OpenFreeEnergy/openfe/pull/729#issuecomment-1947935649) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#526](https://github.com/bengosney/isitbinday/pull/526#issuecomment-1947927536) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +4. 🗣 Commented on [#258](https://github.com/casacore/python-casacore/pull/258#issuecomment-1947434160) in [casacore/python-casacore](https://github.com/casacore/python-casacore) +5. 🗣 Commented on [#903](https://github.com/scilus/scilpy/pull/903#issuecomment-1946825015) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#105](https://github.com/aimclub/BAMT/pull/105#issuecomment-1946006900) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +7. 🗣 Commented on [#24](https://github.com/eastgenomics/themis/pull/24#issuecomment-1945954003) in [eastgenomics/themis](https://github.com/eastgenomics/themis) +8. 🗣 Commented on [#89](https://github.com/eastgenomics/eris/pull/89#issuecomment-1945748179) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#4458](https://github.com/MDAnalysis/mdanalysis/pull/4458#issuecomment-1945585838) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#804](https://github.com/spacetelescope/webbpsf/pull/804#issuecomment-1945325426) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) From fe84ca6e54edaf2f2c9d75bdd44dfbeb93bfd900 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Feb 2024 10:37:07 +0000 Subject: [PATCH 1447/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c5258243..bf621d8c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#6](https://github.com/eastgenomics/gene_annotation2bed/pull/6#issuecomment-1948074019) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -2. 🗣 Commented on [#729](https://github.com/OpenFreeEnergy/openfe/pull/729#issuecomment-1947935649) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#526](https://github.com/bengosney/isitbinday/pull/526#issuecomment-1947927536) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) -4. 🗣 Commented on [#258](https://github.com/casacore/python-casacore/pull/258#issuecomment-1947434160) in [casacore/python-casacore](https://github.com/casacore/python-casacore) -5. 🗣 Commented on [#903](https://github.com/scilus/scilpy/pull/903#issuecomment-1946825015) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#105](https://github.com/aimclub/BAMT/pull/105#issuecomment-1946006900) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -7. 🗣 Commented on [#24](https://github.com/eastgenomics/themis/pull/24#issuecomment-1945954003) in [eastgenomics/themis](https://github.com/eastgenomics/themis) -8. 🗣 Commented on [#89](https://github.com/eastgenomics/eris/pull/89#issuecomment-1945748179) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#4458](https://github.com/MDAnalysis/mdanalysis/pull/4458#issuecomment-1945585838) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#804](https://github.com/spacetelescope/webbpsf/pull/804#issuecomment-1945325426) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +1. 🗣 Commented on [#130](https://github.com/mattpitkin/psrqpy/pull/130#issuecomment-1948117156) in [mattpitkin/psrqpy](https://github.com/mattpitkin/psrqpy) +2. 🗣 Commented on [#6](https://github.com/eastgenomics/gene_annotation2bed/pull/6#issuecomment-1948074019) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +3. 🗣 Commented on [#729](https://github.com/OpenFreeEnergy/openfe/pull/729#issuecomment-1947935649) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#526](https://github.com/bengosney/isitbinday/pull/526#issuecomment-1947927536) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +5. 🗣 Commented on [#258](https://github.com/casacore/python-casacore/pull/258#issuecomment-1947434160) in [casacore/python-casacore](https://github.com/casacore/python-casacore) +6. 🗣 Commented on [#903](https://github.com/scilus/scilpy/pull/903#issuecomment-1946825015) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#105](https://github.com/aimclub/BAMT/pull/105#issuecomment-1946006900) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +8. 🗣 Commented on [#24](https://github.com/eastgenomics/themis/pull/24#issuecomment-1945954003) in [eastgenomics/themis](https://github.com/eastgenomics/themis) +9. 🗣 Commented on [#89](https://github.com/eastgenomics/eris/pull/89#issuecomment-1945748179) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#4458](https://github.com/MDAnalysis/mdanalysis/pull/4458#issuecomment-1945585838) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 36af7d8cc2a9f1356accfc75ea8e9175ed07f566 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Feb 2024 12:28:26 +0000 Subject: [PATCH 1448/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bf621d8c..a487e43a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#130](https://github.com/mattpitkin/psrqpy/pull/130#issuecomment-1948117156) in [mattpitkin/psrqpy](https://github.com/mattpitkin/psrqpy) -2. 🗣 Commented on [#6](https://github.com/eastgenomics/gene_annotation2bed/pull/6#issuecomment-1948074019) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -3. 🗣 Commented on [#729](https://github.com/OpenFreeEnergy/openfe/pull/729#issuecomment-1947935649) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#526](https://github.com/bengosney/isitbinday/pull/526#issuecomment-1947927536) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) -5. 🗣 Commented on [#258](https://github.com/casacore/python-casacore/pull/258#issuecomment-1947434160) in [casacore/python-casacore](https://github.com/casacore/python-casacore) -6. 🗣 Commented on [#903](https://github.com/scilus/scilpy/pull/903#issuecomment-1946825015) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#105](https://github.com/aimclub/BAMT/pull/105#issuecomment-1946006900) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -8. 🗣 Commented on [#24](https://github.com/eastgenomics/themis/pull/24#issuecomment-1945954003) in [eastgenomics/themis](https://github.com/eastgenomics/themis) -9. 🗣 Commented on [#89](https://github.com/eastgenomics/eris/pull/89#issuecomment-1945748179) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#4458](https://github.com/MDAnalysis/mdanalysis/pull/4458#issuecomment-1945585838) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#3864](https://github.com/privacyidea/privacyidea/pull/3864#issuecomment-1948243684) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#130](https://github.com/mattpitkin/psrqpy/pull/130#issuecomment-1948117156) in [mattpitkin/psrqpy](https://github.com/mattpitkin/psrqpy) +3. 🗣 Commented on [#6](https://github.com/eastgenomics/gene_annotation2bed/pull/6#issuecomment-1948074019) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +4. 🗣 Commented on [#729](https://github.com/OpenFreeEnergy/openfe/pull/729#issuecomment-1947935649) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#526](https://github.com/bengosney/isitbinday/pull/526#issuecomment-1947927536) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +6. 🗣 Commented on [#258](https://github.com/casacore/python-casacore/pull/258#issuecomment-1947434160) in [casacore/python-casacore](https://github.com/casacore/python-casacore) +7. 🗣 Commented on [#903](https://github.com/scilus/scilpy/pull/903#issuecomment-1946825015) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#105](https://github.com/aimclub/BAMT/pull/105#issuecomment-1946006900) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +9. 🗣 Commented on [#24](https://github.com/eastgenomics/themis/pull/24#issuecomment-1945954003) in [eastgenomics/themis](https://github.com/eastgenomics/themis) +10. 🗣 Commented on [#89](https://github.com/eastgenomics/eris/pull/89#issuecomment-1945748179) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 8f7b85e7d0db798ff2a121bac670d9e4d78f0ac8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Feb 2024 12:49:01 +0000 Subject: [PATCH 1449/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a487e43a..e2cc2e21 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3864](https://github.com/privacyidea/privacyidea/pull/3864#issuecomment-1948243684) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#130](https://github.com/mattpitkin/psrqpy/pull/130#issuecomment-1948117156) in [mattpitkin/psrqpy](https://github.com/mattpitkin/psrqpy) -3. 🗣 Commented on [#6](https://github.com/eastgenomics/gene_annotation2bed/pull/6#issuecomment-1948074019) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -4. 🗣 Commented on [#729](https://github.com/OpenFreeEnergy/openfe/pull/729#issuecomment-1947935649) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#526](https://github.com/bengosney/isitbinday/pull/526#issuecomment-1947927536) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) -6. 🗣 Commented on [#258](https://github.com/casacore/python-casacore/pull/258#issuecomment-1947434160) in [casacore/python-casacore](https://github.com/casacore/python-casacore) -7. 🗣 Commented on [#903](https://github.com/scilus/scilpy/pull/903#issuecomment-1946825015) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#105](https://github.com/aimclub/BAMT/pull/105#issuecomment-1946006900) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -9. 🗣 Commented on [#24](https://github.com/eastgenomics/themis/pull/24#issuecomment-1945954003) in [eastgenomics/themis](https://github.com/eastgenomics/themis) -10. 🗣 Commented on [#89](https://github.com/eastgenomics/eris/pull/89#issuecomment-1945748179) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#172](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/172#issuecomment-1948327157) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +2. 🗣 Commented on [#3864](https://github.com/privacyidea/privacyidea/pull/3864#issuecomment-1948243684) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#130](https://github.com/mattpitkin/psrqpy/pull/130#issuecomment-1948117156) in [mattpitkin/psrqpy](https://github.com/mattpitkin/psrqpy) +4. 🗣 Commented on [#6](https://github.com/eastgenomics/gene_annotation2bed/pull/6#issuecomment-1948074019) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +5. 🗣 Commented on [#729](https://github.com/OpenFreeEnergy/openfe/pull/729#issuecomment-1947935649) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#526](https://github.com/bengosney/isitbinday/pull/526#issuecomment-1947927536) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +7. 🗣 Commented on [#258](https://github.com/casacore/python-casacore/pull/258#issuecomment-1947434160) in [casacore/python-casacore](https://github.com/casacore/python-casacore) +8. 🗣 Commented on [#903](https://github.com/scilus/scilpy/pull/903#issuecomment-1946825015) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#105](https://github.com/aimclub/BAMT/pull/105#issuecomment-1946006900) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +10. 🗣 Commented on [#24](https://github.com/eastgenomics/themis/pull/24#issuecomment-1945954003) in [eastgenomics/themis](https://github.com/eastgenomics/themis) From 84028b522519a9492fbbbbf8a8fa955ea45c988f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Feb 2024 14:14:47 +0000 Subject: [PATCH 1450/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e2cc2e21..80a2cc9f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#172](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/172#issuecomment-1948327157) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -2. 🗣 Commented on [#3864](https://github.com/privacyidea/privacyidea/pull/3864#issuecomment-1948243684) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#130](https://github.com/mattpitkin/psrqpy/pull/130#issuecomment-1948117156) in [mattpitkin/psrqpy](https://github.com/mattpitkin/psrqpy) -4. 🗣 Commented on [#6](https://github.com/eastgenomics/gene_annotation2bed/pull/6#issuecomment-1948074019) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -5. 🗣 Commented on [#729](https://github.com/OpenFreeEnergy/openfe/pull/729#issuecomment-1947935649) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#526](https://github.com/bengosney/isitbinday/pull/526#issuecomment-1947927536) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) -7. 🗣 Commented on [#258](https://github.com/casacore/python-casacore/pull/258#issuecomment-1947434160) in [casacore/python-casacore](https://github.com/casacore/python-casacore) -8. 🗣 Commented on [#903](https://github.com/scilus/scilpy/pull/903#issuecomment-1946825015) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#105](https://github.com/aimclub/BAMT/pull/105#issuecomment-1946006900) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -10. 🗣 Commented on [#24](https://github.com/eastgenomics/themis/pull/24#issuecomment-1945954003) in [eastgenomics/themis](https://github.com/eastgenomics/themis) +1. 🗣 Commented on [#1670](https://github.com/zarr-developers/zarr-python/pull/1670#issuecomment-1948412220) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +2. 🗣 Commented on [#172](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/172#issuecomment-1948327157) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +3. 🗣 Commented on [#3864](https://github.com/privacyidea/privacyidea/pull/3864#issuecomment-1948243684) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +4. 🗣 Commented on [#130](https://github.com/mattpitkin/psrqpy/pull/130#issuecomment-1948117156) in [mattpitkin/psrqpy](https://github.com/mattpitkin/psrqpy) +5. 🗣 Commented on [#6](https://github.com/eastgenomics/gene_annotation2bed/pull/6#issuecomment-1948074019) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +6. 🗣 Commented on [#729](https://github.com/OpenFreeEnergy/openfe/pull/729#issuecomment-1947935649) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#526](https://github.com/bengosney/isitbinday/pull/526#issuecomment-1947927536) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +8. 🗣 Commented on [#258](https://github.com/casacore/python-casacore/pull/258#issuecomment-1947434160) in [casacore/python-casacore](https://github.com/casacore/python-casacore) +9. 🗣 Commented on [#903](https://github.com/scilus/scilpy/pull/903#issuecomment-1946825015) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#105](https://github.com/aimclub/BAMT/pull/105#issuecomment-1946006900) in [aimclub/BAMT](https://github.com/aimclub/BAMT) From a685fcaae836b036d3a13ee5fd38e118fb8438e1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Feb 2024 14:37:08 +0000 Subject: [PATCH 1451/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 80a2cc9f..0689946a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1670](https://github.com/zarr-developers/zarr-python/pull/1670#issuecomment-1948412220) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -2. 🗣 Commented on [#172](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/172#issuecomment-1948327157) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -3. 🗣 Commented on [#3864](https://github.com/privacyidea/privacyidea/pull/3864#issuecomment-1948243684) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -4. 🗣 Commented on [#130](https://github.com/mattpitkin/psrqpy/pull/130#issuecomment-1948117156) in [mattpitkin/psrqpy](https://github.com/mattpitkin/psrqpy) -5. 🗣 Commented on [#6](https://github.com/eastgenomics/gene_annotation2bed/pull/6#issuecomment-1948074019) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -6. 🗣 Commented on [#729](https://github.com/OpenFreeEnergy/openfe/pull/729#issuecomment-1947935649) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#526](https://github.com/bengosney/isitbinday/pull/526#issuecomment-1947927536) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) -8. 🗣 Commented on [#258](https://github.com/casacore/python-casacore/pull/258#issuecomment-1947434160) in [casacore/python-casacore](https://github.com/casacore/python-casacore) -9. 🗣 Commented on [#903](https://github.com/scilus/scilpy/pull/903#issuecomment-1946825015) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#105](https://github.com/aimclub/BAMT/pull/105#issuecomment-1946006900) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +1. 🗣 Commented on [#67](https://github.com/eastgenomics/trendyQC/pull/67#issuecomment-1948478047) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +2. 🗣 Commented on [#1670](https://github.com/zarr-developers/zarr-python/pull/1670#issuecomment-1948412220) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +3. 🗣 Commented on [#172](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/172#issuecomment-1948327157) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +4. 🗣 Commented on [#3864](https://github.com/privacyidea/privacyidea/pull/3864#issuecomment-1948243684) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#130](https://github.com/mattpitkin/psrqpy/pull/130#issuecomment-1948117156) in [mattpitkin/psrqpy](https://github.com/mattpitkin/psrqpy) +6. 🗣 Commented on [#6](https://github.com/eastgenomics/gene_annotation2bed/pull/6#issuecomment-1948074019) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +7. 🗣 Commented on [#729](https://github.com/OpenFreeEnergy/openfe/pull/729#issuecomment-1947935649) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#526](https://github.com/bengosney/isitbinday/pull/526#issuecomment-1947927536) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +9. 🗣 Commented on [#258](https://github.com/casacore/python-casacore/pull/258#issuecomment-1947434160) in [casacore/python-casacore](https://github.com/casacore/python-casacore) +10. 🗣 Commented on [#903](https://github.com/scilus/scilpy/pull/903#issuecomment-1946825015) in [scilus/scilpy](https://github.com/scilus/scilpy) From 04b9ba8e314e764195e86630e386caab2f265364 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Feb 2024 15:16:35 +0000 Subject: [PATCH 1452/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0689946a..c17a6064 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#67](https://github.com/eastgenomics/trendyQC/pull/67#issuecomment-1948478047) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -2. 🗣 Commented on [#1670](https://github.com/zarr-developers/zarr-python/pull/1670#issuecomment-1948412220) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -3. 🗣 Commented on [#172](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/172#issuecomment-1948327157) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -4. 🗣 Commented on [#3864](https://github.com/privacyidea/privacyidea/pull/3864#issuecomment-1948243684) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#130](https://github.com/mattpitkin/psrqpy/pull/130#issuecomment-1948117156) in [mattpitkin/psrqpy](https://github.com/mattpitkin/psrqpy) -6. 🗣 Commented on [#6](https://github.com/eastgenomics/gene_annotation2bed/pull/6#issuecomment-1948074019) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -7. 🗣 Commented on [#729](https://github.com/OpenFreeEnergy/openfe/pull/729#issuecomment-1947935649) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#526](https://github.com/bengosney/isitbinday/pull/526#issuecomment-1947927536) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) -9. 🗣 Commented on [#258](https://github.com/casacore/python-casacore/pull/258#issuecomment-1947434160) in [casacore/python-casacore](https://github.com/casacore/python-casacore) -10. 🗣 Commented on [#903](https://github.com/scilus/scilpy/pull/903#issuecomment-1946825015) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#90](https://github.com/eastgenomics/eris/pull/90#issuecomment-1948536482) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#67](https://github.com/eastgenomics/trendyQC/pull/67#issuecomment-1948478047) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +3. 🗣 Commented on [#1670](https://github.com/zarr-developers/zarr-python/pull/1670#issuecomment-1948412220) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +4. 🗣 Commented on [#172](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/172#issuecomment-1948327157) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +5. 🗣 Commented on [#3864](https://github.com/privacyidea/privacyidea/pull/3864#issuecomment-1948243684) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#130](https://github.com/mattpitkin/psrqpy/pull/130#issuecomment-1948117156) in [mattpitkin/psrqpy](https://github.com/mattpitkin/psrqpy) +7. 🗣 Commented on [#6](https://github.com/eastgenomics/gene_annotation2bed/pull/6#issuecomment-1948074019) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +8. 🗣 Commented on [#729](https://github.com/OpenFreeEnergy/openfe/pull/729#issuecomment-1947935649) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#526](https://github.com/bengosney/isitbinday/pull/526#issuecomment-1947927536) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +10. 🗣 Commented on [#258](https://github.com/casacore/python-casacore/pull/258#issuecomment-1947434160) in [casacore/python-casacore](https://github.com/casacore/python-casacore) From 43e6b61480bde9dbb4c032f9bf849ec2d765ce4a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Feb 2024 15:37:04 +0000 Subject: [PATCH 1453/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c17a6064..d5b05736 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#90](https://github.com/eastgenomics/eris/pull/90#issuecomment-1948536482) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#67](https://github.com/eastgenomics/trendyQC/pull/67#issuecomment-1948478047) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -3. 🗣 Commented on [#1670](https://github.com/zarr-developers/zarr-python/pull/1670#issuecomment-1948412220) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -4. 🗣 Commented on [#172](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/172#issuecomment-1948327157) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -5. 🗣 Commented on [#3864](https://github.com/privacyidea/privacyidea/pull/3864#issuecomment-1948243684) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#130](https://github.com/mattpitkin/psrqpy/pull/130#issuecomment-1948117156) in [mattpitkin/psrqpy](https://github.com/mattpitkin/psrqpy) -7. 🗣 Commented on [#6](https://github.com/eastgenomics/gene_annotation2bed/pull/6#issuecomment-1948074019) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -8. 🗣 Commented on [#729](https://github.com/OpenFreeEnergy/openfe/pull/729#issuecomment-1947935649) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#526](https://github.com/bengosney/isitbinday/pull/526#issuecomment-1947927536) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) -10. 🗣 Commented on [#258](https://github.com/casacore/python-casacore/pull/258#issuecomment-1947434160) in [casacore/python-casacore](https://github.com/casacore/python-casacore) +1. 🗣 Commented on [#4](https://github.com/normcontrol/Document-Generators/pull/4#issuecomment-1948594566) in [normcontrol/Document-Generators](https://github.com/normcontrol/Document-Generators) +2. 🗣 Commented on [#1054](https://github.com/oemof/oemof-solph/pull/1054#issuecomment-1948592146) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +3. 🗣 Commented on [#90](https://github.com/eastgenomics/eris/pull/90#issuecomment-1948536482) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#67](https://github.com/eastgenomics/trendyQC/pull/67#issuecomment-1948478047) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +5. 🗣 Commented on [#1670](https://github.com/zarr-developers/zarr-python/pull/1670#issuecomment-1948412220) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +6. 🗣 Commented on [#172](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/172#issuecomment-1948327157) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +7. 🗣 Commented on [#3864](https://github.com/privacyidea/privacyidea/pull/3864#issuecomment-1948243684) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#130](https://github.com/mattpitkin/psrqpy/pull/130#issuecomment-1948117156) in [mattpitkin/psrqpy](https://github.com/mattpitkin/psrqpy) +9. 🗣 Commented on [#6](https://github.com/eastgenomics/gene_annotation2bed/pull/6#issuecomment-1948074019) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +10. 🗣 Commented on [#729](https://github.com/OpenFreeEnergy/openfe/pull/729#issuecomment-1947935649) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From f16afcc53459f62b4a959008e6caf1fda78a10a2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Feb 2024 16:38:48 +0000 Subject: [PATCH 1454/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d5b05736..1b52fc99 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4](https://github.com/normcontrol/Document-Generators/pull/4#issuecomment-1948594566) in [normcontrol/Document-Generators](https://github.com/normcontrol/Document-Generators) -2. 🗣 Commented on [#1054](https://github.com/oemof/oemof-solph/pull/1054#issuecomment-1948592146) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -3. 🗣 Commented on [#90](https://github.com/eastgenomics/eris/pull/90#issuecomment-1948536482) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#67](https://github.com/eastgenomics/trendyQC/pull/67#issuecomment-1948478047) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -5. 🗣 Commented on [#1670](https://github.com/zarr-developers/zarr-python/pull/1670#issuecomment-1948412220) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -6. 🗣 Commented on [#172](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/172#issuecomment-1948327157) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -7. 🗣 Commented on [#3864](https://github.com/privacyidea/privacyidea/pull/3864#issuecomment-1948243684) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#130](https://github.com/mattpitkin/psrqpy/pull/130#issuecomment-1948117156) in [mattpitkin/psrqpy](https://github.com/mattpitkin/psrqpy) -9. 🗣 Commented on [#6](https://github.com/eastgenomics/gene_annotation2bed/pull/6#issuecomment-1948074019) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -10. 🗣 Commented on [#729](https://github.com/OpenFreeEnergy/openfe/pull/729#issuecomment-1947935649) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#732](https://github.com/OpenFreeEnergy/openfe/pull/732#issuecomment-1948837039) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#4](https://github.com/normcontrol/Document-Generators/pull/4#issuecomment-1948594566) in [normcontrol/Document-Generators](https://github.com/normcontrol/Document-Generators) +3. 🗣 Commented on [#1054](https://github.com/oemof/oemof-solph/pull/1054#issuecomment-1948592146) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +4. 🗣 Commented on [#90](https://github.com/eastgenomics/eris/pull/90#issuecomment-1948536482) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#67](https://github.com/eastgenomics/trendyQC/pull/67#issuecomment-1948478047) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +6. 🗣 Commented on [#1670](https://github.com/zarr-developers/zarr-python/pull/1670#issuecomment-1948412220) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +7. 🗣 Commented on [#172](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/172#issuecomment-1948327157) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +8. 🗣 Commented on [#3864](https://github.com/privacyidea/privacyidea/pull/3864#issuecomment-1948243684) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#130](https://github.com/mattpitkin/psrqpy/pull/130#issuecomment-1948117156) in [mattpitkin/psrqpy](https://github.com/mattpitkin/psrqpy) +10. 🗣 Commented on [#6](https://github.com/eastgenomics/gene_annotation2bed/pull/6#issuecomment-1948074019) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) From fc04921defbae11b000bb95a4cbaf444943ea9cc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Feb 2024 20:15:49 +0000 Subject: [PATCH 1455/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1b52fc99..fb9891d0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#732](https://github.com/OpenFreeEnergy/openfe/pull/732#issuecomment-1948837039) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#4](https://github.com/normcontrol/Document-Generators/pull/4#issuecomment-1948594566) in [normcontrol/Document-Generators](https://github.com/normcontrol/Document-Generators) -3. 🗣 Commented on [#1054](https://github.com/oemof/oemof-solph/pull/1054#issuecomment-1948592146) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -4. 🗣 Commented on [#90](https://github.com/eastgenomics/eris/pull/90#issuecomment-1948536482) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#67](https://github.com/eastgenomics/trendyQC/pull/67#issuecomment-1948478047) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -6. 🗣 Commented on [#1670](https://github.com/zarr-developers/zarr-python/pull/1670#issuecomment-1948412220) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -7. 🗣 Commented on [#172](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/172#issuecomment-1948327157) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -8. 🗣 Commented on [#3864](https://github.com/privacyidea/privacyidea/pull/3864#issuecomment-1948243684) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#130](https://github.com/mattpitkin/psrqpy/pull/130#issuecomment-1948117156) in [mattpitkin/psrqpy](https://github.com/mattpitkin/psrqpy) -10. 🗣 Commented on [#6](https://github.com/eastgenomics/gene_annotation2bed/pull/6#issuecomment-1948074019) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +1. 🗣 Commented on [#1335](https://github.com/rpm-software-management/mock/pull/1335#issuecomment-1949245129) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +2. 🗣 Commented on [#732](https://github.com/OpenFreeEnergy/openfe/pull/732#issuecomment-1948837039) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#4](https://github.com/normcontrol/Document-Generators/pull/4#issuecomment-1948594566) in [normcontrol/Document-Generators](https://github.com/normcontrol/Document-Generators) +4. 🗣 Commented on [#1054](https://github.com/oemof/oemof-solph/pull/1054#issuecomment-1948592146) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +5. 🗣 Commented on [#90](https://github.com/eastgenomics/eris/pull/90#issuecomment-1948536482) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#67](https://github.com/eastgenomics/trendyQC/pull/67#issuecomment-1948478047) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +7. 🗣 Commented on [#1670](https://github.com/zarr-developers/zarr-python/pull/1670#issuecomment-1948412220) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +8. 🗣 Commented on [#172](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/172#issuecomment-1948327157) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +9. 🗣 Commented on [#3864](https://github.com/privacyidea/privacyidea/pull/3864#issuecomment-1948243684) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#130](https://github.com/mattpitkin/psrqpy/pull/130#issuecomment-1948117156) in [mattpitkin/psrqpy](https://github.com/mattpitkin/psrqpy) From a5c247bdde8df9e4e86bb5f286d401544aef3e22 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 10:15:04 +0000 Subject: [PATCH 1456/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fb9891d0..b10fcdb7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1335](https://github.com/rpm-software-management/mock/pull/1335#issuecomment-1949245129) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -2. 🗣 Commented on [#732](https://github.com/OpenFreeEnergy/openfe/pull/732#issuecomment-1948837039) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#4](https://github.com/normcontrol/Document-Generators/pull/4#issuecomment-1948594566) in [normcontrol/Document-Generators](https://github.com/normcontrol/Document-Generators) -4. 🗣 Commented on [#1054](https://github.com/oemof/oemof-solph/pull/1054#issuecomment-1948592146) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -5. 🗣 Commented on [#90](https://github.com/eastgenomics/eris/pull/90#issuecomment-1948536482) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#67](https://github.com/eastgenomics/trendyQC/pull/67#issuecomment-1948478047) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -7. 🗣 Commented on [#1670](https://github.com/zarr-developers/zarr-python/pull/1670#issuecomment-1948412220) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -8. 🗣 Commented on [#172](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/172#issuecomment-1948327157) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -9. 🗣 Commented on [#3864](https://github.com/privacyidea/privacyidea/pull/3864#issuecomment-1948243684) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#130](https://github.com/mattpitkin/psrqpy/pull/130#issuecomment-1948117156) in [mattpitkin/psrqpy](https://github.com/mattpitkin/psrqpy) +1. 🗣 Commented on [#4459](https://github.com/MDAnalysis/mdanalysis/pull/4459#issuecomment-1949923593) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#1335](https://github.com/rpm-software-management/mock/pull/1335#issuecomment-1949245129) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +3. 🗣 Commented on [#732](https://github.com/OpenFreeEnergy/openfe/pull/732#issuecomment-1948837039) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#4](https://github.com/normcontrol/Document-Generators/pull/4#issuecomment-1948594566) in [normcontrol/Document-Generators](https://github.com/normcontrol/Document-Generators) +5. 🗣 Commented on [#1054](https://github.com/oemof/oemof-solph/pull/1054#issuecomment-1948592146) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +6. 🗣 Commented on [#90](https://github.com/eastgenomics/eris/pull/90#issuecomment-1948536482) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#67](https://github.com/eastgenomics/trendyQC/pull/67#issuecomment-1948478047) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +8. 🗣 Commented on [#1670](https://github.com/zarr-developers/zarr-python/pull/1670#issuecomment-1948412220) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +9. 🗣 Commented on [#172](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/172#issuecomment-1948327157) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +10. 🗣 Commented on [#3864](https://github.com/privacyidea/privacyidea/pull/3864#issuecomment-1948243684) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From 6622506ab4a7a34ccaa2d402f3dd446eb48d7017 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 12:45:49 +0000 Subject: [PATCH 1457/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b10fcdb7..606dff8c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4459](https://github.com/MDAnalysis/mdanalysis/pull/4459#issuecomment-1949923593) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#1335](https://github.com/rpm-software-management/mock/pull/1335#issuecomment-1949245129) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -3. 🗣 Commented on [#732](https://github.com/OpenFreeEnergy/openfe/pull/732#issuecomment-1948837039) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#4](https://github.com/normcontrol/Document-Generators/pull/4#issuecomment-1948594566) in [normcontrol/Document-Generators](https://github.com/normcontrol/Document-Generators) -5. 🗣 Commented on [#1054](https://github.com/oemof/oemof-solph/pull/1054#issuecomment-1948592146) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -6. 🗣 Commented on [#90](https://github.com/eastgenomics/eris/pull/90#issuecomment-1948536482) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#67](https://github.com/eastgenomics/trendyQC/pull/67#issuecomment-1948478047) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -8. 🗣 Commented on [#1670](https://github.com/zarr-developers/zarr-python/pull/1670#issuecomment-1948412220) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -9. 🗣 Commented on [#172](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/172#issuecomment-1948327157) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -10. 🗣 Commented on [#3864](https://github.com/privacyidea/privacyidea/pull/3864#issuecomment-1948243684) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#254](https://github.com/CartoonFan/lutris/pull/254#issuecomment-1950044040) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#4459](https://github.com/MDAnalysis/mdanalysis/pull/4459#issuecomment-1949923593) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#1335](https://github.com/rpm-software-management/mock/pull/1335#issuecomment-1949245129) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +4. 🗣 Commented on [#732](https://github.com/OpenFreeEnergy/openfe/pull/732#issuecomment-1948837039) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#4](https://github.com/normcontrol/Document-Generators/pull/4#issuecomment-1948594566) in [normcontrol/Document-Generators](https://github.com/normcontrol/Document-Generators) +6. 🗣 Commented on [#1054](https://github.com/oemof/oemof-solph/pull/1054#issuecomment-1948592146) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +7. 🗣 Commented on [#90](https://github.com/eastgenomics/eris/pull/90#issuecomment-1948536482) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#67](https://github.com/eastgenomics/trendyQC/pull/67#issuecomment-1948478047) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +9. 🗣 Commented on [#1670](https://github.com/zarr-developers/zarr-python/pull/1670#issuecomment-1948412220) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +10. 🗣 Commented on [#172](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/172#issuecomment-1948327157) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) From eb0a5f93430d248a24199a4759c48fccf729c99a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 18 Feb 2024 04:18:03 +0000 Subject: [PATCH 1458/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 606dff8c..09b532bc 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#254](https://github.com/CartoonFan/lutris/pull/254#issuecomment-1950044040) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#4459](https://github.com/MDAnalysis/mdanalysis/pull/4459#issuecomment-1949923593) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#1335](https://github.com/rpm-software-management/mock/pull/1335#issuecomment-1949245129) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -4. 🗣 Commented on [#732](https://github.com/OpenFreeEnergy/openfe/pull/732#issuecomment-1948837039) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#4](https://github.com/normcontrol/Document-Generators/pull/4#issuecomment-1948594566) in [normcontrol/Document-Generators](https://github.com/normcontrol/Document-Generators) -6. 🗣 Commented on [#1054](https://github.com/oemof/oemof-solph/pull/1054#issuecomment-1948592146) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -7. 🗣 Commented on [#90](https://github.com/eastgenomics/eris/pull/90#issuecomment-1948536482) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#67](https://github.com/eastgenomics/trendyQC/pull/67#issuecomment-1948478047) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -9. 🗣 Commented on [#1670](https://github.com/zarr-developers/zarr-python/pull/1670#issuecomment-1948412220) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -10. 🗣 Commented on [#172](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/172#issuecomment-1948327157) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +1. 🗣 Commented on [#255](https://github.com/CartoonFan/lutris/pull/255#issuecomment-1950919364) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#254](https://github.com/CartoonFan/lutris/pull/254#issuecomment-1950044040) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#4459](https://github.com/MDAnalysis/mdanalysis/pull/4459#issuecomment-1949923593) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#1335](https://github.com/rpm-software-management/mock/pull/1335#issuecomment-1949245129) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +5. 🗣 Commented on [#732](https://github.com/OpenFreeEnergy/openfe/pull/732#issuecomment-1948837039) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#4](https://github.com/normcontrol/Document-Generators/pull/4#issuecomment-1948594566) in [normcontrol/Document-Generators](https://github.com/normcontrol/Document-Generators) +7. 🗣 Commented on [#1054](https://github.com/oemof/oemof-solph/pull/1054#issuecomment-1948592146) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +8. 🗣 Commented on [#90](https://github.com/eastgenomics/eris/pull/90#issuecomment-1948536482) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#67](https://github.com/eastgenomics/trendyQC/pull/67#issuecomment-1948478047) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +10. 🗣 Commented on [#1670](https://github.com/zarr-developers/zarr-python/pull/1670#issuecomment-1948412220) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) From e4f16bfb4da1022e023d29ff179f5128ae7330fa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 18 Feb 2024 04:37:21 +0000 Subject: [PATCH 1459/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 09b532bc..cf6d355f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#255](https://github.com/CartoonFan/lutris/pull/255#issuecomment-1950919364) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#254](https://github.com/CartoonFan/lutris/pull/254#issuecomment-1950044040) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#4459](https://github.com/MDAnalysis/mdanalysis/pull/4459#issuecomment-1949923593) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#1335](https://github.com/rpm-software-management/mock/pull/1335#issuecomment-1949245129) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -5. 🗣 Commented on [#732](https://github.com/OpenFreeEnergy/openfe/pull/732#issuecomment-1948837039) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#4](https://github.com/normcontrol/Document-Generators/pull/4#issuecomment-1948594566) in [normcontrol/Document-Generators](https://github.com/normcontrol/Document-Generators) -7. 🗣 Commented on [#1054](https://github.com/oemof/oemof-solph/pull/1054#issuecomment-1948592146) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -8. 🗣 Commented on [#90](https://github.com/eastgenomics/eris/pull/90#issuecomment-1948536482) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#67](https://github.com/eastgenomics/trendyQC/pull/67#issuecomment-1948478047) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -10. 🗣 Commented on [#1670](https://github.com/zarr-developers/zarr-python/pull/1670#issuecomment-1948412220) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +1. 🗣 Commented on [#19](https://github.com/brianhang/pokerpals/pull/19#issuecomment-1950957918) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +2. 🗣 Commented on [#255](https://github.com/CartoonFan/lutris/pull/255#issuecomment-1950919364) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#254](https://github.com/CartoonFan/lutris/pull/254#issuecomment-1950044040) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#4459](https://github.com/MDAnalysis/mdanalysis/pull/4459#issuecomment-1949923593) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#1335](https://github.com/rpm-software-management/mock/pull/1335#issuecomment-1949245129) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +6. 🗣 Commented on [#732](https://github.com/OpenFreeEnergy/openfe/pull/732#issuecomment-1948837039) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#4](https://github.com/normcontrol/Document-Generators/pull/4#issuecomment-1948594566) in [normcontrol/Document-Generators](https://github.com/normcontrol/Document-Generators) +8. 🗣 Commented on [#1054](https://github.com/oemof/oemof-solph/pull/1054#issuecomment-1948592146) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +9. 🗣 Commented on [#90](https://github.com/eastgenomics/eris/pull/90#issuecomment-1948536482) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#67](https://github.com/eastgenomics/trendyQC/pull/67#issuecomment-1948478047) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) From eb7d2b14e081cb00c0f207d0ccffe1ea0b1f9836 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 18 Feb 2024 07:37:06 +0000 Subject: [PATCH 1460/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cf6d355f..724580f5 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#19](https://github.com/brianhang/pokerpals/pull/19#issuecomment-1950957918) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -2. 🗣 Commented on [#255](https://github.com/CartoonFan/lutris/pull/255#issuecomment-1950919364) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#254](https://github.com/CartoonFan/lutris/pull/254#issuecomment-1950044040) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#4459](https://github.com/MDAnalysis/mdanalysis/pull/4459#issuecomment-1949923593) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#1335](https://github.com/rpm-software-management/mock/pull/1335#issuecomment-1949245129) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -6. 🗣 Commented on [#732](https://github.com/OpenFreeEnergy/openfe/pull/732#issuecomment-1948837039) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#4](https://github.com/normcontrol/Document-Generators/pull/4#issuecomment-1948594566) in [normcontrol/Document-Generators](https://github.com/normcontrol/Document-Generators) -8. 🗣 Commented on [#1054](https://github.com/oemof/oemof-solph/pull/1054#issuecomment-1948592146) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -9. 🗣 Commented on [#90](https://github.com/eastgenomics/eris/pull/90#issuecomment-1948536482) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#67](https://github.com/eastgenomics/trendyQC/pull/67#issuecomment-1948478047) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +1. 🗣 Commented on [#317](https://github.com/DeMarcoLab/fibsem/pull/317#issuecomment-1950989291) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +2. 🗣 Commented on [#19](https://github.com/brianhang/pokerpals/pull/19#issuecomment-1950957918) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +3. 🗣 Commented on [#255](https://github.com/CartoonFan/lutris/pull/255#issuecomment-1950919364) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#254](https://github.com/CartoonFan/lutris/pull/254#issuecomment-1950044040) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#4459](https://github.com/MDAnalysis/mdanalysis/pull/4459#issuecomment-1949923593) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#1335](https://github.com/rpm-software-management/mock/pull/1335#issuecomment-1949245129) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +7. 🗣 Commented on [#732](https://github.com/OpenFreeEnergy/openfe/pull/732#issuecomment-1948837039) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#4](https://github.com/normcontrol/Document-Generators/pull/4#issuecomment-1948594566) in [normcontrol/Document-Generators](https://github.com/normcontrol/Document-Generators) +9. 🗣 Commented on [#1054](https://github.com/oemof/oemof-solph/pull/1054#issuecomment-1948592146) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +10. 🗣 Commented on [#90](https://github.com/eastgenomics/eris/pull/90#issuecomment-1948536482) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 160b03c844abda1542ed5830e2350737b48d548d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 02:04:31 +0000 Subject: [PATCH 1461/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 724580f5..3d431107 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#317](https://github.com/DeMarcoLab/fibsem/pull/317#issuecomment-1950989291) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -2. 🗣 Commented on [#19](https://github.com/brianhang/pokerpals/pull/19#issuecomment-1950957918) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -3. 🗣 Commented on [#255](https://github.com/CartoonFan/lutris/pull/255#issuecomment-1950919364) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#254](https://github.com/CartoonFan/lutris/pull/254#issuecomment-1950044040) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#4459](https://github.com/MDAnalysis/mdanalysis/pull/4459#issuecomment-1949923593) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#1335](https://github.com/rpm-software-management/mock/pull/1335#issuecomment-1949245129) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -7. 🗣 Commented on [#732](https://github.com/OpenFreeEnergy/openfe/pull/732#issuecomment-1948837039) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#4](https://github.com/normcontrol/Document-Generators/pull/4#issuecomment-1948594566) in [normcontrol/Document-Generators](https://github.com/normcontrol/Document-Generators) -9. 🗣 Commented on [#1054](https://github.com/oemof/oemof-solph/pull/1054#issuecomment-1948592146) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -10. 🗣 Commented on [#90](https://github.com/eastgenomics/eris/pull/90#issuecomment-1948536482) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#21813](https://github.com/spyder-ide/spyder/pull/21813#issuecomment-1951533080) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#317](https://github.com/DeMarcoLab/fibsem/pull/317#issuecomment-1950989291) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +3. 🗣 Commented on [#19](https://github.com/brianhang/pokerpals/pull/19#issuecomment-1950957918) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +4. 🗣 Commented on [#255](https://github.com/CartoonFan/lutris/pull/255#issuecomment-1950919364) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#254](https://github.com/CartoonFan/lutris/pull/254#issuecomment-1950044040) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#4459](https://github.com/MDAnalysis/mdanalysis/pull/4459#issuecomment-1949923593) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#1335](https://github.com/rpm-software-management/mock/pull/1335#issuecomment-1949245129) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +8. 🗣 Commented on [#732](https://github.com/OpenFreeEnergy/openfe/pull/732#issuecomment-1948837039) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#4](https://github.com/normcontrol/Document-Generators/pull/4#issuecomment-1948594566) in [normcontrol/Document-Generators](https://github.com/normcontrol/Document-Generators) +10. 🗣 Commented on [#1054](https://github.com/oemof/oemof-solph/pull/1054#issuecomment-1948592146) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) From f8ebc6e5616973d8c5c30076e65ad786aae01c19 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 11:13:08 +0000 Subject: [PATCH 1462/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3d431107..024177f8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21813](https://github.com/spyder-ide/spyder/pull/21813#issuecomment-1951533080) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#317](https://github.com/DeMarcoLab/fibsem/pull/317#issuecomment-1950989291) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -3. 🗣 Commented on [#19](https://github.com/brianhang/pokerpals/pull/19#issuecomment-1950957918) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -4. 🗣 Commented on [#255](https://github.com/CartoonFan/lutris/pull/255#issuecomment-1950919364) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#254](https://github.com/CartoonFan/lutris/pull/254#issuecomment-1950044040) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#4459](https://github.com/MDAnalysis/mdanalysis/pull/4459#issuecomment-1949923593) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#1335](https://github.com/rpm-software-management/mock/pull/1335#issuecomment-1949245129) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -8. 🗣 Commented on [#732](https://github.com/OpenFreeEnergy/openfe/pull/732#issuecomment-1948837039) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#4](https://github.com/normcontrol/Document-Generators/pull/4#issuecomment-1948594566) in [normcontrol/Document-Generators](https://github.com/normcontrol/Document-Generators) -10. 🗣 Commented on [#1054](https://github.com/oemof/oemof-solph/pull/1054#issuecomment-1948592146) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +1. 🗣 Commented on [#26](https://github.com/eastgenomics/ansible-run-monitoring/pull/26#issuecomment-1952222642) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +2. 🗣 Commented on [#119](https://github.com/aimclub/Fedot.Industrial/pull/119#issuecomment-1952220987) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +3. 🗣 Commented on [#21813](https://github.com/spyder-ide/spyder/pull/21813#issuecomment-1951533080) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#317](https://github.com/DeMarcoLab/fibsem/pull/317#issuecomment-1950989291) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +5. 🗣 Commented on [#19](https://github.com/brianhang/pokerpals/pull/19#issuecomment-1950957918) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +6. 🗣 Commented on [#255](https://github.com/CartoonFan/lutris/pull/255#issuecomment-1950919364) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#254](https://github.com/CartoonFan/lutris/pull/254#issuecomment-1950044040) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#4459](https://github.com/MDAnalysis/mdanalysis/pull/4459#issuecomment-1949923593) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#1335](https://github.com/rpm-software-management/mock/pull/1335#issuecomment-1949245129) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +10. 🗣 Commented on [#732](https://github.com/OpenFreeEnergy/openfe/pull/732#issuecomment-1948837039) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 76e3cfd25bc2598b27a7474c8af43c3caa8b0b49 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 11:36:58 +0000 Subject: [PATCH 1463/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 024177f8..dc44ba2c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#26](https://github.com/eastgenomics/ansible-run-monitoring/pull/26#issuecomment-1952222642) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -2. 🗣 Commented on [#119](https://github.com/aimclub/Fedot.Industrial/pull/119#issuecomment-1952220987) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -3. 🗣 Commented on [#21813](https://github.com/spyder-ide/spyder/pull/21813#issuecomment-1951533080) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#317](https://github.com/DeMarcoLab/fibsem/pull/317#issuecomment-1950989291) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -5. 🗣 Commented on [#19](https://github.com/brianhang/pokerpals/pull/19#issuecomment-1950957918) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -6. 🗣 Commented on [#255](https://github.com/CartoonFan/lutris/pull/255#issuecomment-1950919364) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#254](https://github.com/CartoonFan/lutris/pull/254#issuecomment-1950044040) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#4459](https://github.com/MDAnalysis/mdanalysis/pull/4459#issuecomment-1949923593) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#1335](https://github.com/rpm-software-management/mock/pull/1335#issuecomment-1949245129) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -10. 🗣 Commented on [#732](https://github.com/OpenFreeEnergy/openfe/pull/732#issuecomment-1948837039) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#68](https://github.com/eastgenomics/trendyQC/pull/68#issuecomment-1952245398) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +2. 🗣 Commented on [#26](https://github.com/eastgenomics/ansible-run-monitoring/pull/26#issuecomment-1952222642) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +3. 🗣 Commented on [#119](https://github.com/aimclub/Fedot.Industrial/pull/119#issuecomment-1952220987) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#21813](https://github.com/spyder-ide/spyder/pull/21813#issuecomment-1951533080) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#317](https://github.com/DeMarcoLab/fibsem/pull/317#issuecomment-1950989291) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +6. 🗣 Commented on [#19](https://github.com/brianhang/pokerpals/pull/19#issuecomment-1950957918) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +7. 🗣 Commented on [#255](https://github.com/CartoonFan/lutris/pull/255#issuecomment-1950919364) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#254](https://github.com/CartoonFan/lutris/pull/254#issuecomment-1950044040) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#4459](https://github.com/MDAnalysis/mdanalysis/pull/4459#issuecomment-1949923593) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#1335](https://github.com/rpm-software-management/mock/pull/1335#issuecomment-1949245129) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) From 09728f251286b16d6ce633776528581529574559 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 12:50:47 +0000 Subject: [PATCH 1464/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dc44ba2c..97744d26 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#68](https://github.com/eastgenomics/trendyQC/pull/68#issuecomment-1952245398) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -2. 🗣 Commented on [#26](https://github.com/eastgenomics/ansible-run-monitoring/pull/26#issuecomment-1952222642) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -3. 🗣 Commented on [#119](https://github.com/aimclub/Fedot.Industrial/pull/119#issuecomment-1952220987) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#21813](https://github.com/spyder-ide/spyder/pull/21813#issuecomment-1951533080) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#317](https://github.com/DeMarcoLab/fibsem/pull/317#issuecomment-1950989291) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -6. 🗣 Commented on [#19](https://github.com/brianhang/pokerpals/pull/19#issuecomment-1950957918) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -7. 🗣 Commented on [#255](https://github.com/CartoonFan/lutris/pull/255#issuecomment-1950919364) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#254](https://github.com/CartoonFan/lutris/pull/254#issuecomment-1950044040) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#4459](https://github.com/MDAnalysis/mdanalysis/pull/4459#issuecomment-1949923593) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#1335](https://github.com/rpm-software-management/mock/pull/1335#issuecomment-1949245129) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +1. 🗣 Commented on [#1640](https://github.com/odlgroup/odl/pull/1640#issuecomment-1952363175) in [odlgroup/odl](https://github.com/odlgroup/odl) +2. 🗣 Commented on [#68](https://github.com/eastgenomics/trendyQC/pull/68#issuecomment-1952245398) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +3. 🗣 Commented on [#26](https://github.com/eastgenomics/ansible-run-monitoring/pull/26#issuecomment-1952222642) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +4. 🗣 Commented on [#119](https://github.com/aimclub/Fedot.Industrial/pull/119#issuecomment-1952220987) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +5. 🗣 Commented on [#21813](https://github.com/spyder-ide/spyder/pull/21813#issuecomment-1951533080) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#317](https://github.com/DeMarcoLab/fibsem/pull/317#issuecomment-1950989291) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +7. 🗣 Commented on [#19](https://github.com/brianhang/pokerpals/pull/19#issuecomment-1950957918) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +8. 🗣 Commented on [#255](https://github.com/CartoonFan/lutris/pull/255#issuecomment-1950919364) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#254](https://github.com/CartoonFan/lutris/pull/254#issuecomment-1950044040) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#4459](https://github.com/MDAnalysis/mdanalysis/pull/4459#issuecomment-1949923593) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 5e665a67dea91c880701ea5a29766007cac33ec3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 14:15:14 +0000 Subject: [PATCH 1465/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 97744d26..acecef7f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1640](https://github.com/odlgroup/odl/pull/1640#issuecomment-1952363175) in [odlgroup/odl](https://github.com/odlgroup/odl) -2. 🗣 Commented on [#68](https://github.com/eastgenomics/trendyQC/pull/68#issuecomment-1952245398) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -3. 🗣 Commented on [#26](https://github.com/eastgenomics/ansible-run-monitoring/pull/26#issuecomment-1952222642) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -4. 🗣 Commented on [#119](https://github.com/aimclub/Fedot.Industrial/pull/119#issuecomment-1952220987) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -5. 🗣 Commented on [#21813](https://github.com/spyder-ide/spyder/pull/21813#issuecomment-1951533080) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#317](https://github.com/DeMarcoLab/fibsem/pull/317#issuecomment-1950989291) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -7. 🗣 Commented on [#19](https://github.com/brianhang/pokerpals/pull/19#issuecomment-1950957918) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -8. 🗣 Commented on [#255](https://github.com/CartoonFan/lutris/pull/255#issuecomment-1950919364) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#254](https://github.com/CartoonFan/lutris/pull/254#issuecomment-1950044040) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#4459](https://github.com/MDAnalysis/mdanalysis/pull/4459#issuecomment-1949923593) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#173](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/173#issuecomment-1952476667) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +2. 🗣 Commented on [#1640](https://github.com/odlgroup/odl/pull/1640#issuecomment-1952363175) in [odlgroup/odl](https://github.com/odlgroup/odl) +3. 🗣 Commented on [#68](https://github.com/eastgenomics/trendyQC/pull/68#issuecomment-1952245398) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +4. 🗣 Commented on [#26](https://github.com/eastgenomics/ansible-run-monitoring/pull/26#issuecomment-1952222642) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +5. 🗣 Commented on [#119](https://github.com/aimclub/Fedot.Industrial/pull/119#issuecomment-1952220987) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#21813](https://github.com/spyder-ide/spyder/pull/21813#issuecomment-1951533080) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#317](https://github.com/DeMarcoLab/fibsem/pull/317#issuecomment-1950989291) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +8. 🗣 Commented on [#19](https://github.com/brianhang/pokerpals/pull/19#issuecomment-1950957918) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +9. 🗣 Commented on [#255](https://github.com/CartoonFan/lutris/pull/255#issuecomment-1950919364) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#254](https://github.com/CartoonFan/lutris/pull/254#issuecomment-1950044040) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 3f73eb80a57ac2525858bfb50a521df9efabe5cf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 15:16:23 +0000 Subject: [PATCH 1466/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index acecef7f..9aa8f591 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#173](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/173#issuecomment-1952476667) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -2. 🗣 Commented on [#1640](https://github.com/odlgroup/odl/pull/1640#issuecomment-1952363175) in [odlgroup/odl](https://github.com/odlgroup/odl) -3. 🗣 Commented on [#68](https://github.com/eastgenomics/trendyQC/pull/68#issuecomment-1952245398) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -4. 🗣 Commented on [#26](https://github.com/eastgenomics/ansible-run-monitoring/pull/26#issuecomment-1952222642) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -5. 🗣 Commented on [#119](https://github.com/aimclub/Fedot.Industrial/pull/119#issuecomment-1952220987) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#21813](https://github.com/spyder-ide/spyder/pull/21813#issuecomment-1951533080) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#317](https://github.com/DeMarcoLab/fibsem/pull/317#issuecomment-1950989291) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -8. 🗣 Commented on [#19](https://github.com/brianhang/pokerpals/pull/19#issuecomment-1950957918) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -9. 🗣 Commented on [#255](https://github.com/CartoonFan/lutris/pull/255#issuecomment-1950919364) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#254](https://github.com/CartoonFan/lutris/pull/254#issuecomment-1950044040) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#1491](https://github.com/openSUSE/osc/pull/1491#issuecomment-1952652835) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#173](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/173#issuecomment-1952476667) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +3. 🗣 Commented on [#1640](https://github.com/odlgroup/odl/pull/1640#issuecomment-1952363175) in [odlgroup/odl](https://github.com/odlgroup/odl) +4. 🗣 Commented on [#68](https://github.com/eastgenomics/trendyQC/pull/68#issuecomment-1952245398) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +5. 🗣 Commented on [#26](https://github.com/eastgenomics/ansible-run-monitoring/pull/26#issuecomment-1952222642) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +6. 🗣 Commented on [#119](https://github.com/aimclub/Fedot.Industrial/pull/119#issuecomment-1952220987) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#21813](https://github.com/spyder-ide/spyder/pull/21813#issuecomment-1951533080) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#317](https://github.com/DeMarcoLab/fibsem/pull/317#issuecomment-1950989291) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +9. 🗣 Commented on [#19](https://github.com/brianhang/pokerpals/pull/19#issuecomment-1950957918) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +10. 🗣 Commented on [#255](https://github.com/CartoonFan/lutris/pull/255#issuecomment-1950919364) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 0ac8ae11d9c10d0d8334e09298a7246d259bf992 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 15:37:46 +0000 Subject: [PATCH 1467/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9aa8f591..cb20b71f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1491](https://github.com/openSUSE/osc/pull/1491#issuecomment-1952652835) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#173](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/173#issuecomment-1952476667) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -3. 🗣 Commented on [#1640](https://github.com/odlgroup/odl/pull/1640#issuecomment-1952363175) in [odlgroup/odl](https://github.com/odlgroup/odl) -4. 🗣 Commented on [#68](https://github.com/eastgenomics/trendyQC/pull/68#issuecomment-1952245398) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -5. 🗣 Commented on [#26](https://github.com/eastgenomics/ansible-run-monitoring/pull/26#issuecomment-1952222642) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -6. 🗣 Commented on [#119](https://github.com/aimclub/Fedot.Industrial/pull/119#issuecomment-1952220987) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#21813](https://github.com/spyder-ide/spyder/pull/21813#issuecomment-1951533080) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#317](https://github.com/DeMarcoLab/fibsem/pull/317#issuecomment-1950989291) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -9. 🗣 Commented on [#19](https://github.com/brianhang/pokerpals/pull/19#issuecomment-1950957918) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -10. 🗣 Commented on [#255](https://github.com/CartoonFan/lutris/pull/255#issuecomment-1950919364) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#1489](https://github.com/spacetelescope/jwql/pull/1489#issuecomment-1952671444) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#1491](https://github.com/openSUSE/osc/pull/1491#issuecomment-1952652835) in [openSUSE/osc](https://github.com/openSUSE/osc) +3. 🗣 Commented on [#173](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/173#issuecomment-1952476667) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +4. 🗣 Commented on [#1640](https://github.com/odlgroup/odl/pull/1640#issuecomment-1952363175) in [odlgroup/odl](https://github.com/odlgroup/odl) +5. 🗣 Commented on [#68](https://github.com/eastgenomics/trendyQC/pull/68#issuecomment-1952245398) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +6. 🗣 Commented on [#26](https://github.com/eastgenomics/ansible-run-monitoring/pull/26#issuecomment-1952222642) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +7. 🗣 Commented on [#119](https://github.com/aimclub/Fedot.Industrial/pull/119#issuecomment-1952220987) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +8. 🗣 Commented on [#21813](https://github.com/spyder-ide/spyder/pull/21813#issuecomment-1951533080) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#317](https://github.com/DeMarcoLab/fibsem/pull/317#issuecomment-1950989291) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +10. 🗣 Commented on [#19](https://github.com/brianhang/pokerpals/pull/19#issuecomment-1950957918) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) From 4f922e6229094839b8911def3882c34eb56f7289 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 16:21:25 +0000 Subject: [PATCH 1468/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cb20b71f..f007d7aa 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1489](https://github.com/spacetelescope/jwql/pull/1489#issuecomment-1952671444) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#1491](https://github.com/openSUSE/osc/pull/1491#issuecomment-1952652835) in [openSUSE/osc](https://github.com/openSUSE/osc) -3. 🗣 Commented on [#173](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/173#issuecomment-1952476667) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -4. 🗣 Commented on [#1640](https://github.com/odlgroup/odl/pull/1640#issuecomment-1952363175) in [odlgroup/odl](https://github.com/odlgroup/odl) -5. 🗣 Commented on [#68](https://github.com/eastgenomics/trendyQC/pull/68#issuecomment-1952245398) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -6. 🗣 Commented on [#26](https://github.com/eastgenomics/ansible-run-monitoring/pull/26#issuecomment-1952222642) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -7. 🗣 Commented on [#119](https://github.com/aimclub/Fedot.Industrial/pull/119#issuecomment-1952220987) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -8. 🗣 Commented on [#21813](https://github.com/spyder-ide/spyder/pull/21813#issuecomment-1951533080) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#317](https://github.com/DeMarcoLab/fibsem/pull/317#issuecomment-1950989291) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -10. 🗣 Commented on [#19](https://github.com/brianhang/pokerpals/pull/19#issuecomment-1950957918) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +1. 🗣 Commented on [#21784](https://github.com/spyder-ide/spyder/pull/21784#issuecomment-1952754530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#65](https://github.com/incf-nidash/nidmresults/pull/65#issuecomment-1952748483) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) +3. 🗣 Commented on [#1489](https://github.com/spacetelescope/jwql/pull/1489#issuecomment-1952671444) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#1491](https://github.com/openSUSE/osc/pull/1491#issuecomment-1952652835) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#173](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/173#issuecomment-1952476667) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +6. 🗣 Commented on [#1640](https://github.com/odlgroup/odl/pull/1640#issuecomment-1952363175) in [odlgroup/odl](https://github.com/odlgroup/odl) +7. 🗣 Commented on [#68](https://github.com/eastgenomics/trendyQC/pull/68#issuecomment-1952245398) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +8. 🗣 Commented on [#26](https://github.com/eastgenomics/ansible-run-monitoring/pull/26#issuecomment-1952222642) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +9. 🗣 Commented on [#119](https://github.com/aimclub/Fedot.Industrial/pull/119#issuecomment-1952220987) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#21813](https://github.com/spyder-ide/spyder/pull/21813#issuecomment-1951533080) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From f4437b56505133c665c95892e20b483195df6edb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 17:37:16 +0000 Subject: [PATCH 1469/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f007d7aa..f24a9d46 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21784](https://github.com/spyder-ide/spyder/pull/21784#issuecomment-1952754530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#65](https://github.com/incf-nidash/nidmresults/pull/65#issuecomment-1952748483) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) -3. 🗣 Commented on [#1489](https://github.com/spacetelescope/jwql/pull/1489#issuecomment-1952671444) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#1491](https://github.com/openSUSE/osc/pull/1491#issuecomment-1952652835) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#173](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/173#issuecomment-1952476667) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -6. 🗣 Commented on [#1640](https://github.com/odlgroup/odl/pull/1640#issuecomment-1952363175) in [odlgroup/odl](https://github.com/odlgroup/odl) -7. 🗣 Commented on [#68](https://github.com/eastgenomics/trendyQC/pull/68#issuecomment-1952245398) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -8. 🗣 Commented on [#26](https://github.com/eastgenomics/ansible-run-monitoring/pull/26#issuecomment-1952222642) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -9. 🗣 Commented on [#119](https://github.com/aimclub/Fedot.Industrial/pull/119#issuecomment-1952220987) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#21813](https://github.com/spyder-ide/spyder/pull/21813#issuecomment-1951533080) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#1490](https://github.com/spacetelescope/jwql/pull/1490#issuecomment-1952930905) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#27](https://github.com/eastgenomics/ansible-run-monitoring/pull/27#issuecomment-1952921037) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +3. 🗣 Commented on [#21784](https://github.com/spyder-ide/spyder/pull/21784#issuecomment-1952754530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#65](https://github.com/incf-nidash/nidmresults/pull/65#issuecomment-1952748483) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) +5. 🗣 Commented on [#1489](https://github.com/spacetelescope/jwql/pull/1489#issuecomment-1952671444) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#1491](https://github.com/openSUSE/osc/pull/1491#issuecomment-1952652835) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#173](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/173#issuecomment-1952476667) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +8. 🗣 Commented on [#1640](https://github.com/odlgroup/odl/pull/1640#issuecomment-1952363175) in [odlgroup/odl](https://github.com/odlgroup/odl) +9. 🗣 Commented on [#68](https://github.com/eastgenomics/trendyQC/pull/68#issuecomment-1952245398) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +10. 🗣 Commented on [#26](https://github.com/eastgenomics/ansible-run-monitoring/pull/26#issuecomment-1952222642) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) From 2e92f9282aed8f02d21d9af40fedc751676d2e1b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 18:37:10 +0000 Subject: [PATCH 1470/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f24a9d46..86f2a855 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1490](https://github.com/spacetelescope/jwql/pull/1490#issuecomment-1952930905) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#27](https://github.com/eastgenomics/ansible-run-monitoring/pull/27#issuecomment-1952921037) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -3. 🗣 Commented on [#21784](https://github.com/spyder-ide/spyder/pull/21784#issuecomment-1952754530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#65](https://github.com/incf-nidash/nidmresults/pull/65#issuecomment-1952748483) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) -5. 🗣 Commented on [#1489](https://github.com/spacetelescope/jwql/pull/1489#issuecomment-1952671444) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#1491](https://github.com/openSUSE/osc/pull/1491#issuecomment-1952652835) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#173](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/173#issuecomment-1952476667) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -8. 🗣 Commented on [#1640](https://github.com/odlgroup/odl/pull/1640#issuecomment-1952363175) in [odlgroup/odl](https://github.com/odlgroup/odl) -9. 🗣 Commented on [#68](https://github.com/eastgenomics/trendyQC/pull/68#issuecomment-1952245398) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -10. 🗣 Commented on [#26](https://github.com/eastgenomics/ansible-run-monitoring/pull/26#issuecomment-1952222642) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +1. 🗣 Commented on [#908](https://github.com/scilus/scilpy/pull/908#issuecomment-1952996052) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#1490](https://github.com/spacetelescope/jwql/pull/1490#issuecomment-1952930905) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#27](https://github.com/eastgenomics/ansible-run-monitoring/pull/27#issuecomment-1952921037) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +4. 🗣 Commented on [#21784](https://github.com/spyder-ide/spyder/pull/21784#issuecomment-1952754530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#65](https://github.com/incf-nidash/nidmresults/pull/65#issuecomment-1952748483) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) +6. 🗣 Commented on [#1489](https://github.com/spacetelescope/jwql/pull/1489#issuecomment-1952671444) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#1491](https://github.com/openSUSE/osc/pull/1491#issuecomment-1952652835) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#173](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/173#issuecomment-1952476667) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +9. 🗣 Commented on [#1640](https://github.com/odlgroup/odl/pull/1640#issuecomment-1952363175) in [odlgroup/odl](https://github.com/odlgroup/odl) +10. 🗣 Commented on [#68](https://github.com/eastgenomics/trendyQC/pull/68#issuecomment-1952245398) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) From be2b2c5797aae189a6354287d660059e74fdc100 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 19:12:56 +0000 Subject: [PATCH 1471/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 86f2a855..c9b267a3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#908](https://github.com/scilus/scilpy/pull/908#issuecomment-1952996052) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#1490](https://github.com/spacetelescope/jwql/pull/1490#issuecomment-1952930905) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#27](https://github.com/eastgenomics/ansible-run-monitoring/pull/27#issuecomment-1952921037) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -4. 🗣 Commented on [#21784](https://github.com/spyder-ide/spyder/pull/21784#issuecomment-1952754530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#65](https://github.com/incf-nidash/nidmresults/pull/65#issuecomment-1952748483) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) -6. 🗣 Commented on [#1489](https://github.com/spacetelescope/jwql/pull/1489#issuecomment-1952671444) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#1491](https://github.com/openSUSE/osc/pull/1491#issuecomment-1952652835) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#173](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/173#issuecomment-1952476667) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -9. 🗣 Commented on [#1640](https://github.com/odlgroup/odl/pull/1640#issuecomment-1952363175) in [odlgroup/odl](https://github.com/odlgroup/odl) -10. 🗣 Commented on [#68](https://github.com/eastgenomics/trendyQC/pull/68#issuecomment-1952245398) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +1. 🗣 Commented on [#861](https://github.com/fury-gl/fury/pull/861#issuecomment-1953014881) in [fury-gl/fury](https://github.com/fury-gl/fury) +2. 🗣 Commented on [#908](https://github.com/scilus/scilpy/pull/908#issuecomment-1952996052) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#1490](https://github.com/spacetelescope/jwql/pull/1490#issuecomment-1952930905) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#27](https://github.com/eastgenomics/ansible-run-monitoring/pull/27#issuecomment-1952921037) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +5. 🗣 Commented on [#21784](https://github.com/spyder-ide/spyder/pull/21784#issuecomment-1952754530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#65](https://github.com/incf-nidash/nidmresults/pull/65#issuecomment-1952748483) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) +7. 🗣 Commented on [#1489](https://github.com/spacetelescope/jwql/pull/1489#issuecomment-1952671444) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#1491](https://github.com/openSUSE/osc/pull/1491#issuecomment-1952652835) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#173](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/173#issuecomment-1952476667) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +10. 🗣 Commented on [#1640](https://github.com/odlgroup/odl/pull/1640#issuecomment-1952363175) in [odlgroup/odl](https://github.com/odlgroup/odl) From a8375c0476ee5753ceff06b5cf52d43cf8f85645 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 20:37:14 +0000 Subject: [PATCH 1472/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c9b267a3..2d32367c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#861](https://github.com/fury-gl/fury/pull/861#issuecomment-1953014881) in [fury-gl/fury](https://github.com/fury-gl/fury) -2. 🗣 Commented on [#908](https://github.com/scilus/scilpy/pull/908#issuecomment-1952996052) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#1490](https://github.com/spacetelescope/jwql/pull/1490#issuecomment-1952930905) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#27](https://github.com/eastgenomics/ansible-run-monitoring/pull/27#issuecomment-1952921037) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -5. 🗣 Commented on [#21784](https://github.com/spyder-ide/spyder/pull/21784#issuecomment-1952754530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#65](https://github.com/incf-nidash/nidmresults/pull/65#issuecomment-1952748483) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) -7. 🗣 Commented on [#1489](https://github.com/spacetelescope/jwql/pull/1489#issuecomment-1952671444) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#1491](https://github.com/openSUSE/osc/pull/1491#issuecomment-1952652835) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#173](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/173#issuecomment-1952476667) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -10. 🗣 Commented on [#1640](https://github.com/odlgroup/odl/pull/1640#issuecomment-1952363175) in [odlgroup/odl](https://github.com/odlgroup/odl) +1. 🗣 Commented on [#1491](https://github.com/spacetelescope/jwql/pull/1491#issuecomment-1953118959) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#861](https://github.com/fury-gl/fury/pull/861#issuecomment-1953014881) in [fury-gl/fury](https://github.com/fury-gl/fury) +3. 🗣 Commented on [#908](https://github.com/scilus/scilpy/pull/908#issuecomment-1952996052) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#1490](https://github.com/spacetelescope/jwql/pull/1490#issuecomment-1952930905) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#27](https://github.com/eastgenomics/ansible-run-monitoring/pull/27#issuecomment-1952921037) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +6. 🗣 Commented on [#21784](https://github.com/spyder-ide/spyder/pull/21784#issuecomment-1952754530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#65](https://github.com/incf-nidash/nidmresults/pull/65#issuecomment-1952748483) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) +8. 🗣 Commented on [#1489](https://github.com/spacetelescope/jwql/pull/1489#issuecomment-1952671444) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#1491](https://github.com/openSUSE/osc/pull/1491#issuecomment-1952652835) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#173](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/173#issuecomment-1952476667) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) From 5da7c8d1533d046fa77b2b783b441d717bf3dd29 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 01:07:46 +0000 Subject: [PATCH 1473/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2d32367c..af2c531d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1491](https://github.com/spacetelescope/jwql/pull/1491#issuecomment-1953118959) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#861](https://github.com/fury-gl/fury/pull/861#issuecomment-1953014881) in [fury-gl/fury](https://github.com/fury-gl/fury) -3. 🗣 Commented on [#908](https://github.com/scilus/scilpy/pull/908#issuecomment-1952996052) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#1490](https://github.com/spacetelescope/jwql/pull/1490#issuecomment-1952930905) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#27](https://github.com/eastgenomics/ansible-run-monitoring/pull/27#issuecomment-1952921037) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -6. 🗣 Commented on [#21784](https://github.com/spyder-ide/spyder/pull/21784#issuecomment-1952754530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#65](https://github.com/incf-nidash/nidmresults/pull/65#issuecomment-1952748483) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) -8. 🗣 Commented on [#1489](https://github.com/spacetelescope/jwql/pull/1489#issuecomment-1952671444) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#1491](https://github.com/openSUSE/osc/pull/1491#issuecomment-1952652835) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#173](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/173#issuecomment-1952476667) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +1. 🗣 Commented on [#1492](https://github.com/spacetelescope/jwql/pull/1492#issuecomment-1953326463) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#1491](https://github.com/spacetelescope/jwql/pull/1491#issuecomment-1953118959) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#861](https://github.com/fury-gl/fury/pull/861#issuecomment-1953014881) in [fury-gl/fury](https://github.com/fury-gl/fury) +4. 🗣 Commented on [#908](https://github.com/scilus/scilpy/pull/908#issuecomment-1952996052) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#1490](https://github.com/spacetelescope/jwql/pull/1490#issuecomment-1952930905) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#27](https://github.com/eastgenomics/ansible-run-monitoring/pull/27#issuecomment-1952921037) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +7. 🗣 Commented on [#21784](https://github.com/spyder-ide/spyder/pull/21784#issuecomment-1952754530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#65](https://github.com/incf-nidash/nidmresults/pull/65#issuecomment-1952748483) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) +9. 🗣 Commented on [#1489](https://github.com/spacetelescope/jwql/pull/1489#issuecomment-1952671444) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#1491](https://github.com/openSUSE/osc/pull/1491#issuecomment-1952652835) in [openSUSE/osc](https://github.com/openSUSE/osc) From 41899334de7ac298a653ac11872b0e9339dd8710 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 04:38:23 +0000 Subject: [PATCH 1474/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index af2c531d..4e204729 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1492](https://github.com/spacetelescope/jwql/pull/1492#issuecomment-1953326463) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#1491](https://github.com/spacetelescope/jwql/pull/1491#issuecomment-1953118959) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#861](https://github.com/fury-gl/fury/pull/861#issuecomment-1953014881) in [fury-gl/fury](https://github.com/fury-gl/fury) -4. 🗣 Commented on [#908](https://github.com/scilus/scilpy/pull/908#issuecomment-1952996052) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#1490](https://github.com/spacetelescope/jwql/pull/1490#issuecomment-1952930905) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#27](https://github.com/eastgenomics/ansible-run-monitoring/pull/27#issuecomment-1952921037) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -7. 🗣 Commented on [#21784](https://github.com/spyder-ide/spyder/pull/21784#issuecomment-1952754530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#65](https://github.com/incf-nidash/nidmresults/pull/65#issuecomment-1952748483) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) -9. 🗣 Commented on [#1489](https://github.com/spacetelescope/jwql/pull/1489#issuecomment-1952671444) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#1491](https://github.com/openSUSE/osc/pull/1491#issuecomment-1952652835) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#862](https://github.com/fury-gl/fury/pull/862#issuecomment-1953469929) in [fury-gl/fury](https://github.com/fury-gl/fury) +2. 🗣 Commented on [#1492](https://github.com/spacetelescope/jwql/pull/1492#issuecomment-1953326463) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#1491](https://github.com/spacetelescope/jwql/pull/1491#issuecomment-1953118959) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#861](https://github.com/fury-gl/fury/pull/861#issuecomment-1953014881) in [fury-gl/fury](https://github.com/fury-gl/fury) +5. 🗣 Commented on [#908](https://github.com/scilus/scilpy/pull/908#issuecomment-1952996052) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#1490](https://github.com/spacetelescope/jwql/pull/1490#issuecomment-1952930905) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#27](https://github.com/eastgenomics/ansible-run-monitoring/pull/27#issuecomment-1952921037) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +8. 🗣 Commented on [#21784](https://github.com/spyder-ide/spyder/pull/21784#issuecomment-1952754530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#65](https://github.com/incf-nidash/nidmresults/pull/65#issuecomment-1952748483) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) +10. 🗣 Commented on [#1489](https://github.com/spacetelescope/jwql/pull/1489#issuecomment-1952671444) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 687f36e048af0071fb96f7697d5e5ff3bd4ccb8b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 09:15:39 +0000 Subject: [PATCH 1475/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4e204729..4e41d2f0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#862](https://github.com/fury-gl/fury/pull/862#issuecomment-1953469929) in [fury-gl/fury](https://github.com/fury-gl/fury) -2. 🗣 Commented on [#1492](https://github.com/spacetelescope/jwql/pull/1492#issuecomment-1953326463) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#1491](https://github.com/spacetelescope/jwql/pull/1491#issuecomment-1953118959) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#861](https://github.com/fury-gl/fury/pull/861#issuecomment-1953014881) in [fury-gl/fury](https://github.com/fury-gl/fury) -5. 🗣 Commented on [#908](https://github.com/scilus/scilpy/pull/908#issuecomment-1952996052) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#1490](https://github.com/spacetelescope/jwql/pull/1490#issuecomment-1952930905) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#27](https://github.com/eastgenomics/ansible-run-monitoring/pull/27#issuecomment-1952921037) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -8. 🗣 Commented on [#21784](https://github.com/spyder-ide/spyder/pull/21784#issuecomment-1952754530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#65](https://github.com/incf-nidash/nidmresults/pull/65#issuecomment-1952748483) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) -10. 🗣 Commented on [#1489](https://github.com/spacetelescope/jwql/pull/1489#issuecomment-1952671444) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#66](https://github.com/incf-nidash/nidmresults/pull/66#issuecomment-1953744185) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) +2. 🗣 Commented on [#961](https://github.com/avaframe/AvaFrame/pull/961#issuecomment-1953730990) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#862](https://github.com/fury-gl/fury/pull/862#issuecomment-1953469929) in [fury-gl/fury](https://github.com/fury-gl/fury) +4. 🗣 Commented on [#1492](https://github.com/spacetelescope/jwql/pull/1492#issuecomment-1953326463) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#1491](https://github.com/spacetelescope/jwql/pull/1491#issuecomment-1953118959) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#861](https://github.com/fury-gl/fury/pull/861#issuecomment-1953014881) in [fury-gl/fury](https://github.com/fury-gl/fury) +7. 🗣 Commented on [#908](https://github.com/scilus/scilpy/pull/908#issuecomment-1952996052) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#1490](https://github.com/spacetelescope/jwql/pull/1490#issuecomment-1952930905) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#27](https://github.com/eastgenomics/ansible-run-monitoring/pull/27#issuecomment-1952921037) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +10. 🗣 Commented on [#21784](https://github.com/spyder-ide/spyder/pull/21784#issuecomment-1952754530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From b2cc46064bdc5a5ce7a67cb94709038ae7ac834b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 12:28:43 +0000 Subject: [PATCH 1476/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4e41d2f0..c3cf1761 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#66](https://github.com/incf-nidash/nidmresults/pull/66#issuecomment-1953744185) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) -2. 🗣 Commented on [#961](https://github.com/avaframe/AvaFrame/pull/961#issuecomment-1953730990) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#862](https://github.com/fury-gl/fury/pull/862#issuecomment-1953469929) in [fury-gl/fury](https://github.com/fury-gl/fury) -4. 🗣 Commented on [#1492](https://github.com/spacetelescope/jwql/pull/1492#issuecomment-1953326463) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#1491](https://github.com/spacetelescope/jwql/pull/1491#issuecomment-1953118959) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#861](https://github.com/fury-gl/fury/pull/861#issuecomment-1953014881) in [fury-gl/fury](https://github.com/fury-gl/fury) -7. 🗣 Commented on [#908](https://github.com/scilus/scilpy/pull/908#issuecomment-1952996052) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#1490](https://github.com/spacetelescope/jwql/pull/1490#issuecomment-1952930905) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#27](https://github.com/eastgenomics/ansible-run-monitoring/pull/27#issuecomment-1952921037) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -10. 🗣 Commented on [#21784](https://github.com/spyder-ide/spyder/pull/21784#issuecomment-1952754530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#109](https://github.com/Richard-Sti/csiborgtools/pull/109#issuecomment-1954100696) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +2. 🗣 Commented on [#66](https://github.com/incf-nidash/nidmresults/pull/66#issuecomment-1953744185) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) +3. 🗣 Commented on [#961](https://github.com/avaframe/AvaFrame/pull/961#issuecomment-1953730990) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#862](https://github.com/fury-gl/fury/pull/862#issuecomment-1953469929) in [fury-gl/fury](https://github.com/fury-gl/fury) +5. 🗣 Commented on [#1492](https://github.com/spacetelescope/jwql/pull/1492#issuecomment-1953326463) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#1491](https://github.com/spacetelescope/jwql/pull/1491#issuecomment-1953118959) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#861](https://github.com/fury-gl/fury/pull/861#issuecomment-1953014881) in [fury-gl/fury](https://github.com/fury-gl/fury) +8. 🗣 Commented on [#908](https://github.com/scilus/scilpy/pull/908#issuecomment-1952996052) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#1490](https://github.com/spacetelescope/jwql/pull/1490#issuecomment-1952930905) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#27](https://github.com/eastgenomics/ansible-run-monitoring/pull/27#issuecomment-1952921037) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) From 964d636203b9f09b27cf5d448018ef3182dc2a47 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 12:48:30 +0000 Subject: [PATCH 1477/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c3cf1761..58fdac48 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#109](https://github.com/Richard-Sti/csiborgtools/pull/109#issuecomment-1954100696) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -2. 🗣 Commented on [#66](https://github.com/incf-nidash/nidmresults/pull/66#issuecomment-1953744185) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) -3. 🗣 Commented on [#961](https://github.com/avaframe/AvaFrame/pull/961#issuecomment-1953730990) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#862](https://github.com/fury-gl/fury/pull/862#issuecomment-1953469929) in [fury-gl/fury](https://github.com/fury-gl/fury) -5. 🗣 Commented on [#1492](https://github.com/spacetelescope/jwql/pull/1492#issuecomment-1953326463) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#1491](https://github.com/spacetelescope/jwql/pull/1491#issuecomment-1953118959) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#861](https://github.com/fury-gl/fury/pull/861#issuecomment-1953014881) in [fury-gl/fury](https://github.com/fury-gl/fury) -8. 🗣 Commented on [#908](https://github.com/scilus/scilpy/pull/908#issuecomment-1952996052) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#1490](https://github.com/spacetelescope/jwql/pull/1490#issuecomment-1952930905) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#27](https://github.com/eastgenomics/ansible-run-monitoring/pull/27#issuecomment-1952921037) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +1. 🗣 Commented on [#102](https://github.com/eastgenomics/eggd_conductor/pull/102#issuecomment-1954129014) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +2. 🗣 Commented on [#109](https://github.com/Richard-Sti/csiborgtools/pull/109#issuecomment-1954100696) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +3. 🗣 Commented on [#66](https://github.com/incf-nidash/nidmresults/pull/66#issuecomment-1953744185) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) +4. 🗣 Commented on [#961](https://github.com/avaframe/AvaFrame/pull/961#issuecomment-1953730990) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#862](https://github.com/fury-gl/fury/pull/862#issuecomment-1953469929) in [fury-gl/fury](https://github.com/fury-gl/fury) +6. 🗣 Commented on [#1492](https://github.com/spacetelescope/jwql/pull/1492#issuecomment-1953326463) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#1491](https://github.com/spacetelescope/jwql/pull/1491#issuecomment-1953118959) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#861](https://github.com/fury-gl/fury/pull/861#issuecomment-1953014881) in [fury-gl/fury](https://github.com/fury-gl/fury) +9. 🗣 Commented on [#908](https://github.com/scilus/scilpy/pull/908#issuecomment-1952996052) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#1490](https://github.com/spacetelescope/jwql/pull/1490#issuecomment-1952930905) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From ab35228b6b843ca4c062df0ccf7da80fc2e28be6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 14:36:59 +0000 Subject: [PATCH 1478/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 58fdac48..3543e833 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#102](https://github.com/eastgenomics/eggd_conductor/pull/102#issuecomment-1954129014) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -2. 🗣 Commented on [#109](https://github.com/Richard-Sti/csiborgtools/pull/109#issuecomment-1954100696) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -3. 🗣 Commented on [#66](https://github.com/incf-nidash/nidmresults/pull/66#issuecomment-1953744185) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) -4. 🗣 Commented on [#961](https://github.com/avaframe/AvaFrame/pull/961#issuecomment-1953730990) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#862](https://github.com/fury-gl/fury/pull/862#issuecomment-1953469929) in [fury-gl/fury](https://github.com/fury-gl/fury) -6. 🗣 Commented on [#1492](https://github.com/spacetelescope/jwql/pull/1492#issuecomment-1953326463) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#1491](https://github.com/spacetelescope/jwql/pull/1491#issuecomment-1953118959) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#861](https://github.com/fury-gl/fury/pull/861#issuecomment-1953014881) in [fury-gl/fury](https://github.com/fury-gl/fury) -9. 🗣 Commented on [#908](https://github.com/scilus/scilpy/pull/908#issuecomment-1952996052) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#1490](https://github.com/spacetelescope/jwql/pull/1490#issuecomment-1952930905) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#260](https://github.com/casacore/python-casacore/pull/260#issuecomment-1954344200) in [casacore/python-casacore](https://github.com/casacore/python-casacore) +2. 🗣 Commented on [#102](https://github.com/eastgenomics/eggd_conductor/pull/102#issuecomment-1954129014) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +3. 🗣 Commented on [#109](https://github.com/Richard-Sti/csiborgtools/pull/109#issuecomment-1954100696) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +4. 🗣 Commented on [#66](https://github.com/incf-nidash/nidmresults/pull/66#issuecomment-1953744185) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) +5. 🗣 Commented on [#961](https://github.com/avaframe/AvaFrame/pull/961#issuecomment-1953730990) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#862](https://github.com/fury-gl/fury/pull/862#issuecomment-1953469929) in [fury-gl/fury](https://github.com/fury-gl/fury) +7. 🗣 Commented on [#1492](https://github.com/spacetelescope/jwql/pull/1492#issuecomment-1953326463) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#1491](https://github.com/spacetelescope/jwql/pull/1491#issuecomment-1953118959) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#861](https://github.com/fury-gl/fury/pull/861#issuecomment-1953014881) in [fury-gl/fury](https://github.com/fury-gl/fury) +10. 🗣 Commented on [#908](https://github.com/scilus/scilpy/pull/908#issuecomment-1952996052) in [scilus/scilpy](https://github.com/scilus/scilpy) From 438a2a359d372ce0641c2bb6cbd22ee17a1466d3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 15:14:57 +0000 Subject: [PATCH 1479/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3543e833..759092c5 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#260](https://github.com/casacore/python-casacore/pull/260#issuecomment-1954344200) in [casacore/python-casacore](https://github.com/casacore/python-casacore) -2. 🗣 Commented on [#102](https://github.com/eastgenomics/eggd_conductor/pull/102#issuecomment-1954129014) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -3. 🗣 Commented on [#109](https://github.com/Richard-Sti/csiborgtools/pull/109#issuecomment-1954100696) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -4. 🗣 Commented on [#66](https://github.com/incf-nidash/nidmresults/pull/66#issuecomment-1953744185) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) -5. 🗣 Commented on [#961](https://github.com/avaframe/AvaFrame/pull/961#issuecomment-1953730990) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#862](https://github.com/fury-gl/fury/pull/862#issuecomment-1953469929) in [fury-gl/fury](https://github.com/fury-gl/fury) -7. 🗣 Commented on [#1492](https://github.com/spacetelescope/jwql/pull/1492#issuecomment-1953326463) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#1491](https://github.com/spacetelescope/jwql/pull/1491#issuecomment-1953118959) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#861](https://github.com/fury-gl/fury/pull/861#issuecomment-1953014881) in [fury-gl/fury](https://github.com/fury-gl/fury) -10. 🗣 Commented on [#908](https://github.com/scilus/scilpy/pull/908#issuecomment-1952996052) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#770](https://github.com/spacetelescope/webbpsf/pull/770#issuecomment-1954382610) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#25](https://github.com/eastgenomics/themis/pull/25#issuecomment-1954375616) in [eastgenomics/themis](https://github.com/eastgenomics/themis) +3. 🗣 Commented on [#260](https://github.com/casacore/python-casacore/pull/260#issuecomment-1954344200) in [casacore/python-casacore](https://github.com/casacore/python-casacore) +4. 🗣 Commented on [#102](https://github.com/eastgenomics/eggd_conductor/pull/102#issuecomment-1954129014) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +5. 🗣 Commented on [#109](https://github.com/Richard-Sti/csiborgtools/pull/109#issuecomment-1954100696) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +6. 🗣 Commented on [#66](https://github.com/incf-nidash/nidmresults/pull/66#issuecomment-1953744185) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) +7. 🗣 Commented on [#961](https://github.com/avaframe/AvaFrame/pull/961#issuecomment-1953730990) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#862](https://github.com/fury-gl/fury/pull/862#issuecomment-1953469929) in [fury-gl/fury](https://github.com/fury-gl/fury) +9. 🗣 Commented on [#1492](https://github.com/spacetelescope/jwql/pull/1492#issuecomment-1953326463) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#1491](https://github.com/spacetelescope/jwql/pull/1491#issuecomment-1953118959) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 9dc6c64e849a76e03dad4f3762a9245c658953af Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 16:20:14 +0000 Subject: [PATCH 1480/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 759092c5..892667cf 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#770](https://github.com/spacetelescope/webbpsf/pull/770#issuecomment-1954382610) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#25](https://github.com/eastgenomics/themis/pull/25#issuecomment-1954375616) in [eastgenomics/themis](https://github.com/eastgenomics/themis) -3. 🗣 Commented on [#260](https://github.com/casacore/python-casacore/pull/260#issuecomment-1954344200) in [casacore/python-casacore](https://github.com/casacore/python-casacore) -4. 🗣 Commented on [#102](https://github.com/eastgenomics/eggd_conductor/pull/102#issuecomment-1954129014) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -5. 🗣 Commented on [#109](https://github.com/Richard-Sti/csiborgtools/pull/109#issuecomment-1954100696) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -6. 🗣 Commented on [#66](https://github.com/incf-nidash/nidmresults/pull/66#issuecomment-1953744185) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) -7. 🗣 Commented on [#961](https://github.com/avaframe/AvaFrame/pull/961#issuecomment-1953730990) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#862](https://github.com/fury-gl/fury/pull/862#issuecomment-1953469929) in [fury-gl/fury](https://github.com/fury-gl/fury) -9. 🗣 Commented on [#1492](https://github.com/spacetelescope/jwql/pull/1492#issuecomment-1953326463) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#1491](https://github.com/spacetelescope/jwql/pull/1491#issuecomment-1953118959) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#796](https://github.com/StingraySoftware/stingray/pull/796#issuecomment-1954547791) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +2. 🗣 Commented on [#92](https://github.com/eastgenomics/eris/pull/92#issuecomment-1954509296) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#770](https://github.com/spacetelescope/webbpsf/pull/770#issuecomment-1954382610) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#25](https://github.com/eastgenomics/themis/pull/25#issuecomment-1954375616) in [eastgenomics/themis](https://github.com/eastgenomics/themis) +5. 🗣 Commented on [#260](https://github.com/casacore/python-casacore/pull/260#issuecomment-1954344200) in [casacore/python-casacore](https://github.com/casacore/python-casacore) +6. 🗣 Commented on [#102](https://github.com/eastgenomics/eggd_conductor/pull/102#issuecomment-1954129014) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +7. 🗣 Commented on [#109](https://github.com/Richard-Sti/csiborgtools/pull/109#issuecomment-1954100696) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +8. 🗣 Commented on [#66](https://github.com/incf-nidash/nidmresults/pull/66#issuecomment-1953744185) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) +9. 🗣 Commented on [#961](https://github.com/avaframe/AvaFrame/pull/961#issuecomment-1953730990) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#862](https://github.com/fury-gl/fury/pull/862#issuecomment-1953469929) in [fury-gl/fury](https://github.com/fury-gl/fury) From 6cb51c3ce2802f82cf3d9c94118e03f209093337 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 17:13:40 +0000 Subject: [PATCH 1481/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 892667cf..8427a1e0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#796](https://github.com/StingraySoftware/stingray/pull/796#issuecomment-1954547791) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -2. 🗣 Commented on [#92](https://github.com/eastgenomics/eris/pull/92#issuecomment-1954509296) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#770](https://github.com/spacetelescope/webbpsf/pull/770#issuecomment-1954382610) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#25](https://github.com/eastgenomics/themis/pull/25#issuecomment-1954375616) in [eastgenomics/themis](https://github.com/eastgenomics/themis) -5. 🗣 Commented on [#260](https://github.com/casacore/python-casacore/pull/260#issuecomment-1954344200) in [casacore/python-casacore](https://github.com/casacore/python-casacore) -6. 🗣 Commented on [#102](https://github.com/eastgenomics/eggd_conductor/pull/102#issuecomment-1954129014) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -7. 🗣 Commented on [#109](https://github.com/Richard-Sti/csiborgtools/pull/109#issuecomment-1954100696) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -8. 🗣 Commented on [#66](https://github.com/incf-nidash/nidmresults/pull/66#issuecomment-1953744185) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) -9. 🗣 Commented on [#961](https://github.com/avaframe/AvaFrame/pull/961#issuecomment-1953730990) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#862](https://github.com/fury-gl/fury/pull/862#issuecomment-1953469929) in [fury-gl/fury](https://github.com/fury-gl/fury) +1. 🗣 Commented on [#93](https://github.com/eastgenomics/eris/pull/93#issuecomment-1954611921) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#796](https://github.com/StingraySoftware/stingray/pull/796#issuecomment-1954547791) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +3. 🗣 Commented on [#92](https://github.com/eastgenomics/eris/pull/92#issuecomment-1954509296) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#770](https://github.com/spacetelescope/webbpsf/pull/770#issuecomment-1954382610) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#25](https://github.com/eastgenomics/themis/pull/25#issuecomment-1954375616) in [eastgenomics/themis](https://github.com/eastgenomics/themis) +6. 🗣 Commented on [#260](https://github.com/casacore/python-casacore/pull/260#issuecomment-1954344200) in [casacore/python-casacore](https://github.com/casacore/python-casacore) +7. 🗣 Commented on [#102](https://github.com/eastgenomics/eggd_conductor/pull/102#issuecomment-1954129014) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +8. 🗣 Commented on [#109](https://github.com/Richard-Sti/csiborgtools/pull/109#issuecomment-1954100696) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +9. 🗣 Commented on [#66](https://github.com/incf-nidash/nidmresults/pull/66#issuecomment-1953744185) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) +10. 🗣 Commented on [#961](https://github.com/avaframe/AvaFrame/pull/961#issuecomment-1953730990) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From 58616c0bc1056a067d19438435cdafb7e4d9c8d0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 18:21:39 +0000 Subject: [PATCH 1482/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8427a1e0..6b64d21e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#93](https://github.com/eastgenomics/eris/pull/93#issuecomment-1954611921) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#796](https://github.com/StingraySoftware/stingray/pull/796#issuecomment-1954547791) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -3. 🗣 Commented on [#92](https://github.com/eastgenomics/eris/pull/92#issuecomment-1954509296) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#770](https://github.com/spacetelescope/webbpsf/pull/770#issuecomment-1954382610) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#25](https://github.com/eastgenomics/themis/pull/25#issuecomment-1954375616) in [eastgenomics/themis](https://github.com/eastgenomics/themis) -6. 🗣 Commented on [#260](https://github.com/casacore/python-casacore/pull/260#issuecomment-1954344200) in [casacore/python-casacore](https://github.com/casacore/python-casacore) -7. 🗣 Commented on [#102](https://github.com/eastgenomics/eggd_conductor/pull/102#issuecomment-1954129014) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -8. 🗣 Commented on [#109](https://github.com/Richard-Sti/csiborgtools/pull/109#issuecomment-1954100696) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -9. 🗣 Commented on [#66](https://github.com/incf-nidash/nidmresults/pull/66#issuecomment-1953744185) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) -10. 🗣 Commented on [#961](https://github.com/avaframe/AvaFrame/pull/961#issuecomment-1953730990) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#158](https://github.com/arfc/transition-scenarios/pull/158#issuecomment-1954800719) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +2. 🗣 Commented on [#93](https://github.com/eastgenomics/eris/pull/93#issuecomment-1954611921) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#796](https://github.com/StingraySoftware/stingray/pull/796#issuecomment-1954547791) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +4. 🗣 Commented on [#92](https://github.com/eastgenomics/eris/pull/92#issuecomment-1954509296) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#770](https://github.com/spacetelescope/webbpsf/pull/770#issuecomment-1954382610) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#25](https://github.com/eastgenomics/themis/pull/25#issuecomment-1954375616) in [eastgenomics/themis](https://github.com/eastgenomics/themis) +7. 🗣 Commented on [#260](https://github.com/casacore/python-casacore/pull/260#issuecomment-1954344200) in [casacore/python-casacore](https://github.com/casacore/python-casacore) +8. 🗣 Commented on [#102](https://github.com/eastgenomics/eggd_conductor/pull/102#issuecomment-1954129014) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +9. 🗣 Commented on [#109](https://github.com/Richard-Sti/csiborgtools/pull/109#issuecomment-1954100696) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +10. 🗣 Commented on [#66](https://github.com/incf-nidash/nidmresults/pull/66#issuecomment-1953744185) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) From 0c1760d7b84574479ed23524a099d56a79b25958 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 19:12:09 +0000 Subject: [PATCH 1483/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6b64d21e..8ebb43b0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#158](https://github.com/arfc/transition-scenarios/pull/158#issuecomment-1954800719) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -2. 🗣 Commented on [#93](https://github.com/eastgenomics/eris/pull/93#issuecomment-1954611921) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#796](https://github.com/StingraySoftware/stingray/pull/796#issuecomment-1954547791) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -4. 🗣 Commented on [#92](https://github.com/eastgenomics/eris/pull/92#issuecomment-1954509296) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#770](https://github.com/spacetelescope/webbpsf/pull/770#issuecomment-1954382610) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#25](https://github.com/eastgenomics/themis/pull/25#issuecomment-1954375616) in [eastgenomics/themis](https://github.com/eastgenomics/themis) -7. 🗣 Commented on [#260](https://github.com/casacore/python-casacore/pull/260#issuecomment-1954344200) in [casacore/python-casacore](https://github.com/casacore/python-casacore) -8. 🗣 Commented on [#102](https://github.com/eastgenomics/eggd_conductor/pull/102#issuecomment-1954129014) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -9. 🗣 Commented on [#109](https://github.com/Richard-Sti/csiborgtools/pull/109#issuecomment-1954100696) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -10. 🗣 Commented on [#66](https://github.com/incf-nidash/nidmresults/pull/66#issuecomment-1953744185) in [incf-nidash/nidmresults](https://github.com/incf-nidash/nidmresults) +1. 🗣 Commented on [#256](https://github.com/CartoonFan/lutris/pull/256#issuecomment-1954882483) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#158](https://github.com/arfc/transition-scenarios/pull/158#issuecomment-1954800719) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +3. 🗣 Commented on [#93](https://github.com/eastgenomics/eris/pull/93#issuecomment-1954611921) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#796](https://github.com/StingraySoftware/stingray/pull/796#issuecomment-1954547791) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +5. 🗣 Commented on [#92](https://github.com/eastgenomics/eris/pull/92#issuecomment-1954509296) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#770](https://github.com/spacetelescope/webbpsf/pull/770#issuecomment-1954382610) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +7. 🗣 Commented on [#25](https://github.com/eastgenomics/themis/pull/25#issuecomment-1954375616) in [eastgenomics/themis](https://github.com/eastgenomics/themis) +8. 🗣 Commented on [#260](https://github.com/casacore/python-casacore/pull/260#issuecomment-1954344200) in [casacore/python-casacore](https://github.com/casacore/python-casacore) +9. 🗣 Commented on [#102](https://github.com/eastgenomics/eggd_conductor/pull/102#issuecomment-1954129014) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +10. 🗣 Commented on [#109](https://github.com/Richard-Sti/csiborgtools/pull/109#issuecomment-1954100696) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) From 1f001e27fd5e7a12c3e03f9e3b38b035964d4cb1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 22:15:04 +0000 Subject: [PATCH 1484/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8ebb43b0..bb8a23bb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#256](https://github.com/CartoonFan/lutris/pull/256#issuecomment-1954882483) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#158](https://github.com/arfc/transition-scenarios/pull/158#issuecomment-1954800719) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -3. 🗣 Commented on [#93](https://github.com/eastgenomics/eris/pull/93#issuecomment-1954611921) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#796](https://github.com/StingraySoftware/stingray/pull/796#issuecomment-1954547791) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -5. 🗣 Commented on [#92](https://github.com/eastgenomics/eris/pull/92#issuecomment-1954509296) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#770](https://github.com/spacetelescope/webbpsf/pull/770#issuecomment-1954382610) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -7. 🗣 Commented on [#25](https://github.com/eastgenomics/themis/pull/25#issuecomment-1954375616) in [eastgenomics/themis](https://github.com/eastgenomics/themis) -8. 🗣 Commented on [#260](https://github.com/casacore/python-casacore/pull/260#issuecomment-1954344200) in [casacore/python-casacore](https://github.com/casacore/python-casacore) -9. 🗣 Commented on [#102](https://github.com/eastgenomics/eggd_conductor/pull/102#issuecomment-1954129014) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -10. 🗣 Commented on [#109](https://github.com/Richard-Sti/csiborgtools/pull/109#issuecomment-1954100696) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +1. 🗣 Commented on [#807](https://github.com/spacetelescope/webbpsf/pull/807#issuecomment-1955185860) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#256](https://github.com/CartoonFan/lutris/pull/256#issuecomment-1954882483) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#158](https://github.com/arfc/transition-scenarios/pull/158#issuecomment-1954800719) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +4. 🗣 Commented on [#93](https://github.com/eastgenomics/eris/pull/93#issuecomment-1954611921) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#796](https://github.com/StingraySoftware/stingray/pull/796#issuecomment-1954547791) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +6. 🗣 Commented on [#92](https://github.com/eastgenomics/eris/pull/92#issuecomment-1954509296) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#770](https://github.com/spacetelescope/webbpsf/pull/770#issuecomment-1954382610) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#25](https://github.com/eastgenomics/themis/pull/25#issuecomment-1954375616) in [eastgenomics/themis](https://github.com/eastgenomics/themis) +9. 🗣 Commented on [#260](https://github.com/casacore/python-casacore/pull/260#issuecomment-1954344200) in [casacore/python-casacore](https://github.com/casacore/python-casacore) +10. 🗣 Commented on [#102](https://github.com/eastgenomics/eggd_conductor/pull/102#issuecomment-1954129014) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) From 4261e12d372a0e9f69ea5f7cb4072ae82abb558d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 21 Feb 2024 01:09:08 +0000 Subject: [PATCH 1485/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bb8a23bb..4685facc 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#807](https://github.com/spacetelescope/webbpsf/pull/807#issuecomment-1955185860) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#256](https://github.com/CartoonFan/lutris/pull/256#issuecomment-1954882483) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#158](https://github.com/arfc/transition-scenarios/pull/158#issuecomment-1954800719) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -4. 🗣 Commented on [#93](https://github.com/eastgenomics/eris/pull/93#issuecomment-1954611921) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#796](https://github.com/StingraySoftware/stingray/pull/796#issuecomment-1954547791) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -6. 🗣 Commented on [#92](https://github.com/eastgenomics/eris/pull/92#issuecomment-1954509296) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#770](https://github.com/spacetelescope/webbpsf/pull/770#issuecomment-1954382610) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#25](https://github.com/eastgenomics/themis/pull/25#issuecomment-1954375616) in [eastgenomics/themis](https://github.com/eastgenomics/themis) -9. 🗣 Commented on [#260](https://github.com/casacore/python-casacore/pull/260#issuecomment-1954344200) in [casacore/python-casacore](https://github.com/casacore/python-casacore) -10. 🗣 Commented on [#102](https://github.com/eastgenomics/eggd_conductor/pull/102#issuecomment-1954129014) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +1. 🗣 Commented on [#907](https://github.com/ToFuProject/tofu/pull/907#issuecomment-1955565053) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#807](https://github.com/spacetelescope/webbpsf/pull/807#issuecomment-1955185860) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#256](https://github.com/CartoonFan/lutris/pull/256#issuecomment-1954882483) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#158](https://github.com/arfc/transition-scenarios/pull/158#issuecomment-1954800719) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +5. 🗣 Commented on [#93](https://github.com/eastgenomics/eris/pull/93#issuecomment-1954611921) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#796](https://github.com/StingraySoftware/stingray/pull/796#issuecomment-1954547791) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +7. 🗣 Commented on [#92](https://github.com/eastgenomics/eris/pull/92#issuecomment-1954509296) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#770](https://github.com/spacetelescope/webbpsf/pull/770#issuecomment-1954382610) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +9. 🗣 Commented on [#25](https://github.com/eastgenomics/themis/pull/25#issuecomment-1954375616) in [eastgenomics/themis](https://github.com/eastgenomics/themis) +10. 🗣 Commented on [#260](https://github.com/casacore/python-casacore/pull/260#issuecomment-1954344200) in [casacore/python-casacore](https://github.com/casacore/python-casacore) From aa0feb51f5d005597368bbccda24374afd894fb7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 21 Feb 2024 08:37:28 +0000 Subject: [PATCH 1486/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4685facc..7ca31d6b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#907](https://github.com/ToFuProject/tofu/pull/907#issuecomment-1955565053) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#807](https://github.com/spacetelescope/webbpsf/pull/807#issuecomment-1955185860) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#256](https://github.com/CartoonFan/lutris/pull/256#issuecomment-1954882483) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#158](https://github.com/arfc/transition-scenarios/pull/158#issuecomment-1954800719) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -5. 🗣 Commented on [#93](https://github.com/eastgenomics/eris/pull/93#issuecomment-1954611921) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#796](https://github.com/StingraySoftware/stingray/pull/796#issuecomment-1954547791) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -7. 🗣 Commented on [#92](https://github.com/eastgenomics/eris/pull/92#issuecomment-1954509296) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#770](https://github.com/spacetelescope/webbpsf/pull/770#issuecomment-1954382610) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -9. 🗣 Commented on [#25](https://github.com/eastgenomics/themis/pull/25#issuecomment-1954375616) in [eastgenomics/themis](https://github.com/eastgenomics/themis) -10. 🗣 Commented on [#260](https://github.com/casacore/python-casacore/pull/260#issuecomment-1954344200) in [casacore/python-casacore](https://github.com/casacore/python-casacore) +1. 🗣 Commented on [#1485](https://github.com/openSUSE/osc/pull/1485#issuecomment-1956129523) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#907](https://github.com/ToFuProject/tofu/pull/907#issuecomment-1955565053) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#807](https://github.com/spacetelescope/webbpsf/pull/807#issuecomment-1955185860) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#256](https://github.com/CartoonFan/lutris/pull/256#issuecomment-1954882483) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#158](https://github.com/arfc/transition-scenarios/pull/158#issuecomment-1954800719) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +6. 🗣 Commented on [#93](https://github.com/eastgenomics/eris/pull/93#issuecomment-1954611921) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#796](https://github.com/StingraySoftware/stingray/pull/796#issuecomment-1954547791) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +8. 🗣 Commented on [#92](https://github.com/eastgenomics/eris/pull/92#issuecomment-1954509296) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#770](https://github.com/spacetelescope/webbpsf/pull/770#issuecomment-1954382610) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +10. 🗣 Commented on [#25](https://github.com/eastgenomics/themis/pull/25#issuecomment-1954375616) in [eastgenomics/themis](https://github.com/eastgenomics/themis) From 26f5705634618a6b888078c7d38056a11246dba6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 21 Feb 2024 11:13:02 +0000 Subject: [PATCH 1487/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7ca31d6b..494c2b36 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1485](https://github.com/openSUSE/osc/pull/1485#issuecomment-1956129523) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#907](https://github.com/ToFuProject/tofu/pull/907#issuecomment-1955565053) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#807](https://github.com/spacetelescope/webbpsf/pull/807#issuecomment-1955185860) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#256](https://github.com/CartoonFan/lutris/pull/256#issuecomment-1954882483) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#158](https://github.com/arfc/transition-scenarios/pull/158#issuecomment-1954800719) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -6. 🗣 Commented on [#93](https://github.com/eastgenomics/eris/pull/93#issuecomment-1954611921) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#796](https://github.com/StingraySoftware/stingray/pull/796#issuecomment-1954547791) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -8. 🗣 Commented on [#92](https://github.com/eastgenomics/eris/pull/92#issuecomment-1954509296) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#770](https://github.com/spacetelescope/webbpsf/pull/770#issuecomment-1954382610) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -10. 🗣 Commented on [#25](https://github.com/eastgenomics/themis/pull/25#issuecomment-1954375616) in [eastgenomics/themis](https://github.com/eastgenomics/themis) +1. 🗣 Commented on [#148](https://github.com/INT-NIT/BEP032tools/pull/148#issuecomment-1956386827) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) +2. 🗣 Commented on [#5485](https://github.com/rhinstaller/anaconda/pull/5485#issuecomment-1956378721) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#1485](https://github.com/openSUSE/osc/pull/1485#issuecomment-1956129523) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#907](https://github.com/ToFuProject/tofu/pull/907#issuecomment-1955565053) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#807](https://github.com/spacetelescope/webbpsf/pull/807#issuecomment-1955185860) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#256](https://github.com/CartoonFan/lutris/pull/256#issuecomment-1954882483) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#158](https://github.com/arfc/transition-scenarios/pull/158#issuecomment-1954800719) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +8. 🗣 Commented on [#93](https://github.com/eastgenomics/eris/pull/93#issuecomment-1954611921) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#796](https://github.com/StingraySoftware/stingray/pull/796#issuecomment-1954547791) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +10. 🗣 Commented on [#92](https://github.com/eastgenomics/eris/pull/92#issuecomment-1954509296) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 0b89f1d61aeb31ec2b48ad17e896e3e83e2e564e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 21 Feb 2024 11:37:15 +0000 Subject: [PATCH 1488/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 494c2b36..49ff1d15 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#148](https://github.com/INT-NIT/BEP032tools/pull/148#issuecomment-1956386827) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) -2. 🗣 Commented on [#5485](https://github.com/rhinstaller/anaconda/pull/5485#issuecomment-1956378721) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#1485](https://github.com/openSUSE/osc/pull/1485#issuecomment-1956129523) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#907](https://github.com/ToFuProject/tofu/pull/907#issuecomment-1955565053) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#807](https://github.com/spacetelescope/webbpsf/pull/807#issuecomment-1955185860) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#256](https://github.com/CartoonFan/lutris/pull/256#issuecomment-1954882483) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#158](https://github.com/arfc/transition-scenarios/pull/158#issuecomment-1954800719) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -8. 🗣 Commented on [#93](https://github.com/eastgenomics/eris/pull/93#issuecomment-1954611921) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#796](https://github.com/StingraySoftware/stingray/pull/796#issuecomment-1954547791) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -10. 🗣 Commented on [#92](https://github.com/eastgenomics/eris/pull/92#issuecomment-1954509296) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#71](https://github.com/eastgenomics/trendyQC/pull/71#issuecomment-1956425158) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +2. 🗣 Commented on [#148](https://github.com/INT-NIT/BEP032tools/pull/148#issuecomment-1956386827) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) +3. 🗣 Commented on [#5485](https://github.com/rhinstaller/anaconda/pull/5485#issuecomment-1956378721) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#1485](https://github.com/openSUSE/osc/pull/1485#issuecomment-1956129523) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#907](https://github.com/ToFuProject/tofu/pull/907#issuecomment-1955565053) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#807](https://github.com/spacetelescope/webbpsf/pull/807#issuecomment-1955185860) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +7. 🗣 Commented on [#256](https://github.com/CartoonFan/lutris/pull/256#issuecomment-1954882483) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#158](https://github.com/arfc/transition-scenarios/pull/158#issuecomment-1954800719) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +9. 🗣 Commented on [#93](https://github.com/eastgenomics/eris/pull/93#issuecomment-1954611921) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#796](https://github.com/StingraySoftware/stingray/pull/796#issuecomment-1954547791) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) From 5c7b5baa98d8ea65eddbf1fa09d7b1114b653fe7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 21 Feb 2024 12:50:01 +0000 Subject: [PATCH 1489/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 49ff1d15..bdffbbf4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#71](https://github.com/eastgenomics/trendyQC/pull/71#issuecomment-1956425158) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -2. 🗣 Commented on [#148](https://github.com/INT-NIT/BEP032tools/pull/148#issuecomment-1956386827) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) -3. 🗣 Commented on [#5485](https://github.com/rhinstaller/anaconda/pull/5485#issuecomment-1956378721) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#1485](https://github.com/openSUSE/osc/pull/1485#issuecomment-1956129523) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#907](https://github.com/ToFuProject/tofu/pull/907#issuecomment-1955565053) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#807](https://github.com/spacetelescope/webbpsf/pull/807#issuecomment-1955185860) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -7. 🗣 Commented on [#256](https://github.com/CartoonFan/lutris/pull/256#issuecomment-1954882483) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#158](https://github.com/arfc/transition-scenarios/pull/158#issuecomment-1954800719) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -9. 🗣 Commented on [#93](https://github.com/eastgenomics/eris/pull/93#issuecomment-1954611921) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#796](https://github.com/StingraySoftware/stingray/pull/796#issuecomment-1954547791) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +1. 🗣 Commented on [#97](https://github.com/ITMO-NSS-team/GAMLET/pull/97#issuecomment-1956546037) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +2. 🗣 Commented on [#71](https://github.com/eastgenomics/trendyQC/pull/71#issuecomment-1956425158) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +3. 🗣 Commented on [#148](https://github.com/INT-NIT/BEP032tools/pull/148#issuecomment-1956386827) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) +4. 🗣 Commented on [#5485](https://github.com/rhinstaller/anaconda/pull/5485#issuecomment-1956378721) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#1485](https://github.com/openSUSE/osc/pull/1485#issuecomment-1956129523) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#907](https://github.com/ToFuProject/tofu/pull/907#issuecomment-1955565053) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#807](https://github.com/spacetelescope/webbpsf/pull/807#issuecomment-1955185860) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#256](https://github.com/CartoonFan/lutris/pull/256#issuecomment-1954882483) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#158](https://github.com/arfc/transition-scenarios/pull/158#issuecomment-1954800719) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +10. 🗣 Commented on [#93](https://github.com/eastgenomics/eris/pull/93#issuecomment-1954611921) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From bc2db6727a5c61229d5a93962b777261975bb89a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 21 Feb 2024 13:17:22 +0000 Subject: [PATCH 1490/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bdffbbf4..e2f105fe 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#97](https://github.com/ITMO-NSS-team/GAMLET/pull/97#issuecomment-1956546037) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -2. 🗣 Commented on [#71](https://github.com/eastgenomics/trendyQC/pull/71#issuecomment-1956425158) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -3. 🗣 Commented on [#148](https://github.com/INT-NIT/BEP032tools/pull/148#issuecomment-1956386827) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) -4. 🗣 Commented on [#5485](https://github.com/rhinstaller/anaconda/pull/5485#issuecomment-1956378721) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#1485](https://github.com/openSUSE/osc/pull/1485#issuecomment-1956129523) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#907](https://github.com/ToFuProject/tofu/pull/907#issuecomment-1955565053) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#807](https://github.com/spacetelescope/webbpsf/pull/807#issuecomment-1955185860) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#256](https://github.com/CartoonFan/lutris/pull/256#issuecomment-1954882483) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#158](https://github.com/arfc/transition-scenarios/pull/158#issuecomment-1954800719) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -10. 🗣 Commented on [#93](https://github.com/eastgenomics/eris/pull/93#issuecomment-1954611921) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#120](https://github.com/aimclub/Fedot.Industrial/pull/120#issuecomment-1956592924) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +2. 🗣 Commented on [#97](https://github.com/ITMO-NSS-team/GAMLET/pull/97#issuecomment-1956546037) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +3. 🗣 Commented on [#71](https://github.com/eastgenomics/trendyQC/pull/71#issuecomment-1956425158) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +4. 🗣 Commented on [#148](https://github.com/INT-NIT/BEP032tools/pull/148#issuecomment-1956386827) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) +5. 🗣 Commented on [#5485](https://github.com/rhinstaller/anaconda/pull/5485#issuecomment-1956378721) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#1485](https://github.com/openSUSE/osc/pull/1485#issuecomment-1956129523) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#907](https://github.com/ToFuProject/tofu/pull/907#issuecomment-1955565053) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#807](https://github.com/spacetelescope/webbpsf/pull/807#issuecomment-1955185860) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +9. 🗣 Commented on [#256](https://github.com/CartoonFan/lutris/pull/256#issuecomment-1954882483) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#158](https://github.com/arfc/transition-scenarios/pull/158#issuecomment-1954800719) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) From 71885882c9f9cbc5a82c19fb009d0b56fce98853 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 21 Feb 2024 16:20:13 +0000 Subject: [PATCH 1491/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e2f105fe..f7bd67a2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#120](https://github.com/aimclub/Fedot.Industrial/pull/120#issuecomment-1956592924) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -2. 🗣 Commented on [#97](https://github.com/ITMO-NSS-team/GAMLET/pull/97#issuecomment-1956546037) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -3. 🗣 Commented on [#71](https://github.com/eastgenomics/trendyQC/pull/71#issuecomment-1956425158) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -4. 🗣 Commented on [#148](https://github.com/INT-NIT/BEP032tools/pull/148#issuecomment-1956386827) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) -5. 🗣 Commented on [#5485](https://github.com/rhinstaller/anaconda/pull/5485#issuecomment-1956378721) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#1485](https://github.com/openSUSE/osc/pull/1485#issuecomment-1956129523) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#907](https://github.com/ToFuProject/tofu/pull/907#issuecomment-1955565053) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#807](https://github.com/spacetelescope/webbpsf/pull/807#issuecomment-1955185860) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -9. 🗣 Commented on [#256](https://github.com/CartoonFan/lutris/pull/256#issuecomment-1954882483) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#158](https://github.com/arfc/transition-scenarios/pull/158#issuecomment-1954800719) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +1. 🗣 Commented on [#767](https://github.com/EducationalTestingService/skll/pull/767#issuecomment-1957086068) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +2. 🗣 Commented on [#4463](https://github.com/MDAnalysis/mdanalysis/pull/4463#issuecomment-1957030195) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_sex_check/pull/2#issuecomment-1956987737) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +4. 🗣 Commented on [#120](https://github.com/aimclub/Fedot.Industrial/pull/120#issuecomment-1956592924) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +5. 🗣 Commented on [#97](https://github.com/ITMO-NSS-team/GAMLET/pull/97#issuecomment-1956546037) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +6. 🗣 Commented on [#71](https://github.com/eastgenomics/trendyQC/pull/71#issuecomment-1956425158) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +7. 🗣 Commented on [#148](https://github.com/INT-NIT/BEP032tools/pull/148#issuecomment-1956386827) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) +8. 🗣 Commented on [#5485](https://github.com/rhinstaller/anaconda/pull/5485#issuecomment-1956378721) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#1485](https://github.com/openSUSE/osc/pull/1485#issuecomment-1956129523) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#907](https://github.com/ToFuProject/tofu/pull/907#issuecomment-1955565053) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From 887e0ce9a83fb10febac1ccf5e217ba1863e7177 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 21 Feb 2024 18:37:22 +0000 Subject: [PATCH 1492/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f7bd67a2..09465e6e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#767](https://github.com/EducationalTestingService/skll/pull/767#issuecomment-1957086068) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -2. 🗣 Commented on [#4463](https://github.com/MDAnalysis/mdanalysis/pull/4463#issuecomment-1957030195) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_sex_check/pull/2#issuecomment-1956987737) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -4. 🗣 Commented on [#120](https://github.com/aimclub/Fedot.Industrial/pull/120#issuecomment-1956592924) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -5. 🗣 Commented on [#97](https://github.com/ITMO-NSS-team/GAMLET/pull/97#issuecomment-1956546037) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -6. 🗣 Commented on [#71](https://github.com/eastgenomics/trendyQC/pull/71#issuecomment-1956425158) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -7. 🗣 Commented on [#148](https://github.com/INT-NIT/BEP032tools/pull/148#issuecomment-1956386827) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) -8. 🗣 Commented on [#5485](https://github.com/rhinstaller/anaconda/pull/5485#issuecomment-1956378721) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#1485](https://github.com/openSUSE/osc/pull/1485#issuecomment-1956129523) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#907](https://github.com/ToFuProject/tofu/pull/907#issuecomment-1955565053) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#1](https://github.com/arfc/didymus/pull/1#issuecomment-1957645402) in [arfc/didymus](https://github.com/arfc/didymus) +2. 🗣 Commented on [#767](https://github.com/EducationalTestingService/skll/pull/767#issuecomment-1957086068) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +3. 🗣 Commented on [#4463](https://github.com/MDAnalysis/mdanalysis/pull/4463#issuecomment-1957030195) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_sex_check/pull/2#issuecomment-1956987737) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +5. 🗣 Commented on [#120](https://github.com/aimclub/Fedot.Industrial/pull/120#issuecomment-1956592924) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#97](https://github.com/ITMO-NSS-team/GAMLET/pull/97#issuecomment-1956546037) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +7. 🗣 Commented on [#71](https://github.com/eastgenomics/trendyQC/pull/71#issuecomment-1956425158) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +8. 🗣 Commented on [#148](https://github.com/INT-NIT/BEP032tools/pull/148#issuecomment-1956386827) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) +9. 🗣 Commented on [#5485](https://github.com/rhinstaller/anaconda/pull/5485#issuecomment-1956378721) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#1485](https://github.com/openSUSE/osc/pull/1485#issuecomment-1956129523) in [openSUSE/osc](https://github.com/openSUSE/osc) From 57ced77590433853803cb164cdcabbfd69c318c0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 21 Feb 2024 20:37:50 +0000 Subject: [PATCH 1493/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 09465e6e..ea4c7e7e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/arfc/didymus/pull/1#issuecomment-1957645402) in [arfc/didymus](https://github.com/arfc/didymus) -2. 🗣 Commented on [#767](https://github.com/EducationalTestingService/skll/pull/767#issuecomment-1957086068) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -3. 🗣 Commented on [#4463](https://github.com/MDAnalysis/mdanalysis/pull/4463#issuecomment-1957030195) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_sex_check/pull/2#issuecomment-1956987737) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -5. 🗣 Commented on [#120](https://github.com/aimclub/Fedot.Industrial/pull/120#issuecomment-1956592924) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#97](https://github.com/ITMO-NSS-team/GAMLET/pull/97#issuecomment-1956546037) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -7. 🗣 Commented on [#71](https://github.com/eastgenomics/trendyQC/pull/71#issuecomment-1956425158) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -8. 🗣 Commented on [#148](https://github.com/INT-NIT/BEP032tools/pull/148#issuecomment-1956386827) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) -9. 🗣 Commented on [#5485](https://github.com/rhinstaller/anaconda/pull/5485#issuecomment-1956378721) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#1485](https://github.com/openSUSE/osc/pull/1485#issuecomment-1956129523) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#3](https://github.com/SandroMartens/DBGSOM/pull/3#issuecomment-1957855791) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) +2. 🗣 Commented on [#1](https://github.com/arfc/didymus/pull/1#issuecomment-1957645402) in [arfc/didymus](https://github.com/arfc/didymus) +3. 🗣 Commented on [#767](https://github.com/EducationalTestingService/skll/pull/767#issuecomment-1957086068) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +4. 🗣 Commented on [#4463](https://github.com/MDAnalysis/mdanalysis/pull/4463#issuecomment-1957030195) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_sex_check/pull/2#issuecomment-1956987737) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +6. 🗣 Commented on [#120](https://github.com/aimclub/Fedot.Industrial/pull/120#issuecomment-1956592924) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#97](https://github.com/ITMO-NSS-team/GAMLET/pull/97#issuecomment-1956546037) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +8. 🗣 Commented on [#71](https://github.com/eastgenomics/trendyQC/pull/71#issuecomment-1956425158) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +9. 🗣 Commented on [#148](https://github.com/INT-NIT/BEP032tools/pull/148#issuecomment-1956386827) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) +10. 🗣 Commented on [#5485](https://github.com/rhinstaller/anaconda/pull/5485#issuecomment-1956378721) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 9a78bb61636e74929feaba487046aa82f3593dd3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 01:08:21 +0000 Subject: [PATCH 1494/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ea4c7e7e..0d7a1d4a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3](https://github.com/SandroMartens/DBGSOM/pull/3#issuecomment-1957855791) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) -2. 🗣 Commented on [#1](https://github.com/arfc/didymus/pull/1#issuecomment-1957645402) in [arfc/didymus](https://github.com/arfc/didymus) -3. 🗣 Commented on [#767](https://github.com/EducationalTestingService/skll/pull/767#issuecomment-1957086068) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -4. 🗣 Commented on [#4463](https://github.com/MDAnalysis/mdanalysis/pull/4463#issuecomment-1957030195) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_sex_check/pull/2#issuecomment-1956987737) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -6. 🗣 Commented on [#120](https://github.com/aimclub/Fedot.Industrial/pull/120#issuecomment-1956592924) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#97](https://github.com/ITMO-NSS-team/GAMLET/pull/97#issuecomment-1956546037) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -8. 🗣 Commented on [#71](https://github.com/eastgenomics/trendyQC/pull/71#issuecomment-1956425158) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -9. 🗣 Commented on [#148](https://github.com/INT-NIT/BEP032tools/pull/148#issuecomment-1956386827) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) -10. 🗣 Commented on [#5485](https://github.com/rhinstaller/anaconda/pull/5485#issuecomment-1956378721) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#1498](https://github.com/spacetelescope/jwql/pull/1498#issuecomment-1958473990) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#3](https://github.com/SandroMartens/DBGSOM/pull/3#issuecomment-1957855791) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) +3. 🗣 Commented on [#1](https://github.com/arfc/didymus/pull/1#issuecomment-1957645402) in [arfc/didymus](https://github.com/arfc/didymus) +4. 🗣 Commented on [#767](https://github.com/EducationalTestingService/skll/pull/767#issuecomment-1957086068) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +5. 🗣 Commented on [#4463](https://github.com/MDAnalysis/mdanalysis/pull/4463#issuecomment-1957030195) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_sex_check/pull/2#issuecomment-1956987737) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +7. 🗣 Commented on [#120](https://github.com/aimclub/Fedot.Industrial/pull/120#issuecomment-1956592924) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +8. 🗣 Commented on [#97](https://github.com/ITMO-NSS-team/GAMLET/pull/97#issuecomment-1956546037) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +9. 🗣 Commented on [#71](https://github.com/eastgenomics/trendyQC/pull/71#issuecomment-1956425158) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +10. 🗣 Commented on [#148](https://github.com/INT-NIT/BEP032tools/pull/148#issuecomment-1956386827) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) From e5d58aa0938ebb47397b896be2f357cce45601f1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 03:16:26 +0000 Subject: [PATCH 1495/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0d7a1d4a..987eabd4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1498](https://github.com/spacetelescope/jwql/pull/1498#issuecomment-1958473990) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#3](https://github.com/SandroMartens/DBGSOM/pull/3#issuecomment-1957855791) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) -3. 🗣 Commented on [#1](https://github.com/arfc/didymus/pull/1#issuecomment-1957645402) in [arfc/didymus](https://github.com/arfc/didymus) -4. 🗣 Commented on [#767](https://github.com/EducationalTestingService/skll/pull/767#issuecomment-1957086068) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -5. 🗣 Commented on [#4463](https://github.com/MDAnalysis/mdanalysis/pull/4463#issuecomment-1957030195) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_sex_check/pull/2#issuecomment-1956987737) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -7. 🗣 Commented on [#120](https://github.com/aimclub/Fedot.Industrial/pull/120#issuecomment-1956592924) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -8. 🗣 Commented on [#97](https://github.com/ITMO-NSS-team/GAMLET/pull/97#issuecomment-1956546037) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -9. 🗣 Commented on [#71](https://github.com/eastgenomics/trendyQC/pull/71#issuecomment-1956425158) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -10. 🗣 Commented on [#148](https://github.com/INT-NIT/BEP032tools/pull/148#issuecomment-1956386827) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) +1. 🗣 Commented on [#3059](https://github.com/dipy/dipy/pull/3059#issuecomment-1958567131) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#1498](https://github.com/spacetelescope/jwql/pull/1498#issuecomment-1958473990) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#3](https://github.com/SandroMartens/DBGSOM/pull/3#issuecomment-1957855791) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) +4. 🗣 Commented on [#1](https://github.com/arfc/didymus/pull/1#issuecomment-1957645402) in [arfc/didymus](https://github.com/arfc/didymus) +5. 🗣 Commented on [#767](https://github.com/EducationalTestingService/skll/pull/767#issuecomment-1957086068) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +6. 🗣 Commented on [#4463](https://github.com/MDAnalysis/mdanalysis/pull/4463#issuecomment-1957030195) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_sex_check/pull/2#issuecomment-1956987737) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +8. 🗣 Commented on [#120](https://github.com/aimclub/Fedot.Industrial/pull/120#issuecomment-1956592924) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +9. 🗣 Commented on [#97](https://github.com/ITMO-NSS-team/GAMLET/pull/97#issuecomment-1956546037) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +10. 🗣 Commented on [#71](https://github.com/eastgenomics/trendyQC/pull/71#issuecomment-1956425158) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) From 60ba01d51d6529b0f12b46483efd01d5c7baf62f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 05:16:21 +0000 Subject: [PATCH 1496/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 987eabd4..dd32e26e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3059](https://github.com/dipy/dipy/pull/3059#issuecomment-1958567131) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#1498](https://github.com/spacetelescope/jwql/pull/1498#issuecomment-1958473990) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#3](https://github.com/SandroMartens/DBGSOM/pull/3#issuecomment-1957855791) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) -4. 🗣 Commented on [#1](https://github.com/arfc/didymus/pull/1#issuecomment-1957645402) in [arfc/didymus](https://github.com/arfc/didymus) -5. 🗣 Commented on [#767](https://github.com/EducationalTestingService/skll/pull/767#issuecomment-1957086068) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -6. 🗣 Commented on [#4463](https://github.com/MDAnalysis/mdanalysis/pull/4463#issuecomment-1957030195) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_sex_check/pull/2#issuecomment-1956987737) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -8. 🗣 Commented on [#120](https://github.com/aimclub/Fedot.Industrial/pull/120#issuecomment-1956592924) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -9. 🗣 Commented on [#97](https://github.com/ITMO-NSS-team/GAMLET/pull/97#issuecomment-1956546037) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -10. 🗣 Commented on [#71](https://github.com/eastgenomics/trendyQC/pull/71#issuecomment-1956425158) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +1. 🗣 Commented on [#257](https://github.com/CartoonFan/lutris/pull/257#issuecomment-1958712034) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#3059](https://github.com/dipy/dipy/pull/3059#issuecomment-1958567131) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#1498](https://github.com/spacetelescope/jwql/pull/1498#issuecomment-1958473990) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#3](https://github.com/SandroMartens/DBGSOM/pull/3#issuecomment-1957855791) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) +5. 🗣 Commented on [#1](https://github.com/arfc/didymus/pull/1#issuecomment-1957645402) in [arfc/didymus](https://github.com/arfc/didymus) +6. 🗣 Commented on [#767](https://github.com/EducationalTestingService/skll/pull/767#issuecomment-1957086068) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +7. 🗣 Commented on [#4463](https://github.com/MDAnalysis/mdanalysis/pull/4463#issuecomment-1957030195) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_sex_check/pull/2#issuecomment-1956987737) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +9. 🗣 Commented on [#120](https://github.com/aimclub/Fedot.Industrial/pull/120#issuecomment-1956592924) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#97](https://github.com/ITMO-NSS-team/GAMLET/pull/97#issuecomment-1956546037) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) From ddf332584d887cb1c1130df66ccda27a63aacd6d Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Thu, 22 Feb 2024 11:35:31 +0530 Subject: [PATCH 1497/2173] fix: changed to tilde equals (~=) --- requirements/base.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/requirements/base.txt b/requirements/base.txt index 98f68e0d..90fb8ddb 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,12 +1,12 @@ -requests>=2.31.0 -flask>=3.0.0 -gunicorn>=21.2.0 -pycodestyle>=2.11.1 -flake8>=6.1.0 -PyYAML>=6.0.1 -unidiff>=0.7.5 -autopep8>=2.0.4 -markdown>=3.5.1 -beautifulsoup4>=4.12.2 -markupsafe>=2.1.3 -python-dotenv>=1.0.0 +requests~=2.31.0 +flask~=3.0.0 +gunicorn~=21.2.0 +pycodestyle~=2.11.1 +flake8~=6.1.0 +PyYAML~=6.0.1 +unidiff~=0.7.5 +autopep8~=2.0.4 +markdown~=3.5.1 +beautifulsoup4~=4.12.2 +markupsafe~=2.1.3 +python-dotenv~=1.0.0 From e8e4a23cad455b00b7a58925a9a0dc239aec001e Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Thu, 22 Feb 2024 11:36:17 +0530 Subject: [PATCH 1498/2173] fix: changed to tilde equals (~=). --- requirements/test.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements/test.txt b/requirements/test.txt index 89e8747d..2020cb9e 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -1,6 +1,6 @@ -r base.txt -pytest>=7.4.3 -pytest-flask>=1.3.0 -pytest-mock>=3.12.0 -mock>=5.1.0 +pytest~=7.4.3 +pytest-flask~=1.3.0 +pytest-mock~=3.12.0 +mock~=5.1.0 From d082dfb956209f451c3ad79b9fbc8d97d46b38e4 Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Thu, 22 Feb 2024 11:36:48 +0530 Subject: [PATCH 1499/2173] chore: removed extra lines. --- requirements/test.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements/test.txt b/requirements/test.txt index 2020cb9e..b680ac14 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -3,4 +3,3 @@ pytest~=7.4.3 pytest-flask~=1.3.0 pytest-mock~=3.12.0 mock~=5.1.0 - From 729f921129883763c436905ccb4aef866c33a27a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 09:16:23 +0000 Subject: [PATCH 1500/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dd32e26e..ffb9b229 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#257](https://github.com/CartoonFan/lutris/pull/257#issuecomment-1958712034) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#3059](https://github.com/dipy/dipy/pull/3059#issuecomment-1958567131) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#1498](https://github.com/spacetelescope/jwql/pull/1498#issuecomment-1958473990) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#3](https://github.com/SandroMartens/DBGSOM/pull/3#issuecomment-1957855791) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) -5. 🗣 Commented on [#1](https://github.com/arfc/didymus/pull/1#issuecomment-1957645402) in [arfc/didymus](https://github.com/arfc/didymus) -6. 🗣 Commented on [#767](https://github.com/EducationalTestingService/skll/pull/767#issuecomment-1957086068) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -7. 🗣 Commented on [#4463](https://github.com/MDAnalysis/mdanalysis/pull/4463#issuecomment-1957030195) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_sex_check/pull/2#issuecomment-1956987737) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -9. 🗣 Commented on [#120](https://github.com/aimclub/Fedot.Industrial/pull/120#issuecomment-1956592924) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#97](https://github.com/ITMO-NSS-team/GAMLET/pull/97#issuecomment-1956546037) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +1. 🗣 Commented on [#2954](https://github.com/astropy/astroquery/pull/2954#issuecomment-1959009702) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#1337](https://github.com/rpm-software-management/mock/pull/1337#issuecomment-1958999991) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +3. 🗣 Commented on [#5486](https://github.com/rhinstaller/anaconda/pull/5486#issuecomment-1958961127) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#257](https://github.com/CartoonFan/lutris/pull/257#issuecomment-1958712034) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#3059](https://github.com/dipy/dipy/pull/3059#issuecomment-1958567131) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#1498](https://github.com/spacetelescope/jwql/pull/1498#issuecomment-1958473990) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#3](https://github.com/SandroMartens/DBGSOM/pull/3#issuecomment-1957855791) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) +8. 🗣 Commented on [#1](https://github.com/arfc/didymus/pull/1#issuecomment-1957645402) in [arfc/didymus](https://github.com/arfc/didymus) +9. 🗣 Commented on [#767](https://github.com/EducationalTestingService/skll/pull/767#issuecomment-1957086068) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +10. 🗣 Commented on [#4463](https://github.com/MDAnalysis/mdanalysis/pull/4463#issuecomment-1957030195) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 13c7f47f35740f3a359762d1316a21cf450a34a4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 10:16:16 +0000 Subject: [PATCH 1501/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ffb9b229..bb47f0f6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2954](https://github.com/astropy/astroquery/pull/2954#issuecomment-1959009702) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#1337](https://github.com/rpm-software-management/mock/pull/1337#issuecomment-1958999991) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -3. 🗣 Commented on [#5486](https://github.com/rhinstaller/anaconda/pull/5486#issuecomment-1958961127) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#257](https://github.com/CartoonFan/lutris/pull/257#issuecomment-1958712034) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#3059](https://github.com/dipy/dipy/pull/3059#issuecomment-1958567131) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#1498](https://github.com/spacetelescope/jwql/pull/1498#issuecomment-1958473990) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#3](https://github.com/SandroMartens/DBGSOM/pull/3#issuecomment-1957855791) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) -8. 🗣 Commented on [#1](https://github.com/arfc/didymus/pull/1#issuecomment-1957645402) in [arfc/didymus](https://github.com/arfc/didymus) -9. 🗣 Commented on [#767](https://github.com/EducationalTestingService/skll/pull/767#issuecomment-1957086068) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -10. 🗣 Commented on [#4463](https://github.com/MDAnalysis/mdanalysis/pull/4463#issuecomment-1957030195) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#3870](https://github.com/privacyidea/privacyidea/pull/3870#issuecomment-1959075974) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#2954](https://github.com/astropy/astroquery/pull/2954#issuecomment-1959009702) in [astropy/astroquery](https://github.com/astropy/astroquery) +3. 🗣 Commented on [#1337](https://github.com/rpm-software-management/mock/pull/1337#issuecomment-1958999991) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +4. 🗣 Commented on [#5486](https://github.com/rhinstaller/anaconda/pull/5486#issuecomment-1958961127) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#257](https://github.com/CartoonFan/lutris/pull/257#issuecomment-1958712034) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#3059](https://github.com/dipy/dipy/pull/3059#issuecomment-1958567131) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#1498](https://github.com/spacetelescope/jwql/pull/1498#issuecomment-1958473990) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#3](https://github.com/SandroMartens/DBGSOM/pull/3#issuecomment-1957855791) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) +9. 🗣 Commented on [#1](https://github.com/arfc/didymus/pull/1#issuecomment-1957645402) in [arfc/didymus](https://github.com/arfc/didymus) +10. 🗣 Commented on [#767](https://github.com/EducationalTestingService/skll/pull/767#issuecomment-1957086068) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) From eca539e64c73faf350ddec546dbc8820fbaf7509 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 11:12:46 +0000 Subject: [PATCH 1502/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bb47f0f6..d1b91f58 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3870](https://github.com/privacyidea/privacyidea/pull/3870#issuecomment-1959075974) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#2954](https://github.com/astropy/astroquery/pull/2954#issuecomment-1959009702) in [astropy/astroquery](https://github.com/astropy/astroquery) -3. 🗣 Commented on [#1337](https://github.com/rpm-software-management/mock/pull/1337#issuecomment-1958999991) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -4. 🗣 Commented on [#5486](https://github.com/rhinstaller/anaconda/pull/5486#issuecomment-1958961127) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#257](https://github.com/CartoonFan/lutris/pull/257#issuecomment-1958712034) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#3059](https://github.com/dipy/dipy/pull/3059#issuecomment-1958567131) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#1498](https://github.com/spacetelescope/jwql/pull/1498#issuecomment-1958473990) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#3](https://github.com/SandroMartens/DBGSOM/pull/3#issuecomment-1957855791) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) -9. 🗣 Commented on [#1](https://github.com/arfc/didymus/pull/1#issuecomment-1957645402) in [arfc/didymus](https://github.com/arfc/didymus) -10. 🗣 Commented on [#767](https://github.com/EducationalTestingService/skll/pull/767#issuecomment-1957086068) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +1. 🗣 Commented on [#522](https://github.com/askap-vast/vast-tools/pull/522#issuecomment-1959200800) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +2. 🗣 Commented on [#3870](https://github.com/privacyidea/privacyidea/pull/3870#issuecomment-1959075974) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#2954](https://github.com/astropy/astroquery/pull/2954#issuecomment-1959009702) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#1337](https://github.com/rpm-software-management/mock/pull/1337#issuecomment-1958999991) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +5. 🗣 Commented on [#5486](https://github.com/rhinstaller/anaconda/pull/5486#issuecomment-1958961127) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#257](https://github.com/CartoonFan/lutris/pull/257#issuecomment-1958712034) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#3059](https://github.com/dipy/dipy/pull/3059#issuecomment-1958567131) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#1498](https://github.com/spacetelescope/jwql/pull/1498#issuecomment-1958473990) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#3](https://github.com/SandroMartens/DBGSOM/pull/3#issuecomment-1957855791) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) +10. 🗣 Commented on [#1](https://github.com/arfc/didymus/pull/1#issuecomment-1957645402) in [arfc/didymus](https://github.com/arfc/didymus) From 63172d1f4a54a332775360597eaecd5ad2f9b32b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 12:48:53 +0000 Subject: [PATCH 1503/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d1b91f58..2c3be581 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#522](https://github.com/askap-vast/vast-tools/pull/522#issuecomment-1959200800) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -2. 🗣 Commented on [#3870](https://github.com/privacyidea/privacyidea/pull/3870#issuecomment-1959075974) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#2954](https://github.com/astropy/astroquery/pull/2954#issuecomment-1959009702) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#1337](https://github.com/rpm-software-management/mock/pull/1337#issuecomment-1958999991) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -5. 🗣 Commented on [#5486](https://github.com/rhinstaller/anaconda/pull/5486#issuecomment-1958961127) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#257](https://github.com/CartoonFan/lutris/pull/257#issuecomment-1958712034) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#3059](https://github.com/dipy/dipy/pull/3059#issuecomment-1958567131) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#1498](https://github.com/spacetelescope/jwql/pull/1498#issuecomment-1958473990) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#3](https://github.com/SandroMartens/DBGSOM/pull/3#issuecomment-1957855791) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) -10. 🗣 Commented on [#1](https://github.com/arfc/didymus/pull/1#issuecomment-1957645402) in [arfc/didymus](https://github.com/arfc/didymus) +1. 🗣 Commented on [#121](https://github.com/aimclub/Fedot.Industrial/pull/121#issuecomment-1959360023) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +2. 🗣 Commented on [#522](https://github.com/askap-vast/vast-tools/pull/522#issuecomment-1959200800) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +3. 🗣 Commented on [#3870](https://github.com/privacyidea/privacyidea/pull/3870#issuecomment-1959075974) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +4. 🗣 Commented on [#2954](https://github.com/astropy/astroquery/pull/2954#issuecomment-1959009702) in [astropy/astroquery](https://github.com/astropy/astroquery) +5. 🗣 Commented on [#1337](https://github.com/rpm-software-management/mock/pull/1337#issuecomment-1958999991) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +6. 🗣 Commented on [#5486](https://github.com/rhinstaller/anaconda/pull/5486#issuecomment-1958961127) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#257](https://github.com/CartoonFan/lutris/pull/257#issuecomment-1958712034) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#3059](https://github.com/dipy/dipy/pull/3059#issuecomment-1958567131) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#1498](https://github.com/spacetelescope/jwql/pull/1498#issuecomment-1958473990) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#3](https://github.com/SandroMartens/DBGSOM/pull/3#issuecomment-1957855791) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) From 2d4891a2ede63e165b11aa9ebe2c13920041ee26 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 14:37:25 +0000 Subject: [PATCH 1504/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2c3be581..c2cb141e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#121](https://github.com/aimclub/Fedot.Industrial/pull/121#issuecomment-1959360023) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -2. 🗣 Commented on [#522](https://github.com/askap-vast/vast-tools/pull/522#issuecomment-1959200800) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -3. 🗣 Commented on [#3870](https://github.com/privacyidea/privacyidea/pull/3870#issuecomment-1959075974) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -4. 🗣 Commented on [#2954](https://github.com/astropy/astroquery/pull/2954#issuecomment-1959009702) in [astropy/astroquery](https://github.com/astropy/astroquery) -5. 🗣 Commented on [#1337](https://github.com/rpm-software-management/mock/pull/1337#issuecomment-1958999991) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -6. 🗣 Commented on [#5486](https://github.com/rhinstaller/anaconda/pull/5486#issuecomment-1958961127) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#257](https://github.com/CartoonFan/lutris/pull/257#issuecomment-1958712034) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#3059](https://github.com/dipy/dipy/pull/3059#issuecomment-1958567131) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#1498](https://github.com/spacetelescope/jwql/pull/1498#issuecomment-1958473990) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#3](https://github.com/SandroMartens/DBGSOM/pull/3#issuecomment-1957855791) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) +1. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_sex_check/pull/3#issuecomment-1959553785) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +2. 🗣 Commented on [#121](https://github.com/aimclub/Fedot.Industrial/pull/121#issuecomment-1959360023) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +3. 🗣 Commented on [#522](https://github.com/askap-vast/vast-tools/pull/522#issuecomment-1959200800) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +4. 🗣 Commented on [#3870](https://github.com/privacyidea/privacyidea/pull/3870#issuecomment-1959075974) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#2954](https://github.com/astropy/astroquery/pull/2954#issuecomment-1959009702) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#1337](https://github.com/rpm-software-management/mock/pull/1337#issuecomment-1958999991) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +7. 🗣 Commented on [#5486](https://github.com/rhinstaller/anaconda/pull/5486#issuecomment-1958961127) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#257](https://github.com/CartoonFan/lutris/pull/257#issuecomment-1958712034) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#3059](https://github.com/dipy/dipy/pull/3059#issuecomment-1958567131) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#1498](https://github.com/spacetelescope/jwql/pull/1498#issuecomment-1958473990) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From ea7f7ff36ec58de7e183964a3ec1e0e4749f9a3e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 16:38:30 +0000 Subject: [PATCH 1505/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c2cb141e..53a219dd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_sex_check/pull/3#issuecomment-1959553785) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -2. 🗣 Commented on [#121](https://github.com/aimclub/Fedot.Industrial/pull/121#issuecomment-1959360023) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -3. 🗣 Commented on [#522](https://github.com/askap-vast/vast-tools/pull/522#issuecomment-1959200800) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -4. 🗣 Commented on [#3870](https://github.com/privacyidea/privacyidea/pull/3870#issuecomment-1959075974) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#2954](https://github.com/astropy/astroquery/pull/2954#issuecomment-1959009702) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#1337](https://github.com/rpm-software-management/mock/pull/1337#issuecomment-1958999991) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -7. 🗣 Commented on [#5486](https://github.com/rhinstaller/anaconda/pull/5486#issuecomment-1958961127) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#257](https://github.com/CartoonFan/lutris/pull/257#issuecomment-1958712034) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#3059](https://github.com/dipy/dipy/pull/3059#issuecomment-1958567131) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#1498](https://github.com/spacetelescope/jwql/pull/1498#issuecomment-1958473990) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#3073](https://github.com/dipy/dipy/pull/3073#issuecomment-1959801527) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_sex_check/pull/3#issuecomment-1959553785) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +3. 🗣 Commented on [#121](https://github.com/aimclub/Fedot.Industrial/pull/121#issuecomment-1959360023) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#522](https://github.com/askap-vast/vast-tools/pull/522#issuecomment-1959200800) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +5. 🗣 Commented on [#3870](https://github.com/privacyidea/privacyidea/pull/3870#issuecomment-1959075974) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#2954](https://github.com/astropy/astroquery/pull/2954#issuecomment-1959009702) in [astropy/astroquery](https://github.com/astropy/astroquery) +7. 🗣 Commented on [#1337](https://github.com/rpm-software-management/mock/pull/1337#issuecomment-1958999991) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +8. 🗣 Commented on [#5486](https://github.com/rhinstaller/anaconda/pull/5486#issuecomment-1958961127) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#257](https://github.com/CartoonFan/lutris/pull/257#issuecomment-1958712034) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#3059](https://github.com/dipy/dipy/pull/3059#issuecomment-1958567131) in [dipy/dipy](https://github.com/dipy/dipy) From 3b0a6dfde7e74883f2d118efba15ca9d61acb96c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 17:36:59 +0000 Subject: [PATCH 1506/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 53a219dd..6b2625be 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3073](https://github.com/dipy/dipy/pull/3073#issuecomment-1959801527) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_sex_check/pull/3#issuecomment-1959553785) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -3. 🗣 Commented on [#121](https://github.com/aimclub/Fedot.Industrial/pull/121#issuecomment-1959360023) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#522](https://github.com/askap-vast/vast-tools/pull/522#issuecomment-1959200800) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -5. 🗣 Commented on [#3870](https://github.com/privacyidea/privacyidea/pull/3870#issuecomment-1959075974) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#2954](https://github.com/astropy/astroquery/pull/2954#issuecomment-1959009702) in [astropy/astroquery](https://github.com/astropy/astroquery) -7. 🗣 Commented on [#1337](https://github.com/rpm-software-management/mock/pull/1337#issuecomment-1958999991) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -8. 🗣 Commented on [#5486](https://github.com/rhinstaller/anaconda/pull/5486#issuecomment-1958961127) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#257](https://github.com/CartoonFan/lutris/pull/257#issuecomment-1958712034) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#3059](https://github.com/dipy/dipy/pull/3059#issuecomment-1958567131) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +2. 🗣 Commented on [#736](https://github.com/OpenFreeEnergy/openfe/pull/736#issuecomment-1959922197) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#3073](https://github.com/dipy/dipy/pull/3073#issuecomment-1959801527) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_sex_check/pull/3#issuecomment-1959553785) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +5. 🗣 Commented on [#121](https://github.com/aimclub/Fedot.Industrial/pull/121#issuecomment-1959360023) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#522](https://github.com/askap-vast/vast-tools/pull/522#issuecomment-1959200800) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +7. 🗣 Commented on [#3870](https://github.com/privacyidea/privacyidea/pull/3870#issuecomment-1959075974) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#2954](https://github.com/astropy/astroquery/pull/2954#issuecomment-1959009702) in [astropy/astroquery](https://github.com/astropy/astroquery) +9. 🗣 Commented on [#1337](https://github.com/rpm-software-management/mock/pull/1337#issuecomment-1958999991) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +10. 🗣 Commented on [#5486](https://github.com/rhinstaller/anaconda/pull/5486#issuecomment-1958961127) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 100093fcb071f676e9afc81436b4c6427f6eac3e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 22 Feb 2024 19:37:16 +0000 Subject: [PATCH 1507/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6b2625be..2dbc99c2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -2. 🗣 Commented on [#736](https://github.com/OpenFreeEnergy/openfe/pull/736#issuecomment-1959922197) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#3073](https://github.com/dipy/dipy/pull/3073#issuecomment-1959801527) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_sex_check/pull/3#issuecomment-1959553785) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -5. 🗣 Commented on [#121](https://github.com/aimclub/Fedot.Industrial/pull/121#issuecomment-1959360023) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#522](https://github.com/askap-vast/vast-tools/pull/522#issuecomment-1959200800) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -7. 🗣 Commented on [#3870](https://github.com/privacyidea/privacyidea/pull/3870#issuecomment-1959075974) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#2954](https://github.com/astropy/astroquery/pull/2954#issuecomment-1959009702) in [astropy/astroquery](https://github.com/astropy/astroquery) -9. 🗣 Commented on [#1337](https://github.com/rpm-software-management/mock/pull/1337#issuecomment-1958999991) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -10. 🗣 Commented on [#5486](https://github.com/rhinstaller/anaconda/pull/5486#issuecomment-1958961127) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +3. 🗣 Commented on [#736](https://github.com/OpenFreeEnergy/openfe/pull/736#issuecomment-1959922197) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#3073](https://github.com/dipy/dipy/pull/3073#issuecomment-1959801527) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_sex_check/pull/3#issuecomment-1959553785) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +6. 🗣 Commented on [#121](https://github.com/aimclub/Fedot.Industrial/pull/121#issuecomment-1959360023) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#522](https://github.com/askap-vast/vast-tools/pull/522#issuecomment-1959200800) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +8. 🗣 Commented on [#3870](https://github.com/privacyidea/privacyidea/pull/3870#issuecomment-1959075974) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#2954](https://github.com/astropy/astroquery/pull/2954#issuecomment-1959009702) in [astropy/astroquery](https://github.com/astropy/astroquery) +10. 🗣 Commented on [#1337](https://github.com/rpm-software-management/mock/pull/1337#issuecomment-1958999991) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) From 0aa56e776991dd42064240d360fd3918b0c7836b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 23 Feb 2024 01:07:32 +0000 Subject: [PATCH 1508/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2dbc99c2..8f20d423 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -3. 🗣 Commented on [#736](https://github.com/OpenFreeEnergy/openfe/pull/736#issuecomment-1959922197) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#3073](https://github.com/dipy/dipy/pull/3073#issuecomment-1959801527) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_sex_check/pull/3#issuecomment-1959553785) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -6. 🗣 Commented on [#121](https://github.com/aimclub/Fedot.Industrial/pull/121#issuecomment-1959360023) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#522](https://github.com/askap-vast/vast-tools/pull/522#issuecomment-1959200800) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -8. 🗣 Commented on [#3870](https://github.com/privacyidea/privacyidea/pull/3870#issuecomment-1959075974) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#2954](https://github.com/astropy/astroquery/pull/2954#issuecomment-1959009702) in [astropy/astroquery](https://github.com/astropy/astroquery) -10. 🗣 Commented on [#1337](https://github.com/rpm-software-management/mock/pull/1337#issuecomment-1958999991) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +1. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +4. 🗣 Commented on [#736](https://github.com/OpenFreeEnergy/openfe/pull/736#issuecomment-1959922197) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#3073](https://github.com/dipy/dipy/pull/3073#issuecomment-1959801527) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_sex_check/pull/3#issuecomment-1959553785) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +7. 🗣 Commented on [#121](https://github.com/aimclub/Fedot.Industrial/pull/121#issuecomment-1959360023) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +8. 🗣 Commented on [#522](https://github.com/askap-vast/vast-tools/pull/522#issuecomment-1959200800) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +9. 🗣 Commented on [#3870](https://github.com/privacyidea/privacyidea/pull/3870#issuecomment-1959075974) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#2954](https://github.com/astropy/astroquery/pull/2954#issuecomment-1959009702) in [astropy/astroquery](https://github.com/astropy/astroquery) From 1def47e19f83900136b05caca80c058dc1d34d39 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 23 Feb 2024 06:37:14 +0000 Subject: [PATCH 1509/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8f20d423..444b4171 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -4. 🗣 Commented on [#736](https://github.com/OpenFreeEnergy/openfe/pull/736#issuecomment-1959922197) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#3073](https://github.com/dipy/dipy/pull/3073#issuecomment-1959801527) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_sex_check/pull/3#issuecomment-1959553785) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -7. 🗣 Commented on [#121](https://github.com/aimclub/Fedot.Industrial/pull/121#issuecomment-1959360023) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -8. 🗣 Commented on [#522](https://github.com/askap-vast/vast-tools/pull/522#issuecomment-1959200800) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -9. 🗣 Commented on [#3870](https://github.com/privacyidea/privacyidea/pull/3870#issuecomment-1959075974) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#2954](https://github.com/astropy/astroquery/pull/2954#issuecomment-1959009702) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) +2. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +5. 🗣 Commented on [#736](https://github.com/OpenFreeEnergy/openfe/pull/736#issuecomment-1959922197) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#3073](https://github.com/dipy/dipy/pull/3073#issuecomment-1959801527) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_sex_check/pull/3#issuecomment-1959553785) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +8. 🗣 Commented on [#121](https://github.com/aimclub/Fedot.Industrial/pull/121#issuecomment-1959360023) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +9. 🗣 Commented on [#522](https://github.com/askap-vast/vast-tools/pull/522#issuecomment-1959200800) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +10. 🗣 Commented on [#3870](https://github.com/privacyidea/privacyidea/pull/3870#issuecomment-1959075974) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From af3617a6cca20f5c160ec1ab9371304269ed6810 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 23 Feb 2024 09:15:10 +0000 Subject: [PATCH 1510/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 444b4171..fcebe825 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) -2. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -5. 🗣 Commented on [#736](https://github.com/OpenFreeEnergy/openfe/pull/736#issuecomment-1959922197) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#3073](https://github.com/dipy/dipy/pull/3073#issuecomment-1959801527) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_sex_check/pull/3#issuecomment-1959553785) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -8. 🗣 Commented on [#121](https://github.com/aimclub/Fedot.Industrial/pull/121#issuecomment-1959360023) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -9. 🗣 Commented on [#522](https://github.com/askap-vast/vast-tools/pull/522#issuecomment-1959200800) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -10. 🗣 Commented on [#3870](https://github.com/privacyidea/privacyidea/pull/3870#issuecomment-1959075974) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +2. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) +3. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +6. 🗣 Commented on [#736](https://github.com/OpenFreeEnergy/openfe/pull/736#issuecomment-1959922197) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#3073](https://github.com/dipy/dipy/pull/3073#issuecomment-1959801527) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_sex_check/pull/3#issuecomment-1959553785) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +9. 🗣 Commented on [#121](https://github.com/aimclub/Fedot.Industrial/pull/121#issuecomment-1959360023) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#522](https://github.com/askap-vast/vast-tools/pull/522#issuecomment-1959200800) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) From bc39712b5f62332aeebd2d265a00550da137bd27 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 23 Feb 2024 09:37:04 +0000 Subject: [PATCH 1511/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fcebe825..cf50a5cf 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -2. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) -3. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -6. 🗣 Commented on [#736](https://github.com/OpenFreeEnergy/openfe/pull/736#issuecomment-1959922197) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#3073](https://github.com/dipy/dipy/pull/3073#issuecomment-1959801527) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_sex_check/pull/3#issuecomment-1959553785) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -9. 🗣 Commented on [#121](https://github.com/aimclub/Fedot.Industrial/pull/121#issuecomment-1959360023) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#522](https://github.com/askap-vast/vast-tools/pull/522#issuecomment-1959200800) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +1. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +3. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) +4. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +7. 🗣 Commented on [#736](https://github.com/OpenFreeEnergy/openfe/pull/736#issuecomment-1959922197) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#3073](https://github.com/dipy/dipy/pull/3073#issuecomment-1959801527) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_sex_check/pull/3#issuecomment-1959553785) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +10. 🗣 Commented on [#121](https://github.com/aimclub/Fedot.Industrial/pull/121#issuecomment-1959360023) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) From 7987d15292fc6047aebc798a899df6b43e028afe Mon Sep 17 00:00:00 2001 From: Unique-Usman Date: Fri, 23 Feb 2024 16:33:02 +0530 Subject: [PATCH 1512/2173] Ensure compatibility with Python 3.9 and later Prior to Python 3.9, the `collections` module contained `Mapping` directly. Starting from Python 3.9, `Mapping` is moved to `collections.abc`. This commit adds a compatibility check to import `Mapping` correctly for Python versions 3.9 and later, ensuring the code works across different Python versions. I also replaced all the instance of `collections.Mapping` to `Mapping`. --- pep8speaks/utils.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pep8speaks/utils.py b/pep8speaks/utils.py index 4547f165..c8052428 100644 --- a/pep8speaks/utils.py +++ b/pep8speaks/utils.py @@ -1,4 +1,3 @@ -import collections import fnmatch import hmac import json @@ -8,6 +7,10 @@ from flask import Response as FResponse import requests from pep8speaks.constants import GITHUB_TOKEN, BASE_URL +try: + from collections.abc import Mapping +except ImportError: + from collections import Mapping def query_request(query=None, method="GET", **kwargs): @@ -45,8 +48,8 @@ def update_dict(base, head): """ for key, value in head.items(): if key in base: - if isinstance(base, collections.Mapping): - if isinstance(value, collections.Mapping): + if isinstance(base, Mapping): + if isinstance(value, Mapping): base[key] = update_dict(base.get(key, {}), value) else: base[key] = head[key] From 5577569317445c43cb1a21f5d5711e313064a9d0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 23 Feb 2024 15:18:29 +0000 Subject: [PATCH 1513/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cf50a5cf..7a6c0001 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -3. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) -4. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -7. 🗣 Commented on [#736](https://github.com/OpenFreeEnergy/openfe/pull/736#issuecomment-1959922197) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#3073](https://github.com/dipy/dipy/pull/3073#issuecomment-1959801527) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_sex_check/pull/3#issuecomment-1959553785) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -10. 🗣 Commented on [#121](https://github.com/aimclub/Fedot.Industrial/pull/121#issuecomment-1959360023) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +1. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) +3. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +4. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) +5. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +8. 🗣 Commented on [#736](https://github.com/OpenFreeEnergy/openfe/pull/736#issuecomment-1959922197) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#3073](https://github.com/dipy/dipy/pull/3073#issuecomment-1959801527) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_sex_check/pull/3#issuecomment-1959553785) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) From bc913286cca09e63acc739031c9d0df5a8e034b8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 23 Feb 2024 16:37:18 +0000 Subject: [PATCH 1514/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7a6c0001..8f9b6234 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) -3. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -4. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) -5. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -8. 🗣 Commented on [#736](https://github.com/OpenFreeEnergy/openfe/pull/736#issuecomment-1959922197) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#3073](https://github.com/dipy/dipy/pull/3073#issuecomment-1959801527) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_sex_check/pull/3#issuecomment-1959553785) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +1. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +5. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) +6. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +7. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +9. 🗣 Commented on [#736](https://github.com/OpenFreeEnergy/openfe/pull/736#issuecomment-1959922197) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#3073](https://github.com/dipy/dipy/pull/3073#issuecomment-1959801527) in [dipy/dipy](https://github.com/dipy/dipy) From 83b5345018746fa4ba1cd15c592edce879894c5d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 23 Feb 2024 17:37:01 +0000 Subject: [PATCH 1515/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8f9b6234..8abc6ba0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -5. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) -6. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -7. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -9. 🗣 Commented on [#736](https://github.com/OpenFreeEnergy/openfe/pull/736#issuecomment-1959922197) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#3073](https://github.com/dipy/dipy/pull/3073#issuecomment-1959801527) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +6. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) +7. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +10. 🗣 Commented on [#736](https://github.com/OpenFreeEnergy/openfe/pull/736#issuecomment-1959922197) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 838b218f446e103479ca4c9da7e5f3065935f7fb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 23 Feb 2024 21:13:22 +0000 Subject: [PATCH 1516/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8abc6ba0..8d2eb570 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -6. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) -7. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -10. 🗣 Commented on [#736](https://github.com/OpenFreeEnergy/openfe/pull/736#issuecomment-1959922197) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +7. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) +8. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +9. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) From 65a73a613af1e392a894862b2e71856da3e647ae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 23 Feb 2024 22:37:03 +0000 Subject: [PATCH 1517/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8d2eb570..de187567 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -7. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) -8. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -9. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/1#issuecomment-1959932337) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +1. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +8. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) +9. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +10. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From cd28f687da73465fd2770a59f6287305af374edd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 19:37:09 +0000 Subject: [PATCH 1518/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index de187567..0b9cc211 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -8. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) -9. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -10. 🗣 Commented on [#1495](https://github.com/spacetelescope/jwql/pull/1495#issuecomment-1960116281) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +9. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) +10. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) From 313f44623b5425bcd93d0b5bf06f63563146ac67 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 20:37:07 +0000 Subject: [PATCH 1519/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0b9cc211..3b28beaa 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -9. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) -10. 🗣 Commented on [#787](https://github.com/spacetelescope/webbpsf/pull/787#issuecomment-1960586308) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +1. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +10. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) From 0a9ad1a6bb9add128b0078cfcd34edd15024aa53 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 25 Feb 2024 16:38:42 +0000 Subject: [PATCH 1520/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3b28beaa..5f69b322 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -10. 🗣 Commented on [#12](https://github.com/anpolol/GraphGenerator/pull/12#issuecomment-1960795880) in [anpolol/GraphGenerator](https://github.com/anpolol/GraphGenerator) +1. 🗣 Commented on [#3081](https://github.com/dipy/dipy/pull/3081#issuecomment-1962990858) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) From fd42570ec0ff155c75ea00be88b3539e2e7b04d9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 25 Feb 2024 21:37:05 +0000 Subject: [PATCH 1521/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5f69b322..d0ec88dd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3081](https://github.com/dipy/dipy/pull/3081#issuecomment-1962990858) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#105](https://github.com/eastgenomics/eggd_conductor/pull/105#issuecomment-1960957989) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +1. 🗣 Commented on [#122](https://github.com/aimclub/Fedot.Industrial/pull/122#issuecomment-1963067049) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +2. 🗣 Commented on [#3081](https://github.com/dipy/dipy/pull/3081#issuecomment-1962990858) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) From 1eb21c6024e03a61ef21d622230b470a51f7e997 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 01:10:36 +0000 Subject: [PATCH 1522/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d0ec88dd..4e41e76c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#122](https://github.com/aimclub/Fedot.Industrial/pull/122#issuecomment-1963067049) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -2. 🗣 Commented on [#3081](https://github.com/dipy/dipy/pull/3081#issuecomment-1962990858) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#1495](https://github.com/openSUSE/osc/pull/1495#issuecomment-1960996364) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#70](https://github.com/normcontrol/normcontrol-Document-Parser/pull/70#issuecomment-1963114590) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +2. 🗣 Commented on [#122](https://github.com/aimclub/Fedot.Industrial/pull/122#issuecomment-1963067049) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +3. 🗣 Commented on [#3081](https://github.com/dipy/dipy/pull/3081#issuecomment-1962990858) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +6. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) From 41594a7acfeecc96a3862b615bd71c183c0994be Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 09:16:58 +0000 Subject: [PATCH 1523/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4e41e76c..cbc1858d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#70](https://github.com/normcontrol/normcontrol-Document-Parser/pull/70#issuecomment-1963114590) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) -2. 🗣 Commented on [#122](https://github.com/aimclub/Fedot.Industrial/pull/122#issuecomment-1963067049) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -3. 🗣 Commented on [#3081](https://github.com/dipy/dipy/pull/3081#issuecomment-1962990858) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -6. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#3078](https://github.com/dipy/dipy/pull/3078#issuecomment-1961495683) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#123](https://github.com/aimclub/Fedot.Industrial/pull/123#issuecomment-1963603889) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +2. 🗣 Commented on [#70](https://github.com/normcontrol/normcontrol-Document-Parser/pull/70#issuecomment-1963114590) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +3. 🗣 Commented on [#122](https://github.com/aimclub/Fedot.Industrial/pull/122#issuecomment-1963067049) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#3081](https://github.com/dipy/dipy/pull/3081#issuecomment-1962990858) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 9f5a98e341bec2efafde2246ce13301396c20f95 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 12:28:58 +0000 Subject: [PATCH 1524/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cbc1858d..5b943912 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#123](https://github.com/aimclub/Fedot.Industrial/pull/123#issuecomment-1963603889) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -2. 🗣 Commented on [#70](https://github.com/normcontrol/normcontrol-Document-Parser/pull/70#issuecomment-1963114590) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) -3. 🗣 Commented on [#122](https://github.com/aimclub/Fedot.Industrial/pull/122#issuecomment-1963067049) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#3081](https://github.com/dipy/dipy/pull/3081#issuecomment-1962990858) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#94](https://github.com/eastgenomics/eris/pull/94#issuecomment-1961635379) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#110](https://github.com/Richard-Sti/csiborgtools/pull/110#issuecomment-1964018928) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +2. 🗣 Commented on [#123](https://github.com/aimclub/Fedot.Industrial/pull/123#issuecomment-1963603889) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +3. 🗣 Commented on [#70](https://github.com/normcontrol/normcontrol-Document-Parser/pull/70#issuecomment-1963114590) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +4. 🗣 Commented on [#122](https://github.com/aimclub/Fedot.Industrial/pull/122#issuecomment-1963067049) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +5. 🗣 Commented on [#3081](https://github.com/dipy/dipy/pull/3081#issuecomment-1962990858) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +8. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) From 73c5e16f79f7b8d313cdaeb55eea5bd30d2fedd7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 14:15:46 +0000 Subject: [PATCH 1525/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5b943912..b4740d11 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#110](https://github.com/Richard-Sti/csiborgtools/pull/110#issuecomment-1964018928) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -2. 🗣 Commented on [#123](https://github.com/aimclub/Fedot.Industrial/pull/123#issuecomment-1963603889) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -3. 🗣 Commented on [#70](https://github.com/normcontrol/normcontrol-Document-Parser/pull/70#issuecomment-1963114590) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) -4. 🗣 Commented on [#122](https://github.com/aimclub/Fedot.Industrial/pull/122#issuecomment-1963067049) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -5. 🗣 Commented on [#3081](https://github.com/dipy/dipy/pull/3081#issuecomment-1962990858) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -8. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#921](https://github.com/scilus/scilpy/pull/921#issuecomment-1961720127) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#737](https://github.com/OpenFreeEnergy/openfe/pull/737#issuecomment-1964174392) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#110](https://github.com/Richard-Sti/csiborgtools/pull/110#issuecomment-1964018928) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +3. 🗣 Commented on [#123](https://github.com/aimclub/Fedot.Industrial/pull/123#issuecomment-1963603889) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#70](https://github.com/normcontrol/normcontrol-Document-Parser/pull/70#issuecomment-1963114590) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +5. 🗣 Commented on [#122](https://github.com/aimclub/Fedot.Industrial/pull/122#issuecomment-1963067049) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#3081](https://github.com/dipy/dipy/pull/3081#issuecomment-1962990858) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +9. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) From 38f444cc35a930c28d5fd1e966a20566d9713b11 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 15:16:25 +0000 Subject: [PATCH 1526/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b4740d11..1221f731 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#737](https://github.com/OpenFreeEnergy/openfe/pull/737#issuecomment-1964174392) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#110](https://github.com/Richard-Sti/csiborgtools/pull/110#issuecomment-1964018928) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -3. 🗣 Commented on [#123](https://github.com/aimclub/Fedot.Industrial/pull/123#issuecomment-1963603889) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#70](https://github.com/normcontrol/normcontrol-Document-Parser/pull/70#issuecomment-1963114590) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) -5. 🗣 Commented on [#122](https://github.com/aimclub/Fedot.Industrial/pull/122#issuecomment-1963067049) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#3081](https://github.com/dipy/dipy/pull/3081#issuecomment-1962990858) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -9. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#889](https://github.com/scilus/scilpy/pull/889#issuecomment-1961973038) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#475](https://github.com/VorTECHsa/python-sdk/pull/475#issuecomment-1964359945) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +2. 🗣 Commented on [#737](https://github.com/OpenFreeEnergy/openfe/pull/737#issuecomment-1964174392) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#110](https://github.com/Richard-Sti/csiborgtools/pull/110#issuecomment-1964018928) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +4. 🗣 Commented on [#123](https://github.com/aimclub/Fedot.Industrial/pull/123#issuecomment-1963603889) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +5. 🗣 Commented on [#70](https://github.com/normcontrol/normcontrol-Document-Parser/pull/70#issuecomment-1963114590) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +6. 🗣 Commented on [#122](https://github.com/aimclub/Fedot.Industrial/pull/122#issuecomment-1963067049) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#3081](https://github.com/dipy/dipy/pull/3081#issuecomment-1962990858) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 3deba638c7097a57fda841681cab5fc8dfa0d121 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 16:20:02 +0000 Subject: [PATCH 1527/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1221f731..e987f782 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#475](https://github.com/VorTECHsa/python-sdk/pull/475#issuecomment-1964359945) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -2. 🗣 Commented on [#737](https://github.com/OpenFreeEnergy/openfe/pull/737#issuecomment-1964174392) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#110](https://github.com/Richard-Sti/csiborgtools/pull/110#issuecomment-1964018928) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -4. 🗣 Commented on [#123](https://github.com/aimclub/Fedot.Industrial/pull/123#issuecomment-1963603889) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -5. 🗣 Commented on [#70](https://github.com/normcontrol/normcontrol-Document-Parser/pull/70#issuecomment-1963114590) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) -6. 🗣 Commented on [#122](https://github.com/aimclub/Fedot.Industrial/pull/122#issuecomment-1963067049) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#3081](https://github.com/dipy/dipy/pull/3081#issuecomment-1962990858) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#1499](https://github.com/spacetelescope/jwql/pull/1499#issuecomment-1962077792) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#174](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/174#issuecomment-1964492981) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +2. 🗣 Commented on [#475](https://github.com/VorTECHsa/python-sdk/pull/475#issuecomment-1964359945) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +3. 🗣 Commented on [#737](https://github.com/OpenFreeEnergy/openfe/pull/737#issuecomment-1964174392) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#110](https://github.com/Richard-Sti/csiborgtools/pull/110#issuecomment-1964018928) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +5. 🗣 Commented on [#123](https://github.com/aimclub/Fedot.Industrial/pull/123#issuecomment-1963603889) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#70](https://github.com/normcontrol/normcontrol-Document-Parser/pull/70#issuecomment-1963114590) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +7. 🗣 Commented on [#122](https://github.com/aimclub/Fedot.Industrial/pull/122#issuecomment-1963067049) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +8. 🗣 Commented on [#3081](https://github.com/dipy/dipy/pull/3081#issuecomment-1962990858) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) From 8a6bddb0b751d0f99ac1d67f1e4303bb5f79448b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 16:38:23 +0000 Subject: [PATCH 1528/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e987f782..408117ba 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#174](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/174#issuecomment-1964492981) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -2. 🗣 Commented on [#475](https://github.com/VorTECHsa/python-sdk/pull/475#issuecomment-1964359945) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -3. 🗣 Commented on [#737](https://github.com/OpenFreeEnergy/openfe/pull/737#issuecomment-1964174392) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#110](https://github.com/Richard-Sti/csiborgtools/pull/110#issuecomment-1964018928) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -5. 🗣 Commented on [#123](https://github.com/aimclub/Fedot.Industrial/pull/123#issuecomment-1963603889) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#70](https://github.com/normcontrol/normcontrol-Document-Parser/pull/70#issuecomment-1963114590) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) -7. 🗣 Commented on [#122](https://github.com/aimclub/Fedot.Industrial/pull/122#issuecomment-1963067049) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -8. 🗣 Commented on [#3081](https://github.com/dipy/dipy/pull/3081#issuecomment-1962990858) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#258](https://github.com/CartoonFan/lutris/pull/258#issuecomment-1962604760) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +1. 🗣 Commented on [#95](https://github.com/eastgenomics/eris/pull/95#issuecomment-1964554451) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#174](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/174#issuecomment-1964492981) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +3. 🗣 Commented on [#475](https://github.com/VorTECHsa/python-sdk/pull/475#issuecomment-1964359945) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +4. 🗣 Commented on [#737](https://github.com/OpenFreeEnergy/openfe/pull/737#issuecomment-1964174392) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#110](https://github.com/Richard-Sti/csiborgtools/pull/110#issuecomment-1964018928) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +6. 🗣 Commented on [#123](https://github.com/aimclub/Fedot.Industrial/pull/123#issuecomment-1963603889) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#70](https://github.com/normcontrol/normcontrol-Document-Parser/pull/70#issuecomment-1963114590) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +8. 🗣 Commented on [#122](https://github.com/aimclub/Fedot.Industrial/pull/122#issuecomment-1963067049) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +9. 🗣 Commented on [#3081](https://github.com/dipy/dipy/pull/3081#issuecomment-1962990858) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From eba2d76b05f8fc03738a047b3b9f82b6bae247d5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 19:12:28 +0000 Subject: [PATCH 1529/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 408117ba..e18b4379 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#95](https://github.com/eastgenomics/eris/pull/95#issuecomment-1964554451) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#174](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/174#issuecomment-1964492981) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -3. 🗣 Commented on [#475](https://github.com/VorTECHsa/python-sdk/pull/475#issuecomment-1964359945) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -4. 🗣 Commented on [#737](https://github.com/OpenFreeEnergy/openfe/pull/737#issuecomment-1964174392) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#110](https://github.com/Richard-Sti/csiborgtools/pull/110#issuecomment-1964018928) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -6. 🗣 Commented on [#123](https://github.com/aimclub/Fedot.Industrial/pull/123#issuecomment-1963603889) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#70](https://github.com/normcontrol/normcontrol-Document-Parser/pull/70#issuecomment-1963114590) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) -8. 🗣 Commented on [#122](https://github.com/aimclub/Fedot.Industrial/pull/122#issuecomment-1963067049) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -9. 🗣 Commented on [#3081](https://github.com/dipy/dipy/pull/3081#issuecomment-1962990858) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#2795](https://github.com/metabrainz/listenbrainz-server/pull/2795#issuecomment-1962723678) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#909](https://github.com/ToFuProject/tofu/pull/909#issuecomment-1964964166) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#2957](https://github.com/astropy/astroquery/pull/2957#issuecomment-1964944058) in [astropy/astroquery](https://github.com/astropy/astroquery) +3. 🗣 Commented on [#95](https://github.com/eastgenomics/eris/pull/95#issuecomment-1964554451) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#174](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/174#issuecomment-1964492981) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +5. 🗣 Commented on [#475](https://github.com/VorTECHsa/python-sdk/pull/475#issuecomment-1964359945) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +6. 🗣 Commented on [#737](https://github.com/OpenFreeEnergy/openfe/pull/737#issuecomment-1964174392) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#110](https://github.com/Richard-Sti/csiborgtools/pull/110#issuecomment-1964018928) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +8. 🗣 Commented on [#123](https://github.com/aimclub/Fedot.Industrial/pull/123#issuecomment-1963603889) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +9. 🗣 Commented on [#70](https://github.com/normcontrol/normcontrol-Document-Parser/pull/70#issuecomment-1963114590) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +10. 🗣 Commented on [#122](https://github.com/aimclub/Fedot.Industrial/pull/122#issuecomment-1963067049) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) From 43afec58af8bddf0bab0ef59adafcdf76ae9d89f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 20:16:45 +0000 Subject: [PATCH 1530/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e18b4379..65a7ef1e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#909](https://github.com/ToFuProject/tofu/pull/909#issuecomment-1964964166) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#2957](https://github.com/astropy/astroquery/pull/2957#issuecomment-1964944058) in [astropy/astroquery](https://github.com/astropy/astroquery) -3. 🗣 Commented on [#95](https://github.com/eastgenomics/eris/pull/95#issuecomment-1964554451) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#174](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/174#issuecomment-1964492981) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -5. 🗣 Commented on [#475](https://github.com/VorTECHsa/python-sdk/pull/475#issuecomment-1964359945) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -6. 🗣 Commented on [#737](https://github.com/OpenFreeEnergy/openfe/pull/737#issuecomment-1964174392) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#110](https://github.com/Richard-Sti/csiborgtools/pull/110#issuecomment-1964018928) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -8. 🗣 Commented on [#123](https://github.com/aimclub/Fedot.Industrial/pull/123#issuecomment-1963603889) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -9. 🗣 Commented on [#70](https://github.com/normcontrol/normcontrol-Document-Parser/pull/70#issuecomment-1963114590) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) -10. 🗣 Commented on [#122](https://github.com/aimclub/Fedot.Industrial/pull/122#issuecomment-1963067049) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +1. 🗣 Commented on [#911](https://github.com/scilus/scilpy/pull/911#issuecomment-1965163178) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#909](https://github.com/ToFuProject/tofu/pull/909#issuecomment-1964964166) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#2957](https://github.com/astropy/astroquery/pull/2957#issuecomment-1964944058) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#95](https://github.com/eastgenomics/eris/pull/95#issuecomment-1964554451) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#174](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/174#issuecomment-1964492981) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +6. 🗣 Commented on [#475](https://github.com/VorTECHsa/python-sdk/pull/475#issuecomment-1964359945) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +7. 🗣 Commented on [#737](https://github.com/OpenFreeEnergy/openfe/pull/737#issuecomment-1964174392) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#110](https://github.com/Richard-Sti/csiborgtools/pull/110#issuecomment-1964018928) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +9. 🗣 Commented on [#123](https://github.com/aimclub/Fedot.Industrial/pull/123#issuecomment-1963603889) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#70](https://github.com/normcontrol/normcontrol-Document-Parser/pull/70#issuecomment-1963114590) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) From 16dcf2e7953cce343965e6dc977959866fbec0aa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 23:16:19 +0000 Subject: [PATCH 1531/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 65a7ef1e..044e4538 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#911](https://github.com/scilus/scilpy/pull/911#issuecomment-1965163178) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#909](https://github.com/ToFuProject/tofu/pull/909#issuecomment-1964964166) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#2957](https://github.com/astropy/astroquery/pull/2957#issuecomment-1964944058) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#95](https://github.com/eastgenomics/eris/pull/95#issuecomment-1964554451) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#174](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/174#issuecomment-1964492981) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -6. 🗣 Commented on [#475](https://github.com/VorTECHsa/python-sdk/pull/475#issuecomment-1964359945) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -7. 🗣 Commented on [#737](https://github.com/OpenFreeEnergy/openfe/pull/737#issuecomment-1964174392) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#110](https://github.com/Richard-Sti/csiborgtools/pull/110#issuecomment-1964018928) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -9. 🗣 Commented on [#123](https://github.com/aimclub/Fedot.Industrial/pull/123#issuecomment-1963603889) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#70](https://github.com/normcontrol/normcontrol-Document-Parser/pull/70#issuecomment-1963114590) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +1. 🗣 Commented on [#10](https://github.com/njzjz/dargs/pull/10#issuecomment-1965486177) in [njzjz/dargs](https://github.com/njzjz/dargs) +2. 🗣 Commented on [#911](https://github.com/scilus/scilpy/pull/911#issuecomment-1965163178) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#909](https://github.com/ToFuProject/tofu/pull/909#issuecomment-1964964166) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#2957](https://github.com/astropy/astroquery/pull/2957#issuecomment-1964944058) in [astropy/astroquery](https://github.com/astropy/astroquery) +5. 🗣 Commented on [#95](https://github.com/eastgenomics/eris/pull/95#issuecomment-1964554451) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#174](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/174#issuecomment-1964492981) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +7. 🗣 Commented on [#475](https://github.com/VorTECHsa/python-sdk/pull/475#issuecomment-1964359945) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +8. 🗣 Commented on [#737](https://github.com/OpenFreeEnergy/openfe/pull/737#issuecomment-1964174392) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#110](https://github.com/Richard-Sti/csiborgtools/pull/110#issuecomment-1964018928) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +10. 🗣 Commented on [#123](https://github.com/aimclub/Fedot.Industrial/pull/123#issuecomment-1963603889) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) From 3d621ec07ecd4780e8107ddb0e5bbd19b1459366 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 04:18:55 +0000 Subject: [PATCH 1532/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 044e4538..df6f1b9f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#10](https://github.com/njzjz/dargs/pull/10#issuecomment-1965486177) in [njzjz/dargs](https://github.com/njzjz/dargs) -2. 🗣 Commented on [#911](https://github.com/scilus/scilpy/pull/911#issuecomment-1965163178) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#909](https://github.com/ToFuProject/tofu/pull/909#issuecomment-1964964166) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#2957](https://github.com/astropy/astroquery/pull/2957#issuecomment-1964944058) in [astropy/astroquery](https://github.com/astropy/astroquery) -5. 🗣 Commented on [#95](https://github.com/eastgenomics/eris/pull/95#issuecomment-1964554451) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#174](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/174#issuecomment-1964492981) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -7. 🗣 Commented on [#475](https://github.com/VorTECHsa/python-sdk/pull/475#issuecomment-1964359945) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -8. 🗣 Commented on [#737](https://github.com/OpenFreeEnergy/openfe/pull/737#issuecomment-1964174392) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#110](https://github.com/Richard-Sti/csiborgtools/pull/110#issuecomment-1964018928) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -10. 🗣 Commented on [#123](https://github.com/aimclub/Fedot.Industrial/pull/123#issuecomment-1963603889) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +1. 🗣 Commented on [#910](https://github.com/ToFuProject/tofu/pull/910#issuecomment-1965756899) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#10](https://github.com/njzjz/dargs/pull/10#issuecomment-1965486177) in [njzjz/dargs](https://github.com/njzjz/dargs) +3. 🗣 Commented on [#911](https://github.com/scilus/scilpy/pull/911#issuecomment-1965163178) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#909](https://github.com/ToFuProject/tofu/pull/909#issuecomment-1964964166) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#2957](https://github.com/astropy/astroquery/pull/2957#issuecomment-1964944058) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#95](https://github.com/eastgenomics/eris/pull/95#issuecomment-1964554451) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#174](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/174#issuecomment-1964492981) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +8. 🗣 Commented on [#475](https://github.com/VorTECHsa/python-sdk/pull/475#issuecomment-1964359945) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +9. 🗣 Commented on [#737](https://github.com/OpenFreeEnergy/openfe/pull/737#issuecomment-1964174392) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#110](https://github.com/Richard-Sti/csiborgtools/pull/110#issuecomment-1964018928) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) From 091522f5ff8d270612d081d2c0ab9a3b5e3c4c35 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 13:16:53 +0000 Subject: [PATCH 1533/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index df6f1b9f..296c1935 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#910](https://github.com/ToFuProject/tofu/pull/910#issuecomment-1965756899) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#10](https://github.com/njzjz/dargs/pull/10#issuecomment-1965486177) in [njzjz/dargs](https://github.com/njzjz/dargs) -3. 🗣 Commented on [#911](https://github.com/scilus/scilpy/pull/911#issuecomment-1965163178) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#909](https://github.com/ToFuProject/tofu/pull/909#issuecomment-1964964166) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#2957](https://github.com/astropy/astroquery/pull/2957#issuecomment-1964944058) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#95](https://github.com/eastgenomics/eris/pull/95#issuecomment-1964554451) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#174](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/174#issuecomment-1964492981) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -8. 🗣 Commented on [#475](https://github.com/VorTECHsa/python-sdk/pull/475#issuecomment-1964359945) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -9. 🗣 Commented on [#737](https://github.com/OpenFreeEnergy/openfe/pull/737#issuecomment-1964174392) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#110](https://github.com/Richard-Sti/csiborgtools/pull/110#issuecomment-1964018928) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +1. 🗣 Commented on [#28](https://github.com/OpenFreeEnergy/openfe_analysis/pull/28#issuecomment-1966492331) in [OpenFreeEnergy/openfe_analysis](https://github.com/OpenFreeEnergy/openfe_analysis) +2. 🗣 Commented on [#910](https://github.com/ToFuProject/tofu/pull/910#issuecomment-1965756899) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#10](https://github.com/njzjz/dargs/pull/10#issuecomment-1965486177) in [njzjz/dargs](https://github.com/njzjz/dargs) +4. 🗣 Commented on [#911](https://github.com/scilus/scilpy/pull/911#issuecomment-1965163178) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#909](https://github.com/ToFuProject/tofu/pull/909#issuecomment-1964964166) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#2957](https://github.com/astropy/astroquery/pull/2957#issuecomment-1964944058) in [astropy/astroquery](https://github.com/astropy/astroquery) +7. 🗣 Commented on [#95](https://github.com/eastgenomics/eris/pull/95#issuecomment-1964554451) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#174](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/174#issuecomment-1964492981) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +9. 🗣 Commented on [#475](https://github.com/VorTECHsa/python-sdk/pull/475#issuecomment-1964359945) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +10. 🗣 Commented on [#737](https://github.com/OpenFreeEnergy/openfe/pull/737#issuecomment-1964174392) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From a7997156886b21d7bb5166e71ad88ab3f4193ebf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 15:16:07 +0000 Subject: [PATCH 1534/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 296c1935..b908f6b0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#28](https://github.com/OpenFreeEnergy/openfe_analysis/pull/28#issuecomment-1966492331) in [OpenFreeEnergy/openfe_analysis](https://github.com/OpenFreeEnergy/openfe_analysis) -2. 🗣 Commented on [#910](https://github.com/ToFuProject/tofu/pull/910#issuecomment-1965756899) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#10](https://github.com/njzjz/dargs/pull/10#issuecomment-1965486177) in [njzjz/dargs](https://github.com/njzjz/dargs) -4. 🗣 Commented on [#911](https://github.com/scilus/scilpy/pull/911#issuecomment-1965163178) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#909](https://github.com/ToFuProject/tofu/pull/909#issuecomment-1964964166) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#2957](https://github.com/astropy/astroquery/pull/2957#issuecomment-1964944058) in [astropy/astroquery](https://github.com/astropy/astroquery) -7. 🗣 Commented on [#95](https://github.com/eastgenomics/eris/pull/95#issuecomment-1964554451) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#174](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/174#issuecomment-1964492981) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -9. 🗣 Commented on [#475](https://github.com/VorTECHsa/python-sdk/pull/475#issuecomment-1964359945) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -10. 🗣 Commented on [#737](https://github.com/OpenFreeEnergy/openfe/pull/737#issuecomment-1964174392) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#911](https://github.com/ToFuProject/tofu/pull/911#issuecomment-1966750076) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#32](https://github.com/rasbt/LLMs-from-scratch/pull/32#issuecomment-1966724804) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +3. 🗣 Commented on [#28](https://github.com/OpenFreeEnergy/openfe_analysis/pull/28#issuecomment-1966492331) in [OpenFreeEnergy/openfe_analysis](https://github.com/OpenFreeEnergy/openfe_analysis) +4. 🗣 Commented on [#910](https://github.com/ToFuProject/tofu/pull/910#issuecomment-1965756899) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#10](https://github.com/njzjz/dargs/pull/10#issuecomment-1965486177) in [njzjz/dargs](https://github.com/njzjz/dargs) +6. 🗣 Commented on [#911](https://github.com/scilus/scilpy/pull/911#issuecomment-1965163178) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#909](https://github.com/ToFuProject/tofu/pull/909#issuecomment-1964964166) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#2957](https://github.com/astropy/astroquery/pull/2957#issuecomment-1964944058) in [astropy/astroquery](https://github.com/astropy/astroquery) +9. 🗣 Commented on [#95](https://github.com/eastgenomics/eris/pull/95#issuecomment-1964554451) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#174](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/174#issuecomment-1964492981) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) From 399e990936e68c03f2ea6397510e670cf7835728 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 15:37:08 +0000 Subject: [PATCH 1535/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b908f6b0..77ec33a1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#911](https://github.com/ToFuProject/tofu/pull/911#issuecomment-1966750076) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#32](https://github.com/rasbt/LLMs-from-scratch/pull/32#issuecomment-1966724804) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -3. 🗣 Commented on [#28](https://github.com/OpenFreeEnergy/openfe_analysis/pull/28#issuecomment-1966492331) in [OpenFreeEnergy/openfe_analysis](https://github.com/OpenFreeEnergy/openfe_analysis) -4. 🗣 Commented on [#910](https://github.com/ToFuProject/tofu/pull/910#issuecomment-1965756899) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#10](https://github.com/njzjz/dargs/pull/10#issuecomment-1965486177) in [njzjz/dargs](https://github.com/njzjz/dargs) -6. 🗣 Commented on [#911](https://github.com/scilus/scilpy/pull/911#issuecomment-1965163178) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#909](https://github.com/ToFuProject/tofu/pull/909#issuecomment-1964964166) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#2957](https://github.com/astropy/astroquery/pull/2957#issuecomment-1964944058) in [astropy/astroquery](https://github.com/astropy/astroquery) -9. 🗣 Commented on [#95](https://github.com/eastgenomics/eris/pull/95#issuecomment-1964554451) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#174](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/174#issuecomment-1964492981) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +1. 🗣 Commented on [#2799](https://github.com/metabrainz/listenbrainz-server/pull/2799#issuecomment-1966803564) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#912](https://github.com/ToFuProject/tofu/pull/912#issuecomment-1966794351) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#911](https://github.com/ToFuProject/tofu/pull/911#issuecomment-1966750076) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#32](https://github.com/rasbt/LLMs-from-scratch/pull/32#issuecomment-1966724804) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +5. 🗣 Commented on [#28](https://github.com/OpenFreeEnergy/openfe_analysis/pull/28#issuecomment-1966492331) in [OpenFreeEnergy/openfe_analysis](https://github.com/OpenFreeEnergy/openfe_analysis) +6. 🗣 Commented on [#910](https://github.com/ToFuProject/tofu/pull/910#issuecomment-1965756899) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#10](https://github.com/njzjz/dargs/pull/10#issuecomment-1965486177) in [njzjz/dargs](https://github.com/njzjz/dargs) +8. 🗣 Commented on [#911](https://github.com/scilus/scilpy/pull/911#issuecomment-1965163178) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#909](https://github.com/ToFuProject/tofu/pull/909#issuecomment-1964964166) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#2957](https://github.com/astropy/astroquery/pull/2957#issuecomment-1964944058) in [astropy/astroquery](https://github.com/astropy/astroquery) From 5755763367ad42d777f97cecc20a19213d1a0076 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 16:38:44 +0000 Subject: [PATCH 1536/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 77ec33a1..bcf3ecc1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2799](https://github.com/metabrainz/listenbrainz-server/pull/2799#issuecomment-1966803564) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#912](https://github.com/ToFuProject/tofu/pull/912#issuecomment-1966794351) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#911](https://github.com/ToFuProject/tofu/pull/911#issuecomment-1966750076) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#32](https://github.com/rasbt/LLMs-from-scratch/pull/32#issuecomment-1966724804) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -5. 🗣 Commented on [#28](https://github.com/OpenFreeEnergy/openfe_analysis/pull/28#issuecomment-1966492331) in [OpenFreeEnergy/openfe_analysis](https://github.com/OpenFreeEnergy/openfe_analysis) -6. 🗣 Commented on [#910](https://github.com/ToFuProject/tofu/pull/910#issuecomment-1965756899) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#10](https://github.com/njzjz/dargs/pull/10#issuecomment-1965486177) in [njzjz/dargs](https://github.com/njzjz/dargs) -8. 🗣 Commented on [#911](https://github.com/scilus/scilpy/pull/911#issuecomment-1965163178) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#909](https://github.com/ToFuProject/tofu/pull/909#issuecomment-1964964166) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#2957](https://github.com/astropy/astroquery/pull/2957#issuecomment-1964944058) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#913](https://github.com/ToFuProject/tofu/pull/913#issuecomment-1966956590) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#2799](https://github.com/metabrainz/listenbrainz-server/pull/2799#issuecomment-1966803564) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#912](https://github.com/ToFuProject/tofu/pull/912#issuecomment-1966794351) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#911](https://github.com/ToFuProject/tofu/pull/911#issuecomment-1966750076) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#32](https://github.com/rasbt/LLMs-from-scratch/pull/32#issuecomment-1966724804) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +6. 🗣 Commented on [#28](https://github.com/OpenFreeEnergy/openfe_analysis/pull/28#issuecomment-1966492331) in [OpenFreeEnergy/openfe_analysis](https://github.com/OpenFreeEnergy/openfe_analysis) +7. 🗣 Commented on [#910](https://github.com/ToFuProject/tofu/pull/910#issuecomment-1965756899) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#10](https://github.com/njzjz/dargs/pull/10#issuecomment-1965486177) in [njzjz/dargs](https://github.com/njzjz/dargs) +9. 🗣 Commented on [#911](https://github.com/scilus/scilpy/pull/911#issuecomment-1965163178) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#909](https://github.com/ToFuProject/tofu/pull/909#issuecomment-1964964166) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From 6991c12928a5627ec43e14efde4f722077bfdc1c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 17:16:16 +0000 Subject: [PATCH 1537/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bcf3ecc1..32e3f4b0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#913](https://github.com/ToFuProject/tofu/pull/913#issuecomment-1966956590) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#2799](https://github.com/metabrainz/listenbrainz-server/pull/2799#issuecomment-1966803564) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#912](https://github.com/ToFuProject/tofu/pull/912#issuecomment-1966794351) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#911](https://github.com/ToFuProject/tofu/pull/911#issuecomment-1966750076) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#32](https://github.com/rasbt/LLMs-from-scratch/pull/32#issuecomment-1966724804) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -6. 🗣 Commented on [#28](https://github.com/OpenFreeEnergy/openfe_analysis/pull/28#issuecomment-1966492331) in [OpenFreeEnergy/openfe_analysis](https://github.com/OpenFreeEnergy/openfe_analysis) -7. 🗣 Commented on [#910](https://github.com/ToFuProject/tofu/pull/910#issuecomment-1965756899) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#10](https://github.com/njzjz/dargs/pull/10#issuecomment-1965486177) in [njzjz/dargs](https://github.com/njzjz/dargs) -9. 🗣 Commented on [#911](https://github.com/scilus/scilpy/pull/911#issuecomment-1965163178) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#909](https://github.com/ToFuProject/tofu/pull/909#issuecomment-1964964166) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#925](https://github.com/scilus/scilpy/pull/925#issuecomment-1967192672) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#913](https://github.com/ToFuProject/tofu/pull/913#issuecomment-1966956590) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#2799](https://github.com/metabrainz/listenbrainz-server/pull/2799#issuecomment-1966803564) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#912](https://github.com/ToFuProject/tofu/pull/912#issuecomment-1966794351) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#911](https://github.com/ToFuProject/tofu/pull/911#issuecomment-1966750076) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#32](https://github.com/rasbt/LLMs-from-scratch/pull/32#issuecomment-1966724804) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +7. 🗣 Commented on [#28](https://github.com/OpenFreeEnergy/openfe_analysis/pull/28#issuecomment-1966492331) in [OpenFreeEnergy/openfe_analysis](https://github.com/OpenFreeEnergy/openfe_analysis) +8. 🗣 Commented on [#910](https://github.com/ToFuProject/tofu/pull/910#issuecomment-1965756899) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#10](https://github.com/njzjz/dargs/pull/10#issuecomment-1965486177) in [njzjz/dargs](https://github.com/njzjz/dargs) +10. 🗣 Commented on [#911](https://github.com/scilus/scilpy/pull/911#issuecomment-1965163178) in [scilus/scilpy](https://github.com/scilus/scilpy) From 90992edaa49713875c2e354891aa38560542c45a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 18:19:17 +0000 Subject: [PATCH 1538/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 32e3f4b0..bd74ed29 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#925](https://github.com/scilus/scilpy/pull/925#issuecomment-1967192672) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#913](https://github.com/ToFuProject/tofu/pull/913#issuecomment-1966956590) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#2799](https://github.com/metabrainz/listenbrainz-server/pull/2799#issuecomment-1966803564) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#912](https://github.com/ToFuProject/tofu/pull/912#issuecomment-1966794351) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#911](https://github.com/ToFuProject/tofu/pull/911#issuecomment-1966750076) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#32](https://github.com/rasbt/LLMs-from-scratch/pull/32#issuecomment-1966724804) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -7. 🗣 Commented on [#28](https://github.com/OpenFreeEnergy/openfe_analysis/pull/28#issuecomment-1966492331) in [OpenFreeEnergy/openfe_analysis](https://github.com/OpenFreeEnergy/openfe_analysis) -8. 🗣 Commented on [#910](https://github.com/ToFuProject/tofu/pull/910#issuecomment-1965756899) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#10](https://github.com/njzjz/dargs/pull/10#issuecomment-1965486177) in [njzjz/dargs](https://github.com/njzjz/dargs) -10. 🗣 Commented on [#911](https://github.com/scilus/scilpy/pull/911#issuecomment-1965163178) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#2](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/2#issuecomment-1967326168) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +2. 🗣 Commented on [#925](https://github.com/scilus/scilpy/pull/925#issuecomment-1967192672) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#913](https://github.com/ToFuProject/tofu/pull/913#issuecomment-1966956590) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#2799](https://github.com/metabrainz/listenbrainz-server/pull/2799#issuecomment-1966803564) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#912](https://github.com/ToFuProject/tofu/pull/912#issuecomment-1966794351) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#911](https://github.com/ToFuProject/tofu/pull/911#issuecomment-1966750076) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#32](https://github.com/rasbt/LLMs-from-scratch/pull/32#issuecomment-1966724804) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +8. 🗣 Commented on [#28](https://github.com/OpenFreeEnergy/openfe_analysis/pull/28#issuecomment-1966492331) in [OpenFreeEnergy/openfe_analysis](https://github.com/OpenFreeEnergy/openfe_analysis) +9. 🗣 Commented on [#910](https://github.com/ToFuProject/tofu/pull/910#issuecomment-1965756899) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#10](https://github.com/njzjz/dargs/pull/10#issuecomment-1965486177) in [njzjz/dargs](https://github.com/njzjz/dargs) From 182523d3b41a50cae9aea7a35f27707c600c74ca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 19:37:12 +0000 Subject: [PATCH 1539/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bd74ed29..21bb4443 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/2#issuecomment-1967326168) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -2. 🗣 Commented on [#925](https://github.com/scilus/scilpy/pull/925#issuecomment-1967192672) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#913](https://github.com/ToFuProject/tofu/pull/913#issuecomment-1966956590) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#2799](https://github.com/metabrainz/listenbrainz-server/pull/2799#issuecomment-1966803564) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#912](https://github.com/ToFuProject/tofu/pull/912#issuecomment-1966794351) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#911](https://github.com/ToFuProject/tofu/pull/911#issuecomment-1966750076) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#32](https://github.com/rasbt/LLMs-from-scratch/pull/32#issuecomment-1966724804) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -8. 🗣 Commented on [#28](https://github.com/OpenFreeEnergy/openfe_analysis/pull/28#issuecomment-1966492331) in [OpenFreeEnergy/openfe_analysis](https://github.com/OpenFreeEnergy/openfe_analysis) -9. 🗣 Commented on [#910](https://github.com/ToFuProject/tofu/pull/910#issuecomment-1965756899) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#10](https://github.com/njzjz/dargs/pull/10#issuecomment-1965486177) in [njzjz/dargs](https://github.com/njzjz/dargs) +1. 🗣 Commented on [#3](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/3#issuecomment-1967445522) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +2. 🗣 Commented on [#2](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/2#issuecomment-1967326168) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +3. 🗣 Commented on [#925](https://github.com/scilus/scilpy/pull/925#issuecomment-1967192672) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#913](https://github.com/ToFuProject/tofu/pull/913#issuecomment-1966956590) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#2799](https://github.com/metabrainz/listenbrainz-server/pull/2799#issuecomment-1966803564) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#912](https://github.com/ToFuProject/tofu/pull/912#issuecomment-1966794351) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#911](https://github.com/ToFuProject/tofu/pull/911#issuecomment-1966750076) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#32](https://github.com/rasbt/LLMs-from-scratch/pull/32#issuecomment-1966724804) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +9. 🗣 Commented on [#28](https://github.com/OpenFreeEnergy/openfe_analysis/pull/28#issuecomment-1966492331) in [OpenFreeEnergy/openfe_analysis](https://github.com/OpenFreeEnergy/openfe_analysis) +10. 🗣 Commented on [#910](https://github.com/ToFuProject/tofu/pull/910#issuecomment-1965756899) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From 2400f519457d30a590b8851df02b11aa6110e7ca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 22:16:08 +0000 Subject: [PATCH 1540/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 21bb4443..aa478994 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/3#issuecomment-1967445522) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -2. 🗣 Commented on [#2](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/2#issuecomment-1967326168) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -3. 🗣 Commented on [#925](https://github.com/scilus/scilpy/pull/925#issuecomment-1967192672) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#913](https://github.com/ToFuProject/tofu/pull/913#issuecomment-1966956590) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#2799](https://github.com/metabrainz/listenbrainz-server/pull/2799#issuecomment-1966803564) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#912](https://github.com/ToFuProject/tofu/pull/912#issuecomment-1966794351) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#911](https://github.com/ToFuProject/tofu/pull/911#issuecomment-1966750076) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#32](https://github.com/rasbt/LLMs-from-scratch/pull/32#issuecomment-1966724804) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -9. 🗣 Commented on [#28](https://github.com/OpenFreeEnergy/openfe_analysis/pull/28#issuecomment-1966492331) in [OpenFreeEnergy/openfe_analysis](https://github.com/OpenFreeEnergy/openfe_analysis) -10. 🗣 Commented on [#910](https://github.com/ToFuProject/tofu/pull/910#issuecomment-1965756899) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#2960](https://github.com/astropy/astroquery/pull/2960#issuecomment-1967676862) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#3](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/3#issuecomment-1967445522) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +3. 🗣 Commented on [#2](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/2#issuecomment-1967326168) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +4. 🗣 Commented on [#925](https://github.com/scilus/scilpy/pull/925#issuecomment-1967192672) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#913](https://github.com/ToFuProject/tofu/pull/913#issuecomment-1966956590) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#2799](https://github.com/metabrainz/listenbrainz-server/pull/2799#issuecomment-1966803564) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#912](https://github.com/ToFuProject/tofu/pull/912#issuecomment-1966794351) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#911](https://github.com/ToFuProject/tofu/pull/911#issuecomment-1966750076) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#32](https://github.com/rasbt/LLMs-from-scratch/pull/32#issuecomment-1966724804) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +10. 🗣 Commented on [#28](https://github.com/OpenFreeEnergy/openfe_analysis/pull/28#issuecomment-1966492331) in [OpenFreeEnergy/openfe_analysis](https://github.com/OpenFreeEnergy/openfe_analysis) From 8da43b298840fa7b7225bdc29a6f1fdc4cec3c2d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 28 Feb 2024 02:37:27 +0000 Subject: [PATCH 1541/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index aa478994..0db4b227 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2960](https://github.com/astropy/astroquery/pull/2960#issuecomment-1967676862) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#3](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/3#issuecomment-1967445522) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -3. 🗣 Commented on [#2](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/2#issuecomment-1967326168) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -4. 🗣 Commented on [#925](https://github.com/scilus/scilpy/pull/925#issuecomment-1967192672) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#913](https://github.com/ToFuProject/tofu/pull/913#issuecomment-1966956590) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#2799](https://github.com/metabrainz/listenbrainz-server/pull/2799#issuecomment-1966803564) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#912](https://github.com/ToFuProject/tofu/pull/912#issuecomment-1966794351) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#911](https://github.com/ToFuProject/tofu/pull/911#issuecomment-1966750076) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#32](https://github.com/rasbt/LLMs-from-scratch/pull/32#issuecomment-1966724804) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -10. 🗣 Commented on [#28](https://github.com/OpenFreeEnergy/openfe_analysis/pull/28#issuecomment-1966492331) in [OpenFreeEnergy/openfe_analysis](https://github.com/OpenFreeEnergy/openfe_analysis) +1. 🗣 Commented on [#14](https://github.com/codingfriendsfun/pcc/pull/14#issuecomment-1968067109) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +2. 🗣 Commented on [#13](https://github.com/codingfriendsfun/pcc/pull/13#issuecomment-1968066956) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +3. 🗣 Commented on [#11](https://github.com/codingfriendsfun/pcc/pull/11#issuecomment-1968059235) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +4. 🗣 Commented on [#2960](https://github.com/astropy/astroquery/pull/2960#issuecomment-1967676862) in [astropy/astroquery](https://github.com/astropy/astroquery) +5. 🗣 Commented on [#3](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/3#issuecomment-1967445522) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +6. 🗣 Commented on [#2](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/2#issuecomment-1967326168) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +7. 🗣 Commented on [#925](https://github.com/scilus/scilpy/pull/925#issuecomment-1967192672) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#913](https://github.com/ToFuProject/tofu/pull/913#issuecomment-1966956590) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#2799](https://github.com/metabrainz/listenbrainz-server/pull/2799#issuecomment-1966803564) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#912](https://github.com/ToFuProject/tofu/pull/912#issuecomment-1966794351) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From acaaf4f7c70480c088bc62da4bd5c50dbcef0c8b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 28 Feb 2024 08:19:40 +0000 Subject: [PATCH 1542/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0db4b227..652f26bc 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#14](https://github.com/codingfriendsfun/pcc/pull/14#issuecomment-1968067109) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -2. 🗣 Commented on [#13](https://github.com/codingfriendsfun/pcc/pull/13#issuecomment-1968066956) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -3. 🗣 Commented on [#11](https://github.com/codingfriendsfun/pcc/pull/11#issuecomment-1968059235) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -4. 🗣 Commented on [#2960](https://github.com/astropy/astroquery/pull/2960#issuecomment-1967676862) in [astropy/astroquery](https://github.com/astropy/astroquery) -5. 🗣 Commented on [#3](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/3#issuecomment-1967445522) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -6. 🗣 Commented on [#2](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/2#issuecomment-1967326168) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -7. 🗣 Commented on [#925](https://github.com/scilus/scilpy/pull/925#issuecomment-1967192672) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#913](https://github.com/ToFuProject/tofu/pull/913#issuecomment-1966956590) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#2799](https://github.com/metabrainz/listenbrainz-server/pull/2799#issuecomment-1966803564) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#912](https://github.com/ToFuProject/tofu/pull/912#issuecomment-1966794351) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#1500](https://github.com/openSUSE/osc/pull/1500#issuecomment-1968398334) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#14](https://github.com/codingfriendsfun/pcc/pull/14#issuecomment-1968067109) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +3. 🗣 Commented on [#13](https://github.com/codingfriendsfun/pcc/pull/13#issuecomment-1968066956) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +4. 🗣 Commented on [#11](https://github.com/codingfriendsfun/pcc/pull/11#issuecomment-1968059235) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +5. 🗣 Commented on [#2960](https://github.com/astropy/astroquery/pull/2960#issuecomment-1967676862) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#3](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/3#issuecomment-1967445522) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +7. 🗣 Commented on [#2](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/2#issuecomment-1967326168) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +8. 🗣 Commented on [#925](https://github.com/scilus/scilpy/pull/925#issuecomment-1967192672) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#913](https://github.com/ToFuProject/tofu/pull/913#issuecomment-1966956590) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#2799](https://github.com/metabrainz/listenbrainz-server/pull/2799#issuecomment-1966803564) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 2e7c96f0e864a744d8fbb5df48eda97378dc91c5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 28 Feb 2024 14:37:08 +0000 Subject: [PATCH 1543/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 652f26bc..2c3bfc27 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1500](https://github.com/openSUSE/osc/pull/1500#issuecomment-1968398334) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#14](https://github.com/codingfriendsfun/pcc/pull/14#issuecomment-1968067109) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -3. 🗣 Commented on [#13](https://github.com/codingfriendsfun/pcc/pull/13#issuecomment-1968066956) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -4. 🗣 Commented on [#11](https://github.com/codingfriendsfun/pcc/pull/11#issuecomment-1968059235) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -5. 🗣 Commented on [#2960](https://github.com/astropy/astroquery/pull/2960#issuecomment-1967676862) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#3](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/3#issuecomment-1967445522) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -7. 🗣 Commented on [#2](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/2#issuecomment-1967326168) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -8. 🗣 Commented on [#925](https://github.com/scilus/scilpy/pull/925#issuecomment-1967192672) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#913](https://github.com/ToFuProject/tofu/pull/913#issuecomment-1966956590) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#2799](https://github.com/metabrainz/listenbrainz-server/pull/2799#issuecomment-1966803564) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +2. 🗣 Commented on [#3086](https://github.com/dipy/dipy/pull/3086#issuecomment-1969036281) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#1500](https://github.com/openSUSE/osc/pull/1500#issuecomment-1968398334) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#14](https://github.com/codingfriendsfun/pcc/pull/14#issuecomment-1968067109) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +5. 🗣 Commented on [#13](https://github.com/codingfriendsfun/pcc/pull/13#issuecomment-1968066956) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +6. 🗣 Commented on [#11](https://github.com/codingfriendsfun/pcc/pull/11#issuecomment-1968059235) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +7. 🗣 Commented on [#2960](https://github.com/astropy/astroquery/pull/2960#issuecomment-1967676862) in [astropy/astroquery](https://github.com/astropy/astroquery) +8. 🗣 Commented on [#3](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/3#issuecomment-1967445522) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +9. 🗣 Commented on [#2](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/2#issuecomment-1967326168) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +10. 🗣 Commented on [#925](https://github.com/scilus/scilpy/pull/925#issuecomment-1967192672) in [scilus/scilpy](https://github.com/scilus/scilpy) From eaf79ccf0a9ab00195e2caf3153f9dc9aa5af338 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:20:16 +0000 Subject: [PATCH 1544/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2c3bfc27..7af77275 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -2. 🗣 Commented on [#3086](https://github.com/dipy/dipy/pull/3086#issuecomment-1969036281) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#1500](https://github.com/openSUSE/osc/pull/1500#issuecomment-1968398334) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#14](https://github.com/codingfriendsfun/pcc/pull/14#issuecomment-1968067109) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -5. 🗣 Commented on [#13](https://github.com/codingfriendsfun/pcc/pull/13#issuecomment-1968066956) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -6. 🗣 Commented on [#11](https://github.com/codingfriendsfun/pcc/pull/11#issuecomment-1968059235) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -7. 🗣 Commented on [#2960](https://github.com/astropy/astroquery/pull/2960#issuecomment-1967676862) in [astropy/astroquery](https://github.com/astropy/astroquery) -8. 🗣 Commented on [#3](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/3#issuecomment-1967445522) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -9. 🗣 Commented on [#2](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/2#issuecomment-1967326168) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -10. 🗣 Commented on [#925](https://github.com/scilus/scilpy/pull/925#issuecomment-1967192672) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +3. 🗣 Commented on [#3086](https://github.com/dipy/dipy/pull/3086#issuecomment-1969036281) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#1500](https://github.com/openSUSE/osc/pull/1500#issuecomment-1968398334) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#14](https://github.com/codingfriendsfun/pcc/pull/14#issuecomment-1968067109) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +6. 🗣 Commented on [#13](https://github.com/codingfriendsfun/pcc/pull/13#issuecomment-1968066956) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +7. 🗣 Commented on [#11](https://github.com/codingfriendsfun/pcc/pull/11#issuecomment-1968059235) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +8. 🗣 Commented on [#2960](https://github.com/astropy/astroquery/pull/2960#issuecomment-1967676862) in [astropy/astroquery](https://github.com/astropy/astroquery) +9. 🗣 Commented on [#3](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/3#issuecomment-1967445522) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +10. 🗣 Commented on [#2](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/2#issuecomment-1967326168) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) From a51a22a170f8d41e1cf6a7eb2a2d8b93cce1bfdc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:38:38 +0000 Subject: [PATCH 1545/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7af77275..825032f6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -3. 🗣 Commented on [#3086](https://github.com/dipy/dipy/pull/3086#issuecomment-1969036281) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#1500](https://github.com/openSUSE/osc/pull/1500#issuecomment-1968398334) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#14](https://github.com/codingfriendsfun/pcc/pull/14#issuecomment-1968067109) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -6. 🗣 Commented on [#13](https://github.com/codingfriendsfun/pcc/pull/13#issuecomment-1968066956) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -7. 🗣 Commented on [#11](https://github.com/codingfriendsfun/pcc/pull/11#issuecomment-1968059235) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -8. 🗣 Commented on [#2960](https://github.com/astropy/astroquery/pull/2960#issuecomment-1967676862) in [astropy/astroquery](https://github.com/astropy/astroquery) -9. 🗣 Commented on [#3](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/3#issuecomment-1967445522) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -10. 🗣 Commented on [#2](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/2#issuecomment-1967326168) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +1. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +4. 🗣 Commented on [#3086](https://github.com/dipy/dipy/pull/3086#issuecomment-1969036281) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#1500](https://github.com/openSUSE/osc/pull/1500#issuecomment-1968398334) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#14](https://github.com/codingfriendsfun/pcc/pull/14#issuecomment-1968067109) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +7. 🗣 Commented on [#13](https://github.com/codingfriendsfun/pcc/pull/13#issuecomment-1968066956) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +8. 🗣 Commented on [#11](https://github.com/codingfriendsfun/pcc/pull/11#issuecomment-1968059235) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +9. 🗣 Commented on [#2960](https://github.com/astropy/astroquery/pull/2960#issuecomment-1967676862) in [astropy/astroquery](https://github.com/astropy/astroquery) +10. 🗣 Commented on [#3](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/3#issuecomment-1967445522) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) From 05e65f784849a575a04a4bfa28d44bdd50299449 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 28 Feb 2024 17:14:15 +0000 Subject: [PATCH 1546/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 825032f6..cfbf1d15 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -4. 🗣 Commented on [#3086](https://github.com/dipy/dipy/pull/3086#issuecomment-1969036281) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#1500](https://github.com/openSUSE/osc/pull/1500#issuecomment-1968398334) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#14](https://github.com/codingfriendsfun/pcc/pull/14#issuecomment-1968067109) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -7. 🗣 Commented on [#13](https://github.com/codingfriendsfun/pcc/pull/13#issuecomment-1968066956) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -8. 🗣 Commented on [#11](https://github.com/codingfriendsfun/pcc/pull/11#issuecomment-1968059235) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -9. 🗣 Commented on [#2960](https://github.com/astropy/astroquery/pull/2960#issuecomment-1967676862) in [astropy/astroquery](https://github.com/astropy/astroquery) -10. 🗣 Commented on [#3](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/3#issuecomment-1967445522) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +1. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +5. 🗣 Commented on [#3086](https://github.com/dipy/dipy/pull/3086#issuecomment-1969036281) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#1500](https://github.com/openSUSE/osc/pull/1500#issuecomment-1968398334) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#14](https://github.com/codingfriendsfun/pcc/pull/14#issuecomment-1968067109) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +8. 🗣 Commented on [#13](https://github.com/codingfriendsfun/pcc/pull/13#issuecomment-1968066956) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +9. 🗣 Commented on [#11](https://github.com/codingfriendsfun/pcc/pull/11#issuecomment-1968059235) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +10. 🗣 Commented on [#2960](https://github.com/astropy/astroquery/pull/2960#issuecomment-1967676862) in [astropy/astroquery](https://github.com/astropy/astroquery) From 5240c6c20c4e89c97908d35efd13532e16e0ddfc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 02:01:16 +0000 Subject: [PATCH 1547/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cfbf1d15..7764a0fd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -5. 🗣 Commented on [#3086](https://github.com/dipy/dipy/pull/3086#issuecomment-1969036281) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#1500](https://github.com/openSUSE/osc/pull/1500#issuecomment-1968398334) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#14](https://github.com/codingfriendsfun/pcc/pull/14#issuecomment-1968067109) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -8. 🗣 Commented on [#13](https://github.com/codingfriendsfun/pcc/pull/13#issuecomment-1968066956) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -9. 🗣 Commented on [#11](https://github.com/codingfriendsfun/pcc/pull/11#issuecomment-1968059235) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -10. 🗣 Commented on [#2960](https://github.com/astropy/astroquery/pull/2960#issuecomment-1967676862) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +6. 🗣 Commented on [#3086](https://github.com/dipy/dipy/pull/3086#issuecomment-1969036281) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#1500](https://github.com/openSUSE/osc/pull/1500#issuecomment-1968398334) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#14](https://github.com/codingfriendsfun/pcc/pull/14#issuecomment-1968067109) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +9. 🗣 Commented on [#13](https://github.com/codingfriendsfun/pcc/pull/13#issuecomment-1968066956) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +10. 🗣 Commented on [#11](https://github.com/codingfriendsfun/pcc/pull/11#issuecomment-1968059235) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) From e8c96a55d5eedf0c7aeff6dffb6201a472e3ca37 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 03:17:54 +0000 Subject: [PATCH 1548/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7764a0fd..38ddcfe1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -6. 🗣 Commented on [#3086](https://github.com/dipy/dipy/pull/3086#issuecomment-1969036281) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#1500](https://github.com/openSUSE/osc/pull/1500#issuecomment-1968398334) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#14](https://github.com/codingfriendsfun/pcc/pull/14#issuecomment-1968067109) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -9. 🗣 Commented on [#13](https://github.com/codingfriendsfun/pcc/pull/13#issuecomment-1968066956) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -10. 🗣 Commented on [#11](https://github.com/codingfriendsfun/pcc/pull/11#issuecomment-1968059235) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +1. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) +2. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +7. 🗣 Commented on [#3086](https://github.com/dipy/dipy/pull/3086#issuecomment-1969036281) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#1500](https://github.com/openSUSE/osc/pull/1500#issuecomment-1968398334) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#14](https://github.com/codingfriendsfun/pcc/pull/14#issuecomment-1968067109) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +10. 🗣 Commented on [#13](https://github.com/codingfriendsfun/pcc/pull/13#issuecomment-1968066956) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) From 4dfed8d9c26c4a04e35222ef6f99945207ca08e2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 07:16:38 +0000 Subject: [PATCH 1549/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 38ddcfe1..fc6e3c57 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) -2. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -7. 🗣 Commented on [#3086](https://github.com/dipy/dipy/pull/3086#issuecomment-1969036281) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#1500](https://github.com/openSUSE/osc/pull/1500#issuecomment-1968398334) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#14](https://github.com/codingfriendsfun/pcc/pull/14#issuecomment-1968067109) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -10. 🗣 Commented on [#13](https://github.com/codingfriendsfun/pcc/pull/13#issuecomment-1968066956) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +1. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +2. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) +3. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +8. 🗣 Commented on [#3086](https://github.com/dipy/dipy/pull/3086#issuecomment-1969036281) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#1500](https://github.com/openSUSE/osc/pull/1500#issuecomment-1968398334) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#14](https://github.com/codingfriendsfun/pcc/pull/14#issuecomment-1968067109) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) From 01bd63308bf600f1a53e6c068feedcdafd6d1c1e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 09:16:29 +0000 Subject: [PATCH 1550/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fc6e3c57..ffd92853 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -2. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) -3. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -8. 🗣 Commented on [#3086](https://github.com/dipy/dipy/pull/3086#issuecomment-1969036281) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#1500](https://github.com/openSUSE/osc/pull/1500#issuecomment-1968398334) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#14](https://github.com/codingfriendsfun/pcc/pull/14#issuecomment-1968067109) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +1. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +3. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) +4. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +9. 🗣 Commented on [#3086](https://github.com/dipy/dipy/pull/3086#issuecomment-1969036281) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#1500](https://github.com/openSUSE/osc/pull/1500#issuecomment-1968398334) in [openSUSE/osc](https://github.com/openSUSE/osc) From 407f4070e522cc535e0f5425b7bc97ee1ed92d80 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:37:28 +0000 Subject: [PATCH 1551/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ffd92853..1949986d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -3. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) -4. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -9. 🗣 Commented on [#3086](https://github.com/dipy/dipy/pull/3086#issuecomment-1969036281) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#1500](https://github.com/openSUSE/osc/pull/1500#issuecomment-1968398334) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +2. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +4. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) +5. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +10. 🗣 Commented on [#3086](https://github.com/dipy/dipy/pull/3086#issuecomment-1969036281) in [dipy/dipy](https://github.com/dipy/dipy) From 1492bfa767df58c79f2bce9360376d1e0d8043c8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 11:13:41 +0000 Subject: [PATCH 1552/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1949986d..a3ce5f4f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -2. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -4. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) -5. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -10. 🗣 Commented on [#3086](https://github.com/dipy/dipy/pull/3086#issuecomment-1969036281) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +3. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +5. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) +6. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) From 45d24c79b252f13918425317f889c626d5ccca9d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 11:42:16 +0000 Subject: [PATCH 1553/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a3ce5f4f..bf3e2b3d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -3. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -5. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) -6. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#1058](https://github.com/oemof/oemof-solph/pull/1058#issuecomment-1969041865) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +1. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +4. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +6. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) +7. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 40feb010b7bbfd690524455414c9b0987a2cadd8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 15:15:47 +0000 Subject: [PATCH 1554/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bf3e2b3d..b3e76261 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -4. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -6. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) -7. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#1503](https://github.com/spacetelescope/jwql/pull/1503#issuecomment-1969279131) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +5. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +7. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) +8. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +9. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) From a83f9bb94e816af41abbdd3a72f8af1e2a67fb34 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 17:14:06 +0000 Subject: [PATCH 1555/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b3e76261..602839db 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -5. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -7. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) -8. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -9. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#924](https://github.com/scilus/scilpy/pull/924#issuecomment-1969334900) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) +2. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +6. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +8. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) +9. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From e99b9c9196f570afc0c8555a6f9c933ac961230d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 20:17:40 +0000 Subject: [PATCH 1556/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 602839db..55dd690a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) -2. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -6. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -8. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) -9. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#5498](https://github.com/rhinstaller/anaconda/pull/5498#issuecomment-1969445907) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) +3. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +7. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +9. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) +10. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From 63c820b57c6ab530a649f318ded5dbb21c90a678 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 20:37:09 +0000 Subject: [PATCH 1557/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 55dd690a..f3dd86b6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) -3. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -7. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -9. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) -10. 🗣 Commented on [#294](https://github.com/OpenFreeEnergy/gufe/pull/294#issuecomment-1970197584) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) +4. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +8. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +10. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) From 7bd1925b8d875d0a887e1fd1ab218c9b0ff651a9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 21:37:15 +0000 Subject: [PATCH 1558/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f3dd86b6..aec917e6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) -4. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -8. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -10. 🗣 Commented on [#45](https://github.com/arfc/osier/pull/45#issuecomment-1970296163) in [arfc/osier](https://github.com/arfc/osier) +1. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) +5. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +9. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) From 2dacdb2472b243191363edf4088c9b6d92affe57 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 03:19:59 +0000 Subject: [PATCH 1559/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index aec917e6..5aa06a7e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) -5. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -9. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#15](https://github.com/codingfriendsfun/pcc/pull/15#issuecomment-1970510271) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +1. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) +2. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) +6. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +10. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 9bcdebe825cac25d9a7eccb737e955f6bc824c32 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 05:37:55 +0000 Subject: [PATCH 1560/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5aa06a7e..9093842e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) -2. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) -6. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -10. 🗣 Commented on [#5499](https://github.com/rhinstaller/anaconda/pull/5499#issuecomment-1970709241) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) +2. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) +3. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) +7. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) From af7b48982f6b05ea5ca4215a87897261be72f299 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 07:14:34 +0000 Subject: [PATCH 1561/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9093842e..aca9f4fa 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) -2. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) -3. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) -7. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#480](https://github.com/VorTECHsa/python-sdk/pull/480#issuecomment-1970849889) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +1. 🗣 Commented on [#1261](https://github.com/aimclub/FEDOT/pull/1261#issuecomment-1972620767) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) +3. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) +4. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) +8. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 3811c3de143aab5b203bca9fb4a64a9724234744 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 09:37:08 +0000 Subject: [PATCH 1562/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index aca9f4fa..a8f78dfd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1261](https://github.com/aimclub/FEDOT/pull/1261#issuecomment-1972620767) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) -3. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) -4. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) -8. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#2800](https://github.com/metabrainz/listenbrainz-server/pull/2800#issuecomment-1970900331) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#749](https://github.com/OpenFreeEnergy/openfe/pull/749#issuecomment-1972826395) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#1261](https://github.com/aimclub/FEDOT/pull/1261#issuecomment-1972620767) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) +4. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) +5. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) +9. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 2b3c433f53a997e038f79655a8943fe24cb59db8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 13:16:42 +0000 Subject: [PATCH 1563/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a8f78dfd..af5126eb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#749](https://github.com/OpenFreeEnergy/openfe/pull/749#issuecomment-1972826395) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#1261](https://github.com/aimclub/FEDOT/pull/1261#issuecomment-1972620767) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) -4. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) -5. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) -9. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#98](https://github.com/eastgenomics/eris/pull/98#issuecomment-1970922654) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#930](https://github.com/scilus/scilpy/pull/930#issuecomment-1973160721) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#749](https://github.com/OpenFreeEnergy/openfe/pull/749#issuecomment-1972826395) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#1261](https://github.com/aimclub/FEDOT/pull/1261#issuecomment-1972620767) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) +5. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) +6. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) +10. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From b14a6bbcee0a0206414991aeb8202285fc889141 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 14:14:21 +0000 Subject: [PATCH 1564/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index af5126eb..c89ee324 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#930](https://github.com/scilus/scilpy/pull/930#issuecomment-1973160721) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#749](https://github.com/OpenFreeEnergy/openfe/pull/749#issuecomment-1972826395) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#1261](https://github.com/aimclub/FEDOT/pull/1261#issuecomment-1972620767) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) -5. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) -6. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) -10. 🗣 Commented on [#2801](https://github.com/metabrainz/listenbrainz-server/pull/2801#issuecomment-1971312173) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +2. 🗣 Commented on [#930](https://github.com/scilus/scilpy/pull/930#issuecomment-1973160721) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#749](https://github.com/OpenFreeEnergy/openfe/pull/749#issuecomment-1972826395) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#1261](https://github.com/aimclub/FEDOT/pull/1261#issuecomment-1972620767) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) +6. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) +7. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) From 41ed9ecc96842ef1aed62e76c7d570a9516fc699 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 16:37:36 +0000 Subject: [PATCH 1565/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c89ee324..dcb4b517 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) -2. 🗣 Commented on [#930](https://github.com/scilus/scilpy/pull/930#issuecomment-1973160721) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#749](https://github.com/OpenFreeEnergy/openfe/pull/749#issuecomment-1972826395) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#1261](https://github.com/aimclub/FEDOT/pull/1261#issuecomment-1972620767) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) -6. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) -7. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#591](https://github.com/paris-saclay-cds/ramp-board/pull/591#issuecomment-1971534274) in [paris-saclay-cds/ramp-board](https://github.com/paris-saclay-cds/ramp-board) +1. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +2. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +3. 🗣 Commented on [#930](https://github.com/scilus/scilpy/pull/930#issuecomment-1973160721) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#749](https://github.com/OpenFreeEnergy/openfe/pull/749#issuecomment-1972826395) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#1261](https://github.com/aimclub/FEDOT/pull/1261#issuecomment-1972620767) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) +7. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) +8. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 3693d668dd3b30828ad7fc648c7e5fe673033785 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 19:13:05 +0000 Subject: [PATCH 1566/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dcb4b517..9b3e78a6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -2. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) -3. 🗣 Commented on [#930](https://github.com/scilus/scilpy/pull/930#issuecomment-1973160721) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#749](https://github.com/OpenFreeEnergy/openfe/pull/749#issuecomment-1972826395) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#1261](https://github.com/aimclub/FEDOT/pull/1261#issuecomment-1972620767) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) -7. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) -8. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#1493](https://github.com/spacetelescope/jwql/pull/1493#issuecomment-1971847930) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +2. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +3. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +4. 🗣 Commented on [#930](https://github.com/scilus/scilpy/pull/930#issuecomment-1973160721) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#749](https://github.com/OpenFreeEnergy/openfe/pull/749#issuecomment-1972826395) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#1261](https://github.com/aimclub/FEDOT/pull/1261#issuecomment-1972620767) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) +8. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) +9. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) From 17dc1cdb19800443811a8d940cfd172efc137262 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 19:37:06 +0000 Subject: [PATCH 1567/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9b3e78a6..8c122f20 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -2. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -3. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) -4. 🗣 Commented on [#930](https://github.com/scilus/scilpy/pull/930#issuecomment-1973160721) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#749](https://github.com/OpenFreeEnergy/openfe/pull/749#issuecomment-1972826395) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#1261](https://github.com/aimclub/FEDOT/pull/1261#issuecomment-1972620767) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) -8. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) -9. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#928](https://github.com/scilus/scilpy/pull/928#issuecomment-1971892929) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +3. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +4. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +5. 🗣 Commented on [#930](https://github.com/scilus/scilpy/pull/930#issuecomment-1973160721) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#749](https://github.com/OpenFreeEnergy/openfe/pull/749#issuecomment-1972826395) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#1261](https://github.com/aimclub/FEDOT/pull/1261#issuecomment-1972620767) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) +9. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) +10. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) From 1267d542024b4cd960d55cb2bbb780865826747e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Mar 2024 01:06:47 +0000 Subject: [PATCH 1568/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8c122f20..903e63f1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -3. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -4. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) -5. 🗣 Commented on [#930](https://github.com/scilus/scilpy/pull/930#issuecomment-1973160721) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#749](https://github.com/OpenFreeEnergy/openfe/pull/749#issuecomment-1972826395) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#1261](https://github.com/aimclub/FEDOT/pull/1261#issuecomment-1972620767) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) -9. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) -10. 🗣 Commented on [#929](https://github.com/scilus/scilpy/pull/929#issuecomment-1971980111) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#163](https://github.com/arfc/transition-scenarios/pull/163#issuecomment-1974129483) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +2. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) +3. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +4. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +5. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +6. 🗣 Commented on [#930](https://github.com/scilus/scilpy/pull/930#issuecomment-1973160721) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#749](https://github.com/OpenFreeEnergy/openfe/pull/749#issuecomment-1972826395) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#1261](https://github.com/aimclub/FEDOT/pull/1261#issuecomment-1972620767) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) +10. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) From ec7e25b065f5abc60c05b3cbb251fa553fec653e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Mar 2024 06:37:08 +0000 Subject: [PATCH 1569/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 903e63f1..fed833bf 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#163](https://github.com/arfc/transition-scenarios/pull/163#issuecomment-1974129483) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -2. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) -3. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -4. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -5. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) -6. 🗣 Commented on [#930](https://github.com/scilus/scilpy/pull/930#issuecomment-1973160721) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#749](https://github.com/OpenFreeEnergy/openfe/pull/749#issuecomment-1972826395) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#1261](https://github.com/aimclub/FEDOT/pull/1261#issuecomment-1972620767) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) -10. 🗣 Commented on [#111](https://github.com/TIGRLab/datman-dashboard/pull/111#issuecomment-1972400362) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) +1. 🗣 Commented on [#3](https://github.com/tuhinmallick/vectorflow/pull/3#issuecomment-1974414088) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) +2. 🗣 Commented on [#163](https://github.com/arfc/transition-scenarios/pull/163#issuecomment-1974129483) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +3. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +5. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +6. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +7. 🗣 Commented on [#930](https://github.com/scilus/scilpy/pull/930#issuecomment-1973160721) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#749](https://github.com/OpenFreeEnergy/openfe/pull/749#issuecomment-1972826395) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#1261](https://github.com/aimclub/FEDOT/pull/1261#issuecomment-1972620767) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) From e929867b8b58dab8fa83a2e147feb803c9d78aac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Mar 2024 08:17:51 +0000 Subject: [PATCH 1570/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fed833bf..f63bd52b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3](https://github.com/tuhinmallick/vectorflow/pull/3#issuecomment-1974414088) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) -2. 🗣 Commented on [#163](https://github.com/arfc/transition-scenarios/pull/163#issuecomment-1974129483) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -3. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -5. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -6. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) -7. 🗣 Commented on [#930](https://github.com/scilus/scilpy/pull/930#issuecomment-1973160721) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#749](https://github.com/OpenFreeEnergy/openfe/pull/749#issuecomment-1972826395) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#1261](https://github.com/aimclub/FEDOT/pull/1261#issuecomment-1972620767) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#15](https://github.com/CartoonFan/beets/pull/15#issuecomment-1972542775) in [CartoonFan/beets](https://github.com/CartoonFan/beets) +1. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) +2. 🗣 Commented on [#86](https://github.com/athphane/userbot/pull/86#issuecomment-1974689469) in [athphane/userbot](https://github.com/athphane/userbot) +3. 🗣 Commented on [#3](https://github.com/tuhinmallick/vectorflow/pull/3#issuecomment-1974414088) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) +4. 🗣 Commented on [#163](https://github.com/arfc/transition-scenarios/pull/163#issuecomment-1974129483) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +5. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +7. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +8. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +9. 🗣 Commented on [#930](https://github.com/scilus/scilpy/pull/930#issuecomment-1973160721) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#749](https://github.com/OpenFreeEnergy/openfe/pull/749#issuecomment-1972826395) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 25f19ce85b190f8751b07b02ed9977881a34451c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Mar 2024 18:20:29 +0000 Subject: [PATCH 1571/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f63bd52b..07c3eb9e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) -2. 🗣 Commented on [#86](https://github.com/athphane/userbot/pull/86#issuecomment-1974689469) in [athphane/userbot](https://github.com/athphane/userbot) -3. 🗣 Commented on [#3](https://github.com/tuhinmallick/vectorflow/pull/3#issuecomment-1974414088) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) -4. 🗣 Commented on [#163](https://github.com/arfc/transition-scenarios/pull/163#issuecomment-1974129483) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -5. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -7. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -8. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) -9. 🗣 Commented on [#930](https://github.com/scilus/scilpy/pull/930#issuecomment-1973160721) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#749](https://github.com/OpenFreeEnergy/openfe/pull/749#issuecomment-1972826395) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +2. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) +3. 🗣 Commented on [#86](https://github.com/athphane/userbot/pull/86#issuecomment-1974689469) in [athphane/userbot](https://github.com/athphane/userbot) +4. 🗣 Commented on [#3](https://github.com/tuhinmallick/vectorflow/pull/3#issuecomment-1974414088) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) +5. 🗣 Commented on [#163](https://github.com/arfc/transition-scenarios/pull/163#issuecomment-1974129483) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +6. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +8. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +9. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +10. 🗣 Commented on [#930](https://github.com/scilus/scilpy/pull/930#issuecomment-1973160721) in [scilus/scilpy](https://github.com/scilus/scilpy) From 3e67273d37da4ee6a84ef35abddfac2e327ecb0f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 3 Mar 2024 01:11:59 +0000 Subject: [PATCH 1572/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 07c3eb9e..7c8ae0f3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) -2. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) -3. 🗣 Commented on [#86](https://github.com/athphane/userbot/pull/86#issuecomment-1974689469) in [athphane/userbot](https://github.com/athphane/userbot) -4. 🗣 Commented on [#3](https://github.com/tuhinmallick/vectorflow/pull/3#issuecomment-1974414088) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) -5. 🗣 Commented on [#163](https://github.com/arfc/transition-scenarios/pull/163#issuecomment-1974129483) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -6. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -8. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -9. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) -10. 🗣 Commented on [#930](https://github.com/scilus/scilpy/pull/930#issuecomment-1973160721) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +2. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +3. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) +4. 🗣 Commented on [#86](https://github.com/athphane/userbot/pull/86#issuecomment-1974689469) in [athphane/userbot](https://github.com/athphane/userbot) +5. 🗣 Commented on [#3](https://github.com/tuhinmallick/vectorflow/pull/3#issuecomment-1974414088) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) +6. 🗣 Commented on [#163](https://github.com/arfc/transition-scenarios/pull/163#issuecomment-1974129483) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +7. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +9. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +10. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) From eb7960642cd65c1dca7f27cf68f73f2d2db9b914 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 3 Mar 2024 23:15:08 +0000 Subject: [PATCH 1573/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7c8ae0f3..51c660b1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -2. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) -3. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) -4. 🗣 Commented on [#86](https://github.com/athphane/userbot/pull/86#issuecomment-1974689469) in [athphane/userbot](https://github.com/athphane/userbot) -5. 🗣 Commented on [#3](https://github.com/tuhinmallick/vectorflow/pull/3#issuecomment-1974414088) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) -6. 🗣 Commented on [#163](https://github.com/arfc/transition-scenarios/pull/163#issuecomment-1974129483) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -7. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -9. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -10. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +1. 🗣 Commented on [#4](https://github.com/aviolaris/testtttt/pull/4#issuecomment-1975392331) in [aviolaris/testtttt](https://github.com/aviolaris/testtttt) +2. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +3. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +4. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) +5. 🗣 Commented on [#86](https://github.com/athphane/userbot/pull/86#issuecomment-1974689469) in [athphane/userbot](https://github.com/athphane/userbot) +6. 🗣 Commented on [#3](https://github.com/tuhinmallick/vectorflow/pull/3#issuecomment-1974414088) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) +7. 🗣 Commented on [#163](https://github.com/arfc/transition-scenarios/pull/163#issuecomment-1974129483) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +8. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +10. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) From 209b1b78a0c60fab2b022a06197cd7b6c0951187 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 3 Mar 2024 23:37:09 +0000 Subject: [PATCH 1574/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 51c660b1..7c8ae0f3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4](https://github.com/aviolaris/testtttt/pull/4#issuecomment-1975392331) in [aviolaris/testtttt](https://github.com/aviolaris/testtttt) -2. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -3. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) -4. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) -5. 🗣 Commented on [#86](https://github.com/athphane/userbot/pull/86#issuecomment-1974689469) in [athphane/userbot](https://github.com/athphane/userbot) -6. 🗣 Commented on [#3](https://github.com/tuhinmallick/vectorflow/pull/3#issuecomment-1974414088) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) -7. 🗣 Commented on [#163](https://github.com/arfc/transition-scenarios/pull/163#issuecomment-1974129483) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -8. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -10. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +1. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +2. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +3. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) +4. 🗣 Commented on [#86](https://github.com/athphane/userbot/pull/86#issuecomment-1974689469) in [athphane/userbot](https://github.com/athphane/userbot) +5. 🗣 Commented on [#3](https://github.com/tuhinmallick/vectorflow/pull/3#issuecomment-1974414088) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) +6. 🗣 Commented on [#163](https://github.com/arfc/transition-scenarios/pull/163#issuecomment-1974129483) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +7. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +9. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +10. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) From 9abff028a692edaefa006ed6d1185a7cc28dbdbf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 01:09:23 +0000 Subject: [PATCH 1575/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7c8ae0f3..0bcf816b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -2. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) -3. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) -4. 🗣 Commented on [#86](https://github.com/athphane/userbot/pull/86#issuecomment-1974689469) in [athphane/userbot](https://github.com/athphane/userbot) -5. 🗣 Commented on [#3](https://github.com/tuhinmallick/vectorflow/pull/3#issuecomment-1974414088) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) -6. 🗣 Commented on [#163](https://github.com/arfc/transition-scenarios/pull/163#issuecomment-1974129483) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -7. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -9. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -10. 🗣 Commented on [#24](https://github.com/eastgenomics/test_directory_parser/pull/24#issuecomment-1973253753) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +1. 🗣 Commented on [#724](https://github.com/QuantEcon/QuantEcon.py/pull/724#issuecomment-1975464036) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +2. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +3. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +4. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) +5. 🗣 Commented on [#86](https://github.com/athphane/userbot/pull/86#issuecomment-1974689469) in [athphane/userbot](https://github.com/athphane/userbot) +6. 🗣 Commented on [#3](https://github.com/tuhinmallick/vectorflow/pull/3#issuecomment-1974414088) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) +7. 🗣 Commented on [#163](https://github.com/arfc/transition-scenarios/pull/163#issuecomment-1974129483) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +8. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +10. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) From cc44ea6fb3cd4e497502b33ba868180f63b8f5f0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 08:06:10 +0000 Subject: [PATCH 1576/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0bcf816b..be8d2070 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#724](https://github.com/QuantEcon/QuantEcon.py/pull/724#issuecomment-1975464036) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -2. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -3. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) -4. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) -5. 🗣 Commented on [#86](https://github.com/athphane/userbot/pull/86#issuecomment-1974689469) in [athphane/userbot](https://github.com/athphane/userbot) -6. 🗣 Commented on [#3](https://github.com/tuhinmallick/vectorflow/pull/3#issuecomment-1974414088) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) -7. 🗣 Commented on [#163](https://github.com/arfc/transition-scenarios/pull/163#issuecomment-1974129483) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -8. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -10. 🗣 Commented on [#3134](https://github.com/reframe-hpc/reframe/pull/3134#issuecomment-1973489439) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +1. 🗣 Commented on [#867](https://github.com/fury-gl/fury/pull/867#issuecomment-1975937354) in [fury-gl/fury](https://github.com/fury-gl/fury) +2. 🗣 Commented on [#724](https://github.com/QuantEcon/QuantEcon.py/pull/724#issuecomment-1975464036) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +3. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +4. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +5. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) +6. 🗣 Commented on [#86](https://github.com/athphane/userbot/pull/86#issuecomment-1974689469) in [athphane/userbot](https://github.com/athphane/userbot) +7. 🗣 Commented on [#3](https://github.com/tuhinmallick/vectorflow/pull/3#issuecomment-1974414088) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) +8. 🗣 Commented on [#163](https://github.com/arfc/transition-scenarios/pull/163#issuecomment-1974129483) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +9. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) From 02e3a0fe6e621ebe1f102724dcafe2d9ff4f3531 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 10:26:00 +0000 Subject: [PATCH 1577/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index be8d2070..f4b5f6cc 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#867](https://github.com/fury-gl/fury/pull/867#issuecomment-1975937354) in [fury-gl/fury](https://github.com/fury-gl/fury) -2. 🗣 Commented on [#724](https://github.com/QuantEcon/QuantEcon.py/pull/724#issuecomment-1975464036) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -3. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -4. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) -5. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) -6. 🗣 Commented on [#86](https://github.com/athphane/userbot/pull/86#issuecomment-1974689469) in [athphane/userbot](https://github.com/athphane/userbot) -7. 🗣 Commented on [#3](https://github.com/tuhinmallick/vectorflow/pull/3#issuecomment-1974414088) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) -8. 🗣 Commented on [#163](https://github.com/arfc/transition-scenarios/pull/163#issuecomment-1974129483) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -9. 🗣 Commented on [#1502](https://github.com/openSUSE/osc/pull/1502#issuecomment-1973801161) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#521](https://github.com/UIUCLibrary/Speedwagon/pull/521#issuecomment-1973746349) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +1. 🗣 Commented on [#5503](https://github.com/rhinstaller/anaconda/pull/5503#issuecomment-1976239967) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#10](https://github.com/eastgenomics/gene_annotation2bed/pull/10#issuecomment-1976054590) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +3. 🗣 Commented on [#54](https://github.com/esynr3z/corsair/pull/54#issuecomment-1976028600) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +4. 🗣 Commented on [#867](https://github.com/fury-gl/fury/pull/867#issuecomment-1975937354) in [fury-gl/fury](https://github.com/fury-gl/fury) +5. 🗣 Commented on [#724](https://github.com/QuantEcon/QuantEcon.py/pull/724#issuecomment-1975464036) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +6. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +7. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +8. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) +9. 🗣 Commented on [#86](https://github.com/athphane/userbot/pull/86#issuecomment-1974689469) in [athphane/userbot](https://github.com/athphane/userbot) +10. 🗣 Commented on [#3](https://github.com/tuhinmallick/vectorflow/pull/3#issuecomment-1974414088) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) From 419cf723a10f044949158933389b79da891f4021 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 11:54:05 +0000 Subject: [PATCH 1578/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f4b5f6cc..ba591e0c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5503](https://github.com/rhinstaller/anaconda/pull/5503#issuecomment-1976239967) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#10](https://github.com/eastgenomics/gene_annotation2bed/pull/10#issuecomment-1976054590) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -3. 🗣 Commented on [#54](https://github.com/esynr3z/corsair/pull/54#issuecomment-1976028600) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -4. 🗣 Commented on [#867](https://github.com/fury-gl/fury/pull/867#issuecomment-1975937354) in [fury-gl/fury](https://github.com/fury-gl/fury) -5. 🗣 Commented on [#724](https://github.com/QuantEcon/QuantEcon.py/pull/724#issuecomment-1975464036) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -6. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -7. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) -8. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) -9. 🗣 Commented on [#86](https://github.com/athphane/userbot/pull/86#issuecomment-1974689469) in [athphane/userbot](https://github.com/athphane/userbot) -10. 🗣 Commented on [#3](https://github.com/tuhinmallick/vectorflow/pull/3#issuecomment-1974414088) in [tuhinmallick/vectorflow](https://github.com/tuhinmallick/vectorflow) +1. 🗣 Commented on [#752](https://github.com/OpenFreeEnergy/openfe/pull/752#issuecomment-1976377868) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#5503](https://github.com/rhinstaller/anaconda/pull/5503#issuecomment-1976239967) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#10](https://github.com/eastgenomics/gene_annotation2bed/pull/10#issuecomment-1976054590) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +4. 🗣 Commented on [#54](https://github.com/esynr3z/corsair/pull/54#issuecomment-1976028600) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +5. 🗣 Commented on [#867](https://github.com/fury-gl/fury/pull/867#issuecomment-1975937354) in [fury-gl/fury](https://github.com/fury-gl/fury) +6. 🗣 Commented on [#724](https://github.com/QuantEcon/QuantEcon.py/pull/724#issuecomment-1975464036) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +7. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +8. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +9. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) +10. 🗣 Commented on [#86](https://github.com/athphane/userbot/pull/86#issuecomment-1974689469) in [athphane/userbot](https://github.com/athphane/userbot) From 22062ba8e24e3cdae4f9ec5e7b067dce8a8c0498 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 14:37:38 +0000 Subject: [PATCH 1579/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ba591e0c..9dca4010 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#752](https://github.com/OpenFreeEnergy/openfe/pull/752#issuecomment-1976377868) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#5503](https://github.com/rhinstaller/anaconda/pull/5503#issuecomment-1976239967) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#10](https://github.com/eastgenomics/gene_annotation2bed/pull/10#issuecomment-1976054590) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -4. 🗣 Commented on [#54](https://github.com/esynr3z/corsair/pull/54#issuecomment-1976028600) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -5. 🗣 Commented on [#867](https://github.com/fury-gl/fury/pull/867#issuecomment-1975937354) in [fury-gl/fury](https://github.com/fury-gl/fury) -6. 🗣 Commented on [#724](https://github.com/QuantEcon/QuantEcon.py/pull/724#issuecomment-1975464036) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -7. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -8. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) -9. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) -10. 🗣 Commented on [#86](https://github.com/athphane/userbot/pull/86#issuecomment-1974689469) in [athphane/userbot](https://github.com/athphane/userbot) +1. 🗣 Commented on [#5504](https://github.com/rhinstaller/anaconda/pull/5504#issuecomment-1976723352) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#752](https://github.com/OpenFreeEnergy/openfe/pull/752#issuecomment-1976377868) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#5503](https://github.com/rhinstaller/anaconda/pull/5503#issuecomment-1976239967) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#10](https://github.com/eastgenomics/gene_annotation2bed/pull/10#issuecomment-1976054590) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +5. 🗣 Commented on [#54](https://github.com/esynr3z/corsair/pull/54#issuecomment-1976028600) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +6. 🗣 Commented on [#867](https://github.com/fury-gl/fury/pull/867#issuecomment-1975937354) in [fury-gl/fury](https://github.com/fury-gl/fury) +7. 🗣 Commented on [#724](https://github.com/QuantEcon/QuantEcon.py/pull/724#issuecomment-1975464036) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +8. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +9. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +10. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) From 57c3576358c947de7f4fa9b426e65116752c0d35 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 16:21:18 +0000 Subject: [PATCH 1580/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9dca4010..244c6ac9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5504](https://github.com/rhinstaller/anaconda/pull/5504#issuecomment-1976723352) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#752](https://github.com/OpenFreeEnergy/openfe/pull/752#issuecomment-1976377868) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#5503](https://github.com/rhinstaller/anaconda/pull/5503#issuecomment-1976239967) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#10](https://github.com/eastgenomics/gene_annotation2bed/pull/10#issuecomment-1976054590) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -5. 🗣 Commented on [#54](https://github.com/esynr3z/corsair/pull/54#issuecomment-1976028600) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -6. 🗣 Commented on [#867](https://github.com/fury-gl/fury/pull/867#issuecomment-1975937354) in [fury-gl/fury](https://github.com/fury-gl/fury) -7. 🗣 Commented on [#724](https://github.com/QuantEcon/QuantEcon.py/pull/724#issuecomment-1975464036) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -8. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -9. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) -10. 🗣 Commented on [#87](https://github.com/athphane/userbot/pull/87#issuecomment-1974702876) in [athphane/userbot](https://github.com/athphane/userbot) +1. 🗣 Commented on [#481](https://github.com/VorTECHsa/python-sdk/pull/481#issuecomment-1976898640) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +2. 🗣 Commented on [#5504](https://github.com/rhinstaller/anaconda/pull/5504#issuecomment-1976723352) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#752](https://github.com/OpenFreeEnergy/openfe/pull/752#issuecomment-1976377868) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#5503](https://github.com/rhinstaller/anaconda/pull/5503#issuecomment-1976239967) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#10](https://github.com/eastgenomics/gene_annotation2bed/pull/10#issuecomment-1976054590) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +6. 🗣 Commented on [#54](https://github.com/esynr3z/corsair/pull/54#issuecomment-1976028600) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +7. 🗣 Commented on [#867](https://github.com/fury-gl/fury/pull/867#issuecomment-1975937354) in [fury-gl/fury](https://github.com/fury-gl/fury) +8. 🗣 Commented on [#724](https://github.com/QuantEcon/QuantEcon.py/pull/724#issuecomment-1975464036) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +9. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +10. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) From a2489c77834570ab52498a1d2978d879d7b93b15 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 17:37:07 +0000 Subject: [PATCH 1581/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 244c6ac9..25faf521 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#481](https://github.com/VorTECHsa/python-sdk/pull/481#issuecomment-1976898640) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -2. 🗣 Commented on [#5504](https://github.com/rhinstaller/anaconda/pull/5504#issuecomment-1976723352) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#752](https://github.com/OpenFreeEnergy/openfe/pull/752#issuecomment-1976377868) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#5503](https://github.com/rhinstaller/anaconda/pull/5503#issuecomment-1976239967) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#10](https://github.com/eastgenomics/gene_annotation2bed/pull/10#issuecomment-1976054590) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -6. 🗣 Commented on [#54](https://github.com/esynr3z/corsair/pull/54#issuecomment-1976028600) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -7. 🗣 Commented on [#867](https://github.com/fury-gl/fury/pull/867#issuecomment-1975937354) in [fury-gl/fury](https://github.com/fury-gl/fury) -8. 🗣 Commented on [#724](https://github.com/QuantEcon/QuantEcon.py/pull/724#issuecomment-1975464036) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -9. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -10. 🗣 Commented on [#74](https://github.com/normcontrol/normcontrol-Document-Parser/pull/74#issuecomment-1974868623) in [normcontrol/normcontrol-Document-Parser](https://github.com/normcontrol/normcontrol-Document-Parser) +1. 🗣 Commented on [#21843](https://github.com/spyder-ide/spyder/pull/21843#issuecomment-1977096285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#481](https://github.com/VorTECHsa/python-sdk/pull/481#issuecomment-1976898640) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +3. 🗣 Commented on [#5504](https://github.com/rhinstaller/anaconda/pull/5504#issuecomment-1976723352) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#752](https://github.com/OpenFreeEnergy/openfe/pull/752#issuecomment-1976377868) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#5503](https://github.com/rhinstaller/anaconda/pull/5503#issuecomment-1976239967) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#10](https://github.com/eastgenomics/gene_annotation2bed/pull/10#issuecomment-1976054590) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +7. 🗣 Commented on [#54](https://github.com/esynr3z/corsair/pull/54#issuecomment-1976028600) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +8. 🗣 Commented on [#867](https://github.com/fury-gl/fury/pull/867#issuecomment-1975937354) in [fury-gl/fury](https://github.com/fury-gl/fury) +9. 🗣 Commented on [#724](https://github.com/QuantEcon/QuantEcon.py/pull/724#issuecomment-1975464036) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +10. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) From a2c46c8dfe87d9e5b606af8cab47dca3c53d91bf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 20:16:34 +0000 Subject: [PATCH 1582/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 25faf521..26eebf14 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21843](https://github.com/spyder-ide/spyder/pull/21843#issuecomment-1977096285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#481](https://github.com/VorTECHsa/python-sdk/pull/481#issuecomment-1976898640) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -3. 🗣 Commented on [#5504](https://github.com/rhinstaller/anaconda/pull/5504#issuecomment-1976723352) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#752](https://github.com/OpenFreeEnergy/openfe/pull/752#issuecomment-1976377868) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#5503](https://github.com/rhinstaller/anaconda/pull/5503#issuecomment-1976239967) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#10](https://github.com/eastgenomics/gene_annotation2bed/pull/10#issuecomment-1976054590) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -7. 🗣 Commented on [#54](https://github.com/esynr3z/corsair/pull/54#issuecomment-1976028600) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -8. 🗣 Commented on [#867](https://github.com/fury-gl/fury/pull/867#issuecomment-1975937354) in [fury-gl/fury](https://github.com/fury-gl/fury) -9. 🗣 Commented on [#724](https://github.com/QuantEcon/QuantEcon.py/pull/724#issuecomment-1975464036) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -10. 🗣 Commented on [#12](https://github.com/sarnold/ymltoxml/pull/12#issuecomment-1974960537) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +1. 🗣 Commented on [#1](https://github.com/Gravity-Spy/gravityspy-plus/pull/1#issuecomment-1977377504) in [Gravity-Spy/gravityspy-plus](https://github.com/Gravity-Spy/gravityspy-plus) +2. 🗣 Commented on [#21843](https://github.com/spyder-ide/spyder/pull/21843#issuecomment-1977096285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#481](https://github.com/VorTECHsa/python-sdk/pull/481#issuecomment-1976898640) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +4. 🗣 Commented on [#5504](https://github.com/rhinstaller/anaconda/pull/5504#issuecomment-1976723352) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#752](https://github.com/OpenFreeEnergy/openfe/pull/752#issuecomment-1976377868) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#5503](https://github.com/rhinstaller/anaconda/pull/5503#issuecomment-1976239967) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#10](https://github.com/eastgenomics/gene_annotation2bed/pull/10#issuecomment-1976054590) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +8. 🗣 Commented on [#54](https://github.com/esynr3z/corsair/pull/54#issuecomment-1976028600) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +9. 🗣 Commented on [#867](https://github.com/fury-gl/fury/pull/867#issuecomment-1975937354) in [fury-gl/fury](https://github.com/fury-gl/fury) +10. 🗣 Commented on [#724](https://github.com/QuantEcon/QuantEcon.py/pull/724#issuecomment-1975464036) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) From 17fcea31fdbd6976475951798e6ce8c40becea1a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 21:37:15 +0000 Subject: [PATCH 1583/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 26eebf14..4979c50b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/Gravity-Spy/gravityspy-plus/pull/1#issuecomment-1977377504) in [Gravity-Spy/gravityspy-plus](https://github.com/Gravity-Spy/gravityspy-plus) -2. 🗣 Commented on [#21843](https://github.com/spyder-ide/spyder/pull/21843#issuecomment-1977096285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#481](https://github.com/VorTECHsa/python-sdk/pull/481#issuecomment-1976898640) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -4. 🗣 Commented on [#5504](https://github.com/rhinstaller/anaconda/pull/5504#issuecomment-1976723352) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#752](https://github.com/OpenFreeEnergy/openfe/pull/752#issuecomment-1976377868) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#5503](https://github.com/rhinstaller/anaconda/pull/5503#issuecomment-1976239967) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#10](https://github.com/eastgenomics/gene_annotation2bed/pull/10#issuecomment-1976054590) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -8. 🗣 Commented on [#54](https://github.com/esynr3z/corsair/pull/54#issuecomment-1976028600) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -9. 🗣 Commented on [#867](https://github.com/fury-gl/fury/pull/867#issuecomment-1975937354) in [fury-gl/fury](https://github.com/fury-gl/fury) -10. 🗣 Commented on [#724](https://github.com/QuantEcon/QuantEcon.py/pull/724#issuecomment-1975464036) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +1. 🗣 Commented on [#55](https://github.com/njzjz/dpamber/pull/55#issuecomment-1977488467) in [njzjz/dpamber](https://github.com/njzjz/dpamber) +2. 🗣 Commented on [#1](https://github.com/Gravity-Spy/gravityspy-plus/pull/1#issuecomment-1977377504) in [Gravity-Spy/gravityspy-plus](https://github.com/Gravity-Spy/gravityspy-plus) +3. 🗣 Commented on [#21843](https://github.com/spyder-ide/spyder/pull/21843#issuecomment-1977096285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#481](https://github.com/VorTECHsa/python-sdk/pull/481#issuecomment-1976898640) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +5. 🗣 Commented on [#5504](https://github.com/rhinstaller/anaconda/pull/5504#issuecomment-1976723352) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#752](https://github.com/OpenFreeEnergy/openfe/pull/752#issuecomment-1976377868) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#5503](https://github.com/rhinstaller/anaconda/pull/5503#issuecomment-1976239967) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#10](https://github.com/eastgenomics/gene_annotation2bed/pull/10#issuecomment-1976054590) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +9. 🗣 Commented on [#54](https://github.com/esynr3z/corsair/pull/54#issuecomment-1976028600) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +10. 🗣 Commented on [#867](https://github.com/fury-gl/fury/pull/867#issuecomment-1975937354) in [fury-gl/fury](https://github.com/fury-gl/fury) From f0ab1a54d176eaf2e046a3e412abdf92e415b7e3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 23:16:40 +0000 Subject: [PATCH 1584/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4979c50b..c39e559f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#55](https://github.com/njzjz/dpamber/pull/55#issuecomment-1977488467) in [njzjz/dpamber](https://github.com/njzjz/dpamber) -2. 🗣 Commented on [#1](https://github.com/Gravity-Spy/gravityspy-plus/pull/1#issuecomment-1977377504) in [Gravity-Spy/gravityspy-plus](https://github.com/Gravity-Spy/gravityspy-plus) -3. 🗣 Commented on [#21843](https://github.com/spyder-ide/spyder/pull/21843#issuecomment-1977096285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#481](https://github.com/VorTECHsa/python-sdk/pull/481#issuecomment-1976898640) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -5. 🗣 Commented on [#5504](https://github.com/rhinstaller/anaconda/pull/5504#issuecomment-1976723352) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#752](https://github.com/OpenFreeEnergy/openfe/pull/752#issuecomment-1976377868) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#5503](https://github.com/rhinstaller/anaconda/pull/5503#issuecomment-1976239967) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#10](https://github.com/eastgenomics/gene_annotation2bed/pull/10#issuecomment-1976054590) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -9. 🗣 Commented on [#54](https://github.com/esynr3z/corsair/pull/54#issuecomment-1976028600) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -10. 🗣 Commented on [#867](https://github.com/fury-gl/fury/pull/867#issuecomment-1975937354) in [fury-gl/fury](https://github.com/fury-gl/fury) +1. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-image-search/pull/1#issuecomment-1977627288) in [tuhinmallick/clip-image-search](https://github.com/tuhinmallick/clip-image-search) +2. 🗣 Commented on [#4365](https://github.com/uwcirg/truenth-portal/pull/4365#issuecomment-1977605073) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +3. 🗣 Commented on [#55](https://github.com/njzjz/dpamber/pull/55#issuecomment-1977488467) in [njzjz/dpamber](https://github.com/njzjz/dpamber) +4. 🗣 Commented on [#1](https://github.com/Gravity-Spy/gravityspy-plus/pull/1#issuecomment-1977377504) in [Gravity-Spy/gravityspy-plus](https://github.com/Gravity-Spy/gravityspy-plus) +5. 🗣 Commented on [#21843](https://github.com/spyder-ide/spyder/pull/21843#issuecomment-1977096285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#481](https://github.com/VorTECHsa/python-sdk/pull/481#issuecomment-1976898640) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +7. 🗣 Commented on [#5504](https://github.com/rhinstaller/anaconda/pull/5504#issuecomment-1976723352) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#752](https://github.com/OpenFreeEnergy/openfe/pull/752#issuecomment-1976377868) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#5503](https://github.com/rhinstaller/anaconda/pull/5503#issuecomment-1976239967) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#10](https://github.com/eastgenomics/gene_annotation2bed/pull/10#issuecomment-1976054590) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) From 81f6028ae0de709c7f1224ff5cfa09ce0bd4be08 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Mar 2024 02:02:21 +0000 Subject: [PATCH 1585/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c39e559f..8ed07c5b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-image-search/pull/1#issuecomment-1977627288) in [tuhinmallick/clip-image-search](https://github.com/tuhinmallick/clip-image-search) -2. 🗣 Commented on [#4365](https://github.com/uwcirg/truenth-portal/pull/4365#issuecomment-1977605073) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -3. 🗣 Commented on [#55](https://github.com/njzjz/dpamber/pull/55#issuecomment-1977488467) in [njzjz/dpamber](https://github.com/njzjz/dpamber) -4. 🗣 Commented on [#1](https://github.com/Gravity-Spy/gravityspy-plus/pull/1#issuecomment-1977377504) in [Gravity-Spy/gravityspy-plus](https://github.com/Gravity-Spy/gravityspy-plus) -5. 🗣 Commented on [#21843](https://github.com/spyder-ide/spyder/pull/21843#issuecomment-1977096285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#481](https://github.com/VorTECHsa/python-sdk/pull/481#issuecomment-1976898640) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -7. 🗣 Commented on [#5504](https://github.com/rhinstaller/anaconda/pull/5504#issuecomment-1976723352) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#752](https://github.com/OpenFreeEnergy/openfe/pull/752#issuecomment-1976377868) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#5503](https://github.com/rhinstaller/anaconda/pull/5503#issuecomment-1976239967) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#10](https://github.com/eastgenomics/gene_annotation2bed/pull/10#issuecomment-1976054590) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +1. 🗣 Commented on [#21857](https://github.com/spyder-ide/spyder/pull/21857#issuecomment-1977805555) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-image-search/pull/1#issuecomment-1977627288) in [tuhinmallick/clip-image-search](https://github.com/tuhinmallick/clip-image-search) +3. 🗣 Commented on [#4365](https://github.com/uwcirg/truenth-portal/pull/4365#issuecomment-1977605073) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +4. 🗣 Commented on [#55](https://github.com/njzjz/dpamber/pull/55#issuecomment-1977488467) in [njzjz/dpamber](https://github.com/njzjz/dpamber) +5. 🗣 Commented on [#1](https://github.com/Gravity-Spy/gravityspy-plus/pull/1#issuecomment-1977377504) in [Gravity-Spy/gravityspy-plus](https://github.com/Gravity-Spy/gravityspy-plus) +6. 🗣 Commented on [#21843](https://github.com/spyder-ide/spyder/pull/21843#issuecomment-1977096285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#481](https://github.com/VorTECHsa/python-sdk/pull/481#issuecomment-1976898640) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +8. 🗣 Commented on [#5504](https://github.com/rhinstaller/anaconda/pull/5504#issuecomment-1976723352) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#752](https://github.com/OpenFreeEnergy/openfe/pull/752#issuecomment-1976377868) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#5503](https://github.com/rhinstaller/anaconda/pull/5503#issuecomment-1976239967) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 3c80a02a5f0911614c982b6882d604ca603d3856 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Mar 2024 08:19:48 +0000 Subject: [PATCH 1586/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8ed07c5b..21768670 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21857](https://github.com/spyder-ide/spyder/pull/21857#issuecomment-1977805555) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-image-search/pull/1#issuecomment-1977627288) in [tuhinmallick/clip-image-search](https://github.com/tuhinmallick/clip-image-search) -3. 🗣 Commented on [#4365](https://github.com/uwcirg/truenth-portal/pull/4365#issuecomment-1977605073) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -4. 🗣 Commented on [#55](https://github.com/njzjz/dpamber/pull/55#issuecomment-1977488467) in [njzjz/dpamber](https://github.com/njzjz/dpamber) -5. 🗣 Commented on [#1](https://github.com/Gravity-Spy/gravityspy-plus/pull/1#issuecomment-1977377504) in [Gravity-Spy/gravityspy-plus](https://github.com/Gravity-Spy/gravityspy-plus) -6. 🗣 Commented on [#21843](https://github.com/spyder-ide/spyder/pull/21843#issuecomment-1977096285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#481](https://github.com/VorTECHsa/python-sdk/pull/481#issuecomment-1976898640) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -8. 🗣 Commented on [#5504](https://github.com/rhinstaller/anaconda/pull/5504#issuecomment-1976723352) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#752](https://github.com/OpenFreeEnergy/openfe/pull/752#issuecomment-1976377868) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#5503](https://github.com/rhinstaller/anaconda/pull/5503#issuecomment-1976239967) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#1263](https://github.com/aimclub/FEDOT/pull/1263#issuecomment-1978167813) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#21857](https://github.com/spyder-ide/spyder/pull/21857#issuecomment-1977805555) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-image-search/pull/1#issuecomment-1977627288) in [tuhinmallick/clip-image-search](https://github.com/tuhinmallick/clip-image-search) +4. 🗣 Commented on [#4365](https://github.com/uwcirg/truenth-portal/pull/4365#issuecomment-1977605073) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +5. 🗣 Commented on [#55](https://github.com/njzjz/dpamber/pull/55#issuecomment-1977488467) in [njzjz/dpamber](https://github.com/njzjz/dpamber) +6. 🗣 Commented on [#1](https://github.com/Gravity-Spy/gravityspy-plus/pull/1#issuecomment-1977377504) in [Gravity-Spy/gravityspy-plus](https://github.com/Gravity-Spy/gravityspy-plus) +7. 🗣 Commented on [#21843](https://github.com/spyder-ide/spyder/pull/21843#issuecomment-1977096285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#481](https://github.com/VorTECHsa/python-sdk/pull/481#issuecomment-1976898640) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +9. 🗣 Commented on [#5504](https://github.com/rhinstaller/anaconda/pull/5504#issuecomment-1976723352) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#752](https://github.com/OpenFreeEnergy/openfe/pull/752#issuecomment-1976377868) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From 53b78239762d66f8faa259f5a1e5a0332724e071 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Mar 2024 10:37:34 +0000 Subject: [PATCH 1587/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 21768670..981c02f0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1263](https://github.com/aimclub/FEDOT/pull/1263#issuecomment-1978167813) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#21857](https://github.com/spyder-ide/spyder/pull/21857#issuecomment-1977805555) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-image-search/pull/1#issuecomment-1977627288) in [tuhinmallick/clip-image-search](https://github.com/tuhinmallick/clip-image-search) -4. 🗣 Commented on [#4365](https://github.com/uwcirg/truenth-portal/pull/4365#issuecomment-1977605073) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -5. 🗣 Commented on [#55](https://github.com/njzjz/dpamber/pull/55#issuecomment-1977488467) in [njzjz/dpamber](https://github.com/njzjz/dpamber) -6. 🗣 Commented on [#1](https://github.com/Gravity-Spy/gravityspy-plus/pull/1#issuecomment-1977377504) in [Gravity-Spy/gravityspy-plus](https://github.com/Gravity-Spy/gravityspy-plus) -7. 🗣 Commented on [#21843](https://github.com/spyder-ide/spyder/pull/21843#issuecomment-1977096285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#481](https://github.com/VorTECHsa/python-sdk/pull/481#issuecomment-1976898640) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -9. 🗣 Commented on [#5504](https://github.com/rhinstaller/anaconda/pull/5504#issuecomment-1976723352) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#752](https://github.com/OpenFreeEnergy/openfe/pull/752#issuecomment-1976377868) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#266](https://github.com/CartoonFan/wine-tkg-git/pull/266#issuecomment-1978405889) in [CartoonFan/wine-tkg-git](https://github.com/CartoonFan/wine-tkg-git) +2. 🗣 Commented on [#1263](https://github.com/aimclub/FEDOT/pull/1263#issuecomment-1978167813) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#21857](https://github.com/spyder-ide/spyder/pull/21857#issuecomment-1977805555) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-image-search/pull/1#issuecomment-1977627288) in [tuhinmallick/clip-image-search](https://github.com/tuhinmallick/clip-image-search) +5. 🗣 Commented on [#4365](https://github.com/uwcirg/truenth-portal/pull/4365#issuecomment-1977605073) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +6. 🗣 Commented on [#55](https://github.com/njzjz/dpamber/pull/55#issuecomment-1977488467) in [njzjz/dpamber](https://github.com/njzjz/dpamber) +7. 🗣 Commented on [#1](https://github.com/Gravity-Spy/gravityspy-plus/pull/1#issuecomment-1977377504) in [Gravity-Spy/gravityspy-plus](https://github.com/Gravity-Spy/gravityspy-plus) +8. 🗣 Commented on [#21843](https://github.com/spyder-ide/spyder/pull/21843#issuecomment-1977096285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#481](https://github.com/VorTECHsa/python-sdk/pull/481#issuecomment-1976898640) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +10. 🗣 Commented on [#5504](https://github.com/rhinstaller/anaconda/pull/5504#issuecomment-1976723352) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From de83256266aec047f7761bb413c849055da1a333 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Mar 2024 11:15:18 +0000 Subject: [PATCH 1588/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 981c02f0..34112983 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#266](https://github.com/CartoonFan/wine-tkg-git/pull/266#issuecomment-1978405889) in [CartoonFan/wine-tkg-git](https://github.com/CartoonFan/wine-tkg-git) -2. 🗣 Commented on [#1263](https://github.com/aimclub/FEDOT/pull/1263#issuecomment-1978167813) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#21857](https://github.com/spyder-ide/spyder/pull/21857#issuecomment-1977805555) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-image-search/pull/1#issuecomment-1977627288) in [tuhinmallick/clip-image-search](https://github.com/tuhinmallick/clip-image-search) -5. 🗣 Commented on [#4365](https://github.com/uwcirg/truenth-portal/pull/4365#issuecomment-1977605073) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -6. 🗣 Commented on [#55](https://github.com/njzjz/dpamber/pull/55#issuecomment-1977488467) in [njzjz/dpamber](https://github.com/njzjz/dpamber) -7. 🗣 Commented on [#1](https://github.com/Gravity-Spy/gravityspy-plus/pull/1#issuecomment-1977377504) in [Gravity-Spy/gravityspy-plus](https://github.com/Gravity-Spy/gravityspy-plus) -8. 🗣 Commented on [#21843](https://github.com/spyder-ide/spyder/pull/21843#issuecomment-1977096285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#481](https://github.com/VorTECHsa/python-sdk/pull/481#issuecomment-1976898640) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -10. 🗣 Commented on [#5504](https://github.com/rhinstaller/anaconda/pull/5504#issuecomment-1976723352) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#194](https://github.com/eastgenomics/eggd_dias_batch/pull/194#issuecomment-1978472511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +2. 🗣 Commented on [#266](https://github.com/CartoonFan/wine-tkg-git/pull/266#issuecomment-1978405889) in [CartoonFan/wine-tkg-git](https://github.com/CartoonFan/wine-tkg-git) +3. 🗣 Commented on [#1263](https://github.com/aimclub/FEDOT/pull/1263#issuecomment-1978167813) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#21857](https://github.com/spyder-ide/spyder/pull/21857#issuecomment-1977805555) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-image-search/pull/1#issuecomment-1977627288) in [tuhinmallick/clip-image-search](https://github.com/tuhinmallick/clip-image-search) +6. 🗣 Commented on [#4365](https://github.com/uwcirg/truenth-portal/pull/4365#issuecomment-1977605073) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +7. 🗣 Commented on [#55](https://github.com/njzjz/dpamber/pull/55#issuecomment-1977488467) in [njzjz/dpamber](https://github.com/njzjz/dpamber) +8. 🗣 Commented on [#1](https://github.com/Gravity-Spy/gravityspy-plus/pull/1#issuecomment-1977377504) in [Gravity-Spy/gravityspy-plus](https://github.com/Gravity-Spy/gravityspy-plus) +9. 🗣 Commented on [#21843](https://github.com/spyder-ide/spyder/pull/21843#issuecomment-1977096285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#481](https://github.com/VorTECHsa/python-sdk/pull/481#issuecomment-1976898640) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) From 659a36adb2f4853cd34f034b8e4dec25ca1c4c71 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Mar 2024 15:37:14 +0000 Subject: [PATCH 1589/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 34112983..ce1d9d1b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#194](https://github.com/eastgenomics/eggd_dias_batch/pull/194#issuecomment-1978472511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -2. 🗣 Commented on [#266](https://github.com/CartoonFan/wine-tkg-git/pull/266#issuecomment-1978405889) in [CartoonFan/wine-tkg-git](https://github.com/CartoonFan/wine-tkg-git) -3. 🗣 Commented on [#1263](https://github.com/aimclub/FEDOT/pull/1263#issuecomment-1978167813) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#21857](https://github.com/spyder-ide/spyder/pull/21857#issuecomment-1977805555) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-image-search/pull/1#issuecomment-1977627288) in [tuhinmallick/clip-image-search](https://github.com/tuhinmallick/clip-image-search) -6. 🗣 Commented on [#4365](https://github.com/uwcirg/truenth-portal/pull/4365#issuecomment-1977605073) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -7. 🗣 Commented on [#55](https://github.com/njzjz/dpamber/pull/55#issuecomment-1977488467) in [njzjz/dpamber](https://github.com/njzjz/dpamber) -8. 🗣 Commented on [#1](https://github.com/Gravity-Spy/gravityspy-plus/pull/1#issuecomment-1977377504) in [Gravity-Spy/gravityspy-plus](https://github.com/Gravity-Spy/gravityspy-plus) -9. 🗣 Commented on [#21843](https://github.com/spyder-ide/spyder/pull/21843#issuecomment-1977096285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#481](https://github.com/VorTECHsa/python-sdk/pull/481#issuecomment-1976898640) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +1. 🗣 Commented on [#1504](https://github.com/openSUSE/osc/pull/1504#issuecomment-1979040099) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#194](https://github.com/eastgenomics/eggd_dias_batch/pull/194#issuecomment-1978472511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +3. 🗣 Commented on [#266](https://github.com/CartoonFan/wine-tkg-git/pull/266#issuecomment-1978405889) in [CartoonFan/wine-tkg-git](https://github.com/CartoonFan/wine-tkg-git) +4. 🗣 Commented on [#1263](https://github.com/aimclub/FEDOT/pull/1263#issuecomment-1978167813) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#21857](https://github.com/spyder-ide/spyder/pull/21857#issuecomment-1977805555) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-image-search/pull/1#issuecomment-1977627288) in [tuhinmallick/clip-image-search](https://github.com/tuhinmallick/clip-image-search) +7. 🗣 Commented on [#4365](https://github.com/uwcirg/truenth-portal/pull/4365#issuecomment-1977605073) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +8. 🗣 Commented on [#55](https://github.com/njzjz/dpamber/pull/55#issuecomment-1977488467) in [njzjz/dpamber](https://github.com/njzjz/dpamber) +9. 🗣 Commented on [#1](https://github.com/Gravity-Spy/gravityspy-plus/pull/1#issuecomment-1977377504) in [Gravity-Spy/gravityspy-plus](https://github.com/Gravity-Spy/gravityspy-plus) +10. 🗣 Commented on [#21843](https://github.com/spyder-ide/spyder/pull/21843#issuecomment-1977096285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 8b4826985141897e5349f691993661c915f4da16 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Mar 2024 16:18:57 +0000 Subject: [PATCH 1590/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ce1d9d1b..c7492599 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1504](https://github.com/openSUSE/osc/pull/1504#issuecomment-1979040099) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#194](https://github.com/eastgenomics/eggd_dias_batch/pull/194#issuecomment-1978472511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -3. 🗣 Commented on [#266](https://github.com/CartoonFan/wine-tkg-git/pull/266#issuecomment-1978405889) in [CartoonFan/wine-tkg-git](https://github.com/CartoonFan/wine-tkg-git) -4. 🗣 Commented on [#1263](https://github.com/aimclub/FEDOT/pull/1263#issuecomment-1978167813) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#21857](https://github.com/spyder-ide/spyder/pull/21857#issuecomment-1977805555) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-image-search/pull/1#issuecomment-1977627288) in [tuhinmallick/clip-image-search](https://github.com/tuhinmallick/clip-image-search) -7. 🗣 Commented on [#4365](https://github.com/uwcirg/truenth-portal/pull/4365#issuecomment-1977605073) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -8. 🗣 Commented on [#55](https://github.com/njzjz/dpamber/pull/55#issuecomment-1977488467) in [njzjz/dpamber](https://github.com/njzjz/dpamber) -9. 🗣 Commented on [#1](https://github.com/Gravity-Spy/gravityspy-plus/pull/1#issuecomment-1977377504) in [Gravity-Spy/gravityspy-plus](https://github.com/Gravity-Spy/gravityspy-plus) -10. 🗣 Commented on [#21843](https://github.com/spyder-ide/spyder/pull/21843#issuecomment-1977096285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#3097](https://github.com/dipy/dipy/pull/3097#issuecomment-1979126594) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#57](https://github.com/esynr3z/corsair/pull/57#issuecomment-1979114167) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +3. 🗣 Commented on [#56](https://github.com/esynr3z/corsair/pull/56#issuecomment-1979083945) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +4. 🗣 Commented on [#55](https://github.com/esynr3z/corsair/pull/55#issuecomment-1979060677) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +5. 🗣 Commented on [#1504](https://github.com/openSUSE/osc/pull/1504#issuecomment-1979040099) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#194](https://github.com/eastgenomics/eggd_dias_batch/pull/194#issuecomment-1978472511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +7. 🗣 Commented on [#266](https://github.com/CartoonFan/wine-tkg-git/pull/266#issuecomment-1978405889) in [CartoonFan/wine-tkg-git](https://github.com/CartoonFan/wine-tkg-git) +8. 🗣 Commented on [#1263](https://github.com/aimclub/FEDOT/pull/1263#issuecomment-1978167813) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#21857](https://github.com/spyder-ide/spyder/pull/21857#issuecomment-1977805555) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-image-search/pull/1#issuecomment-1977627288) in [tuhinmallick/clip-image-search](https://github.com/tuhinmallick/clip-image-search) From 2450319a26b1384fb6bca9603c50827337156d60 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Mar 2024 16:37:36 +0000 Subject: [PATCH 1591/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c7492599..ede47e37 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3097](https://github.com/dipy/dipy/pull/3097#issuecomment-1979126594) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#57](https://github.com/esynr3z/corsair/pull/57#issuecomment-1979114167) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -3. 🗣 Commented on [#56](https://github.com/esynr3z/corsair/pull/56#issuecomment-1979083945) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -4. 🗣 Commented on [#55](https://github.com/esynr3z/corsair/pull/55#issuecomment-1979060677) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -5. 🗣 Commented on [#1504](https://github.com/openSUSE/osc/pull/1504#issuecomment-1979040099) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#194](https://github.com/eastgenomics/eggd_dias_batch/pull/194#issuecomment-1978472511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -7. 🗣 Commented on [#266](https://github.com/CartoonFan/wine-tkg-git/pull/266#issuecomment-1978405889) in [CartoonFan/wine-tkg-git](https://github.com/CartoonFan/wine-tkg-git) -8. 🗣 Commented on [#1263](https://github.com/aimclub/FEDOT/pull/1263#issuecomment-1978167813) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#21857](https://github.com/spyder-ide/spyder/pull/21857#issuecomment-1977805555) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#1](https://github.com/tuhinmallick/clip-image-search/pull/1#issuecomment-1977627288) in [tuhinmallick/clip-image-search](https://github.com/tuhinmallick/clip-image-search) +1. 🗣 Commented on [#103](https://github.com/eastgenomics/eris/pull/103#issuecomment-1979169059) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#3097](https://github.com/dipy/dipy/pull/3097#issuecomment-1979126594) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#57](https://github.com/esynr3z/corsair/pull/57#issuecomment-1979114167) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +4. 🗣 Commented on [#56](https://github.com/esynr3z/corsair/pull/56#issuecomment-1979083945) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +5. 🗣 Commented on [#55](https://github.com/esynr3z/corsair/pull/55#issuecomment-1979060677) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +6. 🗣 Commented on [#1504](https://github.com/openSUSE/osc/pull/1504#issuecomment-1979040099) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#194](https://github.com/eastgenomics/eggd_dias_batch/pull/194#issuecomment-1978472511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +8. 🗣 Commented on [#266](https://github.com/CartoonFan/wine-tkg-git/pull/266#issuecomment-1978405889) in [CartoonFan/wine-tkg-git](https://github.com/CartoonFan/wine-tkg-git) +9. 🗣 Commented on [#1263](https://github.com/aimclub/FEDOT/pull/1263#issuecomment-1978167813) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#21857](https://github.com/spyder-ide/spyder/pull/21857#issuecomment-1977805555) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 65a771f89133dd3d89bd10945bfd22fb50a68f8a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Mar 2024 18:19:23 +0000 Subject: [PATCH 1592/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ede47e37..9441a9ab 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#103](https://github.com/eastgenomics/eris/pull/103#issuecomment-1979169059) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#3097](https://github.com/dipy/dipy/pull/3097#issuecomment-1979126594) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#57](https://github.com/esynr3z/corsair/pull/57#issuecomment-1979114167) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -4. 🗣 Commented on [#56](https://github.com/esynr3z/corsair/pull/56#issuecomment-1979083945) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -5. 🗣 Commented on [#55](https://github.com/esynr3z/corsair/pull/55#issuecomment-1979060677) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -6. 🗣 Commented on [#1504](https://github.com/openSUSE/osc/pull/1504#issuecomment-1979040099) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#194](https://github.com/eastgenomics/eggd_dias_batch/pull/194#issuecomment-1978472511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -8. 🗣 Commented on [#266](https://github.com/CartoonFan/wine-tkg-git/pull/266#issuecomment-1978405889) in [CartoonFan/wine-tkg-git](https://github.com/CartoonFan/wine-tkg-git) -9. 🗣 Commented on [#1263](https://github.com/aimclub/FEDOT/pull/1263#issuecomment-1978167813) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#21857](https://github.com/spyder-ide/spyder/pull/21857#issuecomment-1977805555) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#104](https://github.com/eastgenomics/eris/pull/104#issuecomment-1979298510) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#103](https://github.com/eastgenomics/eris/pull/103#issuecomment-1979169059) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#3097](https://github.com/dipy/dipy/pull/3097#issuecomment-1979126594) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#57](https://github.com/esynr3z/corsair/pull/57#issuecomment-1979114167) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +5. 🗣 Commented on [#56](https://github.com/esynr3z/corsair/pull/56#issuecomment-1979083945) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +6. 🗣 Commented on [#55](https://github.com/esynr3z/corsair/pull/55#issuecomment-1979060677) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +7. 🗣 Commented on [#1504](https://github.com/openSUSE/osc/pull/1504#issuecomment-1979040099) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#194](https://github.com/eastgenomics/eggd_dias_batch/pull/194#issuecomment-1978472511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +9. 🗣 Commented on [#266](https://github.com/CartoonFan/wine-tkg-git/pull/266#issuecomment-1978405889) in [CartoonFan/wine-tkg-git](https://github.com/CartoonFan/wine-tkg-git) +10. 🗣 Commented on [#1263](https://github.com/aimclub/FEDOT/pull/1263#issuecomment-1978167813) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From f37ccb407533b28c29367a550978eb8020a19818 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Mar 2024 10:16:31 +0000 Subject: [PATCH 1593/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9441a9ab..c8beb63a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#104](https://github.com/eastgenomics/eris/pull/104#issuecomment-1979298510) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#103](https://github.com/eastgenomics/eris/pull/103#issuecomment-1979169059) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#3097](https://github.com/dipy/dipy/pull/3097#issuecomment-1979126594) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#57](https://github.com/esynr3z/corsair/pull/57#issuecomment-1979114167) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -5. 🗣 Commented on [#56](https://github.com/esynr3z/corsair/pull/56#issuecomment-1979083945) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -6. 🗣 Commented on [#55](https://github.com/esynr3z/corsair/pull/55#issuecomment-1979060677) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -7. 🗣 Commented on [#1504](https://github.com/openSUSE/osc/pull/1504#issuecomment-1979040099) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#194](https://github.com/eastgenomics/eggd_dias_batch/pull/194#issuecomment-1978472511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -9. 🗣 Commented on [#266](https://github.com/CartoonFan/wine-tkg-git/pull/266#issuecomment-1978405889) in [CartoonFan/wine-tkg-git](https://github.com/CartoonFan/wine-tkg-git) -10. 🗣 Commented on [#1263](https://github.com/aimclub/FEDOT/pull/1263#issuecomment-1978167813) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#28](https://github.com/eastgenomics/ansible-run-monitoring/pull/28#issuecomment-1980516778) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +2. 🗣 Commented on [#104](https://github.com/eastgenomics/eris/pull/104#issuecomment-1979298510) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +3. 🗣 Commented on [#103](https://github.com/eastgenomics/eris/pull/103#issuecomment-1979169059) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#3097](https://github.com/dipy/dipy/pull/3097#issuecomment-1979126594) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#57](https://github.com/esynr3z/corsair/pull/57#issuecomment-1979114167) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +6. 🗣 Commented on [#56](https://github.com/esynr3z/corsair/pull/56#issuecomment-1979083945) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +7. 🗣 Commented on [#55](https://github.com/esynr3z/corsair/pull/55#issuecomment-1979060677) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +8. 🗣 Commented on [#1504](https://github.com/openSUSE/osc/pull/1504#issuecomment-1979040099) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#194](https://github.com/eastgenomics/eggd_dias_batch/pull/194#issuecomment-1978472511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +10. 🗣 Commented on [#266](https://github.com/CartoonFan/wine-tkg-git/pull/266#issuecomment-1978405889) in [CartoonFan/wine-tkg-git](https://github.com/CartoonFan/wine-tkg-git) From 5896ce5e1e155d9bd92d54d20cc42ce94ea51789 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Mar 2024 12:50:30 +0000 Subject: [PATCH 1594/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c8beb63a..e3fa5cbe 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#28](https://github.com/eastgenomics/ansible-run-monitoring/pull/28#issuecomment-1980516778) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -2. 🗣 Commented on [#104](https://github.com/eastgenomics/eris/pull/104#issuecomment-1979298510) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -3. 🗣 Commented on [#103](https://github.com/eastgenomics/eris/pull/103#issuecomment-1979169059) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#3097](https://github.com/dipy/dipy/pull/3097#issuecomment-1979126594) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#57](https://github.com/esynr3z/corsair/pull/57#issuecomment-1979114167) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -6. 🗣 Commented on [#56](https://github.com/esynr3z/corsair/pull/56#issuecomment-1979083945) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -7. 🗣 Commented on [#55](https://github.com/esynr3z/corsair/pull/55#issuecomment-1979060677) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -8. 🗣 Commented on [#1504](https://github.com/openSUSE/osc/pull/1504#issuecomment-1979040099) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#194](https://github.com/eastgenomics/eggd_dias_batch/pull/194#issuecomment-1978472511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -10. 🗣 Commented on [#266](https://github.com/CartoonFan/wine-tkg-git/pull/266#issuecomment-1978405889) in [CartoonFan/wine-tkg-git](https://github.com/CartoonFan/wine-tkg-git) +1. 🗣 Commented on [#105](https://github.com/eastgenomics/eris/pull/105#issuecomment-1980781248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +2. 🗣 Commented on [#28](https://github.com/eastgenomics/ansible-run-monitoring/pull/28#issuecomment-1980516778) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +3. 🗣 Commented on [#104](https://github.com/eastgenomics/eris/pull/104#issuecomment-1979298510) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#103](https://github.com/eastgenomics/eris/pull/103#issuecomment-1979169059) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#3097](https://github.com/dipy/dipy/pull/3097#issuecomment-1979126594) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#57](https://github.com/esynr3z/corsair/pull/57#issuecomment-1979114167) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +7. 🗣 Commented on [#56](https://github.com/esynr3z/corsair/pull/56#issuecomment-1979083945) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +8. 🗣 Commented on [#55](https://github.com/esynr3z/corsair/pull/55#issuecomment-1979060677) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +9. 🗣 Commented on [#1504](https://github.com/openSUSE/osc/pull/1504#issuecomment-1979040099) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#194](https://github.com/eastgenomics/eggd_dias_batch/pull/194#issuecomment-1978472511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) From 021fe935fbd3fba9ba5e0243b3a63509276d53f0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Mar 2024 13:17:24 +0000 Subject: [PATCH 1595/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e3fa5cbe..9e21b067 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#105](https://github.com/eastgenomics/eris/pull/105#issuecomment-1980781248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -2. 🗣 Commented on [#28](https://github.com/eastgenomics/ansible-run-monitoring/pull/28#issuecomment-1980516778) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -3. 🗣 Commented on [#104](https://github.com/eastgenomics/eris/pull/104#issuecomment-1979298510) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#103](https://github.com/eastgenomics/eris/pull/103#issuecomment-1979169059) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#3097](https://github.com/dipy/dipy/pull/3097#issuecomment-1979126594) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#57](https://github.com/esynr3z/corsair/pull/57#issuecomment-1979114167) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -7. 🗣 Commented on [#56](https://github.com/esynr3z/corsair/pull/56#issuecomment-1979083945) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -8. 🗣 Commented on [#55](https://github.com/esynr3z/corsair/pull/55#issuecomment-1979060677) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -9. 🗣 Commented on [#1504](https://github.com/openSUSE/osc/pull/1504#issuecomment-1979040099) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#194](https://github.com/eastgenomics/eggd_dias_batch/pull/194#issuecomment-1978472511) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +1. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#9](https://github.com/eastgenomics/test_directory_checker/pull/9#issuecomment-1980808567) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +3. 🗣 Commented on [#105](https://github.com/eastgenomics/eris/pull/105#issuecomment-1980781248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +4. 🗣 Commented on [#28](https://github.com/eastgenomics/ansible-run-monitoring/pull/28#issuecomment-1980516778) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +5. 🗣 Commented on [#104](https://github.com/eastgenomics/eris/pull/104#issuecomment-1979298510) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#103](https://github.com/eastgenomics/eris/pull/103#issuecomment-1979169059) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#3097](https://github.com/dipy/dipy/pull/3097#issuecomment-1979126594) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#57](https://github.com/esynr3z/corsair/pull/57#issuecomment-1979114167) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +9. 🗣 Commented on [#56](https://github.com/esynr3z/corsair/pull/56#issuecomment-1979083945) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +10. 🗣 Commented on [#55](https://github.com/esynr3z/corsair/pull/55#issuecomment-1979060677) in [esynr3z/corsair](https://github.com/esynr3z/corsair) From 3d5101dcef5744fa0c896fff1ae3f0d6e8a6457f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Mar 2024 14:37:13 +0000 Subject: [PATCH 1596/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9e21b067..905f7a1a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#9](https://github.com/eastgenomics/test_directory_checker/pull/9#issuecomment-1980808567) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -3. 🗣 Commented on [#105](https://github.com/eastgenomics/eris/pull/105#issuecomment-1980781248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -4. 🗣 Commented on [#28](https://github.com/eastgenomics/ansible-run-monitoring/pull/28#issuecomment-1980516778) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -5. 🗣 Commented on [#104](https://github.com/eastgenomics/eris/pull/104#issuecomment-1979298510) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#103](https://github.com/eastgenomics/eris/pull/103#issuecomment-1979169059) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#3097](https://github.com/dipy/dipy/pull/3097#issuecomment-1979126594) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#57](https://github.com/esynr3z/corsair/pull/57#issuecomment-1979114167) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -9. 🗣 Commented on [#56](https://github.com/esynr3z/corsair/pull/56#issuecomment-1979083945) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -10. 🗣 Commented on [#55](https://github.com/esynr3z/corsair/pull/55#issuecomment-1979060677) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +1. 🗣 Commented on [#54](https://github.com/rasbt/LLMs-from-scratch/pull/54#issuecomment-1981001346) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +2. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#9](https://github.com/eastgenomics/test_directory_checker/pull/9#issuecomment-1980808567) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +4. 🗣 Commented on [#105](https://github.com/eastgenomics/eris/pull/105#issuecomment-1980781248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +5. 🗣 Commented on [#28](https://github.com/eastgenomics/ansible-run-monitoring/pull/28#issuecomment-1980516778) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +6. 🗣 Commented on [#104](https://github.com/eastgenomics/eris/pull/104#issuecomment-1979298510) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#103](https://github.com/eastgenomics/eris/pull/103#issuecomment-1979169059) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#3097](https://github.com/dipy/dipy/pull/3097#issuecomment-1979126594) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#57](https://github.com/esynr3z/corsair/pull/57#issuecomment-1979114167) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +10. 🗣 Commented on [#56](https://github.com/esynr3z/corsair/pull/56#issuecomment-1979083945) in [esynr3z/corsair](https://github.com/esynr3z/corsair) From 2d94a806ecc110cd6e6cf4d69ea6651ccde5da11 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Mar 2024 19:37:02 +0000 Subject: [PATCH 1597/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 905f7a1a..ebc16ba0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#54](https://github.com/rasbt/LLMs-from-scratch/pull/54#issuecomment-1981001346) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -2. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#9](https://github.com/eastgenomics/test_directory_checker/pull/9#issuecomment-1980808567) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -4. 🗣 Commented on [#105](https://github.com/eastgenomics/eris/pull/105#issuecomment-1980781248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -5. 🗣 Commented on [#28](https://github.com/eastgenomics/ansible-run-monitoring/pull/28#issuecomment-1980516778) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -6. 🗣 Commented on [#104](https://github.com/eastgenomics/eris/pull/104#issuecomment-1979298510) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#103](https://github.com/eastgenomics/eris/pull/103#issuecomment-1979169059) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#3097](https://github.com/dipy/dipy/pull/3097#issuecomment-1979126594) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#57](https://github.com/esynr3z/corsair/pull/57#issuecomment-1979114167) in [esynr3z/corsair](https://github.com/esynr3z/corsair) -10. 🗣 Commented on [#56](https://github.com/esynr3z/corsair/pull/56#issuecomment-1979083945) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +1. 🗣 Commented on [#934](https://github.com/scilus/scilpy/pull/934#issuecomment-1981643907) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#54](https://github.com/rasbt/LLMs-from-scratch/pull/54#issuecomment-1981001346) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +3. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#9](https://github.com/eastgenomics/test_directory_checker/pull/9#issuecomment-1980808567) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +5. 🗣 Commented on [#105](https://github.com/eastgenomics/eris/pull/105#issuecomment-1980781248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +6. 🗣 Commented on [#28](https://github.com/eastgenomics/ansible-run-monitoring/pull/28#issuecomment-1980516778) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +7. 🗣 Commented on [#104](https://github.com/eastgenomics/eris/pull/104#issuecomment-1979298510) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#103](https://github.com/eastgenomics/eris/pull/103#issuecomment-1979169059) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#3097](https://github.com/dipy/dipy/pull/3097#issuecomment-1979126594) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#57](https://github.com/esynr3z/corsair/pull/57#issuecomment-1979114167) in [esynr3z/corsair](https://github.com/esynr3z/corsair) From beedb5b8e1d07d686c8c99721797427237c73490 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Mar 2024 20:16:10 +0000 Subject: [PATCH 1598/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ebc16ba0..c7e9b3dc 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#934](https://github.com/scilus/scilpy/pull/934#issuecomment-1981643907) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#54](https://github.com/rasbt/LLMs-from-scratch/pull/54#issuecomment-1981001346) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -3. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#9](https://github.com/eastgenomics/test_directory_checker/pull/9#issuecomment-1980808567) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -5. 🗣 Commented on [#105](https://github.com/eastgenomics/eris/pull/105#issuecomment-1980781248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -6. 🗣 Commented on [#28](https://github.com/eastgenomics/ansible-run-monitoring/pull/28#issuecomment-1980516778) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -7. 🗣 Commented on [#104](https://github.com/eastgenomics/eris/pull/104#issuecomment-1979298510) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#103](https://github.com/eastgenomics/eris/pull/103#issuecomment-1979169059) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#3097](https://github.com/dipy/dipy/pull/3097#issuecomment-1979126594) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#57](https://github.com/esynr3z/corsair/pull/57#issuecomment-1979114167) in [esynr3z/corsair](https://github.com/esynr3z/corsair) +1. 🗣 Commented on [#1692](https://github.com/OGGM/oggm/pull/1692#issuecomment-1981650156) in [OGGM/oggm](https://github.com/OGGM/oggm) +2. 🗣 Commented on [#934](https://github.com/scilus/scilpy/pull/934#issuecomment-1981643907) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#54](https://github.com/rasbt/LLMs-from-scratch/pull/54#issuecomment-1981001346) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +4. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#9](https://github.com/eastgenomics/test_directory_checker/pull/9#issuecomment-1980808567) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +6. 🗣 Commented on [#105](https://github.com/eastgenomics/eris/pull/105#issuecomment-1980781248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +7. 🗣 Commented on [#28](https://github.com/eastgenomics/ansible-run-monitoring/pull/28#issuecomment-1980516778) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +8. 🗣 Commented on [#104](https://github.com/eastgenomics/eris/pull/104#issuecomment-1979298510) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#103](https://github.com/eastgenomics/eris/pull/103#issuecomment-1979169059) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#3097](https://github.com/dipy/dipy/pull/3097#issuecomment-1979126594) in [dipy/dipy](https://github.com/dipy/dipy) From 65d8d9982f7cb610efe4d6344849355b9f7d754f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Mar 2024 21:13:49 +0000 Subject: [PATCH 1599/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c7e9b3dc..d32299c6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1692](https://github.com/OGGM/oggm/pull/1692#issuecomment-1981650156) in [OGGM/oggm](https://github.com/OGGM/oggm) -2. 🗣 Commented on [#934](https://github.com/scilus/scilpy/pull/934#issuecomment-1981643907) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#54](https://github.com/rasbt/LLMs-from-scratch/pull/54#issuecomment-1981001346) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -4. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#9](https://github.com/eastgenomics/test_directory_checker/pull/9#issuecomment-1980808567) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -6. 🗣 Commented on [#105](https://github.com/eastgenomics/eris/pull/105#issuecomment-1980781248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -7. 🗣 Commented on [#28](https://github.com/eastgenomics/ansible-run-monitoring/pull/28#issuecomment-1980516778) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -8. 🗣 Commented on [#104](https://github.com/eastgenomics/eris/pull/104#issuecomment-1979298510) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#103](https://github.com/eastgenomics/eris/pull/103#issuecomment-1979169059) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#3097](https://github.com/dipy/dipy/pull/3097#issuecomment-1979126594) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#4366](https://github.com/uwcirg/truenth-portal/pull/4366#issuecomment-1981759393) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +2. 🗣 Commented on [#1692](https://github.com/OGGM/oggm/pull/1692#issuecomment-1981650156) in [OGGM/oggm](https://github.com/OGGM/oggm) +3. 🗣 Commented on [#934](https://github.com/scilus/scilpy/pull/934#issuecomment-1981643907) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#54](https://github.com/rasbt/LLMs-from-scratch/pull/54#issuecomment-1981001346) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +5. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#9](https://github.com/eastgenomics/test_directory_checker/pull/9#issuecomment-1980808567) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +7. 🗣 Commented on [#105](https://github.com/eastgenomics/eris/pull/105#issuecomment-1980781248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +8. 🗣 Commented on [#28](https://github.com/eastgenomics/ansible-run-monitoring/pull/28#issuecomment-1980516778) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +9. 🗣 Commented on [#104](https://github.com/eastgenomics/eris/pull/104#issuecomment-1979298510) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#103](https://github.com/eastgenomics/eris/pull/103#issuecomment-1979169059) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From e890744b661e6f7858bb9f0c18760158c79a16df Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Mar 2024 22:16:05 +0000 Subject: [PATCH 1600/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d32299c6..2c31521c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4366](https://github.com/uwcirg/truenth-portal/pull/4366#issuecomment-1981759393) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -2. 🗣 Commented on [#1692](https://github.com/OGGM/oggm/pull/1692#issuecomment-1981650156) in [OGGM/oggm](https://github.com/OGGM/oggm) -3. 🗣 Commented on [#934](https://github.com/scilus/scilpy/pull/934#issuecomment-1981643907) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#54](https://github.com/rasbt/LLMs-from-scratch/pull/54#issuecomment-1981001346) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -5. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#9](https://github.com/eastgenomics/test_directory_checker/pull/9#issuecomment-1980808567) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -7. 🗣 Commented on [#105](https://github.com/eastgenomics/eris/pull/105#issuecomment-1980781248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -8. 🗣 Commented on [#28](https://github.com/eastgenomics/ansible-run-monitoring/pull/28#issuecomment-1980516778) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -9. 🗣 Commented on [#104](https://github.com/eastgenomics/eris/pull/104#issuecomment-1979298510) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#103](https://github.com/eastgenomics/eris/pull/103#issuecomment-1979169059) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#69](https://github.com/hasl-sensor/integration/pull/69#issuecomment-1981888013) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +2. 🗣 Commented on [#4366](https://github.com/uwcirg/truenth-portal/pull/4366#issuecomment-1981759393) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +3. 🗣 Commented on [#1692](https://github.com/OGGM/oggm/pull/1692#issuecomment-1981650156) in [OGGM/oggm](https://github.com/OGGM/oggm) +4. 🗣 Commented on [#934](https://github.com/scilus/scilpy/pull/934#issuecomment-1981643907) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#54](https://github.com/rasbt/LLMs-from-scratch/pull/54#issuecomment-1981001346) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +6. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#9](https://github.com/eastgenomics/test_directory_checker/pull/9#issuecomment-1980808567) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +8. 🗣 Commented on [#105](https://github.com/eastgenomics/eris/pull/105#issuecomment-1980781248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +9. 🗣 Commented on [#28](https://github.com/eastgenomics/ansible-run-monitoring/pull/28#issuecomment-1980516778) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +10. 🗣 Commented on [#104](https://github.com/eastgenomics/eris/pull/104#issuecomment-1979298510) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 55064beb15bb81875443d19d1acb9c18ca4ad6fd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Mar 2024 01:33:35 +0000 Subject: [PATCH 1601/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2c31521c..6f81a5ad 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#69](https://github.com/hasl-sensor/integration/pull/69#issuecomment-1981888013) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -2. 🗣 Commented on [#4366](https://github.com/uwcirg/truenth-portal/pull/4366#issuecomment-1981759393) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -3. 🗣 Commented on [#1692](https://github.com/OGGM/oggm/pull/1692#issuecomment-1981650156) in [OGGM/oggm](https://github.com/OGGM/oggm) -4. 🗣 Commented on [#934](https://github.com/scilus/scilpy/pull/934#issuecomment-1981643907) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#54](https://github.com/rasbt/LLMs-from-scratch/pull/54#issuecomment-1981001346) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -6. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#9](https://github.com/eastgenomics/test_directory_checker/pull/9#issuecomment-1980808567) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -8. 🗣 Commented on [#105](https://github.com/eastgenomics/eris/pull/105#issuecomment-1980781248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -9. 🗣 Commented on [#28](https://github.com/eastgenomics/ansible-run-monitoring/pull/28#issuecomment-1980516778) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -10. 🗣 Commented on [#104](https://github.com/eastgenomics/eris/pull/104#issuecomment-1979298510) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#3102](https://github.com/dipy/dipy/pull/3102#issuecomment-1982155665) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#69](https://github.com/hasl-sensor/integration/pull/69#issuecomment-1981888013) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +3. 🗣 Commented on [#4366](https://github.com/uwcirg/truenth-portal/pull/4366#issuecomment-1981759393) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +4. 🗣 Commented on [#1692](https://github.com/OGGM/oggm/pull/1692#issuecomment-1981650156) in [OGGM/oggm](https://github.com/OGGM/oggm) +5. 🗣 Commented on [#934](https://github.com/scilus/scilpy/pull/934#issuecomment-1981643907) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#54](https://github.com/rasbt/LLMs-from-scratch/pull/54#issuecomment-1981001346) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +7. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#9](https://github.com/eastgenomics/test_directory_checker/pull/9#issuecomment-1980808567) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +9. 🗣 Commented on [#105](https://github.com/eastgenomics/eris/pull/105#issuecomment-1980781248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +10. 🗣 Commented on [#28](https://github.com/eastgenomics/ansible-run-monitoring/pull/28#issuecomment-1980516778) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) From 0dee3453ebe24448c0806af2297ad3e53dcfea43 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Mar 2024 03:37:13 +0000 Subject: [PATCH 1602/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6f81a5ad..9927efb9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3102](https://github.com/dipy/dipy/pull/3102#issuecomment-1982155665) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#69](https://github.com/hasl-sensor/integration/pull/69#issuecomment-1981888013) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -3. 🗣 Commented on [#4366](https://github.com/uwcirg/truenth-portal/pull/4366#issuecomment-1981759393) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -4. 🗣 Commented on [#1692](https://github.com/OGGM/oggm/pull/1692#issuecomment-1981650156) in [OGGM/oggm](https://github.com/OGGM/oggm) -5. 🗣 Commented on [#934](https://github.com/scilus/scilpy/pull/934#issuecomment-1981643907) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#54](https://github.com/rasbt/LLMs-from-scratch/pull/54#issuecomment-1981001346) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -7. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#9](https://github.com/eastgenomics/test_directory_checker/pull/9#issuecomment-1980808567) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -9. 🗣 Commented on [#105](https://github.com/eastgenomics/eris/pull/105#issuecomment-1980781248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) -10. 🗣 Commented on [#28](https://github.com/eastgenomics/ansible-run-monitoring/pull/28#issuecomment-1980516778) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +1. 🗣 Commented on [#4367](https://github.com/uwcirg/truenth-portal/pull/4367#issuecomment-1982281063) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +2. 🗣 Commented on [#3102](https://github.com/dipy/dipy/pull/3102#issuecomment-1982155665) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#69](https://github.com/hasl-sensor/integration/pull/69#issuecomment-1981888013) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +4. 🗣 Commented on [#4366](https://github.com/uwcirg/truenth-portal/pull/4366#issuecomment-1981759393) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +5. 🗣 Commented on [#1692](https://github.com/OGGM/oggm/pull/1692#issuecomment-1981650156) in [OGGM/oggm](https://github.com/OGGM/oggm) +6. 🗣 Commented on [#934](https://github.com/scilus/scilpy/pull/934#issuecomment-1981643907) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#54](https://github.com/rasbt/LLMs-from-scratch/pull/54#issuecomment-1981001346) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +8. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#9](https://github.com/eastgenomics/test_directory_checker/pull/9#issuecomment-1980808567) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +10. 🗣 Commented on [#105](https://github.com/eastgenomics/eris/pull/105#issuecomment-1980781248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) From 14f89592aa7b729ba9fc80b8d735dc3b0ac76460 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Mar 2024 07:12:24 +0000 Subject: [PATCH 1603/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9927efb9..64b5c15d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4367](https://github.com/uwcirg/truenth-portal/pull/4367#issuecomment-1982281063) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -2. 🗣 Commented on [#3102](https://github.com/dipy/dipy/pull/3102#issuecomment-1982155665) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#69](https://github.com/hasl-sensor/integration/pull/69#issuecomment-1981888013) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -4. 🗣 Commented on [#4366](https://github.com/uwcirg/truenth-portal/pull/4366#issuecomment-1981759393) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -5. 🗣 Commented on [#1692](https://github.com/OGGM/oggm/pull/1692#issuecomment-1981650156) in [OGGM/oggm](https://github.com/OGGM/oggm) -6. 🗣 Commented on [#934](https://github.com/scilus/scilpy/pull/934#issuecomment-1981643907) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#54](https://github.com/rasbt/LLMs-from-scratch/pull/54#issuecomment-1981001346) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -8. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#9](https://github.com/eastgenomics/test_directory_checker/pull/9#issuecomment-1980808567) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -10. 🗣 Commented on [#105](https://github.com/eastgenomics/eris/pull/105#issuecomment-1980781248) in [eastgenomics/eris](https://github.com/eastgenomics/eris) +1. 🗣 Commented on [#5508](https://github.com/rhinstaller/anaconda/pull/5508#issuecomment-1982677808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#4367](https://github.com/uwcirg/truenth-portal/pull/4367#issuecomment-1982281063) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +3. 🗣 Commented on [#3102](https://github.com/dipy/dipy/pull/3102#issuecomment-1982155665) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#69](https://github.com/hasl-sensor/integration/pull/69#issuecomment-1981888013) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +5. 🗣 Commented on [#4366](https://github.com/uwcirg/truenth-portal/pull/4366#issuecomment-1981759393) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +6. 🗣 Commented on [#1692](https://github.com/OGGM/oggm/pull/1692#issuecomment-1981650156) in [OGGM/oggm](https://github.com/OGGM/oggm) +7. 🗣 Commented on [#934](https://github.com/scilus/scilpy/pull/934#issuecomment-1981643907) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#54](https://github.com/rasbt/LLMs-from-scratch/pull/54#issuecomment-1981001346) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +9. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#9](https://github.com/eastgenomics/test_directory_checker/pull/9#issuecomment-1980808567) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) From 89522f57cb7fcffca69aacb041e78a0509a161f1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Mar 2024 10:15:14 +0000 Subject: [PATCH 1604/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 64b5c15d..e384d3a1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5508](https://github.com/rhinstaller/anaconda/pull/5508#issuecomment-1982677808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#4367](https://github.com/uwcirg/truenth-portal/pull/4367#issuecomment-1982281063) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -3. 🗣 Commented on [#3102](https://github.com/dipy/dipy/pull/3102#issuecomment-1982155665) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#69](https://github.com/hasl-sensor/integration/pull/69#issuecomment-1981888013) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -5. 🗣 Commented on [#4366](https://github.com/uwcirg/truenth-portal/pull/4366#issuecomment-1981759393) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -6. 🗣 Commented on [#1692](https://github.com/OGGM/oggm/pull/1692#issuecomment-1981650156) in [OGGM/oggm](https://github.com/OGGM/oggm) -7. 🗣 Commented on [#934](https://github.com/scilus/scilpy/pull/934#issuecomment-1981643907) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#54](https://github.com/rasbt/LLMs-from-scratch/pull/54#issuecomment-1981001346) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -9. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#9](https://github.com/eastgenomics/test_directory_checker/pull/9#issuecomment-1980808567) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +1. 🗣 Commented on [#1040](https://github.com/oemof/oemof-solph/pull/1040#issuecomment-1983141796) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +2. 🗣 Commented on [#5508](https://github.com/rhinstaller/anaconda/pull/5508#issuecomment-1982677808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#4367](https://github.com/uwcirg/truenth-portal/pull/4367#issuecomment-1982281063) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +4. 🗣 Commented on [#3102](https://github.com/dipy/dipy/pull/3102#issuecomment-1982155665) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#69](https://github.com/hasl-sensor/integration/pull/69#issuecomment-1981888013) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +6. 🗣 Commented on [#4366](https://github.com/uwcirg/truenth-portal/pull/4366#issuecomment-1981759393) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +7. 🗣 Commented on [#1692](https://github.com/OGGM/oggm/pull/1692#issuecomment-1981650156) in [OGGM/oggm](https://github.com/OGGM/oggm) +8. 🗣 Commented on [#934](https://github.com/scilus/scilpy/pull/934#issuecomment-1981643907) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#54](https://github.com/rasbt/LLMs-from-scratch/pull/54#issuecomment-1981001346) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +10. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 7db08283f7632468adea5315ed1af9c7a2608fe2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Mar 2024 11:37:09 +0000 Subject: [PATCH 1605/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e384d3a1..e680bcf2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1040](https://github.com/oemof/oemof-solph/pull/1040#issuecomment-1983141796) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -2. 🗣 Commented on [#5508](https://github.com/rhinstaller/anaconda/pull/5508#issuecomment-1982677808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#4367](https://github.com/uwcirg/truenth-portal/pull/4367#issuecomment-1982281063) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -4. 🗣 Commented on [#3102](https://github.com/dipy/dipy/pull/3102#issuecomment-1982155665) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#69](https://github.com/hasl-sensor/integration/pull/69#issuecomment-1981888013) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -6. 🗣 Commented on [#4366](https://github.com/uwcirg/truenth-portal/pull/4366#issuecomment-1981759393) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -7. 🗣 Commented on [#1692](https://github.com/OGGM/oggm/pull/1692#issuecomment-1981650156) in [OGGM/oggm](https://github.com/OGGM/oggm) -8. 🗣 Commented on [#934](https://github.com/scilus/scilpy/pull/934#issuecomment-1981643907) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#54](https://github.com/rasbt/LLMs-from-scratch/pull/54#issuecomment-1981001346) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -10. 🗣 Commented on [#5507](https://github.com/rhinstaller/anaconda/pull/5507#issuecomment-1980828792) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#25](https://github.com/eastgenomics/test_directory_parser/pull/25#issuecomment-1983307800) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +2. 🗣 Commented on [#1508](https://github.com/openSUSE/osc/pull/1508#issuecomment-1983273435) in [openSUSE/osc](https://github.com/openSUSE/osc) +3. 🗣 Commented on [#1040](https://github.com/oemof/oemof-solph/pull/1040#issuecomment-1983141796) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +4. 🗣 Commented on [#5508](https://github.com/rhinstaller/anaconda/pull/5508#issuecomment-1982677808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#4367](https://github.com/uwcirg/truenth-portal/pull/4367#issuecomment-1982281063) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +6. 🗣 Commented on [#3102](https://github.com/dipy/dipy/pull/3102#issuecomment-1982155665) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#69](https://github.com/hasl-sensor/integration/pull/69#issuecomment-1981888013) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +8. 🗣 Commented on [#4366](https://github.com/uwcirg/truenth-portal/pull/4366#issuecomment-1981759393) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +9. 🗣 Commented on [#1692](https://github.com/OGGM/oggm/pull/1692#issuecomment-1981650156) in [OGGM/oggm](https://github.com/OGGM/oggm) +10. 🗣 Commented on [#934](https://github.com/scilus/scilpy/pull/934#issuecomment-1981643907) in [scilus/scilpy](https://github.com/scilus/scilpy) From f3e02d1dfb64747a08bccb64fb34acb0b8e72efb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Mar 2024 12:29:01 +0000 Subject: [PATCH 1606/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e680bcf2..4e860843 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#25](https://github.com/eastgenomics/test_directory_parser/pull/25#issuecomment-1983307800) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) -2. 🗣 Commented on [#1508](https://github.com/openSUSE/osc/pull/1508#issuecomment-1983273435) in [openSUSE/osc](https://github.com/openSUSE/osc) -3. 🗣 Commented on [#1040](https://github.com/oemof/oemof-solph/pull/1040#issuecomment-1983141796) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -4. 🗣 Commented on [#5508](https://github.com/rhinstaller/anaconda/pull/5508#issuecomment-1982677808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#4367](https://github.com/uwcirg/truenth-portal/pull/4367#issuecomment-1982281063) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -6. 🗣 Commented on [#3102](https://github.com/dipy/dipy/pull/3102#issuecomment-1982155665) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#69](https://github.com/hasl-sensor/integration/pull/69#issuecomment-1981888013) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -8. 🗣 Commented on [#4366](https://github.com/uwcirg/truenth-portal/pull/4366#issuecomment-1981759393) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -9. 🗣 Commented on [#1692](https://github.com/OGGM/oggm/pull/1692#issuecomment-1981650156) in [OGGM/oggm](https://github.com/OGGM/oggm) -10. 🗣 Commented on [#934](https://github.com/scilus/scilpy/pull/934#issuecomment-1981643907) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#126](https://github.com/aimclub/Fedot.Industrial/pull/126#issuecomment-1983403209) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +2. 🗣 Commented on [#25](https://github.com/eastgenomics/test_directory_parser/pull/25#issuecomment-1983307800) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +3. 🗣 Commented on [#1508](https://github.com/openSUSE/osc/pull/1508#issuecomment-1983273435) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#1040](https://github.com/oemof/oemof-solph/pull/1040#issuecomment-1983141796) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +5. 🗣 Commented on [#5508](https://github.com/rhinstaller/anaconda/pull/5508#issuecomment-1982677808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#4367](https://github.com/uwcirg/truenth-portal/pull/4367#issuecomment-1982281063) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +7. 🗣 Commented on [#3102](https://github.com/dipy/dipy/pull/3102#issuecomment-1982155665) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#69](https://github.com/hasl-sensor/integration/pull/69#issuecomment-1981888013) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +9. 🗣 Commented on [#4366](https://github.com/uwcirg/truenth-portal/pull/4366#issuecomment-1981759393) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +10. 🗣 Commented on [#1692](https://github.com/OGGM/oggm/pull/1692#issuecomment-1981650156) in [OGGM/oggm](https://github.com/OGGM/oggm) From 9626168db59a3f477f8f63f1b544765ff263c736 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Mar 2024 14:37:01 +0000 Subject: [PATCH 1607/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4e860843..d4073aea 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#126](https://github.com/aimclub/Fedot.Industrial/pull/126#issuecomment-1983403209) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -2. 🗣 Commented on [#25](https://github.com/eastgenomics/test_directory_parser/pull/25#issuecomment-1983307800) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) -3. 🗣 Commented on [#1508](https://github.com/openSUSE/osc/pull/1508#issuecomment-1983273435) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#1040](https://github.com/oemof/oemof-solph/pull/1040#issuecomment-1983141796) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -5. 🗣 Commented on [#5508](https://github.com/rhinstaller/anaconda/pull/5508#issuecomment-1982677808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#4367](https://github.com/uwcirg/truenth-portal/pull/4367#issuecomment-1982281063) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -7. 🗣 Commented on [#3102](https://github.com/dipy/dipy/pull/3102#issuecomment-1982155665) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#69](https://github.com/hasl-sensor/integration/pull/69#issuecomment-1981888013) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -9. 🗣 Commented on [#4366](https://github.com/uwcirg/truenth-portal/pull/4366#issuecomment-1981759393) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -10. 🗣 Commented on [#1692](https://github.com/OGGM/oggm/pull/1692#issuecomment-1981650156) in [OGGM/oggm](https://github.com/OGGM/oggm) +1. 🗣 Commented on [#936](https://github.com/scilus/scilpy/pull/936#issuecomment-1983602151) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#126](https://github.com/aimclub/Fedot.Industrial/pull/126#issuecomment-1983403209) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +3. 🗣 Commented on [#25](https://github.com/eastgenomics/test_directory_parser/pull/25#issuecomment-1983307800) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +4. 🗣 Commented on [#1508](https://github.com/openSUSE/osc/pull/1508#issuecomment-1983273435) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#1040](https://github.com/oemof/oemof-solph/pull/1040#issuecomment-1983141796) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +6. 🗣 Commented on [#5508](https://github.com/rhinstaller/anaconda/pull/5508#issuecomment-1982677808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#4367](https://github.com/uwcirg/truenth-portal/pull/4367#issuecomment-1982281063) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +8. 🗣 Commented on [#3102](https://github.com/dipy/dipy/pull/3102#issuecomment-1982155665) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#69](https://github.com/hasl-sensor/integration/pull/69#issuecomment-1981888013) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +10. 🗣 Commented on [#4366](https://github.com/uwcirg/truenth-portal/pull/4366#issuecomment-1981759393) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) From acf0c2d981c24bccb8d4542d7c2954a68e167a10 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Mar 2024 15:15:50 +0000 Subject: [PATCH 1608/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d4073aea..59133855 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#936](https://github.com/scilus/scilpy/pull/936#issuecomment-1983602151) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#126](https://github.com/aimclub/Fedot.Industrial/pull/126#issuecomment-1983403209) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -3. 🗣 Commented on [#25](https://github.com/eastgenomics/test_directory_parser/pull/25#issuecomment-1983307800) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) -4. 🗣 Commented on [#1508](https://github.com/openSUSE/osc/pull/1508#issuecomment-1983273435) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#1040](https://github.com/oemof/oemof-solph/pull/1040#issuecomment-1983141796) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -6. 🗣 Commented on [#5508](https://github.com/rhinstaller/anaconda/pull/5508#issuecomment-1982677808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#4367](https://github.com/uwcirg/truenth-portal/pull/4367#issuecomment-1982281063) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -8. 🗣 Commented on [#3102](https://github.com/dipy/dipy/pull/3102#issuecomment-1982155665) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#69](https://github.com/hasl-sensor/integration/pull/69#issuecomment-1981888013) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -10. 🗣 Commented on [#4366](https://github.com/uwcirg/truenth-portal/pull/4366#issuecomment-1981759393) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +1. 🗣 Commented on [#3104](https://github.com/dipy/dipy/pull/3104#issuecomment-1983713631) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#936](https://github.com/scilus/scilpy/pull/936#issuecomment-1983602151) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#126](https://github.com/aimclub/Fedot.Industrial/pull/126#issuecomment-1983403209) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#25](https://github.com/eastgenomics/test_directory_parser/pull/25#issuecomment-1983307800) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +5. 🗣 Commented on [#1508](https://github.com/openSUSE/osc/pull/1508#issuecomment-1983273435) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#1040](https://github.com/oemof/oemof-solph/pull/1040#issuecomment-1983141796) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +7. 🗣 Commented on [#5508](https://github.com/rhinstaller/anaconda/pull/5508#issuecomment-1982677808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#4367](https://github.com/uwcirg/truenth-portal/pull/4367#issuecomment-1982281063) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +9. 🗣 Commented on [#3102](https://github.com/dipy/dipy/pull/3102#issuecomment-1982155665) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#69](https://github.com/hasl-sensor/integration/pull/69#issuecomment-1981888013) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) From 3a6b3c6e8cc018f73fc6375158c5893f77b6f98e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Mar 2024 17:16:59 +0000 Subject: [PATCH 1609/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 59133855..a6c5beaa 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3104](https://github.com/dipy/dipy/pull/3104#issuecomment-1983713631) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#936](https://github.com/scilus/scilpy/pull/936#issuecomment-1983602151) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#126](https://github.com/aimclub/Fedot.Industrial/pull/126#issuecomment-1983403209) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#25](https://github.com/eastgenomics/test_directory_parser/pull/25#issuecomment-1983307800) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) -5. 🗣 Commented on [#1508](https://github.com/openSUSE/osc/pull/1508#issuecomment-1983273435) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#1040](https://github.com/oemof/oemof-solph/pull/1040#issuecomment-1983141796) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -7. 🗣 Commented on [#5508](https://github.com/rhinstaller/anaconda/pull/5508#issuecomment-1982677808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#4367](https://github.com/uwcirg/truenth-portal/pull/4367#issuecomment-1982281063) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -9. 🗣 Commented on [#3102](https://github.com/dipy/dipy/pull/3102#issuecomment-1982155665) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#69](https://github.com/hasl-sensor/integration/pull/69#issuecomment-1981888013) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +1. 🗣 Commented on [#937](https://github.com/scilus/scilpy/pull/937#issuecomment-1983995298) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#3104](https://github.com/dipy/dipy/pull/3104#issuecomment-1983713631) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#936](https://github.com/scilus/scilpy/pull/936#issuecomment-1983602151) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#126](https://github.com/aimclub/Fedot.Industrial/pull/126#issuecomment-1983403209) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +5. 🗣 Commented on [#25](https://github.com/eastgenomics/test_directory_parser/pull/25#issuecomment-1983307800) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +6. 🗣 Commented on [#1508](https://github.com/openSUSE/osc/pull/1508#issuecomment-1983273435) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#1040](https://github.com/oemof/oemof-solph/pull/1040#issuecomment-1983141796) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +8. 🗣 Commented on [#5508](https://github.com/rhinstaller/anaconda/pull/5508#issuecomment-1982677808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#4367](https://github.com/uwcirg/truenth-portal/pull/4367#issuecomment-1982281063) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +10. 🗣 Commented on [#3102](https://github.com/dipy/dipy/pull/3102#issuecomment-1982155665) in [dipy/dipy](https://github.com/dipy/dipy) From f1709f372f6c47b9e8667c6d0e5622626e9219a0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Mar 2024 19:11:51 +0000 Subject: [PATCH 1610/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a6c5beaa..237753bd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#937](https://github.com/scilus/scilpy/pull/937#issuecomment-1983995298) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#3104](https://github.com/dipy/dipy/pull/3104#issuecomment-1983713631) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#936](https://github.com/scilus/scilpy/pull/936#issuecomment-1983602151) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#126](https://github.com/aimclub/Fedot.Industrial/pull/126#issuecomment-1983403209) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -5. 🗣 Commented on [#25](https://github.com/eastgenomics/test_directory_parser/pull/25#issuecomment-1983307800) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) -6. 🗣 Commented on [#1508](https://github.com/openSUSE/osc/pull/1508#issuecomment-1983273435) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#1040](https://github.com/oemof/oemof-solph/pull/1040#issuecomment-1983141796) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -8. 🗣 Commented on [#5508](https://github.com/rhinstaller/anaconda/pull/5508#issuecomment-1982677808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#4367](https://github.com/uwcirg/truenth-portal/pull/4367#issuecomment-1982281063) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -10. 🗣 Commented on [#3102](https://github.com/dipy/dipy/pull/3102#issuecomment-1982155665) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#1076](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1076#issuecomment-1984228192) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#937](https://github.com/scilus/scilpy/pull/937#issuecomment-1983995298) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#3104](https://github.com/dipy/dipy/pull/3104#issuecomment-1983713631) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#936](https://github.com/scilus/scilpy/pull/936#issuecomment-1983602151) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#126](https://github.com/aimclub/Fedot.Industrial/pull/126#issuecomment-1983403209) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#25](https://github.com/eastgenomics/test_directory_parser/pull/25#issuecomment-1983307800) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +7. 🗣 Commented on [#1508](https://github.com/openSUSE/osc/pull/1508#issuecomment-1983273435) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#1040](https://github.com/oemof/oemof-solph/pull/1040#issuecomment-1983141796) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +9. 🗣 Commented on [#5508](https://github.com/rhinstaller/anaconda/pull/5508#issuecomment-1982677808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#4367](https://github.com/uwcirg/truenth-portal/pull/4367#issuecomment-1982281063) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) From b8b1f680eeedb5a6ceb073c54c205cad56bed38c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Mar 2024 21:14:25 +0000 Subject: [PATCH 1611/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 237753bd..3d02ad1b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1076](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1076#issuecomment-1984228192) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#937](https://github.com/scilus/scilpy/pull/937#issuecomment-1983995298) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#3104](https://github.com/dipy/dipy/pull/3104#issuecomment-1983713631) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#936](https://github.com/scilus/scilpy/pull/936#issuecomment-1983602151) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#126](https://github.com/aimclub/Fedot.Industrial/pull/126#issuecomment-1983403209) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#25](https://github.com/eastgenomics/test_directory_parser/pull/25#issuecomment-1983307800) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) -7. 🗣 Commented on [#1508](https://github.com/openSUSE/osc/pull/1508#issuecomment-1983273435) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#1040](https://github.com/oemof/oemof-solph/pull/1040#issuecomment-1983141796) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -9. 🗣 Commented on [#5508](https://github.com/rhinstaller/anaconda/pull/5508#issuecomment-1982677808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#4367](https://github.com/uwcirg/truenth-portal/pull/4367#issuecomment-1982281063) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +1. 🗣 Commented on [#1265](https://github.com/aimclub/FEDOT/pull/1265#issuecomment-1984427075) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#1076](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1076#issuecomment-1984228192) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#937](https://github.com/scilus/scilpy/pull/937#issuecomment-1983995298) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#3104](https://github.com/dipy/dipy/pull/3104#issuecomment-1983713631) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#936](https://github.com/scilus/scilpy/pull/936#issuecomment-1983602151) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#126](https://github.com/aimclub/Fedot.Industrial/pull/126#issuecomment-1983403209) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#25](https://github.com/eastgenomics/test_directory_parser/pull/25#issuecomment-1983307800) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +8. 🗣 Commented on [#1508](https://github.com/openSUSE/osc/pull/1508#issuecomment-1983273435) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#1040](https://github.com/oemof/oemof-solph/pull/1040#issuecomment-1983141796) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +10. 🗣 Commented on [#5508](https://github.com/rhinstaller/anaconda/pull/5508#issuecomment-1982677808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 63ed8b6f70d5eade1ddb67c5a0361741a5e68164 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Mar 2024 21:37:24 +0000 Subject: [PATCH 1612/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3d02ad1b..cee1ebb9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1265](https://github.com/aimclub/FEDOT/pull/1265#issuecomment-1984427075) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#1076](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1076#issuecomment-1984228192) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#937](https://github.com/scilus/scilpy/pull/937#issuecomment-1983995298) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#3104](https://github.com/dipy/dipy/pull/3104#issuecomment-1983713631) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#936](https://github.com/scilus/scilpy/pull/936#issuecomment-1983602151) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#126](https://github.com/aimclub/Fedot.Industrial/pull/126#issuecomment-1983403209) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#25](https://github.com/eastgenomics/test_directory_parser/pull/25#issuecomment-1983307800) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) -8. 🗣 Commented on [#1508](https://github.com/openSUSE/osc/pull/1508#issuecomment-1983273435) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#1040](https://github.com/oemof/oemof-solph/pull/1040#issuecomment-1983141796) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -10. 🗣 Commented on [#5508](https://github.com/rhinstaller/anaconda/pull/5508#issuecomment-1982677808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#19](https://github.com/codingfriendsfun/pcc/pull/19#issuecomment-1984530927) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +2. 🗣 Commented on [#17](https://github.com/codingfriendsfun/pcc/pull/17#issuecomment-1984529407) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +3. 🗣 Commented on [#1265](https://github.com/aimclub/FEDOT/pull/1265#issuecomment-1984427075) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#1076](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1076#issuecomment-1984228192) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#937](https://github.com/scilus/scilpy/pull/937#issuecomment-1983995298) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#3104](https://github.com/dipy/dipy/pull/3104#issuecomment-1983713631) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#936](https://github.com/scilus/scilpy/pull/936#issuecomment-1983602151) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#126](https://github.com/aimclub/Fedot.Industrial/pull/126#issuecomment-1983403209) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +9. 🗣 Commented on [#25](https://github.com/eastgenomics/test_directory_parser/pull/25#issuecomment-1983307800) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +10. 🗣 Commented on [#1508](https://github.com/openSUSE/osc/pull/1508#issuecomment-1983273435) in [openSUSE/osc](https://github.com/openSUSE/osc) From cde50902200ce37c728eed83a690bcc122004e23 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Mar 2024 22:14:43 +0000 Subject: [PATCH 1613/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cee1ebb9..b96727d7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#19](https://github.com/codingfriendsfun/pcc/pull/19#issuecomment-1984530927) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -2. 🗣 Commented on [#17](https://github.com/codingfriendsfun/pcc/pull/17#issuecomment-1984529407) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -3. 🗣 Commented on [#1265](https://github.com/aimclub/FEDOT/pull/1265#issuecomment-1984427075) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#1076](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1076#issuecomment-1984228192) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#937](https://github.com/scilus/scilpy/pull/937#issuecomment-1983995298) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#3104](https://github.com/dipy/dipy/pull/3104#issuecomment-1983713631) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#936](https://github.com/scilus/scilpy/pull/936#issuecomment-1983602151) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#126](https://github.com/aimclub/Fedot.Industrial/pull/126#issuecomment-1983403209) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -9. 🗣 Commented on [#25](https://github.com/eastgenomics/test_directory_parser/pull/25#issuecomment-1983307800) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) -10. 🗣 Commented on [#1508](https://github.com/openSUSE/osc/pull/1508#issuecomment-1983273435) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#942](https://github.com/scilus/scilpy/pull/942#issuecomment-1984555978) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#19](https://github.com/codingfriendsfun/pcc/pull/19#issuecomment-1984530927) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +3. 🗣 Commented on [#17](https://github.com/codingfriendsfun/pcc/pull/17#issuecomment-1984529407) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +4. 🗣 Commented on [#1265](https://github.com/aimclub/FEDOT/pull/1265#issuecomment-1984427075) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#1076](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1076#issuecomment-1984228192) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#937](https://github.com/scilus/scilpy/pull/937#issuecomment-1983995298) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#3104](https://github.com/dipy/dipy/pull/3104#issuecomment-1983713631) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#936](https://github.com/scilus/scilpy/pull/936#issuecomment-1983602151) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#126](https://github.com/aimclub/Fedot.Industrial/pull/126#issuecomment-1983403209) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#25](https://github.com/eastgenomics/test_directory_parser/pull/25#issuecomment-1983307800) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) From 5ec38b822bdb1a90da5cd3c3fef2e01cd64f129e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 8 Mar 2024 05:16:52 +0000 Subject: [PATCH 1614/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b96727d7..8e6e1827 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#942](https://github.com/scilus/scilpy/pull/942#issuecomment-1984555978) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#19](https://github.com/codingfriendsfun/pcc/pull/19#issuecomment-1984530927) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -3. 🗣 Commented on [#17](https://github.com/codingfriendsfun/pcc/pull/17#issuecomment-1984529407) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -4. 🗣 Commented on [#1265](https://github.com/aimclub/FEDOT/pull/1265#issuecomment-1984427075) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#1076](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1076#issuecomment-1984228192) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#937](https://github.com/scilus/scilpy/pull/937#issuecomment-1983995298) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#3104](https://github.com/dipy/dipy/pull/3104#issuecomment-1983713631) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#936](https://github.com/scilus/scilpy/pull/936#issuecomment-1983602151) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#126](https://github.com/aimclub/Fedot.Industrial/pull/126#issuecomment-1983403209) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#25](https://github.com/eastgenomics/test_directory_parser/pull/25#issuecomment-1983307800) in [eastgenomics/test_directory_parser](https://github.com/eastgenomics/test_directory_parser) +1. 🗣 Commented on [#21](https://github.com/codingfriendsfun/pcc/pull/21#issuecomment-1985030571) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +2. 🗣 Commented on [#942](https://github.com/scilus/scilpy/pull/942#issuecomment-1984555978) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#19](https://github.com/codingfriendsfun/pcc/pull/19#issuecomment-1984530927) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +4. 🗣 Commented on [#17](https://github.com/codingfriendsfun/pcc/pull/17#issuecomment-1984529407) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +5. 🗣 Commented on [#1265](https://github.com/aimclub/FEDOT/pull/1265#issuecomment-1984427075) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#1076](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1076#issuecomment-1984228192) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#937](https://github.com/scilus/scilpy/pull/937#issuecomment-1983995298) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#3104](https://github.com/dipy/dipy/pull/3104#issuecomment-1983713631) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#936](https://github.com/scilus/scilpy/pull/936#issuecomment-1983602151) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#126](https://github.com/aimclub/Fedot.Industrial/pull/126#issuecomment-1983403209) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) From ec03771e2a6a6e631d08faa40a7fcb3ac398bff8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 8 Mar 2024 14:15:19 +0000 Subject: [PATCH 1615/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8e6e1827..88b0b3a9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21](https://github.com/codingfriendsfun/pcc/pull/21#issuecomment-1985030571) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -2. 🗣 Commented on [#942](https://github.com/scilus/scilpy/pull/942#issuecomment-1984555978) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#19](https://github.com/codingfriendsfun/pcc/pull/19#issuecomment-1984530927) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -4. 🗣 Commented on [#17](https://github.com/codingfriendsfun/pcc/pull/17#issuecomment-1984529407) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -5. 🗣 Commented on [#1265](https://github.com/aimclub/FEDOT/pull/1265#issuecomment-1984427075) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#1076](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1076#issuecomment-1984228192) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#937](https://github.com/scilus/scilpy/pull/937#issuecomment-1983995298) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#3104](https://github.com/dipy/dipy/pull/3104#issuecomment-1983713631) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#936](https://github.com/scilus/scilpy/pull/936#issuecomment-1983602151) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#126](https://github.com/aimclub/Fedot.Industrial/pull/126#issuecomment-1983403209) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +1. 🗣 Commented on [#129](https://github.com/tilde-lab/yascheduler/pull/129#issuecomment-1985709287) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) +2. 🗣 Commented on [#21](https://github.com/codingfriendsfun/pcc/pull/21#issuecomment-1985030571) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +3. 🗣 Commented on [#942](https://github.com/scilus/scilpy/pull/942#issuecomment-1984555978) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#19](https://github.com/codingfriendsfun/pcc/pull/19#issuecomment-1984530927) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +5. 🗣 Commented on [#17](https://github.com/codingfriendsfun/pcc/pull/17#issuecomment-1984529407) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +6. 🗣 Commented on [#1265](https://github.com/aimclub/FEDOT/pull/1265#issuecomment-1984427075) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#1076](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1076#issuecomment-1984228192) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#937](https://github.com/scilus/scilpy/pull/937#issuecomment-1983995298) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#3104](https://github.com/dipy/dipy/pull/3104#issuecomment-1983713631) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#936](https://github.com/scilus/scilpy/pull/936#issuecomment-1983602151) in [scilus/scilpy](https://github.com/scilus/scilpy) From f36cf59136df49836af8dfb2286ad9b30f667dec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 8 Mar 2024 15:16:18 +0000 Subject: [PATCH 1616/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 88b0b3a9..002353cc 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#129](https://github.com/tilde-lab/yascheduler/pull/129#issuecomment-1985709287) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) -2. 🗣 Commented on [#21](https://github.com/codingfriendsfun/pcc/pull/21#issuecomment-1985030571) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -3. 🗣 Commented on [#942](https://github.com/scilus/scilpy/pull/942#issuecomment-1984555978) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#19](https://github.com/codingfriendsfun/pcc/pull/19#issuecomment-1984530927) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -5. 🗣 Commented on [#17](https://github.com/codingfriendsfun/pcc/pull/17#issuecomment-1984529407) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -6. 🗣 Commented on [#1265](https://github.com/aimclub/FEDOT/pull/1265#issuecomment-1984427075) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#1076](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1076#issuecomment-1984228192) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#937](https://github.com/scilus/scilpy/pull/937#issuecomment-1983995298) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#3104](https://github.com/dipy/dipy/pull/3104#issuecomment-1983713631) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#936](https://github.com/scilus/scilpy/pull/936#issuecomment-1983602151) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#770](https://github.com/OpenFreeEnergy/openfe/pull/770#issuecomment-1985861506) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#129](https://github.com/tilde-lab/yascheduler/pull/129#issuecomment-1985709287) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) +3. 🗣 Commented on [#21](https://github.com/codingfriendsfun/pcc/pull/21#issuecomment-1985030571) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +4. 🗣 Commented on [#942](https://github.com/scilus/scilpy/pull/942#issuecomment-1984555978) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#19](https://github.com/codingfriendsfun/pcc/pull/19#issuecomment-1984530927) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +6. 🗣 Commented on [#17](https://github.com/codingfriendsfun/pcc/pull/17#issuecomment-1984529407) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +7. 🗣 Commented on [#1265](https://github.com/aimclub/FEDOT/pull/1265#issuecomment-1984427075) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#1076](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1076#issuecomment-1984228192) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#937](https://github.com/scilus/scilpy/pull/937#issuecomment-1983995298) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#3104](https://github.com/dipy/dipy/pull/3104#issuecomment-1983713631) in [dipy/dipy](https://github.com/dipy/dipy) From e166aa66b478f5a5ca1a6712737a72506061d38e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 8 Mar 2024 16:37:07 +0000 Subject: [PATCH 1617/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 002353cc..b5f261f3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#770](https://github.com/OpenFreeEnergy/openfe/pull/770#issuecomment-1985861506) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#129](https://github.com/tilde-lab/yascheduler/pull/129#issuecomment-1985709287) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) -3. 🗣 Commented on [#21](https://github.com/codingfriendsfun/pcc/pull/21#issuecomment-1985030571) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -4. 🗣 Commented on [#942](https://github.com/scilus/scilpy/pull/942#issuecomment-1984555978) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#19](https://github.com/codingfriendsfun/pcc/pull/19#issuecomment-1984530927) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -6. 🗣 Commented on [#17](https://github.com/codingfriendsfun/pcc/pull/17#issuecomment-1984529407) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -7. 🗣 Commented on [#1265](https://github.com/aimclub/FEDOT/pull/1265#issuecomment-1984427075) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#1076](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1076#issuecomment-1984228192) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#937](https://github.com/scilus/scilpy/pull/937#issuecomment-1983995298) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#3104](https://github.com/dipy/dipy/pull/3104#issuecomment-1983713631) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#869](https://github.com/fury-gl/fury/pull/869#issuecomment-1985999530) in [fury-gl/fury](https://github.com/fury-gl/fury) +2. 🗣 Commented on [#770](https://github.com/OpenFreeEnergy/openfe/pull/770#issuecomment-1985861506) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#129](https://github.com/tilde-lab/yascheduler/pull/129#issuecomment-1985709287) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) +4. 🗣 Commented on [#21](https://github.com/codingfriendsfun/pcc/pull/21#issuecomment-1985030571) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +5. 🗣 Commented on [#942](https://github.com/scilus/scilpy/pull/942#issuecomment-1984555978) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#19](https://github.com/codingfriendsfun/pcc/pull/19#issuecomment-1984530927) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +7. 🗣 Commented on [#17](https://github.com/codingfriendsfun/pcc/pull/17#issuecomment-1984529407) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +8. 🗣 Commented on [#1265](https://github.com/aimclub/FEDOT/pull/1265#issuecomment-1984427075) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#1076](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1076#issuecomment-1984228192) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#937](https://github.com/scilus/scilpy/pull/937#issuecomment-1983995298) in [scilus/scilpy](https://github.com/scilus/scilpy) From f2605b6950b736fa13bff3a32dc2955ebe6f35cd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 8 Mar 2024 20:14:10 +0000 Subject: [PATCH 1618/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b5f261f3..39e87178 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#869](https://github.com/fury-gl/fury/pull/869#issuecomment-1985999530) in [fury-gl/fury](https://github.com/fury-gl/fury) -2. 🗣 Commented on [#770](https://github.com/OpenFreeEnergy/openfe/pull/770#issuecomment-1985861506) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#129](https://github.com/tilde-lab/yascheduler/pull/129#issuecomment-1985709287) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) -4. 🗣 Commented on [#21](https://github.com/codingfriendsfun/pcc/pull/21#issuecomment-1985030571) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -5. 🗣 Commented on [#942](https://github.com/scilus/scilpy/pull/942#issuecomment-1984555978) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#19](https://github.com/codingfriendsfun/pcc/pull/19#issuecomment-1984530927) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -7. 🗣 Commented on [#17](https://github.com/codingfriendsfun/pcc/pull/17#issuecomment-1984529407) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -8. 🗣 Commented on [#1265](https://github.com/aimclub/FEDOT/pull/1265#issuecomment-1984427075) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#1076](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1076#issuecomment-1984228192) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#937](https://github.com/scilus/scilpy/pull/937#issuecomment-1983995298) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#8](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/8#issuecomment-1986323327) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +2. 🗣 Commented on [#869](https://github.com/fury-gl/fury/pull/869#issuecomment-1985999530) in [fury-gl/fury](https://github.com/fury-gl/fury) +3. 🗣 Commented on [#770](https://github.com/OpenFreeEnergy/openfe/pull/770#issuecomment-1985861506) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#129](https://github.com/tilde-lab/yascheduler/pull/129#issuecomment-1985709287) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) +5. 🗣 Commented on [#21](https://github.com/codingfriendsfun/pcc/pull/21#issuecomment-1985030571) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +6. 🗣 Commented on [#942](https://github.com/scilus/scilpy/pull/942#issuecomment-1984555978) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#19](https://github.com/codingfriendsfun/pcc/pull/19#issuecomment-1984530927) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +8. 🗣 Commented on [#17](https://github.com/codingfriendsfun/pcc/pull/17#issuecomment-1984529407) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +9. 🗣 Commented on [#1265](https://github.com/aimclub/FEDOT/pull/1265#issuecomment-1984427075) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#1076](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1076#issuecomment-1984228192) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 11037359e4833ab4b9ab276cedfdcee780bba583 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 06:21:44 +0000 Subject: [PATCH 1619/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 39e87178..efc73698 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#8](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/8#issuecomment-1986323327) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -2. 🗣 Commented on [#869](https://github.com/fury-gl/fury/pull/869#issuecomment-1985999530) in [fury-gl/fury](https://github.com/fury-gl/fury) -3. 🗣 Commented on [#770](https://github.com/OpenFreeEnergy/openfe/pull/770#issuecomment-1985861506) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#129](https://github.com/tilde-lab/yascheduler/pull/129#issuecomment-1985709287) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) -5. 🗣 Commented on [#21](https://github.com/codingfriendsfun/pcc/pull/21#issuecomment-1985030571) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -6. 🗣 Commented on [#942](https://github.com/scilus/scilpy/pull/942#issuecomment-1984555978) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#19](https://github.com/codingfriendsfun/pcc/pull/19#issuecomment-1984530927) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -8. 🗣 Commented on [#17](https://github.com/codingfriendsfun/pcc/pull/17#issuecomment-1984529407) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -9. 🗣 Commented on [#1265](https://github.com/aimclub/FEDOT/pull/1265#issuecomment-1984427075) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#1076](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1076#issuecomment-1984228192) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#3111](https://github.com/dipy/dipy/pull/3111#issuecomment-1986741612) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#8](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/8#issuecomment-1986323327) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +3. 🗣 Commented on [#869](https://github.com/fury-gl/fury/pull/869#issuecomment-1985999530) in [fury-gl/fury](https://github.com/fury-gl/fury) +4. 🗣 Commented on [#770](https://github.com/OpenFreeEnergy/openfe/pull/770#issuecomment-1985861506) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#129](https://github.com/tilde-lab/yascheduler/pull/129#issuecomment-1985709287) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) +6. 🗣 Commented on [#21](https://github.com/codingfriendsfun/pcc/pull/21#issuecomment-1985030571) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +7. 🗣 Commented on [#942](https://github.com/scilus/scilpy/pull/942#issuecomment-1984555978) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#19](https://github.com/codingfriendsfun/pcc/pull/19#issuecomment-1984530927) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +9. 🗣 Commented on [#17](https://github.com/codingfriendsfun/pcc/pull/17#issuecomment-1984529407) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +10. 🗣 Commented on [#1265](https://github.com/aimclub/FEDOT/pull/1265#issuecomment-1984427075) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From c76c6b9791bf33c92947d689dcc3356ad2759828 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Mar 2024 21:37:16 +0000 Subject: [PATCH 1620/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index efc73698..4053af50 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3111](https://github.com/dipy/dipy/pull/3111#issuecomment-1986741612) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#8](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/8#issuecomment-1986323327) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -3. 🗣 Commented on [#869](https://github.com/fury-gl/fury/pull/869#issuecomment-1985999530) in [fury-gl/fury](https://github.com/fury-gl/fury) -4. 🗣 Commented on [#770](https://github.com/OpenFreeEnergy/openfe/pull/770#issuecomment-1985861506) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#129](https://github.com/tilde-lab/yascheduler/pull/129#issuecomment-1985709287) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) -6. 🗣 Commented on [#21](https://github.com/codingfriendsfun/pcc/pull/21#issuecomment-1985030571) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -7. 🗣 Commented on [#942](https://github.com/scilus/scilpy/pull/942#issuecomment-1984555978) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#19](https://github.com/codingfriendsfun/pcc/pull/19#issuecomment-1984530927) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -9. 🗣 Commented on [#17](https://github.com/codingfriendsfun/pcc/pull/17#issuecomment-1984529407) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -10. 🗣 Commented on [#1265](https://github.com/aimclub/FEDOT/pull/1265#issuecomment-1984427075) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +2. 🗣 Commented on [#23](https://github.com/codingfriendsfun/pcc/pull/23#issuecomment-1986984634) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +3. 🗣 Commented on [#3111](https://github.com/dipy/dipy/pull/3111#issuecomment-1986741612) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#8](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/8#issuecomment-1986323327) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +5. 🗣 Commented on [#869](https://github.com/fury-gl/fury/pull/869#issuecomment-1985999530) in [fury-gl/fury](https://github.com/fury-gl/fury) +6. 🗣 Commented on [#770](https://github.com/OpenFreeEnergy/openfe/pull/770#issuecomment-1985861506) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#129](https://github.com/tilde-lab/yascheduler/pull/129#issuecomment-1985709287) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) +8. 🗣 Commented on [#21](https://github.com/codingfriendsfun/pcc/pull/21#issuecomment-1985030571) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +9. 🗣 Commented on [#942](https://github.com/scilus/scilpy/pull/942#issuecomment-1984555978) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#19](https://github.com/codingfriendsfun/pcc/pull/19#issuecomment-1984530927) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) From 1fb781eb4e21f3865827298bc07506ca714d1cf8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 10 Mar 2024 06:37:08 +0000 Subject: [PATCH 1621/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4053af50..fd56d5a1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -2. 🗣 Commented on [#23](https://github.com/codingfriendsfun/pcc/pull/23#issuecomment-1986984634) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -3. 🗣 Commented on [#3111](https://github.com/dipy/dipy/pull/3111#issuecomment-1986741612) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#8](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/8#issuecomment-1986323327) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -5. 🗣 Commented on [#869](https://github.com/fury-gl/fury/pull/869#issuecomment-1985999530) in [fury-gl/fury](https://github.com/fury-gl/fury) -6. 🗣 Commented on [#770](https://github.com/OpenFreeEnergy/openfe/pull/770#issuecomment-1985861506) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#129](https://github.com/tilde-lab/yascheduler/pull/129#issuecomment-1985709287) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) -8. 🗣 Commented on [#21](https://github.com/codingfriendsfun/pcc/pull/21#issuecomment-1985030571) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -9. 🗣 Commented on [#942](https://github.com/scilus/scilpy/pull/942#issuecomment-1984555978) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#19](https://github.com/codingfriendsfun/pcc/pull/19#issuecomment-1984530927) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +1. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +3. 🗣 Commented on [#23](https://github.com/codingfriendsfun/pcc/pull/23#issuecomment-1986984634) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +4. 🗣 Commented on [#3111](https://github.com/dipy/dipy/pull/3111#issuecomment-1986741612) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#8](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/8#issuecomment-1986323327) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +6. 🗣 Commented on [#869](https://github.com/fury-gl/fury/pull/869#issuecomment-1985999530) in [fury-gl/fury](https://github.com/fury-gl/fury) +7. 🗣 Commented on [#770](https://github.com/OpenFreeEnergy/openfe/pull/770#issuecomment-1985861506) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#129](https://github.com/tilde-lab/yascheduler/pull/129#issuecomment-1985709287) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) +9. 🗣 Commented on [#21](https://github.com/codingfriendsfun/pcc/pull/21#issuecomment-1985030571) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +10. 🗣 Commented on [#942](https://github.com/scilus/scilpy/pull/942#issuecomment-1984555978) in [scilus/scilpy](https://github.com/scilus/scilpy) From bba7e8844d65f60e1d79f185ae0c145d61a67b11 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 10 Mar 2024 12:26:11 +0000 Subject: [PATCH 1622/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fd56d5a1..a83c30d6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -3. 🗣 Commented on [#23](https://github.com/codingfriendsfun/pcc/pull/23#issuecomment-1986984634) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -4. 🗣 Commented on [#3111](https://github.com/dipy/dipy/pull/3111#issuecomment-1986741612) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#8](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/8#issuecomment-1986323327) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -6. 🗣 Commented on [#869](https://github.com/fury-gl/fury/pull/869#issuecomment-1985999530) in [fury-gl/fury](https://github.com/fury-gl/fury) -7. 🗣 Commented on [#770](https://github.com/OpenFreeEnergy/openfe/pull/770#issuecomment-1985861506) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#129](https://github.com/tilde-lab/yascheduler/pull/129#issuecomment-1985709287) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) -9. 🗣 Commented on [#21](https://github.com/codingfriendsfun/pcc/pull/21#issuecomment-1985030571) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -10. 🗣 Commented on [#942](https://github.com/scilus/scilpy/pull/942#issuecomment-1984555978) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) +2. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +4. 🗣 Commented on [#23](https://github.com/codingfriendsfun/pcc/pull/23#issuecomment-1986984634) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +5. 🗣 Commented on [#3111](https://github.com/dipy/dipy/pull/3111#issuecomment-1986741612) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#8](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/8#issuecomment-1986323327) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +7. 🗣 Commented on [#869](https://github.com/fury-gl/fury/pull/869#issuecomment-1985999530) in [fury-gl/fury](https://github.com/fury-gl/fury) +8. 🗣 Commented on [#770](https://github.com/OpenFreeEnergy/openfe/pull/770#issuecomment-1985861506) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#129](https://github.com/tilde-lab/yascheduler/pull/129#issuecomment-1985709287) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) +10. 🗣 Commented on [#21](https://github.com/codingfriendsfun/pcc/pull/21#issuecomment-1985030571) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) From a7bb28c24d5d45c710265c237ca62d70b5a0307d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 10 Mar 2024 21:12:26 +0000 Subject: [PATCH 1623/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a83c30d6..fdbef3b5 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) -2. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -4. 🗣 Commented on [#23](https://github.com/codingfriendsfun/pcc/pull/23#issuecomment-1986984634) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -5. 🗣 Commented on [#3111](https://github.com/dipy/dipy/pull/3111#issuecomment-1986741612) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#8](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/8#issuecomment-1986323327) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -7. 🗣 Commented on [#869](https://github.com/fury-gl/fury/pull/869#issuecomment-1985999530) in [fury-gl/fury](https://github.com/fury-gl/fury) -8. 🗣 Commented on [#770](https://github.com/OpenFreeEnergy/openfe/pull/770#issuecomment-1985861506) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#129](https://github.com/tilde-lab/yascheduler/pull/129#issuecomment-1985709287) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) -10. 🗣 Commented on [#21](https://github.com/codingfriendsfun/pcc/pull/21#issuecomment-1985030571) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +1. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) +2. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) +3. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +5. 🗣 Commented on [#23](https://github.com/codingfriendsfun/pcc/pull/23#issuecomment-1986984634) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +6. 🗣 Commented on [#3111](https://github.com/dipy/dipy/pull/3111#issuecomment-1986741612) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#8](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/8#issuecomment-1986323327) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +8. 🗣 Commented on [#869](https://github.com/fury-gl/fury/pull/869#issuecomment-1985999530) in [fury-gl/fury](https://github.com/fury-gl/fury) +9. 🗣 Commented on [#770](https://github.com/OpenFreeEnergy/openfe/pull/770#issuecomment-1985861506) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#129](https://github.com/tilde-lab/yascheduler/pull/129#issuecomment-1985709287) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) From 38f835f957e8d188f92672e6806a8a2c8335355d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 08:20:18 +0000 Subject: [PATCH 1624/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fdbef3b5..e2c246a1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) -2. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) -3. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -5. 🗣 Commented on [#23](https://github.com/codingfriendsfun/pcc/pull/23#issuecomment-1986984634) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -6. 🗣 Commented on [#3111](https://github.com/dipy/dipy/pull/3111#issuecomment-1986741612) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#8](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/8#issuecomment-1986323327) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -8. 🗣 Commented on [#869](https://github.com/fury-gl/fury/pull/869#issuecomment-1985999530) in [fury-gl/fury](https://github.com/fury-gl/fury) -9. 🗣 Commented on [#770](https://github.com/OpenFreeEnergy/openfe/pull/770#issuecomment-1985861506) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#129](https://github.com/tilde-lab/yascheduler/pull/129#issuecomment-1985709287) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) +1. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) +3. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) +4. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +6. 🗣 Commented on [#23](https://github.com/codingfriendsfun/pcc/pull/23#issuecomment-1986984634) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +7. 🗣 Commented on [#3111](https://github.com/dipy/dipy/pull/3111#issuecomment-1986741612) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#8](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/8#issuecomment-1986323327) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +9. 🗣 Commented on [#869](https://github.com/fury-gl/fury/pull/869#issuecomment-1985999530) in [fury-gl/fury](https://github.com/fury-gl/fury) +10. 🗣 Commented on [#770](https://github.com/OpenFreeEnergy/openfe/pull/770#issuecomment-1985861506) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From a56f54934a2c1addc81d22b744bf3aababe9bbec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 10:18:31 +0000 Subject: [PATCH 1625/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e2c246a1..fd617c66 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) -3. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) -4. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -6. 🗣 Commented on [#23](https://github.com/codingfriendsfun/pcc/pull/23#issuecomment-1986984634) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -7. 🗣 Commented on [#3111](https://github.com/dipy/dipy/pull/3111#issuecomment-1986741612) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#8](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/8#issuecomment-1986323327) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -9. 🗣 Commented on [#869](https://github.com/fury-gl/fury/pull/869#issuecomment-1985999530) in [fury-gl/fury](https://github.com/fury-gl/fury) -10. 🗣 Commented on [#770](https://github.com/OpenFreeEnergy/openfe/pull/770#issuecomment-1985861506) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) +4. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) +5. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +7. 🗣 Commented on [#23](https://github.com/codingfriendsfun/pcc/pull/23#issuecomment-1986984634) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +8. 🗣 Commented on [#3111](https://github.com/dipy/dipy/pull/3111#issuecomment-1986741612) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#8](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/8#issuecomment-1986323327) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +10. 🗣 Commented on [#869](https://github.com/fury-gl/fury/pull/869#issuecomment-1985999530) in [fury-gl/fury](https://github.com/fury-gl/fury) From 586b4b57b5adebd91f31558c2f2e29df214fd545 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 12:29:51 +0000 Subject: [PATCH 1626/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fd617c66..f71b83e0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) -4. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) -5. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -7. 🗣 Commented on [#23](https://github.com/codingfriendsfun/pcc/pull/23#issuecomment-1986984634) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -8. 🗣 Commented on [#3111](https://github.com/dipy/dipy/pull/3111#issuecomment-1986741612) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#8](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/8#issuecomment-1986323327) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) -10. 🗣 Commented on [#869](https://github.com/fury-gl/fury/pull/869#issuecomment-1985999530) in [fury-gl/fury](https://github.com/fury-gl/fury) +1. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +2. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) +5. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) +6. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +8. 🗣 Commented on [#23](https://github.com/codingfriendsfun/pcc/pull/23#issuecomment-1986984634) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +9. 🗣 Commented on [#3111](https://github.com/dipy/dipy/pull/3111#issuecomment-1986741612) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#8](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/8#issuecomment-1986323327) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) From 83b387d86c003e4ab8e6bb6855da995bc8c1d5fc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 14:14:40 +0000 Subject: [PATCH 1627/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f71b83e0..dcbc46fc 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -2. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) -5. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) -6. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -8. 🗣 Commented on [#23](https://github.com/codingfriendsfun/pcc/pull/23#issuecomment-1986984634) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -9. 🗣 Commented on [#3111](https://github.com/dipy/dipy/pull/3111#issuecomment-1986741612) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#8](https://github.com/OpenFreeEnergy/openfe_skunkworks/pull/8#issuecomment-1986323327) in [OpenFreeEnergy/openfe_skunkworks](https://github.com/OpenFreeEnergy/openfe_skunkworks) +1. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +3. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +4. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) +6. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) +7. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +9. 🗣 Commented on [#23](https://github.com/codingfriendsfun/pcc/pull/23#issuecomment-1986984634) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +10. 🗣 Commented on [#3111](https://github.com/dipy/dipy/pull/3111#issuecomment-1986741612) in [dipy/dipy](https://github.com/dipy/dipy) From 99bd942ba04c624b59e3db1fbc389a9e3ae38237 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 14:37:04 +0000 Subject: [PATCH 1628/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dcbc46fc..0b968f2c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -3. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -4. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) -6. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) -7. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -9. 🗣 Commented on [#23](https://github.com/codingfriendsfun/pcc/pull/23#issuecomment-1986984634) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -10. 🗣 Commented on [#3111](https://github.com/dipy/dipy/pull/3111#issuecomment-1986741612) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +2. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +4. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) +7. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) +8. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +10. 🗣 Commented on [#23](https://github.com/codingfriendsfun/pcc/pull/23#issuecomment-1986984634) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) From b52883d9137a78fdd9a732448c6f30bf67ff3070 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 17:14:41 +0000 Subject: [PATCH 1629/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0b968f2c..b1a551d7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) -2. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -4. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) -7. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) -8. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -10. 🗣 Commented on [#23](https://github.com/codingfriendsfun/pcc/pull/23#issuecomment-1986984634) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +1. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) +2. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +3. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +5. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) +8. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) +9. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) From 0161040e05044cfbce33900e2f9a63a035b5f75f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 19:14:14 +0000 Subject: [PATCH 1630/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b1a551d7..8235754e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) -2. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) -3. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -5. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) -8. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) -9. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#24](https://github.com/codingfriendsfun/pcc/pull/24#issuecomment-1986984698) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +1. 🗣 Commented on [#2064](https://github.com/rpm-software-management/dnf/pull/2064#issuecomment-1989198175) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +2. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) +3. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +4. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +6. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +7. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) +9. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) +10. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) From d8d509a94e26fa57c745cb91d920cd63b34ea286 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 07:37:16 +0000 Subject: [PATCH 1631/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8235754e..c4dac9fc 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2064](https://github.com/rpm-software-management/dnf/pull/2064#issuecomment-1989198175) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -2. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) -3. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) -4. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -6. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -7. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) -9. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) -10. 🗣 Commented on [#3113](https://github.com/dipy/dipy/pull/3113#issuecomment-1987108040) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#21875](https://github.com/spyder-ide/spyder/pull/21875#issuecomment-1990936206) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#2064](https://github.com/rpm-software-management/dnf/pull/2064#issuecomment-1989198175) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +3. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) +4. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +5. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +7. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) +10. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) From 3807ff6df126cd6c592b00e61e8edd166e15c3f2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 10:16:25 +0000 Subject: [PATCH 1632/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c4dac9fc..66bed4d1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21875](https://github.com/spyder-ide/spyder/pull/21875#issuecomment-1990936206) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#2064](https://github.com/rpm-software-management/dnf/pull/2064#issuecomment-1989198175) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -3. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) -4. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) -5. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -7. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) -10. 🗣 Commented on [#34](https://github.com/noshita/ktch/pull/34#issuecomment-1987197193) in [noshita/ktch](https://github.com/noshita/ktch) +1. 🗣 Commented on [#1705](https://github.com/zarr-developers/zarr-python/pull/1705#issuecomment-1991257190) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +2. 🗣 Commented on [#21875](https://github.com/spyder-ide/spyder/pull/21875#issuecomment-1990936206) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#2064](https://github.com/rpm-software-management/dnf/pull/2064#issuecomment-1989198175) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +4. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) +5. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +6. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +8. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) From f08b3c474e222d7ceb1950528204dfbac70b64b6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 11:38:17 +0000 Subject: [PATCH 1633/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 66bed4d1..8020a83c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1705](https://github.com/zarr-developers/zarr-python/pull/1705#issuecomment-1991257190) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -2. 🗣 Commented on [#21875](https://github.com/spyder-ide/spyder/pull/21875#issuecomment-1990936206) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#2064](https://github.com/rpm-software-management/dnf/pull/2064#issuecomment-1989198175) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -4. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) -5. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) -6. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -8. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#416](https://github.com/xarray-contrib/xskillscore/pull/416#issuecomment-1987362157) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) +1. 🗣 Commented on [#2808](https://github.com/metabrainz/listenbrainz-server/pull/2808#issuecomment-1991411773) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#1705](https://github.com/zarr-developers/zarr-python/pull/1705#issuecomment-1991257190) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +3. 🗣 Commented on [#21875](https://github.com/spyder-ide/spyder/pull/21875#issuecomment-1990936206) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#2064](https://github.com/rpm-software-management/dnf/pull/2064#issuecomment-1989198175) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +5. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) +6. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +7. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +9. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From 8e4cb1ccfc91eda61bf6d38388c8f9dbfad8e7af Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 17:14:37 +0000 Subject: [PATCH 1634/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8020a83c..db8ebf31 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2808](https://github.com/metabrainz/listenbrainz-server/pull/2808#issuecomment-1991411773) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#1705](https://github.com/zarr-developers/zarr-python/pull/1705#issuecomment-1991257190) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -3. 🗣 Commented on [#21875](https://github.com/spyder-ide/spyder/pull/21875#issuecomment-1990936206) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#2064](https://github.com/rpm-software-management/dnf/pull/2064#issuecomment-1989198175) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -5. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) -6. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) -7. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -9. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#1267](https://github.com/aimclub/FEDOT/pull/1267#issuecomment-1987795013) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#515](https://github.com/zarr-developers/numcodecs/pull/515#issuecomment-1992069025) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +2. 🗣 Commented on [#2808](https://github.com/metabrainz/listenbrainz-server/pull/2808#issuecomment-1991411773) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#1705](https://github.com/zarr-developers/zarr-python/pull/1705#issuecomment-1991257190) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +4. 🗣 Commented on [#21875](https://github.com/spyder-ide/spyder/pull/21875#issuecomment-1990936206) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#2064](https://github.com/rpm-software-management/dnf/pull/2064#issuecomment-1989198175) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +6. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) +7. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +8. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +10. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From d692ccfccf346ea50f1f08a44062ed0c517528ec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 18:37:09 +0000 Subject: [PATCH 1635/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index db8ebf31..2de9da48 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#515](https://github.com/zarr-developers/numcodecs/pull/515#issuecomment-1992069025) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -2. 🗣 Commented on [#2808](https://github.com/metabrainz/listenbrainz-server/pull/2808#issuecomment-1991411773) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#1705](https://github.com/zarr-developers/zarr-python/pull/1705#issuecomment-1991257190) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -4. 🗣 Commented on [#21875](https://github.com/spyder-ide/spyder/pull/21875#issuecomment-1990936206) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#2064](https://github.com/rpm-software-management/dnf/pull/2064#issuecomment-1989198175) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -6. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) -7. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) -8. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -10. 🗣 Commented on [#3879](https://github.com/privacyidea/privacyidea/pull/3879#issuecomment-1987992905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#227](https://github.com/scil-vital/dwi_ml/pull/227#issuecomment-1992290048) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +2. 🗣 Commented on [#515](https://github.com/zarr-developers/numcodecs/pull/515#issuecomment-1992069025) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +3. 🗣 Commented on [#2808](https://github.com/metabrainz/listenbrainz-server/pull/2808#issuecomment-1991411773) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#1705](https://github.com/zarr-developers/zarr-python/pull/1705#issuecomment-1991257190) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +5. 🗣 Commented on [#21875](https://github.com/spyder-ide/spyder/pull/21875#issuecomment-1990936206) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#2064](https://github.com/rpm-software-management/dnf/pull/2064#issuecomment-1989198175) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +7. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) +8. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +9. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) From 56dcc0f10942ea1371f6e4aaf8d0b7e735dacf02 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 19:36:59 +0000 Subject: [PATCH 1636/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2de9da48..6102de66 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#227](https://github.com/scil-vital/dwi_ml/pull/227#issuecomment-1992290048) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -2. 🗣 Commented on [#515](https://github.com/zarr-developers/numcodecs/pull/515#issuecomment-1992069025) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -3. 🗣 Commented on [#2808](https://github.com/metabrainz/listenbrainz-server/pull/2808#issuecomment-1991411773) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#1705](https://github.com/zarr-developers/zarr-python/pull/1705#issuecomment-1991257190) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -5. 🗣 Commented on [#21875](https://github.com/spyder-ide/spyder/pull/21875#issuecomment-1990936206) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#2064](https://github.com/rpm-software-management/dnf/pull/2064#issuecomment-1989198175) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -7. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) -8. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) -9. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#66](https://github.com/rasbt/LLMs-from-scratch/pull/66#issuecomment-1988293448) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +1. 🗣 Commented on [#4482](https://github.com/MDAnalysis/mdanalysis/pull/4482#issuecomment-1992368223) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#227](https://github.com/scil-vital/dwi_ml/pull/227#issuecomment-1992290048) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +3. 🗣 Commented on [#515](https://github.com/zarr-developers/numcodecs/pull/515#issuecomment-1992069025) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +4. 🗣 Commented on [#2808](https://github.com/metabrainz/listenbrainz-server/pull/2808#issuecomment-1991411773) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#1705](https://github.com/zarr-developers/zarr-python/pull/1705#issuecomment-1991257190) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +6. 🗣 Commented on [#21875](https://github.com/spyder-ide/spyder/pull/21875#issuecomment-1990936206) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#2064](https://github.com/rpm-software-management/dnf/pull/2064#issuecomment-1989198175) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +8. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) +9. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +10. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 5f998e336eae574021b208baef7937944d7df1df Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 21:14:55 +0000 Subject: [PATCH 1637/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6102de66..a74977d3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4482](https://github.com/MDAnalysis/mdanalysis/pull/4482#issuecomment-1992368223) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#227](https://github.com/scil-vital/dwi_ml/pull/227#issuecomment-1992290048) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -3. 🗣 Commented on [#515](https://github.com/zarr-developers/numcodecs/pull/515#issuecomment-1992069025) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -4. 🗣 Commented on [#2808](https://github.com/metabrainz/listenbrainz-server/pull/2808#issuecomment-1991411773) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#1705](https://github.com/zarr-developers/zarr-python/pull/1705#issuecomment-1991257190) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -6. 🗣 Commented on [#21875](https://github.com/spyder-ide/spyder/pull/21875#issuecomment-1990936206) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#2064](https://github.com/rpm-software-management/dnf/pull/2064#issuecomment-1989198175) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -8. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) -9. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) -10. 🗣 Commented on [#1497](https://github.com/spacetelescope/jwql/pull/1497#issuecomment-1988494185) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#378](https://github.com/dicompyler/dicompyler-core/pull/378#issuecomment-1992553438) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) +2. 🗣 Commented on [#4482](https://github.com/MDAnalysis/mdanalysis/pull/4482#issuecomment-1992368223) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#227](https://github.com/scil-vital/dwi_ml/pull/227#issuecomment-1992290048) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +4. 🗣 Commented on [#515](https://github.com/zarr-developers/numcodecs/pull/515#issuecomment-1992069025) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +5. 🗣 Commented on [#2808](https://github.com/metabrainz/listenbrainz-server/pull/2808#issuecomment-1991411773) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#1705](https://github.com/zarr-developers/zarr-python/pull/1705#issuecomment-1991257190) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +7. 🗣 Commented on [#21875](https://github.com/spyder-ide/spyder/pull/21875#issuecomment-1990936206) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#2064](https://github.com/rpm-software-management/dnf/pull/2064#issuecomment-1989198175) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +9. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) +10. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) From ae224ae069d65d5478a8487cc70cf87145f6ecaa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 22:14:31 +0000 Subject: [PATCH 1638/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a74977d3..52075f49 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#378](https://github.com/dicompyler/dicompyler-core/pull/378#issuecomment-1992553438) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) -2. 🗣 Commented on [#4482](https://github.com/MDAnalysis/mdanalysis/pull/4482#issuecomment-1992368223) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#227](https://github.com/scil-vital/dwi_ml/pull/227#issuecomment-1992290048) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -4. 🗣 Commented on [#515](https://github.com/zarr-developers/numcodecs/pull/515#issuecomment-1992069025) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -5. 🗣 Commented on [#2808](https://github.com/metabrainz/listenbrainz-server/pull/2808#issuecomment-1991411773) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#1705](https://github.com/zarr-developers/zarr-python/pull/1705#issuecomment-1991257190) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -7. 🗣 Commented on [#21875](https://github.com/spyder-ide/spyder/pull/21875#issuecomment-1990936206) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#2064](https://github.com/rpm-software-management/dnf/pull/2064#issuecomment-1989198175) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -9. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) -10. 🗣 Commented on [#76](https://github.com/Remi-Gau/bids2cite/pull/76#issuecomment-1988551807) in [Remi-Gau/bids2cite](https://github.com/Remi-Gau/bids2cite) +1. 🗣 Commented on [#1223](https://github.com/tableau/connector-plugin-sdk/pull/1223#issuecomment-1992649214) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +2. 🗣 Commented on [#378](https://github.com/dicompyler/dicompyler-core/pull/378#issuecomment-1992553438) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) +3. 🗣 Commented on [#4482](https://github.com/MDAnalysis/mdanalysis/pull/4482#issuecomment-1992368223) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#227](https://github.com/scil-vital/dwi_ml/pull/227#issuecomment-1992290048) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +5. 🗣 Commented on [#515](https://github.com/zarr-developers/numcodecs/pull/515#issuecomment-1992069025) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +6. 🗣 Commented on [#2808](https://github.com/metabrainz/listenbrainz-server/pull/2808#issuecomment-1991411773) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#1705](https://github.com/zarr-developers/zarr-python/pull/1705#issuecomment-1991257190) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +8. 🗣 Commented on [#21875](https://github.com/spyder-ide/spyder/pull/21875#issuecomment-1990936206) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#2064](https://github.com/rpm-software-management/dnf/pull/2064#issuecomment-1989198175) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +10. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) From 5e2ab425f694caead8c4e488d13ba2476cf9b506 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Mar 2024 02:04:42 +0000 Subject: [PATCH 1639/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 52075f49..5c3eb0cf 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1223](https://github.com/tableau/connector-plugin-sdk/pull/1223#issuecomment-1992649214) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -2. 🗣 Commented on [#378](https://github.com/dicompyler/dicompyler-core/pull/378#issuecomment-1992553438) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) -3. 🗣 Commented on [#4482](https://github.com/MDAnalysis/mdanalysis/pull/4482#issuecomment-1992368223) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#227](https://github.com/scil-vital/dwi_ml/pull/227#issuecomment-1992290048) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -5. 🗣 Commented on [#515](https://github.com/zarr-developers/numcodecs/pull/515#issuecomment-1992069025) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -6. 🗣 Commented on [#2808](https://github.com/metabrainz/listenbrainz-server/pull/2808#issuecomment-1991411773) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#1705](https://github.com/zarr-developers/zarr-python/pull/1705#issuecomment-1991257190) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -8. 🗣 Commented on [#21875](https://github.com/spyder-ide/spyder/pull/21875#issuecomment-1990936206) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#2064](https://github.com/rpm-software-management/dnf/pull/2064#issuecomment-1989198175) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -10. 🗣 Commented on [#1](https://github.com/meanmail/django-model-utils/pull/1#issuecomment-1988908148) in [meanmail/django-model-utils](https://github.com/meanmail/django-model-utils) +1. 🗣 Commented on [#318](https://github.com/DeMarcoLab/fibsem/pull/318#issuecomment-1992933038) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +2. 🗣 Commented on [#146](https://github.com/DeMarcoLab/autolamella/pull/146#issuecomment-1992931275) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +3. 🗣 Commented on [#1223](https://github.com/tableau/connector-plugin-sdk/pull/1223#issuecomment-1992649214) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +4. 🗣 Commented on [#378](https://github.com/dicompyler/dicompyler-core/pull/378#issuecomment-1992553438) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) +5. 🗣 Commented on [#4482](https://github.com/MDAnalysis/mdanalysis/pull/4482#issuecomment-1992368223) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#227](https://github.com/scil-vital/dwi_ml/pull/227#issuecomment-1992290048) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +7. 🗣 Commented on [#515](https://github.com/zarr-developers/numcodecs/pull/515#issuecomment-1992069025) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +8. 🗣 Commented on [#2808](https://github.com/metabrainz/listenbrainz-server/pull/2808#issuecomment-1991411773) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#1705](https://github.com/zarr-developers/zarr-python/pull/1705#issuecomment-1991257190) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +10. 🗣 Commented on [#21875](https://github.com/spyder-ide/spyder/pull/21875#issuecomment-1990936206) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 299eb8e81199aa0c5c1e90ba7b7927e54d5fe48a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Mar 2024 11:37:07 +0000 Subject: [PATCH 1640/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5c3eb0cf..619c383d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#318](https://github.com/DeMarcoLab/fibsem/pull/318#issuecomment-1992933038) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -2. 🗣 Commented on [#146](https://github.com/DeMarcoLab/autolamella/pull/146#issuecomment-1992931275) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -3. 🗣 Commented on [#1223](https://github.com/tableau/connector-plugin-sdk/pull/1223#issuecomment-1992649214) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -4. 🗣 Commented on [#378](https://github.com/dicompyler/dicompyler-core/pull/378#issuecomment-1992553438) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) -5. 🗣 Commented on [#4482](https://github.com/MDAnalysis/mdanalysis/pull/4482#issuecomment-1992368223) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#227](https://github.com/scil-vital/dwi_ml/pull/227#issuecomment-1992290048) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -7. 🗣 Commented on [#515](https://github.com/zarr-developers/numcodecs/pull/515#issuecomment-1992069025) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -8. 🗣 Commented on [#2808](https://github.com/metabrainz/listenbrainz-server/pull/2808#issuecomment-1991411773) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#1705](https://github.com/zarr-developers/zarr-python/pull/1705#issuecomment-1991257190) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -10. 🗣 Commented on [#21875](https://github.com/spyder-ide/spyder/pull/21875#issuecomment-1990936206) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#296](https://github.com/OpenFreeEnergy/gufe/pull/296#issuecomment-1994163302) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#318](https://github.com/DeMarcoLab/fibsem/pull/318#issuecomment-1992933038) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +3. 🗣 Commented on [#146](https://github.com/DeMarcoLab/autolamella/pull/146#issuecomment-1992931275) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +4. 🗣 Commented on [#1223](https://github.com/tableau/connector-plugin-sdk/pull/1223#issuecomment-1992649214) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +5. 🗣 Commented on [#378](https://github.com/dicompyler/dicompyler-core/pull/378#issuecomment-1992553438) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) +6. 🗣 Commented on [#4482](https://github.com/MDAnalysis/mdanalysis/pull/4482#issuecomment-1992368223) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#227](https://github.com/scil-vital/dwi_ml/pull/227#issuecomment-1992290048) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +8. 🗣 Commented on [#515](https://github.com/zarr-developers/numcodecs/pull/515#issuecomment-1992069025) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +9. 🗣 Commented on [#2808](https://github.com/metabrainz/listenbrainz-server/pull/2808#issuecomment-1991411773) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#1705](https://github.com/zarr-developers/zarr-python/pull/1705#issuecomment-1991257190) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) From 3a318116f06c7a4d597343062f4e26a7a145a6e5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Mar 2024 12:29:23 +0000 Subject: [PATCH 1641/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 619c383d..500c81e0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#296](https://github.com/OpenFreeEnergy/gufe/pull/296#issuecomment-1994163302) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#318](https://github.com/DeMarcoLab/fibsem/pull/318#issuecomment-1992933038) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -3. 🗣 Commented on [#146](https://github.com/DeMarcoLab/autolamella/pull/146#issuecomment-1992931275) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -4. 🗣 Commented on [#1223](https://github.com/tableau/connector-plugin-sdk/pull/1223#issuecomment-1992649214) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -5. 🗣 Commented on [#378](https://github.com/dicompyler/dicompyler-core/pull/378#issuecomment-1992553438) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) -6. 🗣 Commented on [#4482](https://github.com/MDAnalysis/mdanalysis/pull/4482#issuecomment-1992368223) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#227](https://github.com/scil-vital/dwi_ml/pull/227#issuecomment-1992290048) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -8. 🗣 Commented on [#515](https://github.com/zarr-developers/numcodecs/pull/515#issuecomment-1992069025) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -9. 🗣 Commented on [#2808](https://github.com/metabrainz/listenbrainz-server/pull/2808#issuecomment-1991411773) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#1705](https://github.com/zarr-developers/zarr-python/pull/1705#issuecomment-1991257190) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +1. 🗣 Commented on [#527](https://github.com/rpm-software-management/dnf-plugins-core/pull/527#issuecomment-1994276520) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) +2. 🗣 Commented on [#296](https://github.com/OpenFreeEnergy/gufe/pull/296#issuecomment-1994163302) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +3. 🗣 Commented on [#318](https://github.com/DeMarcoLab/fibsem/pull/318#issuecomment-1992933038) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +4. 🗣 Commented on [#146](https://github.com/DeMarcoLab/autolamella/pull/146#issuecomment-1992931275) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +5. 🗣 Commented on [#1223](https://github.com/tableau/connector-plugin-sdk/pull/1223#issuecomment-1992649214) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +6. 🗣 Commented on [#378](https://github.com/dicompyler/dicompyler-core/pull/378#issuecomment-1992553438) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) +7. 🗣 Commented on [#4482](https://github.com/MDAnalysis/mdanalysis/pull/4482#issuecomment-1992368223) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#227](https://github.com/scil-vital/dwi_ml/pull/227#issuecomment-1992290048) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +9. 🗣 Commented on [#515](https://github.com/zarr-developers/numcodecs/pull/515#issuecomment-1992069025) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +10. 🗣 Commented on [#2808](https://github.com/metabrainz/listenbrainz-server/pull/2808#issuecomment-1991411773) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 41a8546ce1c6fadab864ee25935085f8ae68a467 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Mar 2024 13:38:09 +0000 Subject: [PATCH 1642/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 500c81e0..e75a4897 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#527](https://github.com/rpm-software-management/dnf-plugins-core/pull/527#issuecomment-1994276520) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) -2. 🗣 Commented on [#296](https://github.com/OpenFreeEnergy/gufe/pull/296#issuecomment-1994163302) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -3. 🗣 Commented on [#318](https://github.com/DeMarcoLab/fibsem/pull/318#issuecomment-1992933038) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -4. 🗣 Commented on [#146](https://github.com/DeMarcoLab/autolamella/pull/146#issuecomment-1992931275) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -5. 🗣 Commented on [#1223](https://github.com/tableau/connector-plugin-sdk/pull/1223#issuecomment-1992649214) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -6. 🗣 Commented on [#378](https://github.com/dicompyler/dicompyler-core/pull/378#issuecomment-1992553438) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) -7. 🗣 Commented on [#4482](https://github.com/MDAnalysis/mdanalysis/pull/4482#issuecomment-1992368223) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#227](https://github.com/scil-vital/dwi_ml/pull/227#issuecomment-1992290048) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -9. 🗣 Commented on [#515](https://github.com/zarr-developers/numcodecs/pull/515#issuecomment-1992069025) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -10. 🗣 Commented on [#2808](https://github.com/metabrainz/listenbrainz-server/pull/2808#issuecomment-1991411773) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994421936) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +2. 🗣 Commented on [#527](https://github.com/rpm-software-management/dnf-plugins-core/pull/527#issuecomment-1994276520) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) +3. 🗣 Commented on [#296](https://github.com/OpenFreeEnergy/gufe/pull/296#issuecomment-1994163302) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#318](https://github.com/DeMarcoLab/fibsem/pull/318#issuecomment-1992933038) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +5. 🗣 Commented on [#146](https://github.com/DeMarcoLab/autolamella/pull/146#issuecomment-1992931275) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +6. 🗣 Commented on [#1223](https://github.com/tableau/connector-plugin-sdk/pull/1223#issuecomment-1992649214) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +7. 🗣 Commented on [#378](https://github.com/dicompyler/dicompyler-core/pull/378#issuecomment-1992553438) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) +8. 🗣 Commented on [#4482](https://github.com/MDAnalysis/mdanalysis/pull/4482#issuecomment-1992368223) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#227](https://github.com/scil-vital/dwi_ml/pull/227#issuecomment-1992290048) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +10. 🗣 Commented on [#515](https://github.com/zarr-developers/numcodecs/pull/515#issuecomment-1992069025) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) From db62b20a77f2b47dcee19afac3ff49c0f3ff2717 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Mar 2024 14:14:50 +0000 Subject: [PATCH 1643/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e75a4897..da7509ff 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994421936) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -2. 🗣 Commented on [#527](https://github.com/rpm-software-management/dnf-plugins-core/pull/527#issuecomment-1994276520) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) -3. 🗣 Commented on [#296](https://github.com/OpenFreeEnergy/gufe/pull/296#issuecomment-1994163302) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#318](https://github.com/DeMarcoLab/fibsem/pull/318#issuecomment-1992933038) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -5. 🗣 Commented on [#146](https://github.com/DeMarcoLab/autolamella/pull/146#issuecomment-1992931275) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -6. 🗣 Commented on [#1223](https://github.com/tableau/connector-plugin-sdk/pull/1223#issuecomment-1992649214) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -7. 🗣 Commented on [#378](https://github.com/dicompyler/dicompyler-core/pull/378#issuecomment-1992553438) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) -8. 🗣 Commented on [#4482](https://github.com/MDAnalysis/mdanalysis/pull/4482#issuecomment-1992368223) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#227](https://github.com/scil-vital/dwi_ml/pull/227#issuecomment-1992290048) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -10. 🗣 Commented on [#515](https://github.com/zarr-developers/numcodecs/pull/515#issuecomment-1992069025) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +1. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994427525) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +2. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994421936) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +3. 🗣 Commented on [#527](https://github.com/rpm-software-management/dnf-plugins-core/pull/527#issuecomment-1994276520) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) +4. 🗣 Commented on [#296](https://github.com/OpenFreeEnergy/gufe/pull/296#issuecomment-1994163302) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#318](https://github.com/DeMarcoLab/fibsem/pull/318#issuecomment-1992933038) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +6. 🗣 Commented on [#146](https://github.com/DeMarcoLab/autolamella/pull/146#issuecomment-1992931275) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +7. 🗣 Commented on [#1223](https://github.com/tableau/connector-plugin-sdk/pull/1223#issuecomment-1992649214) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +8. 🗣 Commented on [#378](https://github.com/dicompyler/dicompyler-core/pull/378#issuecomment-1992553438) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) +9. 🗣 Commented on [#4482](https://github.com/MDAnalysis/mdanalysis/pull/4482#issuecomment-1992368223) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#227](https://github.com/scil-vital/dwi_ml/pull/227#issuecomment-1992290048) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) From 3f1530825db5f82708e6896a9dac6ba76b34f9f9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Mar 2024 15:37:14 +0000 Subject: [PATCH 1644/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index da7509ff..e5a065f6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994427525) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -2. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994421936) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -3. 🗣 Commented on [#527](https://github.com/rpm-software-management/dnf-plugins-core/pull/527#issuecomment-1994276520) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) -4. 🗣 Commented on [#296](https://github.com/OpenFreeEnergy/gufe/pull/296#issuecomment-1994163302) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#318](https://github.com/DeMarcoLab/fibsem/pull/318#issuecomment-1992933038) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -6. 🗣 Commented on [#146](https://github.com/DeMarcoLab/autolamella/pull/146#issuecomment-1992931275) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -7. 🗣 Commented on [#1223](https://github.com/tableau/connector-plugin-sdk/pull/1223#issuecomment-1992649214) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -8. 🗣 Commented on [#378](https://github.com/dicompyler/dicompyler-core/pull/378#issuecomment-1992553438) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) -9. 🗣 Commented on [#4482](https://github.com/MDAnalysis/mdanalysis/pull/4482#issuecomment-1992368223) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#227](https://github.com/scil-vital/dwi_ml/pull/227#issuecomment-1992290048) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +1. 🗣 Commented on [#944](https://github.com/scilus/scilpy/pull/944#issuecomment-1994673121) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994427525) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +3. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994421936) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +4. 🗣 Commented on [#527](https://github.com/rpm-software-management/dnf-plugins-core/pull/527#issuecomment-1994276520) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) +5. 🗣 Commented on [#296](https://github.com/OpenFreeEnergy/gufe/pull/296#issuecomment-1994163302) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#318](https://github.com/DeMarcoLab/fibsem/pull/318#issuecomment-1992933038) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +7. 🗣 Commented on [#146](https://github.com/DeMarcoLab/autolamella/pull/146#issuecomment-1992931275) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +8. 🗣 Commented on [#1223](https://github.com/tableau/connector-plugin-sdk/pull/1223#issuecomment-1992649214) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +9. 🗣 Commented on [#378](https://github.com/dicompyler/dicompyler-core/pull/378#issuecomment-1992553438) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) +10. 🗣 Commented on [#4482](https://github.com/MDAnalysis/mdanalysis/pull/4482#issuecomment-1992368223) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From face86ce999b59aa06f5c29b0870ebdc9088a411 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Mar 2024 20:14:53 +0000 Subject: [PATCH 1645/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e5a065f6..54f26412 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#944](https://github.com/scilus/scilpy/pull/944#issuecomment-1994673121) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994427525) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -3. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994421936) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -4. 🗣 Commented on [#527](https://github.com/rpm-software-management/dnf-plugins-core/pull/527#issuecomment-1994276520) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) -5. 🗣 Commented on [#296](https://github.com/OpenFreeEnergy/gufe/pull/296#issuecomment-1994163302) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#318](https://github.com/DeMarcoLab/fibsem/pull/318#issuecomment-1992933038) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -7. 🗣 Commented on [#146](https://github.com/DeMarcoLab/autolamella/pull/146#issuecomment-1992931275) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -8. 🗣 Commented on [#1223](https://github.com/tableau/connector-plugin-sdk/pull/1223#issuecomment-1992649214) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -9. 🗣 Commented on [#378](https://github.com/dicompyler/dicompyler-core/pull/378#issuecomment-1992553438) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) -10. 🗣 Commented on [#4482](https://github.com/MDAnalysis/mdanalysis/pull/4482#issuecomment-1992368223) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#1077](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1077#issuecomment-1995604110) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#493](https://github.com/HEPCloud/decisionengine_modules/pull/493#issuecomment-1995572529) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +3. 🗣 Commented on [#56](https://github.com/Fatal1ty/aioapns/pull/56#issuecomment-1995524686) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) +4. 🗣 Commented on [#944](https://github.com/scilus/scilpy/pull/944#issuecomment-1994673121) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994427525) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +6. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994421936) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +7. 🗣 Commented on [#527](https://github.com/rpm-software-management/dnf-plugins-core/pull/527#issuecomment-1994276520) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) +8. 🗣 Commented on [#296](https://github.com/OpenFreeEnergy/gufe/pull/296#issuecomment-1994163302) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +9. 🗣 Commented on [#318](https://github.com/DeMarcoLab/fibsem/pull/318#issuecomment-1992933038) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +10. 🗣 Commented on [#146](https://github.com/DeMarcoLab/autolamella/pull/146#issuecomment-1992931275) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) From ee7395e02efb89518f09fec8e2d776f26c3f1889 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Mar 2024 20:37:47 +0000 Subject: [PATCH 1646/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 54f26412..a4b73a68 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1077](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1077#issuecomment-1995604110) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#493](https://github.com/HEPCloud/decisionengine_modules/pull/493#issuecomment-1995572529) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -3. 🗣 Commented on [#56](https://github.com/Fatal1ty/aioapns/pull/56#issuecomment-1995524686) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) -4. 🗣 Commented on [#944](https://github.com/scilus/scilpy/pull/944#issuecomment-1994673121) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994427525) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -6. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994421936) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -7. 🗣 Commented on [#527](https://github.com/rpm-software-management/dnf-plugins-core/pull/527#issuecomment-1994276520) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) -8. 🗣 Commented on [#296](https://github.com/OpenFreeEnergy/gufe/pull/296#issuecomment-1994163302) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -9. 🗣 Commented on [#318](https://github.com/DeMarcoLab/fibsem/pull/318#issuecomment-1992933038) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -10. 🗣 Commented on [#146](https://github.com/DeMarcoLab/autolamella/pull/146#issuecomment-1992931275) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +1. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +2. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +3. 🗣 Commented on [#1077](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1077#issuecomment-1995604110) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#493](https://github.com/HEPCloud/decisionengine_modules/pull/493#issuecomment-1995572529) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +5. 🗣 Commented on [#56](https://github.com/Fatal1ty/aioapns/pull/56#issuecomment-1995524686) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) +6. 🗣 Commented on [#944](https://github.com/scilus/scilpy/pull/944#issuecomment-1994673121) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994427525) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +8. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994421936) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +9. 🗣 Commented on [#527](https://github.com/rpm-software-management/dnf-plugins-core/pull/527#issuecomment-1994276520) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) +10. 🗣 Commented on [#296](https://github.com/OpenFreeEnergy/gufe/pull/296#issuecomment-1994163302) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) From f812490ae8c6d1b6915a532e1fa6289a7fcd557d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 02:02:40 +0000 Subject: [PATCH 1647/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a4b73a68..7068398f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -2. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -3. 🗣 Commented on [#1077](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1077#issuecomment-1995604110) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#493](https://github.com/HEPCloud/decisionengine_modules/pull/493#issuecomment-1995572529) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -5. 🗣 Commented on [#56](https://github.com/Fatal1ty/aioapns/pull/56#issuecomment-1995524686) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) -6. 🗣 Commented on [#944](https://github.com/scilus/scilpy/pull/944#issuecomment-1994673121) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994427525) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -8. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994421936) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -9. 🗣 Commented on [#527](https://github.com/rpm-software-management/dnf-plugins-core/pull/527#issuecomment-1994276520) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) -10. 🗣 Commented on [#296](https://github.com/OpenFreeEnergy/gufe/pull/296#issuecomment-1994163302) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +1. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +2. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +3. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +4. 🗣 Commented on [#1077](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1077#issuecomment-1995604110) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#493](https://github.com/HEPCloud/decisionengine_modules/pull/493#issuecomment-1995572529) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +6. 🗣 Commented on [#56](https://github.com/Fatal1ty/aioapns/pull/56#issuecomment-1995524686) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) +7. 🗣 Commented on [#944](https://github.com/scilus/scilpy/pull/944#issuecomment-1994673121) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994427525) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +9. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994421936) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +10. 🗣 Commented on [#527](https://github.com/rpm-software-management/dnf-plugins-core/pull/527#issuecomment-1994276520) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) From 8d6c41451b5707d936508369bb463779a32bcaf5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 11:13:28 +0000 Subject: [PATCH 1648/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7068398f..98f3148b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -2. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -3. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -4. 🗣 Commented on [#1077](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1077#issuecomment-1995604110) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#493](https://github.com/HEPCloud/decisionengine_modules/pull/493#issuecomment-1995572529) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -6. 🗣 Commented on [#56](https://github.com/Fatal1ty/aioapns/pull/56#issuecomment-1995524686) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) -7. 🗣 Commented on [#944](https://github.com/scilus/scilpy/pull/944#issuecomment-1994673121) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994427525) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -9. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994421936) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -10. 🗣 Commented on [#527](https://github.com/rpm-software-management/dnf-plugins-core/pull/527#issuecomment-1994276520) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) +1. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +3. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +4. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +5. 🗣 Commented on [#1077](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1077#issuecomment-1995604110) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#493](https://github.com/HEPCloud/decisionengine_modules/pull/493#issuecomment-1995572529) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +7. 🗣 Commented on [#56](https://github.com/Fatal1ty/aioapns/pull/56#issuecomment-1995524686) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) +8. 🗣 Commented on [#944](https://github.com/scilus/scilpy/pull/944#issuecomment-1994673121) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994427525) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +10. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994421936) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) From b50ec3a13575e5ff8d72735fc8594392c3d7f09d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 12:30:11 +0000 Subject: [PATCH 1649/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 98f3148b..bd52ff37 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -3. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -4. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -5. 🗣 Commented on [#1077](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1077#issuecomment-1995604110) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#493](https://github.com/HEPCloud/decisionengine_modules/pull/493#issuecomment-1995572529) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -7. 🗣 Commented on [#56](https://github.com/Fatal1ty/aioapns/pull/56#issuecomment-1995524686) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) -8. 🗣 Commented on [#944](https://github.com/scilus/scilpy/pull/944#issuecomment-1994673121) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994427525) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -10. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994421936) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +1. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) +2. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +4. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +5. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +6. 🗣 Commented on [#1077](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1077#issuecomment-1995604110) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#493](https://github.com/HEPCloud/decisionengine_modules/pull/493#issuecomment-1995572529) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +8. 🗣 Commented on [#56](https://github.com/Fatal1ty/aioapns/pull/56#issuecomment-1995524686) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) +9. 🗣 Commented on [#944](https://github.com/scilus/scilpy/pull/944#issuecomment-1994673121) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994427525) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) From 4c03ce2c1e4fa61ab6898d890ae03e209c7b1ac7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 13:18:00 +0000 Subject: [PATCH 1650/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bd52ff37..1b21a136 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) -2. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -4. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -5. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -6. 🗣 Commented on [#1077](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1077#issuecomment-1995604110) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#493](https://github.com/HEPCloud/decisionengine_modules/pull/493#issuecomment-1995572529) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -8. 🗣 Commented on [#56](https://github.com/Fatal1ty/aioapns/pull/56#issuecomment-1995524686) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) -9. 🗣 Commented on [#944](https://github.com/scilus/scilpy/pull/944#issuecomment-1994673121) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#69](https://github.com/rasbt/LLMs-from-scratch/pull/69#issuecomment-1994427525) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +1. 🗣 Commented on [#2](https://github.com/Vl-Tershch/pythonProject/pull/2#issuecomment-1997440955) in [Vl-Tershch/pythonProject](https://github.com/Vl-Tershch/pythonProject) +2. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) +3. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) +4. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +6. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +7. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +8. 🗣 Commented on [#1077](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1077#issuecomment-1995604110) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#493](https://github.com/HEPCloud/decisionengine_modules/pull/493#issuecomment-1995572529) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +10. 🗣 Commented on [#56](https://github.com/Fatal1ty/aioapns/pull/56#issuecomment-1995524686) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) From ca0fc8308537ec231cdca80b3ab25d781a1f03ac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 13:37:08 +0000 Subject: [PATCH 1651/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1b21a136..5481eaef 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/Vl-Tershch/pythonProject/pull/2#issuecomment-1997440955) in [Vl-Tershch/pythonProject](https://github.com/Vl-Tershch/pythonProject) -2. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) -3. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) -4. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -6. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -7. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -8. 🗣 Commented on [#1077](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1077#issuecomment-1995604110) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#493](https://github.com/HEPCloud/decisionengine_modules/pull/493#issuecomment-1995572529) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -10. 🗣 Commented on [#56](https://github.com/Fatal1ty/aioapns/pull/56#issuecomment-1995524686) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) +1. 🗣 Commented on [#3](https://github.com/Vl-Tershch/pythonProject/pull/3#issuecomment-1997450967) in [Vl-Tershch/pythonProject](https://github.com/Vl-Tershch/pythonProject) +2. 🗣 Commented on [#2](https://github.com/Vl-Tershch/pythonProject/pull/2#issuecomment-1997440955) in [Vl-Tershch/pythonProject](https://github.com/Vl-Tershch/pythonProject) +3. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) +5. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +7. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +8. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +9. 🗣 Commented on [#1077](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1077#issuecomment-1995604110) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#493](https://github.com/HEPCloud/decisionengine_modules/pull/493#issuecomment-1995572529) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) From 331002bacb9f833554c2afd04bda55905d2a9b7b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 14:38:34 +0000 Subject: [PATCH 1652/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5481eaef..61b6fe51 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3](https://github.com/Vl-Tershch/pythonProject/pull/3#issuecomment-1997450967) in [Vl-Tershch/pythonProject](https://github.com/Vl-Tershch/pythonProject) -2. 🗣 Commented on [#2](https://github.com/Vl-Tershch/pythonProject/pull/2#issuecomment-1997440955) in [Vl-Tershch/pythonProject](https://github.com/Vl-Tershch/pythonProject) -3. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) -5. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -7. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -8. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -9. 🗣 Commented on [#1077](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1077#issuecomment-1995604110) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#493](https://github.com/HEPCloud/decisionengine_modules/pull/493#issuecomment-1995572529) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +1. 🗣 Commented on [#1514](https://github.com/spacetelescope/jwql/pull/1514#issuecomment-1997497806) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#3](https://github.com/Vl-Tershch/pythonProject/pull/3#issuecomment-1997450967) in [Vl-Tershch/pythonProject](https://github.com/Vl-Tershch/pythonProject) +3. 🗣 Commented on [#2](https://github.com/Vl-Tershch/pythonProject/pull/2#issuecomment-1997440955) in [Vl-Tershch/pythonProject](https://github.com/Vl-Tershch/pythonProject) +4. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) +6. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +8. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +9. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +10. 🗣 Commented on [#1077](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1077#issuecomment-1995604110) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From a8d2762d534f37f832b193ea6755323726b7be8e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 15:16:29 +0000 Subject: [PATCH 1653/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 61b6fe51..75b03eb1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1514](https://github.com/spacetelescope/jwql/pull/1514#issuecomment-1997497806) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#3](https://github.com/Vl-Tershch/pythonProject/pull/3#issuecomment-1997450967) in [Vl-Tershch/pythonProject](https://github.com/Vl-Tershch/pythonProject) -3. 🗣 Commented on [#2](https://github.com/Vl-Tershch/pythonProject/pull/2#issuecomment-1997440955) in [Vl-Tershch/pythonProject](https://github.com/Vl-Tershch/pythonProject) -4. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) -6. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -8. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -9. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -10. 🗣 Commented on [#1077](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1077#issuecomment-1995604110) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#2812](https://github.com/metabrainz/listenbrainz-server/pull/2812#issuecomment-1997673868) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#1514](https://github.com/spacetelescope/jwql/pull/1514#issuecomment-1997497806) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#3](https://github.com/Vl-Tershch/pythonProject/pull/3#issuecomment-1997450967) in [Vl-Tershch/pythonProject](https://github.com/Vl-Tershch/pythonProject) +4. 🗣 Commented on [#2](https://github.com/Vl-Tershch/pythonProject/pull/2#issuecomment-1997440955) in [Vl-Tershch/pythonProject](https://github.com/Vl-Tershch/pythonProject) +5. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) +7. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +9. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +10. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) From 85a519804559ba7baa01fc368746c17bb66ea24a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 15:37:12 +0000 Subject: [PATCH 1654/2173] :zap: Update README with the recent activity --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 75b03eb1..ceb2c4a7 100644 --- a/README.md +++ b/README.md @@ -238,12 +238,12 @@ If you use this project and you like it, [please let me know](https://saythanks. 1. 🗣 Commented on [#2812](https://github.com/metabrainz/listenbrainz-server/pull/2812#issuecomment-1997673868) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) 2. 🗣 Commented on [#1514](https://github.com/spacetelescope/jwql/pull/1514#issuecomment-1997497806) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#3](https://github.com/Vl-Tershch/pythonProject/pull/3#issuecomment-1997450967) in [Vl-Tershch/pythonProject](https://github.com/Vl-Tershch/pythonProject) -4. 🗣 Commented on [#2](https://github.com/Vl-Tershch/pythonProject/pull/2#issuecomment-1997440955) in [Vl-Tershch/pythonProject](https://github.com/Vl-Tershch/pythonProject) -5. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) -7. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -9. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -10. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +3. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) +5. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +7. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +8. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +9. 🗣 Commented on [#1077](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1077#issuecomment-1995604110) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#493](https://github.com/HEPCloud/decisionengine_modules/pull/493#issuecomment-1995572529) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) From 6f2971b1cf6f44e067a22978b43489606d0b1380 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 16:20:18 +0000 Subject: [PATCH 1655/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ceb2c4a7..b1356bd0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2812](https://github.com/metabrainz/listenbrainz-server/pull/2812#issuecomment-1997673868) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#1514](https://github.com/spacetelescope/jwql/pull/1514#issuecomment-1997497806) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) -5. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -7. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -8. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -9. 🗣 Commented on [#1077](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1077#issuecomment-1995604110) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#493](https://github.com/HEPCloud/decisionengine_modules/pull/493#issuecomment-1995572529) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +1. 🗣 Commented on [#26](https://github.com/thoth-pub/thoth-dissemination/pull/26#issuecomment-1997751249) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +2. 🗣 Commented on [#946](https://github.com/scilus/scilpy/pull/946#issuecomment-1997739985) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#2812](https://github.com/metabrainz/listenbrainz-server/pull/2812#issuecomment-1997673868) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#1514](https://github.com/spacetelescope/jwql/pull/1514#issuecomment-1997497806) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) +7. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +9. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +10. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) From 33956603c2426de27b48f39c0968ccd90a4edc28 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 18:19:46 +0000 Subject: [PATCH 1656/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b1356bd0..eb113072 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#26](https://github.com/thoth-pub/thoth-dissemination/pull/26#issuecomment-1997751249) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) -2. 🗣 Commented on [#946](https://github.com/scilus/scilpy/pull/946#issuecomment-1997739985) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#2812](https://github.com/metabrainz/listenbrainz-server/pull/2812#issuecomment-1997673868) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#1514](https://github.com/spacetelescope/jwql/pull/1514#issuecomment-1997497806) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) -7. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -9. 🗣 Commented on [#199](https://github.com/Fatal1ty/mashumaro/pull/199#issuecomment-1995669702) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -10. 🗣 Commented on [#198](https://github.com/Fatal1ty/mashumaro/pull/198#issuecomment-1995652016) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +1. 🗣 Commented on [#5](https://github.com/Vl-Tershch/LISA-Demo/pull/5#issuecomment-1997990229) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) +2. 🗣 Commented on [#4](https://github.com/Vl-Tershch/LISA-Demo/pull/4#issuecomment-1997975437) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) +3. 🗣 Commented on [#26](https://github.com/thoth-pub/thoth-dissemination/pull/26#issuecomment-1997751249) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +4. 🗣 Commented on [#946](https://github.com/scilus/scilpy/pull/946#issuecomment-1997739985) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#2812](https://github.com/metabrainz/listenbrainz-server/pull/2812#issuecomment-1997673868) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#1514](https://github.com/spacetelescope/jwql/pull/1514#issuecomment-1997497806) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) +9. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) From 0ab563fc64e970ea4d93cd701a1a4a6c520daaf6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 18:37:05 +0000 Subject: [PATCH 1657/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index eb113072..6d719c4a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5](https://github.com/Vl-Tershch/LISA-Demo/pull/5#issuecomment-1997990229) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) -2. 🗣 Commented on [#4](https://github.com/Vl-Tershch/LISA-Demo/pull/4#issuecomment-1997975437) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) -3. 🗣 Commented on [#26](https://github.com/thoth-pub/thoth-dissemination/pull/26#issuecomment-1997751249) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) -4. 🗣 Commented on [#946](https://github.com/scilus/scilpy/pull/946#issuecomment-1997739985) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#2812](https://github.com/metabrainz/listenbrainz-server/pull/2812#issuecomment-1997673868) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#1514](https://github.com/spacetelescope/jwql/pull/1514#issuecomment-1997497806) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) -9. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#52](https://github.com/tuhinmallick/timeseries-simulation/pull/52#issuecomment-1996213141) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +1. 🗣 Commented on [#947](https://github.com/scilus/scilpy/pull/947#issuecomment-1998059860) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#5](https://github.com/Vl-Tershch/LISA-Demo/pull/5#issuecomment-1997990229) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) +3. 🗣 Commented on [#4](https://github.com/Vl-Tershch/LISA-Demo/pull/4#issuecomment-1997975437) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) +4. 🗣 Commented on [#26](https://github.com/thoth-pub/thoth-dissemination/pull/26#issuecomment-1997751249) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +5. 🗣 Commented on [#946](https://github.com/scilus/scilpy/pull/946#issuecomment-1997739985) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#2812](https://github.com/metabrainz/listenbrainz-server/pull/2812#issuecomment-1997673868) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#1514](https://github.com/spacetelescope/jwql/pull/1514#issuecomment-1997497806) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) +10. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 42a7346854d512a21bda45a1a98bfc1596593b70 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 20:17:08 +0000 Subject: [PATCH 1658/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6d719c4a..9af1f1fd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#947](https://github.com/scilus/scilpy/pull/947#issuecomment-1998059860) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#5](https://github.com/Vl-Tershch/LISA-Demo/pull/5#issuecomment-1997990229) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) -3. 🗣 Commented on [#4](https://github.com/Vl-Tershch/LISA-Demo/pull/4#issuecomment-1997975437) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) -4. 🗣 Commented on [#26](https://github.com/thoth-pub/thoth-dissemination/pull/26#issuecomment-1997751249) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) -5. 🗣 Commented on [#946](https://github.com/scilus/scilpy/pull/946#issuecomment-1997739985) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#2812](https://github.com/metabrainz/listenbrainz-server/pull/2812#issuecomment-1997673868) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#1514](https://github.com/spacetelescope/jwql/pull/1514#issuecomment-1997497806) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) -10. 🗣 Commented on [#21891](https://github.com/spyder-ide/spyder/pull/21891#issuecomment-1997163621) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#1516](https://github.com/spacetelescope/jwql/pull/1516#issuecomment-1998329178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#947](https://github.com/scilus/scilpy/pull/947#issuecomment-1998059860) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#5](https://github.com/Vl-Tershch/LISA-Demo/pull/5#issuecomment-1997990229) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) +4. 🗣 Commented on [#4](https://github.com/Vl-Tershch/LISA-Demo/pull/4#issuecomment-1997975437) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) +5. 🗣 Commented on [#26](https://github.com/thoth-pub/thoth-dissemination/pull/26#issuecomment-1997751249) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +6. 🗣 Commented on [#946](https://github.com/scilus/scilpy/pull/946#issuecomment-1997739985) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#2812](https://github.com/metabrainz/listenbrainz-server/pull/2812#issuecomment-1997673868) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#1514](https://github.com/spacetelescope/jwql/pull/1514#issuecomment-1997497806) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) From 03b503f8ee5e986249ea56a524130a822bea5a9d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 21:14:20 +0000 Subject: [PATCH 1659/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9af1f1fd..b56045e6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1516](https://github.com/spacetelescope/jwql/pull/1516#issuecomment-1998329178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#947](https://github.com/scilus/scilpy/pull/947#issuecomment-1998059860) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#5](https://github.com/Vl-Tershch/LISA-Demo/pull/5#issuecomment-1997990229) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) -4. 🗣 Commented on [#4](https://github.com/Vl-Tershch/LISA-Demo/pull/4#issuecomment-1997975437) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) -5. 🗣 Commented on [#26](https://github.com/thoth-pub/thoth-dissemination/pull/26#issuecomment-1997751249) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) -6. 🗣 Commented on [#946](https://github.com/scilus/scilpy/pull/946#issuecomment-1997739985) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#2812](https://github.com/metabrainz/listenbrainz-server/pull/2812#issuecomment-1997673868) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#1514](https://github.com/spacetelescope/jwql/pull/1514#issuecomment-1997497806) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#2](https://github.com/microbo-ru/hack-it-purple-2024/pull/2#issuecomment-1997321674) in [microbo-ru/hack-it-purple-2024](https://github.com/microbo-ru/hack-it-purple-2024) +1. 🗣 Commented on [#23](https://github.com/cdfxscrq/File-Sharing-Bot/pull/23#issuecomment-1998472872) in [cdfxscrq/File-Sharing-Bot](https://github.com/cdfxscrq/File-Sharing-Bot) +2. 🗣 Commented on [#1516](https://github.com/spacetelescope/jwql/pull/1516#issuecomment-1998329178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#947](https://github.com/scilus/scilpy/pull/947#issuecomment-1998059860) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#5](https://github.com/Vl-Tershch/LISA-Demo/pull/5#issuecomment-1997990229) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) +5. 🗣 Commented on [#4](https://github.com/Vl-Tershch/LISA-Demo/pull/4#issuecomment-1997975437) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) +6. 🗣 Commented on [#26](https://github.com/thoth-pub/thoth-dissemination/pull/26#issuecomment-1997751249) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +7. 🗣 Commented on [#946](https://github.com/scilus/scilpy/pull/946#issuecomment-1997739985) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#2812](https://github.com/metabrainz/listenbrainz-server/pull/2812#issuecomment-1997673868) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#1514](https://github.com/spacetelescope/jwql/pull/1514#issuecomment-1997497806) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) From 2b7840b038cbceb0eee8cce097bf03ada6ee4890 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 22:38:21 +0000 Subject: [PATCH 1660/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b56045e6..01e4a3a8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#23](https://github.com/cdfxscrq/File-Sharing-Bot/pull/23#issuecomment-1998472872) in [cdfxscrq/File-Sharing-Bot](https://github.com/cdfxscrq/File-Sharing-Bot) -2. 🗣 Commented on [#1516](https://github.com/spacetelescope/jwql/pull/1516#issuecomment-1998329178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#947](https://github.com/scilus/scilpy/pull/947#issuecomment-1998059860) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#5](https://github.com/Vl-Tershch/LISA-Demo/pull/5#issuecomment-1997990229) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) -5. 🗣 Commented on [#4](https://github.com/Vl-Tershch/LISA-Demo/pull/4#issuecomment-1997975437) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) -6. 🗣 Commented on [#26](https://github.com/thoth-pub/thoth-dissemination/pull/26#issuecomment-1997751249) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) -7. 🗣 Commented on [#946](https://github.com/scilus/scilpy/pull/946#issuecomment-1997739985) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#2812](https://github.com/metabrainz/listenbrainz-server/pull/2812#issuecomment-1997673868) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#1514](https://github.com/spacetelescope/jwql/pull/1514#issuecomment-1997497806) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#1518](https://github.com/openSUSE/osc/pull/1518#issuecomment-1997387717) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#1078](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1078#issuecomment-1998590200) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#23](https://github.com/cdfxscrq/File-Sharing-Bot/pull/23#issuecomment-1998472872) in [cdfxscrq/File-Sharing-Bot](https://github.com/cdfxscrq/File-Sharing-Bot) +3. 🗣 Commented on [#1516](https://github.com/spacetelescope/jwql/pull/1516#issuecomment-1998329178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#947](https://github.com/scilus/scilpy/pull/947#issuecomment-1998059860) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#5](https://github.com/Vl-Tershch/LISA-Demo/pull/5#issuecomment-1997990229) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) +6. 🗣 Commented on [#4](https://github.com/Vl-Tershch/LISA-Demo/pull/4#issuecomment-1997975437) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) +7. 🗣 Commented on [#26](https://github.com/thoth-pub/thoth-dissemination/pull/26#issuecomment-1997751249) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +8. 🗣 Commented on [#946](https://github.com/scilus/scilpy/pull/946#issuecomment-1997739985) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#2812](https://github.com/metabrainz/listenbrainz-server/pull/2812#issuecomment-1997673868) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#1514](https://github.com/spacetelescope/jwql/pull/1514#issuecomment-1997497806) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 78aae71e7565bbc781d6e45880cf42be0ea22c40 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Mar 2024 01:09:31 +0000 Subject: [PATCH 1661/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 01e4a3a8..3c3c8d14 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1078](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1078#issuecomment-1998590200) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#23](https://github.com/cdfxscrq/File-Sharing-Bot/pull/23#issuecomment-1998472872) in [cdfxscrq/File-Sharing-Bot](https://github.com/cdfxscrq/File-Sharing-Bot) -3. 🗣 Commented on [#1516](https://github.com/spacetelescope/jwql/pull/1516#issuecomment-1998329178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#947](https://github.com/scilus/scilpy/pull/947#issuecomment-1998059860) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#5](https://github.com/Vl-Tershch/LISA-Demo/pull/5#issuecomment-1997990229) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) -6. 🗣 Commented on [#4](https://github.com/Vl-Tershch/LISA-Demo/pull/4#issuecomment-1997975437) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) -7. 🗣 Commented on [#26](https://github.com/thoth-pub/thoth-dissemination/pull/26#issuecomment-1997751249) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) -8. 🗣 Commented on [#946](https://github.com/scilus/scilpy/pull/946#issuecomment-1997739985) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#2812](https://github.com/metabrainz/listenbrainz-server/pull/2812#issuecomment-1997673868) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#1514](https://github.com/spacetelescope/jwql/pull/1514#issuecomment-1997497806) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#38](https://github.com/tuhinmallick/timeseries-simulation/pull/38#issuecomment-1998694711) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +2. 🗣 Commented on [#1078](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1078#issuecomment-1998590200) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#23](https://github.com/cdfxscrq/File-Sharing-Bot/pull/23#issuecomment-1998472872) in [cdfxscrq/File-Sharing-Bot](https://github.com/cdfxscrq/File-Sharing-Bot) +4. 🗣 Commented on [#1516](https://github.com/spacetelescope/jwql/pull/1516#issuecomment-1998329178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#947](https://github.com/scilus/scilpy/pull/947#issuecomment-1998059860) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#5](https://github.com/Vl-Tershch/LISA-Demo/pull/5#issuecomment-1997990229) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) +7. 🗣 Commented on [#4](https://github.com/Vl-Tershch/LISA-Demo/pull/4#issuecomment-1997975437) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) +8. 🗣 Commented on [#26](https://github.com/thoth-pub/thoth-dissemination/pull/26#issuecomment-1997751249) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +9. 🗣 Commented on [#946](https://github.com/scilus/scilpy/pull/946#issuecomment-1997739985) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#2812](https://github.com/metabrainz/listenbrainz-server/pull/2812#issuecomment-1997673868) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From ee3302edb3f5f99fe0768dce05c4cfcf3bd38032 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Mar 2024 03:38:59 +0000 Subject: [PATCH 1662/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3c3c8d14..13846855 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#38](https://github.com/tuhinmallick/timeseries-simulation/pull/38#issuecomment-1998694711) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -2. 🗣 Commented on [#1078](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1078#issuecomment-1998590200) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#23](https://github.com/cdfxscrq/File-Sharing-Bot/pull/23#issuecomment-1998472872) in [cdfxscrq/File-Sharing-Bot](https://github.com/cdfxscrq/File-Sharing-Bot) -4. 🗣 Commented on [#1516](https://github.com/spacetelescope/jwql/pull/1516#issuecomment-1998329178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#947](https://github.com/scilus/scilpy/pull/947#issuecomment-1998059860) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#5](https://github.com/Vl-Tershch/LISA-Demo/pull/5#issuecomment-1997990229) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) -7. 🗣 Commented on [#4](https://github.com/Vl-Tershch/LISA-Demo/pull/4#issuecomment-1997975437) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) -8. 🗣 Commented on [#26](https://github.com/thoth-pub/thoth-dissemination/pull/26#issuecomment-1997751249) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) -9. 🗣 Commented on [#946](https://github.com/scilus/scilpy/pull/946#issuecomment-1997739985) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#2812](https://github.com/metabrainz/listenbrainz-server/pull/2812#issuecomment-1997673868) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#427](https://github.com/payu-org/payu/pull/427#issuecomment-1998867643) in [payu-org/payu](https://github.com/payu-org/payu) +2. 🗣 Commented on [#38](https://github.com/tuhinmallick/timeseries-simulation/pull/38#issuecomment-1998694711) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +3. 🗣 Commented on [#1078](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1078#issuecomment-1998590200) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#23](https://github.com/cdfxscrq/File-Sharing-Bot/pull/23#issuecomment-1998472872) in [cdfxscrq/File-Sharing-Bot](https://github.com/cdfxscrq/File-Sharing-Bot) +5. 🗣 Commented on [#1516](https://github.com/spacetelescope/jwql/pull/1516#issuecomment-1998329178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#947](https://github.com/scilus/scilpy/pull/947#issuecomment-1998059860) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#5](https://github.com/Vl-Tershch/LISA-Demo/pull/5#issuecomment-1997990229) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) +8. 🗣 Commented on [#4](https://github.com/Vl-Tershch/LISA-Demo/pull/4#issuecomment-1997975437) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) +9. 🗣 Commented on [#26](https://github.com/thoth-pub/thoth-dissemination/pull/26#issuecomment-1997751249) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +10. 🗣 Commented on [#946](https://github.com/scilus/scilpy/pull/946#issuecomment-1997739985) in [scilus/scilpy](https://github.com/scilus/scilpy) From d5a29ab7ebc787b5720c3f8c3b44f689e2ed9357 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Mar 2024 16:38:06 +0000 Subject: [PATCH 1663/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 13846855..6ca9ce37 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#427](https://github.com/payu-org/payu/pull/427#issuecomment-1998867643) in [payu-org/payu](https://github.com/payu-org/payu) -2. 🗣 Commented on [#38](https://github.com/tuhinmallick/timeseries-simulation/pull/38#issuecomment-1998694711) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -3. 🗣 Commented on [#1078](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1078#issuecomment-1998590200) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#23](https://github.com/cdfxscrq/File-Sharing-Bot/pull/23#issuecomment-1998472872) in [cdfxscrq/File-Sharing-Bot](https://github.com/cdfxscrq/File-Sharing-Bot) -5. 🗣 Commented on [#1516](https://github.com/spacetelescope/jwql/pull/1516#issuecomment-1998329178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#947](https://github.com/scilus/scilpy/pull/947#issuecomment-1998059860) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#5](https://github.com/Vl-Tershch/LISA-Demo/pull/5#issuecomment-1997990229) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) -8. 🗣 Commented on [#4](https://github.com/Vl-Tershch/LISA-Demo/pull/4#issuecomment-1997975437) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) -9. 🗣 Commented on [#26](https://github.com/thoth-pub/thoth-dissemination/pull/26#issuecomment-1997751249) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) -10. 🗣 Commented on [#946](https://github.com/scilus/scilpy/pull/946#issuecomment-1997739985) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#4335](https://github.com/uwcirg/truenth-portal/pull/4335#issuecomment-2000028909) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +2. 🗣 Commented on [#427](https://github.com/payu-org/payu/pull/427#issuecomment-1998867643) in [payu-org/payu](https://github.com/payu-org/payu) +3. 🗣 Commented on [#38](https://github.com/tuhinmallick/timeseries-simulation/pull/38#issuecomment-1998694711) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +4. 🗣 Commented on [#1078](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1078#issuecomment-1998590200) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#23](https://github.com/cdfxscrq/File-Sharing-Bot/pull/23#issuecomment-1998472872) in [cdfxscrq/File-Sharing-Bot](https://github.com/cdfxscrq/File-Sharing-Bot) +6. 🗣 Commented on [#1516](https://github.com/spacetelescope/jwql/pull/1516#issuecomment-1998329178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#947](https://github.com/scilus/scilpy/pull/947#issuecomment-1998059860) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#5](https://github.com/Vl-Tershch/LISA-Demo/pull/5#issuecomment-1997990229) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) +9. 🗣 Commented on [#4](https://github.com/Vl-Tershch/LISA-Demo/pull/4#issuecomment-1997975437) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) +10. 🗣 Commented on [#26](https://github.com/thoth-pub/thoth-dissemination/pull/26#issuecomment-1997751249) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) From d29d3af124178d27dc669ecd327d340ed317a50e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Mar 2024 19:13:08 +0000 Subject: [PATCH 1664/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6ca9ce37..e184c26e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4335](https://github.com/uwcirg/truenth-portal/pull/4335#issuecomment-2000028909) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -2. 🗣 Commented on [#427](https://github.com/payu-org/payu/pull/427#issuecomment-1998867643) in [payu-org/payu](https://github.com/payu-org/payu) -3. 🗣 Commented on [#38](https://github.com/tuhinmallick/timeseries-simulation/pull/38#issuecomment-1998694711) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -4. 🗣 Commented on [#1078](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1078#issuecomment-1998590200) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#23](https://github.com/cdfxscrq/File-Sharing-Bot/pull/23#issuecomment-1998472872) in [cdfxscrq/File-Sharing-Bot](https://github.com/cdfxscrq/File-Sharing-Bot) -6. 🗣 Commented on [#1516](https://github.com/spacetelescope/jwql/pull/1516#issuecomment-1998329178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#947](https://github.com/scilus/scilpy/pull/947#issuecomment-1998059860) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#5](https://github.com/Vl-Tershch/LISA-Demo/pull/5#issuecomment-1997990229) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) -9. 🗣 Commented on [#4](https://github.com/Vl-Tershch/LISA-Demo/pull/4#issuecomment-1997975437) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) -10. 🗣 Commented on [#26](https://github.com/thoth-pub/thoth-dissemination/pull/26#issuecomment-1997751249) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +1. 🗣 Commented on [#2967](https://github.com/astropy/astroquery/pull/2967#issuecomment-2000276733) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#4437](https://github.com/pyload/pyload/pull/4437#issuecomment-2000250387) in [pyload/pyload](https://github.com/pyload/pyload) +3. 🗣 Commented on [#4335](https://github.com/uwcirg/truenth-portal/pull/4335#issuecomment-2000028909) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +4. 🗣 Commented on [#427](https://github.com/payu-org/payu/pull/427#issuecomment-1998867643) in [payu-org/payu](https://github.com/payu-org/payu) +5. 🗣 Commented on [#38](https://github.com/tuhinmallick/timeseries-simulation/pull/38#issuecomment-1998694711) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +6. 🗣 Commented on [#1078](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1078#issuecomment-1998590200) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#23](https://github.com/cdfxscrq/File-Sharing-Bot/pull/23#issuecomment-1998472872) in [cdfxscrq/File-Sharing-Bot](https://github.com/cdfxscrq/File-Sharing-Bot) +8. 🗣 Commented on [#1516](https://github.com/spacetelescope/jwql/pull/1516#issuecomment-1998329178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#947](https://github.com/scilus/scilpy/pull/947#issuecomment-1998059860) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#5](https://github.com/Vl-Tershch/LISA-Demo/pull/5#issuecomment-1997990229) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) From 54b671b2b7cf2a30faaa4191919cb13db7aebfef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Mar 2024 20:18:29 +0000 Subject: [PATCH 1665/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e184c26e..b2905b51 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2967](https://github.com/astropy/astroquery/pull/2967#issuecomment-2000276733) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#4437](https://github.com/pyload/pyload/pull/4437#issuecomment-2000250387) in [pyload/pyload](https://github.com/pyload/pyload) -3. 🗣 Commented on [#4335](https://github.com/uwcirg/truenth-portal/pull/4335#issuecomment-2000028909) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -4. 🗣 Commented on [#427](https://github.com/payu-org/payu/pull/427#issuecomment-1998867643) in [payu-org/payu](https://github.com/payu-org/payu) -5. 🗣 Commented on [#38](https://github.com/tuhinmallick/timeseries-simulation/pull/38#issuecomment-1998694711) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -6. 🗣 Commented on [#1078](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1078#issuecomment-1998590200) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#23](https://github.com/cdfxscrq/File-Sharing-Bot/pull/23#issuecomment-1998472872) in [cdfxscrq/File-Sharing-Bot](https://github.com/cdfxscrq/File-Sharing-Bot) -8. 🗣 Commented on [#1516](https://github.com/spacetelescope/jwql/pull/1516#issuecomment-1998329178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#947](https://github.com/scilus/scilpy/pull/947#issuecomment-1998059860) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#5](https://github.com/Vl-Tershch/LISA-Demo/pull/5#issuecomment-1997990229) in [Vl-Tershch/LISA-Demo](https://github.com/Vl-Tershch/LISA-Demo) +1. 🗣 Commented on [#1520](https://github.com/spacetelescope/jwql/pull/1520#issuecomment-2000354086) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#2967](https://github.com/astropy/astroquery/pull/2967#issuecomment-2000276733) in [astropy/astroquery](https://github.com/astropy/astroquery) +3. 🗣 Commented on [#4437](https://github.com/pyload/pyload/pull/4437#issuecomment-2000250387) in [pyload/pyload](https://github.com/pyload/pyload) +4. 🗣 Commented on [#4335](https://github.com/uwcirg/truenth-portal/pull/4335#issuecomment-2000028909) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +5. 🗣 Commented on [#427](https://github.com/payu-org/payu/pull/427#issuecomment-1998867643) in [payu-org/payu](https://github.com/payu-org/payu) +6. 🗣 Commented on [#38](https://github.com/tuhinmallick/timeseries-simulation/pull/38#issuecomment-1998694711) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +7. 🗣 Commented on [#1078](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1078#issuecomment-1998590200) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#23](https://github.com/cdfxscrq/File-Sharing-Bot/pull/23#issuecomment-1998472872) in [cdfxscrq/File-Sharing-Bot](https://github.com/cdfxscrq/File-Sharing-Bot) +9. 🗣 Commented on [#1516](https://github.com/spacetelescope/jwql/pull/1516#issuecomment-1998329178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#947](https://github.com/scilus/scilpy/pull/947#issuecomment-1998059860) in [scilus/scilpy](https://github.com/scilus/scilpy) From 1bbabcf8117b33fe0b86274016d5b025b9c1b933 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Mar 2024 21:13:14 +0000 Subject: [PATCH 1666/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b2905b51..8f4f4448 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1520](https://github.com/spacetelescope/jwql/pull/1520#issuecomment-2000354086) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#2967](https://github.com/astropy/astroquery/pull/2967#issuecomment-2000276733) in [astropy/astroquery](https://github.com/astropy/astroquery) -3. 🗣 Commented on [#4437](https://github.com/pyload/pyload/pull/4437#issuecomment-2000250387) in [pyload/pyload](https://github.com/pyload/pyload) -4. 🗣 Commented on [#4335](https://github.com/uwcirg/truenth-portal/pull/4335#issuecomment-2000028909) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -5. 🗣 Commented on [#427](https://github.com/payu-org/payu/pull/427#issuecomment-1998867643) in [payu-org/payu](https://github.com/payu-org/payu) -6. 🗣 Commented on [#38](https://github.com/tuhinmallick/timeseries-simulation/pull/38#issuecomment-1998694711) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -7. 🗣 Commented on [#1078](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1078#issuecomment-1998590200) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#23](https://github.com/cdfxscrq/File-Sharing-Bot/pull/23#issuecomment-1998472872) in [cdfxscrq/File-Sharing-Bot](https://github.com/cdfxscrq/File-Sharing-Bot) -9. 🗣 Commented on [#1516](https://github.com/spacetelescope/jwql/pull/1516#issuecomment-1998329178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#947](https://github.com/scilus/scilpy/pull/947#issuecomment-1998059860) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#1521](https://github.com/spacetelescope/jwql/pull/1521#issuecomment-2000436719) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#1520](https://github.com/spacetelescope/jwql/pull/1520#issuecomment-2000354086) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#2967](https://github.com/astropy/astroquery/pull/2967#issuecomment-2000276733) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#4437](https://github.com/pyload/pyload/pull/4437#issuecomment-2000250387) in [pyload/pyload](https://github.com/pyload/pyload) +5. 🗣 Commented on [#4335](https://github.com/uwcirg/truenth-portal/pull/4335#issuecomment-2000028909) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +6. 🗣 Commented on [#427](https://github.com/payu-org/payu/pull/427#issuecomment-1998867643) in [payu-org/payu](https://github.com/payu-org/payu) +7. 🗣 Commented on [#38](https://github.com/tuhinmallick/timeseries-simulation/pull/38#issuecomment-1998694711) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +8. 🗣 Commented on [#1078](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1078#issuecomment-1998590200) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#23](https://github.com/cdfxscrq/File-Sharing-Bot/pull/23#issuecomment-1998472872) in [cdfxscrq/File-Sharing-Bot](https://github.com/cdfxscrq/File-Sharing-Bot) +10. 🗣 Commented on [#1516](https://github.com/spacetelescope/jwql/pull/1516#issuecomment-1998329178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 75b4bdf41d9c9112e81d288aacd83e88336e0898 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Mar 2024 22:15:38 +0000 Subject: [PATCH 1667/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8f4f4448..80e3123b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1521](https://github.com/spacetelescope/jwql/pull/1521#issuecomment-2000436719) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#1520](https://github.com/spacetelescope/jwql/pull/1520#issuecomment-2000354086) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#2967](https://github.com/astropy/astroquery/pull/2967#issuecomment-2000276733) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#4437](https://github.com/pyload/pyload/pull/4437#issuecomment-2000250387) in [pyload/pyload](https://github.com/pyload/pyload) -5. 🗣 Commented on [#4335](https://github.com/uwcirg/truenth-portal/pull/4335#issuecomment-2000028909) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -6. 🗣 Commented on [#427](https://github.com/payu-org/payu/pull/427#issuecomment-1998867643) in [payu-org/payu](https://github.com/payu-org/payu) -7. 🗣 Commented on [#38](https://github.com/tuhinmallick/timeseries-simulation/pull/38#issuecomment-1998694711) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -8. 🗣 Commented on [#1078](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1078#issuecomment-1998590200) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#23](https://github.com/cdfxscrq/File-Sharing-Bot/pull/23#issuecomment-1998472872) in [cdfxscrq/File-Sharing-Bot](https://github.com/cdfxscrq/File-Sharing-Bot) -10. 🗣 Commented on [#1516](https://github.com/spacetelescope/jwql/pull/1516#issuecomment-1998329178) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#122](https://github.com/aimclub/FEDOT.Web/pull/122#issuecomment-2000536083) in [aimclub/FEDOT.Web](https://github.com/aimclub/FEDOT.Web) +2. 🗣 Commented on [#1521](https://github.com/spacetelescope/jwql/pull/1521#issuecomment-2000436719) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#1520](https://github.com/spacetelescope/jwql/pull/1520#issuecomment-2000354086) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#2967](https://github.com/astropy/astroquery/pull/2967#issuecomment-2000276733) in [astropy/astroquery](https://github.com/astropy/astroquery) +5. 🗣 Commented on [#4437](https://github.com/pyload/pyload/pull/4437#issuecomment-2000250387) in [pyload/pyload](https://github.com/pyload/pyload) +6. 🗣 Commented on [#4335](https://github.com/uwcirg/truenth-portal/pull/4335#issuecomment-2000028909) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +7. 🗣 Commented on [#427](https://github.com/payu-org/payu/pull/427#issuecomment-1998867643) in [payu-org/payu](https://github.com/payu-org/payu) +8. 🗣 Commented on [#38](https://github.com/tuhinmallick/timeseries-simulation/pull/38#issuecomment-1998694711) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +9. 🗣 Commented on [#1078](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1078#issuecomment-1998590200) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#23](https://github.com/cdfxscrq/File-Sharing-Bot/pull/23#issuecomment-1998472872) in [cdfxscrq/File-Sharing-Bot](https://github.com/cdfxscrq/File-Sharing-Bot) From ff5eb21f68281483e83c493446696313ff2a2037 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 07:14:20 +0000 Subject: [PATCH 1668/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 80e3123b..fd2e34c9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#122](https://github.com/aimclub/FEDOT.Web/pull/122#issuecomment-2000536083) in [aimclub/FEDOT.Web](https://github.com/aimclub/FEDOT.Web) -2. 🗣 Commented on [#1521](https://github.com/spacetelescope/jwql/pull/1521#issuecomment-2000436719) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#1520](https://github.com/spacetelescope/jwql/pull/1520#issuecomment-2000354086) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#2967](https://github.com/astropy/astroquery/pull/2967#issuecomment-2000276733) in [astropy/astroquery](https://github.com/astropy/astroquery) -5. 🗣 Commented on [#4437](https://github.com/pyload/pyload/pull/4437#issuecomment-2000250387) in [pyload/pyload](https://github.com/pyload/pyload) -6. 🗣 Commented on [#4335](https://github.com/uwcirg/truenth-portal/pull/4335#issuecomment-2000028909) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -7. 🗣 Commented on [#427](https://github.com/payu-org/payu/pull/427#issuecomment-1998867643) in [payu-org/payu](https://github.com/payu-org/payu) -8. 🗣 Commented on [#38](https://github.com/tuhinmallick/timeseries-simulation/pull/38#issuecomment-1998694711) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -9. 🗣 Commented on [#1078](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1078#issuecomment-1998590200) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#23](https://github.com/cdfxscrq/File-Sharing-Bot/pull/23#issuecomment-1998472872) in [cdfxscrq/File-Sharing-Bot](https://github.com/cdfxscrq/File-Sharing-Bot) +1. 🗣 Commented on [#319](https://github.com/DeMarcoLab/fibsem/pull/319#issuecomment-2001880823) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +2. 🗣 Commented on [#122](https://github.com/aimclub/FEDOT.Web/pull/122#issuecomment-2000536083) in [aimclub/FEDOT.Web](https://github.com/aimclub/FEDOT.Web) +3. 🗣 Commented on [#1521](https://github.com/spacetelescope/jwql/pull/1521#issuecomment-2000436719) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#1520](https://github.com/spacetelescope/jwql/pull/1520#issuecomment-2000354086) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#2967](https://github.com/astropy/astroquery/pull/2967#issuecomment-2000276733) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#4437](https://github.com/pyload/pyload/pull/4437#issuecomment-2000250387) in [pyload/pyload](https://github.com/pyload/pyload) +7. 🗣 Commented on [#4335](https://github.com/uwcirg/truenth-portal/pull/4335#issuecomment-2000028909) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +8. 🗣 Commented on [#427](https://github.com/payu-org/payu/pull/427#issuecomment-1998867643) in [payu-org/payu](https://github.com/payu-org/payu) +9. 🗣 Commented on [#38](https://github.com/tuhinmallick/timeseries-simulation/pull/38#issuecomment-1998694711) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +10. 🗣 Commented on [#1078](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1078#issuecomment-1998590200) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 3d95b9f173fc670639727e25f847ebf448da2972 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 12:29:11 +0000 Subject: [PATCH 1669/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fd2e34c9..6effb254 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#319](https://github.com/DeMarcoLab/fibsem/pull/319#issuecomment-2001880823) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -2. 🗣 Commented on [#122](https://github.com/aimclub/FEDOT.Web/pull/122#issuecomment-2000536083) in [aimclub/FEDOT.Web](https://github.com/aimclub/FEDOT.Web) -3. 🗣 Commented on [#1521](https://github.com/spacetelescope/jwql/pull/1521#issuecomment-2000436719) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#1520](https://github.com/spacetelescope/jwql/pull/1520#issuecomment-2000354086) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#2967](https://github.com/astropy/astroquery/pull/2967#issuecomment-2000276733) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#4437](https://github.com/pyload/pyload/pull/4437#issuecomment-2000250387) in [pyload/pyload](https://github.com/pyload/pyload) -7. 🗣 Commented on [#4335](https://github.com/uwcirg/truenth-portal/pull/4335#issuecomment-2000028909) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -8. 🗣 Commented on [#427](https://github.com/payu-org/payu/pull/427#issuecomment-1998867643) in [payu-org/payu](https://github.com/payu-org/payu) -9. 🗣 Commented on [#38](https://github.com/tuhinmallick/timeseries-simulation/pull/38#issuecomment-1998694711) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -10. 🗣 Commented on [#1078](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1078#issuecomment-1998590200) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#4438](https://github.com/pyload/pyload/pull/4438#issuecomment-2001959183) in [pyload/pyload](https://github.com/pyload/pyload) +2. 🗣 Commented on [#319](https://github.com/DeMarcoLab/fibsem/pull/319#issuecomment-2001880823) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +3. 🗣 Commented on [#122](https://github.com/aimclub/FEDOT.Web/pull/122#issuecomment-2000536083) in [aimclub/FEDOT.Web](https://github.com/aimclub/FEDOT.Web) +4. 🗣 Commented on [#1521](https://github.com/spacetelescope/jwql/pull/1521#issuecomment-2000436719) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#1520](https://github.com/spacetelescope/jwql/pull/1520#issuecomment-2000354086) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#2967](https://github.com/astropy/astroquery/pull/2967#issuecomment-2000276733) in [astropy/astroquery](https://github.com/astropy/astroquery) +7. 🗣 Commented on [#4437](https://github.com/pyload/pyload/pull/4437#issuecomment-2000250387) in [pyload/pyload](https://github.com/pyload/pyload) +8. 🗣 Commented on [#4335](https://github.com/uwcirg/truenth-portal/pull/4335#issuecomment-2000028909) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +9. 🗣 Commented on [#427](https://github.com/payu-org/payu/pull/427#issuecomment-1998867643) in [payu-org/payu](https://github.com/payu-org/payu) +10. 🗣 Commented on [#38](https://github.com/tuhinmallick/timeseries-simulation/pull/38#issuecomment-1998694711) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) From 13a99968064e9d668a54ca4586593a68e9453ce0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 17:13:38 +0000 Subject: [PATCH 1670/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6effb254..6d27a3bb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4438](https://github.com/pyload/pyload/pull/4438#issuecomment-2001959183) in [pyload/pyload](https://github.com/pyload/pyload) -2. 🗣 Commented on [#319](https://github.com/DeMarcoLab/fibsem/pull/319#issuecomment-2001880823) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -3. 🗣 Commented on [#122](https://github.com/aimclub/FEDOT.Web/pull/122#issuecomment-2000536083) in [aimclub/FEDOT.Web](https://github.com/aimclub/FEDOT.Web) -4. 🗣 Commented on [#1521](https://github.com/spacetelescope/jwql/pull/1521#issuecomment-2000436719) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#1520](https://github.com/spacetelescope/jwql/pull/1520#issuecomment-2000354086) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#2967](https://github.com/astropy/astroquery/pull/2967#issuecomment-2000276733) in [astropy/astroquery](https://github.com/astropy/astroquery) -7. 🗣 Commented on [#4437](https://github.com/pyload/pyload/pull/4437#issuecomment-2000250387) in [pyload/pyload](https://github.com/pyload/pyload) -8. 🗣 Commented on [#4335](https://github.com/uwcirg/truenth-portal/pull/4335#issuecomment-2000028909) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -9. 🗣 Commented on [#427](https://github.com/payu-org/payu/pull/427#issuecomment-1998867643) in [payu-org/payu](https://github.com/payu-org/payu) -10. 🗣 Commented on [#38](https://github.com/tuhinmallick/timeseries-simulation/pull/38#issuecomment-1998694711) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +1. 🗣 Commented on [#1](https://github.com/phalanx-hk/kaggle_pipeline/pull/1#issuecomment-2002048559) in [phalanx-hk/kaggle_pipeline](https://github.com/phalanx-hk/kaggle_pipeline) +2. 🗣 Commented on [#4438](https://github.com/pyload/pyload/pull/4438#issuecomment-2001959183) in [pyload/pyload](https://github.com/pyload/pyload) +3. 🗣 Commented on [#319](https://github.com/DeMarcoLab/fibsem/pull/319#issuecomment-2001880823) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +4. 🗣 Commented on [#122](https://github.com/aimclub/FEDOT.Web/pull/122#issuecomment-2000536083) in [aimclub/FEDOT.Web](https://github.com/aimclub/FEDOT.Web) +5. 🗣 Commented on [#1521](https://github.com/spacetelescope/jwql/pull/1521#issuecomment-2000436719) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#1520](https://github.com/spacetelescope/jwql/pull/1520#issuecomment-2000354086) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#2967](https://github.com/astropy/astroquery/pull/2967#issuecomment-2000276733) in [astropy/astroquery](https://github.com/astropy/astroquery) +8. 🗣 Commented on [#4437](https://github.com/pyload/pyload/pull/4437#issuecomment-2000250387) in [pyload/pyload](https://github.com/pyload/pyload) +9. 🗣 Commented on [#4335](https://github.com/uwcirg/truenth-portal/pull/4335#issuecomment-2000028909) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +10. 🗣 Commented on [#427](https://github.com/payu-org/payu/pull/427#issuecomment-1998867643) in [payu-org/payu](https://github.com/payu-org/payu) From 6d2cc87925f0fc6286a4e9b4e7187ec7d6fe831b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 19:37:06 +0000 Subject: [PATCH 1671/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6d27a3bb..f3649050 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/phalanx-hk/kaggle_pipeline/pull/1#issuecomment-2002048559) in [phalanx-hk/kaggle_pipeline](https://github.com/phalanx-hk/kaggle_pipeline) -2. 🗣 Commented on [#4438](https://github.com/pyload/pyload/pull/4438#issuecomment-2001959183) in [pyload/pyload](https://github.com/pyload/pyload) -3. 🗣 Commented on [#319](https://github.com/DeMarcoLab/fibsem/pull/319#issuecomment-2001880823) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -4. 🗣 Commented on [#122](https://github.com/aimclub/FEDOT.Web/pull/122#issuecomment-2000536083) in [aimclub/FEDOT.Web](https://github.com/aimclub/FEDOT.Web) -5. 🗣 Commented on [#1521](https://github.com/spacetelescope/jwql/pull/1521#issuecomment-2000436719) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#1520](https://github.com/spacetelescope/jwql/pull/1520#issuecomment-2000354086) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#2967](https://github.com/astropy/astroquery/pull/2967#issuecomment-2000276733) in [astropy/astroquery](https://github.com/astropy/astroquery) -8. 🗣 Commented on [#4437](https://github.com/pyload/pyload/pull/4437#issuecomment-2000250387) in [pyload/pyload](https://github.com/pyload/pyload) -9. 🗣 Commented on [#4335](https://github.com/uwcirg/truenth-portal/pull/4335#issuecomment-2000028909) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -10. 🗣 Commented on [#427](https://github.com/payu-org/payu/pull/427#issuecomment-1998867643) in [payu-org/payu](https://github.com/payu-org/payu) +1. 🗣 Commented on [#5](https://github.com/Cybsloth/de_zoomcamp_2024/pull/5#issuecomment-2002097436) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +2. 🗣 Commented on [#1](https://github.com/phalanx-hk/kaggle_pipeline/pull/1#issuecomment-2002048559) in [phalanx-hk/kaggle_pipeline](https://github.com/phalanx-hk/kaggle_pipeline) +3. 🗣 Commented on [#4438](https://github.com/pyload/pyload/pull/4438#issuecomment-2001959183) in [pyload/pyload](https://github.com/pyload/pyload) +4. 🗣 Commented on [#319](https://github.com/DeMarcoLab/fibsem/pull/319#issuecomment-2001880823) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +5. 🗣 Commented on [#122](https://github.com/aimclub/FEDOT.Web/pull/122#issuecomment-2000536083) in [aimclub/FEDOT.Web](https://github.com/aimclub/FEDOT.Web) +6. 🗣 Commented on [#1521](https://github.com/spacetelescope/jwql/pull/1521#issuecomment-2000436719) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#1520](https://github.com/spacetelescope/jwql/pull/1520#issuecomment-2000354086) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#2967](https://github.com/astropy/astroquery/pull/2967#issuecomment-2000276733) in [astropy/astroquery](https://github.com/astropy/astroquery) +9. 🗣 Commented on [#4437](https://github.com/pyload/pyload/pull/4437#issuecomment-2000250387) in [pyload/pyload](https://github.com/pyload/pyload) +10. 🗣 Commented on [#4335](https://github.com/uwcirg/truenth-portal/pull/4335#issuecomment-2000028909) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) From 285d46d88be26a18d63d553922557818177feeae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 23:16:48 +0000 Subject: [PATCH 1672/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f3649050..79f4710c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5](https://github.com/Cybsloth/de_zoomcamp_2024/pull/5#issuecomment-2002097436) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -2. 🗣 Commented on [#1](https://github.com/phalanx-hk/kaggle_pipeline/pull/1#issuecomment-2002048559) in [phalanx-hk/kaggle_pipeline](https://github.com/phalanx-hk/kaggle_pipeline) -3. 🗣 Commented on [#4438](https://github.com/pyload/pyload/pull/4438#issuecomment-2001959183) in [pyload/pyload](https://github.com/pyload/pyload) -4. 🗣 Commented on [#319](https://github.com/DeMarcoLab/fibsem/pull/319#issuecomment-2001880823) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -5. 🗣 Commented on [#122](https://github.com/aimclub/FEDOT.Web/pull/122#issuecomment-2000536083) in [aimclub/FEDOT.Web](https://github.com/aimclub/FEDOT.Web) -6. 🗣 Commented on [#1521](https://github.com/spacetelescope/jwql/pull/1521#issuecomment-2000436719) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#1520](https://github.com/spacetelescope/jwql/pull/1520#issuecomment-2000354086) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#2967](https://github.com/astropy/astroquery/pull/2967#issuecomment-2000276733) in [astropy/astroquery](https://github.com/astropy/astroquery) -9. 🗣 Commented on [#4437](https://github.com/pyload/pyload/pull/4437#issuecomment-2000250387) in [pyload/pyload](https://github.com/pyload/pyload) -10. 🗣 Commented on [#4335](https://github.com/uwcirg/truenth-portal/pull/4335#issuecomment-2000028909) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +1. 🗣 Commented on [#71](https://github.com/hasl-sensor/integration/pull/71#issuecomment-2002176094) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +2. 🗣 Commented on [#5](https://github.com/Cybsloth/de_zoomcamp_2024/pull/5#issuecomment-2002097436) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +3. 🗣 Commented on [#1](https://github.com/phalanx-hk/kaggle_pipeline/pull/1#issuecomment-2002048559) in [phalanx-hk/kaggle_pipeline](https://github.com/phalanx-hk/kaggle_pipeline) +4. 🗣 Commented on [#4438](https://github.com/pyload/pyload/pull/4438#issuecomment-2001959183) in [pyload/pyload](https://github.com/pyload/pyload) +5. 🗣 Commented on [#319](https://github.com/DeMarcoLab/fibsem/pull/319#issuecomment-2001880823) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +6. 🗣 Commented on [#122](https://github.com/aimclub/FEDOT.Web/pull/122#issuecomment-2000536083) in [aimclub/FEDOT.Web](https://github.com/aimclub/FEDOT.Web) +7. 🗣 Commented on [#1521](https://github.com/spacetelescope/jwql/pull/1521#issuecomment-2000436719) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#1520](https://github.com/spacetelescope/jwql/pull/1520#issuecomment-2000354086) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#2967](https://github.com/astropy/astroquery/pull/2967#issuecomment-2000276733) in [astropy/astroquery](https://github.com/astropy/astroquery) +10. 🗣 Commented on [#4437](https://github.com/pyload/pyload/pull/4437#issuecomment-2000250387) in [pyload/pyload](https://github.com/pyload/pyload) From c0cc2d4798c473d90681778e1579415d95c9e2a2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 Mar 2024 01:13:05 +0000 Subject: [PATCH 1673/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 79f4710c..f3afa246 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#71](https://github.com/hasl-sensor/integration/pull/71#issuecomment-2002176094) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -2. 🗣 Commented on [#5](https://github.com/Cybsloth/de_zoomcamp_2024/pull/5#issuecomment-2002097436) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -3. 🗣 Commented on [#1](https://github.com/phalanx-hk/kaggle_pipeline/pull/1#issuecomment-2002048559) in [phalanx-hk/kaggle_pipeline](https://github.com/phalanx-hk/kaggle_pipeline) -4. 🗣 Commented on [#4438](https://github.com/pyload/pyload/pull/4438#issuecomment-2001959183) in [pyload/pyload](https://github.com/pyload/pyload) -5. 🗣 Commented on [#319](https://github.com/DeMarcoLab/fibsem/pull/319#issuecomment-2001880823) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -6. 🗣 Commented on [#122](https://github.com/aimclub/FEDOT.Web/pull/122#issuecomment-2000536083) in [aimclub/FEDOT.Web](https://github.com/aimclub/FEDOT.Web) -7. 🗣 Commented on [#1521](https://github.com/spacetelescope/jwql/pull/1521#issuecomment-2000436719) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#1520](https://github.com/spacetelescope/jwql/pull/1520#issuecomment-2000354086) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#2967](https://github.com/astropy/astroquery/pull/2967#issuecomment-2000276733) in [astropy/astroquery](https://github.com/astropy/astroquery) -10. 🗣 Commented on [#4437](https://github.com/pyload/pyload/pull/4437#issuecomment-2000250387) in [pyload/pyload](https://github.com/pyload/pyload) +1. 🗣 Commented on [#28](https://github.com/tuhinmallick/timeseries-simulation/pull/28#issuecomment-2002216429) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +2. 🗣 Commented on [#3128](https://github.com/dipy/dipy/pull/3128#issuecomment-2002204321) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#71](https://github.com/hasl-sensor/integration/pull/71#issuecomment-2002176094) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +4. 🗣 Commented on [#5](https://github.com/Cybsloth/de_zoomcamp_2024/pull/5#issuecomment-2002097436) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +5. 🗣 Commented on [#1](https://github.com/phalanx-hk/kaggle_pipeline/pull/1#issuecomment-2002048559) in [phalanx-hk/kaggle_pipeline](https://github.com/phalanx-hk/kaggle_pipeline) +6. 🗣 Commented on [#4438](https://github.com/pyload/pyload/pull/4438#issuecomment-2001959183) in [pyload/pyload](https://github.com/pyload/pyload) +7. 🗣 Commented on [#319](https://github.com/DeMarcoLab/fibsem/pull/319#issuecomment-2001880823) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +8. 🗣 Commented on [#122](https://github.com/aimclub/FEDOT.Web/pull/122#issuecomment-2000536083) in [aimclub/FEDOT.Web](https://github.com/aimclub/FEDOT.Web) +9. 🗣 Commented on [#1521](https://github.com/spacetelescope/jwql/pull/1521#issuecomment-2000436719) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#1520](https://github.com/spacetelescope/jwql/pull/1520#issuecomment-2000354086) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 6c871f8283d19384eb8ed6e8af0dab341510163e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 Mar 2024 06:37:16 +0000 Subject: [PATCH 1674/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f3afa246..dbbb056d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#28](https://github.com/tuhinmallick/timeseries-simulation/pull/28#issuecomment-2002216429) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -2. 🗣 Commented on [#3128](https://github.com/dipy/dipy/pull/3128#issuecomment-2002204321) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#71](https://github.com/hasl-sensor/integration/pull/71#issuecomment-2002176094) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -4. 🗣 Commented on [#5](https://github.com/Cybsloth/de_zoomcamp_2024/pull/5#issuecomment-2002097436) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -5. 🗣 Commented on [#1](https://github.com/phalanx-hk/kaggle_pipeline/pull/1#issuecomment-2002048559) in [phalanx-hk/kaggle_pipeline](https://github.com/phalanx-hk/kaggle_pipeline) -6. 🗣 Commented on [#4438](https://github.com/pyload/pyload/pull/4438#issuecomment-2001959183) in [pyload/pyload](https://github.com/pyload/pyload) -7. 🗣 Commented on [#319](https://github.com/DeMarcoLab/fibsem/pull/319#issuecomment-2001880823) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -8. 🗣 Commented on [#122](https://github.com/aimclub/FEDOT.Web/pull/122#issuecomment-2000536083) in [aimclub/FEDOT.Web](https://github.com/aimclub/FEDOT.Web) -9. 🗣 Commented on [#1521](https://github.com/spacetelescope/jwql/pull/1521#issuecomment-2000436719) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#1520](https://github.com/spacetelescope/jwql/pull/1520#issuecomment-2000354086) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#21903](https://github.com/spyder-ide/spyder/pull/21903#issuecomment-2002329544) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#28](https://github.com/tuhinmallick/timeseries-simulation/pull/28#issuecomment-2002216429) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +3. 🗣 Commented on [#3128](https://github.com/dipy/dipy/pull/3128#issuecomment-2002204321) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#71](https://github.com/hasl-sensor/integration/pull/71#issuecomment-2002176094) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +5. 🗣 Commented on [#5](https://github.com/Cybsloth/de_zoomcamp_2024/pull/5#issuecomment-2002097436) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +6. 🗣 Commented on [#1](https://github.com/phalanx-hk/kaggle_pipeline/pull/1#issuecomment-2002048559) in [phalanx-hk/kaggle_pipeline](https://github.com/phalanx-hk/kaggle_pipeline) +7. 🗣 Commented on [#4438](https://github.com/pyload/pyload/pull/4438#issuecomment-2001959183) in [pyload/pyload](https://github.com/pyload/pyload) +8. 🗣 Commented on [#319](https://github.com/DeMarcoLab/fibsem/pull/319#issuecomment-2001880823) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +9. 🗣 Commented on [#122](https://github.com/aimclub/FEDOT.Web/pull/122#issuecomment-2000536083) in [aimclub/FEDOT.Web](https://github.com/aimclub/FEDOT.Web) +10. 🗣 Commented on [#1521](https://github.com/spacetelescope/jwql/pull/1521#issuecomment-2000436719) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 0cd71cb525be29c3c2f86cb8220f622b04f5ffc1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 Mar 2024 18:17:50 +0000 Subject: [PATCH 1675/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dbbb056d..482c9862 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21903](https://github.com/spyder-ide/spyder/pull/21903#issuecomment-2002329544) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#28](https://github.com/tuhinmallick/timeseries-simulation/pull/28#issuecomment-2002216429) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -3. 🗣 Commented on [#3128](https://github.com/dipy/dipy/pull/3128#issuecomment-2002204321) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#71](https://github.com/hasl-sensor/integration/pull/71#issuecomment-2002176094) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -5. 🗣 Commented on [#5](https://github.com/Cybsloth/de_zoomcamp_2024/pull/5#issuecomment-2002097436) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -6. 🗣 Commented on [#1](https://github.com/phalanx-hk/kaggle_pipeline/pull/1#issuecomment-2002048559) in [phalanx-hk/kaggle_pipeline](https://github.com/phalanx-hk/kaggle_pipeline) -7. 🗣 Commented on [#4438](https://github.com/pyload/pyload/pull/4438#issuecomment-2001959183) in [pyload/pyload](https://github.com/pyload/pyload) -8. 🗣 Commented on [#319](https://github.com/DeMarcoLab/fibsem/pull/319#issuecomment-2001880823) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -9. 🗣 Commented on [#122](https://github.com/aimclub/FEDOT.Web/pull/122#issuecomment-2000536083) in [aimclub/FEDOT.Web](https://github.com/aimclub/FEDOT.Web) -10. 🗣 Commented on [#1521](https://github.com/spacetelescope/jwql/pull/1521#issuecomment-2000436719) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#1](https://github.com/arfc/msr-spatial-dep/pull/1#issuecomment-2002551791) in [arfc/msr-spatial-dep](https://github.com/arfc/msr-spatial-dep) +2. 🗣 Commented on [#21903](https://github.com/spyder-ide/spyder/pull/21903#issuecomment-2002329544) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#28](https://github.com/tuhinmallick/timeseries-simulation/pull/28#issuecomment-2002216429) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +4. 🗣 Commented on [#3128](https://github.com/dipy/dipy/pull/3128#issuecomment-2002204321) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#71](https://github.com/hasl-sensor/integration/pull/71#issuecomment-2002176094) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +6. 🗣 Commented on [#5](https://github.com/Cybsloth/de_zoomcamp_2024/pull/5#issuecomment-2002097436) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +7. 🗣 Commented on [#1](https://github.com/phalanx-hk/kaggle_pipeline/pull/1#issuecomment-2002048559) in [phalanx-hk/kaggle_pipeline](https://github.com/phalanx-hk/kaggle_pipeline) +8. 🗣 Commented on [#4438](https://github.com/pyload/pyload/pull/4438#issuecomment-2001959183) in [pyload/pyload](https://github.com/pyload/pyload) +9. 🗣 Commented on [#319](https://github.com/DeMarcoLab/fibsem/pull/319#issuecomment-2001880823) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +10. 🗣 Commented on [#122](https://github.com/aimclub/FEDOT.Web/pull/122#issuecomment-2000536083) in [aimclub/FEDOT.Web](https://github.com/aimclub/FEDOT.Web) From fe2fdaac0cc3be9a4b3da3bc89a4170b8aa62468 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 Mar 2024 20:37:24 +0000 Subject: [PATCH 1676/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 482c9862..52c10598 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/arfc/msr-spatial-dep/pull/1#issuecomment-2002551791) in [arfc/msr-spatial-dep](https://github.com/arfc/msr-spatial-dep) -2. 🗣 Commented on [#21903](https://github.com/spyder-ide/spyder/pull/21903#issuecomment-2002329544) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#28](https://github.com/tuhinmallick/timeseries-simulation/pull/28#issuecomment-2002216429) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -4. 🗣 Commented on [#3128](https://github.com/dipy/dipy/pull/3128#issuecomment-2002204321) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#71](https://github.com/hasl-sensor/integration/pull/71#issuecomment-2002176094) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -6. 🗣 Commented on [#5](https://github.com/Cybsloth/de_zoomcamp_2024/pull/5#issuecomment-2002097436) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -7. 🗣 Commented on [#1](https://github.com/phalanx-hk/kaggle_pipeline/pull/1#issuecomment-2002048559) in [phalanx-hk/kaggle_pipeline](https://github.com/phalanx-hk/kaggle_pipeline) -8. 🗣 Commented on [#4438](https://github.com/pyload/pyload/pull/4438#issuecomment-2001959183) in [pyload/pyload](https://github.com/pyload/pyload) -9. 🗣 Commented on [#319](https://github.com/DeMarcoLab/fibsem/pull/319#issuecomment-2001880823) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -10. 🗣 Commented on [#122](https://github.com/aimclub/FEDOT.Web/pull/122#issuecomment-2000536083) in [aimclub/FEDOT.Web](https://github.com/aimclub/FEDOT.Web) +1. 🗣 Commented on [#1101](https://github.com/lmcinnes/umap/pull/1101#issuecomment-2002605006) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +2. 🗣 Commented on [#1](https://github.com/arfc/msr-spatial-dep/pull/1#issuecomment-2002551791) in [arfc/msr-spatial-dep](https://github.com/arfc/msr-spatial-dep) +3. 🗣 Commented on [#21903](https://github.com/spyder-ide/spyder/pull/21903#issuecomment-2002329544) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#28](https://github.com/tuhinmallick/timeseries-simulation/pull/28#issuecomment-2002216429) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +5. 🗣 Commented on [#3128](https://github.com/dipy/dipy/pull/3128#issuecomment-2002204321) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#71](https://github.com/hasl-sensor/integration/pull/71#issuecomment-2002176094) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +7. 🗣 Commented on [#5](https://github.com/Cybsloth/de_zoomcamp_2024/pull/5#issuecomment-2002097436) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +8. 🗣 Commented on [#1](https://github.com/phalanx-hk/kaggle_pipeline/pull/1#issuecomment-2002048559) in [phalanx-hk/kaggle_pipeline](https://github.com/phalanx-hk/kaggle_pipeline) +9. 🗣 Commented on [#4438](https://github.com/pyload/pyload/pull/4438#issuecomment-2001959183) in [pyload/pyload](https://github.com/pyload/pyload) +10. 🗣 Commented on [#319](https://github.com/DeMarcoLab/fibsem/pull/319#issuecomment-2001880823) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) From a6cd73657cc88749fad99196f9507dc4b3cdceac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 02:37:22 +0000 Subject: [PATCH 1677/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 52c10598..d6b0af5d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1101](https://github.com/lmcinnes/umap/pull/1101#issuecomment-2002605006) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -2. 🗣 Commented on [#1](https://github.com/arfc/msr-spatial-dep/pull/1#issuecomment-2002551791) in [arfc/msr-spatial-dep](https://github.com/arfc/msr-spatial-dep) -3. 🗣 Commented on [#21903](https://github.com/spyder-ide/spyder/pull/21903#issuecomment-2002329544) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#28](https://github.com/tuhinmallick/timeseries-simulation/pull/28#issuecomment-2002216429) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -5. 🗣 Commented on [#3128](https://github.com/dipy/dipy/pull/3128#issuecomment-2002204321) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#71](https://github.com/hasl-sensor/integration/pull/71#issuecomment-2002176094) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -7. 🗣 Commented on [#5](https://github.com/Cybsloth/de_zoomcamp_2024/pull/5#issuecomment-2002097436) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -8. 🗣 Commented on [#1](https://github.com/phalanx-hk/kaggle_pipeline/pull/1#issuecomment-2002048559) in [phalanx-hk/kaggle_pipeline](https://github.com/phalanx-hk/kaggle_pipeline) -9. 🗣 Commented on [#4438](https://github.com/pyload/pyload/pull/4438#issuecomment-2001959183) in [pyload/pyload](https://github.com/pyload/pyload) -10. 🗣 Commented on [#319](https://github.com/DeMarcoLab/fibsem/pull/319#issuecomment-2001880823) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +1. 🗣 Commented on [#13](https://github.com/sarnold/ymltoxml/pull/13#issuecomment-2002769012) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +2. 🗣 Commented on [#75](https://github.com/rasbt/LLMs-from-scratch/pull/75#issuecomment-2002749042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +3. 🗣 Commented on [#1101](https://github.com/lmcinnes/umap/pull/1101#issuecomment-2002605006) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +4. 🗣 Commented on [#1](https://github.com/arfc/msr-spatial-dep/pull/1#issuecomment-2002551791) in [arfc/msr-spatial-dep](https://github.com/arfc/msr-spatial-dep) +5. 🗣 Commented on [#21903](https://github.com/spyder-ide/spyder/pull/21903#issuecomment-2002329544) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#28](https://github.com/tuhinmallick/timeseries-simulation/pull/28#issuecomment-2002216429) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +7. 🗣 Commented on [#3128](https://github.com/dipy/dipy/pull/3128#issuecomment-2002204321) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#71](https://github.com/hasl-sensor/integration/pull/71#issuecomment-2002176094) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) +9. 🗣 Commented on [#5](https://github.com/Cybsloth/de_zoomcamp_2024/pull/5#issuecomment-2002097436) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) +10. 🗣 Commented on [#1](https://github.com/phalanx-hk/kaggle_pipeline/pull/1#issuecomment-2002048559) in [phalanx-hk/kaggle_pipeline](https://github.com/phalanx-hk/kaggle_pipeline) From cb547d17bccfd3e564d12909e7d391f5fb6d9935 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 03:17:49 +0000 Subject: [PATCH 1678/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d6b0af5d..c1e0e9de 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#13](https://github.com/sarnold/ymltoxml/pull/13#issuecomment-2002769012) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -2. 🗣 Commented on [#75](https://github.com/rasbt/LLMs-from-scratch/pull/75#issuecomment-2002749042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -3. 🗣 Commented on [#1101](https://github.com/lmcinnes/umap/pull/1101#issuecomment-2002605006) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -4. 🗣 Commented on [#1](https://github.com/arfc/msr-spatial-dep/pull/1#issuecomment-2002551791) in [arfc/msr-spatial-dep](https://github.com/arfc/msr-spatial-dep) -5. 🗣 Commented on [#21903](https://github.com/spyder-ide/spyder/pull/21903#issuecomment-2002329544) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#28](https://github.com/tuhinmallick/timeseries-simulation/pull/28#issuecomment-2002216429) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -7. 🗣 Commented on [#3128](https://github.com/dipy/dipy/pull/3128#issuecomment-2002204321) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#71](https://github.com/hasl-sensor/integration/pull/71#issuecomment-2002176094) in [hasl-sensor/integration](https://github.com/hasl-sensor/integration) -9. 🗣 Commented on [#5](https://github.com/Cybsloth/de_zoomcamp_2024/pull/5#issuecomment-2002097436) in [Cybsloth/de_zoomcamp_2024](https://github.com/Cybsloth/de_zoomcamp_2024) -10. 🗣 Commented on [#1](https://github.com/phalanx-hk/kaggle_pipeline/pull/1#issuecomment-2002048559) in [phalanx-hk/kaggle_pipeline](https://github.com/phalanx-hk/kaggle_pipeline) +1. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/PDFs_chat/pull/2#issuecomment-2002819339) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +2. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/PDFs_chat/pull/1#issuecomment-2002788281) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +3. 🗣 Commented on [#2815](https://github.com/metabrainz/listenbrainz-server/pull/2815#issuecomment-2002779664) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#13](https://github.com/sarnold/ymltoxml/pull/13#issuecomment-2002769012) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +5. 🗣 Commented on [#75](https://github.com/rasbt/LLMs-from-scratch/pull/75#issuecomment-2002749042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +6. 🗣 Commented on [#1101](https://github.com/lmcinnes/umap/pull/1101#issuecomment-2002605006) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +7. 🗣 Commented on [#1](https://github.com/arfc/msr-spatial-dep/pull/1#issuecomment-2002551791) in [arfc/msr-spatial-dep](https://github.com/arfc/msr-spatial-dep) +8. 🗣 Commented on [#21903](https://github.com/spyder-ide/spyder/pull/21903#issuecomment-2002329544) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#28](https://github.com/tuhinmallick/timeseries-simulation/pull/28#issuecomment-2002216429) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +10. 🗣 Commented on [#3128](https://github.com/dipy/dipy/pull/3128#issuecomment-2002204321) in [dipy/dipy](https://github.com/dipy/dipy) From bb2fa85f96ec85b2ef46b5c76df423a32aee4745 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 14:37:12 +0000 Subject: [PATCH 1679/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c1e0e9de..9faa8186 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/PDFs_chat/pull/2#issuecomment-2002819339) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -2. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/PDFs_chat/pull/1#issuecomment-2002788281) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -3. 🗣 Commented on [#2815](https://github.com/metabrainz/listenbrainz-server/pull/2815#issuecomment-2002779664) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#13](https://github.com/sarnold/ymltoxml/pull/13#issuecomment-2002769012) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -5. 🗣 Commented on [#75](https://github.com/rasbt/LLMs-from-scratch/pull/75#issuecomment-2002749042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -6. 🗣 Commented on [#1101](https://github.com/lmcinnes/umap/pull/1101#issuecomment-2002605006) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -7. 🗣 Commented on [#1](https://github.com/arfc/msr-spatial-dep/pull/1#issuecomment-2002551791) in [arfc/msr-spatial-dep](https://github.com/arfc/msr-spatial-dep) -8. 🗣 Commented on [#21903](https://github.com/spyder-ide/spyder/pull/21903#issuecomment-2002329544) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#28](https://github.com/tuhinmallick/timeseries-simulation/pull/28#issuecomment-2002216429) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) -10. 🗣 Commented on [#3128](https://github.com/dipy/dipy/pull/3128#issuecomment-2002204321) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#3132](https://github.com/dipy/dipy/pull/3132#issuecomment-2004087486) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/PDFs_chat/pull/2#issuecomment-2002819339) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +3. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/PDFs_chat/pull/1#issuecomment-2002788281) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +4. 🗣 Commented on [#2815](https://github.com/metabrainz/listenbrainz-server/pull/2815#issuecomment-2002779664) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#13](https://github.com/sarnold/ymltoxml/pull/13#issuecomment-2002769012) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +6. 🗣 Commented on [#75](https://github.com/rasbt/LLMs-from-scratch/pull/75#issuecomment-2002749042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +7. 🗣 Commented on [#1101](https://github.com/lmcinnes/umap/pull/1101#issuecomment-2002605006) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +8. 🗣 Commented on [#1](https://github.com/arfc/msr-spatial-dep/pull/1#issuecomment-2002551791) in [arfc/msr-spatial-dep](https://github.com/arfc/msr-spatial-dep) +9. 🗣 Commented on [#21903](https://github.com/spyder-ide/spyder/pull/21903#issuecomment-2002329544) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#28](https://github.com/tuhinmallick/timeseries-simulation/pull/28#issuecomment-2002216429) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) From aacd1b9a358a8d0d9c19fbb2950c82907cefb2bf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 16:20:40 +0000 Subject: [PATCH 1680/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9faa8186..c9594a89 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3132](https://github.com/dipy/dipy/pull/3132#issuecomment-2004087486) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/PDFs_chat/pull/2#issuecomment-2002819339) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -3. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/PDFs_chat/pull/1#issuecomment-2002788281) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -4. 🗣 Commented on [#2815](https://github.com/metabrainz/listenbrainz-server/pull/2815#issuecomment-2002779664) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#13](https://github.com/sarnold/ymltoxml/pull/13#issuecomment-2002769012) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -6. 🗣 Commented on [#75](https://github.com/rasbt/LLMs-from-scratch/pull/75#issuecomment-2002749042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -7. 🗣 Commented on [#1101](https://github.com/lmcinnes/umap/pull/1101#issuecomment-2002605006) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -8. 🗣 Commented on [#1](https://github.com/arfc/msr-spatial-dep/pull/1#issuecomment-2002551791) in [arfc/msr-spatial-dep](https://github.com/arfc/msr-spatial-dep) -9. 🗣 Commented on [#21903](https://github.com/spyder-ide/spyder/pull/21903#issuecomment-2002329544) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#28](https://github.com/tuhinmallick/timeseries-simulation/pull/28#issuecomment-2002216429) in [tuhinmallick/timeseries-simulation](https://github.com/tuhinmallick/timeseries-simulation) +1. 🗣 Commented on [#1522](https://github.com/spacetelescope/jwql/pull/1522#issuecomment-2004248738) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#963](https://github.com/avaframe/AvaFrame/pull/963#issuecomment-2004239741) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#962](https://github.com/avaframe/AvaFrame/pull/962#issuecomment-2004237007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#3132](https://github.com/dipy/dipy/pull/3132#issuecomment-2004087486) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/PDFs_chat/pull/2#issuecomment-2002819339) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +6. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/PDFs_chat/pull/1#issuecomment-2002788281) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +7. 🗣 Commented on [#2815](https://github.com/metabrainz/listenbrainz-server/pull/2815#issuecomment-2002779664) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#13](https://github.com/sarnold/ymltoxml/pull/13#issuecomment-2002769012) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +9. 🗣 Commented on [#75](https://github.com/rasbt/LLMs-from-scratch/pull/75#issuecomment-2002749042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +10. 🗣 Commented on [#1101](https://github.com/lmcinnes/umap/pull/1101#issuecomment-2002605006) in [lmcinnes/umap](https://github.com/lmcinnes/umap) From 3958fd13a1040e10a0845be92293122656dc84db Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 16:39:52 +0000 Subject: [PATCH 1681/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c9594a89..e0e66164 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1522](https://github.com/spacetelescope/jwql/pull/1522#issuecomment-2004248738) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#963](https://github.com/avaframe/AvaFrame/pull/963#issuecomment-2004239741) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#962](https://github.com/avaframe/AvaFrame/pull/962#issuecomment-2004237007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#3132](https://github.com/dipy/dipy/pull/3132#issuecomment-2004087486) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/PDFs_chat/pull/2#issuecomment-2002819339) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -6. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/PDFs_chat/pull/1#issuecomment-2002788281) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -7. 🗣 Commented on [#2815](https://github.com/metabrainz/listenbrainz-server/pull/2815#issuecomment-2002779664) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#13](https://github.com/sarnold/ymltoxml/pull/13#issuecomment-2002769012) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -9. 🗣 Commented on [#75](https://github.com/rasbt/LLMs-from-scratch/pull/75#issuecomment-2002749042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) -10. 🗣 Commented on [#1101](https://github.com/lmcinnes/umap/pull/1101#issuecomment-2002605006) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +1. 🗣 Commented on [#178](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/178#issuecomment-2004394234) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +2. 🗣 Commented on [#1522](https://github.com/spacetelescope/jwql/pull/1522#issuecomment-2004248738) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#963](https://github.com/avaframe/AvaFrame/pull/963#issuecomment-2004239741) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#962](https://github.com/avaframe/AvaFrame/pull/962#issuecomment-2004237007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#3132](https://github.com/dipy/dipy/pull/3132#issuecomment-2004087486) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/PDFs_chat/pull/2#issuecomment-2002819339) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +7. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/PDFs_chat/pull/1#issuecomment-2002788281) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +8. 🗣 Commented on [#2815](https://github.com/metabrainz/listenbrainz-server/pull/2815#issuecomment-2002779664) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#13](https://github.com/sarnold/ymltoxml/pull/13#issuecomment-2002769012) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +10. 🗣 Commented on [#75](https://github.com/rasbt/LLMs-from-scratch/pull/75#issuecomment-2002749042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) From 3a6fc890cb1931df0ce08a0a107f3901252aae86 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 17:15:17 +0000 Subject: [PATCH 1682/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e0e66164..0aa136b2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#178](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/178#issuecomment-2004394234) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -2. 🗣 Commented on [#1522](https://github.com/spacetelescope/jwql/pull/1522#issuecomment-2004248738) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#963](https://github.com/avaframe/AvaFrame/pull/963#issuecomment-2004239741) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#962](https://github.com/avaframe/AvaFrame/pull/962#issuecomment-2004237007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#3132](https://github.com/dipy/dipy/pull/3132#issuecomment-2004087486) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/PDFs_chat/pull/2#issuecomment-2002819339) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -7. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/PDFs_chat/pull/1#issuecomment-2002788281) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -8. 🗣 Commented on [#2815](https://github.com/metabrainz/listenbrainz-server/pull/2815#issuecomment-2002779664) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#13](https://github.com/sarnold/ymltoxml/pull/13#issuecomment-2002769012) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -10. 🗣 Commented on [#75](https://github.com/rasbt/LLMs-from-scratch/pull/75#issuecomment-2002749042) in [rasbt/LLMs-from-scratch](https://github.com/rasbt/LLMs-from-scratch) +1. 🗣 Commented on [#179](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/179#issuecomment-2004490676) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +2. 🗣 Commented on [#178](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/178#issuecomment-2004394234) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +3. 🗣 Commented on [#1522](https://github.com/spacetelescope/jwql/pull/1522#issuecomment-2004248738) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#963](https://github.com/avaframe/AvaFrame/pull/963#issuecomment-2004239741) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#962](https://github.com/avaframe/AvaFrame/pull/962#issuecomment-2004237007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#3132](https://github.com/dipy/dipy/pull/3132#issuecomment-2004087486) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/PDFs_chat/pull/2#issuecomment-2002819339) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +8. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/PDFs_chat/pull/1#issuecomment-2002788281) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +9. 🗣 Commented on [#2815](https://github.com/metabrainz/listenbrainz-server/pull/2815#issuecomment-2002779664) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#13](https://github.com/sarnold/ymltoxml/pull/13#issuecomment-2002769012) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) From 1857c89055cec673e6a18911450f1e03d3db607c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 18:19:28 +0000 Subject: [PATCH 1683/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0aa136b2..46b39d9e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#179](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/179#issuecomment-2004490676) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -2. 🗣 Commented on [#178](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/178#issuecomment-2004394234) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -3. 🗣 Commented on [#1522](https://github.com/spacetelescope/jwql/pull/1522#issuecomment-2004248738) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#963](https://github.com/avaframe/AvaFrame/pull/963#issuecomment-2004239741) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#962](https://github.com/avaframe/AvaFrame/pull/962#issuecomment-2004237007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#3132](https://github.com/dipy/dipy/pull/3132#issuecomment-2004087486) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/PDFs_chat/pull/2#issuecomment-2002819339) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -8. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/PDFs_chat/pull/1#issuecomment-2002788281) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -9. 🗣 Commented on [#2815](https://github.com/metabrainz/listenbrainz-server/pull/2815#issuecomment-2002779664) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#13](https://github.com/sarnold/ymltoxml/pull/13#issuecomment-2002769012) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +1. 🗣 Commented on [#32](https://github.com/eastgenomics/ansible-run-monitoring/pull/32#issuecomment-2004577154) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +2. 🗣 Commented on [#179](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/179#issuecomment-2004490676) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +3. 🗣 Commented on [#178](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/178#issuecomment-2004394234) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +4. 🗣 Commented on [#1522](https://github.com/spacetelescope/jwql/pull/1522#issuecomment-2004248738) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#963](https://github.com/avaframe/AvaFrame/pull/963#issuecomment-2004239741) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#962](https://github.com/avaframe/AvaFrame/pull/962#issuecomment-2004237007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#3132](https://github.com/dipy/dipy/pull/3132#issuecomment-2004087486) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/PDFs_chat/pull/2#issuecomment-2002819339) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +9. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/PDFs_chat/pull/1#issuecomment-2002788281) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +10. 🗣 Commented on [#2815](https://github.com/metabrainz/listenbrainz-server/pull/2815#issuecomment-2002779664) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 41167e093c4dabdcc4b9b913ca63f95f019fb966 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 20:17:00 +0000 Subject: [PATCH 1684/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 46b39d9e..09657e33 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#32](https://github.com/eastgenomics/ansible-run-monitoring/pull/32#issuecomment-2004577154) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -2. 🗣 Commented on [#179](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/179#issuecomment-2004490676) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -3. 🗣 Commented on [#178](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/178#issuecomment-2004394234) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -4. 🗣 Commented on [#1522](https://github.com/spacetelescope/jwql/pull/1522#issuecomment-2004248738) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#963](https://github.com/avaframe/AvaFrame/pull/963#issuecomment-2004239741) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#962](https://github.com/avaframe/AvaFrame/pull/962#issuecomment-2004237007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#3132](https://github.com/dipy/dipy/pull/3132#issuecomment-2004087486) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/PDFs_chat/pull/2#issuecomment-2002819339) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -9. 🗣 Commented on [#1](https://github.com/Tamminhdiep97/PDFs_chat/pull/1#issuecomment-2002788281) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -10. 🗣 Commented on [#2815](https://github.com/metabrainz/listenbrainz-server/pull/2815#issuecomment-2002779664) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1](https://github.com/smmahbubhossain/revanced-patches/pull/1#issuecomment-2004837266) in [smmahbubhossain/revanced-patches](https://github.com/smmahbubhossain/revanced-patches) +2. 🗣 Commented on [#916](https://github.com/ToFuProject/tofu/pull/916#issuecomment-2004782228) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#32](https://github.com/eastgenomics/ansible-run-monitoring/pull/32#issuecomment-2004577154) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +4. 🗣 Commented on [#179](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/179#issuecomment-2004490676) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +5. 🗣 Commented on [#178](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/178#issuecomment-2004394234) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +6. 🗣 Commented on [#1522](https://github.com/spacetelescope/jwql/pull/1522#issuecomment-2004248738) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#963](https://github.com/avaframe/AvaFrame/pull/963#issuecomment-2004239741) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#962](https://github.com/avaframe/AvaFrame/pull/962#issuecomment-2004237007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#3132](https://github.com/dipy/dipy/pull/3132#issuecomment-2004087486) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/PDFs_chat/pull/2#issuecomment-2002819339) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) From 17afbabd529874832f11b4fed338bbcba6472f35 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 Mar 2024 11:36:58 +0000 Subject: [PATCH 1685/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 09657e33..e259a13d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/smmahbubhossain/revanced-patches/pull/1#issuecomment-2004837266) in [smmahbubhossain/revanced-patches](https://github.com/smmahbubhossain/revanced-patches) -2. 🗣 Commented on [#916](https://github.com/ToFuProject/tofu/pull/916#issuecomment-2004782228) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#32](https://github.com/eastgenomics/ansible-run-monitoring/pull/32#issuecomment-2004577154) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -4. 🗣 Commented on [#179](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/179#issuecomment-2004490676) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -5. 🗣 Commented on [#178](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/178#issuecomment-2004394234) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -6. 🗣 Commented on [#1522](https://github.com/spacetelescope/jwql/pull/1522#issuecomment-2004248738) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#963](https://github.com/avaframe/AvaFrame/pull/963#issuecomment-2004239741) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#962](https://github.com/avaframe/AvaFrame/pull/962#issuecomment-2004237007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#3132](https://github.com/dipy/dipy/pull/3132#issuecomment-2004087486) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#2](https://github.com/Tamminhdiep97/PDFs_chat/pull/2#issuecomment-2002819339) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +1. 🗣 Commented on [#9137](https://github.com/statsmodels/statsmodels/pull/9137#issuecomment-2006899496) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +2. 🗣 Commented on [#1](https://github.com/smmahbubhossain/revanced-patches/pull/1#issuecomment-2004837266) in [smmahbubhossain/revanced-patches](https://github.com/smmahbubhossain/revanced-patches) +3. 🗣 Commented on [#916](https://github.com/ToFuProject/tofu/pull/916#issuecomment-2004782228) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#32](https://github.com/eastgenomics/ansible-run-monitoring/pull/32#issuecomment-2004577154) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +5. 🗣 Commented on [#179](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/179#issuecomment-2004490676) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +6. 🗣 Commented on [#178](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/178#issuecomment-2004394234) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +7. 🗣 Commented on [#1522](https://github.com/spacetelescope/jwql/pull/1522#issuecomment-2004248738) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#963](https://github.com/avaframe/AvaFrame/pull/963#issuecomment-2004239741) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#962](https://github.com/avaframe/AvaFrame/pull/962#issuecomment-2004237007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#3132](https://github.com/dipy/dipy/pull/3132#issuecomment-2004087486) in [dipy/dipy](https://github.com/dipy/dipy) From 20c2441c6d364013f7e7bf419761d66c41a22200 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 Mar 2024 13:16:58 +0000 Subject: [PATCH 1686/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e259a13d..fa1ce709 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#9137](https://github.com/statsmodels/statsmodels/pull/9137#issuecomment-2006899496) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -2. 🗣 Commented on [#1](https://github.com/smmahbubhossain/revanced-patches/pull/1#issuecomment-2004837266) in [smmahbubhossain/revanced-patches](https://github.com/smmahbubhossain/revanced-patches) -3. 🗣 Commented on [#916](https://github.com/ToFuProject/tofu/pull/916#issuecomment-2004782228) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#32](https://github.com/eastgenomics/ansible-run-monitoring/pull/32#issuecomment-2004577154) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -5. 🗣 Commented on [#179](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/179#issuecomment-2004490676) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -6. 🗣 Commented on [#178](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/178#issuecomment-2004394234) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -7. 🗣 Commented on [#1522](https://github.com/spacetelescope/jwql/pull/1522#issuecomment-2004248738) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#963](https://github.com/avaframe/AvaFrame/pull/963#issuecomment-2004239741) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#962](https://github.com/avaframe/AvaFrame/pull/962#issuecomment-2004237007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#3132](https://github.com/dipy/dipy/pull/3132#issuecomment-2004087486) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#545](https://github.com/aramis-lab/clinicadl/pull/545#issuecomment-2007108933) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +2. 🗣 Commented on [#9137](https://github.com/statsmodels/statsmodels/pull/9137#issuecomment-2006899496) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#1](https://github.com/smmahbubhossain/revanced-patches/pull/1#issuecomment-2004837266) in [smmahbubhossain/revanced-patches](https://github.com/smmahbubhossain/revanced-patches) +4. 🗣 Commented on [#916](https://github.com/ToFuProject/tofu/pull/916#issuecomment-2004782228) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#32](https://github.com/eastgenomics/ansible-run-monitoring/pull/32#issuecomment-2004577154) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +6. 🗣 Commented on [#179](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/179#issuecomment-2004490676) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +7. 🗣 Commented on [#178](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/178#issuecomment-2004394234) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +8. 🗣 Commented on [#1522](https://github.com/spacetelescope/jwql/pull/1522#issuecomment-2004248738) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#963](https://github.com/avaframe/AvaFrame/pull/963#issuecomment-2004239741) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#962](https://github.com/avaframe/AvaFrame/pull/962#issuecomment-2004237007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From 4c27599d98d06f64edeb854aa7e2a83099e4bf2d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 Mar 2024 16:20:30 +0000 Subject: [PATCH 1687/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fa1ce709..a9eb44d3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#545](https://github.com/aramis-lab/clinicadl/pull/545#issuecomment-2007108933) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -2. 🗣 Commented on [#9137](https://github.com/statsmodels/statsmodels/pull/9137#issuecomment-2006899496) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#1](https://github.com/smmahbubhossain/revanced-patches/pull/1#issuecomment-2004837266) in [smmahbubhossain/revanced-patches](https://github.com/smmahbubhossain/revanced-patches) -4. 🗣 Commented on [#916](https://github.com/ToFuProject/tofu/pull/916#issuecomment-2004782228) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#32](https://github.com/eastgenomics/ansible-run-monitoring/pull/32#issuecomment-2004577154) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -6. 🗣 Commented on [#179](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/179#issuecomment-2004490676) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -7. 🗣 Commented on [#178](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/178#issuecomment-2004394234) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -8. 🗣 Commented on [#1522](https://github.com/spacetelescope/jwql/pull/1522#issuecomment-2004248738) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#963](https://github.com/avaframe/AvaFrame/pull/963#issuecomment-2004239741) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#962](https://github.com/avaframe/AvaFrame/pull/962#issuecomment-2004237007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#102](https://github.com/MDAnalysis/MDAKits/pull/102#issuecomment-2007448486) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +2. 🗣 Commented on [#545](https://github.com/aramis-lab/clinicadl/pull/545#issuecomment-2007108933) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +3. 🗣 Commented on [#9137](https://github.com/statsmodels/statsmodels/pull/9137#issuecomment-2006899496) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +4. 🗣 Commented on [#1](https://github.com/smmahbubhossain/revanced-patches/pull/1#issuecomment-2004837266) in [smmahbubhossain/revanced-patches](https://github.com/smmahbubhossain/revanced-patches) +5. 🗣 Commented on [#916](https://github.com/ToFuProject/tofu/pull/916#issuecomment-2004782228) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#32](https://github.com/eastgenomics/ansible-run-monitoring/pull/32#issuecomment-2004577154) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +7. 🗣 Commented on [#179](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/179#issuecomment-2004490676) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +8. 🗣 Commented on [#178](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/178#issuecomment-2004394234) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +9. 🗣 Commented on [#1522](https://github.com/spacetelescope/jwql/pull/1522#issuecomment-2004248738) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#963](https://github.com/avaframe/AvaFrame/pull/963#issuecomment-2004239741) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From 392d780ba59260cd1c97f3dea8b3d0689684f7b8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 Mar 2024 18:19:42 +0000 Subject: [PATCH 1688/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a9eb44d3..9615f73b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#102](https://github.com/MDAnalysis/MDAKits/pull/102#issuecomment-2007448486) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) -2. 🗣 Commented on [#545](https://github.com/aramis-lab/clinicadl/pull/545#issuecomment-2007108933) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -3. 🗣 Commented on [#9137](https://github.com/statsmodels/statsmodels/pull/9137#issuecomment-2006899496) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -4. 🗣 Commented on [#1](https://github.com/smmahbubhossain/revanced-patches/pull/1#issuecomment-2004837266) in [smmahbubhossain/revanced-patches](https://github.com/smmahbubhossain/revanced-patches) -5. 🗣 Commented on [#916](https://github.com/ToFuProject/tofu/pull/916#issuecomment-2004782228) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#32](https://github.com/eastgenomics/ansible-run-monitoring/pull/32#issuecomment-2004577154) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -7. 🗣 Commented on [#179](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/179#issuecomment-2004490676) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -8. 🗣 Commented on [#178](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/178#issuecomment-2004394234) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -9. 🗣 Commented on [#1522](https://github.com/spacetelescope/jwql/pull/1522#issuecomment-2004248738) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#963](https://github.com/avaframe/AvaFrame/pull/963#issuecomment-2004239741) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007755731) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +2. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007754772) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +3. 🗣 Commented on [#102](https://github.com/MDAnalysis/MDAKits/pull/102#issuecomment-2007448486) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +4. 🗣 Commented on [#545](https://github.com/aramis-lab/clinicadl/pull/545#issuecomment-2007108933) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +5. 🗣 Commented on [#9137](https://github.com/statsmodels/statsmodels/pull/9137#issuecomment-2006899496) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +6. 🗣 Commented on [#1](https://github.com/smmahbubhossain/revanced-patches/pull/1#issuecomment-2004837266) in [smmahbubhossain/revanced-patches](https://github.com/smmahbubhossain/revanced-patches) +7. 🗣 Commented on [#916](https://github.com/ToFuProject/tofu/pull/916#issuecomment-2004782228) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#32](https://github.com/eastgenomics/ansible-run-monitoring/pull/32#issuecomment-2004577154) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +9. 🗣 Commented on [#179](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/179#issuecomment-2004490676) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +10. 🗣 Commented on [#178](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/178#issuecomment-2004394234) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) From 341439228373dab6c7cf79eb07c6858fc0345947 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Mar 2024 02:02:20 +0000 Subject: [PATCH 1689/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9615f73b..1f4edcc0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007755731) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -2. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007754772) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -3. 🗣 Commented on [#102](https://github.com/MDAnalysis/MDAKits/pull/102#issuecomment-2007448486) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) -4. 🗣 Commented on [#545](https://github.com/aramis-lab/clinicadl/pull/545#issuecomment-2007108933) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -5. 🗣 Commented on [#9137](https://github.com/statsmodels/statsmodels/pull/9137#issuecomment-2006899496) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -6. 🗣 Commented on [#1](https://github.com/smmahbubhossain/revanced-patches/pull/1#issuecomment-2004837266) in [smmahbubhossain/revanced-patches](https://github.com/smmahbubhossain/revanced-patches) -7. 🗣 Commented on [#916](https://github.com/ToFuProject/tofu/pull/916#issuecomment-2004782228) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#32](https://github.com/eastgenomics/ansible-run-monitoring/pull/32#issuecomment-2004577154) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -9. 🗣 Commented on [#179](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/179#issuecomment-2004490676) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -10. 🗣 Commented on [#178](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/178#issuecomment-2004394234) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +1. 🗣 Commented on [#4520](https://github.com/MDAnalysis/mdanalysis/pull/4520#issuecomment-2008557203) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007755731) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +3. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007754772) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +4. 🗣 Commented on [#102](https://github.com/MDAnalysis/MDAKits/pull/102#issuecomment-2007448486) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +5. 🗣 Commented on [#545](https://github.com/aramis-lab/clinicadl/pull/545#issuecomment-2007108933) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +6. 🗣 Commented on [#9137](https://github.com/statsmodels/statsmodels/pull/9137#issuecomment-2006899496) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +7. 🗣 Commented on [#1](https://github.com/smmahbubhossain/revanced-patches/pull/1#issuecomment-2004837266) in [smmahbubhossain/revanced-patches](https://github.com/smmahbubhossain/revanced-patches) +8. 🗣 Commented on [#916](https://github.com/ToFuProject/tofu/pull/916#issuecomment-2004782228) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#32](https://github.com/eastgenomics/ansible-run-monitoring/pull/32#issuecomment-2004577154) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +10. 🗣 Commented on [#179](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/179#issuecomment-2004490676) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) From b1bf46088a4b4cbeb34af35a93696c3f824d89c8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Mar 2024 03:17:16 +0000 Subject: [PATCH 1690/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1f4edcc0..57d15dcc 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4520](https://github.com/MDAnalysis/mdanalysis/pull/4520#issuecomment-2008557203) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007755731) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -3. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007754772) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -4. 🗣 Commented on [#102](https://github.com/MDAnalysis/MDAKits/pull/102#issuecomment-2007448486) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) -5. 🗣 Commented on [#545](https://github.com/aramis-lab/clinicadl/pull/545#issuecomment-2007108933) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -6. 🗣 Commented on [#9137](https://github.com/statsmodels/statsmodels/pull/9137#issuecomment-2006899496) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -7. 🗣 Commented on [#1](https://github.com/smmahbubhossain/revanced-patches/pull/1#issuecomment-2004837266) in [smmahbubhossain/revanced-patches](https://github.com/smmahbubhossain/revanced-patches) -8. 🗣 Commented on [#916](https://github.com/ToFuProject/tofu/pull/916#issuecomment-2004782228) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#32](https://github.com/eastgenomics/ansible-run-monitoring/pull/32#issuecomment-2004577154) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -10. 🗣 Commented on [#179](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/179#issuecomment-2004490676) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +1. 🗣 Commented on [#4](https://github.com/Tamminhdiep97/PDFs_chat/pull/4#issuecomment-2008584095) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +2. 🗣 Commented on [#3](https://github.com/Tamminhdiep97/PDFs_chat/pull/3#issuecomment-2008582861) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +3. 🗣 Commented on [#4520](https://github.com/MDAnalysis/mdanalysis/pull/4520#issuecomment-2008557203) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007755731) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +5. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007754772) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +6. 🗣 Commented on [#102](https://github.com/MDAnalysis/MDAKits/pull/102#issuecomment-2007448486) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +7. 🗣 Commented on [#545](https://github.com/aramis-lab/clinicadl/pull/545#issuecomment-2007108933) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +8. 🗣 Commented on [#9137](https://github.com/statsmodels/statsmodels/pull/9137#issuecomment-2006899496) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +9. 🗣 Commented on [#1](https://github.com/smmahbubhossain/revanced-patches/pull/1#issuecomment-2004837266) in [smmahbubhossain/revanced-patches](https://github.com/smmahbubhossain/revanced-patches) +10. 🗣 Commented on [#916](https://github.com/ToFuProject/tofu/pull/916#issuecomment-2004782228) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From 48d19692b76039393d6c4baf2e6cbeb52a76bd2d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Mar 2024 10:16:14 +0000 Subject: [PATCH 1691/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 57d15dcc..e5d6e863 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4](https://github.com/Tamminhdiep97/PDFs_chat/pull/4#issuecomment-2008584095) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -2. 🗣 Commented on [#3](https://github.com/Tamminhdiep97/PDFs_chat/pull/3#issuecomment-2008582861) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -3. 🗣 Commented on [#4520](https://github.com/MDAnalysis/mdanalysis/pull/4520#issuecomment-2008557203) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007755731) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -5. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007754772) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -6. 🗣 Commented on [#102](https://github.com/MDAnalysis/MDAKits/pull/102#issuecomment-2007448486) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) -7. 🗣 Commented on [#545](https://github.com/aramis-lab/clinicadl/pull/545#issuecomment-2007108933) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -8. 🗣 Commented on [#9137](https://github.com/statsmodels/statsmodels/pull/9137#issuecomment-2006899496) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -9. 🗣 Commented on [#1](https://github.com/smmahbubhossain/revanced-patches/pull/1#issuecomment-2004837266) in [smmahbubhossain/revanced-patches](https://github.com/smmahbubhossain/revanced-patches) -10. 🗣 Commented on [#916](https://github.com/ToFuProject/tofu/pull/916#issuecomment-2004782228) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#23](https://github.com/ITMO-NSS-team/pytsbe/pull/23#issuecomment-2009175022) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +2. 🗣 Commented on [#181](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/181#issuecomment-2009164368) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +3. 🗣 Commented on [#4](https://github.com/Tamminhdiep97/PDFs_chat/pull/4#issuecomment-2008584095) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +4. 🗣 Commented on [#3](https://github.com/Tamminhdiep97/PDFs_chat/pull/3#issuecomment-2008582861) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +5. 🗣 Commented on [#4520](https://github.com/MDAnalysis/mdanalysis/pull/4520#issuecomment-2008557203) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007755731) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +7. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007754772) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +8. 🗣 Commented on [#102](https://github.com/MDAnalysis/MDAKits/pull/102#issuecomment-2007448486) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +9. 🗣 Commented on [#545](https://github.com/aramis-lab/clinicadl/pull/545#issuecomment-2007108933) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +10. 🗣 Commented on [#9137](https://github.com/statsmodels/statsmodels/pull/9137#issuecomment-2006899496) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) From 7e57e78e85135e93bc5240c29c5251d76a360f2c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Mar 2024 11:13:31 +0000 Subject: [PATCH 1692/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e5d6e863..1b11bd01 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#23](https://github.com/ITMO-NSS-team/pytsbe/pull/23#issuecomment-2009175022) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) -2. 🗣 Commented on [#181](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/181#issuecomment-2009164368) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -3. 🗣 Commented on [#4](https://github.com/Tamminhdiep97/PDFs_chat/pull/4#issuecomment-2008584095) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -4. 🗣 Commented on [#3](https://github.com/Tamminhdiep97/PDFs_chat/pull/3#issuecomment-2008582861) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -5. 🗣 Commented on [#4520](https://github.com/MDAnalysis/mdanalysis/pull/4520#issuecomment-2008557203) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007755731) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -7. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007754772) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -8. 🗣 Commented on [#102](https://github.com/MDAnalysis/MDAKits/pull/102#issuecomment-2007448486) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) -9. 🗣 Commented on [#545](https://github.com/aramis-lab/clinicadl/pull/545#issuecomment-2007108933) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -10. 🗣 Commented on [#9137](https://github.com/statsmodels/statsmodels/pull/9137#issuecomment-2006899496) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +1. 🗣 Commented on [#37](https://github.com/eastgenomics/automated-archiving/pull/37#issuecomment-2009258754) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +2. 🗣 Commented on [#23](https://github.com/ITMO-NSS-team/pytsbe/pull/23#issuecomment-2009175022) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +3. 🗣 Commented on [#181](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/181#issuecomment-2009164368) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +4. 🗣 Commented on [#4](https://github.com/Tamminhdiep97/PDFs_chat/pull/4#issuecomment-2008584095) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +5. 🗣 Commented on [#3](https://github.com/Tamminhdiep97/PDFs_chat/pull/3#issuecomment-2008582861) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +6. 🗣 Commented on [#4520](https://github.com/MDAnalysis/mdanalysis/pull/4520#issuecomment-2008557203) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007755731) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +8. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007754772) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +9. 🗣 Commented on [#102](https://github.com/MDAnalysis/MDAKits/pull/102#issuecomment-2007448486) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +10. 🗣 Commented on [#545](https://github.com/aramis-lab/clinicadl/pull/545#issuecomment-2007108933) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) From e7fcbca66aa4a64498de811ce156ed5147fd5987 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Mar 2024 12:28:48 +0000 Subject: [PATCH 1693/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1b11bd01..2aba128a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#37](https://github.com/eastgenomics/automated-archiving/pull/37#issuecomment-2009258754) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -2. 🗣 Commented on [#23](https://github.com/ITMO-NSS-team/pytsbe/pull/23#issuecomment-2009175022) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) -3. 🗣 Commented on [#181](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/181#issuecomment-2009164368) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -4. 🗣 Commented on [#4](https://github.com/Tamminhdiep97/PDFs_chat/pull/4#issuecomment-2008584095) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -5. 🗣 Commented on [#3](https://github.com/Tamminhdiep97/PDFs_chat/pull/3#issuecomment-2008582861) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -6. 🗣 Commented on [#4520](https://github.com/MDAnalysis/mdanalysis/pull/4520#issuecomment-2008557203) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007755731) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -8. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007754772) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -9. 🗣 Commented on [#102](https://github.com/MDAnalysis/MDAKits/pull/102#issuecomment-2007448486) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) -10. 🗣 Commented on [#545](https://github.com/aramis-lab/clinicadl/pull/545#issuecomment-2007108933) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +1. 🗣 Commented on [#11](https://github.com/kossiitkgp/mailing-scripts/pull/11#issuecomment-2009389371) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +2. 🗣 Commented on [#37](https://github.com/eastgenomics/automated-archiving/pull/37#issuecomment-2009258754) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +3. 🗣 Commented on [#23](https://github.com/ITMO-NSS-team/pytsbe/pull/23#issuecomment-2009175022) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +4. 🗣 Commented on [#181](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/181#issuecomment-2009164368) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +5. 🗣 Commented on [#4](https://github.com/Tamminhdiep97/PDFs_chat/pull/4#issuecomment-2008584095) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +6. 🗣 Commented on [#3](https://github.com/Tamminhdiep97/PDFs_chat/pull/3#issuecomment-2008582861) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +7. 🗣 Commented on [#4520](https://github.com/MDAnalysis/mdanalysis/pull/4520#issuecomment-2008557203) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007755731) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +9. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007754772) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +10. 🗣 Commented on [#102](https://github.com/MDAnalysis/MDAKits/pull/102#issuecomment-2007448486) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) From 3043ab82ea53cca4a537196a4ea4520a60e8c953 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Mar 2024 13:20:04 +0000 Subject: [PATCH 1694/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2aba128a..36d19f4f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#11](https://github.com/kossiitkgp/mailing-scripts/pull/11#issuecomment-2009389371) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -2. 🗣 Commented on [#37](https://github.com/eastgenomics/automated-archiving/pull/37#issuecomment-2009258754) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -3. 🗣 Commented on [#23](https://github.com/ITMO-NSS-team/pytsbe/pull/23#issuecomment-2009175022) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) -4. 🗣 Commented on [#181](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/181#issuecomment-2009164368) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -5. 🗣 Commented on [#4](https://github.com/Tamminhdiep97/PDFs_chat/pull/4#issuecomment-2008584095) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -6. 🗣 Commented on [#3](https://github.com/Tamminhdiep97/PDFs_chat/pull/3#issuecomment-2008582861) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -7. 🗣 Commented on [#4520](https://github.com/MDAnalysis/mdanalysis/pull/4520#issuecomment-2008557203) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007755731) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -9. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007754772) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -10. 🗣 Commented on [#102](https://github.com/MDAnalysis/MDAKits/pull/102#issuecomment-2007448486) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +1. 🗣 Commented on [#183](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/183#issuecomment-2009504635) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +2. 🗣 Commented on [#11](https://github.com/kossiitkgp/mailing-scripts/pull/11#issuecomment-2009389371) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +3. 🗣 Commented on [#37](https://github.com/eastgenomics/automated-archiving/pull/37#issuecomment-2009258754) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +4. 🗣 Commented on [#23](https://github.com/ITMO-NSS-team/pytsbe/pull/23#issuecomment-2009175022) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +5. 🗣 Commented on [#181](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/181#issuecomment-2009164368) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +6. 🗣 Commented on [#4](https://github.com/Tamminhdiep97/PDFs_chat/pull/4#issuecomment-2008584095) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +7. 🗣 Commented on [#3](https://github.com/Tamminhdiep97/PDFs_chat/pull/3#issuecomment-2008582861) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +8. 🗣 Commented on [#4520](https://github.com/MDAnalysis/mdanalysis/pull/4520#issuecomment-2008557203) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007755731) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +10. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007754772) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) From e57b24410b67b1f22ae9285dbbe1d1d9bc3f77a4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Mar 2024 15:37:01 +0000 Subject: [PATCH 1695/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 36d19f4f..2967689c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#183](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/183#issuecomment-2009504635) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -2. 🗣 Commented on [#11](https://github.com/kossiitkgp/mailing-scripts/pull/11#issuecomment-2009389371) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -3. 🗣 Commented on [#37](https://github.com/eastgenomics/automated-archiving/pull/37#issuecomment-2009258754) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -4. 🗣 Commented on [#23](https://github.com/ITMO-NSS-team/pytsbe/pull/23#issuecomment-2009175022) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) -5. 🗣 Commented on [#181](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/181#issuecomment-2009164368) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -6. 🗣 Commented on [#4](https://github.com/Tamminhdiep97/PDFs_chat/pull/4#issuecomment-2008584095) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -7. 🗣 Commented on [#3](https://github.com/Tamminhdiep97/PDFs_chat/pull/3#issuecomment-2008582861) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -8. 🗣 Commented on [#4520](https://github.com/MDAnalysis/mdanalysis/pull/4520#issuecomment-2008557203) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007755731) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) -10. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007754772) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +1. 🗣 Commented on [#494](https://github.com/HEPCloud/decisionengine_modules/pull/494#issuecomment-2009831290) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +2. 🗣 Commented on [#183](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/183#issuecomment-2009504635) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +3. 🗣 Commented on [#11](https://github.com/kossiitkgp/mailing-scripts/pull/11#issuecomment-2009389371) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +4. 🗣 Commented on [#37](https://github.com/eastgenomics/automated-archiving/pull/37#issuecomment-2009258754) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +5. 🗣 Commented on [#23](https://github.com/ITMO-NSS-team/pytsbe/pull/23#issuecomment-2009175022) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +6. 🗣 Commented on [#181](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/181#issuecomment-2009164368) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +7. 🗣 Commented on [#4](https://github.com/Tamminhdiep97/PDFs_chat/pull/4#issuecomment-2008584095) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +8. 🗣 Commented on [#3](https://github.com/Tamminhdiep97/PDFs_chat/pull/3#issuecomment-2008582861) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +9. 🗣 Commented on [#4520](https://github.com/MDAnalysis/mdanalysis/pull/4520#issuecomment-2008557203) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007755731) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) From 161899ec08a4adf98492fc5e092799646ab42f63 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Mar 2024 16:21:08 +0000 Subject: [PATCH 1696/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2967689c..a9bc94b9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#494](https://github.com/HEPCloud/decisionengine_modules/pull/494#issuecomment-2009831290) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -2. 🗣 Commented on [#183](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/183#issuecomment-2009504635) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -3. 🗣 Commented on [#11](https://github.com/kossiitkgp/mailing-scripts/pull/11#issuecomment-2009389371) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -4. 🗣 Commented on [#37](https://github.com/eastgenomics/automated-archiving/pull/37#issuecomment-2009258754) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -5. 🗣 Commented on [#23](https://github.com/ITMO-NSS-team/pytsbe/pull/23#issuecomment-2009175022) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) -6. 🗣 Commented on [#181](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/181#issuecomment-2009164368) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -7. 🗣 Commented on [#4](https://github.com/Tamminhdiep97/PDFs_chat/pull/4#issuecomment-2008584095) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -8. 🗣 Commented on [#3](https://github.com/Tamminhdiep97/PDFs_chat/pull/3#issuecomment-2008582861) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -9. 🗣 Commented on [#4520](https://github.com/MDAnalysis/mdanalysis/pull/4520#issuecomment-2008557203) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#2](https://github.com/Remi-Gau/dFC/pull/2#issuecomment-2007755731) in [Remi-Gau/dFC](https://github.com/Remi-Gau/dFC) +1. 🗣 Commented on [#3140](https://github.com/dipy/dipy/pull/3140#issuecomment-2009911785) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#494](https://github.com/HEPCloud/decisionengine_modules/pull/494#issuecomment-2009831290) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +3. 🗣 Commented on [#183](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/183#issuecomment-2009504635) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +4. 🗣 Commented on [#11](https://github.com/kossiitkgp/mailing-scripts/pull/11#issuecomment-2009389371) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +5. 🗣 Commented on [#37](https://github.com/eastgenomics/automated-archiving/pull/37#issuecomment-2009258754) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +6. 🗣 Commented on [#23](https://github.com/ITMO-NSS-team/pytsbe/pull/23#issuecomment-2009175022) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +7. 🗣 Commented on [#181](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/181#issuecomment-2009164368) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +8. 🗣 Commented on [#4](https://github.com/Tamminhdiep97/PDFs_chat/pull/4#issuecomment-2008584095) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +9. 🗣 Commented on [#3](https://github.com/Tamminhdiep97/PDFs_chat/pull/3#issuecomment-2008582861) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +10. 🗣 Commented on [#4520](https://github.com/MDAnalysis/mdanalysis/pull/4520#issuecomment-2008557203) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From c3271e96c7868bc0d61f3941ae132d9d375d8f10 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Mar 2024 17:13:19 +0000 Subject: [PATCH 1697/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a9bc94b9..d25147cd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3140](https://github.com/dipy/dipy/pull/3140#issuecomment-2009911785) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#494](https://github.com/HEPCloud/decisionengine_modules/pull/494#issuecomment-2009831290) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -3. 🗣 Commented on [#183](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/183#issuecomment-2009504635) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -4. 🗣 Commented on [#11](https://github.com/kossiitkgp/mailing-scripts/pull/11#issuecomment-2009389371) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -5. 🗣 Commented on [#37](https://github.com/eastgenomics/automated-archiving/pull/37#issuecomment-2009258754) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -6. 🗣 Commented on [#23](https://github.com/ITMO-NSS-team/pytsbe/pull/23#issuecomment-2009175022) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) -7. 🗣 Commented on [#181](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/181#issuecomment-2009164368) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -8. 🗣 Commented on [#4](https://github.com/Tamminhdiep97/PDFs_chat/pull/4#issuecomment-2008584095) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -9. 🗣 Commented on [#3](https://github.com/Tamminhdiep97/PDFs_chat/pull/3#issuecomment-2008582861) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -10. 🗣 Commented on [#4520](https://github.com/MDAnalysis/mdanalysis/pull/4520#issuecomment-2008557203) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#495](https://github.com/HEPCloud/decisionengine_modules/pull/495#issuecomment-2010072625) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +2. 🗣 Commented on [#221](https://github.com/UKRIN-MAPS/ukat/pull/221#issuecomment-2010060052) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) +3. 🗣 Commented on [#3140](https://github.com/dipy/dipy/pull/3140#issuecomment-2009911785) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#494](https://github.com/HEPCloud/decisionengine_modules/pull/494#issuecomment-2009831290) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +5. 🗣 Commented on [#183](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/183#issuecomment-2009504635) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +6. 🗣 Commented on [#11](https://github.com/kossiitkgp/mailing-scripts/pull/11#issuecomment-2009389371) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +7. 🗣 Commented on [#37](https://github.com/eastgenomics/automated-archiving/pull/37#issuecomment-2009258754) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +8. 🗣 Commented on [#23](https://github.com/ITMO-NSS-team/pytsbe/pull/23#issuecomment-2009175022) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +9. 🗣 Commented on [#181](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/181#issuecomment-2009164368) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +10. 🗣 Commented on [#4](https://github.com/Tamminhdiep97/PDFs_chat/pull/4#issuecomment-2008584095) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) From 3b0fbc8d23cd743ba80526aad531899dc701b82a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Mar 2024 19:37:11 +0000 Subject: [PATCH 1698/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d25147cd..56f982cf 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#495](https://github.com/HEPCloud/decisionengine_modules/pull/495#issuecomment-2010072625) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -2. 🗣 Commented on [#221](https://github.com/UKRIN-MAPS/ukat/pull/221#issuecomment-2010060052) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) -3. 🗣 Commented on [#3140](https://github.com/dipy/dipy/pull/3140#issuecomment-2009911785) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#494](https://github.com/HEPCloud/decisionengine_modules/pull/494#issuecomment-2009831290) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -5. 🗣 Commented on [#183](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/183#issuecomment-2009504635) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -6. 🗣 Commented on [#11](https://github.com/kossiitkgp/mailing-scripts/pull/11#issuecomment-2009389371) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -7. 🗣 Commented on [#37](https://github.com/eastgenomics/automated-archiving/pull/37#issuecomment-2009258754) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -8. 🗣 Commented on [#23](https://github.com/ITMO-NSS-team/pytsbe/pull/23#issuecomment-2009175022) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) -9. 🗣 Commented on [#181](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/181#issuecomment-2009164368) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -10. 🗣 Commented on [#4](https://github.com/Tamminhdiep97/PDFs_chat/pull/4#issuecomment-2008584095) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +1. 🗣 Commented on [#185](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/185#issuecomment-2010431110) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +2. 🗣 Commented on [#495](https://github.com/HEPCloud/decisionengine_modules/pull/495#issuecomment-2010072625) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +3. 🗣 Commented on [#221](https://github.com/UKRIN-MAPS/ukat/pull/221#issuecomment-2010060052) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) +4. 🗣 Commented on [#3140](https://github.com/dipy/dipy/pull/3140#issuecomment-2009911785) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#494](https://github.com/HEPCloud/decisionengine_modules/pull/494#issuecomment-2009831290) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +6. 🗣 Commented on [#183](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/183#issuecomment-2009504635) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +7. 🗣 Commented on [#11](https://github.com/kossiitkgp/mailing-scripts/pull/11#issuecomment-2009389371) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +8. 🗣 Commented on [#37](https://github.com/eastgenomics/automated-archiving/pull/37#issuecomment-2009258754) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +9. 🗣 Commented on [#23](https://github.com/ITMO-NSS-team/pytsbe/pull/23#issuecomment-2009175022) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) +10. 🗣 Commented on [#181](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/181#issuecomment-2009164368) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) From dc4b9d63c8591fe65fccdf8d819933e93656781c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Mar 2024 20:17:03 +0000 Subject: [PATCH 1699/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 56f982cf..d6bcf9ee 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#185](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/185#issuecomment-2010431110) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -2. 🗣 Commented on [#495](https://github.com/HEPCloud/decisionengine_modules/pull/495#issuecomment-2010072625) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -3. 🗣 Commented on [#221](https://github.com/UKRIN-MAPS/ukat/pull/221#issuecomment-2010060052) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) -4. 🗣 Commented on [#3140](https://github.com/dipy/dipy/pull/3140#issuecomment-2009911785) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#494](https://github.com/HEPCloud/decisionengine_modules/pull/494#issuecomment-2009831290) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -6. 🗣 Commented on [#183](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/183#issuecomment-2009504635) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -7. 🗣 Commented on [#11](https://github.com/kossiitkgp/mailing-scripts/pull/11#issuecomment-2009389371) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -8. 🗣 Commented on [#37](https://github.com/eastgenomics/automated-archiving/pull/37#issuecomment-2009258754) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -9. 🗣 Commented on [#23](https://github.com/ITMO-NSS-team/pytsbe/pull/23#issuecomment-2009175022) in [ITMO-NSS-team/pytsbe](https://github.com/ITMO-NSS-team/pytsbe) -10. 🗣 Commented on [#181](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/181#issuecomment-2009164368) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +1. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +2. 🗣 Commented on [#1475](https://github.com/rpm-software-management/ci-dnf-stack/pull/1475#issuecomment-2010472975) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +3. 🗣 Commented on [#185](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/185#issuecomment-2010431110) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +4. 🗣 Commented on [#495](https://github.com/HEPCloud/decisionengine_modules/pull/495#issuecomment-2010072625) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +5. 🗣 Commented on [#221](https://github.com/UKRIN-MAPS/ukat/pull/221#issuecomment-2010060052) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) +6. 🗣 Commented on [#3140](https://github.com/dipy/dipy/pull/3140#issuecomment-2009911785) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#494](https://github.com/HEPCloud/decisionengine_modules/pull/494#issuecomment-2009831290) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +8. 🗣 Commented on [#183](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/183#issuecomment-2009504635) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +9. 🗣 Commented on [#11](https://github.com/kossiitkgp/mailing-scripts/pull/11#issuecomment-2009389371) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +10. 🗣 Commented on [#37](https://github.com/eastgenomics/automated-archiving/pull/37#issuecomment-2009258754) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) From 7c72cbf02d3c8c3ce6e87b7e5790803966358b6a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Mar 2024 21:15:30 +0000 Subject: [PATCH 1700/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d6bcf9ee..38d394eb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -2. 🗣 Commented on [#1475](https://github.com/rpm-software-management/ci-dnf-stack/pull/1475#issuecomment-2010472975) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -3. 🗣 Commented on [#185](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/185#issuecomment-2010431110) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -4. 🗣 Commented on [#495](https://github.com/HEPCloud/decisionengine_modules/pull/495#issuecomment-2010072625) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -5. 🗣 Commented on [#221](https://github.com/UKRIN-MAPS/ukat/pull/221#issuecomment-2010060052) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) -6. 🗣 Commented on [#3140](https://github.com/dipy/dipy/pull/3140#issuecomment-2009911785) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#494](https://github.com/HEPCloud/decisionengine_modules/pull/494#issuecomment-2009831290) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -8. 🗣 Commented on [#183](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/183#issuecomment-2009504635) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -9. 🗣 Commented on [#11](https://github.com/kossiitkgp/mailing-scripts/pull/11#issuecomment-2009389371) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) -10. 🗣 Commented on [#37](https://github.com/eastgenomics/automated-archiving/pull/37#issuecomment-2009258754) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +1. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +2. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +3. 🗣 Commented on [#1475](https://github.com/rpm-software-management/ci-dnf-stack/pull/1475#issuecomment-2010472975) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +4. 🗣 Commented on [#185](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/185#issuecomment-2010431110) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +5. 🗣 Commented on [#495](https://github.com/HEPCloud/decisionengine_modules/pull/495#issuecomment-2010072625) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +6. 🗣 Commented on [#221](https://github.com/UKRIN-MAPS/ukat/pull/221#issuecomment-2010060052) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) +7. 🗣 Commented on [#3140](https://github.com/dipy/dipy/pull/3140#issuecomment-2009911785) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#494](https://github.com/HEPCloud/decisionengine_modules/pull/494#issuecomment-2009831290) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +9. 🗣 Commented on [#183](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/183#issuecomment-2009504635) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +10. 🗣 Commented on [#11](https://github.com/kossiitkgp/mailing-scripts/pull/11#issuecomment-2009389371) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) From d601bc3a30752f57676e257943335a5c3d9916b8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Mar 2024 09:15:25 +0000 Subject: [PATCH 1701/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 38d394eb..51906782 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -2. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -3. 🗣 Commented on [#1475](https://github.com/rpm-software-management/ci-dnf-stack/pull/1475#issuecomment-2010472975) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -4. 🗣 Commented on [#185](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/185#issuecomment-2010431110) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -5. 🗣 Commented on [#495](https://github.com/HEPCloud/decisionengine_modules/pull/495#issuecomment-2010072625) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -6. 🗣 Commented on [#221](https://github.com/UKRIN-MAPS/ukat/pull/221#issuecomment-2010060052) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) -7. 🗣 Commented on [#3140](https://github.com/dipy/dipy/pull/3140#issuecomment-2009911785) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#494](https://github.com/HEPCloud/decisionengine_modules/pull/494#issuecomment-2009831290) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -9. 🗣 Commented on [#183](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/183#issuecomment-2009504635) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -10. 🗣 Commented on [#11](https://github.com/kossiitkgp/mailing-scripts/pull/11#issuecomment-2009389371) in [kossiitkgp/mailing-scripts](https://github.com/kossiitkgp/mailing-scripts) +1. 🗣 Commented on [#268](https://github.com/aimclub/GOLEM/pull/268#issuecomment-2011691681) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +3. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +4. 🗣 Commented on [#1475](https://github.com/rpm-software-management/ci-dnf-stack/pull/1475#issuecomment-2010472975) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +5. 🗣 Commented on [#185](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/185#issuecomment-2010431110) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +6. 🗣 Commented on [#495](https://github.com/HEPCloud/decisionengine_modules/pull/495#issuecomment-2010072625) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +7. 🗣 Commented on [#221](https://github.com/UKRIN-MAPS/ukat/pull/221#issuecomment-2010060052) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) +8. 🗣 Commented on [#3140](https://github.com/dipy/dipy/pull/3140#issuecomment-2009911785) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#494](https://github.com/HEPCloud/decisionengine_modules/pull/494#issuecomment-2009831290) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +10. 🗣 Commented on [#183](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/183#issuecomment-2009504635) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) From 52f2018f43ac4d8c00e41ff03766bf70edc46873 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Mar 2024 12:50:17 +0000 Subject: [PATCH 1702/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 51906782..b01ea951 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#268](https://github.com/aimclub/GOLEM/pull/268#issuecomment-2011691681) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -3. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -4. 🗣 Commented on [#1475](https://github.com/rpm-software-management/ci-dnf-stack/pull/1475#issuecomment-2010472975) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -5. 🗣 Commented on [#185](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/185#issuecomment-2010431110) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -6. 🗣 Commented on [#495](https://github.com/HEPCloud/decisionengine_modules/pull/495#issuecomment-2010072625) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -7. 🗣 Commented on [#221](https://github.com/UKRIN-MAPS/ukat/pull/221#issuecomment-2010060052) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) -8. 🗣 Commented on [#3140](https://github.com/dipy/dipy/pull/3140#issuecomment-2009911785) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#494](https://github.com/HEPCloud/decisionengine_modules/pull/494#issuecomment-2009831290) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -10. 🗣 Commented on [#183](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/183#issuecomment-2009504635) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +1. 🗣 Commented on [#819](https://github.com/spacetelescope/webbpsf/pull/819#issuecomment-2012165497) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#268](https://github.com/aimclub/GOLEM/pull/268#issuecomment-2011691681) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +4. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +5. 🗣 Commented on [#1475](https://github.com/rpm-software-management/ci-dnf-stack/pull/1475#issuecomment-2010472975) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +6. 🗣 Commented on [#185](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/185#issuecomment-2010431110) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +7. 🗣 Commented on [#495](https://github.com/HEPCloud/decisionengine_modules/pull/495#issuecomment-2010072625) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +8. 🗣 Commented on [#221](https://github.com/UKRIN-MAPS/ukat/pull/221#issuecomment-2010060052) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) +9. 🗣 Commented on [#3140](https://github.com/dipy/dipy/pull/3140#issuecomment-2009911785) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#494](https://github.com/HEPCloud/decisionengine_modules/pull/494#issuecomment-2009831290) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) From 6bc290040a8683cc742e965ce035e4cb860f4a3b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Mar 2024 15:17:02 +0000 Subject: [PATCH 1703/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b01ea951..29c53ea6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#819](https://github.com/spacetelescope/webbpsf/pull/819#issuecomment-2012165497) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#268](https://github.com/aimclub/GOLEM/pull/268#issuecomment-2011691681) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -4. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -5. 🗣 Commented on [#1475](https://github.com/rpm-software-management/ci-dnf-stack/pull/1475#issuecomment-2010472975) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -6. 🗣 Commented on [#185](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/185#issuecomment-2010431110) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -7. 🗣 Commented on [#495](https://github.com/HEPCloud/decisionengine_modules/pull/495#issuecomment-2010072625) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -8. 🗣 Commented on [#221](https://github.com/UKRIN-MAPS/ukat/pull/221#issuecomment-2010060052) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) -9. 🗣 Commented on [#3140](https://github.com/dipy/dipy/pull/3140#issuecomment-2009911785) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#494](https://github.com/HEPCloud/decisionengine_modules/pull/494#issuecomment-2009831290) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +1. 🗣 Commented on [#117](https://github.com/MDAnalysis/mdacli/pull/117#issuecomment-2012525193) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +2. 🗣 Commented on [#819](https://github.com/spacetelescope/webbpsf/pull/819#issuecomment-2012165497) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#268](https://github.com/aimclub/GOLEM/pull/268#issuecomment-2011691681) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +4. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +5. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +6. 🗣 Commented on [#1475](https://github.com/rpm-software-management/ci-dnf-stack/pull/1475#issuecomment-2010472975) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +7. 🗣 Commented on [#185](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/185#issuecomment-2010431110) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +8. 🗣 Commented on [#495](https://github.com/HEPCloud/decisionengine_modules/pull/495#issuecomment-2010072625) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +9. 🗣 Commented on [#221](https://github.com/UKRIN-MAPS/ukat/pull/221#issuecomment-2010060052) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) +10. 🗣 Commented on [#3140](https://github.com/dipy/dipy/pull/3140#issuecomment-2009911785) in [dipy/dipy](https://github.com/dipy/dipy) From 0ea978e7128bf0366ed016eddce3f5b968f2b2ff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Mar 2024 15:38:41 +0000 Subject: [PATCH 1704/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 29c53ea6..fc05349d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#117](https://github.com/MDAnalysis/mdacli/pull/117#issuecomment-2012525193) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -2. 🗣 Commented on [#819](https://github.com/spacetelescope/webbpsf/pull/819#issuecomment-2012165497) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#268](https://github.com/aimclub/GOLEM/pull/268#issuecomment-2011691681) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -4. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -5. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -6. 🗣 Commented on [#1475](https://github.com/rpm-software-management/ci-dnf-stack/pull/1475#issuecomment-2010472975) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -7. 🗣 Commented on [#185](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/185#issuecomment-2010431110) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -8. 🗣 Commented on [#495](https://github.com/HEPCloud/decisionengine_modules/pull/495#issuecomment-2010072625) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -9. 🗣 Commented on [#221](https://github.com/UKRIN-MAPS/ukat/pull/221#issuecomment-2010060052) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) -10. 🗣 Commented on [#3140](https://github.com/dipy/dipy/pull/3140#issuecomment-2009911785) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#3143](https://github.com/dipy/dipy/pull/3143#issuecomment-2012618357) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#117](https://github.com/MDAnalysis/mdacli/pull/117#issuecomment-2012525193) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +3. 🗣 Commented on [#819](https://github.com/spacetelescope/webbpsf/pull/819#issuecomment-2012165497) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#268](https://github.com/aimclub/GOLEM/pull/268#issuecomment-2011691681) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +6. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +7. 🗣 Commented on [#1475](https://github.com/rpm-software-management/ci-dnf-stack/pull/1475#issuecomment-2010472975) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +8. 🗣 Commented on [#185](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/185#issuecomment-2010431110) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +9. 🗣 Commented on [#495](https://github.com/HEPCloud/decisionengine_modules/pull/495#issuecomment-2010072625) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +10. 🗣 Commented on [#221](https://github.com/UKRIN-MAPS/ukat/pull/221#issuecomment-2010060052) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) From fa8ee00ff8d45ba20b734937c29df496311c571b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Mar 2024 16:21:38 +0000 Subject: [PATCH 1705/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fc05349d..40f08ce9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3143](https://github.com/dipy/dipy/pull/3143#issuecomment-2012618357) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#117](https://github.com/MDAnalysis/mdacli/pull/117#issuecomment-2012525193) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -3. 🗣 Commented on [#819](https://github.com/spacetelescope/webbpsf/pull/819#issuecomment-2012165497) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#268](https://github.com/aimclub/GOLEM/pull/268#issuecomment-2011691681) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -6. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -7. 🗣 Commented on [#1475](https://github.com/rpm-software-management/ci-dnf-stack/pull/1475#issuecomment-2010472975) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -8. 🗣 Commented on [#185](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/185#issuecomment-2010431110) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -9. 🗣 Commented on [#495](https://github.com/HEPCloud/decisionengine_modules/pull/495#issuecomment-2010072625) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -10. 🗣 Commented on [#221](https://github.com/UKRIN-MAPS/ukat/pull/221#issuecomment-2010060052) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) +1. 🗣 Commented on [#118](https://github.com/Richard-Sti/csiborgtools/pull/118#issuecomment-2012736178) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +2. 🗣 Commented on [#3143](https://github.com/dipy/dipy/pull/3143#issuecomment-2012618357) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#117](https://github.com/MDAnalysis/mdacli/pull/117#issuecomment-2012525193) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +4. 🗣 Commented on [#819](https://github.com/spacetelescope/webbpsf/pull/819#issuecomment-2012165497) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#268](https://github.com/aimclub/GOLEM/pull/268#issuecomment-2011691681) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +7. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +8. 🗣 Commented on [#1475](https://github.com/rpm-software-management/ci-dnf-stack/pull/1475#issuecomment-2010472975) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +9. 🗣 Commented on [#185](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/185#issuecomment-2010431110) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +10. 🗣 Commented on [#495](https://github.com/HEPCloud/decisionengine_modules/pull/495#issuecomment-2010072625) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) From 2135c7d1e96ba6128b127766d1123d78db7b5c9b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Mar 2024 18:19:48 +0000 Subject: [PATCH 1706/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 40f08ce9..acdca784 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#118](https://github.com/Richard-Sti/csiborgtools/pull/118#issuecomment-2012736178) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -2. 🗣 Commented on [#3143](https://github.com/dipy/dipy/pull/3143#issuecomment-2012618357) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#117](https://github.com/MDAnalysis/mdacli/pull/117#issuecomment-2012525193) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -4. 🗣 Commented on [#819](https://github.com/spacetelescope/webbpsf/pull/819#issuecomment-2012165497) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#268](https://github.com/aimclub/GOLEM/pull/268#issuecomment-2011691681) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -7. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -8. 🗣 Commented on [#1475](https://github.com/rpm-software-management/ci-dnf-stack/pull/1475#issuecomment-2010472975) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -9. 🗣 Commented on [#185](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/185#issuecomment-2010431110) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -10. 🗣 Commented on [#495](https://github.com/HEPCloud/decisionengine_modules/pull/495#issuecomment-2010072625) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +1. 🗣 Commented on [#950](https://github.com/scilus/scilpy/pull/950#issuecomment-2013173099) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#118](https://github.com/Richard-Sti/csiborgtools/pull/118#issuecomment-2012736178) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +3. 🗣 Commented on [#3143](https://github.com/dipy/dipy/pull/3143#issuecomment-2012618357) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#117](https://github.com/MDAnalysis/mdacli/pull/117#issuecomment-2012525193) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +5. 🗣 Commented on [#819](https://github.com/spacetelescope/webbpsf/pull/819#issuecomment-2012165497) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#268](https://github.com/aimclub/GOLEM/pull/268#issuecomment-2011691681) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +8. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +9. 🗣 Commented on [#1475](https://github.com/rpm-software-management/ci-dnf-stack/pull/1475#issuecomment-2010472975) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +10. 🗣 Commented on [#185](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/185#issuecomment-2010431110) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) From 7a3228cad268e619a3b6782c54400c68aa03762e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Mar 2024 20:38:03 +0000 Subject: [PATCH 1707/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index acdca784..b65bea64 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#950](https://github.com/scilus/scilpy/pull/950#issuecomment-2013173099) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#118](https://github.com/Richard-Sti/csiborgtools/pull/118#issuecomment-2012736178) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -3. 🗣 Commented on [#3143](https://github.com/dipy/dipy/pull/3143#issuecomment-2012618357) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#117](https://github.com/MDAnalysis/mdacli/pull/117#issuecomment-2012525193) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -5. 🗣 Commented on [#819](https://github.com/spacetelescope/webbpsf/pull/819#issuecomment-2012165497) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#268](https://github.com/aimclub/GOLEM/pull/268#issuecomment-2011691681) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -8. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -9. 🗣 Commented on [#1475](https://github.com/rpm-software-management/ci-dnf-stack/pull/1475#issuecomment-2010472975) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -10. 🗣 Commented on [#185](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/185#issuecomment-2010431110) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +1. 🗣 Commented on [#92](https://github.com/spacetelescope/jwst_gtvt/pull/92#issuecomment-2013651915) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) +2. 🗣 Commented on [#950](https://github.com/scilus/scilpy/pull/950#issuecomment-2013173099) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#118](https://github.com/Richard-Sti/csiborgtools/pull/118#issuecomment-2012736178) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +4. 🗣 Commented on [#3143](https://github.com/dipy/dipy/pull/3143#issuecomment-2012618357) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#117](https://github.com/MDAnalysis/mdacli/pull/117#issuecomment-2012525193) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +6. 🗣 Commented on [#819](https://github.com/spacetelescope/webbpsf/pull/819#issuecomment-2012165497) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +7. 🗣 Commented on [#268](https://github.com/aimclub/GOLEM/pull/268#issuecomment-2011691681) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +8. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +9. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +10. 🗣 Commented on [#1475](https://github.com/rpm-software-management/ci-dnf-stack/pull/1475#issuecomment-2010472975) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) From dd9304b20d675c614322eb7a64dffbbd291edf7d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Mar 2024 23:18:10 +0000 Subject: [PATCH 1708/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b65bea64..2d03d4c7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#92](https://github.com/spacetelescope/jwst_gtvt/pull/92#issuecomment-2013651915) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) -2. 🗣 Commented on [#950](https://github.com/scilus/scilpy/pull/950#issuecomment-2013173099) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#118](https://github.com/Richard-Sti/csiborgtools/pull/118#issuecomment-2012736178) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -4. 🗣 Commented on [#3143](https://github.com/dipy/dipy/pull/3143#issuecomment-2012618357) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#117](https://github.com/MDAnalysis/mdacli/pull/117#issuecomment-2012525193) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -6. 🗣 Commented on [#819](https://github.com/spacetelescope/webbpsf/pull/819#issuecomment-2012165497) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -7. 🗣 Commented on [#268](https://github.com/aimclub/GOLEM/pull/268#issuecomment-2011691681) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -8. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -9. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -10. 🗣 Commented on [#1475](https://github.com/rpm-software-management/ci-dnf-stack/pull/1475#issuecomment-2010472975) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +1. 🗣 Commented on [#4523](https://github.com/MDAnalysis/mdanalysis/pull/4523#issuecomment-2013997312) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#92](https://github.com/spacetelescope/jwst_gtvt/pull/92#issuecomment-2013651915) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) +3. 🗣 Commented on [#950](https://github.com/scilus/scilpy/pull/950#issuecomment-2013173099) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#118](https://github.com/Richard-Sti/csiborgtools/pull/118#issuecomment-2012736178) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +5. 🗣 Commented on [#3143](https://github.com/dipy/dipy/pull/3143#issuecomment-2012618357) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#117](https://github.com/MDAnalysis/mdacli/pull/117#issuecomment-2012525193) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +7. 🗣 Commented on [#819](https://github.com/spacetelescope/webbpsf/pull/819#issuecomment-2012165497) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#268](https://github.com/aimclub/GOLEM/pull/268#issuecomment-2011691681) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +9. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +10. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) From eb0109fcd3762dcf46a93d487c2974423c68b22e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Mar 2024 23:37:09 +0000 Subject: [PATCH 1709/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2d03d4c7..ca61287b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4523](https://github.com/MDAnalysis/mdanalysis/pull/4523#issuecomment-2013997312) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#92](https://github.com/spacetelescope/jwst_gtvt/pull/92#issuecomment-2013651915) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) -3. 🗣 Commented on [#950](https://github.com/scilus/scilpy/pull/950#issuecomment-2013173099) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#118](https://github.com/Richard-Sti/csiborgtools/pull/118#issuecomment-2012736178) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -5. 🗣 Commented on [#3143](https://github.com/dipy/dipy/pull/3143#issuecomment-2012618357) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#117](https://github.com/MDAnalysis/mdacli/pull/117#issuecomment-2012525193) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -7. 🗣 Commented on [#819](https://github.com/spacetelescope/webbpsf/pull/819#issuecomment-2012165497) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#268](https://github.com/aimclub/GOLEM/pull/268#issuecomment-2011691681) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -9. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -10. 🗣 Commented on [#527](https://github.com/UIUCLibrary/Speedwagon/pull/527#issuecomment-2010487619) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +1. 🗣 Commented on [#4524](https://github.com/MDAnalysis/mdanalysis/pull/4524#issuecomment-2014047037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#4523](https://github.com/MDAnalysis/mdanalysis/pull/4523#issuecomment-2013997312) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#92](https://github.com/spacetelescope/jwst_gtvt/pull/92#issuecomment-2013651915) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) +4. 🗣 Commented on [#950](https://github.com/scilus/scilpy/pull/950#issuecomment-2013173099) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#118](https://github.com/Richard-Sti/csiborgtools/pull/118#issuecomment-2012736178) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +6. 🗣 Commented on [#3143](https://github.com/dipy/dipy/pull/3143#issuecomment-2012618357) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#117](https://github.com/MDAnalysis/mdacli/pull/117#issuecomment-2012525193) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +8. 🗣 Commented on [#819](https://github.com/spacetelescope/webbpsf/pull/819#issuecomment-2012165497) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +9. 🗣 Commented on [#268](https://github.com/aimclub/GOLEM/pull/268#issuecomment-2011691681) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) From 897230b30c79e9f000b2f2c01e56a9cbfc918aaf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 01:08:48 +0000 Subject: [PATCH 1710/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ca61287b..3ef563fd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4524](https://github.com/MDAnalysis/mdanalysis/pull/4524#issuecomment-2014047037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#4523](https://github.com/MDAnalysis/mdanalysis/pull/4523#issuecomment-2013997312) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#92](https://github.com/spacetelescope/jwst_gtvt/pull/92#issuecomment-2013651915) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) -4. 🗣 Commented on [#950](https://github.com/scilus/scilpy/pull/950#issuecomment-2013173099) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#118](https://github.com/Richard-Sti/csiborgtools/pull/118#issuecomment-2012736178) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -6. 🗣 Commented on [#3143](https://github.com/dipy/dipy/pull/3143#issuecomment-2012618357) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#117](https://github.com/MDAnalysis/mdacli/pull/117#issuecomment-2012525193) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -8. 🗣 Commented on [#819](https://github.com/spacetelescope/webbpsf/pull/819#issuecomment-2012165497) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -9. 🗣 Commented on [#268](https://github.com/aimclub/GOLEM/pull/268#issuecomment-2011691681) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#496](https://github.com/HEPCloud/decisionengine_modules/pull/496#issuecomment-2010630447) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +1. 🗣 Commented on [#51](https://github.com/aguinane/nem-reader/pull/51#issuecomment-2014129487) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +2. 🗣 Commented on [#20](https://github.com/aguinane/nem-writer/pull/20#issuecomment-2014124333) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) +3. 🗣 Commented on [#4524](https://github.com/MDAnalysis/mdanalysis/pull/4524#issuecomment-2014047037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#4523](https://github.com/MDAnalysis/mdanalysis/pull/4523#issuecomment-2013997312) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#92](https://github.com/spacetelescope/jwst_gtvt/pull/92#issuecomment-2013651915) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) +6. 🗣 Commented on [#950](https://github.com/scilus/scilpy/pull/950#issuecomment-2013173099) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#118](https://github.com/Richard-Sti/csiborgtools/pull/118#issuecomment-2012736178) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +8. 🗣 Commented on [#3143](https://github.com/dipy/dipy/pull/3143#issuecomment-2012618357) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#117](https://github.com/MDAnalysis/mdacli/pull/117#issuecomment-2012525193) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +10. 🗣 Commented on [#819](https://github.com/spacetelescope/webbpsf/pull/819#issuecomment-2012165497) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) From 2ca6952a753cd2c902e2391970f632f153d93fbe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 03:17:02 +0000 Subject: [PATCH 1711/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3ef563fd..2f0a15c4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#51](https://github.com/aguinane/nem-reader/pull/51#issuecomment-2014129487) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -2. 🗣 Commented on [#20](https://github.com/aguinane/nem-writer/pull/20#issuecomment-2014124333) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) -3. 🗣 Commented on [#4524](https://github.com/MDAnalysis/mdanalysis/pull/4524#issuecomment-2014047037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#4523](https://github.com/MDAnalysis/mdanalysis/pull/4523#issuecomment-2013997312) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#92](https://github.com/spacetelescope/jwst_gtvt/pull/92#issuecomment-2013651915) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) -6. 🗣 Commented on [#950](https://github.com/scilus/scilpy/pull/950#issuecomment-2013173099) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#118](https://github.com/Richard-Sti/csiborgtools/pull/118#issuecomment-2012736178) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -8. 🗣 Commented on [#3143](https://github.com/dipy/dipy/pull/3143#issuecomment-2012618357) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#117](https://github.com/MDAnalysis/mdacli/pull/117#issuecomment-2012525193) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -10. 🗣 Commented on [#819](https://github.com/spacetelescope/webbpsf/pull/819#issuecomment-2012165497) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +1. 🗣 Commented on [#28](https://github.com/codingfriendsfun/pcc/pull/28#issuecomment-2014224836) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +2. 🗣 Commented on [#51](https://github.com/aguinane/nem-reader/pull/51#issuecomment-2014129487) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +3. 🗣 Commented on [#20](https://github.com/aguinane/nem-writer/pull/20#issuecomment-2014124333) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) +4. 🗣 Commented on [#4524](https://github.com/MDAnalysis/mdanalysis/pull/4524#issuecomment-2014047037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#4523](https://github.com/MDAnalysis/mdanalysis/pull/4523#issuecomment-2013997312) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#92](https://github.com/spacetelescope/jwst_gtvt/pull/92#issuecomment-2013651915) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) +7. 🗣 Commented on [#950](https://github.com/scilus/scilpy/pull/950#issuecomment-2013173099) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#118](https://github.com/Richard-Sti/csiborgtools/pull/118#issuecomment-2012736178) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +9. 🗣 Commented on [#3143](https://github.com/dipy/dipy/pull/3143#issuecomment-2012618357) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#117](https://github.com/MDAnalysis/mdacli/pull/117#issuecomment-2012525193) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) From 1b3b99d2a22c7df056975a086ae91818a502e4cc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 05:17:50 +0000 Subject: [PATCH 1712/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2f0a15c4..6918d874 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#28](https://github.com/codingfriendsfun/pcc/pull/28#issuecomment-2014224836) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -2. 🗣 Commented on [#51](https://github.com/aguinane/nem-reader/pull/51#issuecomment-2014129487) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -3. 🗣 Commented on [#20](https://github.com/aguinane/nem-writer/pull/20#issuecomment-2014124333) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) -4. 🗣 Commented on [#4524](https://github.com/MDAnalysis/mdanalysis/pull/4524#issuecomment-2014047037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#4523](https://github.com/MDAnalysis/mdanalysis/pull/4523#issuecomment-2013997312) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#92](https://github.com/spacetelescope/jwst_gtvt/pull/92#issuecomment-2013651915) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) -7. 🗣 Commented on [#950](https://github.com/scilus/scilpy/pull/950#issuecomment-2013173099) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#118](https://github.com/Richard-Sti/csiborgtools/pull/118#issuecomment-2012736178) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -9. 🗣 Commented on [#3143](https://github.com/dipy/dipy/pull/3143#issuecomment-2012618357) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#117](https://github.com/MDAnalysis/mdacli/pull/117#issuecomment-2012525193) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +1. 🗣 Commented on [#6](https://github.com/codingfriendsfun/pcc/pull/6#issuecomment-2014364462) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +2. 🗣 Commented on [#28](https://github.com/codingfriendsfun/pcc/pull/28#issuecomment-2014224836) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +3. 🗣 Commented on [#51](https://github.com/aguinane/nem-reader/pull/51#issuecomment-2014129487) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +4. 🗣 Commented on [#20](https://github.com/aguinane/nem-writer/pull/20#issuecomment-2014124333) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) +5. 🗣 Commented on [#4524](https://github.com/MDAnalysis/mdanalysis/pull/4524#issuecomment-2014047037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#4523](https://github.com/MDAnalysis/mdanalysis/pull/4523#issuecomment-2013997312) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#92](https://github.com/spacetelescope/jwst_gtvt/pull/92#issuecomment-2013651915) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) +8. 🗣 Commented on [#950](https://github.com/scilus/scilpy/pull/950#issuecomment-2013173099) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#118](https://github.com/Richard-Sti/csiborgtools/pull/118#issuecomment-2012736178) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +10. 🗣 Commented on [#3143](https://github.com/dipy/dipy/pull/3143#issuecomment-2012618357) in [dipy/dipy](https://github.com/dipy/dipy) From 52e5596c73d59e99d4507b895d83db5f7fde2089 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 06:37:21 +0000 Subject: [PATCH 1713/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6918d874..4088dddd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#6](https://github.com/codingfriendsfun/pcc/pull/6#issuecomment-2014364462) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -2. 🗣 Commented on [#28](https://github.com/codingfriendsfun/pcc/pull/28#issuecomment-2014224836) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -3. 🗣 Commented on [#51](https://github.com/aguinane/nem-reader/pull/51#issuecomment-2014129487) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -4. 🗣 Commented on [#20](https://github.com/aguinane/nem-writer/pull/20#issuecomment-2014124333) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) -5. 🗣 Commented on [#4524](https://github.com/MDAnalysis/mdanalysis/pull/4524#issuecomment-2014047037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#4523](https://github.com/MDAnalysis/mdanalysis/pull/4523#issuecomment-2013997312) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#92](https://github.com/spacetelescope/jwst_gtvt/pull/92#issuecomment-2013651915) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) -8. 🗣 Commented on [#950](https://github.com/scilus/scilpy/pull/950#issuecomment-2013173099) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#118](https://github.com/Richard-Sti/csiborgtools/pull/118#issuecomment-2012736178) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -10. 🗣 Commented on [#3143](https://github.com/dipy/dipy/pull/3143#issuecomment-2012618357) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#543](https://github.com/UsergeTeam/Userge/pull/543#issuecomment-2014437755) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) +2. 🗣 Commented on [#6](https://github.com/codingfriendsfun/pcc/pull/6#issuecomment-2014364462) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +3. 🗣 Commented on [#28](https://github.com/codingfriendsfun/pcc/pull/28#issuecomment-2014224836) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +4. 🗣 Commented on [#51](https://github.com/aguinane/nem-reader/pull/51#issuecomment-2014129487) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +5. 🗣 Commented on [#20](https://github.com/aguinane/nem-writer/pull/20#issuecomment-2014124333) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) +6. 🗣 Commented on [#4524](https://github.com/MDAnalysis/mdanalysis/pull/4524#issuecomment-2014047037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#4523](https://github.com/MDAnalysis/mdanalysis/pull/4523#issuecomment-2013997312) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#92](https://github.com/spacetelescope/jwst_gtvt/pull/92#issuecomment-2013651915) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) +9. 🗣 Commented on [#950](https://github.com/scilus/scilpy/pull/950#issuecomment-2013173099) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#118](https://github.com/Richard-Sti/csiborgtools/pull/118#issuecomment-2012736178) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) From 7977d6ca4af98b0f9d39748dfa9a6096004d6bdb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 07:37:21 +0000 Subject: [PATCH 1714/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4088dddd..b392500a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#543](https://github.com/UsergeTeam/Userge/pull/543#issuecomment-2014437755) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) -2. 🗣 Commented on [#6](https://github.com/codingfriendsfun/pcc/pull/6#issuecomment-2014364462) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -3. 🗣 Commented on [#28](https://github.com/codingfriendsfun/pcc/pull/28#issuecomment-2014224836) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -4. 🗣 Commented on [#51](https://github.com/aguinane/nem-reader/pull/51#issuecomment-2014129487) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -5. 🗣 Commented on [#20](https://github.com/aguinane/nem-writer/pull/20#issuecomment-2014124333) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) -6. 🗣 Commented on [#4524](https://github.com/MDAnalysis/mdanalysis/pull/4524#issuecomment-2014047037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#4523](https://github.com/MDAnalysis/mdanalysis/pull/4523#issuecomment-2013997312) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#92](https://github.com/spacetelescope/jwst_gtvt/pull/92#issuecomment-2013651915) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) -9. 🗣 Commented on [#950](https://github.com/scilus/scilpy/pull/950#issuecomment-2013173099) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#118](https://github.com/Richard-Sti/csiborgtools/pull/118#issuecomment-2012736178) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +1. 🗣 Commented on [#334](https://github.com/UsergeTeam/Userge-Plugins/pull/334#issuecomment-2014488275) in [UsergeTeam/Userge-Plugins](https://github.com/UsergeTeam/Userge-Plugins) +2. 🗣 Commented on [#543](https://github.com/UsergeTeam/Userge/pull/543#issuecomment-2014437755) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) +3. 🗣 Commented on [#6](https://github.com/codingfriendsfun/pcc/pull/6#issuecomment-2014364462) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +4. 🗣 Commented on [#28](https://github.com/codingfriendsfun/pcc/pull/28#issuecomment-2014224836) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +5. 🗣 Commented on [#51](https://github.com/aguinane/nem-reader/pull/51#issuecomment-2014129487) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +6. 🗣 Commented on [#20](https://github.com/aguinane/nem-writer/pull/20#issuecomment-2014124333) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) +7. 🗣 Commented on [#4524](https://github.com/MDAnalysis/mdanalysis/pull/4524#issuecomment-2014047037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#4523](https://github.com/MDAnalysis/mdanalysis/pull/4523#issuecomment-2013997312) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#92](https://github.com/spacetelescope/jwst_gtvt/pull/92#issuecomment-2013651915) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) +10. 🗣 Commented on [#950](https://github.com/scilus/scilpy/pull/950#issuecomment-2013173099) in [scilus/scilpy](https://github.com/scilus/scilpy) From 2f4a3977b3916fa82cd967d5c7ab62e290f385ab Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 10:17:15 +0000 Subject: [PATCH 1715/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b392500a..c51d49a1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#334](https://github.com/UsergeTeam/Userge-Plugins/pull/334#issuecomment-2014488275) in [UsergeTeam/Userge-Plugins](https://github.com/UsergeTeam/Userge-Plugins) -2. 🗣 Commented on [#543](https://github.com/UsergeTeam/Userge/pull/543#issuecomment-2014437755) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) -3. 🗣 Commented on [#6](https://github.com/codingfriendsfun/pcc/pull/6#issuecomment-2014364462) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -4. 🗣 Commented on [#28](https://github.com/codingfriendsfun/pcc/pull/28#issuecomment-2014224836) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -5. 🗣 Commented on [#51](https://github.com/aguinane/nem-reader/pull/51#issuecomment-2014129487) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -6. 🗣 Commented on [#20](https://github.com/aguinane/nem-writer/pull/20#issuecomment-2014124333) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) -7. 🗣 Commented on [#4524](https://github.com/MDAnalysis/mdanalysis/pull/4524#issuecomment-2014047037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#4523](https://github.com/MDAnalysis/mdanalysis/pull/4523#issuecomment-2013997312) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#92](https://github.com/spacetelescope/jwst_gtvt/pull/92#issuecomment-2013651915) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) -10. 🗣 Commented on [#950](https://github.com/scilus/scilpy/pull/950#issuecomment-2013173099) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#35](https://github.com/eastgenomics/ansible-run-monitoring/pull/35#issuecomment-2014739225) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +2. 🗣 Commented on [#334](https://github.com/UsergeTeam/Userge-Plugins/pull/334#issuecomment-2014488275) in [UsergeTeam/Userge-Plugins](https://github.com/UsergeTeam/Userge-Plugins) +3. 🗣 Commented on [#543](https://github.com/UsergeTeam/Userge/pull/543#issuecomment-2014437755) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) +4. 🗣 Commented on [#6](https://github.com/codingfriendsfun/pcc/pull/6#issuecomment-2014364462) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +5. 🗣 Commented on [#28](https://github.com/codingfriendsfun/pcc/pull/28#issuecomment-2014224836) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +6. 🗣 Commented on [#51](https://github.com/aguinane/nem-reader/pull/51#issuecomment-2014129487) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +7. 🗣 Commented on [#20](https://github.com/aguinane/nem-writer/pull/20#issuecomment-2014124333) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) +8. 🗣 Commented on [#4524](https://github.com/MDAnalysis/mdanalysis/pull/4524#issuecomment-2014047037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#4523](https://github.com/MDAnalysis/mdanalysis/pull/4523#issuecomment-2013997312) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#92](https://github.com/spacetelescope/jwst_gtvt/pull/92#issuecomment-2013651915) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) From 355f36c2fdbae8184dd6e52b4de0a1182e2de4c3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 11:37:08 +0000 Subject: [PATCH 1716/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c51d49a1..6d810938 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#35](https://github.com/eastgenomics/ansible-run-monitoring/pull/35#issuecomment-2014739225) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -2. 🗣 Commented on [#334](https://github.com/UsergeTeam/Userge-Plugins/pull/334#issuecomment-2014488275) in [UsergeTeam/Userge-Plugins](https://github.com/UsergeTeam/Userge-Plugins) -3. 🗣 Commented on [#543](https://github.com/UsergeTeam/Userge/pull/543#issuecomment-2014437755) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) -4. 🗣 Commented on [#6](https://github.com/codingfriendsfun/pcc/pull/6#issuecomment-2014364462) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -5. 🗣 Commented on [#28](https://github.com/codingfriendsfun/pcc/pull/28#issuecomment-2014224836) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -6. 🗣 Commented on [#51](https://github.com/aguinane/nem-reader/pull/51#issuecomment-2014129487) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -7. 🗣 Commented on [#20](https://github.com/aguinane/nem-writer/pull/20#issuecomment-2014124333) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) -8. 🗣 Commented on [#4524](https://github.com/MDAnalysis/mdanalysis/pull/4524#issuecomment-2014047037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#4523](https://github.com/MDAnalysis/mdanalysis/pull/4523#issuecomment-2013997312) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#92](https://github.com/spacetelescope/jwst_gtvt/pull/92#issuecomment-2013651915) in [spacetelescope/jwst_gtvt](https://github.com/spacetelescope/jwst_gtvt) +1. 🗣 Commented on [#230](https://github.com/my8100/scrapydweb/pull/230#issuecomment-2014871250) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +2. 🗣 Commented on [#35](https://github.com/eastgenomics/ansible-run-monitoring/pull/35#issuecomment-2014739225) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +3. 🗣 Commented on [#334](https://github.com/UsergeTeam/Userge-Plugins/pull/334#issuecomment-2014488275) in [UsergeTeam/Userge-Plugins](https://github.com/UsergeTeam/Userge-Plugins) +4. 🗣 Commented on [#543](https://github.com/UsergeTeam/Userge/pull/543#issuecomment-2014437755) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) +5. 🗣 Commented on [#6](https://github.com/codingfriendsfun/pcc/pull/6#issuecomment-2014364462) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +6. 🗣 Commented on [#28](https://github.com/codingfriendsfun/pcc/pull/28#issuecomment-2014224836) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +7. 🗣 Commented on [#51](https://github.com/aguinane/nem-reader/pull/51#issuecomment-2014129487) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +8. 🗣 Commented on [#20](https://github.com/aguinane/nem-writer/pull/20#issuecomment-2014124333) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) +9. 🗣 Commented on [#4524](https://github.com/MDAnalysis/mdanalysis/pull/4524#issuecomment-2014047037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#4523](https://github.com/MDAnalysis/mdanalysis/pull/4523#issuecomment-2013997312) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 2cf85ecd1c42df216a5d41824dd86ec173928492 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 14:15:13 +0000 Subject: [PATCH 1717/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6d810938..278e3c4b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#230](https://github.com/my8100/scrapydweb/pull/230#issuecomment-2014871250) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) -2. 🗣 Commented on [#35](https://github.com/eastgenomics/ansible-run-monitoring/pull/35#issuecomment-2014739225) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -3. 🗣 Commented on [#334](https://github.com/UsergeTeam/Userge-Plugins/pull/334#issuecomment-2014488275) in [UsergeTeam/Userge-Plugins](https://github.com/UsergeTeam/Userge-Plugins) -4. 🗣 Commented on [#543](https://github.com/UsergeTeam/Userge/pull/543#issuecomment-2014437755) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) -5. 🗣 Commented on [#6](https://github.com/codingfriendsfun/pcc/pull/6#issuecomment-2014364462) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -6. 🗣 Commented on [#28](https://github.com/codingfriendsfun/pcc/pull/28#issuecomment-2014224836) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -7. 🗣 Commented on [#51](https://github.com/aguinane/nem-reader/pull/51#issuecomment-2014129487) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -8. 🗣 Commented on [#20](https://github.com/aguinane/nem-writer/pull/20#issuecomment-2014124333) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) -9. 🗣 Commented on [#4524](https://github.com/MDAnalysis/mdanalysis/pull/4524#issuecomment-2014047037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#4523](https://github.com/MDAnalysis/mdanalysis/pull/4523#issuecomment-2013997312) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#820](https://github.com/spacetelescope/webbpsf/pull/820#issuecomment-2015179237) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#230](https://github.com/my8100/scrapydweb/pull/230#issuecomment-2014871250) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +3. 🗣 Commented on [#35](https://github.com/eastgenomics/ansible-run-monitoring/pull/35#issuecomment-2014739225) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +4. 🗣 Commented on [#334](https://github.com/UsergeTeam/Userge-Plugins/pull/334#issuecomment-2014488275) in [UsergeTeam/Userge-Plugins](https://github.com/UsergeTeam/Userge-Plugins) +5. 🗣 Commented on [#543](https://github.com/UsergeTeam/Userge/pull/543#issuecomment-2014437755) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) +6. 🗣 Commented on [#6](https://github.com/codingfriendsfun/pcc/pull/6#issuecomment-2014364462) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +7. 🗣 Commented on [#28](https://github.com/codingfriendsfun/pcc/pull/28#issuecomment-2014224836) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +8. 🗣 Commented on [#51](https://github.com/aguinane/nem-reader/pull/51#issuecomment-2014129487) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +9. 🗣 Commented on [#20](https://github.com/aguinane/nem-writer/pull/20#issuecomment-2014124333) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) +10. 🗣 Commented on [#4524](https://github.com/MDAnalysis/mdanalysis/pull/4524#issuecomment-2014047037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 46fbea524590a1ed2222cc67a103e02ecf939a00 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 15:15:21 +0000 Subject: [PATCH 1718/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 278e3c4b..990bfca3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#820](https://github.com/spacetelescope/webbpsf/pull/820#issuecomment-2015179237) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#230](https://github.com/my8100/scrapydweb/pull/230#issuecomment-2014871250) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) -3. 🗣 Commented on [#35](https://github.com/eastgenomics/ansible-run-monitoring/pull/35#issuecomment-2014739225) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -4. 🗣 Commented on [#334](https://github.com/UsergeTeam/Userge-Plugins/pull/334#issuecomment-2014488275) in [UsergeTeam/Userge-Plugins](https://github.com/UsergeTeam/Userge-Plugins) -5. 🗣 Commented on [#543](https://github.com/UsergeTeam/Userge/pull/543#issuecomment-2014437755) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) -6. 🗣 Commented on [#6](https://github.com/codingfriendsfun/pcc/pull/6#issuecomment-2014364462) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -7. 🗣 Commented on [#28](https://github.com/codingfriendsfun/pcc/pull/28#issuecomment-2014224836) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -8. 🗣 Commented on [#51](https://github.com/aguinane/nem-reader/pull/51#issuecomment-2014129487) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -9. 🗣 Commented on [#20](https://github.com/aguinane/nem-writer/pull/20#issuecomment-2014124333) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) -10. 🗣 Commented on [#4524](https://github.com/MDAnalysis/mdanalysis/pull/4524#issuecomment-2014047037) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#768](https://github.com/spacetelescope/webbpsf/pull/768#issuecomment-2015281241) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#820](https://github.com/spacetelescope/webbpsf/pull/820#issuecomment-2015179237) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#230](https://github.com/my8100/scrapydweb/pull/230#issuecomment-2014871250) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +4. 🗣 Commented on [#35](https://github.com/eastgenomics/ansible-run-monitoring/pull/35#issuecomment-2014739225) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +5. 🗣 Commented on [#334](https://github.com/UsergeTeam/Userge-Plugins/pull/334#issuecomment-2014488275) in [UsergeTeam/Userge-Plugins](https://github.com/UsergeTeam/Userge-Plugins) +6. 🗣 Commented on [#543](https://github.com/UsergeTeam/Userge/pull/543#issuecomment-2014437755) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) +7. 🗣 Commented on [#6](https://github.com/codingfriendsfun/pcc/pull/6#issuecomment-2014364462) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +8. 🗣 Commented on [#28](https://github.com/codingfriendsfun/pcc/pull/28#issuecomment-2014224836) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +9. 🗣 Commented on [#51](https://github.com/aguinane/nem-reader/pull/51#issuecomment-2014129487) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +10. 🗣 Commented on [#20](https://github.com/aguinane/nem-writer/pull/20#issuecomment-2014124333) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) From e162eda0652ee4459d810a143ea6eae669a5a92f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 16:20:28 +0000 Subject: [PATCH 1719/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 990bfca3..e1218933 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#768](https://github.com/spacetelescope/webbpsf/pull/768#issuecomment-2015281241) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#820](https://github.com/spacetelescope/webbpsf/pull/820#issuecomment-2015179237) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#230](https://github.com/my8100/scrapydweb/pull/230#issuecomment-2014871250) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) -4. 🗣 Commented on [#35](https://github.com/eastgenomics/ansible-run-monitoring/pull/35#issuecomment-2014739225) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -5. 🗣 Commented on [#334](https://github.com/UsergeTeam/Userge-Plugins/pull/334#issuecomment-2014488275) in [UsergeTeam/Userge-Plugins](https://github.com/UsergeTeam/Userge-Plugins) -6. 🗣 Commented on [#543](https://github.com/UsergeTeam/Userge/pull/543#issuecomment-2014437755) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) -7. 🗣 Commented on [#6](https://github.com/codingfriendsfun/pcc/pull/6#issuecomment-2014364462) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -8. 🗣 Commented on [#28](https://github.com/codingfriendsfun/pcc/pull/28#issuecomment-2014224836) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -9. 🗣 Commented on [#51](https://github.com/aguinane/nem-reader/pull/51#issuecomment-2014129487) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -10. 🗣 Commented on [#20](https://github.com/aguinane/nem-writer/pull/20#issuecomment-2014124333) in [aguinane/nem-writer](https://github.com/aguinane/nem-writer) +1. 🗣 Commented on [#529](https://github.com/UIUCLibrary/Speedwagon/pull/529#issuecomment-2015435880) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +2. 🗣 Commented on [#528](https://github.com/UIUCLibrary/Speedwagon/pull/528#issuecomment-2015433498) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +3. 🗣 Commented on [#280](https://github.com/boutproject/xBOUT/pull/280#issuecomment-2015374949) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) +4. 🗣 Commented on [#768](https://github.com/spacetelescope/webbpsf/pull/768#issuecomment-2015281241) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#820](https://github.com/spacetelescope/webbpsf/pull/820#issuecomment-2015179237) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#230](https://github.com/my8100/scrapydweb/pull/230#issuecomment-2014871250) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +7. 🗣 Commented on [#35](https://github.com/eastgenomics/ansible-run-monitoring/pull/35#issuecomment-2014739225) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +8. 🗣 Commented on [#334](https://github.com/UsergeTeam/Userge-Plugins/pull/334#issuecomment-2014488275) in [UsergeTeam/Userge-Plugins](https://github.com/UsergeTeam/Userge-Plugins) +9. 🗣 Commented on [#543](https://github.com/UsergeTeam/Userge/pull/543#issuecomment-2014437755) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) +10. 🗣 Commented on [#6](https://github.com/codingfriendsfun/pcc/pull/6#issuecomment-2014364462) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) From bdd6c067a8007af8b19bfe2209569f9b4e9569f5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 18:18:55 +0000 Subject: [PATCH 1720/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e1218933..ff85b1e5 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#529](https://github.com/UIUCLibrary/Speedwagon/pull/529#issuecomment-2015435880) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -2. 🗣 Commented on [#528](https://github.com/UIUCLibrary/Speedwagon/pull/528#issuecomment-2015433498) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -3. 🗣 Commented on [#280](https://github.com/boutproject/xBOUT/pull/280#issuecomment-2015374949) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) -4. 🗣 Commented on [#768](https://github.com/spacetelescope/webbpsf/pull/768#issuecomment-2015281241) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#820](https://github.com/spacetelescope/webbpsf/pull/820#issuecomment-2015179237) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#230](https://github.com/my8100/scrapydweb/pull/230#issuecomment-2014871250) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) -7. 🗣 Commented on [#35](https://github.com/eastgenomics/ansible-run-monitoring/pull/35#issuecomment-2014739225) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -8. 🗣 Commented on [#334](https://github.com/UsergeTeam/Userge-Plugins/pull/334#issuecomment-2014488275) in [UsergeTeam/Userge-Plugins](https://github.com/UsergeTeam/Userge-Plugins) -9. 🗣 Commented on [#543](https://github.com/UsergeTeam/Userge/pull/543#issuecomment-2014437755) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) -10. 🗣 Commented on [#6](https://github.com/codingfriendsfun/pcc/pull/6#issuecomment-2014364462) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +1. 🗣 Commented on [#2823](https://github.com/metabrainz/listenbrainz-server/pull/2823#issuecomment-2015612819) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#529](https://github.com/UIUCLibrary/Speedwagon/pull/529#issuecomment-2015435880) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +3. 🗣 Commented on [#528](https://github.com/UIUCLibrary/Speedwagon/pull/528#issuecomment-2015433498) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +4. 🗣 Commented on [#280](https://github.com/boutproject/xBOUT/pull/280#issuecomment-2015374949) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) +5. 🗣 Commented on [#768](https://github.com/spacetelescope/webbpsf/pull/768#issuecomment-2015281241) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#820](https://github.com/spacetelescope/webbpsf/pull/820#issuecomment-2015179237) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +7. 🗣 Commented on [#230](https://github.com/my8100/scrapydweb/pull/230#issuecomment-2014871250) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +8. 🗣 Commented on [#35](https://github.com/eastgenomics/ansible-run-monitoring/pull/35#issuecomment-2014739225) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +9. 🗣 Commented on [#334](https://github.com/UsergeTeam/Userge-Plugins/pull/334#issuecomment-2014488275) in [UsergeTeam/Userge-Plugins](https://github.com/UsergeTeam/Userge-Plugins) +10. 🗣 Commented on [#543](https://github.com/UsergeTeam/Userge/pull/543#issuecomment-2014437755) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) From f9aa23a0598e360753a9a779f1517c53a3a6ea13 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 19:14:23 +0000 Subject: [PATCH 1721/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ff85b1e5..f860e87c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2823](https://github.com/metabrainz/listenbrainz-server/pull/2823#issuecomment-2015612819) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#529](https://github.com/UIUCLibrary/Speedwagon/pull/529#issuecomment-2015435880) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -3. 🗣 Commented on [#528](https://github.com/UIUCLibrary/Speedwagon/pull/528#issuecomment-2015433498) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -4. 🗣 Commented on [#280](https://github.com/boutproject/xBOUT/pull/280#issuecomment-2015374949) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) -5. 🗣 Commented on [#768](https://github.com/spacetelescope/webbpsf/pull/768#issuecomment-2015281241) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#820](https://github.com/spacetelescope/webbpsf/pull/820#issuecomment-2015179237) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -7. 🗣 Commented on [#230](https://github.com/my8100/scrapydweb/pull/230#issuecomment-2014871250) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) -8. 🗣 Commented on [#35](https://github.com/eastgenomics/ansible-run-monitoring/pull/35#issuecomment-2014739225) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -9. 🗣 Commented on [#334](https://github.com/UsergeTeam/Userge-Plugins/pull/334#issuecomment-2014488275) in [UsergeTeam/Userge-Plugins](https://github.com/UsergeTeam/Userge-Plugins) -10. 🗣 Commented on [#543](https://github.com/UsergeTeam/Userge/pull/543#issuecomment-2014437755) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) +1. 🗣 Commented on [#5](https://github.com/SandroMartens/DBGSOM/pull/5#issuecomment-2015744238) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) +2. 🗣 Commented on [#2823](https://github.com/metabrainz/listenbrainz-server/pull/2823#issuecomment-2015612819) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#529](https://github.com/UIUCLibrary/Speedwagon/pull/529#issuecomment-2015435880) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +4. 🗣 Commented on [#528](https://github.com/UIUCLibrary/Speedwagon/pull/528#issuecomment-2015433498) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +5. 🗣 Commented on [#280](https://github.com/boutproject/xBOUT/pull/280#issuecomment-2015374949) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) +6. 🗣 Commented on [#768](https://github.com/spacetelescope/webbpsf/pull/768#issuecomment-2015281241) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +7. 🗣 Commented on [#820](https://github.com/spacetelescope/webbpsf/pull/820#issuecomment-2015179237) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#230](https://github.com/my8100/scrapydweb/pull/230#issuecomment-2014871250) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +9. 🗣 Commented on [#35](https://github.com/eastgenomics/ansible-run-monitoring/pull/35#issuecomment-2014739225) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +10. 🗣 Commented on [#334](https://github.com/UsergeTeam/Userge-Plugins/pull/334#issuecomment-2014488275) in [UsergeTeam/Userge-Plugins](https://github.com/UsergeTeam/Userge-Plugins) From 431db4c5e158cad5190f89f949b3e9dafcb4b659 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 20:15:57 +0000 Subject: [PATCH 1722/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f860e87c..950a31a4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5](https://github.com/SandroMartens/DBGSOM/pull/5#issuecomment-2015744238) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) -2. 🗣 Commented on [#2823](https://github.com/metabrainz/listenbrainz-server/pull/2823#issuecomment-2015612819) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#529](https://github.com/UIUCLibrary/Speedwagon/pull/529#issuecomment-2015435880) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -4. 🗣 Commented on [#528](https://github.com/UIUCLibrary/Speedwagon/pull/528#issuecomment-2015433498) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -5. 🗣 Commented on [#280](https://github.com/boutproject/xBOUT/pull/280#issuecomment-2015374949) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) -6. 🗣 Commented on [#768](https://github.com/spacetelescope/webbpsf/pull/768#issuecomment-2015281241) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -7. 🗣 Commented on [#820](https://github.com/spacetelescope/webbpsf/pull/820#issuecomment-2015179237) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#230](https://github.com/my8100/scrapydweb/pull/230#issuecomment-2014871250) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) -9. 🗣 Commented on [#35](https://github.com/eastgenomics/ansible-run-monitoring/pull/35#issuecomment-2014739225) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) -10. 🗣 Commented on [#334](https://github.com/UsergeTeam/Userge-Plugins/pull/334#issuecomment-2014488275) in [UsergeTeam/Userge-Plugins](https://github.com/UsergeTeam/Userge-Plugins) +1. 🗣 Commented on [#1527](https://github.com/spacetelescope/jwql/pull/1527#issuecomment-2015827757) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#5](https://github.com/SandroMartens/DBGSOM/pull/5#issuecomment-2015744238) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) +3. 🗣 Commented on [#2823](https://github.com/metabrainz/listenbrainz-server/pull/2823#issuecomment-2015612819) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#529](https://github.com/UIUCLibrary/Speedwagon/pull/529#issuecomment-2015435880) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +5. 🗣 Commented on [#528](https://github.com/UIUCLibrary/Speedwagon/pull/528#issuecomment-2015433498) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +6. 🗣 Commented on [#280](https://github.com/boutproject/xBOUT/pull/280#issuecomment-2015374949) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) +7. 🗣 Commented on [#768](https://github.com/spacetelescope/webbpsf/pull/768#issuecomment-2015281241) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#820](https://github.com/spacetelescope/webbpsf/pull/820#issuecomment-2015179237) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +9. 🗣 Commented on [#230](https://github.com/my8100/scrapydweb/pull/230#issuecomment-2014871250) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +10. 🗣 Commented on [#35](https://github.com/eastgenomics/ansible-run-monitoring/pull/35#issuecomment-2014739225) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) From d15770ba87ca742137f704f51d5e3f7811f8b38d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Mar 2024 21:14:01 +0000 Subject: [PATCH 1723/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 950a31a4..255e9c00 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1527](https://github.com/spacetelescope/jwql/pull/1527#issuecomment-2015827757) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#5](https://github.com/SandroMartens/DBGSOM/pull/5#issuecomment-2015744238) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) -3. 🗣 Commented on [#2823](https://github.com/metabrainz/listenbrainz-server/pull/2823#issuecomment-2015612819) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#529](https://github.com/UIUCLibrary/Speedwagon/pull/529#issuecomment-2015435880) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -5. 🗣 Commented on [#528](https://github.com/UIUCLibrary/Speedwagon/pull/528#issuecomment-2015433498) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -6. 🗣 Commented on [#280](https://github.com/boutproject/xBOUT/pull/280#issuecomment-2015374949) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) -7. 🗣 Commented on [#768](https://github.com/spacetelescope/webbpsf/pull/768#issuecomment-2015281241) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#820](https://github.com/spacetelescope/webbpsf/pull/820#issuecomment-2015179237) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -9. 🗣 Commented on [#230](https://github.com/my8100/scrapydweb/pull/230#issuecomment-2014871250) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) -10. 🗣 Commented on [#35](https://github.com/eastgenomics/ansible-run-monitoring/pull/35#issuecomment-2014739225) in [eastgenomics/ansible-run-monitoring](https://github.com/eastgenomics/ansible-run-monitoring) +1. 🗣 Commented on [#5526](https://github.com/rhinstaller/anaconda/pull/5526#issuecomment-2015920567) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#1527](https://github.com/spacetelescope/jwql/pull/1527#issuecomment-2015827757) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#5](https://github.com/SandroMartens/DBGSOM/pull/5#issuecomment-2015744238) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) +4. 🗣 Commented on [#2823](https://github.com/metabrainz/listenbrainz-server/pull/2823#issuecomment-2015612819) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#529](https://github.com/UIUCLibrary/Speedwagon/pull/529#issuecomment-2015435880) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +6. 🗣 Commented on [#528](https://github.com/UIUCLibrary/Speedwagon/pull/528#issuecomment-2015433498) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +7. 🗣 Commented on [#280](https://github.com/boutproject/xBOUT/pull/280#issuecomment-2015374949) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) +8. 🗣 Commented on [#768](https://github.com/spacetelescope/webbpsf/pull/768#issuecomment-2015281241) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +9. 🗣 Commented on [#820](https://github.com/spacetelescope/webbpsf/pull/820#issuecomment-2015179237) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +10. 🗣 Commented on [#230](https://github.com/my8100/scrapydweb/pull/230#issuecomment-2014871250) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) From 81a84602da983856a0782047b50666d090c690e4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 02:37:23 +0000 Subject: [PATCH 1724/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 255e9c00..d61a565e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5526](https://github.com/rhinstaller/anaconda/pull/5526#issuecomment-2015920567) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#1527](https://github.com/spacetelescope/jwql/pull/1527#issuecomment-2015827757) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#5](https://github.com/SandroMartens/DBGSOM/pull/5#issuecomment-2015744238) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) -4. 🗣 Commented on [#2823](https://github.com/metabrainz/listenbrainz-server/pull/2823#issuecomment-2015612819) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#529](https://github.com/UIUCLibrary/Speedwagon/pull/529#issuecomment-2015435880) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -6. 🗣 Commented on [#528](https://github.com/UIUCLibrary/Speedwagon/pull/528#issuecomment-2015433498) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -7. 🗣 Commented on [#280](https://github.com/boutproject/xBOUT/pull/280#issuecomment-2015374949) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) -8. 🗣 Commented on [#768](https://github.com/spacetelescope/webbpsf/pull/768#issuecomment-2015281241) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -9. 🗣 Commented on [#820](https://github.com/spacetelescope/webbpsf/pull/820#issuecomment-2015179237) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -10. 🗣 Commented on [#230](https://github.com/my8100/scrapydweb/pull/230#issuecomment-2014871250) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +1. 🗣 Commented on [#104](https://github.com/drauger-os-development/edamame/pull/104#issuecomment-2016314413) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +2. 🗣 Commented on [#5526](https://github.com/rhinstaller/anaconda/pull/5526#issuecomment-2015920567) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#1527](https://github.com/spacetelescope/jwql/pull/1527#issuecomment-2015827757) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#5](https://github.com/SandroMartens/DBGSOM/pull/5#issuecomment-2015744238) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) +5. 🗣 Commented on [#2823](https://github.com/metabrainz/listenbrainz-server/pull/2823#issuecomment-2015612819) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#529](https://github.com/UIUCLibrary/Speedwagon/pull/529#issuecomment-2015435880) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +7. 🗣 Commented on [#528](https://github.com/UIUCLibrary/Speedwagon/pull/528#issuecomment-2015433498) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +8. 🗣 Commented on [#280](https://github.com/boutproject/xBOUT/pull/280#issuecomment-2015374949) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) +9. 🗣 Commented on [#768](https://github.com/spacetelescope/webbpsf/pull/768#issuecomment-2015281241) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +10. 🗣 Commented on [#820](https://github.com/spacetelescope/webbpsf/pull/820#issuecomment-2015179237) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) From b48505b39cd2325893ff1ecd43529d2296060e1f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 03:17:48 +0000 Subject: [PATCH 1725/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d61a565e..0b71ff48 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#104](https://github.com/drauger-os-development/edamame/pull/104#issuecomment-2016314413) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -2. 🗣 Commented on [#5526](https://github.com/rhinstaller/anaconda/pull/5526#issuecomment-2015920567) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#1527](https://github.com/spacetelescope/jwql/pull/1527#issuecomment-2015827757) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#5](https://github.com/SandroMartens/DBGSOM/pull/5#issuecomment-2015744238) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) -5. 🗣 Commented on [#2823](https://github.com/metabrainz/listenbrainz-server/pull/2823#issuecomment-2015612819) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#529](https://github.com/UIUCLibrary/Speedwagon/pull/529#issuecomment-2015435880) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -7. 🗣 Commented on [#528](https://github.com/UIUCLibrary/Speedwagon/pull/528#issuecomment-2015433498) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -8. 🗣 Commented on [#280](https://github.com/boutproject/xBOUT/pull/280#issuecomment-2015374949) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) -9. 🗣 Commented on [#768](https://github.com/spacetelescope/webbpsf/pull/768#issuecomment-2015281241) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -10. 🗣 Commented on [#820](https://github.com/spacetelescope/webbpsf/pull/820#issuecomment-2015179237) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +1. 🗣 Commented on [#1519](https://github.com/spacetelescope/jwql/pull/1519#issuecomment-2016320066) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#104](https://github.com/drauger-os-development/edamame/pull/104#issuecomment-2016314413) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +3. 🗣 Commented on [#5526](https://github.com/rhinstaller/anaconda/pull/5526#issuecomment-2015920567) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#1527](https://github.com/spacetelescope/jwql/pull/1527#issuecomment-2015827757) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#5](https://github.com/SandroMartens/DBGSOM/pull/5#issuecomment-2015744238) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) +6. 🗣 Commented on [#2823](https://github.com/metabrainz/listenbrainz-server/pull/2823#issuecomment-2015612819) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#529](https://github.com/UIUCLibrary/Speedwagon/pull/529#issuecomment-2015435880) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +8. 🗣 Commented on [#528](https://github.com/UIUCLibrary/Speedwagon/pull/528#issuecomment-2015433498) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +9. 🗣 Commented on [#280](https://github.com/boutproject/xBOUT/pull/280#issuecomment-2015374949) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) +10. 🗣 Commented on [#768](https://github.com/spacetelescope/webbpsf/pull/768#issuecomment-2015281241) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) From 52eff990dd3848388b8c21a264aa906962887715 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 13:15:32 +0000 Subject: [PATCH 1726/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0b71ff48..cd663fb1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1519](https://github.com/spacetelescope/jwql/pull/1519#issuecomment-2016320066) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#104](https://github.com/drauger-os-development/edamame/pull/104#issuecomment-2016314413) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -3. 🗣 Commented on [#5526](https://github.com/rhinstaller/anaconda/pull/5526#issuecomment-2015920567) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#1527](https://github.com/spacetelescope/jwql/pull/1527#issuecomment-2015827757) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#5](https://github.com/SandroMartens/DBGSOM/pull/5#issuecomment-2015744238) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) -6. 🗣 Commented on [#2823](https://github.com/metabrainz/listenbrainz-server/pull/2823#issuecomment-2015612819) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#529](https://github.com/UIUCLibrary/Speedwagon/pull/529#issuecomment-2015435880) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -8. 🗣 Commented on [#528](https://github.com/UIUCLibrary/Speedwagon/pull/528#issuecomment-2015433498) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -9. 🗣 Commented on [#280](https://github.com/boutproject/xBOUT/pull/280#issuecomment-2015374949) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) -10. 🗣 Commented on [#768](https://github.com/spacetelescope/webbpsf/pull/768#issuecomment-2015281241) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +1. 🗣 Commented on [#1103](https://github.com/lmcinnes/umap/pull/1103#issuecomment-2016489561) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +2. 🗣 Commented on [#1519](https://github.com/spacetelescope/jwql/pull/1519#issuecomment-2016320066) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#104](https://github.com/drauger-os-development/edamame/pull/104#issuecomment-2016314413) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +4. 🗣 Commented on [#5526](https://github.com/rhinstaller/anaconda/pull/5526#issuecomment-2015920567) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#1527](https://github.com/spacetelescope/jwql/pull/1527#issuecomment-2015827757) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#5](https://github.com/SandroMartens/DBGSOM/pull/5#issuecomment-2015744238) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) +7. 🗣 Commented on [#2823](https://github.com/metabrainz/listenbrainz-server/pull/2823#issuecomment-2015612819) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#529](https://github.com/UIUCLibrary/Speedwagon/pull/529#issuecomment-2015435880) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +9. 🗣 Commented on [#528](https://github.com/UIUCLibrary/Speedwagon/pull/528#issuecomment-2015433498) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +10. 🗣 Commented on [#280](https://github.com/boutproject/xBOUT/pull/280#issuecomment-2015374949) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) From 1af5a85efcfdbfecbc52a8a7e018ff2fcf66f24f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 16:37:23 +0000 Subject: [PATCH 1727/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cd663fb1..f9e3b9b0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1103](https://github.com/lmcinnes/umap/pull/1103#issuecomment-2016489561) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -2. 🗣 Commented on [#1519](https://github.com/spacetelescope/jwql/pull/1519#issuecomment-2016320066) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#104](https://github.com/drauger-os-development/edamame/pull/104#issuecomment-2016314413) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -4. 🗣 Commented on [#5526](https://github.com/rhinstaller/anaconda/pull/5526#issuecomment-2015920567) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#1527](https://github.com/spacetelescope/jwql/pull/1527#issuecomment-2015827757) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#5](https://github.com/SandroMartens/DBGSOM/pull/5#issuecomment-2015744238) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) -7. 🗣 Commented on [#2823](https://github.com/metabrainz/listenbrainz-server/pull/2823#issuecomment-2015612819) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#529](https://github.com/UIUCLibrary/Speedwagon/pull/529#issuecomment-2015435880) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -9. 🗣 Commented on [#528](https://github.com/UIUCLibrary/Speedwagon/pull/528#issuecomment-2015433498) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -10. 🗣 Commented on [#280](https://github.com/boutproject/xBOUT/pull/280#issuecomment-2015374949) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) +1. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +2. 🗣 Commented on [#115](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/115#issuecomment-2016539754) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +3. 🗣 Commented on [#1103](https://github.com/lmcinnes/umap/pull/1103#issuecomment-2016489561) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +4. 🗣 Commented on [#1519](https://github.com/spacetelescope/jwql/pull/1519#issuecomment-2016320066) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#104](https://github.com/drauger-os-development/edamame/pull/104#issuecomment-2016314413) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +6. 🗣 Commented on [#5526](https://github.com/rhinstaller/anaconda/pull/5526#issuecomment-2015920567) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#1527](https://github.com/spacetelescope/jwql/pull/1527#issuecomment-2015827757) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#5](https://github.com/SandroMartens/DBGSOM/pull/5#issuecomment-2015744238) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) +9. 🗣 Commented on [#2823](https://github.com/metabrainz/listenbrainz-server/pull/2823#issuecomment-2015612819) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#529](https://github.com/UIUCLibrary/Speedwagon/pull/529#issuecomment-2015435880) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) From 028fc5bf5f9e27825537bc77173fedefa66fb8fd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Mar 2024 20:36:58 +0000 Subject: [PATCH 1728/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f9e3b9b0..aa780ce1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -2. 🗣 Commented on [#115](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/115#issuecomment-2016539754) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -3. 🗣 Commented on [#1103](https://github.com/lmcinnes/umap/pull/1103#issuecomment-2016489561) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -4. 🗣 Commented on [#1519](https://github.com/spacetelescope/jwql/pull/1519#issuecomment-2016320066) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#104](https://github.com/drauger-os-development/edamame/pull/104#issuecomment-2016314413) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -6. 🗣 Commented on [#5526](https://github.com/rhinstaller/anaconda/pull/5526#issuecomment-2015920567) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#1527](https://github.com/spacetelescope/jwql/pull/1527#issuecomment-2015827757) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#5](https://github.com/SandroMartens/DBGSOM/pull/5#issuecomment-2015744238) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) -9. 🗣 Commented on [#2823](https://github.com/metabrainz/listenbrainz-server/pull/2823#issuecomment-2015612819) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#529](https://github.com/UIUCLibrary/Speedwagon/pull/529#issuecomment-2015435880) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +1. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +2. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +3. 🗣 Commented on [#115](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/115#issuecomment-2016539754) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +4. 🗣 Commented on [#1103](https://github.com/lmcinnes/umap/pull/1103#issuecomment-2016489561) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +5. 🗣 Commented on [#1519](https://github.com/spacetelescope/jwql/pull/1519#issuecomment-2016320066) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#104](https://github.com/drauger-os-development/edamame/pull/104#issuecomment-2016314413) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +7. 🗣 Commented on [#5526](https://github.com/rhinstaller/anaconda/pull/5526#issuecomment-2015920567) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#1527](https://github.com/spacetelescope/jwql/pull/1527#issuecomment-2015827757) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#5](https://github.com/SandroMartens/DBGSOM/pull/5#issuecomment-2015744238) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) +10. 🗣 Commented on [#2823](https://github.com/metabrainz/listenbrainz-server/pull/2823#issuecomment-2015612819) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 32fdd1178501ebfafa3ae3163478bc5476d713cb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 24 Mar 2024 05:14:57 +0000 Subject: [PATCH 1729/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index aa780ce1..391afde5 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -2. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -3. 🗣 Commented on [#115](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/115#issuecomment-2016539754) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -4. 🗣 Commented on [#1103](https://github.com/lmcinnes/umap/pull/1103#issuecomment-2016489561) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -5. 🗣 Commented on [#1519](https://github.com/spacetelescope/jwql/pull/1519#issuecomment-2016320066) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#104](https://github.com/drauger-os-development/edamame/pull/104#issuecomment-2016314413) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -7. 🗣 Commented on [#5526](https://github.com/rhinstaller/anaconda/pull/5526#issuecomment-2015920567) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#1527](https://github.com/spacetelescope/jwql/pull/1527#issuecomment-2015827757) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#5](https://github.com/SandroMartens/DBGSOM/pull/5#issuecomment-2015744238) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) -10. 🗣 Commented on [#2823](https://github.com/metabrainz/listenbrainz-server/pull/2823#issuecomment-2015612819) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +2. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +3. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +4. 🗣 Commented on [#115](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/115#issuecomment-2016539754) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +5. 🗣 Commented on [#1103](https://github.com/lmcinnes/umap/pull/1103#issuecomment-2016489561) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +6. 🗣 Commented on [#1519](https://github.com/spacetelescope/jwql/pull/1519#issuecomment-2016320066) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#104](https://github.com/drauger-os-development/edamame/pull/104#issuecomment-2016314413) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +8. 🗣 Commented on [#5526](https://github.com/rhinstaller/anaconda/pull/5526#issuecomment-2015920567) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#1527](https://github.com/spacetelescope/jwql/pull/1527#issuecomment-2015827757) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#5](https://github.com/SandroMartens/DBGSOM/pull/5#issuecomment-2015744238) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) From 375304cfedc372a596519c4d9461d9e7118f5dbe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 24 Mar 2024 14:13:33 +0000 Subject: [PATCH 1730/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 391afde5..7180a933 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -2. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -3. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -4. 🗣 Commented on [#115](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/115#issuecomment-2016539754) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -5. 🗣 Commented on [#1103](https://github.com/lmcinnes/umap/pull/1103#issuecomment-2016489561) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -6. 🗣 Commented on [#1519](https://github.com/spacetelescope/jwql/pull/1519#issuecomment-2016320066) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#104](https://github.com/drauger-os-development/edamame/pull/104#issuecomment-2016314413) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -8. 🗣 Commented on [#5526](https://github.com/rhinstaller/anaconda/pull/5526#issuecomment-2015920567) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#1527](https://github.com/spacetelescope/jwql/pull/1527#issuecomment-2015827757) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#5](https://github.com/SandroMartens/DBGSOM/pull/5#issuecomment-2015744238) in [SandroMartens/DBGSOM](https://github.com/SandroMartens/DBGSOM) +1. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +3. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +4. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +5. 🗣 Commented on [#115](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/115#issuecomment-2016539754) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +6. 🗣 Commented on [#1103](https://github.com/lmcinnes/umap/pull/1103#issuecomment-2016489561) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +7. 🗣 Commented on [#1519](https://github.com/spacetelescope/jwql/pull/1519#issuecomment-2016320066) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#104](https://github.com/drauger-os-development/edamame/pull/104#issuecomment-2016314413) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +9. 🗣 Commented on [#5526](https://github.com/rhinstaller/anaconda/pull/5526#issuecomment-2015920567) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#1527](https://github.com/spacetelescope/jwql/pull/1527#issuecomment-2015827757) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 0220b00e4dd7453c7911e96b0b55490c5400b441 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 03:37:20 +0000 Subject: [PATCH 1731/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7180a933..284ad7b3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -3. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -4. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -5. 🗣 Commented on [#115](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/115#issuecomment-2016539754) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -6. 🗣 Commented on [#1103](https://github.com/lmcinnes/umap/pull/1103#issuecomment-2016489561) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -7. 🗣 Commented on [#1519](https://github.com/spacetelescope/jwql/pull/1519#issuecomment-2016320066) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#104](https://github.com/drauger-os-development/edamame/pull/104#issuecomment-2016314413) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -9. 🗣 Commented on [#5526](https://github.com/rhinstaller/anaconda/pull/5526#issuecomment-2015920567) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#1527](https://github.com/spacetelescope/jwql/pull/1527#issuecomment-2015827757) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#42](https://github.com/AndrewHocking/DanceConnect/pull/42#issuecomment-2017150836) in [AndrewHocking/DanceConnect](https://github.com/AndrewHocking/DanceConnect) +2. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +4. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +5. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +6. 🗣 Commented on [#115](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/115#issuecomment-2016539754) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +7. 🗣 Commented on [#1103](https://github.com/lmcinnes/umap/pull/1103#issuecomment-2016489561) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +8. 🗣 Commented on [#1519](https://github.com/spacetelescope/jwql/pull/1519#issuecomment-2016320066) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#104](https://github.com/drauger-os-development/edamame/pull/104#issuecomment-2016314413) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +10. 🗣 Commented on [#5526](https://github.com/rhinstaller/anaconda/pull/5526#issuecomment-2015920567) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 981955efbefe30a3e4a0fb18f46ae987ac9bc824 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 07:14:50 +0000 Subject: [PATCH 1732/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 284ad7b3..3cdd9a1e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#42](https://github.com/AndrewHocking/DanceConnect/pull/42#issuecomment-2017150836) in [AndrewHocking/DanceConnect](https://github.com/AndrewHocking/DanceConnect) -2. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -4. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -5. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -6. 🗣 Commented on [#115](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/115#issuecomment-2016539754) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -7. 🗣 Commented on [#1103](https://github.com/lmcinnes/umap/pull/1103#issuecomment-2016489561) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -8. 🗣 Commented on [#1519](https://github.com/spacetelescope/jwql/pull/1519#issuecomment-2016320066) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#104](https://github.com/drauger-os-development/edamame/pull/104#issuecomment-2016314413) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -10. 🗣 Commented on [#5526](https://github.com/rhinstaller/anaconda/pull/5526#issuecomment-2015920567) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#4529](https://github.com/MDAnalysis/mdanalysis/pull/4529#issuecomment-2017340697) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#42](https://github.com/AndrewHocking/DanceConnect/pull/42#issuecomment-2017150836) in [AndrewHocking/DanceConnect](https://github.com/AndrewHocking/DanceConnect) +3. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +5. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +6. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +7. 🗣 Commented on [#115](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/115#issuecomment-2016539754) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +8. 🗣 Commented on [#1103](https://github.com/lmcinnes/umap/pull/1103#issuecomment-2016489561) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +9. 🗣 Commented on [#1519](https://github.com/spacetelescope/jwql/pull/1519#issuecomment-2016320066) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#104](https://github.com/drauger-os-development/edamame/pull/104#issuecomment-2016314413) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) From bcbe942e38c769ce37cb4deaa86fd80c6be08d02 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 07:37:00 +0000 Subject: [PATCH 1733/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3cdd9a1e..f4c796de 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4529](https://github.com/MDAnalysis/mdanalysis/pull/4529#issuecomment-2017340697) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#42](https://github.com/AndrewHocking/DanceConnect/pull/42#issuecomment-2017150836) in [AndrewHocking/DanceConnect](https://github.com/AndrewHocking/DanceConnect) -3. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -5. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -6. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -7. 🗣 Commented on [#115](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/115#issuecomment-2016539754) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -8. 🗣 Commented on [#1103](https://github.com/lmcinnes/umap/pull/1103#issuecomment-2016489561) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -9. 🗣 Commented on [#1519](https://github.com/spacetelescope/jwql/pull/1519#issuecomment-2016320066) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#104](https://github.com/drauger-os-development/edamame/pull/104#issuecomment-2016314413) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +1. 🗣 Commented on [#4530](https://github.com/MDAnalysis/mdanalysis/pull/4530#issuecomment-2017372631) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#4529](https://github.com/MDAnalysis/mdanalysis/pull/4529#issuecomment-2017340697) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#42](https://github.com/AndrewHocking/DanceConnect/pull/42#issuecomment-2017150836) in [AndrewHocking/DanceConnect](https://github.com/AndrewHocking/DanceConnect) +4. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +6. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +7. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +8. 🗣 Commented on [#115](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/115#issuecomment-2016539754) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +9. 🗣 Commented on [#1103](https://github.com/lmcinnes/umap/pull/1103#issuecomment-2016489561) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +10. 🗣 Commented on [#1519](https://github.com/spacetelescope/jwql/pull/1519#issuecomment-2016320066) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From d8c02da49ea58a89b5b85cecdc17a99aa9499d49 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 09:16:00 +0000 Subject: [PATCH 1734/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f4c796de..b86cdbd4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4530](https://github.com/MDAnalysis/mdanalysis/pull/4530#issuecomment-2017372631) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#4529](https://github.com/MDAnalysis/mdanalysis/pull/4529#issuecomment-2017340697) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#42](https://github.com/AndrewHocking/DanceConnect/pull/42#issuecomment-2017150836) in [AndrewHocking/DanceConnect](https://github.com/AndrewHocking/DanceConnect) -4. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -6. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -7. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -8. 🗣 Commented on [#115](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/115#issuecomment-2016539754) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -9. 🗣 Commented on [#1103](https://github.com/lmcinnes/umap/pull/1103#issuecomment-2016489561) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -10. 🗣 Commented on [#1519](https://github.com/spacetelescope/jwql/pull/1519#issuecomment-2016320066) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#3887](https://github.com/privacyidea/privacyidea/pull/3887#issuecomment-2017514808) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#4530](https://github.com/MDAnalysis/mdanalysis/pull/4530#issuecomment-2017372631) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#4529](https://github.com/MDAnalysis/mdanalysis/pull/4529#issuecomment-2017340697) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#42](https://github.com/AndrewHocking/DanceConnect/pull/42#issuecomment-2017150836) in [AndrewHocking/DanceConnect](https://github.com/AndrewHocking/DanceConnect) +5. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +7. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +8. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +9. 🗣 Commented on [#115](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/115#issuecomment-2016539754) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +10. 🗣 Commented on [#1103](https://github.com/lmcinnes/umap/pull/1103#issuecomment-2016489561) in [lmcinnes/umap](https://github.com/lmcinnes/umap) From e9e07df74690f4b25e7669a5e91312043c8ad825 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 11:14:35 +0000 Subject: [PATCH 1735/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b86cdbd4..54b0fe66 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3887](https://github.com/privacyidea/privacyidea/pull/3887#issuecomment-2017514808) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#4530](https://github.com/MDAnalysis/mdanalysis/pull/4530#issuecomment-2017372631) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#4529](https://github.com/MDAnalysis/mdanalysis/pull/4529#issuecomment-2017340697) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#42](https://github.com/AndrewHocking/DanceConnect/pull/42#issuecomment-2017150836) in [AndrewHocking/DanceConnect](https://github.com/AndrewHocking/DanceConnect) -5. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -7. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -8. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -9. 🗣 Commented on [#115](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/115#issuecomment-2016539754) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -10. 🗣 Commented on [#1103](https://github.com/lmcinnes/umap/pull/1103#issuecomment-2016489561) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +1. 🗣 Commented on [#622](https://github.com/NeuralEnsemble/elephant/pull/622#issuecomment-2017726134) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +2. 🗣 Commented on [#3887](https://github.com/privacyidea/privacyidea/pull/3887#issuecomment-2017514808) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#4530](https://github.com/MDAnalysis/mdanalysis/pull/4530#issuecomment-2017372631) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#4529](https://github.com/MDAnalysis/mdanalysis/pull/4529#issuecomment-2017340697) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#42](https://github.com/AndrewHocking/DanceConnect/pull/42#issuecomment-2017150836) in [AndrewHocking/DanceConnect](https://github.com/AndrewHocking/DanceConnect) +6. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +8. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +9. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +10. 🗣 Commented on [#115](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/115#issuecomment-2016539754) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) From 641eef92b73c4dad4d83343998f4ee3dd053714e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 12:29:06 +0000 Subject: [PATCH 1736/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 54b0fe66..7d8e7bc0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#622](https://github.com/NeuralEnsemble/elephant/pull/622#issuecomment-2017726134) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -2. 🗣 Commented on [#3887](https://github.com/privacyidea/privacyidea/pull/3887#issuecomment-2017514808) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#4530](https://github.com/MDAnalysis/mdanalysis/pull/4530#issuecomment-2017372631) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#4529](https://github.com/MDAnalysis/mdanalysis/pull/4529#issuecomment-2017340697) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#42](https://github.com/AndrewHocking/DanceConnect/pull/42#issuecomment-2017150836) in [AndrewHocking/DanceConnect](https://github.com/AndrewHocking/DanceConnect) -6. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -8. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -9. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) -10. 🗣 Commented on [#115](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/115#issuecomment-2016539754) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +1. 🗣 Commented on [#2509](https://github.com/metabrainz/listenbrainz-server/pull/2509#issuecomment-2017884499) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#622](https://github.com/NeuralEnsemble/elephant/pull/622#issuecomment-2017726134) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +3. 🗣 Commented on [#3887](https://github.com/privacyidea/privacyidea/pull/3887#issuecomment-2017514808) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +4. 🗣 Commented on [#4530](https://github.com/MDAnalysis/mdanalysis/pull/4530#issuecomment-2017372631) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#4529](https://github.com/MDAnalysis/mdanalysis/pull/4529#issuecomment-2017340697) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#42](https://github.com/AndrewHocking/DanceConnect/pull/42#issuecomment-2017150836) in [AndrewHocking/DanceConnect](https://github.com/AndrewHocking/DanceConnect) +7. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +9. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +10. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) From 198af42ab561bda8f8307c5fe1e7eebb2ca40731 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 13:18:02 +0000 Subject: [PATCH 1737/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7d8e7bc0..06dd855e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2509](https://github.com/metabrainz/listenbrainz-server/pull/2509#issuecomment-2017884499) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#622](https://github.com/NeuralEnsemble/elephant/pull/622#issuecomment-2017726134) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -3. 🗣 Commented on [#3887](https://github.com/privacyidea/privacyidea/pull/3887#issuecomment-2017514808) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -4. 🗣 Commented on [#4530](https://github.com/MDAnalysis/mdanalysis/pull/4530#issuecomment-2017372631) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#4529](https://github.com/MDAnalysis/mdanalysis/pull/4529#issuecomment-2017340697) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#42](https://github.com/AndrewHocking/DanceConnect/pull/42#issuecomment-2017150836) in [AndrewHocking/DanceConnect](https://github.com/AndrewHocking/DanceConnect) -7. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -9. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -10. 🗣 Commented on [#116](https://github.com/alecalve/python-bitcoin-blockchain-parser/pull/116#issuecomment-2016539896) in [alecalve/python-bitcoin-blockchain-parser](https://github.com/alecalve/python-bitcoin-blockchain-parser) +1. 🗣 Commented on [#9175](https://github.com/statsmodels/statsmodels/pull/9175#issuecomment-2017944128) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +2. 🗣 Commented on [#2509](https://github.com/metabrainz/listenbrainz-server/pull/2509#issuecomment-2017884499) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#622](https://github.com/NeuralEnsemble/elephant/pull/622#issuecomment-2017726134) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +4. 🗣 Commented on [#3887](https://github.com/privacyidea/privacyidea/pull/3887#issuecomment-2017514808) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#4530](https://github.com/MDAnalysis/mdanalysis/pull/4530#issuecomment-2017372631) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#4529](https://github.com/MDAnalysis/mdanalysis/pull/4529#issuecomment-2017340697) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#42](https://github.com/AndrewHocking/DanceConnect/pull/42#issuecomment-2017150836) in [AndrewHocking/DanceConnect](https://github.com/AndrewHocking/DanceConnect) +8. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +10. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) From 87cd4dfa21b343959bcdf30d55c2344db3f589e1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 14:14:38 +0000 Subject: [PATCH 1738/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 06dd855e..f8e33505 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#9175](https://github.com/statsmodels/statsmodels/pull/9175#issuecomment-2017944128) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -2. 🗣 Commented on [#2509](https://github.com/metabrainz/listenbrainz-server/pull/2509#issuecomment-2017884499) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#622](https://github.com/NeuralEnsemble/elephant/pull/622#issuecomment-2017726134) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -4. 🗣 Commented on [#3887](https://github.com/privacyidea/privacyidea/pull/3887#issuecomment-2017514808) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#4530](https://github.com/MDAnalysis/mdanalysis/pull/4530#issuecomment-2017372631) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#4529](https://github.com/MDAnalysis/mdanalysis/pull/4529#issuecomment-2017340697) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#42](https://github.com/AndrewHocking/DanceConnect/pull/42#issuecomment-2017150836) in [AndrewHocking/DanceConnect](https://github.com/AndrewHocking/DanceConnect) -8. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -10. 🗣 Commented on [#1104](https://github.com/lmcinnes/umap/pull/1104#issuecomment-2016592988) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +1. 🗣 Commented on [#10](https://github.com/eastgenomics/test_directory_checker/pull/10#issuecomment-2018044128) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +2. 🗣 Commented on [#9175](https://github.com/statsmodels/statsmodels/pull/9175#issuecomment-2017944128) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#2509](https://github.com/metabrainz/listenbrainz-server/pull/2509#issuecomment-2017884499) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#622](https://github.com/NeuralEnsemble/elephant/pull/622#issuecomment-2017726134) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +5. 🗣 Commented on [#3887](https://github.com/privacyidea/privacyidea/pull/3887#issuecomment-2017514808) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#4530](https://github.com/MDAnalysis/mdanalysis/pull/4530#issuecomment-2017372631) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#4529](https://github.com/MDAnalysis/mdanalysis/pull/4529#issuecomment-2017340697) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#42](https://github.com/AndrewHocking/DanceConnect/pull/42#issuecomment-2017150836) in [AndrewHocking/DanceConnect](https://github.com/AndrewHocking/DanceConnect) +9. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) From ed7039005f06f93819776817b4fc78e9a7f67d30 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 14:37:21 +0000 Subject: [PATCH 1739/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f8e33505..a65af7f8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#10](https://github.com/eastgenomics/test_directory_checker/pull/10#issuecomment-2018044128) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -2. 🗣 Commented on [#9175](https://github.com/statsmodels/statsmodels/pull/9175#issuecomment-2017944128) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#2509](https://github.com/metabrainz/listenbrainz-server/pull/2509#issuecomment-2017884499) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#622](https://github.com/NeuralEnsemble/elephant/pull/622#issuecomment-2017726134) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -5. 🗣 Commented on [#3887](https://github.com/privacyidea/privacyidea/pull/3887#issuecomment-2017514808) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#4530](https://github.com/MDAnalysis/mdanalysis/pull/4530#issuecomment-2017372631) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#4529](https://github.com/MDAnalysis/mdanalysis/pull/4529#issuecomment-2017340697) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#42](https://github.com/AndrewHocking/DanceConnect/pull/42#issuecomment-2017150836) in [AndrewHocking/DanceConnect](https://github.com/AndrewHocking/DanceConnect) -9. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#1105](https://github.com/lmcinnes/umap/pull/1105#issuecomment-2016692684) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +1. 🗣 Commented on [#92](https://github.com/cirKITers/Quafel/pull/92#issuecomment-2018133715) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +2. 🗣 Commented on [#10](https://github.com/eastgenomics/test_directory_checker/pull/10#issuecomment-2018044128) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +3. 🗣 Commented on [#9175](https://github.com/statsmodels/statsmodels/pull/9175#issuecomment-2017944128) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +4. 🗣 Commented on [#2509](https://github.com/metabrainz/listenbrainz-server/pull/2509#issuecomment-2017884499) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#622](https://github.com/NeuralEnsemble/elephant/pull/622#issuecomment-2017726134) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +6. 🗣 Commented on [#3887](https://github.com/privacyidea/privacyidea/pull/3887#issuecomment-2017514808) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +7. 🗣 Commented on [#4530](https://github.com/MDAnalysis/mdanalysis/pull/4530#issuecomment-2017372631) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#4529](https://github.com/MDAnalysis/mdanalysis/pull/4529#issuecomment-2017340697) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#42](https://github.com/AndrewHocking/DanceConnect/pull/42#issuecomment-2017150836) in [AndrewHocking/DanceConnect](https://github.com/AndrewHocking/DanceConnect) +10. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 1f0885dbd4012a5303d9608c16344004dca9ec27 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 16:38:11 +0000 Subject: [PATCH 1740/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a65af7f8..3908aa32 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#92](https://github.com/cirKITers/Quafel/pull/92#issuecomment-2018133715) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -2. 🗣 Commented on [#10](https://github.com/eastgenomics/test_directory_checker/pull/10#issuecomment-2018044128) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -3. 🗣 Commented on [#9175](https://github.com/statsmodels/statsmodels/pull/9175#issuecomment-2017944128) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -4. 🗣 Commented on [#2509](https://github.com/metabrainz/listenbrainz-server/pull/2509#issuecomment-2017884499) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#622](https://github.com/NeuralEnsemble/elephant/pull/622#issuecomment-2017726134) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -6. 🗣 Commented on [#3887](https://github.com/privacyidea/privacyidea/pull/3887#issuecomment-2017514808) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -7. 🗣 Commented on [#4530](https://github.com/MDAnalysis/mdanalysis/pull/4530#issuecomment-2017372631) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#4529](https://github.com/MDAnalysis/mdanalysis/pull/4529#issuecomment-2017340697) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#42](https://github.com/AndrewHocking/DanceConnect/pull/42#issuecomment-2017150836) in [AndrewHocking/DanceConnect](https://github.com/AndrewHocking/DanceConnect) -10. 🗣 Commented on [#4528](https://github.com/MDAnalysis/mdanalysis/pull/4528#issuecomment-2016820316) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#5521](https://github.com/rhinstaller/anaconda/pull/5521#issuecomment-2018425480) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#1063](https://github.com/oemof/oemof-solph/pull/1063#issuecomment-2018420381) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +3. 🗣 Commented on [#4531](https://github.com/MDAnalysis/mdanalysis/pull/4531#issuecomment-2018405099) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#92](https://github.com/cirKITers/Quafel/pull/92#issuecomment-2018133715) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +5. 🗣 Commented on [#10](https://github.com/eastgenomics/test_directory_checker/pull/10#issuecomment-2018044128) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +6. 🗣 Commented on [#9175](https://github.com/statsmodels/statsmodels/pull/9175#issuecomment-2017944128) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +7. 🗣 Commented on [#2509](https://github.com/metabrainz/listenbrainz-server/pull/2509#issuecomment-2017884499) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#622](https://github.com/NeuralEnsemble/elephant/pull/622#issuecomment-2017726134) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +9. 🗣 Commented on [#3887](https://github.com/privacyidea/privacyidea/pull/3887#issuecomment-2017514808) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#4530](https://github.com/MDAnalysis/mdanalysis/pull/4530#issuecomment-2017372631) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 37d7a576fea047dda114116b353cf0f6586c17c3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 18:20:48 +0000 Subject: [PATCH 1741/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3908aa32..688313f9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5521](https://github.com/rhinstaller/anaconda/pull/5521#issuecomment-2018425480) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#1063](https://github.com/oemof/oemof-solph/pull/1063#issuecomment-2018420381) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -3. 🗣 Commented on [#4531](https://github.com/MDAnalysis/mdanalysis/pull/4531#issuecomment-2018405099) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#92](https://github.com/cirKITers/Quafel/pull/92#issuecomment-2018133715) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -5. 🗣 Commented on [#10](https://github.com/eastgenomics/test_directory_checker/pull/10#issuecomment-2018044128) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -6. 🗣 Commented on [#9175](https://github.com/statsmodels/statsmodels/pull/9175#issuecomment-2017944128) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -7. 🗣 Commented on [#2509](https://github.com/metabrainz/listenbrainz-server/pull/2509#issuecomment-2017884499) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#622](https://github.com/NeuralEnsemble/elephant/pull/622#issuecomment-2017726134) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -9. 🗣 Commented on [#3887](https://github.com/privacyidea/privacyidea/pull/3887#issuecomment-2017514808) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#4530](https://github.com/MDAnalysis/mdanalysis/pull/4530#issuecomment-2017372631) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#218](https://github.com/cleder/pygeoif/pull/218#issuecomment-2018554342) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +2. 🗣 Commented on [#5521](https://github.com/rhinstaller/anaconda/pull/5521#issuecomment-2018425480) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#1063](https://github.com/oemof/oemof-solph/pull/1063#issuecomment-2018420381) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +4. 🗣 Commented on [#4531](https://github.com/MDAnalysis/mdanalysis/pull/4531#issuecomment-2018405099) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#92](https://github.com/cirKITers/Quafel/pull/92#issuecomment-2018133715) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +6. 🗣 Commented on [#10](https://github.com/eastgenomics/test_directory_checker/pull/10#issuecomment-2018044128) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +7. 🗣 Commented on [#9175](https://github.com/statsmodels/statsmodels/pull/9175#issuecomment-2017944128) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +8. 🗣 Commented on [#2509](https://github.com/metabrainz/listenbrainz-server/pull/2509#issuecomment-2017884499) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#622](https://github.com/NeuralEnsemble/elephant/pull/622#issuecomment-2017726134) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +10. 🗣 Commented on [#3887](https://github.com/privacyidea/privacyidea/pull/3887#issuecomment-2017514808) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From f197ae28217d056045d0116edfc5671905ea3a14 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Mar 2024 02:02:53 +0000 Subject: [PATCH 1742/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 688313f9..e69de1f0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#218](https://github.com/cleder/pygeoif/pull/218#issuecomment-2018554342) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -2. 🗣 Commented on [#5521](https://github.com/rhinstaller/anaconda/pull/5521#issuecomment-2018425480) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#1063](https://github.com/oemof/oemof-solph/pull/1063#issuecomment-2018420381) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -4. 🗣 Commented on [#4531](https://github.com/MDAnalysis/mdanalysis/pull/4531#issuecomment-2018405099) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#92](https://github.com/cirKITers/Quafel/pull/92#issuecomment-2018133715) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -6. 🗣 Commented on [#10](https://github.com/eastgenomics/test_directory_checker/pull/10#issuecomment-2018044128) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -7. 🗣 Commented on [#9175](https://github.com/statsmodels/statsmodels/pull/9175#issuecomment-2017944128) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -8. 🗣 Commented on [#2509](https://github.com/metabrainz/listenbrainz-server/pull/2509#issuecomment-2017884499) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#622](https://github.com/NeuralEnsemble/elephant/pull/622#issuecomment-2017726134) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -10. 🗣 Commented on [#3887](https://github.com/privacyidea/privacyidea/pull/3887#issuecomment-2017514808) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +2. 🗣 Commented on [#19](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/19#issuecomment-2019226693) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +3. 🗣 Commented on [#218](https://github.com/cleder/pygeoif/pull/218#issuecomment-2018554342) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +4. 🗣 Commented on [#5521](https://github.com/rhinstaller/anaconda/pull/5521#issuecomment-2018425480) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#1063](https://github.com/oemof/oemof-solph/pull/1063#issuecomment-2018420381) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +6. 🗣 Commented on [#4531](https://github.com/MDAnalysis/mdanalysis/pull/4531#issuecomment-2018405099) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#92](https://github.com/cirKITers/Quafel/pull/92#issuecomment-2018133715) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +8. 🗣 Commented on [#10](https://github.com/eastgenomics/test_directory_checker/pull/10#issuecomment-2018044128) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +9. 🗣 Commented on [#9175](https://github.com/statsmodels/statsmodels/pull/9175#issuecomment-2017944128) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +10. 🗣 Commented on [#2509](https://github.com/metabrainz/listenbrainz-server/pull/2509#issuecomment-2017884499) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From e9e828a2f835a5773cc71388f733eb87b1b4625d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Mar 2024 11:13:45 +0000 Subject: [PATCH 1743/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e69de1f0..cbc2ad1b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -2. 🗣 Commented on [#19](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/19#issuecomment-2019226693) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -3. 🗣 Commented on [#218](https://github.com/cleder/pygeoif/pull/218#issuecomment-2018554342) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -4. 🗣 Commented on [#5521](https://github.com/rhinstaller/anaconda/pull/5521#issuecomment-2018425480) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#1063](https://github.com/oemof/oemof-solph/pull/1063#issuecomment-2018420381) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -6. 🗣 Commented on [#4531](https://github.com/MDAnalysis/mdanalysis/pull/4531#issuecomment-2018405099) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#92](https://github.com/cirKITers/Quafel/pull/92#issuecomment-2018133715) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -8. 🗣 Commented on [#10](https://github.com/eastgenomics/test_directory_checker/pull/10#issuecomment-2018044128) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -9. 🗣 Commented on [#9175](https://github.com/statsmodels/statsmodels/pull/9175#issuecomment-2017944128) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -10. 🗣 Commented on [#2509](https://github.com/metabrainz/listenbrainz-server/pull/2509#issuecomment-2017884499) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) +2. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +3. 🗣 Commented on [#19](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/19#issuecomment-2019226693) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +4. 🗣 Commented on [#218](https://github.com/cleder/pygeoif/pull/218#issuecomment-2018554342) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +5. 🗣 Commented on [#5521](https://github.com/rhinstaller/anaconda/pull/5521#issuecomment-2018425480) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#1063](https://github.com/oemof/oemof-solph/pull/1063#issuecomment-2018420381) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +7. 🗣 Commented on [#4531](https://github.com/MDAnalysis/mdanalysis/pull/4531#issuecomment-2018405099) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#92](https://github.com/cirKITers/Quafel/pull/92#issuecomment-2018133715) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +9. 🗣 Commented on [#10](https://github.com/eastgenomics/test_directory_checker/pull/10#issuecomment-2018044128) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +10. 🗣 Commented on [#9175](https://github.com/statsmodels/statsmodels/pull/9175#issuecomment-2017944128) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) From 3dcc5ec79c6d1363ca0422bf46ae8d5aa6a64574 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Mar 2024 12:50:27 +0000 Subject: [PATCH 1744/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cbc2ad1b..7ca29887 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) -2. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -3. 🗣 Commented on [#19](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/19#issuecomment-2019226693) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -4. 🗣 Commented on [#218](https://github.com/cleder/pygeoif/pull/218#issuecomment-2018554342) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -5. 🗣 Commented on [#5521](https://github.com/rhinstaller/anaconda/pull/5521#issuecomment-2018425480) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#1063](https://github.com/oemof/oemof-solph/pull/1063#issuecomment-2018420381) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -7. 🗣 Commented on [#4531](https://github.com/MDAnalysis/mdanalysis/pull/4531#issuecomment-2018405099) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#92](https://github.com/cirKITers/Quafel/pull/92#issuecomment-2018133715) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -9. 🗣 Commented on [#10](https://github.com/eastgenomics/test_directory_checker/pull/10#issuecomment-2018044128) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) -10. 🗣 Commented on [#9175](https://github.com/statsmodels/statsmodels/pull/9175#issuecomment-2017944128) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +1. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) +3. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +4. 🗣 Commented on [#19](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/19#issuecomment-2019226693) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +5. 🗣 Commented on [#218](https://github.com/cleder/pygeoif/pull/218#issuecomment-2018554342) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +6. 🗣 Commented on [#5521](https://github.com/rhinstaller/anaconda/pull/5521#issuecomment-2018425480) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#1063](https://github.com/oemof/oemof-solph/pull/1063#issuecomment-2018420381) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +8. 🗣 Commented on [#4531](https://github.com/MDAnalysis/mdanalysis/pull/4531#issuecomment-2018405099) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#92](https://github.com/cirKITers/Quafel/pull/92#issuecomment-2018133715) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +10. 🗣 Commented on [#10](https://github.com/eastgenomics/test_directory_checker/pull/10#issuecomment-2018044128) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) From a8ac7e229916bdc8c2a5f83f85a09d5b4d86af15 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Mar 2024 14:37:11 +0000 Subject: [PATCH 1745/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7ca29887..fa499b69 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) -3. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -4. 🗣 Commented on [#19](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/19#issuecomment-2019226693) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -5. 🗣 Commented on [#218](https://github.com/cleder/pygeoif/pull/218#issuecomment-2018554342) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -6. 🗣 Commented on [#5521](https://github.com/rhinstaller/anaconda/pull/5521#issuecomment-2018425480) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#1063](https://github.com/oemof/oemof-solph/pull/1063#issuecomment-2018420381) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -8. 🗣 Commented on [#4531](https://github.com/MDAnalysis/mdanalysis/pull/4531#issuecomment-2018405099) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#92](https://github.com/cirKITers/Quafel/pull/92#issuecomment-2018133715) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -10. 🗣 Commented on [#10](https://github.com/eastgenomics/test_directory_checker/pull/10#issuecomment-2018044128) in [eastgenomics/test_directory_checker](https://github.com/eastgenomics/test_directory_checker) +1. 🗣 Commented on [#5](https://github.com/Tamminhdiep97/PDFs_chat/pull/5#issuecomment-2020556131) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +2. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) +4. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +5. 🗣 Commented on [#19](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/19#issuecomment-2019226693) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +6. 🗣 Commented on [#218](https://github.com/cleder/pygeoif/pull/218#issuecomment-2018554342) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +7. 🗣 Commented on [#5521](https://github.com/rhinstaller/anaconda/pull/5521#issuecomment-2018425480) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#1063](https://github.com/oemof/oemof-solph/pull/1063#issuecomment-2018420381) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +9. 🗣 Commented on [#4531](https://github.com/MDAnalysis/mdanalysis/pull/4531#issuecomment-2018405099) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#92](https://github.com/cirKITers/Quafel/pull/92#issuecomment-2018133715) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) From 8b47558cd45260140c6200e4a01ba37060cdf258 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Mar 2024 15:15:49 +0000 Subject: [PATCH 1746/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fa499b69..4c6cd7bc 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5](https://github.com/Tamminhdiep97/PDFs_chat/pull/5#issuecomment-2020556131) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -2. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) -4. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -5. 🗣 Commented on [#19](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/19#issuecomment-2019226693) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -6. 🗣 Commented on [#218](https://github.com/cleder/pygeoif/pull/218#issuecomment-2018554342) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -7. 🗣 Commented on [#5521](https://github.com/rhinstaller/anaconda/pull/5521#issuecomment-2018425480) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#1063](https://github.com/oemof/oemof-solph/pull/1063#issuecomment-2018420381) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -9. 🗣 Commented on [#4531](https://github.com/MDAnalysis/mdanalysis/pull/4531#issuecomment-2018405099) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#92](https://github.com/cirKITers/Quafel/pull/92#issuecomment-2018133715) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +1. 🗣 Commented on [#4532](https://github.com/MDAnalysis/mdanalysis/pull/4532#issuecomment-2020640119) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#5](https://github.com/Tamminhdiep97/PDFs_chat/pull/5#issuecomment-2020556131) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +3. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +4. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) +5. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +6. 🗣 Commented on [#19](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/19#issuecomment-2019226693) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +7. 🗣 Commented on [#218](https://github.com/cleder/pygeoif/pull/218#issuecomment-2018554342) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +8. 🗣 Commented on [#5521](https://github.com/rhinstaller/anaconda/pull/5521#issuecomment-2018425480) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#1063](https://github.com/oemof/oemof-solph/pull/1063#issuecomment-2018420381) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +10. 🗣 Commented on [#4531](https://github.com/MDAnalysis/mdanalysis/pull/4531#issuecomment-2018405099) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 0060a583f3e702212c79bbe60d81f2dea3d04dab Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Mar 2024 15:37:57 +0000 Subject: [PATCH 1747/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4c6cd7bc..e67a4b66 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4532](https://github.com/MDAnalysis/mdanalysis/pull/4532#issuecomment-2020640119) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#5](https://github.com/Tamminhdiep97/PDFs_chat/pull/5#issuecomment-2020556131) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -3. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -4. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) -5. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -6. 🗣 Commented on [#19](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/19#issuecomment-2019226693) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -7. 🗣 Commented on [#218](https://github.com/cleder/pygeoif/pull/218#issuecomment-2018554342) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -8. 🗣 Commented on [#5521](https://github.com/rhinstaller/anaconda/pull/5521#issuecomment-2018425480) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#1063](https://github.com/oemof/oemof-solph/pull/1063#issuecomment-2018420381) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -10. 🗣 Commented on [#4531](https://github.com/MDAnalysis/mdanalysis/pull/4531#issuecomment-2018405099) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#779](https://github.com/OpenFreeEnergy/openfe/pull/779#issuecomment-2020687183) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#4532](https://github.com/MDAnalysis/mdanalysis/pull/4532#issuecomment-2020640119) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#5](https://github.com/Tamminhdiep97/PDFs_chat/pull/5#issuecomment-2020556131) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +4. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) +6. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +7. 🗣 Commented on [#19](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/19#issuecomment-2019226693) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +8. 🗣 Commented on [#218](https://github.com/cleder/pygeoif/pull/218#issuecomment-2018554342) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +9. 🗣 Commented on [#5521](https://github.com/rhinstaller/anaconda/pull/5521#issuecomment-2018425480) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#1063](https://github.com/oemof/oemof-solph/pull/1063#issuecomment-2018420381) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) From 09d5fa170f83190df8195e88b6331c936f3068e1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Mar 2024 17:13:37 +0000 Subject: [PATCH 1748/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e67a4b66..9752550f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#779](https://github.com/OpenFreeEnergy/openfe/pull/779#issuecomment-2020687183) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#4532](https://github.com/MDAnalysis/mdanalysis/pull/4532#issuecomment-2020640119) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#5](https://github.com/Tamminhdiep97/PDFs_chat/pull/5#issuecomment-2020556131) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -4. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) -6. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -7. 🗣 Commented on [#19](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/19#issuecomment-2019226693) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -8. 🗣 Commented on [#218](https://github.com/cleder/pygeoif/pull/218#issuecomment-2018554342) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -9. 🗣 Commented on [#5521](https://github.com/rhinstaller/anaconda/pull/5521#issuecomment-2018425480) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#1063](https://github.com/oemof/oemof-solph/pull/1063#issuecomment-2018420381) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +1. 🗣 Commented on [#4373](https://github.com/uwcirg/truenth-portal/pull/4373#issuecomment-2020944026) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +2. 🗣 Commented on [#779](https://github.com/OpenFreeEnergy/openfe/pull/779#issuecomment-2020687183) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#4532](https://github.com/MDAnalysis/mdanalysis/pull/4532#issuecomment-2020640119) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#5](https://github.com/Tamminhdiep97/PDFs_chat/pull/5#issuecomment-2020556131) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +5. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) +7. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +8. 🗣 Commented on [#19](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/19#issuecomment-2019226693) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +9. 🗣 Commented on [#218](https://github.com/cleder/pygeoif/pull/218#issuecomment-2018554342) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +10. 🗣 Commented on [#5521](https://github.com/rhinstaller/anaconda/pull/5521#issuecomment-2018425480) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 84b90da09f7d130b59c1d2f231b517759d029341 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Mar 2024 19:12:57 +0000 Subject: [PATCH 1749/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9752550f..ed3508f0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4373](https://github.com/uwcirg/truenth-portal/pull/4373#issuecomment-2020944026) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -2. 🗣 Commented on [#779](https://github.com/OpenFreeEnergy/openfe/pull/779#issuecomment-2020687183) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#4532](https://github.com/MDAnalysis/mdanalysis/pull/4532#issuecomment-2020640119) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#5](https://github.com/Tamminhdiep97/PDFs_chat/pull/5#issuecomment-2020556131) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -5. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) -7. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -8. 🗣 Commented on [#19](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/19#issuecomment-2019226693) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -9. 🗣 Commented on [#218](https://github.com/cleder/pygeoif/pull/218#issuecomment-2018554342) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -10. 🗣 Commented on [#5521](https://github.com/rhinstaller/anaconda/pull/5521#issuecomment-2018425480) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#3153](https://github.com/dipy/dipy/pull/3153#issuecomment-2021252389) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#4373](https://github.com/uwcirg/truenth-portal/pull/4373#issuecomment-2020944026) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +3. 🗣 Commented on [#779](https://github.com/OpenFreeEnergy/openfe/pull/779#issuecomment-2020687183) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#4532](https://github.com/MDAnalysis/mdanalysis/pull/4532#issuecomment-2020640119) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#5](https://github.com/Tamminhdiep97/PDFs_chat/pull/5#issuecomment-2020556131) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +6. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +7. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) +8. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +9. 🗣 Commented on [#19](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/19#issuecomment-2019226693) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +10. 🗣 Commented on [#218](https://github.com/cleder/pygeoif/pull/218#issuecomment-2018554342) in [cleder/pygeoif](https://github.com/cleder/pygeoif) From 0ecebe5d8c08271563e8e1bfd26c162439f3c75a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Mar 2024 21:15:55 +0000 Subject: [PATCH 1750/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ed3508f0..be50a47c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3153](https://github.com/dipy/dipy/pull/3153#issuecomment-2021252389) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#4373](https://github.com/uwcirg/truenth-portal/pull/4373#issuecomment-2020944026) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -3. 🗣 Commented on [#779](https://github.com/OpenFreeEnergy/openfe/pull/779#issuecomment-2020687183) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#4532](https://github.com/MDAnalysis/mdanalysis/pull/4532#issuecomment-2020640119) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#5](https://github.com/Tamminhdiep97/PDFs_chat/pull/5#issuecomment-2020556131) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -6. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -7. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) -8. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -9. 🗣 Commented on [#19](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/19#issuecomment-2019226693) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -10. 🗣 Commented on [#218](https://github.com/cleder/pygeoif/pull/218#issuecomment-2018554342) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +1. 🗣 Commented on [#9181](https://github.com/statsmodels/statsmodels/pull/9181#issuecomment-2021479142) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +2. 🗣 Commented on [#3153](https://github.com/dipy/dipy/pull/3153#issuecomment-2021252389) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#4373](https://github.com/uwcirg/truenth-portal/pull/4373#issuecomment-2020944026) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +4. 🗣 Commented on [#779](https://github.com/OpenFreeEnergy/openfe/pull/779#issuecomment-2020687183) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#4532](https://github.com/MDAnalysis/mdanalysis/pull/4532#issuecomment-2020640119) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#5](https://github.com/Tamminhdiep97/PDFs_chat/pull/5#issuecomment-2020556131) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +7. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) +9. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +10. 🗣 Commented on [#19](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/19#issuecomment-2019226693) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) From e1c5db530774e5229f842f7087f48fccb7f622ee Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 08:20:52 +0000 Subject: [PATCH 1751/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index be50a47c..26a91a8f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#9181](https://github.com/statsmodels/statsmodels/pull/9181#issuecomment-2021479142) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -2. 🗣 Commented on [#3153](https://github.com/dipy/dipy/pull/3153#issuecomment-2021252389) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#4373](https://github.com/uwcirg/truenth-portal/pull/4373#issuecomment-2020944026) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -4. 🗣 Commented on [#779](https://github.com/OpenFreeEnergy/openfe/pull/779#issuecomment-2020687183) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#4532](https://github.com/MDAnalysis/mdanalysis/pull/4532#issuecomment-2020640119) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#5](https://github.com/Tamminhdiep97/PDFs_chat/pull/5#issuecomment-2020556131) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -7. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) -9. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) -10. 🗣 Commented on [#19](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/19#issuecomment-2019226693) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +1. 🗣 Commented on [#4533](https://github.com/MDAnalysis/mdanalysis/pull/4533#issuecomment-2022177648) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#9181](https://github.com/statsmodels/statsmodels/pull/9181#issuecomment-2021479142) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#3153](https://github.com/dipy/dipy/pull/3153#issuecomment-2021252389) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#4373](https://github.com/uwcirg/truenth-portal/pull/4373#issuecomment-2020944026) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +5. 🗣 Commented on [#779](https://github.com/OpenFreeEnergy/openfe/pull/779#issuecomment-2020687183) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#4532](https://github.com/MDAnalysis/mdanalysis/pull/4532#issuecomment-2020640119) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#5](https://github.com/Tamminhdiep97/PDFs_chat/pull/5#issuecomment-2020556131) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +8. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) +10. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) From 7c0edeed11b4bfb36a9dd2467c9ecadf94c35953 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 13:17:32 +0000 Subject: [PATCH 1752/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 26a91a8f..cf81a67e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4533](https://github.com/MDAnalysis/mdanalysis/pull/4533#issuecomment-2022177648) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#9181](https://github.com/statsmodels/statsmodels/pull/9181#issuecomment-2021479142) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#3153](https://github.com/dipy/dipy/pull/3153#issuecomment-2021252389) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#4373](https://github.com/uwcirg/truenth-portal/pull/4373#issuecomment-2020944026) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -5. 🗣 Commented on [#779](https://github.com/OpenFreeEnergy/openfe/pull/779#issuecomment-2020687183) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#4532](https://github.com/MDAnalysis/mdanalysis/pull/4532#issuecomment-2020640119) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#5](https://github.com/Tamminhdiep97/PDFs_chat/pull/5#issuecomment-2020556131) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -8. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) -10. 🗣 Commented on [#14](https://github.com/sarnold/ymltoxml/pull/14#issuecomment-2019244239) in [sarnold/ymltoxml](https://github.com/sarnold/ymltoxml) +1. 🗣 Commented on [#4535](https://github.com/MDAnalysis/mdanalysis/pull/4535#issuecomment-2022733067) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#4533](https://github.com/MDAnalysis/mdanalysis/pull/4533#issuecomment-2022177648) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#9181](https://github.com/statsmodels/statsmodels/pull/9181#issuecomment-2021479142) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +4. 🗣 Commented on [#3153](https://github.com/dipy/dipy/pull/3153#issuecomment-2021252389) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#4373](https://github.com/uwcirg/truenth-portal/pull/4373#issuecomment-2020944026) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +6. 🗣 Commented on [#779](https://github.com/OpenFreeEnergy/openfe/pull/779#issuecomment-2020687183) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#4532](https://github.com/MDAnalysis/mdanalysis/pull/4532#issuecomment-2020640119) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#5](https://github.com/Tamminhdiep97/PDFs_chat/pull/5#issuecomment-2020556131) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +9. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) From 5179b1e23c9d0fc6c2a7bd874a68befe5e08c93b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 14:15:20 +0000 Subject: [PATCH 1753/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cf81a67e..5f50f53f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4535](https://github.com/MDAnalysis/mdanalysis/pull/4535#issuecomment-2022733067) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#4533](https://github.com/MDAnalysis/mdanalysis/pull/4533#issuecomment-2022177648) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#9181](https://github.com/statsmodels/statsmodels/pull/9181#issuecomment-2021479142) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -4. 🗣 Commented on [#3153](https://github.com/dipy/dipy/pull/3153#issuecomment-2021252389) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#4373](https://github.com/uwcirg/truenth-portal/pull/4373#issuecomment-2020944026) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -6. 🗣 Commented on [#779](https://github.com/OpenFreeEnergy/openfe/pull/779#issuecomment-2020687183) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#4532](https://github.com/MDAnalysis/mdanalysis/pull/4532#issuecomment-2020640119) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#5](https://github.com/Tamminhdiep97/PDFs_chat/pull/5#issuecomment-2020556131) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -9. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#76](https://github.com/eastgenomics/panel_ops/pull/76#issuecomment-2020115656) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) +1. 🗣 Commented on [#1726](https://github.com/zarr-developers/zarr-python/pull/1726#issuecomment-2022798392) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +2. 🗣 Commented on [#4535](https://github.com/MDAnalysis/mdanalysis/pull/4535#issuecomment-2022733067) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#4533](https://github.com/MDAnalysis/mdanalysis/pull/4533#issuecomment-2022177648) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#9181](https://github.com/statsmodels/statsmodels/pull/9181#issuecomment-2021479142) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#3153](https://github.com/dipy/dipy/pull/3153#issuecomment-2021252389) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#4373](https://github.com/uwcirg/truenth-portal/pull/4373#issuecomment-2020944026) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +7. 🗣 Commented on [#779](https://github.com/OpenFreeEnergy/openfe/pull/779#issuecomment-2020687183) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#4532](https://github.com/MDAnalysis/mdanalysis/pull/4532#issuecomment-2020640119) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#5](https://github.com/Tamminhdiep97/PDFs_chat/pull/5#issuecomment-2020556131) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +10. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From 9f5b822f9523669b8166ae52c63965ac38e96a89 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 14:36:58 +0000 Subject: [PATCH 1754/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5f50f53f..804ce941 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1726](https://github.com/zarr-developers/zarr-python/pull/1726#issuecomment-2022798392) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -2. 🗣 Commented on [#4535](https://github.com/MDAnalysis/mdanalysis/pull/4535#issuecomment-2022733067) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#4533](https://github.com/MDAnalysis/mdanalysis/pull/4533#issuecomment-2022177648) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#9181](https://github.com/statsmodels/statsmodels/pull/9181#issuecomment-2021479142) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -5. 🗣 Commented on [#3153](https://github.com/dipy/dipy/pull/3153#issuecomment-2021252389) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#4373](https://github.com/uwcirg/truenth-portal/pull/4373#issuecomment-2020944026) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -7. 🗣 Commented on [#779](https://github.com/OpenFreeEnergy/openfe/pull/779#issuecomment-2020687183) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#4532](https://github.com/MDAnalysis/mdanalysis/pull/4532#issuecomment-2020640119) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#5](https://github.com/Tamminhdiep97/PDFs_chat/pull/5#issuecomment-2020556131) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -10. 🗣 Commented on [#3890](https://github.com/privacyidea/privacyidea/pull/3890#issuecomment-2020328461) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#955](https://github.com/scilus/scilpy/pull/955#issuecomment-2022919072) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_cgppindel/pull/5#issuecomment-2022889684) in [eastgenomics/eggd_cgppindel](https://github.com/eastgenomics/eggd_cgppindel) +3. 🗣 Commented on [#1726](https://github.com/zarr-developers/zarr-python/pull/1726#issuecomment-2022798392) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +4. 🗣 Commented on [#4535](https://github.com/MDAnalysis/mdanalysis/pull/4535#issuecomment-2022733067) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#4533](https://github.com/MDAnalysis/mdanalysis/pull/4533#issuecomment-2022177648) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#9181](https://github.com/statsmodels/statsmodels/pull/9181#issuecomment-2021479142) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +7. 🗣 Commented on [#3153](https://github.com/dipy/dipy/pull/3153#issuecomment-2021252389) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#4373](https://github.com/uwcirg/truenth-portal/pull/4373#issuecomment-2020944026) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +9. 🗣 Commented on [#779](https://github.com/OpenFreeEnergy/openfe/pull/779#issuecomment-2020687183) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#4532](https://github.com/MDAnalysis/mdanalysis/pull/4532#issuecomment-2020640119) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 5a50c4e52ff6694d9ebfa97879ad7a8f0996c80e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 15:17:01 +0000 Subject: [PATCH 1755/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 804ce941..b782ec62 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#955](https://github.com/scilus/scilpy/pull/955#issuecomment-2022919072) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_cgppindel/pull/5#issuecomment-2022889684) in [eastgenomics/eggd_cgppindel](https://github.com/eastgenomics/eggd_cgppindel) -3. 🗣 Commented on [#1726](https://github.com/zarr-developers/zarr-python/pull/1726#issuecomment-2022798392) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -4. 🗣 Commented on [#4535](https://github.com/MDAnalysis/mdanalysis/pull/4535#issuecomment-2022733067) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#4533](https://github.com/MDAnalysis/mdanalysis/pull/4533#issuecomment-2022177648) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#9181](https://github.com/statsmodels/statsmodels/pull/9181#issuecomment-2021479142) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -7. 🗣 Commented on [#3153](https://github.com/dipy/dipy/pull/3153#issuecomment-2021252389) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#4373](https://github.com/uwcirg/truenth-portal/pull/4373#issuecomment-2020944026) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -9. 🗣 Commented on [#779](https://github.com/OpenFreeEnergy/openfe/pull/779#issuecomment-2020687183) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#4532](https://github.com/MDAnalysis/mdanalysis/pull/4532#issuecomment-2020640119) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#920](https://github.com/ToFuProject/tofu/pull/920#issuecomment-2023013451) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#948](https://github.com/scilus/scilpy/pull/948#issuecomment-2022985110) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#955](https://github.com/scilus/scilpy/pull/955#issuecomment-2022919072) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_cgppindel/pull/5#issuecomment-2022889684) in [eastgenomics/eggd_cgppindel](https://github.com/eastgenomics/eggd_cgppindel) +5. 🗣 Commented on [#1726](https://github.com/zarr-developers/zarr-python/pull/1726#issuecomment-2022798392) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +6. 🗣 Commented on [#4535](https://github.com/MDAnalysis/mdanalysis/pull/4535#issuecomment-2022733067) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#4533](https://github.com/MDAnalysis/mdanalysis/pull/4533#issuecomment-2022177648) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#9181](https://github.com/statsmodels/statsmodels/pull/9181#issuecomment-2021479142) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +9. 🗣 Commented on [#3153](https://github.com/dipy/dipy/pull/3153#issuecomment-2021252389) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#4373](https://github.com/uwcirg/truenth-portal/pull/4373#issuecomment-2020944026) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) From f7d7cacc60b18a80c44ff6cbf1dc65372139440d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 15:37:06 +0000 Subject: [PATCH 1756/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b782ec62..c0cbecf2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#920](https://github.com/ToFuProject/tofu/pull/920#issuecomment-2023013451) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#948](https://github.com/scilus/scilpy/pull/948#issuecomment-2022985110) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#955](https://github.com/scilus/scilpy/pull/955#issuecomment-2022919072) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_cgppindel/pull/5#issuecomment-2022889684) in [eastgenomics/eggd_cgppindel](https://github.com/eastgenomics/eggd_cgppindel) -5. 🗣 Commented on [#1726](https://github.com/zarr-developers/zarr-python/pull/1726#issuecomment-2022798392) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -6. 🗣 Commented on [#4535](https://github.com/MDAnalysis/mdanalysis/pull/4535#issuecomment-2022733067) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#4533](https://github.com/MDAnalysis/mdanalysis/pull/4533#issuecomment-2022177648) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#9181](https://github.com/statsmodels/statsmodels/pull/9181#issuecomment-2021479142) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -9. 🗣 Commented on [#3153](https://github.com/dipy/dipy/pull/3153#issuecomment-2021252389) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#4373](https://github.com/uwcirg/truenth-portal/pull/4373#issuecomment-2020944026) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +1. 🗣 Commented on [#116](https://github.com/MDAnalysis/mdacli/pull/116#issuecomment-2023057822) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +2. 🗣 Commented on [#920](https://github.com/ToFuProject/tofu/pull/920#issuecomment-2023013451) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#948](https://github.com/scilus/scilpy/pull/948#issuecomment-2022985110) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#955](https://github.com/scilus/scilpy/pull/955#issuecomment-2022919072) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_cgppindel/pull/5#issuecomment-2022889684) in [eastgenomics/eggd_cgppindel](https://github.com/eastgenomics/eggd_cgppindel) +6. 🗣 Commented on [#1726](https://github.com/zarr-developers/zarr-python/pull/1726#issuecomment-2022798392) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +7. 🗣 Commented on [#4535](https://github.com/MDAnalysis/mdanalysis/pull/4535#issuecomment-2022733067) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#4533](https://github.com/MDAnalysis/mdanalysis/pull/4533#issuecomment-2022177648) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#9181](https://github.com/statsmodels/statsmodels/pull/9181#issuecomment-2021479142) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +10. 🗣 Commented on [#3153](https://github.com/dipy/dipy/pull/3153#issuecomment-2021252389) in [dipy/dipy](https://github.com/dipy/dipy) From 64c63d579ef25ac70b431c3d859bb6943983589f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 16:21:33 +0000 Subject: [PATCH 1757/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c0cbecf2..aba0cf43 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#116](https://github.com/MDAnalysis/mdacli/pull/116#issuecomment-2023057822) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -2. 🗣 Commented on [#920](https://github.com/ToFuProject/tofu/pull/920#issuecomment-2023013451) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#948](https://github.com/scilus/scilpy/pull/948#issuecomment-2022985110) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#955](https://github.com/scilus/scilpy/pull/955#issuecomment-2022919072) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_cgppindel/pull/5#issuecomment-2022889684) in [eastgenomics/eggd_cgppindel](https://github.com/eastgenomics/eggd_cgppindel) -6. 🗣 Commented on [#1726](https://github.com/zarr-developers/zarr-python/pull/1726#issuecomment-2022798392) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -7. 🗣 Commented on [#4535](https://github.com/MDAnalysis/mdanalysis/pull/4535#issuecomment-2022733067) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#4533](https://github.com/MDAnalysis/mdanalysis/pull/4533#issuecomment-2022177648) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#9181](https://github.com/statsmodels/statsmodels/pull/9181#issuecomment-2021479142) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -10. 🗣 Commented on [#3153](https://github.com/dipy/dipy/pull/3153#issuecomment-2021252389) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#1](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/1#issuecomment-2023129220) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +2. 🗣 Commented on [#964](https://github.com/avaframe/AvaFrame/pull/964#issuecomment-2023090461) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#921](https://github.com/ToFuProject/tofu/pull/921#issuecomment-2023073608) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#116](https://github.com/MDAnalysis/mdacli/pull/116#issuecomment-2023057822) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +5. 🗣 Commented on [#920](https://github.com/ToFuProject/tofu/pull/920#issuecomment-2023013451) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#948](https://github.com/scilus/scilpy/pull/948#issuecomment-2022985110) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#955](https://github.com/scilus/scilpy/pull/955#issuecomment-2022919072) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_cgppindel/pull/5#issuecomment-2022889684) in [eastgenomics/eggd_cgppindel](https://github.com/eastgenomics/eggd_cgppindel) +9. 🗣 Commented on [#1726](https://github.com/zarr-developers/zarr-python/pull/1726#issuecomment-2022798392) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +10. 🗣 Commented on [#4535](https://github.com/MDAnalysis/mdanalysis/pull/4535#issuecomment-2022733067) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From b0bf8e6e2b5d9f0f1f6a3962c77082a5bd2a236f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 17:13:36 +0000 Subject: [PATCH 1758/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index aba0cf43..abd7ed94 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/1#issuecomment-2023129220) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -2. 🗣 Commented on [#964](https://github.com/avaframe/AvaFrame/pull/964#issuecomment-2023090461) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#921](https://github.com/ToFuProject/tofu/pull/921#issuecomment-2023073608) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#116](https://github.com/MDAnalysis/mdacli/pull/116#issuecomment-2023057822) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -5. 🗣 Commented on [#920](https://github.com/ToFuProject/tofu/pull/920#issuecomment-2023013451) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#948](https://github.com/scilus/scilpy/pull/948#issuecomment-2022985110) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#955](https://github.com/scilus/scilpy/pull/955#issuecomment-2022919072) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_cgppindel/pull/5#issuecomment-2022889684) in [eastgenomics/eggd_cgppindel](https://github.com/eastgenomics/eggd_cgppindel) -9. 🗣 Commented on [#1726](https://github.com/zarr-developers/zarr-python/pull/1726#issuecomment-2022798392) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -10. 🗣 Commented on [#4535](https://github.com/MDAnalysis/mdanalysis/pull/4535#issuecomment-2022733067) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#945](https://github.com/scilus/scilpy/pull/945#issuecomment-2023327886) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#1](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/1#issuecomment-2023129220) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +3. 🗣 Commented on [#964](https://github.com/avaframe/AvaFrame/pull/964#issuecomment-2023090461) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#921](https://github.com/ToFuProject/tofu/pull/921#issuecomment-2023073608) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#116](https://github.com/MDAnalysis/mdacli/pull/116#issuecomment-2023057822) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +6. 🗣 Commented on [#920](https://github.com/ToFuProject/tofu/pull/920#issuecomment-2023013451) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#948](https://github.com/scilus/scilpy/pull/948#issuecomment-2022985110) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#955](https://github.com/scilus/scilpy/pull/955#issuecomment-2022919072) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_cgppindel/pull/5#issuecomment-2022889684) in [eastgenomics/eggd_cgppindel](https://github.com/eastgenomics/eggd_cgppindel) +10. 🗣 Commented on [#1726](https://github.com/zarr-developers/zarr-python/pull/1726#issuecomment-2022798392) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) From 77b1dbd9dabef2985bbdee6438b71192fd9e0df2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 18:20:03 +0000 Subject: [PATCH 1759/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index abd7ed94..236f986d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#945](https://github.com/scilus/scilpy/pull/945#issuecomment-2023327886) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#1](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/1#issuecomment-2023129220) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -3. 🗣 Commented on [#964](https://github.com/avaframe/AvaFrame/pull/964#issuecomment-2023090461) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#921](https://github.com/ToFuProject/tofu/pull/921#issuecomment-2023073608) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#116](https://github.com/MDAnalysis/mdacli/pull/116#issuecomment-2023057822) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -6. 🗣 Commented on [#920](https://github.com/ToFuProject/tofu/pull/920#issuecomment-2023013451) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#948](https://github.com/scilus/scilpy/pull/948#issuecomment-2022985110) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#955](https://github.com/scilus/scilpy/pull/955#issuecomment-2022919072) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_cgppindel/pull/5#issuecomment-2022889684) in [eastgenomics/eggd_cgppindel](https://github.com/eastgenomics/eggd_cgppindel) -10. 🗣 Commented on [#1726](https://github.com/zarr-developers/zarr-python/pull/1726#issuecomment-2022798392) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +1. 🗣 Commented on [#4374](https://github.com/uwcirg/truenth-portal/pull/4374#issuecomment-2023411705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +2. 🗣 Commented on [#945](https://github.com/scilus/scilpy/pull/945#issuecomment-2023327886) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#1](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/1#issuecomment-2023129220) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +4. 🗣 Commented on [#964](https://github.com/avaframe/AvaFrame/pull/964#issuecomment-2023090461) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#921](https://github.com/ToFuProject/tofu/pull/921#issuecomment-2023073608) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#116](https://github.com/MDAnalysis/mdacli/pull/116#issuecomment-2023057822) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +7. 🗣 Commented on [#920](https://github.com/ToFuProject/tofu/pull/920#issuecomment-2023013451) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#948](https://github.com/scilus/scilpy/pull/948#issuecomment-2022985110) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#955](https://github.com/scilus/scilpy/pull/955#issuecomment-2022919072) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_cgppindel/pull/5#issuecomment-2022889684) in [eastgenomics/eggd_cgppindel](https://github.com/eastgenomics/eggd_cgppindel) From f6fa6117b6f485c32b4d11307eb85c5142c0cf6f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 19:12:57 +0000 Subject: [PATCH 1760/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 236f986d..ea2ea848 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4374](https://github.com/uwcirg/truenth-portal/pull/4374#issuecomment-2023411705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -2. 🗣 Commented on [#945](https://github.com/scilus/scilpy/pull/945#issuecomment-2023327886) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#1](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/1#issuecomment-2023129220) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -4. 🗣 Commented on [#964](https://github.com/avaframe/AvaFrame/pull/964#issuecomment-2023090461) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#921](https://github.com/ToFuProject/tofu/pull/921#issuecomment-2023073608) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#116](https://github.com/MDAnalysis/mdacli/pull/116#issuecomment-2023057822) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -7. 🗣 Commented on [#920](https://github.com/ToFuProject/tofu/pull/920#issuecomment-2023013451) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#948](https://github.com/scilus/scilpy/pull/948#issuecomment-2022985110) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#955](https://github.com/scilus/scilpy/pull/955#issuecomment-2022919072) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_cgppindel/pull/5#issuecomment-2022889684) in [eastgenomics/eggd_cgppindel](https://github.com/eastgenomics/eggd_cgppindel) +1. 🗣 Commented on [#3894](https://github.com/privacyidea/privacyidea/pull/3894#issuecomment-2023661822) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#4374](https://github.com/uwcirg/truenth-portal/pull/4374#issuecomment-2023411705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +3. 🗣 Commented on [#945](https://github.com/scilus/scilpy/pull/945#issuecomment-2023327886) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#1](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/1#issuecomment-2023129220) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +5. 🗣 Commented on [#964](https://github.com/avaframe/AvaFrame/pull/964#issuecomment-2023090461) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#921](https://github.com/ToFuProject/tofu/pull/921#issuecomment-2023073608) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#116](https://github.com/MDAnalysis/mdacli/pull/116#issuecomment-2023057822) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +8. 🗣 Commented on [#920](https://github.com/ToFuProject/tofu/pull/920#issuecomment-2023013451) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#948](https://github.com/scilus/scilpy/pull/948#issuecomment-2022985110) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#955](https://github.com/scilus/scilpy/pull/955#issuecomment-2022919072) in [scilus/scilpy](https://github.com/scilus/scilpy) From d2d862aee43502858f1ef685bbd7ececfa95f043 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 22:16:38 +0000 Subject: [PATCH 1761/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ea2ea848..7b749451 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3894](https://github.com/privacyidea/privacyidea/pull/3894#issuecomment-2023661822) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#4374](https://github.com/uwcirg/truenth-portal/pull/4374#issuecomment-2023411705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -3. 🗣 Commented on [#945](https://github.com/scilus/scilpy/pull/945#issuecomment-2023327886) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#1](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/1#issuecomment-2023129220) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -5. 🗣 Commented on [#964](https://github.com/avaframe/AvaFrame/pull/964#issuecomment-2023090461) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#921](https://github.com/ToFuProject/tofu/pull/921#issuecomment-2023073608) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#116](https://github.com/MDAnalysis/mdacli/pull/116#issuecomment-2023057822) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -8. 🗣 Commented on [#920](https://github.com/ToFuProject/tofu/pull/920#issuecomment-2023013451) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#948](https://github.com/scilus/scilpy/pull/948#issuecomment-2022985110) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#955](https://github.com/scilus/scilpy/pull/955#issuecomment-2022919072) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#433](https://github.com/payu-org/payu/pull/433#issuecomment-2024059017) in [payu-org/payu](https://github.com/payu-org/payu) +2. 🗣 Commented on [#3894](https://github.com/privacyidea/privacyidea/pull/3894#issuecomment-2023661822) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#4374](https://github.com/uwcirg/truenth-portal/pull/4374#issuecomment-2023411705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +4. 🗣 Commented on [#945](https://github.com/scilus/scilpy/pull/945#issuecomment-2023327886) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#1](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/1#issuecomment-2023129220) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +6. 🗣 Commented on [#964](https://github.com/avaframe/AvaFrame/pull/964#issuecomment-2023090461) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#921](https://github.com/ToFuProject/tofu/pull/921#issuecomment-2023073608) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#116](https://github.com/MDAnalysis/mdacli/pull/116#issuecomment-2023057822) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +9. 🗣 Commented on [#920](https://github.com/ToFuProject/tofu/pull/920#issuecomment-2023013451) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#948](https://github.com/scilus/scilpy/pull/948#issuecomment-2022985110) in [scilus/scilpy](https://github.com/scilus/scilpy) From a30f9ea7c1c4c4ab5962c03e356c89586154ba22 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Mar 2024 01:09:25 +0000 Subject: [PATCH 1762/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7b749451..e547b781 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#433](https://github.com/payu-org/payu/pull/433#issuecomment-2024059017) in [payu-org/payu](https://github.com/payu-org/payu) -2. 🗣 Commented on [#3894](https://github.com/privacyidea/privacyidea/pull/3894#issuecomment-2023661822) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#4374](https://github.com/uwcirg/truenth-portal/pull/4374#issuecomment-2023411705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -4. 🗣 Commented on [#945](https://github.com/scilus/scilpy/pull/945#issuecomment-2023327886) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#1](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/1#issuecomment-2023129220) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -6. 🗣 Commented on [#964](https://github.com/avaframe/AvaFrame/pull/964#issuecomment-2023090461) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#921](https://github.com/ToFuProject/tofu/pull/921#issuecomment-2023073608) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#116](https://github.com/MDAnalysis/mdacli/pull/116#issuecomment-2023057822) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -9. 🗣 Commented on [#920](https://github.com/ToFuProject/tofu/pull/920#issuecomment-2023013451) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#948](https://github.com/scilus/scilpy/pull/948#issuecomment-2022985110) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#4372](https://github.com/uwcirg/truenth-portal/pull/4372#issuecomment-2024219422) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +2. 🗣 Commented on [#3157](https://github.com/dipy/dipy/pull/3157#issuecomment-2024205729) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#433](https://github.com/payu-org/payu/pull/433#issuecomment-2024059017) in [payu-org/payu](https://github.com/payu-org/payu) +4. 🗣 Commented on [#3894](https://github.com/privacyidea/privacyidea/pull/3894#issuecomment-2023661822) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#4374](https://github.com/uwcirg/truenth-portal/pull/4374#issuecomment-2023411705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +6. 🗣 Commented on [#945](https://github.com/scilus/scilpy/pull/945#issuecomment-2023327886) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#1](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/1#issuecomment-2023129220) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +8. 🗣 Commented on [#964](https://github.com/avaframe/AvaFrame/pull/964#issuecomment-2023090461) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#921](https://github.com/ToFuProject/tofu/pull/921#issuecomment-2023073608) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#116](https://github.com/MDAnalysis/mdacli/pull/116#issuecomment-2023057822) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) From 7af893b3ecda5236c0512cd8eb58d05063b5dc0d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Mar 2024 06:20:28 +0000 Subject: [PATCH 1763/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e547b781..de41b621 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4372](https://github.com/uwcirg/truenth-portal/pull/4372#issuecomment-2024219422) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -2. 🗣 Commented on [#3157](https://github.com/dipy/dipy/pull/3157#issuecomment-2024205729) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#433](https://github.com/payu-org/payu/pull/433#issuecomment-2024059017) in [payu-org/payu](https://github.com/payu-org/payu) -4. 🗣 Commented on [#3894](https://github.com/privacyidea/privacyidea/pull/3894#issuecomment-2023661822) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#4374](https://github.com/uwcirg/truenth-portal/pull/4374#issuecomment-2023411705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -6. 🗣 Commented on [#945](https://github.com/scilus/scilpy/pull/945#issuecomment-2023327886) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#1](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/1#issuecomment-2023129220) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -8. 🗣 Commented on [#964](https://github.com/avaframe/AvaFrame/pull/964#issuecomment-2023090461) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#921](https://github.com/ToFuProject/tofu/pull/921#issuecomment-2023073608) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#116](https://github.com/MDAnalysis/mdacli/pull/116#issuecomment-2023057822) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +1. 🗣 Commented on [#72](https://github.com/SwaragThaikkandi/SMdRQA/pull/72#issuecomment-2024464203) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +2. 🗣 Commented on [#71](https://github.com/SwaragThaikkandi/SMdRQA/pull/71#issuecomment-2024458801) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +3. 🗣 Commented on [#4372](https://github.com/uwcirg/truenth-portal/pull/4372#issuecomment-2024219422) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +4. 🗣 Commented on [#3157](https://github.com/dipy/dipy/pull/3157#issuecomment-2024205729) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#433](https://github.com/payu-org/payu/pull/433#issuecomment-2024059017) in [payu-org/payu](https://github.com/payu-org/payu) +6. 🗣 Commented on [#3894](https://github.com/privacyidea/privacyidea/pull/3894#issuecomment-2023661822) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +7. 🗣 Commented on [#4374](https://github.com/uwcirg/truenth-portal/pull/4374#issuecomment-2023411705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +8. 🗣 Commented on [#945](https://github.com/scilus/scilpy/pull/945#issuecomment-2023327886) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#1](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/1#issuecomment-2023129220) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +10. 🗣 Commented on [#964](https://github.com/avaframe/AvaFrame/pull/964#issuecomment-2023090461) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From c743a8bfecda7f3833614026b449a8eb9258fb30 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Mar 2024 06:37:07 +0000 Subject: [PATCH 1764/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index de41b621..d362d765 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#72](https://github.com/SwaragThaikkandi/SMdRQA/pull/72#issuecomment-2024464203) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -2. 🗣 Commented on [#71](https://github.com/SwaragThaikkandi/SMdRQA/pull/71#issuecomment-2024458801) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -3. 🗣 Commented on [#4372](https://github.com/uwcirg/truenth-portal/pull/4372#issuecomment-2024219422) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -4. 🗣 Commented on [#3157](https://github.com/dipy/dipy/pull/3157#issuecomment-2024205729) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#433](https://github.com/payu-org/payu/pull/433#issuecomment-2024059017) in [payu-org/payu](https://github.com/payu-org/payu) -6. 🗣 Commented on [#3894](https://github.com/privacyidea/privacyidea/pull/3894#issuecomment-2023661822) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -7. 🗣 Commented on [#4374](https://github.com/uwcirg/truenth-portal/pull/4374#issuecomment-2023411705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -8. 🗣 Commented on [#945](https://github.com/scilus/scilpy/pull/945#issuecomment-2023327886) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#1](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/1#issuecomment-2023129220) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -10. 🗣 Commented on [#964](https://github.com/avaframe/AvaFrame/pull/964#issuecomment-2023090461) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#73](https://github.com/SwaragThaikkandi/SMdRQA/pull/73#issuecomment-2024488783) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +2. 🗣 Commented on [#72](https://github.com/SwaragThaikkandi/SMdRQA/pull/72#issuecomment-2024464203) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +3. 🗣 Commented on [#71](https://github.com/SwaragThaikkandi/SMdRQA/pull/71#issuecomment-2024458801) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +4. 🗣 Commented on [#4372](https://github.com/uwcirg/truenth-portal/pull/4372#issuecomment-2024219422) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +5. 🗣 Commented on [#3157](https://github.com/dipy/dipy/pull/3157#issuecomment-2024205729) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#433](https://github.com/payu-org/payu/pull/433#issuecomment-2024059017) in [payu-org/payu](https://github.com/payu-org/payu) +7. 🗣 Commented on [#3894](https://github.com/privacyidea/privacyidea/pull/3894#issuecomment-2023661822) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#4374](https://github.com/uwcirg/truenth-portal/pull/4374#issuecomment-2023411705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +9. 🗣 Commented on [#945](https://github.com/scilus/scilpy/pull/945#issuecomment-2023327886) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#1](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/1#issuecomment-2023129220) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) From 83e4d3ae6e1390c46657871f71e86da58adf08e2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Mar 2024 07:37:20 +0000 Subject: [PATCH 1765/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d362d765..5ae30aab 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#73](https://github.com/SwaragThaikkandi/SMdRQA/pull/73#issuecomment-2024488783) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -2. 🗣 Commented on [#72](https://github.com/SwaragThaikkandi/SMdRQA/pull/72#issuecomment-2024464203) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -3. 🗣 Commented on [#71](https://github.com/SwaragThaikkandi/SMdRQA/pull/71#issuecomment-2024458801) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -4. 🗣 Commented on [#4372](https://github.com/uwcirg/truenth-portal/pull/4372#issuecomment-2024219422) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -5. 🗣 Commented on [#3157](https://github.com/dipy/dipy/pull/3157#issuecomment-2024205729) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#433](https://github.com/payu-org/payu/pull/433#issuecomment-2024059017) in [payu-org/payu](https://github.com/payu-org/payu) -7. 🗣 Commented on [#3894](https://github.com/privacyidea/privacyidea/pull/3894#issuecomment-2023661822) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#4374](https://github.com/uwcirg/truenth-portal/pull/4374#issuecomment-2023411705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -9. 🗣 Commented on [#945](https://github.com/scilus/scilpy/pull/945#issuecomment-2023327886) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#1](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/1#issuecomment-2023129220) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +1. 🗣 Commented on [#75](https://github.com/SwaragThaikkandi/SMdRQA/pull/75#issuecomment-2024571858) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +2. 🗣 Commented on [#73](https://github.com/SwaragThaikkandi/SMdRQA/pull/73#issuecomment-2024488783) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +3. 🗣 Commented on [#72](https://github.com/SwaragThaikkandi/SMdRQA/pull/72#issuecomment-2024464203) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +4. 🗣 Commented on [#71](https://github.com/SwaragThaikkandi/SMdRQA/pull/71#issuecomment-2024458801) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +5. 🗣 Commented on [#4372](https://github.com/uwcirg/truenth-portal/pull/4372#issuecomment-2024219422) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +6. 🗣 Commented on [#3157](https://github.com/dipy/dipy/pull/3157#issuecomment-2024205729) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#433](https://github.com/payu-org/payu/pull/433#issuecomment-2024059017) in [payu-org/payu](https://github.com/payu-org/payu) +8. 🗣 Commented on [#3894](https://github.com/privacyidea/privacyidea/pull/3894#issuecomment-2023661822) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#4374](https://github.com/uwcirg/truenth-portal/pull/4374#issuecomment-2023411705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +10. 🗣 Commented on [#945](https://github.com/scilus/scilpy/pull/945#issuecomment-2023327886) in [scilus/scilpy](https://github.com/scilus/scilpy) From 4405f79cd6f3971796df7ff364dcd181c5f7aec3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Mar 2024 12:31:03 +0000 Subject: [PATCH 1766/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5ae30aab..89632603 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#75](https://github.com/SwaragThaikkandi/SMdRQA/pull/75#issuecomment-2024571858) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -2. 🗣 Commented on [#73](https://github.com/SwaragThaikkandi/SMdRQA/pull/73#issuecomment-2024488783) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -3. 🗣 Commented on [#72](https://github.com/SwaragThaikkandi/SMdRQA/pull/72#issuecomment-2024464203) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -4. 🗣 Commented on [#71](https://github.com/SwaragThaikkandi/SMdRQA/pull/71#issuecomment-2024458801) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -5. 🗣 Commented on [#4372](https://github.com/uwcirg/truenth-portal/pull/4372#issuecomment-2024219422) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -6. 🗣 Commented on [#3157](https://github.com/dipy/dipy/pull/3157#issuecomment-2024205729) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#433](https://github.com/payu-org/payu/pull/433#issuecomment-2024059017) in [payu-org/payu](https://github.com/payu-org/payu) -8. 🗣 Commented on [#3894](https://github.com/privacyidea/privacyidea/pull/3894#issuecomment-2023661822) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#4374](https://github.com/uwcirg/truenth-portal/pull/4374#issuecomment-2023411705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -10. 🗣 Commented on [#945](https://github.com/scilus/scilpy/pull/945#issuecomment-2023327886) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#269](https://github.com/aimclub/GOLEM/pull/269#issuecomment-2024992794) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +2. 🗣 Commented on [#75](https://github.com/SwaragThaikkandi/SMdRQA/pull/75#issuecomment-2024571858) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +3. 🗣 Commented on [#73](https://github.com/SwaragThaikkandi/SMdRQA/pull/73#issuecomment-2024488783) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +4. 🗣 Commented on [#72](https://github.com/SwaragThaikkandi/SMdRQA/pull/72#issuecomment-2024464203) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +5. 🗣 Commented on [#71](https://github.com/SwaragThaikkandi/SMdRQA/pull/71#issuecomment-2024458801) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +6. 🗣 Commented on [#4372](https://github.com/uwcirg/truenth-portal/pull/4372#issuecomment-2024219422) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +7. 🗣 Commented on [#3157](https://github.com/dipy/dipy/pull/3157#issuecomment-2024205729) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#433](https://github.com/payu-org/payu/pull/433#issuecomment-2024059017) in [payu-org/payu](https://github.com/payu-org/payu) +9. 🗣 Commented on [#3894](https://github.com/privacyidea/privacyidea/pull/3894#issuecomment-2023661822) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#4374](https://github.com/uwcirg/truenth-portal/pull/4374#issuecomment-2023411705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) From 1dec512a45531890605d76418abae627f08a0f5c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Mar 2024 13:17:39 +0000 Subject: [PATCH 1767/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 89632603..c8f95522 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#269](https://github.com/aimclub/GOLEM/pull/269#issuecomment-2024992794) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -2. 🗣 Commented on [#75](https://github.com/SwaragThaikkandi/SMdRQA/pull/75#issuecomment-2024571858) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -3. 🗣 Commented on [#73](https://github.com/SwaragThaikkandi/SMdRQA/pull/73#issuecomment-2024488783) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -4. 🗣 Commented on [#72](https://github.com/SwaragThaikkandi/SMdRQA/pull/72#issuecomment-2024464203) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -5. 🗣 Commented on [#71](https://github.com/SwaragThaikkandi/SMdRQA/pull/71#issuecomment-2024458801) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -6. 🗣 Commented on [#4372](https://github.com/uwcirg/truenth-portal/pull/4372#issuecomment-2024219422) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -7. 🗣 Commented on [#3157](https://github.com/dipy/dipy/pull/3157#issuecomment-2024205729) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#433](https://github.com/payu-org/payu/pull/433#issuecomment-2024059017) in [payu-org/payu](https://github.com/payu-org/payu) -9. 🗣 Commented on [#3894](https://github.com/privacyidea/privacyidea/pull/3894#issuecomment-2023661822) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#4374](https://github.com/uwcirg/truenth-portal/pull/4374#issuecomment-2023411705) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +1. 🗣 Commented on [#1278](https://github.com/aimclub/FEDOT/pull/1278#issuecomment-2025091908) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#269](https://github.com/aimclub/GOLEM/pull/269#issuecomment-2024992794) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +3. 🗣 Commented on [#75](https://github.com/SwaragThaikkandi/SMdRQA/pull/75#issuecomment-2024571858) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +4. 🗣 Commented on [#73](https://github.com/SwaragThaikkandi/SMdRQA/pull/73#issuecomment-2024488783) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +5. 🗣 Commented on [#72](https://github.com/SwaragThaikkandi/SMdRQA/pull/72#issuecomment-2024464203) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +6. 🗣 Commented on [#71](https://github.com/SwaragThaikkandi/SMdRQA/pull/71#issuecomment-2024458801) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +7. 🗣 Commented on [#4372](https://github.com/uwcirg/truenth-portal/pull/4372#issuecomment-2024219422) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +8. 🗣 Commented on [#3157](https://github.com/dipy/dipy/pull/3157#issuecomment-2024205729) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#433](https://github.com/payu-org/payu/pull/433#issuecomment-2024059017) in [payu-org/payu](https://github.com/payu-org/payu) +10. 🗣 Commented on [#3894](https://github.com/privacyidea/privacyidea/pull/3894#issuecomment-2023661822) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From 027ede7291d1de205dc2e91281cf43dc77a3573d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Mar 2024 16:19:24 +0000 Subject: [PATCH 1768/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c8f95522..ec590fe3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1278](https://github.com/aimclub/FEDOT/pull/1278#issuecomment-2025091908) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#269](https://github.com/aimclub/GOLEM/pull/269#issuecomment-2024992794) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -3. 🗣 Commented on [#75](https://github.com/SwaragThaikkandi/SMdRQA/pull/75#issuecomment-2024571858) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -4. 🗣 Commented on [#73](https://github.com/SwaragThaikkandi/SMdRQA/pull/73#issuecomment-2024488783) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -5. 🗣 Commented on [#72](https://github.com/SwaragThaikkandi/SMdRQA/pull/72#issuecomment-2024464203) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -6. 🗣 Commented on [#71](https://github.com/SwaragThaikkandi/SMdRQA/pull/71#issuecomment-2024458801) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -7. 🗣 Commented on [#4372](https://github.com/uwcirg/truenth-portal/pull/4372#issuecomment-2024219422) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -8. 🗣 Commented on [#3157](https://github.com/dipy/dipy/pull/3157#issuecomment-2024205729) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#433](https://github.com/payu-org/payu/pull/433#issuecomment-2024059017) in [payu-org/payu](https://github.com/payu-org/payu) -10. 🗣 Commented on [#3894](https://github.com/privacyidea/privacyidea/pull/3894#issuecomment-2023661822) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#958](https://github.com/scilus/scilpy/pull/958#issuecomment-2025563218) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#1278](https://github.com/aimclub/FEDOT/pull/1278#issuecomment-2025091908) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#269](https://github.com/aimclub/GOLEM/pull/269#issuecomment-2024992794) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +4. 🗣 Commented on [#75](https://github.com/SwaragThaikkandi/SMdRQA/pull/75#issuecomment-2024571858) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +5. 🗣 Commented on [#73](https://github.com/SwaragThaikkandi/SMdRQA/pull/73#issuecomment-2024488783) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +6. 🗣 Commented on [#72](https://github.com/SwaragThaikkandi/SMdRQA/pull/72#issuecomment-2024464203) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +7. 🗣 Commented on [#71](https://github.com/SwaragThaikkandi/SMdRQA/pull/71#issuecomment-2024458801) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +8. 🗣 Commented on [#4372](https://github.com/uwcirg/truenth-portal/pull/4372#issuecomment-2024219422) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +9. 🗣 Commented on [#3157](https://github.com/dipy/dipy/pull/3157#issuecomment-2024205729) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#433](https://github.com/payu-org/payu/pull/433#issuecomment-2024059017) in [payu-org/payu](https://github.com/payu-org/payu) From 740eabbcca4c0f49887ef9513fea9a2a22ccfd7a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Mar 2024 17:16:21 +0000 Subject: [PATCH 1769/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ec590fe3..ebacb389 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#958](https://github.com/scilus/scilpy/pull/958#issuecomment-2025563218) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#1278](https://github.com/aimclub/FEDOT/pull/1278#issuecomment-2025091908) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#269](https://github.com/aimclub/GOLEM/pull/269#issuecomment-2024992794) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -4. 🗣 Commented on [#75](https://github.com/SwaragThaikkandi/SMdRQA/pull/75#issuecomment-2024571858) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -5. 🗣 Commented on [#73](https://github.com/SwaragThaikkandi/SMdRQA/pull/73#issuecomment-2024488783) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -6. 🗣 Commented on [#72](https://github.com/SwaragThaikkandi/SMdRQA/pull/72#issuecomment-2024464203) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -7. 🗣 Commented on [#71](https://github.com/SwaragThaikkandi/SMdRQA/pull/71#issuecomment-2024458801) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -8. 🗣 Commented on [#4372](https://github.com/uwcirg/truenth-portal/pull/4372#issuecomment-2024219422) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -9. 🗣 Commented on [#3157](https://github.com/dipy/dipy/pull/3157#issuecomment-2024205729) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#433](https://github.com/payu-org/payu/pull/433#issuecomment-2024059017) in [payu-org/payu](https://github.com/payu-org/payu) +1. 🗣 Commented on [#3089](https://github.com/dipy/dipy/pull/3089#issuecomment-2025720574) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#958](https://github.com/scilus/scilpy/pull/958#issuecomment-2025563218) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#1278](https://github.com/aimclub/FEDOT/pull/1278#issuecomment-2025091908) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#269](https://github.com/aimclub/GOLEM/pull/269#issuecomment-2024992794) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +5. 🗣 Commented on [#75](https://github.com/SwaragThaikkandi/SMdRQA/pull/75#issuecomment-2024571858) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +6. 🗣 Commented on [#73](https://github.com/SwaragThaikkandi/SMdRQA/pull/73#issuecomment-2024488783) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +7. 🗣 Commented on [#72](https://github.com/SwaragThaikkandi/SMdRQA/pull/72#issuecomment-2024464203) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +8. 🗣 Commented on [#71](https://github.com/SwaragThaikkandi/SMdRQA/pull/71#issuecomment-2024458801) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +9. 🗣 Commented on [#4372](https://github.com/uwcirg/truenth-portal/pull/4372#issuecomment-2024219422) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +10. 🗣 Commented on [#3157](https://github.com/dipy/dipy/pull/3157#issuecomment-2024205729) in [dipy/dipy](https://github.com/dipy/dipy) From 460e55a24eedcfc47cb3e0926951378356035360 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Mar 2024 09:15:11 +0000 Subject: [PATCH 1770/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ebacb389..95b97d57 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3089](https://github.com/dipy/dipy/pull/3089#issuecomment-2025720574) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#958](https://github.com/scilus/scilpy/pull/958#issuecomment-2025563218) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#1278](https://github.com/aimclub/FEDOT/pull/1278#issuecomment-2025091908) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#269](https://github.com/aimclub/GOLEM/pull/269#issuecomment-2024992794) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -5. 🗣 Commented on [#75](https://github.com/SwaragThaikkandi/SMdRQA/pull/75#issuecomment-2024571858) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -6. 🗣 Commented on [#73](https://github.com/SwaragThaikkandi/SMdRQA/pull/73#issuecomment-2024488783) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -7. 🗣 Commented on [#72](https://github.com/SwaragThaikkandi/SMdRQA/pull/72#issuecomment-2024464203) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -8. 🗣 Commented on [#71](https://github.com/SwaragThaikkandi/SMdRQA/pull/71#issuecomment-2024458801) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -9. 🗣 Commented on [#4372](https://github.com/uwcirg/truenth-portal/pull/4372#issuecomment-2024219422) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -10. 🗣 Commented on [#3157](https://github.com/dipy/dipy/pull/3157#issuecomment-2024205729) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#320](https://github.com/DeMarcoLab/fibsem/pull/320#issuecomment-2026916957) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +2. 🗣 Commented on [#107](https://github.com/aimclub/BAMT/pull/107#issuecomment-2026916264) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +3. 🗣 Commented on [#3089](https://github.com/dipy/dipy/pull/3089#issuecomment-2025720574) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#958](https://github.com/scilus/scilpy/pull/958#issuecomment-2025563218) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#1278](https://github.com/aimclub/FEDOT/pull/1278#issuecomment-2025091908) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#269](https://github.com/aimclub/GOLEM/pull/269#issuecomment-2024992794) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +7. 🗣 Commented on [#75](https://github.com/SwaragThaikkandi/SMdRQA/pull/75#issuecomment-2024571858) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +8. 🗣 Commented on [#73](https://github.com/SwaragThaikkandi/SMdRQA/pull/73#issuecomment-2024488783) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +9. 🗣 Commented on [#72](https://github.com/SwaragThaikkandi/SMdRQA/pull/72#issuecomment-2024464203) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +10. 🗣 Commented on [#71](https://github.com/SwaragThaikkandi/SMdRQA/pull/71#issuecomment-2024458801) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) From be702c9bfdf0898f139f1cb5214add6db1c52ced Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Mar 2024 10:17:09 +0000 Subject: [PATCH 1771/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 95b97d57..1bdae80b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#320](https://github.com/DeMarcoLab/fibsem/pull/320#issuecomment-2026916957) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -2. 🗣 Commented on [#107](https://github.com/aimclub/BAMT/pull/107#issuecomment-2026916264) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -3. 🗣 Commented on [#3089](https://github.com/dipy/dipy/pull/3089#issuecomment-2025720574) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#958](https://github.com/scilus/scilpy/pull/958#issuecomment-2025563218) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#1278](https://github.com/aimclub/FEDOT/pull/1278#issuecomment-2025091908) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#269](https://github.com/aimclub/GOLEM/pull/269#issuecomment-2024992794) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -7. 🗣 Commented on [#75](https://github.com/SwaragThaikkandi/SMdRQA/pull/75#issuecomment-2024571858) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -8. 🗣 Commented on [#73](https://github.com/SwaragThaikkandi/SMdRQA/pull/73#issuecomment-2024488783) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -9. 🗣 Commented on [#72](https://github.com/SwaragThaikkandi/SMdRQA/pull/72#issuecomment-2024464203) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -10. 🗣 Commented on [#71](https://github.com/SwaragThaikkandi/SMdRQA/pull/71#issuecomment-2024458801) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +1. 🗣 Commented on [#321](https://github.com/DeMarcoLab/fibsem/pull/321#issuecomment-2027024587) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +2. 🗣 Commented on [#320](https://github.com/DeMarcoLab/fibsem/pull/320#issuecomment-2026916957) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +3. 🗣 Commented on [#107](https://github.com/aimclub/BAMT/pull/107#issuecomment-2026916264) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +4. 🗣 Commented on [#3089](https://github.com/dipy/dipy/pull/3089#issuecomment-2025720574) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#958](https://github.com/scilus/scilpy/pull/958#issuecomment-2025563218) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#1278](https://github.com/aimclub/FEDOT/pull/1278#issuecomment-2025091908) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#269](https://github.com/aimclub/GOLEM/pull/269#issuecomment-2024992794) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +8. 🗣 Commented on [#75](https://github.com/SwaragThaikkandi/SMdRQA/pull/75#issuecomment-2024571858) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +9. 🗣 Commented on [#73](https://github.com/SwaragThaikkandi/SMdRQA/pull/73#issuecomment-2024488783) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +10. 🗣 Commented on [#72](https://github.com/SwaragThaikkandi/SMdRQA/pull/72#issuecomment-2024464203) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) From 29e26a18bd97cc9318033d1077a81a6d3ecf9d5c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Mar 2024 10:37:15 +0000 Subject: [PATCH 1772/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1bdae80b..36f28df9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#321](https://github.com/DeMarcoLab/fibsem/pull/321#issuecomment-2027024587) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -2. 🗣 Commented on [#320](https://github.com/DeMarcoLab/fibsem/pull/320#issuecomment-2026916957) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -3. 🗣 Commented on [#107](https://github.com/aimclub/BAMT/pull/107#issuecomment-2026916264) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -4. 🗣 Commented on [#3089](https://github.com/dipy/dipy/pull/3089#issuecomment-2025720574) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#958](https://github.com/scilus/scilpy/pull/958#issuecomment-2025563218) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#1278](https://github.com/aimclub/FEDOT/pull/1278#issuecomment-2025091908) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#269](https://github.com/aimclub/GOLEM/pull/269#issuecomment-2024992794) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -8. 🗣 Commented on [#75](https://github.com/SwaragThaikkandi/SMdRQA/pull/75#issuecomment-2024571858) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -9. 🗣 Commented on [#73](https://github.com/SwaragThaikkandi/SMdRQA/pull/73#issuecomment-2024488783) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -10. 🗣 Commented on [#72](https://github.com/SwaragThaikkandi/SMdRQA/pull/72#issuecomment-2024464203) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +1. 🗣 Commented on [#323](https://github.com/DeMarcoLab/fibsem/pull/323#issuecomment-2027046865) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +2. 🗣 Commented on [#322](https://github.com/DeMarcoLab/fibsem/pull/322#issuecomment-2027026048) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +3. 🗣 Commented on [#321](https://github.com/DeMarcoLab/fibsem/pull/321#issuecomment-2027024587) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +4. 🗣 Commented on [#320](https://github.com/DeMarcoLab/fibsem/pull/320#issuecomment-2026916957) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +5. 🗣 Commented on [#107](https://github.com/aimclub/BAMT/pull/107#issuecomment-2026916264) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +6. 🗣 Commented on [#3089](https://github.com/dipy/dipy/pull/3089#issuecomment-2025720574) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#958](https://github.com/scilus/scilpy/pull/958#issuecomment-2025563218) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#1278](https://github.com/aimclub/FEDOT/pull/1278#issuecomment-2025091908) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#269](https://github.com/aimclub/GOLEM/pull/269#issuecomment-2024992794) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +10. 🗣 Commented on [#75](https://github.com/SwaragThaikkandi/SMdRQA/pull/75#issuecomment-2024571858) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) From dce9795e13baf9e85489791661190b2f696570ca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Mar 2024 12:30:43 +0000 Subject: [PATCH 1773/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 36f28df9..02f5c407 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#323](https://github.com/DeMarcoLab/fibsem/pull/323#issuecomment-2027046865) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -2. 🗣 Commented on [#322](https://github.com/DeMarcoLab/fibsem/pull/322#issuecomment-2027026048) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -3. 🗣 Commented on [#321](https://github.com/DeMarcoLab/fibsem/pull/321#issuecomment-2027024587) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -4. 🗣 Commented on [#320](https://github.com/DeMarcoLab/fibsem/pull/320#issuecomment-2026916957) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -5. 🗣 Commented on [#107](https://github.com/aimclub/BAMT/pull/107#issuecomment-2026916264) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -6. 🗣 Commented on [#3089](https://github.com/dipy/dipy/pull/3089#issuecomment-2025720574) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#958](https://github.com/scilus/scilpy/pull/958#issuecomment-2025563218) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#1278](https://github.com/aimclub/FEDOT/pull/1278#issuecomment-2025091908) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#269](https://github.com/aimclub/GOLEM/pull/269#issuecomment-2024992794) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -10. 🗣 Commented on [#75](https://github.com/SwaragThaikkandi/SMdRQA/pull/75#issuecomment-2024571858) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +1. 🗣 Commented on [#37](https://github.com/autonomio/wrangle/pull/37#issuecomment-2027165773) in [autonomio/wrangle](https://github.com/autonomio/wrangle) +2. 🗣 Commented on [#596](https://github.com/autonomio/talos/pull/596#issuecomment-2027122158) in [autonomio/talos](https://github.com/autonomio/talos) +3. 🗣 Commented on [#323](https://github.com/DeMarcoLab/fibsem/pull/323#issuecomment-2027046865) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +4. 🗣 Commented on [#322](https://github.com/DeMarcoLab/fibsem/pull/322#issuecomment-2027026048) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +5. 🗣 Commented on [#321](https://github.com/DeMarcoLab/fibsem/pull/321#issuecomment-2027024587) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +6. 🗣 Commented on [#320](https://github.com/DeMarcoLab/fibsem/pull/320#issuecomment-2026916957) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +7. 🗣 Commented on [#107](https://github.com/aimclub/BAMT/pull/107#issuecomment-2026916264) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +8. 🗣 Commented on [#3089](https://github.com/dipy/dipy/pull/3089#issuecomment-2025720574) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#958](https://github.com/scilus/scilpy/pull/958#issuecomment-2025563218) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#1278](https://github.com/aimclub/FEDOT/pull/1278#issuecomment-2025091908) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From 6a84fd0ebb45d5cd403f77acc0381cf7ecec1b13 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Mar 2024 15:16:22 +0000 Subject: [PATCH 1774/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 02f5c407..16e18046 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#37](https://github.com/autonomio/wrangle/pull/37#issuecomment-2027165773) in [autonomio/wrangle](https://github.com/autonomio/wrangle) -2. 🗣 Commented on [#596](https://github.com/autonomio/talos/pull/596#issuecomment-2027122158) in [autonomio/talos](https://github.com/autonomio/talos) -3. 🗣 Commented on [#323](https://github.com/DeMarcoLab/fibsem/pull/323#issuecomment-2027046865) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -4. 🗣 Commented on [#322](https://github.com/DeMarcoLab/fibsem/pull/322#issuecomment-2027026048) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -5. 🗣 Commented on [#321](https://github.com/DeMarcoLab/fibsem/pull/321#issuecomment-2027024587) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -6. 🗣 Commented on [#320](https://github.com/DeMarcoLab/fibsem/pull/320#issuecomment-2026916957) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -7. 🗣 Commented on [#107](https://github.com/aimclub/BAMT/pull/107#issuecomment-2026916264) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -8. 🗣 Commented on [#3089](https://github.com/dipy/dipy/pull/3089#issuecomment-2025720574) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#958](https://github.com/scilus/scilpy/pull/958#issuecomment-2025563218) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#1278](https://github.com/aimclub/FEDOT/pull/1278#issuecomment-2025091908) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#531](https://github.com/UIUCLibrary/Speedwagon/pull/531#issuecomment-2027363981) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +2. 🗣 Commented on [#37](https://github.com/autonomio/wrangle/pull/37#issuecomment-2027165773) in [autonomio/wrangle](https://github.com/autonomio/wrangle) +3. 🗣 Commented on [#596](https://github.com/autonomio/talos/pull/596#issuecomment-2027122158) in [autonomio/talos](https://github.com/autonomio/talos) +4. 🗣 Commented on [#323](https://github.com/DeMarcoLab/fibsem/pull/323#issuecomment-2027046865) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +5. 🗣 Commented on [#322](https://github.com/DeMarcoLab/fibsem/pull/322#issuecomment-2027026048) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +6. 🗣 Commented on [#321](https://github.com/DeMarcoLab/fibsem/pull/321#issuecomment-2027024587) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +7. 🗣 Commented on [#320](https://github.com/DeMarcoLab/fibsem/pull/320#issuecomment-2026916957) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +8. 🗣 Commented on [#107](https://github.com/aimclub/BAMT/pull/107#issuecomment-2026916264) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +9. 🗣 Commented on [#3089](https://github.com/dipy/dipy/pull/3089#issuecomment-2025720574) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#958](https://github.com/scilus/scilpy/pull/958#issuecomment-2025563218) in [scilus/scilpy](https://github.com/scilus/scilpy) From 54a633687edd1c5e2f80c139d804ebfbd0ba1c3f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Mar 2024 15:36:59 +0000 Subject: [PATCH 1775/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 16e18046..56dc48e0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#531](https://github.com/UIUCLibrary/Speedwagon/pull/531#issuecomment-2027363981) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -2. 🗣 Commented on [#37](https://github.com/autonomio/wrangle/pull/37#issuecomment-2027165773) in [autonomio/wrangle](https://github.com/autonomio/wrangle) -3. 🗣 Commented on [#596](https://github.com/autonomio/talos/pull/596#issuecomment-2027122158) in [autonomio/talos](https://github.com/autonomio/talos) -4. 🗣 Commented on [#323](https://github.com/DeMarcoLab/fibsem/pull/323#issuecomment-2027046865) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -5. 🗣 Commented on [#322](https://github.com/DeMarcoLab/fibsem/pull/322#issuecomment-2027026048) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -6. 🗣 Commented on [#321](https://github.com/DeMarcoLab/fibsem/pull/321#issuecomment-2027024587) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -7. 🗣 Commented on [#320](https://github.com/DeMarcoLab/fibsem/pull/320#issuecomment-2026916957) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -8. 🗣 Commented on [#107](https://github.com/aimclub/BAMT/pull/107#issuecomment-2026916264) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -9. 🗣 Commented on [#3089](https://github.com/dipy/dipy/pull/3089#issuecomment-2025720574) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#958](https://github.com/scilus/scilpy/pull/958#issuecomment-2025563218) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#1](https://github.com/Remi-Gau/mist2templateflow/pull/1#issuecomment-2027392514) in [Remi-Gau/mist2templateflow](https://github.com/Remi-Gau/mist2templateflow) +2. 🗣 Commented on [#531](https://github.com/UIUCLibrary/Speedwagon/pull/531#issuecomment-2027363981) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +3. 🗣 Commented on [#37](https://github.com/autonomio/wrangle/pull/37#issuecomment-2027165773) in [autonomio/wrangle](https://github.com/autonomio/wrangle) +4. 🗣 Commented on [#596](https://github.com/autonomio/talos/pull/596#issuecomment-2027122158) in [autonomio/talos](https://github.com/autonomio/talos) +5. 🗣 Commented on [#323](https://github.com/DeMarcoLab/fibsem/pull/323#issuecomment-2027046865) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +6. 🗣 Commented on [#322](https://github.com/DeMarcoLab/fibsem/pull/322#issuecomment-2027026048) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +7. 🗣 Commented on [#321](https://github.com/DeMarcoLab/fibsem/pull/321#issuecomment-2027024587) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +8. 🗣 Commented on [#320](https://github.com/DeMarcoLab/fibsem/pull/320#issuecomment-2026916957) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +9. 🗣 Commented on [#107](https://github.com/aimclub/BAMT/pull/107#issuecomment-2026916264) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +10. 🗣 Commented on [#3089](https://github.com/dipy/dipy/pull/3089#issuecomment-2025720574) in [dipy/dipy](https://github.com/dipy/dipy) From da4eafce03a38817b515c49b005eb0d73eb6ee4c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Mar 2024 17:14:15 +0000 Subject: [PATCH 1776/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 56dc48e0..6a3af8cb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/Remi-Gau/mist2templateflow/pull/1#issuecomment-2027392514) in [Remi-Gau/mist2templateflow](https://github.com/Remi-Gau/mist2templateflow) -2. 🗣 Commented on [#531](https://github.com/UIUCLibrary/Speedwagon/pull/531#issuecomment-2027363981) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -3. 🗣 Commented on [#37](https://github.com/autonomio/wrangle/pull/37#issuecomment-2027165773) in [autonomio/wrangle](https://github.com/autonomio/wrangle) -4. 🗣 Commented on [#596](https://github.com/autonomio/talos/pull/596#issuecomment-2027122158) in [autonomio/talos](https://github.com/autonomio/talos) -5. 🗣 Commented on [#323](https://github.com/DeMarcoLab/fibsem/pull/323#issuecomment-2027046865) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -6. 🗣 Commented on [#322](https://github.com/DeMarcoLab/fibsem/pull/322#issuecomment-2027026048) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -7. 🗣 Commented on [#321](https://github.com/DeMarcoLab/fibsem/pull/321#issuecomment-2027024587) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -8. 🗣 Commented on [#320](https://github.com/DeMarcoLab/fibsem/pull/320#issuecomment-2026916957) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -9. 🗣 Commented on [#107](https://github.com/aimclub/BAMT/pull/107#issuecomment-2026916264) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -10. 🗣 Commented on [#3089](https://github.com/dipy/dipy/pull/3089#issuecomment-2025720574) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#21945](https://github.com/spyder-ide/spyder/pull/21945#issuecomment-2027480582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#624](https://github.com/HEXRD/hexrd/pull/624#issuecomment-2027476856) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +4. 🗣 Commented on [#1](https://github.com/Remi-Gau/mist2templateflow/pull/1#issuecomment-2027392514) in [Remi-Gau/mist2templateflow](https://github.com/Remi-Gau/mist2templateflow) +5. 🗣 Commented on [#531](https://github.com/UIUCLibrary/Speedwagon/pull/531#issuecomment-2027363981) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +6. 🗣 Commented on [#37](https://github.com/autonomio/wrangle/pull/37#issuecomment-2027165773) in [autonomio/wrangle](https://github.com/autonomio/wrangle) +7. 🗣 Commented on [#596](https://github.com/autonomio/talos/pull/596#issuecomment-2027122158) in [autonomio/talos](https://github.com/autonomio/talos) +8. 🗣 Commented on [#323](https://github.com/DeMarcoLab/fibsem/pull/323#issuecomment-2027046865) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +9. 🗣 Commented on [#322](https://github.com/DeMarcoLab/fibsem/pull/322#issuecomment-2027026048) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +10. 🗣 Commented on [#321](https://github.com/DeMarcoLab/fibsem/pull/321#issuecomment-2027024587) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) From c28fdb2e36a4d2612d2cc1db300cdd29b20db805 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Mar 2024 18:19:22 +0000 Subject: [PATCH 1777/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6a3af8cb..8ee75613 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#21945](https://github.com/spyder-ide/spyder/pull/21945#issuecomment-2027480582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#624](https://github.com/HEXRD/hexrd/pull/624#issuecomment-2027476856) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -4. 🗣 Commented on [#1](https://github.com/Remi-Gau/mist2templateflow/pull/1#issuecomment-2027392514) in [Remi-Gau/mist2templateflow](https://github.com/Remi-Gau/mist2templateflow) -5. 🗣 Commented on [#531](https://github.com/UIUCLibrary/Speedwagon/pull/531#issuecomment-2027363981) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -6. 🗣 Commented on [#37](https://github.com/autonomio/wrangle/pull/37#issuecomment-2027165773) in [autonomio/wrangle](https://github.com/autonomio/wrangle) -7. 🗣 Commented on [#596](https://github.com/autonomio/talos/pull/596#issuecomment-2027122158) in [autonomio/talos](https://github.com/autonomio/talos) -8. 🗣 Commented on [#323](https://github.com/DeMarcoLab/fibsem/pull/323#issuecomment-2027046865) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -9. 🗣 Commented on [#322](https://github.com/DeMarcoLab/fibsem/pull/322#issuecomment-2027026048) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -10. 🗣 Commented on [#321](https://github.com/DeMarcoLab/fibsem/pull/321#issuecomment-2027024587) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +1. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +2. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#21945](https://github.com/spyder-ide/spyder/pull/21945#issuecomment-2027480582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#624](https://github.com/HEXRD/hexrd/pull/624#issuecomment-2027476856) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#1](https://github.com/Remi-Gau/mist2templateflow/pull/1#issuecomment-2027392514) in [Remi-Gau/mist2templateflow](https://github.com/Remi-Gau/mist2templateflow) +6. 🗣 Commented on [#531](https://github.com/UIUCLibrary/Speedwagon/pull/531#issuecomment-2027363981) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +7. 🗣 Commented on [#37](https://github.com/autonomio/wrangle/pull/37#issuecomment-2027165773) in [autonomio/wrangle](https://github.com/autonomio/wrangle) +8. 🗣 Commented on [#596](https://github.com/autonomio/talos/pull/596#issuecomment-2027122158) in [autonomio/talos](https://github.com/autonomio/talos) +9. 🗣 Commented on [#323](https://github.com/DeMarcoLab/fibsem/pull/323#issuecomment-2027046865) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +10. 🗣 Commented on [#322](https://github.com/DeMarcoLab/fibsem/pull/322#issuecomment-2027026048) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) From 348745c3a0f6e6c16a5ee766a1da31b2e2595072 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Mar 2024 20:17:31 +0000 Subject: [PATCH 1778/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8ee75613..c0ac9a64 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -2. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#21945](https://github.com/spyder-ide/spyder/pull/21945#issuecomment-2027480582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#624](https://github.com/HEXRD/hexrd/pull/624#issuecomment-2027476856) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#1](https://github.com/Remi-Gau/mist2templateflow/pull/1#issuecomment-2027392514) in [Remi-Gau/mist2templateflow](https://github.com/Remi-Gau/mist2templateflow) -6. 🗣 Commented on [#531](https://github.com/UIUCLibrary/Speedwagon/pull/531#issuecomment-2027363981) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -7. 🗣 Commented on [#37](https://github.com/autonomio/wrangle/pull/37#issuecomment-2027165773) in [autonomio/wrangle](https://github.com/autonomio/wrangle) -8. 🗣 Commented on [#596](https://github.com/autonomio/talos/pull/596#issuecomment-2027122158) in [autonomio/talos](https://github.com/autonomio/talos) -9. 🗣 Commented on [#323](https://github.com/DeMarcoLab/fibsem/pull/323#issuecomment-2027046865) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -10. 🗣 Commented on [#322](https://github.com/DeMarcoLab/fibsem/pull/322#issuecomment-2027026048) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +1. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +2. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#21945](https://github.com/spyder-ide/spyder/pull/21945#issuecomment-2027480582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#624](https://github.com/HEXRD/hexrd/pull/624#issuecomment-2027476856) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +6. 🗣 Commented on [#1](https://github.com/Remi-Gau/mist2templateflow/pull/1#issuecomment-2027392514) in [Remi-Gau/mist2templateflow](https://github.com/Remi-Gau/mist2templateflow) +7. 🗣 Commented on [#531](https://github.com/UIUCLibrary/Speedwagon/pull/531#issuecomment-2027363981) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +8. 🗣 Commented on [#37](https://github.com/autonomio/wrangle/pull/37#issuecomment-2027165773) in [autonomio/wrangle](https://github.com/autonomio/wrangle) +9. 🗣 Commented on [#596](https://github.com/autonomio/talos/pull/596#issuecomment-2027122158) in [autonomio/talos](https://github.com/autonomio/talos) +10. 🗣 Commented on [#323](https://github.com/DeMarcoLab/fibsem/pull/323#issuecomment-2027046865) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) From 5a0f04187727b1bdca75160b1580b501a3abd498 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Mar 2024 20:37:12 +0000 Subject: [PATCH 1779/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c0ac9a64..32a5eaa0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -2. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#21945](https://github.com/spyder-ide/spyder/pull/21945#issuecomment-2027480582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#624](https://github.com/HEXRD/hexrd/pull/624#issuecomment-2027476856) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -6. 🗣 Commented on [#1](https://github.com/Remi-Gau/mist2templateflow/pull/1#issuecomment-2027392514) in [Remi-Gau/mist2templateflow](https://github.com/Remi-Gau/mist2templateflow) -7. 🗣 Commented on [#531](https://github.com/UIUCLibrary/Speedwagon/pull/531#issuecomment-2027363981) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -8. 🗣 Commented on [#37](https://github.com/autonomio/wrangle/pull/37#issuecomment-2027165773) in [autonomio/wrangle](https://github.com/autonomio/wrangle) -9. 🗣 Commented on [#596](https://github.com/autonomio/talos/pull/596#issuecomment-2027122158) in [autonomio/talos](https://github.com/autonomio/talos) -10. 🗣 Commented on [#323](https://github.com/DeMarcoLab/fibsem/pull/323#issuecomment-2027046865) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +1. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +3. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +4. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#21945](https://github.com/spyder-ide/spyder/pull/21945#issuecomment-2027480582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#624](https://github.com/HEXRD/hexrd/pull/624#issuecomment-2027476856) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +7. 🗣 Commented on [#1](https://github.com/Remi-Gau/mist2templateflow/pull/1#issuecomment-2027392514) in [Remi-Gau/mist2templateflow](https://github.com/Remi-Gau/mist2templateflow) +8. 🗣 Commented on [#531](https://github.com/UIUCLibrary/Speedwagon/pull/531#issuecomment-2027363981) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +9. 🗣 Commented on [#37](https://github.com/autonomio/wrangle/pull/37#issuecomment-2027165773) in [autonomio/wrangle](https://github.com/autonomio/wrangle) +10. 🗣 Commented on [#596](https://github.com/autonomio/talos/pull/596#issuecomment-2027122158) in [autonomio/talos](https://github.com/autonomio/talos) From 1c88c762f644228a34361157c4bdec28dd26517e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Mar 2024 22:15:12 +0000 Subject: [PATCH 1780/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 32a5eaa0..55d6ece8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -3. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -4. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#21945](https://github.com/spyder-ide/spyder/pull/21945#issuecomment-2027480582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#624](https://github.com/HEXRD/hexrd/pull/624#issuecomment-2027476856) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -7. 🗣 Commented on [#1](https://github.com/Remi-Gau/mist2templateflow/pull/1#issuecomment-2027392514) in [Remi-Gau/mist2templateflow](https://github.com/Remi-Gau/mist2templateflow) -8. 🗣 Commented on [#531](https://github.com/UIUCLibrary/Speedwagon/pull/531#issuecomment-2027363981) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -9. 🗣 Commented on [#37](https://github.com/autonomio/wrangle/pull/37#issuecomment-2027165773) in [autonomio/wrangle](https://github.com/autonomio/wrangle) -10. 🗣 Commented on [#596](https://github.com/autonomio/talos/pull/596#issuecomment-2027122158) in [autonomio/talos](https://github.com/autonomio/talos) +1. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +2. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +4. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#21945](https://github.com/spyder-ide/spyder/pull/21945#issuecomment-2027480582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#624](https://github.com/HEXRD/hexrd/pull/624#issuecomment-2027476856) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +8. 🗣 Commented on [#1](https://github.com/Remi-Gau/mist2templateflow/pull/1#issuecomment-2027392514) in [Remi-Gau/mist2templateflow](https://github.com/Remi-Gau/mist2templateflow) +9. 🗣 Commented on [#531](https://github.com/UIUCLibrary/Speedwagon/pull/531#issuecomment-2027363981) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +10. 🗣 Commented on [#37](https://github.com/autonomio/wrangle/pull/37#issuecomment-2027165773) in [autonomio/wrangle](https://github.com/autonomio/wrangle) From e8543fdcdfb980791716de746e4af7b370dc57a7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Mar 2024 23:36:59 +0000 Subject: [PATCH 1781/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 55d6ece8..5736aa9d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -2. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -4. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -5. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#21945](https://github.com/spyder-ide/spyder/pull/21945#issuecomment-2027480582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#624](https://github.com/HEXRD/hexrd/pull/624#issuecomment-2027476856) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -8. 🗣 Commented on [#1](https://github.com/Remi-Gau/mist2templateflow/pull/1#issuecomment-2027392514) in [Remi-Gau/mist2templateflow](https://github.com/Remi-Gau/mist2templateflow) -9. 🗣 Commented on [#531](https://github.com/UIUCLibrary/Speedwagon/pull/531#issuecomment-2027363981) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -10. 🗣 Commented on [#37](https://github.com/autonomio/wrangle/pull/37#issuecomment-2027165773) in [autonomio/wrangle](https://github.com/autonomio/wrangle) +1. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +2. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +3. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +5. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +6. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#21945](https://github.com/spyder-ide/spyder/pull/21945#issuecomment-2027480582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#624](https://github.com/HEXRD/hexrd/pull/624#issuecomment-2027476856) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +9. 🗣 Commented on [#1](https://github.com/Remi-Gau/mist2templateflow/pull/1#issuecomment-2027392514) in [Remi-Gau/mist2templateflow](https://github.com/Remi-Gau/mist2templateflow) +10. 🗣 Commented on [#531](https://github.com/UIUCLibrary/Speedwagon/pull/531#issuecomment-2027363981) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) From 97c4aa8e458cd7a7855c78980f05b23d9fb8c6f8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Mar 2024 01:07:18 +0000 Subject: [PATCH 1782/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5736aa9d..4ea96c54 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -2. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -3. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -5. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -6. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#21945](https://github.com/spyder-ide/spyder/pull/21945#issuecomment-2027480582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#624](https://github.com/HEXRD/hexrd/pull/624#issuecomment-2027476856) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -9. 🗣 Commented on [#1](https://github.com/Remi-Gau/mist2templateflow/pull/1#issuecomment-2027392514) in [Remi-Gau/mist2templateflow](https://github.com/Remi-Gau/mist2templateflow) -10. 🗣 Commented on [#531](https://github.com/UIUCLibrary/Speedwagon/pull/531#issuecomment-2027363981) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +1. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +2. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +3. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +4. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +6. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +7. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#21945](https://github.com/spyder-ide/spyder/pull/21945#issuecomment-2027480582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#624](https://github.com/HEXRD/hexrd/pull/624#issuecomment-2027476856) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +10. 🗣 Commented on [#1](https://github.com/Remi-Gau/mist2templateflow/pull/1#issuecomment-2027392514) in [Remi-Gau/mist2templateflow](https://github.com/Remi-Gau/mist2templateflow) From fcb10aff5515b371f97730f4e2dc58ecea9641eb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Mar 2024 08:19:49 +0000 Subject: [PATCH 1783/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4ea96c54..82fba34d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -2. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -3. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -4. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -6. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -7. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#21945](https://github.com/spyder-ide/spyder/pull/21945#issuecomment-2027480582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#624](https://github.com/HEXRD/hexrd/pull/624#issuecomment-2027476856) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -10. 🗣 Commented on [#1](https://github.com/Remi-Gau/mist2templateflow/pull/1#issuecomment-2027392514) in [Remi-Gau/mist2templateflow](https://github.com/Remi-Gau/mist2templateflow) +1. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +2. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +3. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +4. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +5. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +7. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +8. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#21945](https://github.com/spyder-ide/spyder/pull/21945#issuecomment-2027480582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#624](https://github.com/HEXRD/hexrd/pull/624#issuecomment-2027476856) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) From 8702ed8d07fe2c9ac9b2d9b96fb37a75bf73458a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Mar 2024 15:37:23 +0000 Subject: [PATCH 1784/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 82fba34d..7f2ea50a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -2. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -3. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -4. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -5. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -7. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -8. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#21945](https://github.com/spyder-ide/spyder/pull/21945#issuecomment-2027480582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#624](https://github.com/HEXRD/hexrd/pull/624#issuecomment-2027476856) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +1. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +3. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +4. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +5. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +6. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +8. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +9. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#21945](https://github.com/spyder-ide/spyder/pull/21945#issuecomment-2027480582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From d43758c7051388dd092905f0ee6b4cca03134ea2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Mar 2024 16:19:28 +0000 Subject: [PATCH 1785/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7f2ea50a..c3292a1f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -3. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -4. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -5. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -6. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -8. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -9. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#21945](https://github.com/spyder-ide/spyder/pull/21945#issuecomment-2027480582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) +2. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +4. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +5. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +6. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +7. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +9. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +10. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) From 3ed9e10ffe1900e1fe013ab2802e8527fe2028c3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 31 Mar 2024 02:38:21 +0000 Subject: [PATCH 1786/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c3292a1f..e1a9a9c5 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) -2. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -4. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -5. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -6. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -7. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -9. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -10. 🗣 Commented on [#3156](https://github.com/dipy/dipy/pull/3156#issuecomment-2027505080) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) +3. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +5. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +6. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +7. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +8. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +10. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) From 66869415b39005cdc6951955c35e907864d7b25e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 31 Mar 2024 08:19:48 +0000 Subject: [PATCH 1787/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e1a9a9c5..c38438b7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) -3. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -5. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -6. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -7. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -8. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) -10. 🗣 Commented on [#9186](https://github.com/statsmodels/statsmodels/pull/9186#issuecomment-2027556236) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +1. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +2. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) +4. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +6. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +7. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +8. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +9. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) From fee936fffa625e3a0858575a8e15d57004ebf0e3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 09:17:52 +0000 Subject: [PATCH 1788/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c38438b7..bc1cc98a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -2. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) -4. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -6. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -7. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -8. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -9. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#5](https://github.com/Advik-B/CurseForge-API/pull/5#issuecomment-2027671230) in [Advik-B/CurseForge-API](https://github.com/Advik-B/CurseForge-API) +1. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +2. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +3. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) +5. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +7. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +8. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +9. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +10. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From b38a66c765bf29d1a3003cf374716cd5aa03209d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 09:37:58 +0000 Subject: [PATCH 1789/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bc1cc98a..657a6da6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -2. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -3. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) -5. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -7. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -8. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -9. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -10. 🗣 Commented on [#21942](https://github.com/spyder-ide/spyder/pull/21942#issuecomment-2027712375) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +3. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +4. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) +6. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +8. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +9. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +10. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) From 79ba02136c96bde4863189551f0c9a9f9b1f626a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 10:17:48 +0000 Subject: [PATCH 1790/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 657a6da6..372701a1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -3. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -4. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) -6. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -8. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -9. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -10. 🗣 Commented on [#1107](https://github.com/lmcinnes/umap/pull/1107#issuecomment-2027776141) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +1. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +2. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +4. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +5. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) +7. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +9. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +10. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) From 49ee8a415ece16aa226c05bd7b75ac059496e2dc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 12:31:59 +0000 Subject: [PATCH 1791/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 372701a1..4c48598a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -2. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -4. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -5. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) -7. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -9. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) -10. 🗣 Commented on [#56](https://github.com/AllenInstitute/em_stitch/pull/56#issuecomment-2027822543) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +1. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +3. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +5. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +6. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) +8. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +10. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) From f8c58e8af7ab6fcd22869e0ada60b781d8180860 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 16:20:23 +0000 Subject: [PATCH 1792/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4c48598a..3a8cc65b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -3. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -5. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -6. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) -8. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -10. 🗣 Commented on [#57](https://github.com/AllenInstitute/em_stitch/pull/57#issuecomment-2027825146) in [AllenInstitute/em_stitch](https://github.com/AllenInstitute/em_stitch) +1. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +4. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +6. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +7. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) +9. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) From 0b68c2aa45a775ae8c6450ef9078f62dd04be938 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 16:40:39 +0000 Subject: [PATCH 1793/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3a8cc65b..b204ff2d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -4. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -6. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -7. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) -9. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#324](https://github.com/DeMarcoLab/fibsem/pull/324#issuecomment-2027958315) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +1. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +5. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +7. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +8. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) +10. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) From 63cd17fbb316a2c956f1f6b3b4dd96d044814f0b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 17:17:22 +0000 Subject: [PATCH 1794/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b204ff2d..b79709bf 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -5. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -7. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -8. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) -10. 🗣 Commented on [#3161](https://github.com/dipy/dipy/pull/3161#issuecomment-2028125388) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#30](https://github.com/Borda/pyRepoStats/pull/30#issuecomment-2030166010) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +2. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +6. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +7. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +8. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +9. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) From 0e37433a99da5e2584dbcc288ff8554f1b4f9783 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 21:37:14 +0000 Subject: [PATCH 1795/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b79709bf..f38aa2f4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#30](https://github.com/Borda/pyRepoStats/pull/30#issuecomment-2030166010) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -2. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -6. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -7. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -8. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -9. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#877](https://github.com/fury-gl/fury/pull/877#issuecomment-2028194877) in [fury-gl/fury](https://github.com/fury-gl/fury) +1. 🗣 Commented on [#826](https://github.com/spacetelescope/webbpsf/pull/826#issuecomment-2030590083) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#30](https://github.com/Borda/pyRepoStats/pull/30#issuecomment-2030166010) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +3. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +7. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +8. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +9. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +10. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From c18cf2d02e678b9e375c40459c207123c9f06ea6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Apr 2024 15:37:19 +0000 Subject: [PATCH 1796/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f38aa2f4..0a87d705 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#826](https://github.com/spacetelescope/webbpsf/pull/826#issuecomment-2030590083) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#30](https://github.com/Borda/pyRepoStats/pull/30#issuecomment-2030166010) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -3. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -7. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -8. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -9. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -10. 🗣 Commented on [#4548](https://github.com/MDAnalysis/mdanalysis/pull/4548#issuecomment-2028533290) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#230](https://github.com/scil-vital/dwi_ml/pull/230#issuecomment-2032354062) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +2. 🗣 Commented on [#826](https://github.com/spacetelescope/webbpsf/pull/826#issuecomment-2030590083) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#30](https://github.com/Borda/pyRepoStats/pull/30#issuecomment-2030166010) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +4. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +5. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +8. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +10. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) From 5318f23b709f20b9dd98f2263786ae8b0205d0ca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Apr 2024 19:37:17 +0000 Subject: [PATCH 1797/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0a87d705..1d734ff9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#230](https://github.com/scil-vital/dwi_ml/pull/230#issuecomment-2032354062) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -2. 🗣 Commented on [#826](https://github.com/spacetelescope/webbpsf/pull/826#issuecomment-2030590083) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#30](https://github.com/Borda/pyRepoStats/pull/30#issuecomment-2030166010) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -4. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -5. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -8. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -10. 🗣 Commented on [#6](https://github.com/Tamminhdiep97/PDFs_chat/pull/6#issuecomment-2028595770) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +1. 🗣 Commented on [#1702](https://github.com/OGGM/oggm/pull/1702#issuecomment-2032896843) in [OGGM/oggm](https://github.com/OGGM/oggm) +2. 🗣 Commented on [#230](https://github.com/scil-vital/dwi_ml/pull/230#issuecomment-2032354062) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +3. 🗣 Commented on [#826](https://github.com/spacetelescope/webbpsf/pull/826#issuecomment-2030590083) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#30](https://github.com/Borda/pyRepoStats/pull/30#issuecomment-2030166010) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +5. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +7. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +9. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +10. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) From 22e62f56504a179c9f2dd668394cb811a58c8eca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Apr 2024 21:15:07 +0000 Subject: [PATCH 1798/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1d734ff9..3cceb1f1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1702](https://github.com/OGGM/oggm/pull/1702#issuecomment-2032896843) in [OGGM/oggm](https://github.com/OGGM/oggm) -2. 🗣 Commented on [#230](https://github.com/scil-vital/dwi_ml/pull/230#issuecomment-2032354062) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -3. 🗣 Commented on [#826](https://github.com/spacetelescope/webbpsf/pull/826#issuecomment-2030590083) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#30](https://github.com/Borda/pyRepoStats/pull/30#issuecomment-2030166010) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -5. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -7. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -9. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -10. 🗣 Commented on [#93](https://github.com/cirKITers/Quafel/pull/93#issuecomment-2029441082) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +1. 🗣 Commented on [#1079](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1079#issuecomment-2033096968) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#1702](https://github.com/OGGM/oggm/pull/1702#issuecomment-2032896843) in [OGGM/oggm](https://github.com/OGGM/oggm) +3. 🗣 Commented on [#230](https://github.com/scil-vital/dwi_ml/pull/230#issuecomment-2032354062) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +4. 🗣 Commented on [#826](https://github.com/spacetelescope/webbpsf/pull/826#issuecomment-2030590083) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#30](https://github.com/Borda/pyRepoStats/pull/30#issuecomment-2030166010) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +6. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +10. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) From d2136640acce27b986f9e5442dc99212a53c1e28 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 08:37:14 +0000 Subject: [PATCH 1799/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3cceb1f1..9e31474a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1079](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1079#issuecomment-2033096968) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#1702](https://github.com/OGGM/oggm/pull/1702#issuecomment-2032896843) in [OGGM/oggm](https://github.com/OGGM/oggm) -3. 🗣 Commented on [#230](https://github.com/scil-vital/dwi_ml/pull/230#issuecomment-2032354062) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -4. 🗣 Commented on [#826](https://github.com/spacetelescope/webbpsf/pull/826#issuecomment-2030590083) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#30](https://github.com/Borda/pyRepoStats/pull/30#issuecomment-2030166010) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -6. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -10. 🗣 Commented on [#905](https://github.com/PyThaiNLP/pythainlp/pull/905#issuecomment-2029477151) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +1. 🗣 Commented on [#29](https://github.com/njzjz/dpdata_qdpi/pull/29#issuecomment-2033897898) in [njzjz/dpdata_qdpi](https://github.com/njzjz/dpdata_qdpi) +2. 🗣 Commented on [#1079](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1079#issuecomment-2033096968) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#1702](https://github.com/OGGM/oggm/pull/1702#issuecomment-2032896843) in [OGGM/oggm](https://github.com/OGGM/oggm) +4. 🗣 Commented on [#230](https://github.com/scil-vital/dwi_ml/pull/230#issuecomment-2032354062) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +5. 🗣 Commented on [#826](https://github.com/spacetelescope/webbpsf/pull/826#issuecomment-2030590083) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#30](https://github.com/Borda/pyRepoStats/pull/30#issuecomment-2030166010) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +7. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +9. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) From 559f0135f26f99a593a7c1023bc182827c38fce8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 09:16:42 +0000 Subject: [PATCH 1800/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9e31474a..ae5fbeaf 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#29](https://github.com/njzjz/dpdata_qdpi/pull/29#issuecomment-2033897898) in [njzjz/dpdata_qdpi](https://github.com/njzjz/dpdata_qdpi) -2. 🗣 Commented on [#1079](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1079#issuecomment-2033096968) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#1702](https://github.com/OGGM/oggm/pull/1702#issuecomment-2032896843) in [OGGM/oggm](https://github.com/OGGM/oggm) -4. 🗣 Commented on [#230](https://github.com/scil-vital/dwi_ml/pull/230#issuecomment-2032354062) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -5. 🗣 Commented on [#826](https://github.com/spacetelescope/webbpsf/pull/826#issuecomment-2030590083) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#30](https://github.com/Borda/pyRepoStats/pull/30#issuecomment-2030166010) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -7. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -9. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#115](https://github.com/SwaragThaikkandi/SMdRQA/pull/115#issuecomment-2029508352) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +1. 🗣 Commented on [#116](https://github.com/SwaragThaikkandi/SMdRQA/pull/116#issuecomment-2033949966) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +2. 🗣 Commented on [#29](https://github.com/njzjz/dpdata_qdpi/pull/29#issuecomment-2033897898) in [njzjz/dpdata_qdpi](https://github.com/njzjz/dpdata_qdpi) +3. 🗣 Commented on [#1079](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1079#issuecomment-2033096968) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#1702](https://github.com/OGGM/oggm/pull/1702#issuecomment-2032896843) in [OGGM/oggm](https://github.com/OGGM/oggm) +5. 🗣 Commented on [#230](https://github.com/scil-vital/dwi_ml/pull/230#issuecomment-2032354062) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +6. 🗣 Commented on [#826](https://github.com/spacetelescope/webbpsf/pull/826#issuecomment-2030590083) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +7. 🗣 Commented on [#30](https://github.com/Borda/pyRepoStats/pull/30#issuecomment-2030166010) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +8. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +9. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +10. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 310e7088dec60cecb999a1840db6247d291599cf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 09:37:21 +0000 Subject: [PATCH 1801/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ae5fbeaf..9c3aa1ba 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#116](https://github.com/SwaragThaikkandi/SMdRQA/pull/116#issuecomment-2033949966) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -2. 🗣 Commented on [#29](https://github.com/njzjz/dpdata_qdpi/pull/29#issuecomment-2033897898) in [njzjz/dpdata_qdpi](https://github.com/njzjz/dpdata_qdpi) -3. 🗣 Commented on [#1079](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1079#issuecomment-2033096968) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#1702](https://github.com/OGGM/oggm/pull/1702#issuecomment-2032896843) in [OGGM/oggm](https://github.com/OGGM/oggm) -5. 🗣 Commented on [#230](https://github.com/scil-vital/dwi_ml/pull/230#issuecomment-2032354062) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -6. 🗣 Commented on [#826](https://github.com/spacetelescope/webbpsf/pull/826#issuecomment-2030590083) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -7. 🗣 Commented on [#30](https://github.com/Borda/pyRepoStats/pull/30#issuecomment-2030166010) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -8. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -9. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -10. 🗣 Commented on [#2826](https://github.com/metabrainz/listenbrainz-server/pull/2826#issuecomment-2029670004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#121](https://github.com/SwaragThaikkandi/SMdRQA/pull/121#issuecomment-2034024360) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +2. 🗣 Commented on [#116](https://github.com/SwaragThaikkandi/SMdRQA/pull/116#issuecomment-2033949966) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +3. 🗣 Commented on [#29](https://github.com/njzjz/dpdata_qdpi/pull/29#issuecomment-2033897898) in [njzjz/dpdata_qdpi](https://github.com/njzjz/dpdata_qdpi) +4. 🗣 Commented on [#1079](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1079#issuecomment-2033096968) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1702](https://github.com/OGGM/oggm/pull/1702#issuecomment-2032896843) in [OGGM/oggm](https://github.com/OGGM/oggm) +6. 🗣 Commented on [#230](https://github.com/scil-vital/dwi_ml/pull/230#issuecomment-2032354062) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +7. 🗣 Commented on [#826](https://github.com/spacetelescope/webbpsf/pull/826#issuecomment-2030590083) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#30](https://github.com/Borda/pyRepoStats/pull/30#issuecomment-2030166010) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +9. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) From b20a32b4e173d9dfeef6fcfb4dc0cf2a479dc4cc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 11:37:07 +0000 Subject: [PATCH 1802/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9c3aa1ba..fa0399b5 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#121](https://github.com/SwaragThaikkandi/SMdRQA/pull/121#issuecomment-2034024360) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -2. 🗣 Commented on [#116](https://github.com/SwaragThaikkandi/SMdRQA/pull/116#issuecomment-2033949966) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -3. 🗣 Commented on [#29](https://github.com/njzjz/dpdata_qdpi/pull/29#issuecomment-2033897898) in [njzjz/dpdata_qdpi](https://github.com/njzjz/dpdata_qdpi) -4. 🗣 Commented on [#1079](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1079#issuecomment-2033096968) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1702](https://github.com/OGGM/oggm/pull/1702#issuecomment-2032896843) in [OGGM/oggm](https://github.com/OGGM/oggm) -6. 🗣 Commented on [#230](https://github.com/scil-vital/dwi_ml/pull/230#issuecomment-2032354062) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -7. 🗣 Commented on [#826](https://github.com/spacetelescope/webbpsf/pull/826#issuecomment-2030590083) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#30](https://github.com/Borda/pyRepoStats/pull/30#issuecomment-2030166010) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -9. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#825](https://github.com/spacetelescope/webbpsf/pull/825#issuecomment-2030033447) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +1. 🗣 Commented on [#27](https://github.com/thoth-pub/thoth-dissemination/pull/27#issuecomment-2034310183) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +2. 🗣 Commented on [#121](https://github.com/SwaragThaikkandi/SMdRQA/pull/121#issuecomment-2034024360) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +3. 🗣 Commented on [#116](https://github.com/SwaragThaikkandi/SMdRQA/pull/116#issuecomment-2033949966) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +4. 🗣 Commented on [#29](https://github.com/njzjz/dpdata_qdpi/pull/29#issuecomment-2033897898) in [njzjz/dpdata_qdpi](https://github.com/njzjz/dpdata_qdpi) +5. 🗣 Commented on [#1079](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1079#issuecomment-2033096968) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#1702](https://github.com/OGGM/oggm/pull/1702#issuecomment-2032896843) in [OGGM/oggm](https://github.com/OGGM/oggm) +7. 🗣 Commented on [#230](https://github.com/scil-vital/dwi_ml/pull/230#issuecomment-2032354062) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +8. 🗣 Commented on [#826](https://github.com/spacetelescope/webbpsf/pull/826#issuecomment-2030590083) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +9. 🗣 Commented on [#30](https://github.com/Borda/pyRepoStats/pull/30#issuecomment-2030166010) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) +10. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From e8e05aa8c7849ae30770489622cc44df98b33c60 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 13:38:09 +0000 Subject: [PATCH 1803/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fa0399b5..fafcf9ee 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#27](https://github.com/thoth-pub/thoth-dissemination/pull/27#issuecomment-2034310183) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) -2. 🗣 Commented on [#121](https://github.com/SwaragThaikkandi/SMdRQA/pull/121#issuecomment-2034024360) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -3. 🗣 Commented on [#116](https://github.com/SwaragThaikkandi/SMdRQA/pull/116#issuecomment-2033949966) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -4. 🗣 Commented on [#29](https://github.com/njzjz/dpdata_qdpi/pull/29#issuecomment-2033897898) in [njzjz/dpdata_qdpi](https://github.com/njzjz/dpdata_qdpi) -5. 🗣 Commented on [#1079](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1079#issuecomment-2033096968) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#1702](https://github.com/OGGM/oggm/pull/1702#issuecomment-2032896843) in [OGGM/oggm](https://github.com/OGGM/oggm) -7. 🗣 Commented on [#230](https://github.com/scil-vital/dwi_ml/pull/230#issuecomment-2032354062) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -8. 🗣 Commented on [#826](https://github.com/spacetelescope/webbpsf/pull/826#issuecomment-2030590083) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -9. 🗣 Commented on [#30](https://github.com/Borda/pyRepoStats/pull/30#issuecomment-2030166010) in [Borda/pyRepoStats](https://github.com/Borda/pyRepoStats) -10. 🗣 Commented on [#1274](https://github.com/aimclub/FEDOT/pull/1274#issuecomment-2030121577) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#118](https://github.com/MDAnalysis/mdacli/pull/118#issuecomment-2034616100) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +2. 🗣 Commented on [#98](https://github.com/INT-NIT/DigLabTools/pull/98#issuecomment-2034591632) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +3. 🗣 Commented on [#27](https://github.com/thoth-pub/thoth-dissemination/pull/27#issuecomment-2034310183) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +4. 🗣 Commented on [#121](https://github.com/SwaragThaikkandi/SMdRQA/pull/121#issuecomment-2034024360) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +5. 🗣 Commented on [#116](https://github.com/SwaragThaikkandi/SMdRQA/pull/116#issuecomment-2033949966) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +6. 🗣 Commented on [#29](https://github.com/njzjz/dpdata_qdpi/pull/29#issuecomment-2033897898) in [njzjz/dpdata_qdpi](https://github.com/njzjz/dpdata_qdpi) +7. 🗣 Commented on [#1079](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1079#issuecomment-2033096968) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#1702](https://github.com/OGGM/oggm/pull/1702#issuecomment-2032896843) in [OGGM/oggm](https://github.com/OGGM/oggm) +9. 🗣 Commented on [#230](https://github.com/scil-vital/dwi_ml/pull/230#issuecomment-2032354062) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +10. 🗣 Commented on [#826](https://github.com/spacetelescope/webbpsf/pull/826#issuecomment-2030590083) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) From 9d3683980942aab356be303c844b3823814d1a32 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 14:14:42 +0000 Subject: [PATCH 1804/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fafcf9ee..a8b38580 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#118](https://github.com/MDAnalysis/mdacli/pull/118#issuecomment-2034616100) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -2. 🗣 Commented on [#98](https://github.com/INT-NIT/DigLabTools/pull/98#issuecomment-2034591632) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -3. 🗣 Commented on [#27](https://github.com/thoth-pub/thoth-dissemination/pull/27#issuecomment-2034310183) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) -4. 🗣 Commented on [#121](https://github.com/SwaragThaikkandi/SMdRQA/pull/121#issuecomment-2034024360) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -5. 🗣 Commented on [#116](https://github.com/SwaragThaikkandi/SMdRQA/pull/116#issuecomment-2033949966) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -6. 🗣 Commented on [#29](https://github.com/njzjz/dpdata_qdpi/pull/29#issuecomment-2033897898) in [njzjz/dpdata_qdpi](https://github.com/njzjz/dpdata_qdpi) -7. 🗣 Commented on [#1079](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1079#issuecomment-2033096968) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#1702](https://github.com/OGGM/oggm/pull/1702#issuecomment-2032896843) in [OGGM/oggm](https://github.com/OGGM/oggm) -9. 🗣 Commented on [#230](https://github.com/scil-vital/dwi_ml/pull/230#issuecomment-2032354062) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -10. 🗣 Commented on [#826](https://github.com/spacetelescope/webbpsf/pull/826#issuecomment-2030590083) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +1. 🗣 Commented on [#966](https://github.com/avaframe/AvaFrame/pull/966#issuecomment-2034713010) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#119](https://github.com/MDAnalysis/mdacli/pull/119#issuecomment-2034648681) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +3. 🗣 Commented on [#118](https://github.com/MDAnalysis/mdacli/pull/118#issuecomment-2034616100) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +4. 🗣 Commented on [#98](https://github.com/INT-NIT/DigLabTools/pull/98#issuecomment-2034591632) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +5. 🗣 Commented on [#27](https://github.com/thoth-pub/thoth-dissemination/pull/27#issuecomment-2034310183) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +6. 🗣 Commented on [#121](https://github.com/SwaragThaikkandi/SMdRQA/pull/121#issuecomment-2034024360) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +7. 🗣 Commented on [#116](https://github.com/SwaragThaikkandi/SMdRQA/pull/116#issuecomment-2033949966) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +8. 🗣 Commented on [#29](https://github.com/njzjz/dpdata_qdpi/pull/29#issuecomment-2033897898) in [njzjz/dpdata_qdpi](https://github.com/njzjz/dpdata_qdpi) +9. 🗣 Commented on [#1079](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1079#issuecomment-2033096968) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#1702](https://github.com/OGGM/oggm/pull/1702#issuecomment-2032896843) in [OGGM/oggm](https://github.com/OGGM/oggm) From 7c51bb4d9d9644fa14e7191bddaa2b6ce7a0e9b8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 15:15:49 +0000 Subject: [PATCH 1805/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a8b38580..cce2d4f7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#966](https://github.com/avaframe/AvaFrame/pull/966#issuecomment-2034713010) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#119](https://github.com/MDAnalysis/mdacli/pull/119#issuecomment-2034648681) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -3. 🗣 Commented on [#118](https://github.com/MDAnalysis/mdacli/pull/118#issuecomment-2034616100) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -4. 🗣 Commented on [#98](https://github.com/INT-NIT/DigLabTools/pull/98#issuecomment-2034591632) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -5. 🗣 Commented on [#27](https://github.com/thoth-pub/thoth-dissemination/pull/27#issuecomment-2034310183) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) -6. 🗣 Commented on [#121](https://github.com/SwaragThaikkandi/SMdRQA/pull/121#issuecomment-2034024360) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -7. 🗣 Commented on [#116](https://github.com/SwaragThaikkandi/SMdRQA/pull/116#issuecomment-2033949966) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -8. 🗣 Commented on [#29](https://github.com/njzjz/dpdata_qdpi/pull/29#issuecomment-2033897898) in [njzjz/dpdata_qdpi](https://github.com/njzjz/dpdata_qdpi) -9. 🗣 Commented on [#1079](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1079#issuecomment-2033096968) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#1702](https://github.com/OGGM/oggm/pull/1702#issuecomment-2032896843) in [OGGM/oggm](https://github.com/OGGM/oggm) +1. 🗣 Commented on [#675](https://github.com/spacetelescope/webbpsf/pull/675#issuecomment-2034846595) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#966](https://github.com/avaframe/AvaFrame/pull/966#issuecomment-2034713010) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#119](https://github.com/MDAnalysis/mdacli/pull/119#issuecomment-2034648681) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +4. 🗣 Commented on [#118](https://github.com/MDAnalysis/mdacli/pull/118#issuecomment-2034616100) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +5. 🗣 Commented on [#98](https://github.com/INT-NIT/DigLabTools/pull/98#issuecomment-2034591632) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +6. 🗣 Commented on [#27](https://github.com/thoth-pub/thoth-dissemination/pull/27#issuecomment-2034310183) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +7. 🗣 Commented on [#121](https://github.com/SwaragThaikkandi/SMdRQA/pull/121#issuecomment-2034024360) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +8. 🗣 Commented on [#116](https://github.com/SwaragThaikkandi/SMdRQA/pull/116#issuecomment-2033949966) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +9. 🗣 Commented on [#29](https://github.com/njzjz/dpdata_qdpi/pull/29#issuecomment-2033897898) in [njzjz/dpdata_qdpi](https://github.com/njzjz/dpdata_qdpi) +10. 🗣 Commented on [#1079](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1079#issuecomment-2033096968) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From d8d927bc43fb0f2f35a28ec2b8aa52fce1d3e521 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 17:14:21 +0000 Subject: [PATCH 1806/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cce2d4f7..ff77b217 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#675](https://github.com/spacetelescope/webbpsf/pull/675#issuecomment-2034846595) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#966](https://github.com/avaframe/AvaFrame/pull/966#issuecomment-2034713010) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#119](https://github.com/MDAnalysis/mdacli/pull/119#issuecomment-2034648681) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -4. 🗣 Commented on [#118](https://github.com/MDAnalysis/mdacli/pull/118#issuecomment-2034616100) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -5. 🗣 Commented on [#98](https://github.com/INT-NIT/DigLabTools/pull/98#issuecomment-2034591632) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -6. 🗣 Commented on [#27](https://github.com/thoth-pub/thoth-dissemination/pull/27#issuecomment-2034310183) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) -7. 🗣 Commented on [#121](https://github.com/SwaragThaikkandi/SMdRQA/pull/121#issuecomment-2034024360) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -8. 🗣 Commented on [#116](https://github.com/SwaragThaikkandi/SMdRQA/pull/116#issuecomment-2033949966) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -9. 🗣 Commented on [#29](https://github.com/njzjz/dpdata_qdpi/pull/29#issuecomment-2033897898) in [njzjz/dpdata_qdpi](https://github.com/njzjz/dpdata_qdpi) -10. 🗣 Commented on [#1079](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1079#issuecomment-2033096968) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#961](https://github.com/scilus/scilpy/pull/961#issuecomment-2035121477) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#675](https://github.com/spacetelescope/webbpsf/pull/675#issuecomment-2034846595) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#966](https://github.com/avaframe/AvaFrame/pull/966#issuecomment-2034713010) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#119](https://github.com/MDAnalysis/mdacli/pull/119#issuecomment-2034648681) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +5. 🗣 Commented on [#118](https://github.com/MDAnalysis/mdacli/pull/118#issuecomment-2034616100) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +6. 🗣 Commented on [#98](https://github.com/INT-NIT/DigLabTools/pull/98#issuecomment-2034591632) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +7. 🗣 Commented on [#27](https://github.com/thoth-pub/thoth-dissemination/pull/27#issuecomment-2034310183) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +8. 🗣 Commented on [#121](https://github.com/SwaragThaikkandi/SMdRQA/pull/121#issuecomment-2034024360) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +9. 🗣 Commented on [#116](https://github.com/SwaragThaikkandi/SMdRQA/pull/116#issuecomment-2033949966) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +10. 🗣 Commented on [#29](https://github.com/njzjz/dpdata_qdpi/pull/29#issuecomment-2033897898) in [njzjz/dpdata_qdpi](https://github.com/njzjz/dpdata_qdpi) From 3f97e068d99351b2f6ec4c2da68db9a98e27f1bc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 18:19:56 +0000 Subject: [PATCH 1807/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ff77b217..0e7f5472 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#961](https://github.com/scilus/scilpy/pull/961#issuecomment-2035121477) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#675](https://github.com/spacetelescope/webbpsf/pull/675#issuecomment-2034846595) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#966](https://github.com/avaframe/AvaFrame/pull/966#issuecomment-2034713010) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#119](https://github.com/MDAnalysis/mdacli/pull/119#issuecomment-2034648681) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -5. 🗣 Commented on [#118](https://github.com/MDAnalysis/mdacli/pull/118#issuecomment-2034616100) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -6. 🗣 Commented on [#98](https://github.com/INT-NIT/DigLabTools/pull/98#issuecomment-2034591632) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -7. 🗣 Commented on [#27](https://github.com/thoth-pub/thoth-dissemination/pull/27#issuecomment-2034310183) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) -8. 🗣 Commented on [#121](https://github.com/SwaragThaikkandi/SMdRQA/pull/121#issuecomment-2034024360) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -9. 🗣 Commented on [#116](https://github.com/SwaragThaikkandi/SMdRQA/pull/116#issuecomment-2033949966) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -10. 🗣 Commented on [#29](https://github.com/njzjz/dpdata_qdpi/pull/29#issuecomment-2033897898) in [njzjz/dpdata_qdpi](https://github.com/njzjz/dpdata_qdpi) +1. 🗣 Commented on [#7](https://github.com/vinayprakash893/github-apps-python-vsapp1/pull/7#issuecomment-2035205287) in [vinayprakash893/github-apps-python-vsapp1](https://github.com/vinayprakash893/github-apps-python-vsapp1) +2. 🗣 Commented on [#961](https://github.com/scilus/scilpy/pull/961#issuecomment-2035121477) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#675](https://github.com/spacetelescope/webbpsf/pull/675#issuecomment-2034846595) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#966](https://github.com/avaframe/AvaFrame/pull/966#issuecomment-2034713010) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#119](https://github.com/MDAnalysis/mdacli/pull/119#issuecomment-2034648681) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +6. 🗣 Commented on [#118](https://github.com/MDAnalysis/mdacli/pull/118#issuecomment-2034616100) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +7. 🗣 Commented on [#98](https://github.com/INT-NIT/DigLabTools/pull/98#issuecomment-2034591632) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +8. 🗣 Commented on [#27](https://github.com/thoth-pub/thoth-dissemination/pull/27#issuecomment-2034310183) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +9. 🗣 Commented on [#121](https://github.com/SwaragThaikkandi/SMdRQA/pull/121#issuecomment-2034024360) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +10. 🗣 Commented on [#116](https://github.com/SwaragThaikkandi/SMdRQA/pull/116#issuecomment-2033949966) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) From bb0243b1384ee79965f364d1362f93b836614783 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 18:37:17 +0000 Subject: [PATCH 1808/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0e7f5472..effdeaf3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#7](https://github.com/vinayprakash893/github-apps-python-vsapp1/pull/7#issuecomment-2035205287) in [vinayprakash893/github-apps-python-vsapp1](https://github.com/vinayprakash893/github-apps-python-vsapp1) -2. 🗣 Commented on [#961](https://github.com/scilus/scilpy/pull/961#issuecomment-2035121477) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#675](https://github.com/spacetelescope/webbpsf/pull/675#issuecomment-2034846595) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#966](https://github.com/avaframe/AvaFrame/pull/966#issuecomment-2034713010) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#119](https://github.com/MDAnalysis/mdacli/pull/119#issuecomment-2034648681) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -6. 🗣 Commented on [#118](https://github.com/MDAnalysis/mdacli/pull/118#issuecomment-2034616100) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -7. 🗣 Commented on [#98](https://github.com/INT-NIT/DigLabTools/pull/98#issuecomment-2034591632) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -8. 🗣 Commented on [#27](https://github.com/thoth-pub/thoth-dissemination/pull/27#issuecomment-2034310183) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) -9. 🗣 Commented on [#121](https://github.com/SwaragThaikkandi/SMdRQA/pull/121#issuecomment-2034024360) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -10. 🗣 Commented on [#116](https://github.com/SwaragThaikkandi/SMdRQA/pull/116#issuecomment-2033949966) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +1. 🗣 Commented on [#626](https://github.com/HEXRD/hexrd/pull/626#issuecomment-2035295465) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#7](https://github.com/vinayprakash893/github-apps-python-vsapp1/pull/7#issuecomment-2035205287) in [vinayprakash893/github-apps-python-vsapp1](https://github.com/vinayprakash893/github-apps-python-vsapp1) +3. 🗣 Commented on [#961](https://github.com/scilus/scilpy/pull/961#issuecomment-2035121477) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#675](https://github.com/spacetelescope/webbpsf/pull/675#issuecomment-2034846595) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#966](https://github.com/avaframe/AvaFrame/pull/966#issuecomment-2034713010) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#119](https://github.com/MDAnalysis/mdacli/pull/119#issuecomment-2034648681) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +7. 🗣 Commented on [#118](https://github.com/MDAnalysis/mdacli/pull/118#issuecomment-2034616100) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +8. 🗣 Commented on [#98](https://github.com/INT-NIT/DigLabTools/pull/98#issuecomment-2034591632) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +9. 🗣 Commented on [#27](https://github.com/thoth-pub/thoth-dissemination/pull/27#issuecomment-2034310183) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +10. 🗣 Commented on [#121](https://github.com/SwaragThaikkandi/SMdRQA/pull/121#issuecomment-2034024360) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) From a503aa2b409faabc08b30426f1d09f5b5364260e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Apr 2024 08:38:08 +0000 Subject: [PATCH 1809/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index effdeaf3..ed07a495 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#626](https://github.com/HEXRD/hexrd/pull/626#issuecomment-2035295465) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#7](https://github.com/vinayprakash893/github-apps-python-vsapp1/pull/7#issuecomment-2035205287) in [vinayprakash893/github-apps-python-vsapp1](https://github.com/vinayprakash893/github-apps-python-vsapp1) -3. 🗣 Commented on [#961](https://github.com/scilus/scilpy/pull/961#issuecomment-2035121477) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#675](https://github.com/spacetelescope/webbpsf/pull/675#issuecomment-2034846595) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#966](https://github.com/avaframe/AvaFrame/pull/966#issuecomment-2034713010) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#119](https://github.com/MDAnalysis/mdacli/pull/119#issuecomment-2034648681) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -7. 🗣 Commented on [#118](https://github.com/MDAnalysis/mdacli/pull/118#issuecomment-2034616100) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -8. 🗣 Commented on [#98](https://github.com/INT-NIT/DigLabTools/pull/98#issuecomment-2034591632) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -9. 🗣 Commented on [#27](https://github.com/thoth-pub/thoth-dissemination/pull/27#issuecomment-2034310183) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) -10. 🗣 Commented on [#121](https://github.com/SwaragThaikkandi/SMdRQA/pull/121#issuecomment-2034024360) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +1. 🗣 Commented on [#8](https://github.com/Tamminhdiep97/PDFs_chat/pull/8#issuecomment-2036535746) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +2. 🗣 Commented on [#626](https://github.com/HEXRD/hexrd/pull/626#issuecomment-2035295465) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#7](https://github.com/vinayprakash893/github-apps-python-vsapp1/pull/7#issuecomment-2035205287) in [vinayprakash893/github-apps-python-vsapp1](https://github.com/vinayprakash893/github-apps-python-vsapp1) +4. 🗣 Commented on [#961](https://github.com/scilus/scilpy/pull/961#issuecomment-2035121477) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#675](https://github.com/spacetelescope/webbpsf/pull/675#issuecomment-2034846595) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#966](https://github.com/avaframe/AvaFrame/pull/966#issuecomment-2034713010) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#119](https://github.com/MDAnalysis/mdacli/pull/119#issuecomment-2034648681) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +8. 🗣 Commented on [#118](https://github.com/MDAnalysis/mdacli/pull/118#issuecomment-2034616100) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +9. 🗣 Commented on [#98](https://github.com/INT-NIT/DigLabTools/pull/98#issuecomment-2034591632) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +10. 🗣 Commented on [#27](https://github.com/thoth-pub/thoth-dissemination/pull/27#issuecomment-2034310183) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) From 1343151302a1cad8054d22a69fbb7d55417b2393 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Apr 2024 10:16:55 +0000 Subject: [PATCH 1810/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ed07a495..ef4b2aa8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#8](https://github.com/Tamminhdiep97/PDFs_chat/pull/8#issuecomment-2036535746) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -2. 🗣 Commented on [#626](https://github.com/HEXRD/hexrd/pull/626#issuecomment-2035295465) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#7](https://github.com/vinayprakash893/github-apps-python-vsapp1/pull/7#issuecomment-2035205287) in [vinayprakash893/github-apps-python-vsapp1](https://github.com/vinayprakash893/github-apps-python-vsapp1) -4. 🗣 Commented on [#961](https://github.com/scilus/scilpy/pull/961#issuecomment-2035121477) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#675](https://github.com/spacetelescope/webbpsf/pull/675#issuecomment-2034846595) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#966](https://github.com/avaframe/AvaFrame/pull/966#issuecomment-2034713010) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#119](https://github.com/MDAnalysis/mdacli/pull/119#issuecomment-2034648681) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -8. 🗣 Commented on [#118](https://github.com/MDAnalysis/mdacli/pull/118#issuecomment-2034616100) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -9. 🗣 Commented on [#98](https://github.com/INT-NIT/DigLabTools/pull/98#issuecomment-2034591632) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -10. 🗣 Commented on [#27](https://github.com/thoth-pub/thoth-dissemination/pull/27#issuecomment-2034310183) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +1. 🗣 Commented on [#1](https://github.com/cirKITers/HIDA-Deep-Fake/pull/1#issuecomment-2036698238) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) +2. 🗣 Commented on [#3152](https://github.com/reframe-hpc/reframe/pull/3152#issuecomment-2036681711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +3. 🗣 Commented on [#8](https://github.com/Tamminhdiep97/PDFs_chat/pull/8#issuecomment-2036535746) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +4. 🗣 Commented on [#626](https://github.com/HEXRD/hexrd/pull/626#issuecomment-2035295465) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#7](https://github.com/vinayprakash893/github-apps-python-vsapp1/pull/7#issuecomment-2035205287) in [vinayprakash893/github-apps-python-vsapp1](https://github.com/vinayprakash893/github-apps-python-vsapp1) +6. 🗣 Commented on [#961](https://github.com/scilus/scilpy/pull/961#issuecomment-2035121477) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#675](https://github.com/spacetelescope/webbpsf/pull/675#issuecomment-2034846595) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#966](https://github.com/avaframe/AvaFrame/pull/966#issuecomment-2034713010) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#119](https://github.com/MDAnalysis/mdacli/pull/119#issuecomment-2034648681) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +10. 🗣 Commented on [#118](https://github.com/MDAnalysis/mdacli/pull/118#issuecomment-2034616100) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) From 6fb7695ade1ce26f20527ee5f8e497009295498d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Apr 2024 11:13:22 +0000 Subject: [PATCH 1811/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ef4b2aa8..c3080eec 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/cirKITers/HIDA-Deep-Fake/pull/1#issuecomment-2036698238) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) -2. 🗣 Commented on [#3152](https://github.com/reframe-hpc/reframe/pull/3152#issuecomment-2036681711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -3. 🗣 Commented on [#8](https://github.com/Tamminhdiep97/PDFs_chat/pull/8#issuecomment-2036535746) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -4. 🗣 Commented on [#626](https://github.com/HEXRD/hexrd/pull/626#issuecomment-2035295465) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#7](https://github.com/vinayprakash893/github-apps-python-vsapp1/pull/7#issuecomment-2035205287) in [vinayprakash893/github-apps-python-vsapp1](https://github.com/vinayprakash893/github-apps-python-vsapp1) -6. 🗣 Commented on [#961](https://github.com/scilus/scilpy/pull/961#issuecomment-2035121477) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#675](https://github.com/spacetelescope/webbpsf/pull/675#issuecomment-2034846595) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#966](https://github.com/avaframe/AvaFrame/pull/966#issuecomment-2034713010) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#119](https://github.com/MDAnalysis/mdacli/pull/119#issuecomment-2034648681) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) -10. 🗣 Commented on [#118](https://github.com/MDAnalysis/mdacli/pull/118#issuecomment-2034616100) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +1. 🗣 Commented on [#490](https://github.com/Spoken-tutorial/spoken-website/pull/490#issuecomment-2036830559) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +2. 🗣 Commented on [#1](https://github.com/cirKITers/HIDA-Deep-Fake/pull/1#issuecomment-2036698238) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) +3. 🗣 Commented on [#3152](https://github.com/reframe-hpc/reframe/pull/3152#issuecomment-2036681711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +4. 🗣 Commented on [#8](https://github.com/Tamminhdiep97/PDFs_chat/pull/8#issuecomment-2036535746) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +5. 🗣 Commented on [#626](https://github.com/HEXRD/hexrd/pull/626#issuecomment-2035295465) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +6. 🗣 Commented on [#7](https://github.com/vinayprakash893/github-apps-python-vsapp1/pull/7#issuecomment-2035205287) in [vinayprakash893/github-apps-python-vsapp1](https://github.com/vinayprakash893/github-apps-python-vsapp1) +7. 🗣 Commented on [#961](https://github.com/scilus/scilpy/pull/961#issuecomment-2035121477) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#675](https://github.com/spacetelescope/webbpsf/pull/675#issuecomment-2034846595) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +9. 🗣 Commented on [#966](https://github.com/avaframe/AvaFrame/pull/966#issuecomment-2034713010) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#119](https://github.com/MDAnalysis/mdacli/pull/119#issuecomment-2034648681) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) From 6afe2bec02ffb189a3290511fc70e6f052e14bbb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Apr 2024 13:17:07 +0000 Subject: [PATCH 1812/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c3080eec..c72b3ba2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#490](https://github.com/Spoken-tutorial/spoken-website/pull/490#issuecomment-2036830559) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -2. 🗣 Commented on [#1](https://github.com/cirKITers/HIDA-Deep-Fake/pull/1#issuecomment-2036698238) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) -3. 🗣 Commented on [#3152](https://github.com/reframe-hpc/reframe/pull/3152#issuecomment-2036681711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -4. 🗣 Commented on [#8](https://github.com/Tamminhdiep97/PDFs_chat/pull/8#issuecomment-2036535746) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -5. 🗣 Commented on [#626](https://github.com/HEXRD/hexrd/pull/626#issuecomment-2035295465) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -6. 🗣 Commented on [#7](https://github.com/vinayprakash893/github-apps-python-vsapp1/pull/7#issuecomment-2035205287) in [vinayprakash893/github-apps-python-vsapp1](https://github.com/vinayprakash893/github-apps-python-vsapp1) -7. 🗣 Commented on [#961](https://github.com/scilus/scilpy/pull/961#issuecomment-2035121477) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#675](https://github.com/spacetelescope/webbpsf/pull/675#issuecomment-2034846595) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -9. 🗣 Commented on [#966](https://github.com/avaframe/AvaFrame/pull/966#issuecomment-2034713010) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#119](https://github.com/MDAnalysis/mdacli/pull/119#issuecomment-2034648681) in [MDAnalysis/mdacli](https://github.com/MDAnalysis/mdacli) +1. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) +2. 🗣 Commented on [#612](https://github.com/NeuralEnsemble/elephant/pull/612#issuecomment-2037170562) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +3. 🗣 Commented on [#34](https://github.com/codingfriendsfun/pcc/pull/34#issuecomment-2037160089) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +4. 🗣 Commented on [#490](https://github.com/Spoken-tutorial/spoken-website/pull/490#issuecomment-2036830559) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +5. 🗣 Commented on [#1](https://github.com/cirKITers/HIDA-Deep-Fake/pull/1#issuecomment-2036698238) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) +6. 🗣 Commented on [#3152](https://github.com/reframe-hpc/reframe/pull/3152#issuecomment-2036681711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +7. 🗣 Commented on [#8](https://github.com/Tamminhdiep97/PDFs_chat/pull/8#issuecomment-2036535746) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +8. 🗣 Commented on [#626](https://github.com/HEXRD/hexrd/pull/626#issuecomment-2035295465) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +9. 🗣 Commented on [#7](https://github.com/vinayprakash893/github-apps-python-vsapp1/pull/7#issuecomment-2035205287) in [vinayprakash893/github-apps-python-vsapp1](https://github.com/vinayprakash893/github-apps-python-vsapp1) +10. 🗣 Commented on [#961](https://github.com/scilus/scilpy/pull/961#issuecomment-2035121477) in [scilus/scilpy](https://github.com/scilus/scilpy) From c420b75296f382ee458f4d4182cde35ab951fd74 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Apr 2024 15:16:09 +0000 Subject: [PATCH 1813/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c72b3ba2..55240f09 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) -2. 🗣 Commented on [#612](https://github.com/NeuralEnsemble/elephant/pull/612#issuecomment-2037170562) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -3. 🗣 Commented on [#34](https://github.com/codingfriendsfun/pcc/pull/34#issuecomment-2037160089) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -4. 🗣 Commented on [#490](https://github.com/Spoken-tutorial/spoken-website/pull/490#issuecomment-2036830559) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -5. 🗣 Commented on [#1](https://github.com/cirKITers/HIDA-Deep-Fake/pull/1#issuecomment-2036698238) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) -6. 🗣 Commented on [#3152](https://github.com/reframe-hpc/reframe/pull/3152#issuecomment-2036681711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -7. 🗣 Commented on [#8](https://github.com/Tamminhdiep97/PDFs_chat/pull/8#issuecomment-2036535746) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -8. 🗣 Commented on [#626](https://github.com/HEXRD/hexrd/pull/626#issuecomment-2035295465) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -9. 🗣 Commented on [#7](https://github.com/vinayprakash893/github-apps-python-vsapp1/pull/7#issuecomment-2035205287) in [vinayprakash893/github-apps-python-vsapp1](https://github.com/vinayprakash893/github-apps-python-vsapp1) -10. 🗣 Commented on [#961](https://github.com/scilus/scilpy/pull/961#issuecomment-2035121477) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) +3. 🗣 Commented on [#612](https://github.com/NeuralEnsemble/elephant/pull/612#issuecomment-2037170562) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +4. 🗣 Commented on [#34](https://github.com/codingfriendsfun/pcc/pull/34#issuecomment-2037160089) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +5. 🗣 Commented on [#490](https://github.com/Spoken-tutorial/spoken-website/pull/490#issuecomment-2036830559) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +6. 🗣 Commented on [#1](https://github.com/cirKITers/HIDA-Deep-Fake/pull/1#issuecomment-2036698238) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) +7. 🗣 Commented on [#3152](https://github.com/reframe-hpc/reframe/pull/3152#issuecomment-2036681711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +8. 🗣 Commented on [#8](https://github.com/Tamminhdiep97/PDFs_chat/pull/8#issuecomment-2036535746) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +9. 🗣 Commented on [#626](https://github.com/HEXRD/hexrd/pull/626#issuecomment-2035295465) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +10. 🗣 Commented on [#7](https://github.com/vinayprakash893/github-apps-python-vsapp1/pull/7#issuecomment-2035205287) in [vinayprakash893/github-apps-python-vsapp1](https://github.com/vinayprakash893/github-apps-python-vsapp1) From 807ca4aa6d7eb3fcb49562fe391d3afe7896e4ef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Apr 2024 15:38:40 +0000 Subject: [PATCH 1814/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 55240f09..06014c7a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) -3. 🗣 Commented on [#612](https://github.com/NeuralEnsemble/elephant/pull/612#issuecomment-2037170562) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -4. 🗣 Commented on [#34](https://github.com/codingfriendsfun/pcc/pull/34#issuecomment-2037160089) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -5. 🗣 Commented on [#490](https://github.com/Spoken-tutorial/spoken-website/pull/490#issuecomment-2036830559) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -6. 🗣 Commented on [#1](https://github.com/cirKITers/HIDA-Deep-Fake/pull/1#issuecomment-2036698238) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) -7. 🗣 Commented on [#3152](https://github.com/reframe-hpc/reframe/pull/3152#issuecomment-2036681711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -8. 🗣 Commented on [#8](https://github.com/Tamminhdiep97/PDFs_chat/pull/8#issuecomment-2036535746) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -9. 🗣 Commented on [#626](https://github.com/HEXRD/hexrd/pull/626#issuecomment-2035295465) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -10. 🗣 Commented on [#7](https://github.com/vinayprakash893/github-apps-python-vsapp1/pull/7#issuecomment-2035205287) in [vinayprakash893/github-apps-python-vsapp1](https://github.com/vinayprakash893/github-apps-python-vsapp1) +1. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +2. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) +4. 🗣 Commented on [#612](https://github.com/NeuralEnsemble/elephant/pull/612#issuecomment-2037170562) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +5. 🗣 Commented on [#34](https://github.com/codingfriendsfun/pcc/pull/34#issuecomment-2037160089) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +6. 🗣 Commented on [#490](https://github.com/Spoken-tutorial/spoken-website/pull/490#issuecomment-2036830559) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +7. 🗣 Commented on [#1](https://github.com/cirKITers/HIDA-Deep-Fake/pull/1#issuecomment-2036698238) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) +8. 🗣 Commented on [#3152](https://github.com/reframe-hpc/reframe/pull/3152#issuecomment-2036681711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +9. 🗣 Commented on [#8](https://github.com/Tamminhdiep97/PDFs_chat/pull/8#issuecomment-2036535746) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +10. 🗣 Commented on [#626](https://github.com/HEXRD/hexrd/pull/626#issuecomment-2035295465) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) From 01488e0cf28db0f0f14ad4b45d933fc723245949 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Apr 2024 16:19:55 +0000 Subject: [PATCH 1815/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 06014c7a..d1deb77a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -2. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) -4. 🗣 Commented on [#612](https://github.com/NeuralEnsemble/elephant/pull/612#issuecomment-2037170562) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -5. 🗣 Commented on [#34](https://github.com/codingfriendsfun/pcc/pull/34#issuecomment-2037160089) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -6. 🗣 Commented on [#490](https://github.com/Spoken-tutorial/spoken-website/pull/490#issuecomment-2036830559) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -7. 🗣 Commented on [#1](https://github.com/cirKITers/HIDA-Deep-Fake/pull/1#issuecomment-2036698238) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) -8. 🗣 Commented on [#3152](https://github.com/reframe-hpc/reframe/pull/3152#issuecomment-2036681711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -9. 🗣 Commented on [#8](https://github.com/Tamminhdiep97/PDFs_chat/pull/8#issuecomment-2036535746) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) -10. 🗣 Commented on [#626](https://github.com/HEXRD/hexrd/pull/626#issuecomment-2035295465) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +1. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +2. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +3. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) +5. 🗣 Commented on [#612](https://github.com/NeuralEnsemble/elephant/pull/612#issuecomment-2037170562) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +6. 🗣 Commented on [#34](https://github.com/codingfriendsfun/pcc/pull/34#issuecomment-2037160089) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +7. 🗣 Commented on [#490](https://github.com/Spoken-tutorial/spoken-website/pull/490#issuecomment-2036830559) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +8. 🗣 Commented on [#1](https://github.com/cirKITers/HIDA-Deep-Fake/pull/1#issuecomment-2036698238) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) +9. 🗣 Commented on [#3152](https://github.com/reframe-hpc/reframe/pull/3152#issuecomment-2036681711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +10. 🗣 Commented on [#8](https://github.com/Tamminhdiep97/PDFs_chat/pull/8#issuecomment-2036535746) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) From d020b2e3cd638e6f54e493fc84a2adb1546eba05 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Apr 2024 17:13:30 +0000 Subject: [PATCH 1816/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d1deb77a..83ed0f28 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -2. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -3. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) -5. 🗣 Commented on [#612](https://github.com/NeuralEnsemble/elephant/pull/612#issuecomment-2037170562) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -6. 🗣 Commented on [#34](https://github.com/codingfriendsfun/pcc/pull/34#issuecomment-2037160089) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -7. 🗣 Commented on [#490](https://github.com/Spoken-tutorial/spoken-website/pull/490#issuecomment-2036830559) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -8. 🗣 Commented on [#1](https://github.com/cirKITers/HIDA-Deep-Fake/pull/1#issuecomment-2036698238) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) -9. 🗣 Commented on [#3152](https://github.com/reframe-hpc/reframe/pull/3152#issuecomment-2036681711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -10. 🗣 Commented on [#8](https://github.com/Tamminhdiep97/PDFs_chat/pull/8#issuecomment-2036535746) in [Tamminhdiep97/PDFs_chat](https://github.com/Tamminhdiep97/PDFs_chat) +1. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +3. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +4. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) +6. 🗣 Commented on [#612](https://github.com/NeuralEnsemble/elephant/pull/612#issuecomment-2037170562) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +7. 🗣 Commented on [#34](https://github.com/codingfriendsfun/pcc/pull/34#issuecomment-2037160089) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +8. 🗣 Commented on [#490](https://github.com/Spoken-tutorial/spoken-website/pull/490#issuecomment-2036830559) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +9. 🗣 Commented on [#1](https://github.com/cirKITers/HIDA-Deep-Fake/pull/1#issuecomment-2036698238) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) +10. 🗣 Commented on [#3152](https://github.com/reframe-hpc/reframe/pull/3152#issuecomment-2036681711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) From f8e517ed265a7b13c465846ecaec8c2c2dd6c4b7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 01:10:12 +0000 Subject: [PATCH 1817/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 83ed0f28..1de336a1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -3. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -4. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) -6. 🗣 Commented on [#612](https://github.com/NeuralEnsemble/elephant/pull/612#issuecomment-2037170562) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -7. 🗣 Commented on [#34](https://github.com/codingfriendsfun/pcc/pull/34#issuecomment-2037160089) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -8. 🗣 Commented on [#490](https://github.com/Spoken-tutorial/spoken-website/pull/490#issuecomment-2036830559) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -9. 🗣 Commented on [#1](https://github.com/cirKITers/HIDA-Deep-Fake/pull/1#issuecomment-2036698238) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) -10. 🗣 Commented on [#3152](https://github.com/reframe-hpc/reframe/pull/3152#issuecomment-2036681711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +1. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +4. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +5. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) +7. 🗣 Commented on [#612](https://github.com/NeuralEnsemble/elephant/pull/612#issuecomment-2037170562) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +8. 🗣 Commented on [#34](https://github.com/codingfriendsfun/pcc/pull/34#issuecomment-2037160089) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +9. 🗣 Commented on [#490](https://github.com/Spoken-tutorial/spoken-website/pull/490#issuecomment-2036830559) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +10. 🗣 Commented on [#1](https://github.com/cirKITers/HIDA-Deep-Fake/pull/1#issuecomment-2036698238) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) From f86b54c2f413ac4cb9305f39e60eb24f3985bf46 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 02:04:07 +0000 Subject: [PATCH 1818/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1de336a1..de912d84 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -4. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -5. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) -7. 🗣 Commented on [#612](https://github.com/NeuralEnsemble/elephant/pull/612#issuecomment-2037170562) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -8. 🗣 Commented on [#34](https://github.com/codingfriendsfun/pcc/pull/34#issuecomment-2037160089) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -9. 🗣 Commented on [#490](https://github.com/Spoken-tutorial/spoken-website/pull/490#issuecomment-2036830559) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -10. 🗣 Commented on [#1](https://github.com/cirKITers/HIDA-Deep-Fake/pull/1#issuecomment-2036698238) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) +1. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +5. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +6. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) +8. 🗣 Commented on [#612](https://github.com/NeuralEnsemble/elephant/pull/612#issuecomment-2037170562) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +9. 🗣 Commented on [#34](https://github.com/codingfriendsfun/pcc/pull/34#issuecomment-2037160089) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +10. 🗣 Commented on [#490](https://github.com/Spoken-tutorial/spoken-website/pull/490#issuecomment-2036830559) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) From faff09a5d55cce54cc317d2dbc15dbd2b308d8d9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 06:20:48 +0000 Subject: [PATCH 1819/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index de912d84..fbaa755a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -5. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -6. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) -8. 🗣 Commented on [#612](https://github.com/NeuralEnsemble/elephant/pull/612#issuecomment-2037170562) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -9. 🗣 Commented on [#34](https://github.com/codingfriendsfun/pcc/pull/34#issuecomment-2037160089) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -10. 🗣 Commented on [#490](https://github.com/Spoken-tutorial/spoken-website/pull/490#issuecomment-2036830559) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +1. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) +2. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +6. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +7. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) +9. 🗣 Commented on [#612](https://github.com/NeuralEnsemble/elephant/pull/612#issuecomment-2037170562) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +10. 🗣 Commented on [#34](https://github.com/codingfriendsfun/pcc/pull/34#issuecomment-2037160089) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) From a72eff79e48a42b770be995564c001f71048189e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 07:37:20 +0000 Subject: [PATCH 1820/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fbaa755a..84cac16c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) -2. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -6. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -7. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) -9. 🗣 Commented on [#612](https://github.com/NeuralEnsemble/elephant/pull/612#issuecomment-2037170562) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -10. 🗣 Commented on [#34](https://github.com/codingfriendsfun/pcc/pull/34#issuecomment-2037160089) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +1. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) +3. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +7. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +8. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) +10. 🗣 Commented on [#612](https://github.com/NeuralEnsemble/elephant/pull/612#issuecomment-2037170562) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) From 04da8ff18b09d7de73c190a262b233952fdc7032 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 08:23:17 +0000 Subject: [PATCH 1821/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 84cac16c..05cee076 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) -3. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -7. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -8. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) -10. 🗣 Commented on [#612](https://github.com/NeuralEnsemble/elephant/pull/612#issuecomment-2037170562) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +1. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +2. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) +4. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +8. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +9. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) From cee5c879e2c977a67bd8df020f1a0db51a606c5d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 11:13:36 +0000 Subject: [PATCH 1822/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 05cee076..f7123d03 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -2. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) -4. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -8. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -9. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#51](https://github.com/arfc/osier/pull/51#issuecomment-2037171592) in [arfc/osier](https://github.com/arfc/osier) +1. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +2. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) +5. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +9. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +10. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 7e1322aee0a890766aeb77351f1da670be78af58 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 14:17:13 +0000 Subject: [PATCH 1823/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f7123d03..827eecf2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -2. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) -5. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -9. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -10. 🗣 Commented on [#2828](https://github.com/metabrainz/listenbrainz-server/pull/2828#issuecomment-2037395275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +2. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +3. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) +6. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +10. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) From f52d0e9e1701e5c66062eebbb6cdf2e1d44fc283 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 15:16:15 +0000 Subject: [PATCH 1824/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 827eecf2..12a4f68c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -2. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -3. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) -6. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -10. 🗣 Commented on [#626](https://github.com/NeuralEnsemble/elephant/pull/626#issuecomment-2037489754) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +1. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +3. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) +7. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) From fb07827e6463894c389a377e32539e86547e373b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 15:37:04 +0000 Subject: [PATCH 1825/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 12a4f68c..883a6279 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -3. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) -7. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#20](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/20#issuecomment-2037644864) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +1. 🗣 Commented on [#827](https://github.com/spacetelescope/webbpsf/pull/827#issuecomment-2040093080) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +4. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +5. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) +8. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) From 39b7ab80115223d5b6222074c527bc9298bd1db5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 17:16:04 +0000 Subject: [PATCH 1826/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 883a6279..03123d1b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#827](https://github.com/spacetelescope/webbpsf/pull/827#issuecomment-2040093080) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -4. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -5. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) -8. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#3170](https://github.com/dipy/dipy/pull/3170#issuecomment-2037737314) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#1746](https://github.com/zarr-developers/zarr-python/pull/1746#issuecomment-2040234741) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +2. 🗣 Commented on [#827](https://github.com/spacetelescope/webbpsf/pull/827#issuecomment-2040093080) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +5. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) +9. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) From 17fb74f763a62bab375f163f5818c3974c8ebe76 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 19:14:24 +0000 Subject: [PATCH 1827/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 03123d1b..1ca169b8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1746](https://github.com/zarr-developers/zarr-python/pull/1746#issuecomment-2040234741) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -2. 🗣 Commented on [#827](https://github.com/spacetelescope/webbpsf/pull/827#issuecomment-2040093080) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -5. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) -9. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#3172](https://github.com/dipy/dipy/pull/3172#issuecomment-2038498458) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#3176](https://github.com/dipy/dipy/pull/3176#issuecomment-2040420967) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#1746](https://github.com/zarr-developers/zarr-python/pull/1746#issuecomment-2040234741) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +3. 🗣 Commented on [#827](https://github.com/spacetelescope/webbpsf/pull/827#issuecomment-2040093080) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +6. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +8. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) +10. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 5166e967ee83394423b9a1bf95bd934f5bab4997 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 23:16:56 +0000 Subject: [PATCH 1828/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1ca169b8..26265e40 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3176](https://github.com/dipy/dipy/pull/3176#issuecomment-2040420967) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#1746](https://github.com/zarr-developers/zarr-python/pull/1746#issuecomment-2040234741) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -3. 🗣 Commented on [#827](https://github.com/spacetelescope/webbpsf/pull/827#issuecomment-2040093080) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -6. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -8. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) -10. 🗣 Commented on [#21969](https://github.com/spyder-ide/spyder/pull/21969#issuecomment-2038627147) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#23](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/23#issuecomment-2040732217) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +2. 🗣 Commented on [#3176](https://github.com/dipy/dipy/pull/3176#issuecomment-2040420967) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#1746](https://github.com/zarr-developers/zarr-python/pull/1746#issuecomment-2040234741) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +4. 🗣 Commented on [#827](https://github.com/spacetelescope/webbpsf/pull/827#issuecomment-2040093080) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +7. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +8. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) From 3b52ca5e4dc0cf5fdb8cf4a28d12d7287d54a1ea Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Apr 2024 01:08:27 +0000 Subject: [PATCH 1829/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 26265e40..c01177c1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#23](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/23#issuecomment-2040732217) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -2. 🗣 Commented on [#3176](https://github.com/dipy/dipy/pull/3176#issuecomment-2040420967) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#1746](https://github.com/zarr-developers/zarr-python/pull/1746#issuecomment-2040234741) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -4. 🗣 Commented on [#827](https://github.com/spacetelescope/webbpsf/pull/827#issuecomment-2040093080) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -7. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -8. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#434](https://github.com/payu-org/payu/pull/434#issuecomment-2038990386) in [payu-org/payu](https://github.com/payu-org/payu) +1. 🗣 Commented on [#303](https://github.com/AdvancedPhotonSource/tike/pull/303#issuecomment-2040799683) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +2. 🗣 Commented on [#23](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/23#issuecomment-2040732217) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +3. 🗣 Commented on [#3176](https://github.com/dipy/dipy/pull/3176#issuecomment-2040420967) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#1746](https://github.com/zarr-developers/zarr-python/pull/1746#issuecomment-2040234741) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +5. 🗣 Commented on [#827](https://github.com/spacetelescope/webbpsf/pull/827#issuecomment-2040093080) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +8. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +9. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 08282e6cecb48ee827393b6cefc79b7c23815ec5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Apr 2024 07:37:21 +0000 Subject: [PATCH 1830/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c01177c1..51a3e36e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#303](https://github.com/AdvancedPhotonSource/tike/pull/303#issuecomment-2040799683) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -2. 🗣 Commented on [#23](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/23#issuecomment-2040732217) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -3. 🗣 Commented on [#3176](https://github.com/dipy/dipy/pull/3176#issuecomment-2040420967) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#1746](https://github.com/zarr-developers/zarr-python/pull/1746#issuecomment-2040234741) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -5. 🗣 Commented on [#827](https://github.com/spacetelescope/webbpsf/pull/827#issuecomment-2040093080) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -8. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -9. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#5539](https://github.com/rhinstaller/anaconda/pull/5539#issuecomment-2039144359) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#259](https://github.com/CartoonFan/lutris/pull/259#issuecomment-2041351137) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +2. 🗣 Commented on [#303](https://github.com/AdvancedPhotonSource/tike/pull/303#issuecomment-2040799683) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +3. 🗣 Commented on [#23](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/23#issuecomment-2040732217) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +4. 🗣 Commented on [#3176](https://github.com/dipy/dipy/pull/3176#issuecomment-2040420967) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#1746](https://github.com/zarr-developers/zarr-python/pull/1746#issuecomment-2040234741) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +6. 🗣 Commented on [#827](https://github.com/spacetelescope/webbpsf/pull/827#issuecomment-2040093080) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +7. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +9. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From b60a493e22eb28be1bb010d2f316e2c475e22ecc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Apr 2024 10:15:13 +0000 Subject: [PATCH 1831/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 51a3e36e..7166eed6 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#259](https://github.com/CartoonFan/lutris/pull/259#issuecomment-2041351137) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -2. 🗣 Commented on [#303](https://github.com/AdvancedPhotonSource/tike/pull/303#issuecomment-2040799683) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -3. 🗣 Commented on [#23](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/23#issuecomment-2040732217) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -4. 🗣 Commented on [#3176](https://github.com/dipy/dipy/pull/3176#issuecomment-2040420967) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#1746](https://github.com/zarr-developers/zarr-python/pull/1746#issuecomment-2040234741) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -6. 🗣 Commented on [#827](https://github.com/spacetelescope/webbpsf/pull/827#issuecomment-2040093080) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -7. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -9. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#811](https://github.com/OpenFreeEnergy/openfe/pull/811#issuecomment-2039174241) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#2](https://github.com/JINO-ROHIT/learning-cicd/pull/2#issuecomment-2041405794) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) +2. 🗣 Commented on [#259](https://github.com/CartoonFan/lutris/pull/259#issuecomment-2041351137) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +3. 🗣 Commented on [#303](https://github.com/AdvancedPhotonSource/tike/pull/303#issuecomment-2040799683) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +4. 🗣 Commented on [#23](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/23#issuecomment-2040732217) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +5. 🗣 Commented on [#3176](https://github.com/dipy/dipy/pull/3176#issuecomment-2040420967) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#1746](https://github.com/zarr-developers/zarr-python/pull/1746#issuecomment-2040234741) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +7. 🗣 Commented on [#827](https://github.com/spacetelescope/webbpsf/pull/827#issuecomment-2040093080) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +10. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) From 470b3c9902a23143168912fcee1a0d43a4e350df Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Apr 2024 18:37:29 +0000 Subject: [PATCH 1832/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7166eed6..9efaa6fa 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/JINO-ROHIT/learning-cicd/pull/2#issuecomment-2041405794) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) -2. 🗣 Commented on [#259](https://github.com/CartoonFan/lutris/pull/259#issuecomment-2041351137) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -3. 🗣 Commented on [#303](https://github.com/AdvancedPhotonSource/tike/pull/303#issuecomment-2040799683) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -4. 🗣 Commented on [#23](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/23#issuecomment-2040732217) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -5. 🗣 Commented on [#3176](https://github.com/dipy/dipy/pull/3176#issuecomment-2040420967) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#1746](https://github.com/zarr-developers/zarr-python/pull/1746#issuecomment-2040234741) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -7. 🗣 Commented on [#827](https://github.com/spacetelescope/webbpsf/pull/827#issuecomment-2040093080) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -10. 🗣 Commented on [#128](https://github.com/aimclub/Fedot.Industrial/pull/128#issuecomment-2039480734) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +1. 🗣 Commented on [#9199](https://github.com/statsmodels/statsmodels/pull/9199#issuecomment-2041552529) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +2. 🗣 Commented on [#2](https://github.com/JINO-ROHIT/learning-cicd/pull/2#issuecomment-2041405794) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) +3. 🗣 Commented on [#259](https://github.com/CartoonFan/lutris/pull/259#issuecomment-2041351137) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +4. 🗣 Commented on [#303](https://github.com/AdvancedPhotonSource/tike/pull/303#issuecomment-2040799683) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +5. 🗣 Commented on [#23](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/23#issuecomment-2040732217) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +6. 🗣 Commented on [#3176](https://github.com/dipy/dipy/pull/3176#issuecomment-2040420967) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#1746](https://github.com/zarr-developers/zarr-python/pull/1746#issuecomment-2040234741) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +8. 🗣 Commented on [#827](https://github.com/spacetelescope/webbpsf/pull/827#issuecomment-2040093080) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +9. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) From 3aa137ef5620ebb00173c9a15e3211f9bb1527c6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Apr 2024 19:36:59 +0000 Subject: [PATCH 1833/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9efaa6fa..42f4bcf5 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#9199](https://github.com/statsmodels/statsmodels/pull/9199#issuecomment-2041552529) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -2. 🗣 Commented on [#2](https://github.com/JINO-ROHIT/learning-cicd/pull/2#issuecomment-2041405794) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) -3. 🗣 Commented on [#259](https://github.com/CartoonFan/lutris/pull/259#issuecomment-2041351137) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -4. 🗣 Commented on [#303](https://github.com/AdvancedPhotonSource/tike/pull/303#issuecomment-2040799683) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -5. 🗣 Commented on [#23](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/23#issuecomment-2040732217) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -6. 🗣 Commented on [#3176](https://github.com/dipy/dipy/pull/3176#issuecomment-2040420967) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#1746](https://github.com/zarr-developers/zarr-python/pull/1746#issuecomment-2040234741) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -8. 🗣 Commented on [#827](https://github.com/spacetelescope/webbpsf/pull/827#issuecomment-2040093080) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -9. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#1743](https://github.com/zarr-developers/zarr-python/pull/1743#issuecomment-2039855871) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +1. 🗣 Commented on [#37](https://github.com/codingfriendsfun/pcc/pull/37#issuecomment-2041575738) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +2. 🗣 Commented on [#9199](https://github.com/statsmodels/statsmodels/pull/9199#issuecomment-2041552529) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#2](https://github.com/JINO-ROHIT/learning-cicd/pull/2#issuecomment-2041405794) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) +4. 🗣 Commented on [#259](https://github.com/CartoonFan/lutris/pull/259#issuecomment-2041351137) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +5. 🗣 Commented on [#303](https://github.com/AdvancedPhotonSource/tike/pull/303#issuecomment-2040799683) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +6. 🗣 Commented on [#23](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/23#issuecomment-2040732217) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +7. 🗣 Commented on [#3176](https://github.com/dipy/dipy/pull/3176#issuecomment-2040420967) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#1746](https://github.com/zarr-developers/zarr-python/pull/1746#issuecomment-2040234741) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +9. 🗣 Commented on [#827](https://github.com/spacetelescope/webbpsf/pull/827#issuecomment-2040093080) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +10. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) From a6783c0ba504601680833192f6101bf0ccbb70bf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Apr 2024 20:15:44 +0000 Subject: [PATCH 1834/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 42f4bcf5..7c26f497 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#37](https://github.com/codingfriendsfun/pcc/pull/37#issuecomment-2041575738) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -2. 🗣 Commented on [#9199](https://github.com/statsmodels/statsmodels/pull/9199#issuecomment-2041552529) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#2](https://github.com/JINO-ROHIT/learning-cicd/pull/2#issuecomment-2041405794) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) -4. 🗣 Commented on [#259](https://github.com/CartoonFan/lutris/pull/259#issuecomment-2041351137) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -5. 🗣 Commented on [#303](https://github.com/AdvancedPhotonSource/tike/pull/303#issuecomment-2040799683) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -6. 🗣 Commented on [#23](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/23#issuecomment-2040732217) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -7. 🗣 Commented on [#3176](https://github.com/dipy/dipy/pull/3176#issuecomment-2040420967) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#1746](https://github.com/zarr-developers/zarr-python/pull/1746#issuecomment-2040234741) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -9. 🗣 Commented on [#827](https://github.com/spacetelescope/webbpsf/pull/827#issuecomment-2040093080) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -10. 🗣 Commented on [#3174](https://github.com/dipy/dipy/pull/3174#issuecomment-2039985744) in [dipy/dipy](https://github.com/dipy/dipy) +1. 🗣 Commented on [#2829](https://github.com/metabrainz/listenbrainz-server/pull/2829#issuecomment-2041582907) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#9200](https://github.com/statsmodels/statsmodels/pull/9200#issuecomment-2041580556) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#37](https://github.com/codingfriendsfun/pcc/pull/37#issuecomment-2041575738) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +4. 🗣 Commented on [#9199](https://github.com/statsmodels/statsmodels/pull/9199#issuecomment-2041552529) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#2](https://github.com/JINO-ROHIT/learning-cicd/pull/2#issuecomment-2041405794) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) +6. 🗣 Commented on [#259](https://github.com/CartoonFan/lutris/pull/259#issuecomment-2041351137) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +7. 🗣 Commented on [#303](https://github.com/AdvancedPhotonSource/tike/pull/303#issuecomment-2040799683) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +8. 🗣 Commented on [#23](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/23#issuecomment-2040732217) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) +9. 🗣 Commented on [#3176](https://github.com/dipy/dipy/pull/3176#issuecomment-2040420967) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#1746](https://github.com/zarr-developers/zarr-python/pull/1746#issuecomment-2040234741) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) From bbfc0eafed2272423c00ce334505e7101ec1fab3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Apr 2024 20:37:00 +0000 Subject: [PATCH 1835/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7c26f497..2e49baaa 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2829](https://github.com/metabrainz/listenbrainz-server/pull/2829#issuecomment-2041582907) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#9200](https://github.com/statsmodels/statsmodels/pull/9200#issuecomment-2041580556) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#37](https://github.com/codingfriendsfun/pcc/pull/37#issuecomment-2041575738) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -4. 🗣 Commented on [#9199](https://github.com/statsmodels/statsmodels/pull/9199#issuecomment-2041552529) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -5. 🗣 Commented on [#2](https://github.com/JINO-ROHIT/learning-cicd/pull/2#issuecomment-2041405794) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) -6. 🗣 Commented on [#259](https://github.com/CartoonFan/lutris/pull/259#issuecomment-2041351137) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -7. 🗣 Commented on [#303](https://github.com/AdvancedPhotonSource/tike/pull/303#issuecomment-2040799683) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -8. 🗣 Commented on [#23](https://github.com/Sage-Bionetworks-Challenges/cnb-tools/pull/23#issuecomment-2040732217) in [Sage-Bionetworks-Challenges/cnb-tools](https://github.com/Sage-Bionetworks-Challenges/cnb-tools) -9. 🗣 Commented on [#3176](https://github.com/dipy/dipy/pull/3176#issuecomment-2040420967) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#1746](https://github.com/zarr-developers/zarr-python/pull/1746#issuecomment-2040234741) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +1. 🗣 Commented on [#35](https://github.com/MDAnalysis/waterdynamics/pull/35#issuecomment-2041600058) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +2. 🗣 Commented on [#41](https://github.com/codingfriendsfun/pcc/pull/41#issuecomment-2041599292) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +3. 🗣 Commented on [#39](https://github.com/codingfriendsfun/pcc/pull/39#issuecomment-2041599083) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +4. 🗣 Commented on [#2829](https://github.com/metabrainz/listenbrainz-server/pull/2829#issuecomment-2041582907) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#9200](https://github.com/statsmodels/statsmodels/pull/9200#issuecomment-2041580556) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +6. 🗣 Commented on [#37](https://github.com/codingfriendsfun/pcc/pull/37#issuecomment-2041575738) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +7. 🗣 Commented on [#9199](https://github.com/statsmodels/statsmodels/pull/9199#issuecomment-2041552529) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +8. 🗣 Commented on [#2](https://github.com/JINO-ROHIT/learning-cicd/pull/2#issuecomment-2041405794) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) +9. 🗣 Commented on [#259](https://github.com/CartoonFan/lutris/pull/259#issuecomment-2041351137) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) +10. 🗣 Commented on [#303](https://github.com/AdvancedPhotonSource/tike/pull/303#issuecomment-2040799683) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) From e7511e10ccc5a188ff92a53ab861cd1de629334e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Apr 2024 21:14:35 +0000 Subject: [PATCH 1836/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2e49baaa..ccc89f92 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#35](https://github.com/MDAnalysis/waterdynamics/pull/35#issuecomment-2041600058) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -2. 🗣 Commented on [#41](https://github.com/codingfriendsfun/pcc/pull/41#issuecomment-2041599292) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -3. 🗣 Commented on [#39](https://github.com/codingfriendsfun/pcc/pull/39#issuecomment-2041599083) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -4. 🗣 Commented on [#2829](https://github.com/metabrainz/listenbrainz-server/pull/2829#issuecomment-2041582907) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#9200](https://github.com/statsmodels/statsmodels/pull/9200#issuecomment-2041580556) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -6. 🗣 Commented on [#37](https://github.com/codingfriendsfun/pcc/pull/37#issuecomment-2041575738) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -7. 🗣 Commented on [#9199](https://github.com/statsmodels/statsmodels/pull/9199#issuecomment-2041552529) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -8. 🗣 Commented on [#2](https://github.com/JINO-ROHIT/learning-cicd/pull/2#issuecomment-2041405794) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) -9. 🗣 Commented on [#259](https://github.com/CartoonFan/lutris/pull/259#issuecomment-2041351137) in [CartoonFan/lutris](https://github.com/CartoonFan/lutris) -10. 🗣 Commented on [#303](https://github.com/AdvancedPhotonSource/tike/pull/303#issuecomment-2040799683) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +1. 🗣 Commented on [#45](https://github.com/codingfriendsfun/pcc/pull/45#issuecomment-2041605209) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +2. 🗣 Commented on [#8](https://github.com/codingfriendsfun/pcc/pull/8#issuecomment-2041604486) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +3. 🗣 Commented on [#35](https://github.com/MDAnalysis/waterdynamics/pull/35#issuecomment-2041600058) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +4. 🗣 Commented on [#41](https://github.com/codingfriendsfun/pcc/pull/41#issuecomment-2041599292) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +5. 🗣 Commented on [#39](https://github.com/codingfriendsfun/pcc/pull/39#issuecomment-2041599083) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +6. 🗣 Commented on [#2829](https://github.com/metabrainz/listenbrainz-server/pull/2829#issuecomment-2041582907) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#9200](https://github.com/statsmodels/statsmodels/pull/9200#issuecomment-2041580556) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +8. 🗣 Commented on [#37](https://github.com/codingfriendsfun/pcc/pull/37#issuecomment-2041575738) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +9. 🗣 Commented on [#9199](https://github.com/statsmodels/statsmodels/pull/9199#issuecomment-2041552529) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +10. 🗣 Commented on [#2](https://github.com/JINO-ROHIT/learning-cicd/pull/2#issuecomment-2041405794) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) From 8dfe680b433e5a7bc8c527c014dd9e798ac7c918 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 07:37:13 +0000 Subject: [PATCH 1837/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ccc89f92..e18bd9cd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#45](https://github.com/codingfriendsfun/pcc/pull/45#issuecomment-2041605209) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -2. 🗣 Commented on [#8](https://github.com/codingfriendsfun/pcc/pull/8#issuecomment-2041604486) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -3. 🗣 Commented on [#35](https://github.com/MDAnalysis/waterdynamics/pull/35#issuecomment-2041600058) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -4. 🗣 Commented on [#41](https://github.com/codingfriendsfun/pcc/pull/41#issuecomment-2041599292) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -5. 🗣 Commented on [#39](https://github.com/codingfriendsfun/pcc/pull/39#issuecomment-2041599083) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -6. 🗣 Commented on [#2829](https://github.com/metabrainz/listenbrainz-server/pull/2829#issuecomment-2041582907) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#9200](https://github.com/statsmodels/statsmodels/pull/9200#issuecomment-2041580556) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -8. 🗣 Commented on [#37](https://github.com/codingfriendsfun/pcc/pull/37#issuecomment-2041575738) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -9. 🗣 Commented on [#9199](https://github.com/statsmodels/statsmodels/pull/9199#issuecomment-2041552529) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -10. 🗣 Commented on [#2](https://github.com/JINO-ROHIT/learning-cicd/pull/2#issuecomment-2041405794) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) +1. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) +2. 🗣 Commented on [#1528](https://github.com/openSUSE/osc/pull/1528#issuecomment-2042035332) in [openSUSE/osc](https://github.com/openSUSE/osc) +3. 🗣 Commented on [#45](https://github.com/codingfriendsfun/pcc/pull/45#issuecomment-2041605209) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +4. 🗣 Commented on [#8](https://github.com/codingfriendsfun/pcc/pull/8#issuecomment-2041604486) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +5. 🗣 Commented on [#35](https://github.com/MDAnalysis/waterdynamics/pull/35#issuecomment-2041600058) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +6. 🗣 Commented on [#41](https://github.com/codingfriendsfun/pcc/pull/41#issuecomment-2041599292) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +7. 🗣 Commented on [#39](https://github.com/codingfriendsfun/pcc/pull/39#issuecomment-2041599083) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +8. 🗣 Commented on [#2829](https://github.com/metabrainz/listenbrainz-server/pull/2829#issuecomment-2041582907) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#9200](https://github.com/statsmodels/statsmodels/pull/9200#issuecomment-2041580556) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +10. 🗣 Commented on [#37](https://github.com/codingfriendsfun/pcc/pull/37#issuecomment-2041575738) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) From e29400b570c80a14ca67c7903de1be7d12a3e152 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 08:20:29 +0000 Subject: [PATCH 1838/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e18bd9cd..76b8df31 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) -2. 🗣 Commented on [#1528](https://github.com/openSUSE/osc/pull/1528#issuecomment-2042035332) in [openSUSE/osc](https://github.com/openSUSE/osc) -3. 🗣 Commented on [#45](https://github.com/codingfriendsfun/pcc/pull/45#issuecomment-2041605209) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -4. 🗣 Commented on [#8](https://github.com/codingfriendsfun/pcc/pull/8#issuecomment-2041604486) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -5. 🗣 Commented on [#35](https://github.com/MDAnalysis/waterdynamics/pull/35#issuecomment-2041600058) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -6. 🗣 Commented on [#41](https://github.com/codingfriendsfun/pcc/pull/41#issuecomment-2041599292) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -7. 🗣 Commented on [#39](https://github.com/codingfriendsfun/pcc/pull/39#issuecomment-2041599083) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -8. 🗣 Commented on [#2829](https://github.com/metabrainz/listenbrainz-server/pull/2829#issuecomment-2041582907) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#9200](https://github.com/statsmodels/statsmodels/pull/9200#issuecomment-2041580556) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -10. 🗣 Commented on [#37](https://github.com/codingfriendsfun/pcc/pull/37#issuecomment-2041575738) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +1. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) +3. 🗣 Commented on [#1528](https://github.com/openSUSE/osc/pull/1528#issuecomment-2042035332) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#45](https://github.com/codingfriendsfun/pcc/pull/45#issuecomment-2041605209) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +5. 🗣 Commented on [#8](https://github.com/codingfriendsfun/pcc/pull/8#issuecomment-2041604486) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +6. 🗣 Commented on [#35](https://github.com/MDAnalysis/waterdynamics/pull/35#issuecomment-2041600058) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +7. 🗣 Commented on [#41](https://github.com/codingfriendsfun/pcc/pull/41#issuecomment-2041599292) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +8. 🗣 Commented on [#39](https://github.com/codingfriendsfun/pcc/pull/39#issuecomment-2041599083) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +9. 🗣 Commented on [#2829](https://github.com/metabrainz/listenbrainz-server/pull/2829#issuecomment-2041582907) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#9200](https://github.com/statsmodels/statsmodels/pull/9200#issuecomment-2041580556) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) From 72e92d591d3d0a7991b9086ad7996904e3c39e35 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 10:38:51 +0000 Subject: [PATCH 1839/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 76b8df31..05c0bcf9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) -3. 🗣 Commented on [#1528](https://github.com/openSUSE/osc/pull/1528#issuecomment-2042035332) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#45](https://github.com/codingfriendsfun/pcc/pull/45#issuecomment-2041605209) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -5. 🗣 Commented on [#8](https://github.com/codingfriendsfun/pcc/pull/8#issuecomment-2041604486) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -6. 🗣 Commented on [#35](https://github.com/MDAnalysis/waterdynamics/pull/35#issuecomment-2041600058) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -7. 🗣 Commented on [#41](https://github.com/codingfriendsfun/pcc/pull/41#issuecomment-2041599292) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -8. 🗣 Commented on [#39](https://github.com/codingfriendsfun/pcc/pull/39#issuecomment-2041599083) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -9. 🗣 Commented on [#2829](https://github.com/metabrainz/listenbrainz-server/pull/2829#issuecomment-2041582907) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#9200](https://github.com/statsmodels/statsmodels/pull/9200#issuecomment-2041580556) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +1. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +2. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) +3. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) +4. 🗣 Commented on [#1528](https://github.com/openSUSE/osc/pull/1528#issuecomment-2042035332) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#45](https://github.com/codingfriendsfun/pcc/pull/45#issuecomment-2041605209) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +6. 🗣 Commented on [#8](https://github.com/codingfriendsfun/pcc/pull/8#issuecomment-2041604486) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +7. 🗣 Commented on [#35](https://github.com/MDAnalysis/waterdynamics/pull/35#issuecomment-2041600058) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +8. 🗣 Commented on [#41](https://github.com/codingfriendsfun/pcc/pull/41#issuecomment-2041599292) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +9. 🗣 Commented on [#39](https://github.com/codingfriendsfun/pcc/pull/39#issuecomment-2041599083) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +10. 🗣 Commented on [#2829](https://github.com/metabrainz/listenbrainz-server/pull/2829#issuecomment-2041582907) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 49fcb5c90b771cbda87ed880c918c0c500938a43 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 12:30:05 +0000 Subject: [PATCH 1840/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 05c0bcf9..0293825e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -2. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) -3. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) -4. 🗣 Commented on [#1528](https://github.com/openSUSE/osc/pull/1528#issuecomment-2042035332) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#45](https://github.com/codingfriendsfun/pcc/pull/45#issuecomment-2041605209) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -6. 🗣 Commented on [#8](https://github.com/codingfriendsfun/pcc/pull/8#issuecomment-2041604486) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -7. 🗣 Commented on [#35](https://github.com/MDAnalysis/waterdynamics/pull/35#issuecomment-2041600058) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -8. 🗣 Commented on [#41](https://github.com/codingfriendsfun/pcc/pull/41#issuecomment-2041599292) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -9. 🗣 Commented on [#39](https://github.com/codingfriendsfun/pcc/pull/39#issuecomment-2041599083) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -10. 🗣 Commented on [#2829](https://github.com/metabrainz/listenbrainz-server/pull/2829#issuecomment-2041582907) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#484](https://github.com/VorTECHsa/python-sdk/pull/484#issuecomment-2042558389) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +2. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +3. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) +5. 🗣 Commented on [#1528](https://github.com/openSUSE/osc/pull/1528#issuecomment-2042035332) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#45](https://github.com/codingfriendsfun/pcc/pull/45#issuecomment-2041605209) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +7. 🗣 Commented on [#8](https://github.com/codingfriendsfun/pcc/pull/8#issuecomment-2041604486) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +8. 🗣 Commented on [#35](https://github.com/MDAnalysis/waterdynamics/pull/35#issuecomment-2041600058) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +9. 🗣 Commented on [#41](https://github.com/codingfriendsfun/pcc/pull/41#issuecomment-2041599292) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +10. 🗣 Commented on [#39](https://github.com/codingfriendsfun/pcc/pull/39#issuecomment-2041599083) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) From 7ae0952fa767ebb967525be3687eb3be4bec4ed5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 18:23:11 +0000 Subject: [PATCH 1841/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0293825e..49eebda3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#484](https://github.com/VorTECHsa/python-sdk/pull/484#issuecomment-2042558389) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -2. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -3. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) -5. 🗣 Commented on [#1528](https://github.com/openSUSE/osc/pull/1528#issuecomment-2042035332) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#45](https://github.com/codingfriendsfun/pcc/pull/45#issuecomment-2041605209) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -7. 🗣 Commented on [#8](https://github.com/codingfriendsfun/pcc/pull/8#issuecomment-2041604486) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -8. 🗣 Commented on [#35](https://github.com/MDAnalysis/waterdynamics/pull/35#issuecomment-2041600058) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -9. 🗣 Commented on [#41](https://github.com/codingfriendsfun/pcc/pull/41#issuecomment-2041599292) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -10. 🗣 Commented on [#39](https://github.com/codingfriendsfun/pcc/pull/39#issuecomment-2041599083) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +1. 🗣 Commented on [#828](https://github.com/spacetelescope/webbpsf/pull/828#issuecomment-2043380993) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#484](https://github.com/VorTECHsa/python-sdk/pull/484#issuecomment-2042558389) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +3. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +4. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) +6. 🗣 Commented on [#1528](https://github.com/openSUSE/osc/pull/1528#issuecomment-2042035332) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#45](https://github.com/codingfriendsfun/pcc/pull/45#issuecomment-2041605209) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +8. 🗣 Commented on [#8](https://github.com/codingfriendsfun/pcc/pull/8#issuecomment-2041604486) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +9. 🗣 Commented on [#35](https://github.com/MDAnalysis/waterdynamics/pull/35#issuecomment-2041600058) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +10. 🗣 Commented on [#41](https://github.com/codingfriendsfun/pcc/pull/41#issuecomment-2041599292) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) From ab4f8c2e6ec91bef63d4abee082e08cae193db3f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 03:37:43 +0000 Subject: [PATCH 1842/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 49eebda3..2ddb007d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#828](https://github.com/spacetelescope/webbpsf/pull/828#issuecomment-2043380993) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#484](https://github.com/VorTECHsa/python-sdk/pull/484#issuecomment-2042558389) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -3. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -4. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) -6. 🗣 Commented on [#1528](https://github.com/openSUSE/osc/pull/1528#issuecomment-2042035332) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#45](https://github.com/codingfriendsfun/pcc/pull/45#issuecomment-2041605209) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -8. 🗣 Commented on [#8](https://github.com/codingfriendsfun/pcc/pull/8#issuecomment-2041604486) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -9. 🗣 Commented on [#35](https://github.com/MDAnalysis/waterdynamics/pull/35#issuecomment-2041600058) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -10. 🗣 Commented on [#41](https://github.com/codingfriendsfun/pcc/pull/41#issuecomment-2041599292) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +1. 🗣 Commented on [#11](https://github.com/sarnold/pyre2/pull/11#issuecomment-2044084153) in [sarnold/pyre2](https://github.com/sarnold/pyre2) +2. 🗣 Commented on [#828](https://github.com/spacetelescope/webbpsf/pull/828#issuecomment-2043380993) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#484](https://github.com/VorTECHsa/python-sdk/pull/484#issuecomment-2042558389) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +4. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +5. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) +7. 🗣 Commented on [#1528](https://github.com/openSUSE/osc/pull/1528#issuecomment-2042035332) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#45](https://github.com/codingfriendsfun/pcc/pull/45#issuecomment-2041605209) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +9. 🗣 Commented on [#8](https://github.com/codingfriendsfun/pcc/pull/8#issuecomment-2041604486) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +10. 🗣 Commented on [#35](https://github.com/MDAnalysis/waterdynamics/pull/35#issuecomment-2041600058) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) From 90f82f8f294028e3060a4314834c62387d2aaa8f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 10:38:40 +0000 Subject: [PATCH 1843/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2ddb007d..fef80719 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#11](https://github.com/sarnold/pyre2/pull/11#issuecomment-2044084153) in [sarnold/pyre2](https://github.com/sarnold/pyre2) -2. 🗣 Commented on [#828](https://github.com/spacetelescope/webbpsf/pull/828#issuecomment-2043380993) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#484](https://github.com/VorTECHsa/python-sdk/pull/484#issuecomment-2042558389) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -4. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -5. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) -7. 🗣 Commented on [#1528](https://github.com/openSUSE/osc/pull/1528#issuecomment-2042035332) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#45](https://github.com/codingfriendsfun/pcc/pull/45#issuecomment-2041605209) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -9. 🗣 Commented on [#8](https://github.com/codingfriendsfun/pcc/pull/8#issuecomment-2041604486) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -10. 🗣 Commented on [#35](https://github.com/MDAnalysis/waterdynamics/pull/35#issuecomment-2041600058) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +1. 🗣 Commented on [#6](https://github.com/JINO-ROHIT/learning-cicd/pull/6#issuecomment-2044666733) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) +2. 🗣 Commented on [#11](https://github.com/sarnold/pyre2/pull/11#issuecomment-2044084153) in [sarnold/pyre2](https://github.com/sarnold/pyre2) +3. 🗣 Commented on [#828](https://github.com/spacetelescope/webbpsf/pull/828#issuecomment-2043380993) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#484](https://github.com/VorTECHsa/python-sdk/pull/484#issuecomment-2042558389) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +5. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +6. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) +8. 🗣 Commented on [#1528](https://github.com/openSUSE/osc/pull/1528#issuecomment-2042035332) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#45](https://github.com/codingfriendsfun/pcc/pull/45#issuecomment-2041605209) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +10. 🗣 Commented on [#8](https://github.com/codingfriendsfun/pcc/pull/8#issuecomment-2041604486) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) From 328a07d7b0cc53d60fb3381bdad050f3f7b8e710 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 12:30:28 +0000 Subject: [PATCH 1844/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fef80719..e6e510a9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#6](https://github.com/JINO-ROHIT/learning-cicd/pull/6#issuecomment-2044666733) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) -2. 🗣 Commented on [#11](https://github.com/sarnold/pyre2/pull/11#issuecomment-2044084153) in [sarnold/pyre2](https://github.com/sarnold/pyre2) -3. 🗣 Commented on [#828](https://github.com/spacetelescope/webbpsf/pull/828#issuecomment-2043380993) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#484](https://github.com/VorTECHsa/python-sdk/pull/484#issuecomment-2042558389) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -5. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -6. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) -8. 🗣 Commented on [#1528](https://github.com/openSUSE/osc/pull/1528#issuecomment-2042035332) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#45](https://github.com/codingfriendsfun/pcc/pull/45#issuecomment-2041605209) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -10. 🗣 Commented on [#8](https://github.com/codingfriendsfun/pcc/pull/8#issuecomment-2041604486) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +1. 🗣 Commented on [#3899](https://github.com/privacyidea/privacyidea/pull/3899#issuecomment-2045021596) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#6](https://github.com/JINO-ROHIT/learning-cicd/pull/6#issuecomment-2044666733) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) +3. 🗣 Commented on [#11](https://github.com/sarnold/pyre2/pull/11#issuecomment-2044084153) in [sarnold/pyre2](https://github.com/sarnold/pyre2) +4. 🗣 Commented on [#828](https://github.com/spacetelescope/webbpsf/pull/828#issuecomment-2043380993) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#484](https://github.com/VorTECHsa/python-sdk/pull/484#issuecomment-2042558389) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +6. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +7. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) +9. 🗣 Commented on [#1528](https://github.com/openSUSE/osc/pull/1528#issuecomment-2042035332) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#45](https://github.com/codingfriendsfun/pcc/pull/45#issuecomment-2041605209) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) From 1d3e2b87c04daddff3d27dde8722753a54273ac3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 13:17:25 +0000 Subject: [PATCH 1845/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e6e510a9..06099f3a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3899](https://github.com/privacyidea/privacyidea/pull/3899#issuecomment-2045021596) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#6](https://github.com/JINO-ROHIT/learning-cicd/pull/6#issuecomment-2044666733) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) -3. 🗣 Commented on [#11](https://github.com/sarnold/pyre2/pull/11#issuecomment-2044084153) in [sarnold/pyre2](https://github.com/sarnold/pyre2) -4. 🗣 Commented on [#828](https://github.com/spacetelescope/webbpsf/pull/828#issuecomment-2043380993) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#484](https://github.com/VorTECHsa/python-sdk/pull/484#issuecomment-2042558389) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -6. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -7. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) -9. 🗣 Commented on [#1528](https://github.com/openSUSE/osc/pull/1528#issuecomment-2042035332) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#45](https://github.com/codingfriendsfun/pcc/pull/45#issuecomment-2041605209) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +1. 🗣 Commented on [#3901](https://github.com/privacyidea/privacyidea/pull/3901#issuecomment-2045148677) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#3899](https://github.com/privacyidea/privacyidea/pull/3899#issuecomment-2045021596) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#6](https://github.com/JINO-ROHIT/learning-cicd/pull/6#issuecomment-2044666733) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) +4. 🗣 Commented on [#11](https://github.com/sarnold/pyre2/pull/11#issuecomment-2044084153) in [sarnold/pyre2](https://github.com/sarnold/pyre2) +5. 🗣 Commented on [#828](https://github.com/spacetelescope/webbpsf/pull/828#issuecomment-2043380993) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#484](https://github.com/VorTECHsa/python-sdk/pull/484#issuecomment-2042558389) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +7. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +8. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) +10. 🗣 Commented on [#1528](https://github.com/openSUSE/osc/pull/1528#issuecomment-2042035332) in [openSUSE/osc](https://github.com/openSUSE/osc) From 2ea630f117d2d047cd4cdac9147d43a341af0339 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 13:37:06 +0000 Subject: [PATCH 1846/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 06099f3a..972c7ff8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3901](https://github.com/privacyidea/privacyidea/pull/3901#issuecomment-2045148677) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#3899](https://github.com/privacyidea/privacyidea/pull/3899#issuecomment-2045021596) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#6](https://github.com/JINO-ROHIT/learning-cicd/pull/6#issuecomment-2044666733) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) -4. 🗣 Commented on [#11](https://github.com/sarnold/pyre2/pull/11#issuecomment-2044084153) in [sarnold/pyre2](https://github.com/sarnold/pyre2) -5. 🗣 Commented on [#828](https://github.com/spacetelescope/webbpsf/pull/828#issuecomment-2043380993) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#484](https://github.com/VorTECHsa/python-sdk/pull/484#issuecomment-2042558389) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -7. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -8. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) -10. 🗣 Commented on [#1528](https://github.com/openSUSE/osc/pull/1528#issuecomment-2042035332) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#2986](https://github.com/astropy/astroquery/pull/2986#issuecomment-2045193021) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#3901](https://github.com/privacyidea/privacyidea/pull/3901#issuecomment-2045148677) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#3899](https://github.com/privacyidea/privacyidea/pull/3899#issuecomment-2045021596) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +4. 🗣 Commented on [#6](https://github.com/JINO-ROHIT/learning-cicd/pull/6#issuecomment-2044666733) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) +5. 🗣 Commented on [#11](https://github.com/sarnold/pyre2/pull/11#issuecomment-2044084153) in [sarnold/pyre2](https://github.com/sarnold/pyre2) +6. 🗣 Commented on [#828](https://github.com/spacetelescope/webbpsf/pull/828#issuecomment-2043380993) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +7. 🗣 Commented on [#484](https://github.com/VorTECHsa/python-sdk/pull/484#issuecomment-2042558389) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +8. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +9. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) From ad2317fcfeeaf5f49b548edfb9969afc2acd6d5c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 15:37:47 +0000 Subject: [PATCH 1847/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 972c7ff8..23bbb57b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2986](https://github.com/astropy/astroquery/pull/2986#issuecomment-2045193021) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#3901](https://github.com/privacyidea/privacyidea/pull/3901#issuecomment-2045148677) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#3899](https://github.com/privacyidea/privacyidea/pull/3899#issuecomment-2045021596) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -4. 🗣 Commented on [#6](https://github.com/JINO-ROHIT/learning-cicd/pull/6#issuecomment-2044666733) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) -5. 🗣 Commented on [#11](https://github.com/sarnold/pyre2/pull/11#issuecomment-2044084153) in [sarnold/pyre2](https://github.com/sarnold/pyre2) -6. 🗣 Commented on [#828](https://github.com/spacetelescope/webbpsf/pull/828#issuecomment-2043380993) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -7. 🗣 Commented on [#484](https://github.com/VorTECHsa/python-sdk/pull/484#issuecomment-2042558389) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -8. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -9. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#2](https://github.com/cirKITers/HIDA-Deep-Fake/pull/2#issuecomment-2042054194) in [cirKITers/HIDA-Deep-Fake](https://github.com/cirKITers/HIDA-Deep-Fake) +1. 🗣 Commented on [#964](https://github.com/scilus/scilpy/pull/964#issuecomment-2045426989) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#2986](https://github.com/astropy/astroquery/pull/2986#issuecomment-2045193021) in [astropy/astroquery](https://github.com/astropy/astroquery) +3. 🗣 Commented on [#3901](https://github.com/privacyidea/privacyidea/pull/3901#issuecomment-2045148677) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +4. 🗣 Commented on [#3899](https://github.com/privacyidea/privacyidea/pull/3899#issuecomment-2045021596) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#6](https://github.com/JINO-ROHIT/learning-cicd/pull/6#issuecomment-2044666733) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) +6. 🗣 Commented on [#11](https://github.com/sarnold/pyre2/pull/11#issuecomment-2044084153) in [sarnold/pyre2](https://github.com/sarnold/pyre2) +7. 🗣 Commented on [#828](https://github.com/spacetelescope/webbpsf/pull/828#issuecomment-2043380993) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#484](https://github.com/VorTECHsa/python-sdk/pull/484#issuecomment-2042558389) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +9. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +10. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) From 0245b7db1e015abdef4f789e0868b8c00334cbfa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 21:15:15 +0000 Subject: [PATCH 1848/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 23bbb57b..d48cab21 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#964](https://github.com/scilus/scilpy/pull/964#issuecomment-2045426989) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#2986](https://github.com/astropy/astroquery/pull/2986#issuecomment-2045193021) in [astropy/astroquery](https://github.com/astropy/astroquery) -3. 🗣 Commented on [#3901](https://github.com/privacyidea/privacyidea/pull/3901#issuecomment-2045148677) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -4. 🗣 Commented on [#3899](https://github.com/privacyidea/privacyidea/pull/3899#issuecomment-2045021596) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#6](https://github.com/JINO-ROHIT/learning-cicd/pull/6#issuecomment-2044666733) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) -6. 🗣 Commented on [#11](https://github.com/sarnold/pyre2/pull/11#issuecomment-2044084153) in [sarnold/pyre2](https://github.com/sarnold/pyre2) -7. 🗣 Commented on [#828](https://github.com/spacetelescope/webbpsf/pull/828#issuecomment-2043380993) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#484](https://github.com/VorTECHsa/python-sdk/pull/484#issuecomment-2042558389) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -9. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -10. 🗣 Commented on [#1529](https://github.com/openSUSE/osc/pull/1529#issuecomment-2042109298) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#231](https://github.com/scil-vital/dwi_ml/pull/231#issuecomment-2046021764) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +2. 🗣 Commented on [#964](https://github.com/scilus/scilpy/pull/964#issuecomment-2045426989) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#2986](https://github.com/astropy/astroquery/pull/2986#issuecomment-2045193021) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#3901](https://github.com/privacyidea/privacyidea/pull/3901#issuecomment-2045148677) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#3899](https://github.com/privacyidea/privacyidea/pull/3899#issuecomment-2045021596) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#6](https://github.com/JINO-ROHIT/learning-cicd/pull/6#issuecomment-2044666733) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) +7. 🗣 Commented on [#11](https://github.com/sarnold/pyre2/pull/11#issuecomment-2044084153) in [sarnold/pyre2](https://github.com/sarnold/pyre2) +8. 🗣 Commented on [#828](https://github.com/spacetelescope/webbpsf/pull/828#issuecomment-2043380993) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +9. 🗣 Commented on [#484](https://github.com/VorTECHsa/python-sdk/pull/484#issuecomment-2042558389) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +10. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) From 001edc3f7cb705b4c4be82416a6c395b645dce3d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 21:37:21 +0000 Subject: [PATCH 1849/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d48cab21..872a551e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#231](https://github.com/scil-vital/dwi_ml/pull/231#issuecomment-2046021764) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -2. 🗣 Commented on [#964](https://github.com/scilus/scilpy/pull/964#issuecomment-2045426989) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#2986](https://github.com/astropy/astroquery/pull/2986#issuecomment-2045193021) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#3901](https://github.com/privacyidea/privacyidea/pull/3901#issuecomment-2045148677) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#3899](https://github.com/privacyidea/privacyidea/pull/3899#issuecomment-2045021596) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#6](https://github.com/JINO-ROHIT/learning-cicd/pull/6#issuecomment-2044666733) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) -7. 🗣 Commented on [#11](https://github.com/sarnold/pyre2/pull/11#issuecomment-2044084153) in [sarnold/pyre2](https://github.com/sarnold/pyre2) -8. 🗣 Commented on [#828](https://github.com/spacetelescope/webbpsf/pull/828#issuecomment-2043380993) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -9. 🗣 Commented on [#484](https://github.com/VorTECHsa/python-sdk/pull/484#issuecomment-2042558389) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -10. 🗣 Commented on [#39](https://github.com/eastgenomics/automated-archiving/pull/39#issuecomment-2042413279) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +1. 🗣 Commented on [#1686](https://github.com/HEXRD/hexrdgui/pull/1686#issuecomment-2046073784) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +2. 🗣 Commented on [#628](https://github.com/HEXRD/hexrd/pull/628#issuecomment-2046067934) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#231](https://github.com/scil-vital/dwi_ml/pull/231#issuecomment-2046021764) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +4. 🗣 Commented on [#964](https://github.com/scilus/scilpy/pull/964#issuecomment-2045426989) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#2986](https://github.com/astropy/astroquery/pull/2986#issuecomment-2045193021) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#3901](https://github.com/privacyidea/privacyidea/pull/3901#issuecomment-2045148677) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +7. 🗣 Commented on [#3899](https://github.com/privacyidea/privacyidea/pull/3899#issuecomment-2045021596) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#6](https://github.com/JINO-ROHIT/learning-cicd/pull/6#issuecomment-2044666733) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) +9. 🗣 Commented on [#11](https://github.com/sarnold/pyre2/pull/11#issuecomment-2044084153) in [sarnold/pyre2](https://github.com/sarnold/pyre2) +10. 🗣 Commented on [#828](https://github.com/spacetelescope/webbpsf/pull/828#issuecomment-2043380993) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) From 740ff335a38f9f790f5e7bac6e0e88727d25f05f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Apr 2024 04:37:10 +0000 Subject: [PATCH 1850/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 872a551e..01646b66 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1686](https://github.com/HEXRD/hexrdgui/pull/1686#issuecomment-2046073784) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -2. 🗣 Commented on [#628](https://github.com/HEXRD/hexrd/pull/628#issuecomment-2046067934) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#231](https://github.com/scil-vital/dwi_ml/pull/231#issuecomment-2046021764) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -4. 🗣 Commented on [#964](https://github.com/scilus/scilpy/pull/964#issuecomment-2045426989) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#2986](https://github.com/astropy/astroquery/pull/2986#issuecomment-2045193021) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#3901](https://github.com/privacyidea/privacyidea/pull/3901#issuecomment-2045148677) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -7. 🗣 Commented on [#3899](https://github.com/privacyidea/privacyidea/pull/3899#issuecomment-2045021596) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#6](https://github.com/JINO-ROHIT/learning-cicd/pull/6#issuecomment-2044666733) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) -9. 🗣 Commented on [#11](https://github.com/sarnold/pyre2/pull/11#issuecomment-2044084153) in [sarnold/pyre2](https://github.com/sarnold/pyre2) -10. 🗣 Commented on [#828](https://github.com/spacetelescope/webbpsf/pull/828#issuecomment-2043380993) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +1. 🗣 Commented on [#1782](https://github.com/zarr-developers/zarr-python/pull/1782#issuecomment-2046513406) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +2. 🗣 Commented on [#1686](https://github.com/HEXRD/hexrdgui/pull/1686#issuecomment-2046073784) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +3. 🗣 Commented on [#628](https://github.com/HEXRD/hexrd/pull/628#issuecomment-2046067934) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +4. 🗣 Commented on [#231](https://github.com/scil-vital/dwi_ml/pull/231#issuecomment-2046021764) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +5. 🗣 Commented on [#964](https://github.com/scilus/scilpy/pull/964#issuecomment-2045426989) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#2986](https://github.com/astropy/astroquery/pull/2986#issuecomment-2045193021) in [astropy/astroquery](https://github.com/astropy/astroquery) +7. 🗣 Commented on [#3901](https://github.com/privacyidea/privacyidea/pull/3901#issuecomment-2045148677) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#3899](https://github.com/privacyidea/privacyidea/pull/3899#issuecomment-2045021596) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#6](https://github.com/JINO-ROHIT/learning-cicd/pull/6#issuecomment-2044666733) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) +10. 🗣 Commented on [#11](https://github.com/sarnold/pyre2/pull/11#issuecomment-2044084153) in [sarnold/pyre2](https://github.com/sarnold/pyre2) From 023cfda6cfd0d1706e7c1e6bcaaabeb2196ff00c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Apr 2024 10:18:32 +0000 Subject: [PATCH 1851/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 01646b66..47ae9c0c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1782](https://github.com/zarr-developers/zarr-python/pull/1782#issuecomment-2046513406) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -2. 🗣 Commented on [#1686](https://github.com/HEXRD/hexrdgui/pull/1686#issuecomment-2046073784) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -3. 🗣 Commented on [#628](https://github.com/HEXRD/hexrd/pull/628#issuecomment-2046067934) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -4. 🗣 Commented on [#231](https://github.com/scil-vital/dwi_ml/pull/231#issuecomment-2046021764) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -5. 🗣 Commented on [#964](https://github.com/scilus/scilpy/pull/964#issuecomment-2045426989) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#2986](https://github.com/astropy/astroquery/pull/2986#issuecomment-2045193021) in [astropy/astroquery](https://github.com/astropy/astroquery) -7. 🗣 Commented on [#3901](https://github.com/privacyidea/privacyidea/pull/3901#issuecomment-2045148677) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#3899](https://github.com/privacyidea/privacyidea/pull/3899#issuecomment-2045021596) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#6](https://github.com/JINO-ROHIT/learning-cicd/pull/6#issuecomment-2044666733) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) -10. 🗣 Commented on [#11](https://github.com/sarnold/pyre2/pull/11#issuecomment-2044084153) in [sarnold/pyre2](https://github.com/sarnold/pyre2) +1. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +2. 🗣 Commented on [#1782](https://github.com/zarr-developers/zarr-python/pull/1782#issuecomment-2046513406) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +3. 🗣 Commented on [#1686](https://github.com/HEXRD/hexrdgui/pull/1686#issuecomment-2046073784) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +4. 🗣 Commented on [#628](https://github.com/HEXRD/hexrd/pull/628#issuecomment-2046067934) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#231](https://github.com/scil-vital/dwi_ml/pull/231#issuecomment-2046021764) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +6. 🗣 Commented on [#964](https://github.com/scilus/scilpy/pull/964#issuecomment-2045426989) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#2986](https://github.com/astropy/astroquery/pull/2986#issuecomment-2045193021) in [astropy/astroquery](https://github.com/astropy/astroquery) +8. 🗣 Commented on [#3901](https://github.com/privacyidea/privacyidea/pull/3901#issuecomment-2045148677) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#3899](https://github.com/privacyidea/privacyidea/pull/3899#issuecomment-2045021596) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#6](https://github.com/JINO-ROHIT/learning-cicd/pull/6#issuecomment-2044666733) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) From a1648684245451cf0a6bf54c79585b861183beff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Apr 2024 11:16:05 +0000 Subject: [PATCH 1852/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 47ae9c0c..e2f12aa2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -2. 🗣 Commented on [#1782](https://github.com/zarr-developers/zarr-python/pull/1782#issuecomment-2046513406) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -3. 🗣 Commented on [#1686](https://github.com/HEXRD/hexrdgui/pull/1686#issuecomment-2046073784) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -4. 🗣 Commented on [#628](https://github.com/HEXRD/hexrd/pull/628#issuecomment-2046067934) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#231](https://github.com/scil-vital/dwi_ml/pull/231#issuecomment-2046021764) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -6. 🗣 Commented on [#964](https://github.com/scilus/scilpy/pull/964#issuecomment-2045426989) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#2986](https://github.com/astropy/astroquery/pull/2986#issuecomment-2045193021) in [astropy/astroquery](https://github.com/astropy/astroquery) -8. 🗣 Commented on [#3901](https://github.com/privacyidea/privacyidea/pull/3901#issuecomment-2045148677) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#3899](https://github.com/privacyidea/privacyidea/pull/3899#issuecomment-2045021596) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#6](https://github.com/JINO-ROHIT/learning-cicd/pull/6#issuecomment-2044666733) in [JINO-ROHIT/learning-cicd](https://github.com/JINO-ROHIT/learning-cicd) +1. 🗣 Commented on [#3903](https://github.com/privacyidea/privacyidea/pull/3903#issuecomment-2047187624) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +3. 🗣 Commented on [#1782](https://github.com/zarr-developers/zarr-python/pull/1782#issuecomment-2046513406) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +4. 🗣 Commented on [#1686](https://github.com/HEXRD/hexrdgui/pull/1686#issuecomment-2046073784) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +5. 🗣 Commented on [#628](https://github.com/HEXRD/hexrd/pull/628#issuecomment-2046067934) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +6. 🗣 Commented on [#231](https://github.com/scil-vital/dwi_ml/pull/231#issuecomment-2046021764) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +7. 🗣 Commented on [#964](https://github.com/scilus/scilpy/pull/964#issuecomment-2045426989) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#2986](https://github.com/astropy/astroquery/pull/2986#issuecomment-2045193021) in [astropy/astroquery](https://github.com/astropy/astroquery) +9. 🗣 Commented on [#3901](https://github.com/privacyidea/privacyidea/pull/3901#issuecomment-2045148677) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#3899](https://github.com/privacyidea/privacyidea/pull/3899#issuecomment-2045021596) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From 61fa7c8f97dd389357c85ad06208ef6e036fdba1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Apr 2024 13:18:13 +0000 Subject: [PATCH 1853/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e2f12aa2..ea47d04d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3903](https://github.com/privacyidea/privacyidea/pull/3903#issuecomment-2047187624) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -3. 🗣 Commented on [#1782](https://github.com/zarr-developers/zarr-python/pull/1782#issuecomment-2046513406) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -4. 🗣 Commented on [#1686](https://github.com/HEXRD/hexrdgui/pull/1686#issuecomment-2046073784) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -5. 🗣 Commented on [#628](https://github.com/HEXRD/hexrd/pull/628#issuecomment-2046067934) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -6. 🗣 Commented on [#231](https://github.com/scil-vital/dwi_ml/pull/231#issuecomment-2046021764) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -7. 🗣 Commented on [#964](https://github.com/scilus/scilpy/pull/964#issuecomment-2045426989) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#2986](https://github.com/astropy/astroquery/pull/2986#issuecomment-2045193021) in [astropy/astroquery](https://github.com/astropy/astroquery) -9. 🗣 Commented on [#3901](https://github.com/privacyidea/privacyidea/pull/3901#issuecomment-2045148677) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#3899](https://github.com/privacyidea/privacyidea/pull/3899#issuecomment-2045021596) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +2. 🗣 Commented on [#3903](https://github.com/privacyidea/privacyidea/pull/3903#issuecomment-2047187624) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +4. 🗣 Commented on [#1782](https://github.com/zarr-developers/zarr-python/pull/1782#issuecomment-2046513406) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +5. 🗣 Commented on [#1686](https://github.com/HEXRD/hexrdgui/pull/1686#issuecomment-2046073784) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +6. 🗣 Commented on [#628](https://github.com/HEXRD/hexrd/pull/628#issuecomment-2046067934) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +7. 🗣 Commented on [#231](https://github.com/scil-vital/dwi_ml/pull/231#issuecomment-2046021764) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +8. 🗣 Commented on [#964](https://github.com/scilus/scilpy/pull/964#issuecomment-2045426989) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#2986](https://github.com/astropy/astroquery/pull/2986#issuecomment-2045193021) in [astropy/astroquery](https://github.com/astropy/astroquery) +10. 🗣 Commented on [#3901](https://github.com/privacyidea/privacyidea/pull/3901#issuecomment-2045148677) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From 11a7e754c63466b1602b0619d11fba8869bb82c9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Apr 2024 15:17:18 +0000 Subject: [PATCH 1854/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ea47d04d..af9b139b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -2. 🗣 Commented on [#3903](https://github.com/privacyidea/privacyidea/pull/3903#issuecomment-2047187624) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -4. 🗣 Commented on [#1782](https://github.com/zarr-developers/zarr-python/pull/1782#issuecomment-2046513406) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -5. 🗣 Commented on [#1686](https://github.com/HEXRD/hexrdgui/pull/1686#issuecomment-2046073784) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -6. 🗣 Commented on [#628](https://github.com/HEXRD/hexrd/pull/628#issuecomment-2046067934) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -7. 🗣 Commented on [#231](https://github.com/scil-vital/dwi_ml/pull/231#issuecomment-2046021764) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -8. 🗣 Commented on [#964](https://github.com/scilus/scilpy/pull/964#issuecomment-2045426989) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#2986](https://github.com/astropy/astroquery/pull/2986#issuecomment-2045193021) in [astropy/astroquery](https://github.com/astropy/astroquery) -10. 🗣 Commented on [#3901](https://github.com/privacyidea/privacyidea/pull/3901#issuecomment-2045148677) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#304](https://github.com/OpenFreeEnergy/gufe/pull/304#issuecomment-2047805880) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +2. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +3. 🗣 Commented on [#3903](https://github.com/privacyidea/privacyidea/pull/3903#issuecomment-2047187624) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +4. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +5. 🗣 Commented on [#1782](https://github.com/zarr-developers/zarr-python/pull/1782#issuecomment-2046513406) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +6. 🗣 Commented on [#1686](https://github.com/HEXRD/hexrdgui/pull/1686#issuecomment-2046073784) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +7. 🗣 Commented on [#628](https://github.com/HEXRD/hexrd/pull/628#issuecomment-2046067934) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +8. 🗣 Commented on [#231](https://github.com/scil-vital/dwi_ml/pull/231#issuecomment-2046021764) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +9. 🗣 Commented on [#964](https://github.com/scilus/scilpy/pull/964#issuecomment-2045426989) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#2986](https://github.com/astropy/astroquery/pull/2986#issuecomment-2045193021) in [astropy/astroquery](https://github.com/astropy/astroquery) From 7522d23b10e2c7a2b45c09ebe1305c4201cfe0de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Apr 2024 17:37:10 +0000 Subject: [PATCH 1855/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index af9b139b..e7ce6c1e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#304](https://github.com/OpenFreeEnergy/gufe/pull/304#issuecomment-2047805880) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -2. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -3. 🗣 Commented on [#3903](https://github.com/privacyidea/privacyidea/pull/3903#issuecomment-2047187624) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -4. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -5. 🗣 Commented on [#1782](https://github.com/zarr-developers/zarr-python/pull/1782#issuecomment-2046513406) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -6. 🗣 Commented on [#1686](https://github.com/HEXRD/hexrdgui/pull/1686#issuecomment-2046073784) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -7. 🗣 Commented on [#628](https://github.com/HEXRD/hexrd/pull/628#issuecomment-2046067934) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -8. 🗣 Commented on [#231](https://github.com/scil-vital/dwi_ml/pull/231#issuecomment-2046021764) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -9. 🗣 Commented on [#964](https://github.com/scilus/scilpy/pull/964#issuecomment-2045426989) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#2986](https://github.com/astropy/astroquery/pull/2986#issuecomment-2045193021) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#9191](https://github.com/statsmodels/statsmodels/pull/9191#issuecomment-2048069393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +2. 🗣 Commented on [#1083](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1083#issuecomment-2048039209) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#304](https://github.com/OpenFreeEnergy/gufe/pull/304#issuecomment-2047805880) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +5. 🗣 Commented on [#3903](https://github.com/privacyidea/privacyidea/pull/3903#issuecomment-2047187624) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +7. 🗣 Commented on [#1782](https://github.com/zarr-developers/zarr-python/pull/1782#issuecomment-2046513406) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +8. 🗣 Commented on [#1686](https://github.com/HEXRD/hexrdgui/pull/1686#issuecomment-2046073784) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +9. 🗣 Commented on [#628](https://github.com/HEXRD/hexrd/pull/628#issuecomment-2046067934) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +10. 🗣 Commented on [#231](https://github.com/scil-vital/dwi_ml/pull/231#issuecomment-2046021764) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) From 91e90a9ddb405041f6c865188c7b5f0e08f32868 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Apr 2024 18:22:14 +0000 Subject: [PATCH 1856/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e7ce6c1e..c54a9b5a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#9191](https://github.com/statsmodels/statsmodels/pull/9191#issuecomment-2048069393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -2. 🗣 Commented on [#1083](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1083#issuecomment-2048039209) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#304](https://github.com/OpenFreeEnergy/gufe/pull/304#issuecomment-2047805880) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -5. 🗣 Commented on [#3903](https://github.com/privacyidea/privacyidea/pull/3903#issuecomment-2047187624) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -7. 🗣 Commented on [#1782](https://github.com/zarr-developers/zarr-python/pull/1782#issuecomment-2046513406) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -8. 🗣 Commented on [#1686](https://github.com/HEXRD/hexrdgui/pull/1686#issuecomment-2046073784) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -9. 🗣 Commented on [#628](https://github.com/HEXRD/hexrd/pull/628#issuecomment-2046067934) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -10. 🗣 Commented on [#231](https://github.com/scil-vital/dwi_ml/pull/231#issuecomment-2046021764) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +1. 🗣 Commented on [#1124](https://github.com/yeatmanlab/pyAFQ/pull/1124#issuecomment-2048122686) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +2. 🗣 Commented on [#9191](https://github.com/statsmodels/statsmodels/pull/9191#issuecomment-2048069393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#1083](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1083#issuecomment-2048039209) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#304](https://github.com/OpenFreeEnergy/gufe/pull/304#issuecomment-2047805880) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +6. 🗣 Commented on [#3903](https://github.com/privacyidea/privacyidea/pull/3903#issuecomment-2047187624) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +7. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +8. 🗣 Commented on [#1782](https://github.com/zarr-developers/zarr-python/pull/1782#issuecomment-2046513406) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +9. 🗣 Commented on [#1686](https://github.com/HEXRD/hexrdgui/pull/1686#issuecomment-2046073784) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +10. 🗣 Commented on [#628](https://github.com/HEXRD/hexrd/pull/628#issuecomment-2046067934) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) From c60ab9c151e3ca4b143bc832dedf10cc271be6c0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Apr 2024 15:37:24 +0000 Subject: [PATCH 1857/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c54a9b5a..ce70fd37 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1124](https://github.com/yeatmanlab/pyAFQ/pull/1124#issuecomment-2048122686) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -2. 🗣 Commented on [#9191](https://github.com/statsmodels/statsmodels/pull/9191#issuecomment-2048069393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#1083](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1083#issuecomment-2048039209) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#304](https://github.com/OpenFreeEnergy/gufe/pull/304#issuecomment-2047805880) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -6. 🗣 Commented on [#3903](https://github.com/privacyidea/privacyidea/pull/3903#issuecomment-2047187624) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -7. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -8. 🗣 Commented on [#1782](https://github.com/zarr-developers/zarr-python/pull/1782#issuecomment-2046513406) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -9. 🗣 Commented on [#1686](https://github.com/HEXRD/hexrdgui/pull/1686#issuecomment-2046073784) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -10. 🗣 Commented on [#628](https://github.com/HEXRD/hexrd/pull/628#issuecomment-2046067934) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +1. 🗣 Commented on [#3156](https://github.com/reframe-hpc/reframe/pull/3156#issuecomment-2049917685) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +2. 🗣 Commented on [#1124](https://github.com/yeatmanlab/pyAFQ/pull/1124#issuecomment-2048122686) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +3. 🗣 Commented on [#9191](https://github.com/statsmodels/statsmodels/pull/9191#issuecomment-2048069393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +4. 🗣 Commented on [#1083](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1083#issuecomment-2048039209) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#304](https://github.com/OpenFreeEnergy/gufe/pull/304#issuecomment-2047805880) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +7. 🗣 Commented on [#3903](https://github.com/privacyidea/privacyidea/pull/3903#issuecomment-2047187624) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +9. 🗣 Commented on [#1782](https://github.com/zarr-developers/zarr-python/pull/1782#issuecomment-2046513406) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +10. 🗣 Commented on [#1686](https://github.com/HEXRD/hexrdgui/pull/1686#issuecomment-2046073784) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) From 6bc55d906afa02c2691207f6fa6279f5324e47c5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Apr 2024 19:37:10 +0000 Subject: [PATCH 1858/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ce70fd37..cd6db7a2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3156](https://github.com/reframe-hpc/reframe/pull/3156#issuecomment-2049917685) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -2. 🗣 Commented on [#1124](https://github.com/yeatmanlab/pyAFQ/pull/1124#issuecomment-2048122686) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -3. 🗣 Commented on [#9191](https://github.com/statsmodels/statsmodels/pull/9191#issuecomment-2048069393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -4. 🗣 Commented on [#1083](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1083#issuecomment-2048039209) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#304](https://github.com/OpenFreeEnergy/gufe/pull/304#issuecomment-2047805880) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -7. 🗣 Commented on [#3903](https://github.com/privacyidea/privacyidea/pull/3903#issuecomment-2047187624) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -9. 🗣 Commented on [#1782](https://github.com/zarr-developers/zarr-python/pull/1782#issuecomment-2046513406) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -10. 🗣 Commented on [#1686](https://github.com/HEXRD/hexrdgui/pull/1686#issuecomment-2046073784) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +1. 🗣 Commented on [#1785](https://github.com/zarr-developers/zarr-python/pull/1785#issuecomment-2050355058) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +2. 🗣 Commented on [#3156](https://github.com/reframe-hpc/reframe/pull/3156#issuecomment-2049917685) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +3. 🗣 Commented on [#1124](https://github.com/yeatmanlab/pyAFQ/pull/1124#issuecomment-2048122686) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +4. 🗣 Commented on [#9191](https://github.com/statsmodels/statsmodels/pull/9191#issuecomment-2048069393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#1083](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1083#issuecomment-2048039209) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#304](https://github.com/OpenFreeEnergy/gufe/pull/304#issuecomment-2047805880) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +8. 🗣 Commented on [#3903](https://github.com/privacyidea/privacyidea/pull/3903#issuecomment-2047187624) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +10. 🗣 Commented on [#1782](https://github.com/zarr-developers/zarr-python/pull/1782#issuecomment-2046513406) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) From 6d867b0ec3b55affa73a971597252ffe067f6f0d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Apr 2024 20:17:05 +0000 Subject: [PATCH 1859/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cd6db7a2..8a7f2e9b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1785](https://github.com/zarr-developers/zarr-python/pull/1785#issuecomment-2050355058) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -2. 🗣 Commented on [#3156](https://github.com/reframe-hpc/reframe/pull/3156#issuecomment-2049917685) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -3. 🗣 Commented on [#1124](https://github.com/yeatmanlab/pyAFQ/pull/1124#issuecomment-2048122686) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -4. 🗣 Commented on [#9191](https://github.com/statsmodels/statsmodels/pull/9191#issuecomment-2048069393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -5. 🗣 Commented on [#1083](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1083#issuecomment-2048039209) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#304](https://github.com/OpenFreeEnergy/gufe/pull/304#issuecomment-2047805880) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -8. 🗣 Commented on [#3903](https://github.com/privacyidea/privacyidea/pull/3903#issuecomment-2047187624) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) -10. 🗣 Commented on [#1782](https://github.com/zarr-developers/zarr-python/pull/1782#issuecomment-2046513406) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +1. 🗣 Commented on [#1790](https://github.com/zarr-developers/zarr-python/pull/1790#issuecomment-2050398422) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +2. 🗣 Commented on [#1785](https://github.com/zarr-developers/zarr-python/pull/1785#issuecomment-2050355058) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +3. 🗣 Commented on [#3156](https://github.com/reframe-hpc/reframe/pull/3156#issuecomment-2049917685) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +4. 🗣 Commented on [#1124](https://github.com/yeatmanlab/pyAFQ/pull/1124#issuecomment-2048122686) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +5. 🗣 Commented on [#9191](https://github.com/statsmodels/statsmodels/pull/9191#issuecomment-2048069393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +6. 🗣 Commented on [#1083](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1083#issuecomment-2048039209) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#304](https://github.com/OpenFreeEnergy/gufe/pull/304#issuecomment-2047805880) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +8. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +9. 🗣 Commented on [#3903](https://github.com/privacyidea/privacyidea/pull/3903#issuecomment-2047187624) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) From d574dfaffc7309f1f516216a554862abf47b650d Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Fri, 12 Apr 2024 03:12:00 +0530 Subject: [PATCH 1860/2173] chore: Change actions to run once a day. Change the github actions that update the README.md to lastest activity to run once a day. --- .github/workflows/recent-activity.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/recent-activity.yml b/.github/workflows/recent-activity.yml index 8b479668..71aa3405 100644 --- a/.github/workflows/recent-activity.yml +++ b/.github/workflows/recent-activity.yml @@ -1,7 +1,7 @@ name: Update Recent Activity on: schedule: - - cron: "*/30 * * * *" + - cron: "0 0 * * *" workflow_dispatch: jobs: From 040ad5171f7429615561f8fc34b798b6620f9473 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 12 Apr 2024 00:02:19 +0000 Subject: [PATCH 1861/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8a7f2e9b..36b859e9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1790](https://github.com/zarr-developers/zarr-python/pull/1790#issuecomment-2050398422) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -2. 🗣 Commented on [#1785](https://github.com/zarr-developers/zarr-python/pull/1785#issuecomment-2050355058) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -3. 🗣 Commented on [#3156](https://github.com/reframe-hpc/reframe/pull/3156#issuecomment-2049917685) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -4. 🗣 Commented on [#1124](https://github.com/yeatmanlab/pyAFQ/pull/1124#issuecomment-2048122686) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -5. 🗣 Commented on [#9191](https://github.com/statsmodels/statsmodels/pull/9191#issuecomment-2048069393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -6. 🗣 Commented on [#1083](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1083#issuecomment-2048039209) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#304](https://github.com/OpenFreeEnergy/gufe/pull/304#issuecomment-2047805880) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -9. 🗣 Commented on [#3903](https://github.com/privacyidea/privacyidea/pull/3903#issuecomment-2047187624) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +1. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-2050705564) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +2. 🗣 Commented on [#395](https://github.com/poldracklab/fitlins/pull/395#issuecomment-2050650570) in [poldracklab/fitlins](https://github.com/poldracklab/fitlins) +3. 🗣 Commented on [#1790](https://github.com/zarr-developers/zarr-python/pull/1790#issuecomment-2050398422) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +4. 🗣 Commented on [#1785](https://github.com/zarr-developers/zarr-python/pull/1785#issuecomment-2050355058) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +5. 🗣 Commented on [#3156](https://github.com/reframe-hpc/reframe/pull/3156#issuecomment-2049917685) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +6. 🗣 Commented on [#1124](https://github.com/yeatmanlab/pyAFQ/pull/1124#issuecomment-2048122686) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +7. 🗣 Commented on [#9191](https://github.com/statsmodels/statsmodels/pull/9191#issuecomment-2048069393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +8. 🗣 Commented on [#1083](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1083#issuecomment-2048039209) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#304](https://github.com/OpenFreeEnergy/gufe/pull/304#issuecomment-2047805880) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) From cb90503883b4600fdb0259ccbaa41c9798e23dc8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 12 Apr 2024 00:37:59 +0000 Subject: [PATCH 1862/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8a7f2e9b..36b859e9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1790](https://github.com/zarr-developers/zarr-python/pull/1790#issuecomment-2050398422) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -2. 🗣 Commented on [#1785](https://github.com/zarr-developers/zarr-python/pull/1785#issuecomment-2050355058) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -3. 🗣 Commented on [#3156](https://github.com/reframe-hpc/reframe/pull/3156#issuecomment-2049917685) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -4. 🗣 Commented on [#1124](https://github.com/yeatmanlab/pyAFQ/pull/1124#issuecomment-2048122686) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -5. 🗣 Commented on [#9191](https://github.com/statsmodels/statsmodels/pull/9191#issuecomment-2048069393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -6. 🗣 Commented on [#1083](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1083#issuecomment-2048039209) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#304](https://github.com/OpenFreeEnergy/gufe/pull/304#issuecomment-2047805880) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -8. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) -9. 🗣 Commented on [#3903](https://github.com/privacyidea/privacyidea/pull/3903#issuecomment-2047187624) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_sex_check/pull/5#issuecomment-2047057072) in [eastgenomics/eggd_sex_check](https://github.com/eastgenomics/eggd_sex_check) +1. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-2050705564) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +2. 🗣 Commented on [#395](https://github.com/poldracklab/fitlins/pull/395#issuecomment-2050650570) in [poldracklab/fitlins](https://github.com/poldracklab/fitlins) +3. 🗣 Commented on [#1790](https://github.com/zarr-developers/zarr-python/pull/1790#issuecomment-2050398422) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +4. 🗣 Commented on [#1785](https://github.com/zarr-developers/zarr-python/pull/1785#issuecomment-2050355058) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +5. 🗣 Commented on [#3156](https://github.com/reframe-hpc/reframe/pull/3156#issuecomment-2049917685) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +6. 🗣 Commented on [#1124](https://github.com/yeatmanlab/pyAFQ/pull/1124#issuecomment-2048122686) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +7. 🗣 Commented on [#9191](https://github.com/statsmodels/statsmodels/pull/9191#issuecomment-2048069393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +8. 🗣 Commented on [#1083](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1083#issuecomment-2048039209) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#304](https://github.com/OpenFreeEnergy/gufe/pull/304#issuecomment-2047805880) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +10. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) From 67962822280024bdc28d2ef2534e0b460052be45 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Apr 2024 00:01:38 +0000 Subject: [PATCH 1863/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 36b859e9..d9c5191f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-2050705564) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -2. 🗣 Commented on [#395](https://github.com/poldracklab/fitlins/pull/395#issuecomment-2050650570) in [poldracklab/fitlins](https://github.com/poldracklab/fitlins) -3. 🗣 Commented on [#1790](https://github.com/zarr-developers/zarr-python/pull/1790#issuecomment-2050398422) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -4. 🗣 Commented on [#1785](https://github.com/zarr-developers/zarr-python/pull/1785#issuecomment-2050355058) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -5. 🗣 Commented on [#3156](https://github.com/reframe-hpc/reframe/pull/3156#issuecomment-2049917685) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -6. 🗣 Commented on [#1124](https://github.com/yeatmanlab/pyAFQ/pull/1124#issuecomment-2048122686) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -7. 🗣 Commented on [#9191](https://github.com/statsmodels/statsmodels/pull/9191#issuecomment-2048069393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -8. 🗣 Commented on [#1083](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1083#issuecomment-2048039209) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#304](https://github.com/OpenFreeEnergy/gufe/pull/304#issuecomment-2047805880) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +1. 🗣 Commented on [#148](https://github.com/DeMarcoLab/autolamella/pull/148#issuecomment-2052654732) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +2. 🗣 Commented on [#4565](https://github.com/MDAnalysis/mdanalysis/pull/4565#issuecomment-2052228126) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#1084](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1084#issuecomment-2052094611) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#497](https://github.com/HEPCloud/decisionengine_modules/pull/497#issuecomment-2052067187) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +5. 🗣 Commented on [#2834](https://github.com/metabrainz/listenbrainz-server/pull/2834#issuecomment-2052040367) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#147](https://github.com/DeMarcoLab/autolamella/pull/147#issuecomment-2051218661) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +7. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-2050705564) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +8. 🗣 Commented on [#395](https://github.com/poldracklab/fitlins/pull/395#issuecomment-2050650570) in [poldracklab/fitlins](https://github.com/poldracklab/fitlins) +9. 🗣 Commented on [#1790](https://github.com/zarr-developers/zarr-python/pull/1790#issuecomment-2050398422) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +10. 🗣 Commented on [#1785](https://github.com/zarr-developers/zarr-python/pull/1785#issuecomment-2050355058) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) From 530ffe671aec22a765cd6ca3feaf4cfadfeef0d6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Apr 2024 00:32:05 +0000 Subject: [PATCH 1864/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 36b859e9..d9c5191f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-2050705564) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -2. 🗣 Commented on [#395](https://github.com/poldracklab/fitlins/pull/395#issuecomment-2050650570) in [poldracklab/fitlins](https://github.com/poldracklab/fitlins) -3. 🗣 Commented on [#1790](https://github.com/zarr-developers/zarr-python/pull/1790#issuecomment-2050398422) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -4. 🗣 Commented on [#1785](https://github.com/zarr-developers/zarr-python/pull/1785#issuecomment-2050355058) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -5. 🗣 Commented on [#3156](https://github.com/reframe-hpc/reframe/pull/3156#issuecomment-2049917685) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -6. 🗣 Commented on [#1124](https://github.com/yeatmanlab/pyAFQ/pull/1124#issuecomment-2048122686) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -7. 🗣 Commented on [#9191](https://github.com/statsmodels/statsmodels/pull/9191#issuecomment-2048069393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -8. 🗣 Commented on [#1083](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1083#issuecomment-2048039209) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#304](https://github.com/OpenFreeEnergy/gufe/pull/304#issuecomment-2047805880) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -10. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_add_MANE_annotation/pull/5#issuecomment-2047484088) in [eastgenomics/eggd_add_MANE_annotation](https://github.com/eastgenomics/eggd_add_MANE_annotation) +1. 🗣 Commented on [#148](https://github.com/DeMarcoLab/autolamella/pull/148#issuecomment-2052654732) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +2. 🗣 Commented on [#4565](https://github.com/MDAnalysis/mdanalysis/pull/4565#issuecomment-2052228126) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#1084](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1084#issuecomment-2052094611) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#497](https://github.com/HEPCloud/decisionengine_modules/pull/497#issuecomment-2052067187) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +5. 🗣 Commented on [#2834](https://github.com/metabrainz/listenbrainz-server/pull/2834#issuecomment-2052040367) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#147](https://github.com/DeMarcoLab/autolamella/pull/147#issuecomment-2051218661) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +7. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-2050705564) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +8. 🗣 Commented on [#395](https://github.com/poldracklab/fitlins/pull/395#issuecomment-2050650570) in [poldracklab/fitlins](https://github.com/poldracklab/fitlins) +9. 🗣 Commented on [#1790](https://github.com/zarr-developers/zarr-python/pull/1790#issuecomment-2050398422) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +10. 🗣 Commented on [#1785](https://github.com/zarr-developers/zarr-python/pull/1785#issuecomment-2050355058) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) From 5089cfaede0cb57d0ca886cbaeee63cc555ede86 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 14 Apr 2024 00:04:04 +0000 Subject: [PATCH 1865/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d9c5191f..3183e30f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#148](https://github.com/DeMarcoLab/autolamella/pull/148#issuecomment-2052654732) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -2. 🗣 Commented on [#4565](https://github.com/MDAnalysis/mdanalysis/pull/4565#issuecomment-2052228126) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#1084](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1084#issuecomment-2052094611) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#497](https://github.com/HEPCloud/decisionengine_modules/pull/497#issuecomment-2052067187) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -5. 🗣 Commented on [#2834](https://github.com/metabrainz/listenbrainz-server/pull/2834#issuecomment-2052040367) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#147](https://github.com/DeMarcoLab/autolamella/pull/147#issuecomment-2051218661) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -7. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-2050705564) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -8. 🗣 Commented on [#395](https://github.com/poldracklab/fitlins/pull/395#issuecomment-2050650570) in [poldracklab/fitlins](https://github.com/poldracklab/fitlins) -9. 🗣 Commented on [#1790](https://github.com/zarr-developers/zarr-python/pull/1790#issuecomment-2050398422) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -10. 🗣 Commented on [#1785](https://github.com/zarr-developers/zarr-python/pull/1785#issuecomment-2050355058) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +1. 🗣 Commented on [#5](https://github.com/Code-Institute-Solutions/WalkthroughProject01/pull/5#issuecomment-2053766249) in [Code-Institute-Solutions/WalkthroughProject01](https://github.com/Code-Institute-Solutions/WalkthroughProject01) +2. 🗣 Commented on [#9](https://github.com/sarnold/pyre2/pull/9#issuecomment-2053754241) in [sarnold/pyre2](https://github.com/sarnold/pyre2) +3. 🗣 Commented on [#3](https://github.com/cdfxscrq/MyTelegramOrgRoBot/pull/3#issuecomment-2053714065) in [cdfxscrq/MyTelegramOrgRoBot](https://github.com/cdfxscrq/MyTelegramOrgRoBot) +4. 🗣 Commented on [#631](https://github.com/HEXRD/hexrd/pull/631#issuecomment-2053606917) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#209](https://github.com/njzjz/deepmd-kit/pull/209#issuecomment-2052922893) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) +6. 🗣 Commented on [#148](https://github.com/DeMarcoLab/autolamella/pull/148#issuecomment-2052654732) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +7. 🗣 Commented on [#4565](https://github.com/MDAnalysis/mdanalysis/pull/4565#issuecomment-2052228126) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#1084](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1084#issuecomment-2052094611) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#497](https://github.com/HEPCloud/decisionengine_modules/pull/497#issuecomment-2052067187) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +10. 🗣 Commented on [#2834](https://github.com/metabrainz/listenbrainz-server/pull/2834#issuecomment-2052040367) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From ff52ed3cd6e267cd18b44a39e2243e9d57902166 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 14 Apr 2024 00:33:36 +0000 Subject: [PATCH 1866/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d9c5191f..3183e30f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#148](https://github.com/DeMarcoLab/autolamella/pull/148#issuecomment-2052654732) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -2. 🗣 Commented on [#4565](https://github.com/MDAnalysis/mdanalysis/pull/4565#issuecomment-2052228126) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#1084](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1084#issuecomment-2052094611) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#497](https://github.com/HEPCloud/decisionengine_modules/pull/497#issuecomment-2052067187) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -5. 🗣 Commented on [#2834](https://github.com/metabrainz/listenbrainz-server/pull/2834#issuecomment-2052040367) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#147](https://github.com/DeMarcoLab/autolamella/pull/147#issuecomment-2051218661) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -7. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-2050705564) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -8. 🗣 Commented on [#395](https://github.com/poldracklab/fitlins/pull/395#issuecomment-2050650570) in [poldracklab/fitlins](https://github.com/poldracklab/fitlins) -9. 🗣 Commented on [#1790](https://github.com/zarr-developers/zarr-python/pull/1790#issuecomment-2050398422) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -10. 🗣 Commented on [#1785](https://github.com/zarr-developers/zarr-python/pull/1785#issuecomment-2050355058) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +1. 🗣 Commented on [#5](https://github.com/Code-Institute-Solutions/WalkthroughProject01/pull/5#issuecomment-2053766249) in [Code-Institute-Solutions/WalkthroughProject01](https://github.com/Code-Institute-Solutions/WalkthroughProject01) +2. 🗣 Commented on [#9](https://github.com/sarnold/pyre2/pull/9#issuecomment-2053754241) in [sarnold/pyre2](https://github.com/sarnold/pyre2) +3. 🗣 Commented on [#3](https://github.com/cdfxscrq/MyTelegramOrgRoBot/pull/3#issuecomment-2053714065) in [cdfxscrq/MyTelegramOrgRoBot](https://github.com/cdfxscrq/MyTelegramOrgRoBot) +4. 🗣 Commented on [#631](https://github.com/HEXRD/hexrd/pull/631#issuecomment-2053606917) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#209](https://github.com/njzjz/deepmd-kit/pull/209#issuecomment-2052922893) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) +6. 🗣 Commented on [#148](https://github.com/DeMarcoLab/autolamella/pull/148#issuecomment-2052654732) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +7. 🗣 Commented on [#4565](https://github.com/MDAnalysis/mdanalysis/pull/4565#issuecomment-2052228126) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#1084](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1084#issuecomment-2052094611) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#497](https://github.com/HEPCloud/decisionengine_modules/pull/497#issuecomment-2052067187) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +10. 🗣 Commented on [#2834](https://github.com/metabrainz/listenbrainz-server/pull/2834#issuecomment-2052040367) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 2aacf91f1f3df7dde82b0a1f2175bded4a420838 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 15 Apr 2024 00:21:06 +0000 Subject: [PATCH 1867/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3183e30f..a4cabdc2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5](https://github.com/Code-Institute-Solutions/WalkthroughProject01/pull/5#issuecomment-2053766249) in [Code-Institute-Solutions/WalkthroughProject01](https://github.com/Code-Institute-Solutions/WalkthroughProject01) -2. 🗣 Commented on [#9](https://github.com/sarnold/pyre2/pull/9#issuecomment-2053754241) in [sarnold/pyre2](https://github.com/sarnold/pyre2) -3. 🗣 Commented on [#3](https://github.com/cdfxscrq/MyTelegramOrgRoBot/pull/3#issuecomment-2053714065) in [cdfxscrq/MyTelegramOrgRoBot](https://github.com/cdfxscrq/MyTelegramOrgRoBot) -4. 🗣 Commented on [#631](https://github.com/HEXRD/hexrd/pull/631#issuecomment-2053606917) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#209](https://github.com/njzjz/deepmd-kit/pull/209#issuecomment-2052922893) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) -6. 🗣 Commented on [#148](https://github.com/DeMarcoLab/autolamella/pull/148#issuecomment-2052654732) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -7. 🗣 Commented on [#4565](https://github.com/MDAnalysis/mdanalysis/pull/4565#issuecomment-2052228126) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#1084](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1084#issuecomment-2052094611) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#497](https://github.com/HEPCloud/decisionengine_modules/pull/497#issuecomment-2052067187) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -10. 🗣 Commented on [#2834](https://github.com/metabrainz/listenbrainz-server/pull/2834#issuecomment-2052040367) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#50](https://github.com/codingfriendsfun/pcc/pull/50#issuecomment-2053860585) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +2. 🗣 Commented on [#5](https://github.com/Code-Institute-Solutions/WalkthroughProject01/pull/5#issuecomment-2053766249) in [Code-Institute-Solutions/WalkthroughProject01](https://github.com/Code-Institute-Solutions/WalkthroughProject01) +3. 🗣 Commented on [#9](https://github.com/sarnold/pyre2/pull/9#issuecomment-2053754241) in [sarnold/pyre2](https://github.com/sarnold/pyre2) +4. 🗣 Commented on [#3](https://github.com/cdfxscrq/MyTelegramOrgRoBot/pull/3#issuecomment-2053714065) in [cdfxscrq/MyTelegramOrgRoBot](https://github.com/cdfxscrq/MyTelegramOrgRoBot) +5. 🗣 Commented on [#631](https://github.com/HEXRD/hexrd/pull/631#issuecomment-2053606917) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +6. 🗣 Commented on [#209](https://github.com/njzjz/deepmd-kit/pull/209#issuecomment-2052922893) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) +7. 🗣 Commented on [#148](https://github.com/DeMarcoLab/autolamella/pull/148#issuecomment-2052654732) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +8. 🗣 Commented on [#4565](https://github.com/MDAnalysis/mdanalysis/pull/4565#issuecomment-2052228126) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#1084](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1084#issuecomment-2052094611) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#497](https://github.com/HEPCloud/decisionengine_modules/pull/497#issuecomment-2052067187) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) From cdfa8d304479ee37b8e126e3b3e8537b6de4dd17 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 15 Apr 2024 03:06:24 +0000 Subject: [PATCH 1868/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3183e30f..a4cabdc2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5](https://github.com/Code-Institute-Solutions/WalkthroughProject01/pull/5#issuecomment-2053766249) in [Code-Institute-Solutions/WalkthroughProject01](https://github.com/Code-Institute-Solutions/WalkthroughProject01) -2. 🗣 Commented on [#9](https://github.com/sarnold/pyre2/pull/9#issuecomment-2053754241) in [sarnold/pyre2](https://github.com/sarnold/pyre2) -3. 🗣 Commented on [#3](https://github.com/cdfxscrq/MyTelegramOrgRoBot/pull/3#issuecomment-2053714065) in [cdfxscrq/MyTelegramOrgRoBot](https://github.com/cdfxscrq/MyTelegramOrgRoBot) -4. 🗣 Commented on [#631](https://github.com/HEXRD/hexrd/pull/631#issuecomment-2053606917) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#209](https://github.com/njzjz/deepmd-kit/pull/209#issuecomment-2052922893) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) -6. 🗣 Commented on [#148](https://github.com/DeMarcoLab/autolamella/pull/148#issuecomment-2052654732) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -7. 🗣 Commented on [#4565](https://github.com/MDAnalysis/mdanalysis/pull/4565#issuecomment-2052228126) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#1084](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1084#issuecomment-2052094611) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#497](https://github.com/HEPCloud/decisionengine_modules/pull/497#issuecomment-2052067187) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -10. 🗣 Commented on [#2834](https://github.com/metabrainz/listenbrainz-server/pull/2834#issuecomment-2052040367) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#50](https://github.com/codingfriendsfun/pcc/pull/50#issuecomment-2053860585) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +2. 🗣 Commented on [#5](https://github.com/Code-Institute-Solutions/WalkthroughProject01/pull/5#issuecomment-2053766249) in [Code-Institute-Solutions/WalkthroughProject01](https://github.com/Code-Institute-Solutions/WalkthroughProject01) +3. 🗣 Commented on [#9](https://github.com/sarnold/pyre2/pull/9#issuecomment-2053754241) in [sarnold/pyre2](https://github.com/sarnold/pyre2) +4. 🗣 Commented on [#3](https://github.com/cdfxscrq/MyTelegramOrgRoBot/pull/3#issuecomment-2053714065) in [cdfxscrq/MyTelegramOrgRoBot](https://github.com/cdfxscrq/MyTelegramOrgRoBot) +5. 🗣 Commented on [#631](https://github.com/HEXRD/hexrd/pull/631#issuecomment-2053606917) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +6. 🗣 Commented on [#209](https://github.com/njzjz/deepmd-kit/pull/209#issuecomment-2052922893) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) +7. 🗣 Commented on [#148](https://github.com/DeMarcoLab/autolamella/pull/148#issuecomment-2052654732) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +8. 🗣 Commented on [#4565](https://github.com/MDAnalysis/mdanalysis/pull/4565#issuecomment-2052228126) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#1084](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1084#issuecomment-2052094611) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#497](https://github.com/HEPCloud/decisionengine_modules/pull/497#issuecomment-2052067187) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) From 7e18a5edd4a718cf937d7f4b5bad9dfec43b0ea4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Apr 2024 00:01:56 +0000 Subject: [PATCH 1869/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a4cabdc2..41e2690d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#50](https://github.com/codingfriendsfun/pcc/pull/50#issuecomment-2053860585) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -2. 🗣 Commented on [#5](https://github.com/Code-Institute-Solutions/WalkthroughProject01/pull/5#issuecomment-2053766249) in [Code-Institute-Solutions/WalkthroughProject01](https://github.com/Code-Institute-Solutions/WalkthroughProject01) -3. 🗣 Commented on [#9](https://github.com/sarnold/pyre2/pull/9#issuecomment-2053754241) in [sarnold/pyre2](https://github.com/sarnold/pyre2) -4. 🗣 Commented on [#3](https://github.com/cdfxscrq/MyTelegramOrgRoBot/pull/3#issuecomment-2053714065) in [cdfxscrq/MyTelegramOrgRoBot](https://github.com/cdfxscrq/MyTelegramOrgRoBot) -5. 🗣 Commented on [#631](https://github.com/HEXRD/hexrd/pull/631#issuecomment-2053606917) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -6. 🗣 Commented on [#209](https://github.com/njzjz/deepmd-kit/pull/209#issuecomment-2052922893) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) -7. 🗣 Commented on [#148](https://github.com/DeMarcoLab/autolamella/pull/148#issuecomment-2052654732) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -8. 🗣 Commented on [#4565](https://github.com/MDAnalysis/mdanalysis/pull/4565#issuecomment-2052228126) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#1084](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1084#issuecomment-2052094611) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#497](https://github.com/HEPCloud/decisionengine_modules/pull/497#issuecomment-2052067187) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +1. 🗣 Commented on [#502](https://github.com/oemof/tespy/pull/502#issuecomment-2057924608) in [oemof/tespy](https://github.com/oemof/tespy) +2. 🗣 Commented on [#1541](https://github.com/spacetelescope/jwql/pull/1541#issuecomment-2057694211) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#114](https://github.com/TIGRLab/datman-dashboard/pull/114#issuecomment-2057473790) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) +4. 🗣 Commented on [#3158](https://github.com/reframe-hpc/reframe/pull/3158#issuecomment-2057383579) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +5. 🗣 Commented on [#1536](https://github.com/openSUSE/osc/pull/1536#issuecomment-2057047173) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#57](https://github.com/eastgenomics/Genetics_Ark/pull/57#issuecomment-2056898482) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +7. 🗣 Commented on [#1383](https://github.com/deepfakes/faceswap/pull/1383#issuecomment-2056546396) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) +8. 🗣 Commented on [#50](https://github.com/codingfriendsfun/pcc/pull/50#issuecomment-2053860585) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +9. 🗣 Commented on [#5](https://github.com/Code-Institute-Solutions/WalkthroughProject01/pull/5#issuecomment-2053766249) in [Code-Institute-Solutions/WalkthroughProject01](https://github.com/Code-Institute-Solutions/WalkthroughProject01) +10. 🗣 Commented on [#9](https://github.com/sarnold/pyre2/pull/9#issuecomment-2053754241) in [sarnold/pyre2](https://github.com/sarnold/pyre2) From c536e5841cf25a1d3726f251ba17639b9b772997 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Apr 2024 00:37:27 +0000 Subject: [PATCH 1870/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a4cabdc2..41e2690d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#50](https://github.com/codingfriendsfun/pcc/pull/50#issuecomment-2053860585) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -2. 🗣 Commented on [#5](https://github.com/Code-Institute-Solutions/WalkthroughProject01/pull/5#issuecomment-2053766249) in [Code-Institute-Solutions/WalkthroughProject01](https://github.com/Code-Institute-Solutions/WalkthroughProject01) -3. 🗣 Commented on [#9](https://github.com/sarnold/pyre2/pull/9#issuecomment-2053754241) in [sarnold/pyre2](https://github.com/sarnold/pyre2) -4. 🗣 Commented on [#3](https://github.com/cdfxscrq/MyTelegramOrgRoBot/pull/3#issuecomment-2053714065) in [cdfxscrq/MyTelegramOrgRoBot](https://github.com/cdfxscrq/MyTelegramOrgRoBot) -5. 🗣 Commented on [#631](https://github.com/HEXRD/hexrd/pull/631#issuecomment-2053606917) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -6. 🗣 Commented on [#209](https://github.com/njzjz/deepmd-kit/pull/209#issuecomment-2052922893) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) -7. 🗣 Commented on [#148](https://github.com/DeMarcoLab/autolamella/pull/148#issuecomment-2052654732) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -8. 🗣 Commented on [#4565](https://github.com/MDAnalysis/mdanalysis/pull/4565#issuecomment-2052228126) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#1084](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1084#issuecomment-2052094611) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#497](https://github.com/HEPCloud/decisionengine_modules/pull/497#issuecomment-2052067187) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +1. 🗣 Commented on [#502](https://github.com/oemof/tespy/pull/502#issuecomment-2057924608) in [oemof/tespy](https://github.com/oemof/tespy) +2. 🗣 Commented on [#1541](https://github.com/spacetelescope/jwql/pull/1541#issuecomment-2057694211) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#114](https://github.com/TIGRLab/datman-dashboard/pull/114#issuecomment-2057473790) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) +4. 🗣 Commented on [#3158](https://github.com/reframe-hpc/reframe/pull/3158#issuecomment-2057383579) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +5. 🗣 Commented on [#1536](https://github.com/openSUSE/osc/pull/1536#issuecomment-2057047173) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#57](https://github.com/eastgenomics/Genetics_Ark/pull/57#issuecomment-2056898482) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +7. 🗣 Commented on [#1383](https://github.com/deepfakes/faceswap/pull/1383#issuecomment-2056546396) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) +8. 🗣 Commented on [#50](https://github.com/codingfriendsfun/pcc/pull/50#issuecomment-2053860585) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) +9. 🗣 Commented on [#5](https://github.com/Code-Institute-Solutions/WalkthroughProject01/pull/5#issuecomment-2053766249) in [Code-Institute-Solutions/WalkthroughProject01](https://github.com/Code-Institute-Solutions/WalkthroughProject01) +10. 🗣 Commented on [#9](https://github.com/sarnold/pyre2/pull/9#issuecomment-2053754241) in [sarnold/pyre2](https://github.com/sarnold/pyre2) From 4c3e75be9159b6323d3fa053bf697694abf52cfa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Apr 2024 00:02:17 +0000 Subject: [PATCH 1871/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 41e2690d..ffa3f7a2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#502](https://github.com/oemof/tespy/pull/502#issuecomment-2057924608) in [oemof/tespy](https://github.com/oemof/tespy) -2. 🗣 Commented on [#1541](https://github.com/spacetelescope/jwql/pull/1541#issuecomment-2057694211) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#114](https://github.com/TIGRLab/datman-dashboard/pull/114#issuecomment-2057473790) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) -4. 🗣 Commented on [#3158](https://github.com/reframe-hpc/reframe/pull/3158#issuecomment-2057383579) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -5. 🗣 Commented on [#1536](https://github.com/openSUSE/osc/pull/1536#issuecomment-2057047173) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#57](https://github.com/eastgenomics/Genetics_Ark/pull/57#issuecomment-2056898482) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -7. 🗣 Commented on [#1383](https://github.com/deepfakes/faceswap/pull/1383#issuecomment-2056546396) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) -8. 🗣 Commented on [#50](https://github.com/codingfriendsfun/pcc/pull/50#issuecomment-2053860585) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -9. 🗣 Commented on [#5](https://github.com/Code-Institute-Solutions/WalkthroughProject01/pull/5#issuecomment-2053766249) in [Code-Institute-Solutions/WalkthroughProject01](https://github.com/Code-Institute-Solutions/WalkthroughProject01) -10. 🗣 Commented on [#9](https://github.com/sarnold/pyre2/pull/9#issuecomment-2053754241) in [sarnold/pyre2](https://github.com/sarnold/pyre2) +1. 🗣 Commented on [#34](https://github.com/jcmgray/cotengra/pull/34#issuecomment-2059980447) in [jcmgray/cotengra](https://github.com/jcmgray/cotengra) +2. 🗣 Commented on [#633](https://github.com/HEXRD/hexrd/pull/633#issuecomment-2059914275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#972](https://github.com/scilus/scilpy/pull/972#issuecomment-2059668915) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#763](https://github.com/minerllabs/minerl/pull/763#issuecomment-2059542091) in [minerllabs/minerl](https://github.com/minerllabs/minerl) +5. 🗣 Commented on [#504](https://github.com/oemof/tespy/pull/504#issuecomment-2059525068) in [oemof/tespy](https://github.com/oemof/tespy) +6. 🗣 Commented on [#8](https://github.com/alexfore/ARIA-tools/pull/8#issuecomment-2059501781) in [alexfore/ARIA-tools](https://github.com/alexfore/ARIA-tools) +7. 🗣 Commented on [#5571](https://github.com/rhinstaller/anaconda/pull/5571#issuecomment-2059478301) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#7](https://github.com/alexfore/ARIA-tools/pull/7#issuecomment-2059478059) in [alexfore/ARIA-tools](https://github.com/alexfore/ARIA-tools) +9. 🗣 Commented on [#60](https://github.com/eastgenomics/Genetics_Ark/pull/60#issuecomment-2059325957) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +10. 🗣 Commented on [#5570](https://github.com/rhinstaller/anaconda/pull/5570#issuecomment-2059275992) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 422a56928df7277f12455be281354a81d7b78100 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Apr 2024 00:38:21 +0000 Subject: [PATCH 1872/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 41e2690d..ffa3f7a2 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#502](https://github.com/oemof/tespy/pull/502#issuecomment-2057924608) in [oemof/tespy](https://github.com/oemof/tespy) -2. 🗣 Commented on [#1541](https://github.com/spacetelescope/jwql/pull/1541#issuecomment-2057694211) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#114](https://github.com/TIGRLab/datman-dashboard/pull/114#issuecomment-2057473790) in [TIGRLab/datman-dashboard](https://github.com/TIGRLab/datman-dashboard) -4. 🗣 Commented on [#3158](https://github.com/reframe-hpc/reframe/pull/3158#issuecomment-2057383579) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -5. 🗣 Commented on [#1536](https://github.com/openSUSE/osc/pull/1536#issuecomment-2057047173) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#57](https://github.com/eastgenomics/Genetics_Ark/pull/57#issuecomment-2056898482) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -7. 🗣 Commented on [#1383](https://github.com/deepfakes/faceswap/pull/1383#issuecomment-2056546396) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) -8. 🗣 Commented on [#50](https://github.com/codingfriendsfun/pcc/pull/50#issuecomment-2053860585) in [codingfriendsfun/pcc](https://github.com/codingfriendsfun/pcc) -9. 🗣 Commented on [#5](https://github.com/Code-Institute-Solutions/WalkthroughProject01/pull/5#issuecomment-2053766249) in [Code-Institute-Solutions/WalkthroughProject01](https://github.com/Code-Institute-Solutions/WalkthroughProject01) -10. 🗣 Commented on [#9](https://github.com/sarnold/pyre2/pull/9#issuecomment-2053754241) in [sarnold/pyre2](https://github.com/sarnold/pyre2) +1. 🗣 Commented on [#34](https://github.com/jcmgray/cotengra/pull/34#issuecomment-2059980447) in [jcmgray/cotengra](https://github.com/jcmgray/cotengra) +2. 🗣 Commented on [#633](https://github.com/HEXRD/hexrd/pull/633#issuecomment-2059914275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#972](https://github.com/scilus/scilpy/pull/972#issuecomment-2059668915) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#763](https://github.com/minerllabs/minerl/pull/763#issuecomment-2059542091) in [minerllabs/minerl](https://github.com/minerllabs/minerl) +5. 🗣 Commented on [#504](https://github.com/oemof/tespy/pull/504#issuecomment-2059525068) in [oemof/tespy](https://github.com/oemof/tespy) +6. 🗣 Commented on [#8](https://github.com/alexfore/ARIA-tools/pull/8#issuecomment-2059501781) in [alexfore/ARIA-tools](https://github.com/alexfore/ARIA-tools) +7. 🗣 Commented on [#5571](https://github.com/rhinstaller/anaconda/pull/5571#issuecomment-2059478301) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#7](https://github.com/alexfore/ARIA-tools/pull/7#issuecomment-2059478059) in [alexfore/ARIA-tools](https://github.com/alexfore/ARIA-tools) +9. 🗣 Commented on [#60](https://github.com/eastgenomics/Genetics_Ark/pull/60#issuecomment-2059325957) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +10. 🗣 Commented on [#5570](https://github.com/rhinstaller/anaconda/pull/5570#issuecomment-2059275992) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From cae94982026b84ef2324c928509452c47b9700c6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 Apr 2024 00:02:12 +0000 Subject: [PATCH 1873/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ffa3f7a2..9a07fb49 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#34](https://github.com/jcmgray/cotengra/pull/34#issuecomment-2059980447) in [jcmgray/cotengra](https://github.com/jcmgray/cotengra) -2. 🗣 Commented on [#633](https://github.com/HEXRD/hexrd/pull/633#issuecomment-2059914275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#972](https://github.com/scilus/scilpy/pull/972#issuecomment-2059668915) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#763](https://github.com/minerllabs/minerl/pull/763#issuecomment-2059542091) in [minerllabs/minerl](https://github.com/minerllabs/minerl) -5. 🗣 Commented on [#504](https://github.com/oemof/tespy/pull/504#issuecomment-2059525068) in [oemof/tespy](https://github.com/oemof/tespy) -6. 🗣 Commented on [#8](https://github.com/alexfore/ARIA-tools/pull/8#issuecomment-2059501781) in [alexfore/ARIA-tools](https://github.com/alexfore/ARIA-tools) -7. 🗣 Commented on [#5571](https://github.com/rhinstaller/anaconda/pull/5571#issuecomment-2059478301) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#7](https://github.com/alexfore/ARIA-tools/pull/7#issuecomment-2059478059) in [alexfore/ARIA-tools](https://github.com/alexfore/ARIA-tools) -9. 🗣 Commented on [#60](https://github.com/eastgenomics/Genetics_Ark/pull/60#issuecomment-2059325957) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -10. 🗣 Commented on [#5570](https://github.com/rhinstaller/anaconda/pull/5570#issuecomment-2059275992) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#22005](https://github.com/spyder-ide/spyder/pull/22005#issuecomment-2062510487) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#3194](https://github.com/dipy/dipy/pull/3194#issuecomment-2062351682) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#1129](https://github.com/yeatmanlab/pyAFQ/pull/1129#issuecomment-2062272758) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +4. 🗣 Commented on [#307](https://github.com/OpenFreeEnergy/gufe/pull/307#issuecomment-2062103152) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#306](https://github.com/OpenFreeEnergy/gufe/pull/306#issuecomment-2062085505) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#42](https://github.com/OpenFreeEnergy/kartograf/pull/42#issuecomment-2061971668) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +7. 🗣 Commented on [#492](https://github.com/VorTECHsa/python-sdk/pull/492#issuecomment-2061800620) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +8. 🗣 Commented on [#976](https://github.com/scilus/scilpy/pull/976#issuecomment-2061799234) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/192#issuecomment-2061652449) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +10. 🗣 Commented on [#64](https://github.com/eastgenomics/Genetics_Ark/pull/64#issuecomment-2061495561) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) From 2a150bf625a615d577623baaa60094907c406270 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 Apr 2024 00:37:31 +0000 Subject: [PATCH 1874/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ffa3f7a2..4ac0b0ca 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#34](https://github.com/jcmgray/cotengra/pull/34#issuecomment-2059980447) in [jcmgray/cotengra](https://github.com/jcmgray/cotengra) -2. 🗣 Commented on [#633](https://github.com/HEXRD/hexrd/pull/633#issuecomment-2059914275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#972](https://github.com/scilus/scilpy/pull/972#issuecomment-2059668915) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#763](https://github.com/minerllabs/minerl/pull/763#issuecomment-2059542091) in [minerllabs/minerl](https://github.com/minerllabs/minerl) -5. 🗣 Commented on [#504](https://github.com/oemof/tespy/pull/504#issuecomment-2059525068) in [oemof/tespy](https://github.com/oemof/tespy) -6. 🗣 Commented on [#8](https://github.com/alexfore/ARIA-tools/pull/8#issuecomment-2059501781) in [alexfore/ARIA-tools](https://github.com/alexfore/ARIA-tools) -7. 🗣 Commented on [#5571](https://github.com/rhinstaller/anaconda/pull/5571#issuecomment-2059478301) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#7](https://github.com/alexfore/ARIA-tools/pull/7#issuecomment-2059478059) in [alexfore/ARIA-tools](https://github.com/alexfore/ARIA-tools) -9. 🗣 Commented on [#60](https://github.com/eastgenomics/Genetics_Ark/pull/60#issuecomment-2059325957) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -10. 🗣 Commented on [#5570](https://github.com/rhinstaller/anaconda/pull/5570#issuecomment-2059275992) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#22006](https://github.com/spyder-ide/spyder/pull/22006#issuecomment-2062760737) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#22005](https://github.com/spyder-ide/spyder/pull/22005#issuecomment-2062510487) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#3194](https://github.com/dipy/dipy/pull/3194#issuecomment-2062351682) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#1129](https://github.com/yeatmanlab/pyAFQ/pull/1129#issuecomment-2062272758) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +5. 🗣 Commented on [#307](https://github.com/OpenFreeEnergy/gufe/pull/307#issuecomment-2062103152) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#306](https://github.com/OpenFreeEnergy/gufe/pull/306#issuecomment-2062085505) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#42](https://github.com/OpenFreeEnergy/kartograf/pull/42#issuecomment-2061971668) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +8. 🗣 Commented on [#492](https://github.com/VorTECHsa/python-sdk/pull/492#issuecomment-2061800620) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +9. 🗣 Commented on [#976](https://github.com/scilus/scilpy/pull/976#issuecomment-2061799234) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/192#issuecomment-2061652449) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) From ae2922847940c3f424bbc56d4bbf5127ab532dab Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Apr 2024 00:02:06 +0000 Subject: [PATCH 1875/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9a07fb49..bd186c9e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#22005](https://github.com/spyder-ide/spyder/pull/22005#issuecomment-2062510487) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#3194](https://github.com/dipy/dipy/pull/3194#issuecomment-2062351682) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#1129](https://github.com/yeatmanlab/pyAFQ/pull/1129#issuecomment-2062272758) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -4. 🗣 Commented on [#307](https://github.com/OpenFreeEnergy/gufe/pull/307#issuecomment-2062103152) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#306](https://github.com/OpenFreeEnergy/gufe/pull/306#issuecomment-2062085505) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#42](https://github.com/OpenFreeEnergy/kartograf/pull/42#issuecomment-2061971668) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -7. 🗣 Commented on [#492](https://github.com/VorTECHsa/python-sdk/pull/492#issuecomment-2061800620) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -8. 🗣 Commented on [#976](https://github.com/scilus/scilpy/pull/976#issuecomment-2061799234) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/192#issuecomment-2061652449) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -10. 🗣 Commented on [#64](https://github.com/eastgenomics/Genetics_Ark/pull/64#issuecomment-2061495561) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +1. 🗣 Commented on [#212](https://github.com/Fatal1ty/mashumaro/pull/212#issuecomment-2065070135) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +2. 🗣 Commented on [#1544](https://github.com/spacetelescope/jwql/pull/1544#issuecomment-2064994599) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#304](https://github.com/AdvancedPhotonSource/tike/pull/304#issuecomment-2064390452) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +4. 🗣 Commented on [#1684](https://github.com/OGGM/oggm/pull/1684#issuecomment-2064270238) in [OGGM/oggm](https://github.com/OGGM/oggm) +5. 🗣 Commented on [#72](https://github.com/eastgenomics/trendyQC/pull/72#issuecomment-2063884354) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +6. 🗣 Commented on [#65](https://github.com/eastgenomics/Genetics_Ark/pull/65#issuecomment-2063359408) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +7. 🗣 Commented on [#22006](https://github.com/spyder-ide/spyder/pull/22006#issuecomment-2062760737) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#22005](https://github.com/spyder-ide/spyder/pull/22005#issuecomment-2062510487) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#3194](https://github.com/dipy/dipy/pull/3194#issuecomment-2062351682) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#1129](https://github.com/yeatmanlab/pyAFQ/pull/1129#issuecomment-2062272758) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) From 76662d95e1d07155a77a9893d2a834f9b211fd53 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Apr 2024 00:38:00 +0000 Subject: [PATCH 1876/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4ac0b0ca..bd186c9e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#22006](https://github.com/spyder-ide/spyder/pull/22006#issuecomment-2062760737) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#22005](https://github.com/spyder-ide/spyder/pull/22005#issuecomment-2062510487) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#3194](https://github.com/dipy/dipy/pull/3194#issuecomment-2062351682) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#1129](https://github.com/yeatmanlab/pyAFQ/pull/1129#issuecomment-2062272758) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -5. 🗣 Commented on [#307](https://github.com/OpenFreeEnergy/gufe/pull/307#issuecomment-2062103152) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#306](https://github.com/OpenFreeEnergy/gufe/pull/306#issuecomment-2062085505) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#42](https://github.com/OpenFreeEnergy/kartograf/pull/42#issuecomment-2061971668) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -8. 🗣 Commented on [#492](https://github.com/VorTECHsa/python-sdk/pull/492#issuecomment-2061800620) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) -9. 🗣 Commented on [#976](https://github.com/scilus/scilpy/pull/976#issuecomment-2061799234) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#192](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/192#issuecomment-2061652449) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +1. 🗣 Commented on [#212](https://github.com/Fatal1ty/mashumaro/pull/212#issuecomment-2065070135) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +2. 🗣 Commented on [#1544](https://github.com/spacetelescope/jwql/pull/1544#issuecomment-2064994599) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#304](https://github.com/AdvancedPhotonSource/tike/pull/304#issuecomment-2064390452) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +4. 🗣 Commented on [#1684](https://github.com/OGGM/oggm/pull/1684#issuecomment-2064270238) in [OGGM/oggm](https://github.com/OGGM/oggm) +5. 🗣 Commented on [#72](https://github.com/eastgenomics/trendyQC/pull/72#issuecomment-2063884354) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +6. 🗣 Commented on [#65](https://github.com/eastgenomics/Genetics_Ark/pull/65#issuecomment-2063359408) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +7. 🗣 Commented on [#22006](https://github.com/spyder-ide/spyder/pull/22006#issuecomment-2062760737) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#22005](https://github.com/spyder-ide/spyder/pull/22005#issuecomment-2062510487) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#3194](https://github.com/dipy/dipy/pull/3194#issuecomment-2062351682) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#1129](https://github.com/yeatmanlab/pyAFQ/pull/1129#issuecomment-2062272758) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) From 326da3dc3a2a34dbff1cbb1081e59d58f555569c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Apr 2024 00:02:16 +0000 Subject: [PATCH 1877/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bd186c9e..6dde011b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#212](https://github.com/Fatal1ty/mashumaro/pull/212#issuecomment-2065070135) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -2. 🗣 Commented on [#1544](https://github.com/spacetelescope/jwql/pull/1544#issuecomment-2064994599) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#304](https://github.com/AdvancedPhotonSource/tike/pull/304#issuecomment-2064390452) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -4. 🗣 Commented on [#1684](https://github.com/OGGM/oggm/pull/1684#issuecomment-2064270238) in [OGGM/oggm](https://github.com/OGGM/oggm) -5. 🗣 Commented on [#72](https://github.com/eastgenomics/trendyQC/pull/72#issuecomment-2063884354) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -6. 🗣 Commented on [#65](https://github.com/eastgenomics/Genetics_Ark/pull/65#issuecomment-2063359408) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -7. 🗣 Commented on [#22006](https://github.com/spyder-ide/spyder/pull/22006#issuecomment-2062760737) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#22005](https://github.com/spyder-ide/spyder/pull/22005#issuecomment-2062510487) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#3194](https://github.com/dipy/dipy/pull/3194#issuecomment-2062351682) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#1129](https://github.com/yeatmanlab/pyAFQ/pull/1129#issuecomment-2062272758) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +1. 🗣 Commented on [#926](https://github.com/ToFuProject/tofu/pull/926#issuecomment-2067217046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#635](https://github.com/HEXRD/hexrd/pull/635#issuecomment-2066808038) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#633](https://github.com/NeuralEnsemble/elephant/pull/633#issuecomment-2066750478) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +4. 🗣 Commented on [#74](https://github.com/eastgenomics/trendyQC/pull/74#issuecomment-2066207044) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +5. 🗣 Commented on [#1542](https://github.com/openSUSE/osc/pull/1542#issuecomment-2066181143) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#115](https://github.com/eastgenomics/eggd_conductor/pull/115#issuecomment-2066149889) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +7. 🗣 Commented on [#634](https://github.com/HEXRD/hexrd/pull/634#issuecomment-2065691825) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +8. 🗣 Commented on [#212](https://github.com/Fatal1ty/mashumaro/pull/212#issuecomment-2065070135) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +9. 🗣 Commented on [#1544](https://github.com/spacetelescope/jwql/pull/1544#issuecomment-2064994599) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#304](https://github.com/AdvancedPhotonSource/tike/pull/304#issuecomment-2064390452) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) From 7a679d89c9cf75813286ff3c61c903ef9a9a5d7a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Apr 2024 00:38:06 +0000 Subject: [PATCH 1878/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bd186c9e..6dde011b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#212](https://github.com/Fatal1ty/mashumaro/pull/212#issuecomment-2065070135) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -2. 🗣 Commented on [#1544](https://github.com/spacetelescope/jwql/pull/1544#issuecomment-2064994599) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#304](https://github.com/AdvancedPhotonSource/tike/pull/304#issuecomment-2064390452) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -4. 🗣 Commented on [#1684](https://github.com/OGGM/oggm/pull/1684#issuecomment-2064270238) in [OGGM/oggm](https://github.com/OGGM/oggm) -5. 🗣 Commented on [#72](https://github.com/eastgenomics/trendyQC/pull/72#issuecomment-2063884354) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -6. 🗣 Commented on [#65](https://github.com/eastgenomics/Genetics_Ark/pull/65#issuecomment-2063359408) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -7. 🗣 Commented on [#22006](https://github.com/spyder-ide/spyder/pull/22006#issuecomment-2062760737) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#22005](https://github.com/spyder-ide/spyder/pull/22005#issuecomment-2062510487) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#3194](https://github.com/dipy/dipy/pull/3194#issuecomment-2062351682) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#1129](https://github.com/yeatmanlab/pyAFQ/pull/1129#issuecomment-2062272758) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +1. 🗣 Commented on [#926](https://github.com/ToFuProject/tofu/pull/926#issuecomment-2067217046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#635](https://github.com/HEXRD/hexrd/pull/635#issuecomment-2066808038) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#633](https://github.com/NeuralEnsemble/elephant/pull/633#issuecomment-2066750478) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +4. 🗣 Commented on [#74](https://github.com/eastgenomics/trendyQC/pull/74#issuecomment-2066207044) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +5. 🗣 Commented on [#1542](https://github.com/openSUSE/osc/pull/1542#issuecomment-2066181143) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#115](https://github.com/eastgenomics/eggd_conductor/pull/115#issuecomment-2066149889) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +7. 🗣 Commented on [#634](https://github.com/HEXRD/hexrd/pull/634#issuecomment-2065691825) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +8. 🗣 Commented on [#212](https://github.com/Fatal1ty/mashumaro/pull/212#issuecomment-2065070135) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +9. 🗣 Commented on [#1544](https://github.com/spacetelescope/jwql/pull/1544#issuecomment-2064994599) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#304](https://github.com/AdvancedPhotonSource/tike/pull/304#issuecomment-2064390452) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) From 4f857c1bc761e4ef86fdc43bb2e0c9fa1cb9b242 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 21 Apr 2024 00:02:16 +0000 Subject: [PATCH 1879/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6dde011b..4b05a3b3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#926](https://github.com/ToFuProject/tofu/pull/926#issuecomment-2067217046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#635](https://github.com/HEXRD/hexrd/pull/635#issuecomment-2066808038) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#633](https://github.com/NeuralEnsemble/elephant/pull/633#issuecomment-2066750478) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -4. 🗣 Commented on [#74](https://github.com/eastgenomics/trendyQC/pull/74#issuecomment-2066207044) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -5. 🗣 Commented on [#1542](https://github.com/openSUSE/osc/pull/1542#issuecomment-2066181143) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#115](https://github.com/eastgenomics/eggd_conductor/pull/115#issuecomment-2066149889) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -7. 🗣 Commented on [#634](https://github.com/HEXRD/hexrd/pull/634#issuecomment-2065691825) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -8. 🗣 Commented on [#212](https://github.com/Fatal1ty/mashumaro/pull/212#issuecomment-2065070135) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -9. 🗣 Commented on [#1544](https://github.com/spacetelescope/jwql/pull/1544#issuecomment-2064994599) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#304](https://github.com/AdvancedPhotonSource/tike/pull/304#issuecomment-2064390452) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +1. 🗣 Commented on [#3197](https://github.com/dipy/dipy/pull/3197#issuecomment-2067705261) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#59](https://github.com/autonomio/astetik/pull/59#issuecomment-2067690861) in [autonomio/astetik](https://github.com/autonomio/astetik) +3. 🗣 Commented on [#598](https://github.com/autonomio/talos/pull/598#issuecomment-2067687587) in [autonomio/talos](https://github.com/autonomio/talos) +4. 🗣 Commented on [#819](https://github.com/StingraySoftware/stingray/pull/819#issuecomment-2067626714) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +5. 🗣 Commented on [#3196](https://github.com/dipy/dipy/pull/3196#issuecomment-2067576657) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#926](https://github.com/ToFuProject/tofu/pull/926#issuecomment-2067217046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#635](https://github.com/HEXRD/hexrd/pull/635#issuecomment-2066808038) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +8. 🗣 Commented on [#633](https://github.com/NeuralEnsemble/elephant/pull/633#issuecomment-2066750478) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +9. 🗣 Commented on [#74](https://github.com/eastgenomics/trendyQC/pull/74#issuecomment-2066207044) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +10. 🗣 Commented on [#1542](https://github.com/openSUSE/osc/pull/1542#issuecomment-2066181143) in [openSUSE/osc](https://github.com/openSUSE/osc) From c66bcf122644943286d51c0e905658df6f7c65d3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 21 Apr 2024 00:41:14 +0000 Subject: [PATCH 1880/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6dde011b..4b05a3b3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#926](https://github.com/ToFuProject/tofu/pull/926#issuecomment-2067217046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#635](https://github.com/HEXRD/hexrd/pull/635#issuecomment-2066808038) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#633](https://github.com/NeuralEnsemble/elephant/pull/633#issuecomment-2066750478) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -4. 🗣 Commented on [#74](https://github.com/eastgenomics/trendyQC/pull/74#issuecomment-2066207044) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -5. 🗣 Commented on [#1542](https://github.com/openSUSE/osc/pull/1542#issuecomment-2066181143) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#115](https://github.com/eastgenomics/eggd_conductor/pull/115#issuecomment-2066149889) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -7. 🗣 Commented on [#634](https://github.com/HEXRD/hexrd/pull/634#issuecomment-2065691825) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -8. 🗣 Commented on [#212](https://github.com/Fatal1ty/mashumaro/pull/212#issuecomment-2065070135) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -9. 🗣 Commented on [#1544](https://github.com/spacetelescope/jwql/pull/1544#issuecomment-2064994599) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#304](https://github.com/AdvancedPhotonSource/tike/pull/304#issuecomment-2064390452) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +1. 🗣 Commented on [#3197](https://github.com/dipy/dipy/pull/3197#issuecomment-2067705261) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#59](https://github.com/autonomio/astetik/pull/59#issuecomment-2067690861) in [autonomio/astetik](https://github.com/autonomio/astetik) +3. 🗣 Commented on [#598](https://github.com/autonomio/talos/pull/598#issuecomment-2067687587) in [autonomio/talos](https://github.com/autonomio/talos) +4. 🗣 Commented on [#819](https://github.com/StingraySoftware/stingray/pull/819#issuecomment-2067626714) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +5. 🗣 Commented on [#3196](https://github.com/dipy/dipy/pull/3196#issuecomment-2067576657) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#926](https://github.com/ToFuProject/tofu/pull/926#issuecomment-2067217046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#635](https://github.com/HEXRD/hexrd/pull/635#issuecomment-2066808038) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +8. 🗣 Commented on [#633](https://github.com/NeuralEnsemble/elephant/pull/633#issuecomment-2066750478) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) +9. 🗣 Commented on [#74](https://github.com/eastgenomics/trendyQC/pull/74#issuecomment-2066207044) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +10. 🗣 Commented on [#1542](https://github.com/openSUSE/osc/pull/1542#issuecomment-2066181143) in [openSUSE/osc](https://github.com/openSUSE/osc) From bb8509bf9d10d0be77f63cb992d706d80d20b84c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Apr 2024 00:02:29 +0000 Subject: [PATCH 1881/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4b05a3b3..3732bc8b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3197](https://github.com/dipy/dipy/pull/3197#issuecomment-2067705261) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#59](https://github.com/autonomio/astetik/pull/59#issuecomment-2067690861) in [autonomio/astetik](https://github.com/autonomio/astetik) -3. 🗣 Commented on [#598](https://github.com/autonomio/talos/pull/598#issuecomment-2067687587) in [autonomio/talos](https://github.com/autonomio/talos) -4. 🗣 Commented on [#819](https://github.com/StingraySoftware/stingray/pull/819#issuecomment-2067626714) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -5. 🗣 Commented on [#3196](https://github.com/dipy/dipy/pull/3196#issuecomment-2067576657) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#926](https://github.com/ToFuProject/tofu/pull/926#issuecomment-2067217046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#635](https://github.com/HEXRD/hexrd/pull/635#issuecomment-2066808038) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -8. 🗣 Commented on [#633](https://github.com/NeuralEnsemble/elephant/pull/633#issuecomment-2066750478) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -9. 🗣 Commented on [#74](https://github.com/eastgenomics/trendyQC/pull/74#issuecomment-2066207044) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -10. 🗣 Commented on [#1542](https://github.com/openSUSE/osc/pull/1542#issuecomment-2066181143) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#398](https://github.com/aria-tools/ARIA-tools/pull/398#issuecomment-2070313074) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +2. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_generate_wgs_solid_cancer_workbook/pull/1#issuecomment-2069344028) in [eastgenomics/eggd_generate_wgs_solid_cancer_workbook](https://github.com/eastgenomics/eggd_generate_wgs_solid_cancer_workbook) +3. 🗣 Commented on [#79](https://github.com/eastgenomics/trendyQC/pull/79#issuecomment-2069211982) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +4. 🗣 Commented on [#77](https://github.com/eastgenomics/trendyQC/pull/77#issuecomment-2069173824) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +5. 🗣 Commented on [#1544](https://github.com/openSUSE/osc/pull/1544#issuecomment-2069163440) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#76](https://github.com/eastgenomics/trendyQC/pull/76#issuecomment-2069080530) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +7. 🗣 Commented on [#1804](https://github.com/zarr-developers/zarr-python/pull/1804#issuecomment-2069055066) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +8. 🗣 Commented on [#968](https://github.com/avaframe/AvaFrame/pull/968#issuecomment-2069000072) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#75](https://github.com/eastgenomics/trendyQC/pull/75#issuecomment-2068992261) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +10. 🗣 Commented on [#226](https://github.com/OpenSCAP/openscap-report/pull/226#issuecomment-2068852199) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) From 9c3e3354c957cb6c519027ed35bda1d3c09fa2f6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Apr 2024 00:38:17 +0000 Subject: [PATCH 1882/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4b05a3b3..3732bc8b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3197](https://github.com/dipy/dipy/pull/3197#issuecomment-2067705261) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#59](https://github.com/autonomio/astetik/pull/59#issuecomment-2067690861) in [autonomio/astetik](https://github.com/autonomio/astetik) -3. 🗣 Commented on [#598](https://github.com/autonomio/talos/pull/598#issuecomment-2067687587) in [autonomio/talos](https://github.com/autonomio/talos) -4. 🗣 Commented on [#819](https://github.com/StingraySoftware/stingray/pull/819#issuecomment-2067626714) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -5. 🗣 Commented on [#3196](https://github.com/dipy/dipy/pull/3196#issuecomment-2067576657) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#926](https://github.com/ToFuProject/tofu/pull/926#issuecomment-2067217046) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#635](https://github.com/HEXRD/hexrd/pull/635#issuecomment-2066808038) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -8. 🗣 Commented on [#633](https://github.com/NeuralEnsemble/elephant/pull/633#issuecomment-2066750478) in [NeuralEnsemble/elephant](https://github.com/NeuralEnsemble/elephant) -9. 🗣 Commented on [#74](https://github.com/eastgenomics/trendyQC/pull/74#issuecomment-2066207044) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -10. 🗣 Commented on [#1542](https://github.com/openSUSE/osc/pull/1542#issuecomment-2066181143) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#398](https://github.com/aria-tools/ARIA-tools/pull/398#issuecomment-2070313074) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +2. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_generate_wgs_solid_cancer_workbook/pull/1#issuecomment-2069344028) in [eastgenomics/eggd_generate_wgs_solid_cancer_workbook](https://github.com/eastgenomics/eggd_generate_wgs_solid_cancer_workbook) +3. 🗣 Commented on [#79](https://github.com/eastgenomics/trendyQC/pull/79#issuecomment-2069211982) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +4. 🗣 Commented on [#77](https://github.com/eastgenomics/trendyQC/pull/77#issuecomment-2069173824) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +5. 🗣 Commented on [#1544](https://github.com/openSUSE/osc/pull/1544#issuecomment-2069163440) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#76](https://github.com/eastgenomics/trendyQC/pull/76#issuecomment-2069080530) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +7. 🗣 Commented on [#1804](https://github.com/zarr-developers/zarr-python/pull/1804#issuecomment-2069055066) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +8. 🗣 Commented on [#968](https://github.com/avaframe/AvaFrame/pull/968#issuecomment-2069000072) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#75](https://github.com/eastgenomics/trendyQC/pull/75#issuecomment-2068992261) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +10. 🗣 Commented on [#226](https://github.com/OpenSCAP/openscap-report/pull/226#issuecomment-2068852199) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) From e9d0c2c917c4f252a9f82366612b9f49c82ca853 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Apr 2024 00:02:05 +0000 Subject: [PATCH 1883/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3732bc8b..0ede5edd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#398](https://github.com/aria-tools/ARIA-tools/pull/398#issuecomment-2070313074) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -2. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_generate_wgs_solid_cancer_workbook/pull/1#issuecomment-2069344028) in [eastgenomics/eggd_generate_wgs_solid_cancer_workbook](https://github.com/eastgenomics/eggd_generate_wgs_solid_cancer_workbook) -3. 🗣 Commented on [#79](https://github.com/eastgenomics/trendyQC/pull/79#issuecomment-2069211982) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -4. 🗣 Commented on [#77](https://github.com/eastgenomics/trendyQC/pull/77#issuecomment-2069173824) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -5. 🗣 Commented on [#1544](https://github.com/openSUSE/osc/pull/1544#issuecomment-2069163440) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#76](https://github.com/eastgenomics/trendyQC/pull/76#issuecomment-2069080530) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -7. 🗣 Commented on [#1804](https://github.com/zarr-developers/zarr-python/pull/1804#issuecomment-2069055066) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -8. 🗣 Commented on [#968](https://github.com/avaframe/AvaFrame/pull/968#issuecomment-2069000072) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#75](https://github.com/eastgenomics/trendyQC/pull/75#issuecomment-2068992261) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -10. 🗣 Commented on [#226](https://github.com/OpenSCAP/openscap-report/pull/226#issuecomment-2068852199) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +1. 🗣 Commented on [#42](https://github.com/NASA-Planetary-Science/AmesCAP/pull/42#issuecomment-2073427635) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +2. 🗣 Commented on [#985](https://github.com/scilus/scilpy/pull/985#issuecomment-2073279393) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#19](https://github.com/arfc/openmcyclus/pull/19#issuecomment-2072837495) in [arfc/openmcyclus](https://github.com/arfc/openmcyclus) +4. 🗣 Commented on [#9227](https://github.com/statsmodels/statsmodels/pull/9227#issuecomment-2072832686) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#984](https://github.com/scilus/scilpy/pull/984#issuecomment-2072731267) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#26](https://github.com/Moonlark-Dev/Moonlark/pull/26#issuecomment-2072720132) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +7. 🗣 Commented on [#561](https://github.com/aramis-lab/clinicadl/pull/561#issuecomment-2072333320) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +8. 🗣 Commented on [#3911](https://github.com/privacyidea/privacyidea/pull/3911#issuecomment-2072313319) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#2995](https://github.com/astropy/astroquery/pull/2995#issuecomment-2072115446) in [astropy/astroquery](https://github.com/astropy/astroquery) +10. 🗣 Commented on [#66](https://github.com/eastgenomics/Genetics_Ark/pull/66#issuecomment-2072063311) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) From 5eaa1161a4ec3971f57b90a4f4a380c08dfac8f2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Apr 2024 00:38:00 +0000 Subject: [PATCH 1884/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3732bc8b..0ede5edd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#398](https://github.com/aria-tools/ARIA-tools/pull/398#issuecomment-2070313074) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -2. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_generate_wgs_solid_cancer_workbook/pull/1#issuecomment-2069344028) in [eastgenomics/eggd_generate_wgs_solid_cancer_workbook](https://github.com/eastgenomics/eggd_generate_wgs_solid_cancer_workbook) -3. 🗣 Commented on [#79](https://github.com/eastgenomics/trendyQC/pull/79#issuecomment-2069211982) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -4. 🗣 Commented on [#77](https://github.com/eastgenomics/trendyQC/pull/77#issuecomment-2069173824) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -5. 🗣 Commented on [#1544](https://github.com/openSUSE/osc/pull/1544#issuecomment-2069163440) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#76](https://github.com/eastgenomics/trendyQC/pull/76#issuecomment-2069080530) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -7. 🗣 Commented on [#1804](https://github.com/zarr-developers/zarr-python/pull/1804#issuecomment-2069055066) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -8. 🗣 Commented on [#968](https://github.com/avaframe/AvaFrame/pull/968#issuecomment-2069000072) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#75](https://github.com/eastgenomics/trendyQC/pull/75#issuecomment-2068992261) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -10. 🗣 Commented on [#226](https://github.com/OpenSCAP/openscap-report/pull/226#issuecomment-2068852199) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +1. 🗣 Commented on [#42](https://github.com/NASA-Planetary-Science/AmesCAP/pull/42#issuecomment-2073427635) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +2. 🗣 Commented on [#985](https://github.com/scilus/scilpy/pull/985#issuecomment-2073279393) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#19](https://github.com/arfc/openmcyclus/pull/19#issuecomment-2072837495) in [arfc/openmcyclus](https://github.com/arfc/openmcyclus) +4. 🗣 Commented on [#9227](https://github.com/statsmodels/statsmodels/pull/9227#issuecomment-2072832686) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#984](https://github.com/scilus/scilpy/pull/984#issuecomment-2072731267) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#26](https://github.com/Moonlark-Dev/Moonlark/pull/26#issuecomment-2072720132) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +7. 🗣 Commented on [#561](https://github.com/aramis-lab/clinicadl/pull/561#issuecomment-2072333320) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +8. 🗣 Commented on [#3911](https://github.com/privacyidea/privacyidea/pull/3911#issuecomment-2072313319) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#2995](https://github.com/astropy/astroquery/pull/2995#issuecomment-2072115446) in [astropy/astroquery](https://github.com/astropy/astroquery) +10. 🗣 Commented on [#66](https://github.com/eastgenomics/Genetics_Ark/pull/66#issuecomment-2072063311) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) From f0163a1ea66f60f05358fcdf4b2f00a13a8788f4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Apr 2024 00:02:04 +0000 Subject: [PATCH 1885/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0ede5edd..8574ba94 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#42](https://github.com/NASA-Planetary-Science/AmesCAP/pull/42#issuecomment-2073427635) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -2. 🗣 Commented on [#985](https://github.com/scilus/scilpy/pull/985#issuecomment-2073279393) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#19](https://github.com/arfc/openmcyclus/pull/19#issuecomment-2072837495) in [arfc/openmcyclus](https://github.com/arfc/openmcyclus) -4. 🗣 Commented on [#9227](https://github.com/statsmodels/statsmodels/pull/9227#issuecomment-2072832686) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -5. 🗣 Commented on [#984](https://github.com/scilus/scilpy/pull/984#issuecomment-2072731267) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#26](https://github.com/Moonlark-Dev/Moonlark/pull/26#issuecomment-2072720132) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -7. 🗣 Commented on [#561](https://github.com/aramis-lab/clinicadl/pull/561#issuecomment-2072333320) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -8. 🗣 Commented on [#3911](https://github.com/privacyidea/privacyidea/pull/3911#issuecomment-2072313319) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#2995](https://github.com/astropy/astroquery/pull/2995#issuecomment-2072115446) in [astropy/astroquery](https://github.com/astropy/astroquery) -10. 🗣 Commented on [#66](https://github.com/eastgenomics/Genetics_Ark/pull/66#issuecomment-2072063311) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +1. 🗣 Commented on [#399](https://github.com/aria-tools/ARIA-tools/pull/399#issuecomment-2075999490) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +2. 🗣 Commented on [#2848](https://github.com/metabrainz/listenbrainz-server/pull/2848#issuecomment-2075176175) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#560](https://github.com/aramis-lab/clinicadl/pull/560#issuecomment-2075156211) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +4. 🗣 Commented on [#193](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/193#issuecomment-2075069354) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +5. 🗣 Commented on [#880](https://github.com/fury-gl/fury/pull/880#issuecomment-2074806312) in [fury-gl/fury](https://github.com/fury-gl/fury) +6. 🗣 Commented on [#491](https://github.com/Spoken-tutorial/spoken-website/pull/491#issuecomment-2074718051) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +7. 🗣 Commented on [#81](https://github.com/eastgenomics/trendyQC/pull/81#issuecomment-2074600145) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +8. 🗣 Commented on [#68](https://github.com/eastgenomics/Genetics_Ark/pull/68#issuecomment-2074464978) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +9. 🗣 Commented on [#42](https://github.com/NASA-Planetary-Science/AmesCAP/pull/42#issuecomment-2073427635) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +10. 🗣 Commented on [#985](https://github.com/scilus/scilpy/pull/985#issuecomment-2073279393) in [scilus/scilpy](https://github.com/scilus/scilpy) From 6cd66f9fcc25c4055b5ed2c9d105fbca871bc361 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Apr 2024 00:40:50 +0000 Subject: [PATCH 1886/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0ede5edd..8574ba94 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#42](https://github.com/NASA-Planetary-Science/AmesCAP/pull/42#issuecomment-2073427635) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -2. 🗣 Commented on [#985](https://github.com/scilus/scilpy/pull/985#issuecomment-2073279393) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#19](https://github.com/arfc/openmcyclus/pull/19#issuecomment-2072837495) in [arfc/openmcyclus](https://github.com/arfc/openmcyclus) -4. 🗣 Commented on [#9227](https://github.com/statsmodels/statsmodels/pull/9227#issuecomment-2072832686) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -5. 🗣 Commented on [#984](https://github.com/scilus/scilpy/pull/984#issuecomment-2072731267) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#26](https://github.com/Moonlark-Dev/Moonlark/pull/26#issuecomment-2072720132) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -7. 🗣 Commented on [#561](https://github.com/aramis-lab/clinicadl/pull/561#issuecomment-2072333320) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -8. 🗣 Commented on [#3911](https://github.com/privacyidea/privacyidea/pull/3911#issuecomment-2072313319) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#2995](https://github.com/astropy/astroquery/pull/2995#issuecomment-2072115446) in [astropy/astroquery](https://github.com/astropy/astroquery) -10. 🗣 Commented on [#66](https://github.com/eastgenomics/Genetics_Ark/pull/66#issuecomment-2072063311) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +1. 🗣 Commented on [#399](https://github.com/aria-tools/ARIA-tools/pull/399#issuecomment-2075999490) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +2. 🗣 Commented on [#2848](https://github.com/metabrainz/listenbrainz-server/pull/2848#issuecomment-2075176175) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#560](https://github.com/aramis-lab/clinicadl/pull/560#issuecomment-2075156211) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +4. 🗣 Commented on [#193](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/193#issuecomment-2075069354) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +5. 🗣 Commented on [#880](https://github.com/fury-gl/fury/pull/880#issuecomment-2074806312) in [fury-gl/fury](https://github.com/fury-gl/fury) +6. 🗣 Commented on [#491](https://github.com/Spoken-tutorial/spoken-website/pull/491#issuecomment-2074718051) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +7. 🗣 Commented on [#81](https://github.com/eastgenomics/trendyQC/pull/81#issuecomment-2074600145) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +8. 🗣 Commented on [#68](https://github.com/eastgenomics/Genetics_Ark/pull/68#issuecomment-2074464978) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +9. 🗣 Commented on [#42](https://github.com/NASA-Planetary-Science/AmesCAP/pull/42#issuecomment-2073427635) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +10. 🗣 Commented on [#985](https://github.com/scilus/scilpy/pull/985#issuecomment-2073279393) in [scilus/scilpy](https://github.com/scilus/scilpy) From d399230aea53c0b0c846e7c6307d80abbaa02739 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Apr 2024 00:02:02 +0000 Subject: [PATCH 1887/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8574ba94..e7707ab1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#399](https://github.com/aria-tools/ARIA-tools/pull/399#issuecomment-2075999490) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -2. 🗣 Commented on [#2848](https://github.com/metabrainz/listenbrainz-server/pull/2848#issuecomment-2075176175) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#560](https://github.com/aramis-lab/clinicadl/pull/560#issuecomment-2075156211) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -4. 🗣 Commented on [#193](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/193#issuecomment-2075069354) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -5. 🗣 Commented on [#880](https://github.com/fury-gl/fury/pull/880#issuecomment-2074806312) in [fury-gl/fury](https://github.com/fury-gl/fury) -6. 🗣 Commented on [#491](https://github.com/Spoken-tutorial/spoken-website/pull/491#issuecomment-2074718051) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -7. 🗣 Commented on [#81](https://github.com/eastgenomics/trendyQC/pull/81#issuecomment-2074600145) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -8. 🗣 Commented on [#68](https://github.com/eastgenomics/Genetics_Ark/pull/68#issuecomment-2074464978) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -9. 🗣 Commented on [#42](https://github.com/NASA-Planetary-Science/AmesCAP/pull/42#issuecomment-2073427635) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -10. 🗣 Commented on [#985](https://github.com/scilus/scilpy/pull/985#issuecomment-2073279393) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#25](https://github.com/njzjz/nodejs-wheel/pull/25#issuecomment-2078310142) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +2. 🗣 Commented on [#1693](https://github.com/HEXRD/hexrdgui/pull/1693#issuecomment-2078202516) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +3. 🗣 Commented on [#3](https://github.com/michaelfdickey/my_daily_news/pull/3#issuecomment-2077781293) in [michaelfdickey/my_daily_news](https://github.com/michaelfdickey/my_daily_news) +4. 🗣 Commented on [#2](https://github.com/michaelfdickey/my_daily_news/pull/2#issuecomment-2077766099) in [michaelfdickey/my_daily_news](https://github.com/michaelfdickey/my_daily_news) +5. 🗣 Commented on [#2998](https://github.com/astropy/astroquery/pull/2998#issuecomment-2077587980) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#117](https://github.com/eastgenomics/eggd_conductor/pull/117#issuecomment-2077262286) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +7. 🗣 Commented on [#2850](https://github.com/metabrainz/listenbrainz-server/pull/2850#issuecomment-2077132820) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#194](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/194#issuecomment-2076900350) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +9. 🗣 Commented on [#24](https://github.com/njzjz/nodejs-wheel/pull/24#issuecomment-2076893615) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +10. 🗣 Commented on [#2997](https://github.com/astropy/astroquery/pull/2997#issuecomment-2076889746) in [astropy/astroquery](https://github.com/astropy/astroquery) From 46379d14a9c758fb65f4e1b760556cd1834d7c14 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Apr 2024 00:38:21 +0000 Subject: [PATCH 1888/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8574ba94..e7707ab1 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#399](https://github.com/aria-tools/ARIA-tools/pull/399#issuecomment-2075999490) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -2. 🗣 Commented on [#2848](https://github.com/metabrainz/listenbrainz-server/pull/2848#issuecomment-2075176175) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#560](https://github.com/aramis-lab/clinicadl/pull/560#issuecomment-2075156211) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -4. 🗣 Commented on [#193](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/193#issuecomment-2075069354) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -5. 🗣 Commented on [#880](https://github.com/fury-gl/fury/pull/880#issuecomment-2074806312) in [fury-gl/fury](https://github.com/fury-gl/fury) -6. 🗣 Commented on [#491](https://github.com/Spoken-tutorial/spoken-website/pull/491#issuecomment-2074718051) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -7. 🗣 Commented on [#81](https://github.com/eastgenomics/trendyQC/pull/81#issuecomment-2074600145) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -8. 🗣 Commented on [#68](https://github.com/eastgenomics/Genetics_Ark/pull/68#issuecomment-2074464978) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -9. 🗣 Commented on [#42](https://github.com/NASA-Planetary-Science/AmesCAP/pull/42#issuecomment-2073427635) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -10. 🗣 Commented on [#985](https://github.com/scilus/scilpy/pull/985#issuecomment-2073279393) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#25](https://github.com/njzjz/nodejs-wheel/pull/25#issuecomment-2078310142) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +2. 🗣 Commented on [#1693](https://github.com/HEXRD/hexrdgui/pull/1693#issuecomment-2078202516) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +3. 🗣 Commented on [#3](https://github.com/michaelfdickey/my_daily_news/pull/3#issuecomment-2077781293) in [michaelfdickey/my_daily_news](https://github.com/michaelfdickey/my_daily_news) +4. 🗣 Commented on [#2](https://github.com/michaelfdickey/my_daily_news/pull/2#issuecomment-2077766099) in [michaelfdickey/my_daily_news](https://github.com/michaelfdickey/my_daily_news) +5. 🗣 Commented on [#2998](https://github.com/astropy/astroquery/pull/2998#issuecomment-2077587980) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#117](https://github.com/eastgenomics/eggd_conductor/pull/117#issuecomment-2077262286) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +7. 🗣 Commented on [#2850](https://github.com/metabrainz/listenbrainz-server/pull/2850#issuecomment-2077132820) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#194](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/194#issuecomment-2076900350) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +9. 🗣 Commented on [#24](https://github.com/njzjz/nodejs-wheel/pull/24#issuecomment-2076893615) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +10. 🗣 Commented on [#2997](https://github.com/astropy/astroquery/pull/2997#issuecomment-2076889746) in [astropy/astroquery](https://github.com/astropy/astroquery) From a6d506ae3be820cb765832d23adff37020e9d422 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Apr 2024 00:02:57 +0000 Subject: [PATCH 1889/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e7707ab1..685a07ee 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#25](https://github.com/njzjz/nodejs-wheel/pull/25#issuecomment-2078310142) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -2. 🗣 Commented on [#1693](https://github.com/HEXRD/hexrdgui/pull/1693#issuecomment-2078202516) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -3. 🗣 Commented on [#3](https://github.com/michaelfdickey/my_daily_news/pull/3#issuecomment-2077781293) in [michaelfdickey/my_daily_news](https://github.com/michaelfdickey/my_daily_news) -4. 🗣 Commented on [#2](https://github.com/michaelfdickey/my_daily_news/pull/2#issuecomment-2077766099) in [michaelfdickey/my_daily_news](https://github.com/michaelfdickey/my_daily_news) -5. 🗣 Commented on [#2998](https://github.com/astropy/astroquery/pull/2998#issuecomment-2077587980) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#117](https://github.com/eastgenomics/eggd_conductor/pull/117#issuecomment-2077262286) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -7. 🗣 Commented on [#2850](https://github.com/metabrainz/listenbrainz-server/pull/2850#issuecomment-2077132820) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#194](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/194#issuecomment-2076900350) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -9. 🗣 Commented on [#24](https://github.com/njzjz/nodejs-wheel/pull/24#issuecomment-2076893615) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -10. 🗣 Commented on [#2997](https://github.com/astropy/astroquery/pull/2997#issuecomment-2076889746) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#1550](https://github.com/openSUSE/osc/pull/1550#issuecomment-2080062643) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#22027](https://github.com/spyder-ide/spyder/pull/22027#issuecomment-2079557488) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#986](https://github.com/scilus/scilpy/pull/986#issuecomment-2079507038) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#2855](https://github.com/metabrainz/listenbrainz-server/pull/2855#issuecomment-2079430500) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#203](https://github.com/eastgenomics/eggd_dias_batch/pull/203#issuecomment-2079401156) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +6. 🗣 Commented on [#202](https://github.com/eastgenomics/eggd_dias_batch/pull/202#issuecomment-2079400986) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +7. 🗣 Commented on [#200](https://github.com/eastgenomics/eggd_dias_batch/pull/200#issuecomment-2079400710) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +8. 🗣 Commented on [#82](https://github.com/eastgenomics/trendyQC/pull/82#issuecomment-2079371531) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +9. 🗣 Commented on [#495](https://github.com/Spoken-tutorial/spoken-website/pull/495#issuecomment-2079124078) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +10. 🗣 Commented on [#1497](https://github.com/rpm-software-management/ci-dnf-stack/pull/1497#issuecomment-2079007402) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) From 572e5a04fec14bd5da916573314a051a1db0ca1c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Apr 2024 00:37:55 +0000 Subject: [PATCH 1890/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e7707ab1..685a07ee 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#25](https://github.com/njzjz/nodejs-wheel/pull/25#issuecomment-2078310142) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -2. 🗣 Commented on [#1693](https://github.com/HEXRD/hexrdgui/pull/1693#issuecomment-2078202516) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -3. 🗣 Commented on [#3](https://github.com/michaelfdickey/my_daily_news/pull/3#issuecomment-2077781293) in [michaelfdickey/my_daily_news](https://github.com/michaelfdickey/my_daily_news) -4. 🗣 Commented on [#2](https://github.com/michaelfdickey/my_daily_news/pull/2#issuecomment-2077766099) in [michaelfdickey/my_daily_news](https://github.com/michaelfdickey/my_daily_news) -5. 🗣 Commented on [#2998](https://github.com/astropy/astroquery/pull/2998#issuecomment-2077587980) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#117](https://github.com/eastgenomics/eggd_conductor/pull/117#issuecomment-2077262286) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -7. 🗣 Commented on [#2850](https://github.com/metabrainz/listenbrainz-server/pull/2850#issuecomment-2077132820) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#194](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/194#issuecomment-2076900350) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -9. 🗣 Commented on [#24](https://github.com/njzjz/nodejs-wheel/pull/24#issuecomment-2076893615) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -10. 🗣 Commented on [#2997](https://github.com/astropy/astroquery/pull/2997#issuecomment-2076889746) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#1550](https://github.com/openSUSE/osc/pull/1550#issuecomment-2080062643) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#22027](https://github.com/spyder-ide/spyder/pull/22027#issuecomment-2079557488) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#986](https://github.com/scilus/scilpy/pull/986#issuecomment-2079507038) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#2855](https://github.com/metabrainz/listenbrainz-server/pull/2855#issuecomment-2079430500) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#203](https://github.com/eastgenomics/eggd_dias_batch/pull/203#issuecomment-2079401156) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +6. 🗣 Commented on [#202](https://github.com/eastgenomics/eggd_dias_batch/pull/202#issuecomment-2079400986) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +7. 🗣 Commented on [#200](https://github.com/eastgenomics/eggd_dias_batch/pull/200#issuecomment-2079400710) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +8. 🗣 Commented on [#82](https://github.com/eastgenomics/trendyQC/pull/82#issuecomment-2079371531) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +9. 🗣 Commented on [#495](https://github.com/Spoken-tutorial/spoken-website/pull/495#issuecomment-2079124078) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +10. 🗣 Commented on [#1497](https://github.com/rpm-software-management/ci-dnf-stack/pull/1497#issuecomment-2079007402) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) From 93102cf9494ff5de98707c743b840c6c613d4f0a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 28 Apr 2024 00:02:59 +0000 Subject: [PATCH 1891/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 685a07ee..bc2c626f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1550](https://github.com/openSUSE/osc/pull/1550#issuecomment-2080062643) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#22027](https://github.com/spyder-ide/spyder/pull/22027#issuecomment-2079557488) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#986](https://github.com/scilus/scilpy/pull/986#issuecomment-2079507038) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#2855](https://github.com/metabrainz/listenbrainz-server/pull/2855#issuecomment-2079430500) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#203](https://github.com/eastgenomics/eggd_dias_batch/pull/203#issuecomment-2079401156) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -6. 🗣 Commented on [#202](https://github.com/eastgenomics/eggd_dias_batch/pull/202#issuecomment-2079400986) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -7. 🗣 Commented on [#200](https://github.com/eastgenomics/eggd_dias_batch/pull/200#issuecomment-2079400710) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -8. 🗣 Commented on [#82](https://github.com/eastgenomics/trendyQC/pull/82#issuecomment-2079371531) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -9. 🗣 Commented on [#495](https://github.com/Spoken-tutorial/spoken-website/pull/495#issuecomment-2079124078) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -10. 🗣 Commented on [#1497](https://github.com/rpm-software-management/ci-dnf-stack/pull/1497#issuecomment-2079007402) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +1. 🗣 Commented on [#882](https://github.com/fury-gl/fury/pull/882#issuecomment-2081184806) in [fury-gl/fury](https://github.com/fury-gl/fury) +2. 🗣 Commented on [#9235](https://github.com/statsmodels/statsmodels/pull/9235#issuecomment-2080915687) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#315](https://github.com/OpenFreeEnergy/gufe/pull/315#issuecomment-2080411439) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#26](https://github.com/njzjz/nodejs-wheel/pull/26#issuecomment-2080358896) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +5. 🗣 Commented on [#1550](https://github.com/openSUSE/osc/pull/1550#issuecomment-2080062643) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#22027](https://github.com/spyder-ide/spyder/pull/22027#issuecomment-2079557488) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#986](https://github.com/scilus/scilpy/pull/986#issuecomment-2079507038) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#2855](https://github.com/metabrainz/listenbrainz-server/pull/2855#issuecomment-2079430500) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#203](https://github.com/eastgenomics/eggd_dias_batch/pull/203#issuecomment-2079401156) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +10. 🗣 Commented on [#202](https://github.com/eastgenomics/eggd_dias_batch/pull/202#issuecomment-2079400986) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) From 02b2a746fac9e2b8f30db990cfc0627981fb1564 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 28 Apr 2024 00:41:49 +0000 Subject: [PATCH 1892/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 685a07ee..bc2c626f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1550](https://github.com/openSUSE/osc/pull/1550#issuecomment-2080062643) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#22027](https://github.com/spyder-ide/spyder/pull/22027#issuecomment-2079557488) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#986](https://github.com/scilus/scilpy/pull/986#issuecomment-2079507038) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#2855](https://github.com/metabrainz/listenbrainz-server/pull/2855#issuecomment-2079430500) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#203](https://github.com/eastgenomics/eggd_dias_batch/pull/203#issuecomment-2079401156) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -6. 🗣 Commented on [#202](https://github.com/eastgenomics/eggd_dias_batch/pull/202#issuecomment-2079400986) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -7. 🗣 Commented on [#200](https://github.com/eastgenomics/eggd_dias_batch/pull/200#issuecomment-2079400710) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -8. 🗣 Commented on [#82](https://github.com/eastgenomics/trendyQC/pull/82#issuecomment-2079371531) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -9. 🗣 Commented on [#495](https://github.com/Spoken-tutorial/spoken-website/pull/495#issuecomment-2079124078) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -10. 🗣 Commented on [#1497](https://github.com/rpm-software-management/ci-dnf-stack/pull/1497#issuecomment-2079007402) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +1. 🗣 Commented on [#882](https://github.com/fury-gl/fury/pull/882#issuecomment-2081184806) in [fury-gl/fury](https://github.com/fury-gl/fury) +2. 🗣 Commented on [#9235](https://github.com/statsmodels/statsmodels/pull/9235#issuecomment-2080915687) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#315](https://github.com/OpenFreeEnergy/gufe/pull/315#issuecomment-2080411439) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#26](https://github.com/njzjz/nodejs-wheel/pull/26#issuecomment-2080358896) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +5. 🗣 Commented on [#1550](https://github.com/openSUSE/osc/pull/1550#issuecomment-2080062643) in [openSUSE/osc](https://github.com/openSUSE/osc) +6. 🗣 Commented on [#22027](https://github.com/spyder-ide/spyder/pull/22027#issuecomment-2079557488) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#986](https://github.com/scilus/scilpy/pull/986#issuecomment-2079507038) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#2855](https://github.com/metabrainz/listenbrainz-server/pull/2855#issuecomment-2079430500) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#203](https://github.com/eastgenomics/eggd_dias_batch/pull/203#issuecomment-2079401156) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +10. 🗣 Commented on [#202](https://github.com/eastgenomics/eggd_dias_batch/pull/202#issuecomment-2079400986) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) From 85e954f643034a4e5739672298dfe4a5331aeff3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 00:01:57 +0000 Subject: [PATCH 1893/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bc2c626f..af68602e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#882](https://github.com/fury-gl/fury/pull/882#issuecomment-2081184806) in [fury-gl/fury](https://github.com/fury-gl/fury) -2. 🗣 Commented on [#9235](https://github.com/statsmodels/statsmodels/pull/9235#issuecomment-2080915687) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#315](https://github.com/OpenFreeEnergy/gufe/pull/315#issuecomment-2080411439) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#26](https://github.com/njzjz/nodejs-wheel/pull/26#issuecomment-2080358896) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -5. 🗣 Commented on [#1550](https://github.com/openSUSE/osc/pull/1550#issuecomment-2080062643) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#22027](https://github.com/spyder-ide/spyder/pull/22027#issuecomment-2079557488) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#986](https://github.com/scilus/scilpy/pull/986#issuecomment-2079507038) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#2855](https://github.com/metabrainz/listenbrainz-server/pull/2855#issuecomment-2079430500) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#203](https://github.com/eastgenomics/eggd_dias_batch/pull/203#issuecomment-2079401156) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -10. 🗣 Commented on [#202](https://github.com/eastgenomics/eggd_dias_batch/pull/202#issuecomment-2079400986) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +1. 🗣 Commented on [#22](https://github.com/brianhang/pokerpals/pull/22#issuecomment-2081702249) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +2. 🗣 Commented on [#28](https://github.com/CartoonFan/libloot/pull/28#issuecomment-2081505473) in [CartoonFan/libloot](https://github.com/CartoonFan/libloot) +3. 🗣 Commented on [#882](https://github.com/fury-gl/fury/pull/882#issuecomment-2081184806) in [fury-gl/fury](https://github.com/fury-gl/fury) +4. 🗣 Commented on [#9235](https://github.com/statsmodels/statsmodels/pull/9235#issuecomment-2080915687) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#315](https://github.com/OpenFreeEnergy/gufe/pull/315#issuecomment-2080411439) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#26](https://github.com/njzjz/nodejs-wheel/pull/26#issuecomment-2080358896) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +7. 🗣 Commented on [#1550](https://github.com/openSUSE/osc/pull/1550#issuecomment-2080062643) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#22027](https://github.com/spyder-ide/spyder/pull/22027#issuecomment-2079557488) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#986](https://github.com/scilus/scilpy/pull/986#issuecomment-2079507038) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#2855](https://github.com/metabrainz/listenbrainz-server/pull/2855#issuecomment-2079430500) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From e7f93550a323ad161d94fd0a822518df47ca42ac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 00:39:14 +0000 Subject: [PATCH 1894/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bc2c626f..af68602e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#882](https://github.com/fury-gl/fury/pull/882#issuecomment-2081184806) in [fury-gl/fury](https://github.com/fury-gl/fury) -2. 🗣 Commented on [#9235](https://github.com/statsmodels/statsmodels/pull/9235#issuecomment-2080915687) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#315](https://github.com/OpenFreeEnergy/gufe/pull/315#issuecomment-2080411439) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#26](https://github.com/njzjz/nodejs-wheel/pull/26#issuecomment-2080358896) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -5. 🗣 Commented on [#1550](https://github.com/openSUSE/osc/pull/1550#issuecomment-2080062643) in [openSUSE/osc](https://github.com/openSUSE/osc) -6. 🗣 Commented on [#22027](https://github.com/spyder-ide/spyder/pull/22027#issuecomment-2079557488) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#986](https://github.com/scilus/scilpy/pull/986#issuecomment-2079507038) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#2855](https://github.com/metabrainz/listenbrainz-server/pull/2855#issuecomment-2079430500) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#203](https://github.com/eastgenomics/eggd_dias_batch/pull/203#issuecomment-2079401156) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -10. 🗣 Commented on [#202](https://github.com/eastgenomics/eggd_dias_batch/pull/202#issuecomment-2079400986) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +1. 🗣 Commented on [#22](https://github.com/brianhang/pokerpals/pull/22#issuecomment-2081702249) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +2. 🗣 Commented on [#28](https://github.com/CartoonFan/libloot/pull/28#issuecomment-2081505473) in [CartoonFan/libloot](https://github.com/CartoonFan/libloot) +3. 🗣 Commented on [#882](https://github.com/fury-gl/fury/pull/882#issuecomment-2081184806) in [fury-gl/fury](https://github.com/fury-gl/fury) +4. 🗣 Commented on [#9235](https://github.com/statsmodels/statsmodels/pull/9235#issuecomment-2080915687) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#315](https://github.com/OpenFreeEnergy/gufe/pull/315#issuecomment-2080411439) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +6. 🗣 Commented on [#26](https://github.com/njzjz/nodejs-wheel/pull/26#issuecomment-2080358896) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +7. 🗣 Commented on [#1550](https://github.com/openSUSE/osc/pull/1550#issuecomment-2080062643) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#22027](https://github.com/spyder-ide/spyder/pull/22027#issuecomment-2079557488) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#986](https://github.com/scilus/scilpy/pull/986#issuecomment-2079507038) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#2855](https://github.com/metabrainz/listenbrainz-server/pull/2855#issuecomment-2079430500) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 22bbd9ddd12287e2233b6b3e3f3b7d34ed427549 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 17 May 2019 12:57:21 +0200 Subject: [PATCH 1895/2173] Add help text with supported commands Show available commands in expandable box in a comment. --- pep8speaks/helpers.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pep8speaks/helpers.py b/pep8speaks/helpers.py index 18138d8e..af0c41c3 100644 --- a/pep8speaks/helpers.py +++ b/pep8speaks/helpers.py @@ -331,6 +331,19 @@ def prepare_comment(ghrequest, config): if action_text: comment_footer.append( config["message"][action_text[:-3] + "ed"]["footer"]) + comment_footer.append("""
      +PEP 8 Speaks commands and options +
      + +You can trigger PEP 8 Speaks actions by commenting on this PR: + +- `@pep8speaks suggest diff` in a comment of the PR, and it will comment + a gist of diff suggesting fixes for the PR +- `@pep8speaks pep8ify` on the PR and it will create a Pull Request with + changes suggested by autopep8 against the branch of the author of the PR. + autopep8 fixes most of the errors reported by pycodestyle + +
      """) comment_footer = ''.join(comment_footer) From c6053a33c2eba9d9838401edf6e4ef3f30afc7a3 Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Tue, 30 Apr 2024 04:33:16 +0530 Subject: [PATCH 1896/2173] Add content length in headers ref. https://docs.github.com/en/rest/activity/starring?apiVersion=2022-11-28#star-a-repository-for-the-authenticated-user --- pep8speaks/helpers.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pep8speaks/helpers.py b/pep8speaks/helpers.py index af0c41c3..b6407939 100644 --- a/pep8speaks/helpers.py +++ b/pep8speaks/helpers.py @@ -18,14 +18,16 @@ def update_users(repository): """Star the repository from the bot account""" + headers = {'Content-Length': '0'} query = f"/user/starred/{repository}" - return utils.query_request(query=query, method='PUT') + return utils.query_request(query=query, method='PUT', headers=headers) def follow_user(user): """Follow the user of the service""" + headers = {'Content-Length': '0'} query = f"/user/following/{user}" - return utils.query_request(query=query, method='PUT') + return utils.query_request(query=query, method='PUT', headers=headers) def read_setup_cfg_file(setup_config_file): From ca7ce06068727a7e2c4b8cbf07c14160dba71608 Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Tue, 30 Apr 2024 04:34:06 +0530 Subject: [PATCH 1897/2173] fix: headers now append instead of overwrite while passed as **kwargs --- pep8speaks/utils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pep8speaks/utils.py b/pep8speaks/utils.py index c8052428..516f5970 100644 --- a/pep8speaks/utils.py +++ b/pep8speaks/utils.py @@ -27,7 +27,9 @@ def query_request(query=None, method="GET", **kwargs): request_kwargs = { "headers": {"Authorization": f"Bearer {GITHUB_TOKEN}"} } - request_kwargs.update(**kwargs) + + for kw in kwargs: + request_kwargs["headers"].update(kwargs[kw]) return requests.request(method, query, **request_kwargs) From caaa2a09552f6afb5005cbe1f193ca1f73c3ba4b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 30 Apr 2024 00:37:40 +0000 Subject: [PATCH 1898/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index af68602e..86b48d61 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#22](https://github.com/brianhang/pokerpals/pull/22#issuecomment-2081702249) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -2. 🗣 Commented on [#28](https://github.com/CartoonFan/libloot/pull/28#issuecomment-2081505473) in [CartoonFan/libloot](https://github.com/CartoonFan/libloot) -3. 🗣 Commented on [#882](https://github.com/fury-gl/fury/pull/882#issuecomment-2081184806) in [fury-gl/fury](https://github.com/fury-gl/fury) -4. 🗣 Commented on [#9235](https://github.com/statsmodels/statsmodels/pull/9235#issuecomment-2080915687) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -5. 🗣 Commented on [#315](https://github.com/OpenFreeEnergy/gufe/pull/315#issuecomment-2080411439) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -6. 🗣 Commented on [#26](https://github.com/njzjz/nodejs-wheel/pull/26#issuecomment-2080358896) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -7. 🗣 Commented on [#1550](https://github.com/openSUSE/osc/pull/1550#issuecomment-2080062643) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#22027](https://github.com/spyder-ide/spyder/pull/22027#issuecomment-2079557488) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#986](https://github.com/scilus/scilpy/pull/986#issuecomment-2079507038) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#2855](https://github.com/metabrainz/listenbrainz-server/pull/2855#issuecomment-2079430500) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#51](https://github.com/PenguinCloud/WaddlePerf/pull/51#issuecomment-2083800616) in [PenguinCloud/WaddlePerf](https://github.com/PenguinCloud/WaddlePerf) +2. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-2083653883) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +3. 🗣 Commented on [#1132](https://github.com/yeatmanlab/pyAFQ/pull/1132#issuecomment-2083558399) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +4. 🗣 Commented on [#2857](https://github.com/metabrainz/listenbrainz-server/pull/2857#issuecomment-2082736025) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#34](https://github.com/Schlumberger/UOM/pull/34#issuecomment-2082481388) in [Schlumberger/UOM](https://github.com/Schlumberger/UOM) +6. 🗣 Commented on [#35](https://github.com/jcmgray/cotengra/pull/35#issuecomment-2082407428) in [jcmgray/cotengra](https://github.com/jcmgray/cotengra) +7. 🗣 Commented on [#16](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/16#issuecomment-2082307796) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +8. 🗣 Commented on [#83](https://github.com/eastgenomics/trendyQC/pull/83#issuecomment-2082137285) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +9. 🗣 Commented on [#13](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/13#issuecomment-2082092910) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +10. 🗣 Commented on [#22](https://github.com/brianhang/pokerpals/pull/22#issuecomment-2081702249) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) From c946e3c963422aad8e3929e0fa47b8bb49624dcc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 May 2024 00:41:40 +0000 Subject: [PATCH 1899/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 86b48d61..0e599504 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#51](https://github.com/PenguinCloud/WaddlePerf/pull/51#issuecomment-2083800616) in [PenguinCloud/WaddlePerf](https://github.com/PenguinCloud/WaddlePerf) -2. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-2083653883) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -3. 🗣 Commented on [#1132](https://github.com/yeatmanlab/pyAFQ/pull/1132#issuecomment-2083558399) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -4. 🗣 Commented on [#2857](https://github.com/metabrainz/listenbrainz-server/pull/2857#issuecomment-2082736025) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#34](https://github.com/Schlumberger/UOM/pull/34#issuecomment-2082481388) in [Schlumberger/UOM](https://github.com/Schlumberger/UOM) -6. 🗣 Commented on [#35](https://github.com/jcmgray/cotengra/pull/35#issuecomment-2082407428) in [jcmgray/cotengra](https://github.com/jcmgray/cotengra) -7. 🗣 Commented on [#16](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/16#issuecomment-2082307796) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -8. 🗣 Commented on [#83](https://github.com/eastgenomics/trendyQC/pull/83#issuecomment-2082137285) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -9. 🗣 Commented on [#13](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/13#issuecomment-2082092910) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -10. 🗣 Commented on [#22](https://github.com/brianhang/pokerpals/pull/22#issuecomment-2081702249) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +1. 🗣 Commented on [#4582](https://github.com/MDAnalysis/mdanalysis/pull/4582#issuecomment-2087561050) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#4](https://github.com/ERPGulf/Saudi-E-Invoicing-Phase-2-2024/pull/4#issuecomment-2086341587) in [ERPGulf/Saudi-E-Invoicing-Phase-2-2024](https://github.com/ERPGulf/Saudi-E-Invoicing-Phase-2-2024) +3. 🗣 Commented on [#1549](https://github.com/spacetelescope/jwql/pull/1549#issuecomment-2085881475) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#2858](https://github.com/metabrainz/listenbrainz-server/pull/2858#issuecomment-2085338603) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#155](https://github.com/lettucecfd/lettuce/pull/155#issuecomment-2085132148) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +6. 🗣 Commented on [#3923](https://github.com/privacyidea/privacyidea/pull/3923#issuecomment-2084822998) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +7. 🗣 Commented on [#510](https://github.com/oemof/tespy/pull/510#issuecomment-2084369106) in [oemof/tespy](https://github.com/oemof/tespy) +8. 🗣 Commented on [#51](https://github.com/PenguinCloud/WaddlePerf/pull/51#issuecomment-2083800616) in [PenguinCloud/WaddlePerf](https://github.com/PenguinCloud/WaddlePerf) +9. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-2083653883) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) +10. 🗣 Commented on [#1132](https://github.com/yeatmanlab/pyAFQ/pull/1132#issuecomment-2083558399) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) From d93ec3076410e581c0f7defdcbd872f586772507 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 2 May 2024 00:38:12 +0000 Subject: [PATCH 1900/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0e599504..39d24f2c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4582](https://github.com/MDAnalysis/mdanalysis/pull/4582#issuecomment-2087561050) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#4](https://github.com/ERPGulf/Saudi-E-Invoicing-Phase-2-2024/pull/4#issuecomment-2086341587) in [ERPGulf/Saudi-E-Invoicing-Phase-2-2024](https://github.com/ERPGulf/Saudi-E-Invoicing-Phase-2-2024) -3. 🗣 Commented on [#1549](https://github.com/spacetelescope/jwql/pull/1549#issuecomment-2085881475) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#2858](https://github.com/metabrainz/listenbrainz-server/pull/2858#issuecomment-2085338603) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#155](https://github.com/lettucecfd/lettuce/pull/155#issuecomment-2085132148) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -6. 🗣 Commented on [#3923](https://github.com/privacyidea/privacyidea/pull/3923#issuecomment-2084822998) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -7. 🗣 Commented on [#510](https://github.com/oemof/tespy/pull/510#issuecomment-2084369106) in [oemof/tespy](https://github.com/oemof/tespy) -8. 🗣 Commented on [#51](https://github.com/PenguinCloud/WaddlePerf/pull/51#issuecomment-2083800616) in [PenguinCloud/WaddlePerf](https://github.com/PenguinCloud/WaddlePerf) -9. 🗣 Commented on [#1](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast/pull/1#issuecomment-2083653883) in [Mr-Sunglasses/FastApi-Learn-Fast](https://github.com/Mr-Sunglasses/FastApi-Learn-Fast) -10. 🗣 Commented on [#1132](https://github.com/yeatmanlab/pyAFQ/pull/1132#issuecomment-2083558399) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +1. 🗣 Commented on [#2861](https://github.com/metabrainz/listenbrainz-server/pull/2861#issuecomment-2088998149) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#237](https://github.com/scil-vital/dwi_ml/pull/237#issuecomment-2088882818) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +3. 🗣 Commented on [#885](https://github.com/fury-gl/fury/pull/885#issuecomment-2088808068) in [fury-gl/fury](https://github.com/fury-gl/fury) +4. 🗣 Commented on [#401](https://github.com/aria-tools/ARIA-tools/pull/401#issuecomment-2088289974) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +5. 🗣 Commented on [#42](https://github.com/eastgenomics/automated-archiving/pull/42#issuecomment-2088177108) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +6. 🗣 Commented on [#4584](https://github.com/MDAnalysis/mdanalysis/pull/4584#issuecomment-2088049215) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#4582](https://github.com/MDAnalysis/mdanalysis/pull/4582#issuecomment-2087561050) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#4](https://github.com/ERPGulf/Saudi-E-Invoicing-Phase-2-2024/pull/4#issuecomment-2086341587) in [ERPGulf/Saudi-E-Invoicing-Phase-2-2024](https://github.com/ERPGulf/Saudi-E-Invoicing-Phase-2-2024) +9. 🗣 Commented on [#1549](https://github.com/spacetelescope/jwql/pull/1549#issuecomment-2085881475) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#2858](https://github.com/metabrainz/listenbrainz-server/pull/2858#issuecomment-2085338603) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 5f217cbe9ed34ec967eb8bb646327ec286f9cd03 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 May 2024 00:40:57 +0000 Subject: [PATCH 1901/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 39d24f2c..b595d58d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2861](https://github.com/metabrainz/listenbrainz-server/pull/2861#issuecomment-2088998149) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#237](https://github.com/scil-vital/dwi_ml/pull/237#issuecomment-2088882818) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -3. 🗣 Commented on [#885](https://github.com/fury-gl/fury/pull/885#issuecomment-2088808068) in [fury-gl/fury](https://github.com/fury-gl/fury) -4. 🗣 Commented on [#401](https://github.com/aria-tools/ARIA-tools/pull/401#issuecomment-2088289974) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -5. 🗣 Commented on [#42](https://github.com/eastgenomics/automated-archiving/pull/42#issuecomment-2088177108) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) -6. 🗣 Commented on [#4584](https://github.com/MDAnalysis/mdanalysis/pull/4584#issuecomment-2088049215) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#4582](https://github.com/MDAnalysis/mdanalysis/pull/4582#issuecomment-2087561050) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#4](https://github.com/ERPGulf/Saudi-E-Invoicing-Phase-2-2024/pull/4#issuecomment-2086341587) in [ERPGulf/Saudi-E-Invoicing-Phase-2-2024](https://github.com/ERPGulf/Saudi-E-Invoicing-Phase-2-2024) -9. 🗣 Commented on [#1549](https://github.com/spacetelescope/jwql/pull/1549#issuecomment-2085881475) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#2858](https://github.com/metabrainz/listenbrainz-server/pull/2858#issuecomment-2085338603) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#834](https://github.com/spacetelescope/webbpsf/pull/834#issuecomment-2090678740) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#196](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/196#issuecomment-2090496435) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +3. 🗣 Commented on [#3927](https://github.com/privacyidea/privacyidea/pull/3927#issuecomment-2090154417) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +4. 🗣 Commented on [#2](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/2#issuecomment-2090040581) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +5. 🗣 Commented on [#325](https://github.com/DeMarcoLab/fibsem/pull/325#issuecomment-2089495250) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +6. 🗣 Commented on [#2861](https://github.com/metabrainz/listenbrainz-server/pull/2861#issuecomment-2088998149) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#237](https://github.com/scil-vital/dwi_ml/pull/237#issuecomment-2088882818) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +8. 🗣 Commented on [#885](https://github.com/fury-gl/fury/pull/885#issuecomment-2088808068) in [fury-gl/fury](https://github.com/fury-gl/fury) +9. 🗣 Commented on [#401](https://github.com/aria-tools/ARIA-tools/pull/401#issuecomment-2088289974) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +10. 🗣 Commented on [#42](https://github.com/eastgenomics/automated-archiving/pull/42#issuecomment-2088177108) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) From 90a60c48ee5b3b6633a493df7c7ef5e35fc71df2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 May 2024 00:38:20 +0000 Subject: [PATCH 1902/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b595d58d..68bd5151 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#834](https://github.com/spacetelescope/webbpsf/pull/834#issuecomment-2090678740) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#196](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/196#issuecomment-2090496435) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -3. 🗣 Commented on [#3927](https://github.com/privacyidea/privacyidea/pull/3927#issuecomment-2090154417) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -4. 🗣 Commented on [#2](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/2#issuecomment-2090040581) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -5. 🗣 Commented on [#325](https://github.com/DeMarcoLab/fibsem/pull/325#issuecomment-2089495250) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -6. 🗣 Commented on [#2861](https://github.com/metabrainz/listenbrainz-server/pull/2861#issuecomment-2088998149) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#237](https://github.com/scil-vital/dwi_ml/pull/237#issuecomment-2088882818) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -8. 🗣 Commented on [#885](https://github.com/fury-gl/fury/pull/885#issuecomment-2088808068) in [fury-gl/fury](https://github.com/fury-gl/fury) -9. 🗣 Commented on [#401](https://github.com/aria-tools/ARIA-tools/pull/401#issuecomment-2088289974) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -10. 🗣 Commented on [#42](https://github.com/eastgenomics/automated-archiving/pull/42#issuecomment-2088177108) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +1. 🗣 Commented on [#157](https://github.com/aewallin/allantools/pull/157#issuecomment-2093837059) in [aewallin/allantools](https://github.com/aewallin/allantools) +2. 🗣 Commented on [#838](https://github.com/spacetelescope/webbpsf/pull/838#issuecomment-2093567175) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#837](https://github.com/spacetelescope/webbpsf/pull/837#issuecomment-2093517319) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#836](https://github.com/spacetelescope/webbpsf/pull/836#issuecomment-2093238143) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/konnektor/pull/36#issuecomment-2093071413) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +6. 🗣 Commented on [#1561](https://github.com/spacetelescope/jwql/pull/1561#issuecomment-2093013851) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/konnektor/pull/35#issuecomment-2092994252) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +8. 🗣 Commented on [#24](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/24#issuecomment-2092717988) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +9. 🗣 Commented on [#970](https://github.com/avaframe/AvaFrame/pull/970#issuecomment-2092418349) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#439](https://github.com/payu-org/payu/pull/439#issuecomment-2092355603) in [payu-org/payu](https://github.com/payu-org/payu) From 80d0f5dfce0330aef4a8371b3df623a11c4007e2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 5 May 2024 00:41:34 +0000 Subject: [PATCH 1903/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 68bd5151..0031f460 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#157](https://github.com/aewallin/allantools/pull/157#issuecomment-2093837059) in [aewallin/allantools](https://github.com/aewallin/allantools) -2. 🗣 Commented on [#838](https://github.com/spacetelescope/webbpsf/pull/838#issuecomment-2093567175) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#837](https://github.com/spacetelescope/webbpsf/pull/837#issuecomment-2093517319) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#836](https://github.com/spacetelescope/webbpsf/pull/836#issuecomment-2093238143) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/konnektor/pull/36#issuecomment-2093071413) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) -6. 🗣 Commented on [#1561](https://github.com/spacetelescope/jwql/pull/1561#issuecomment-2093013851) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/konnektor/pull/35#issuecomment-2092994252) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) -8. 🗣 Commented on [#24](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/24#issuecomment-2092717988) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -9. 🗣 Commented on [#970](https://github.com/avaframe/AvaFrame/pull/970#issuecomment-2092418349) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#439](https://github.com/payu-org/payu/pull/439#issuecomment-2092355603) in [payu-org/payu](https://github.com/payu-org/payu) +1. 🗣 Commented on [#2864](https://github.com/metabrainz/listenbrainz-server/pull/2864#issuecomment-2094217743) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#157](https://github.com/aewallin/allantools/pull/157#issuecomment-2093837059) in [aewallin/allantools](https://github.com/aewallin/allantools) +3. 🗣 Commented on [#838](https://github.com/spacetelescope/webbpsf/pull/838#issuecomment-2093567175) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#837](https://github.com/spacetelescope/webbpsf/pull/837#issuecomment-2093517319) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#836](https://github.com/spacetelescope/webbpsf/pull/836#issuecomment-2093238143) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/konnektor/pull/36#issuecomment-2093071413) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +7. 🗣 Commented on [#1561](https://github.com/spacetelescope/jwql/pull/1561#issuecomment-2093013851) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/konnektor/pull/35#issuecomment-2092994252) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +9. 🗣 Commented on [#24](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/24#issuecomment-2092717988) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +10. 🗣 Commented on [#970](https://github.com/avaframe/AvaFrame/pull/970#issuecomment-2092418349) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From 9493df5b3e4d876c99ec17e8ab43c262fb9ca3eb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 00:39:47 +0000 Subject: [PATCH 1904/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0031f460..7755b2cd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2864](https://github.com/metabrainz/listenbrainz-server/pull/2864#issuecomment-2094217743) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#157](https://github.com/aewallin/allantools/pull/157#issuecomment-2093837059) in [aewallin/allantools](https://github.com/aewallin/allantools) -3. 🗣 Commented on [#838](https://github.com/spacetelescope/webbpsf/pull/838#issuecomment-2093567175) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#837](https://github.com/spacetelescope/webbpsf/pull/837#issuecomment-2093517319) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#836](https://github.com/spacetelescope/webbpsf/pull/836#issuecomment-2093238143) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/konnektor/pull/36#issuecomment-2093071413) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) -7. 🗣 Commented on [#1561](https://github.com/spacetelescope/jwql/pull/1561#issuecomment-2093013851) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/konnektor/pull/35#issuecomment-2092994252) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) -9. 🗣 Commented on [#24](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/24#issuecomment-2092717988) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -10. 🗣 Commented on [#970](https://github.com/avaframe/AvaFrame/pull/970#issuecomment-2092418349) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#1839](https://github.com/zarr-developers/zarr-python/pull/1839#issuecomment-2094937391) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +2. 🗣 Commented on [#22059](https://github.com/spyder-ide/spyder/pull/22059#issuecomment-2094846151) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#2864](https://github.com/metabrainz/listenbrainz-server/pull/2864#issuecomment-2094217743) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#157](https://github.com/aewallin/allantools/pull/157#issuecomment-2093837059) in [aewallin/allantools](https://github.com/aewallin/allantools) +5. 🗣 Commented on [#838](https://github.com/spacetelescope/webbpsf/pull/838#issuecomment-2093567175) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#837](https://github.com/spacetelescope/webbpsf/pull/837#issuecomment-2093517319) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +7. 🗣 Commented on [#836](https://github.com/spacetelescope/webbpsf/pull/836#issuecomment-2093238143) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/konnektor/pull/36#issuecomment-2093071413) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +9. 🗣 Commented on [#1561](https://github.com/spacetelescope/jwql/pull/1561#issuecomment-2093013851) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/konnektor/pull/35#issuecomment-2092994252) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) From 5db569ba697de15efaf0053c842c502e578199ce Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 May 2024 00:38:52 +0000 Subject: [PATCH 1905/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7755b2cd..36dda4f9 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1839](https://github.com/zarr-developers/zarr-python/pull/1839#issuecomment-2094937391) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -2. 🗣 Commented on [#22059](https://github.com/spyder-ide/spyder/pull/22059#issuecomment-2094846151) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#2864](https://github.com/metabrainz/listenbrainz-server/pull/2864#issuecomment-2094217743) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#157](https://github.com/aewallin/allantools/pull/157#issuecomment-2093837059) in [aewallin/allantools](https://github.com/aewallin/allantools) -5. 🗣 Commented on [#838](https://github.com/spacetelescope/webbpsf/pull/838#issuecomment-2093567175) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#837](https://github.com/spacetelescope/webbpsf/pull/837#issuecomment-2093517319) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -7. 🗣 Commented on [#836](https://github.com/spacetelescope/webbpsf/pull/836#issuecomment-2093238143) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#36](https://github.com/OpenFreeEnergy/konnektor/pull/36#issuecomment-2093071413) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) -9. 🗣 Commented on [#1561](https://github.com/spacetelescope/jwql/pull/1561#issuecomment-2093013851) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#35](https://github.com/OpenFreeEnergy/konnektor/pull/35#issuecomment-2092994252) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +1. 🗣 Commented on [#840](https://github.com/spacetelescope/webbpsf/pull/840#issuecomment-2096904015) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#524](https://github.com/zarr-developers/numcodecs/pull/524#issuecomment-2096813482) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) +3. 🗣 Commented on [#3](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/3#issuecomment-2096773874) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) +4. 🗣 Commented on [#1091](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1091#issuecomment-2096650094) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#3930](https://github.com/privacyidea/privacyidea/pull/3930#issuecomment-2095872772) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#22061](https://github.com/spyder-ide/spyder/pull/22061#issuecomment-2095813187) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#6](https://github.com/ERPGulf/Saudi-E-Invoicing-Phase-2-2024/pull/6#issuecomment-2095273647) in [ERPGulf/Saudi-E-Invoicing-Phase-2-2024](https://github.com/ERPGulf/Saudi-E-Invoicing-Phase-2-2024) +8. 🗣 Commented on [#1839](https://github.com/zarr-developers/zarr-python/pull/1839#issuecomment-2094937391) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +9. 🗣 Commented on [#22059](https://github.com/spyder-ide/spyder/pull/22059#issuecomment-2094846151) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#2864](https://github.com/metabrainz/listenbrainz-server/pull/2864#issuecomment-2094217743) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 23634d86ab1affab18499e344365b9f281ecf54c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 May 2024 00:32:26 +0000 Subject: [PATCH 1906/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 36dda4f9..8aeaf57b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#840](https://github.com/spacetelescope/webbpsf/pull/840#issuecomment-2096904015) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#524](https://github.com/zarr-developers/numcodecs/pull/524#issuecomment-2096813482) in [zarr-developers/numcodecs](https://github.com/zarr-developers/numcodecs) -3. 🗣 Commented on [#3](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/3#issuecomment-2096773874) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) -4. 🗣 Commented on [#1091](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1091#issuecomment-2096650094) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#3930](https://github.com/privacyidea/privacyidea/pull/3930#issuecomment-2095872772) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#22061](https://github.com/spyder-ide/spyder/pull/22061#issuecomment-2095813187) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#6](https://github.com/ERPGulf/Saudi-E-Invoicing-Phase-2-2024/pull/6#issuecomment-2095273647) in [ERPGulf/Saudi-E-Invoicing-Phase-2-2024](https://github.com/ERPGulf/Saudi-E-Invoicing-Phase-2-2024) -8. 🗣 Commented on [#1839](https://github.com/zarr-developers/zarr-python/pull/1839#issuecomment-2094937391) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -9. 🗣 Commented on [#22059](https://github.com/spyder-ide/spyder/pull/22059#issuecomment-2094846151) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#2864](https://github.com/metabrainz/listenbrainz-server/pull/2864#issuecomment-2094217743) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#4591](https://github.com/MDAnalysis/mdanalysis/pull/4591#issuecomment-2099432888) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#32](https://github.com/njzjz/nodejs-wheel/pull/32#issuecomment-2099335675) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +3. 🗣 Commented on [#103](https://github.com/MDAnalysis/solvation-analysis/pull/103#issuecomment-2099055294) in [MDAnalysis/solvation-analysis](https://github.com/MDAnalysis/solvation-analysis) +4. 🗣 Commented on [#30](https://github.com/thoth-pub/thoth-dissemination/pull/30#issuecomment-2098820530) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +5. 🗣 Commented on [#1565](https://github.com/spacetelescope/jwql/pull/1565#issuecomment-2098736786) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +6. 🗣 Commented on [#320](https://github.com/OpenFreeEnergy/gufe/pull/320#issuecomment-2098592908) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +7. 🗣 Commented on [#1557](https://github.com/openSUSE/osc/pull/1557#issuecomment-2098570705) in [openSUSE/osc](https://github.com/openSUSE/osc) +8. 🗣 Commented on [#1564](https://github.com/spacetelescope/jwql/pull/1564#issuecomment-2098559379) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#39](https://github.com/OpenFreeEnergy/konnektor/pull/39#issuecomment-2097932121) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +10. 🗣 Commented on [#220](https://github.com/epfl-theos/koopmans/pull/220#issuecomment-2097673638) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) From 9eb938544aa0b5aca1717c86b655e20d2baa4036 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 May 2024 00:39:16 +0000 Subject: [PATCH 1907/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8aeaf57b..efdcd7b4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4591](https://github.com/MDAnalysis/mdanalysis/pull/4591#issuecomment-2099432888) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#32](https://github.com/njzjz/nodejs-wheel/pull/32#issuecomment-2099335675) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -3. 🗣 Commented on [#103](https://github.com/MDAnalysis/solvation-analysis/pull/103#issuecomment-2099055294) in [MDAnalysis/solvation-analysis](https://github.com/MDAnalysis/solvation-analysis) -4. 🗣 Commented on [#30](https://github.com/thoth-pub/thoth-dissemination/pull/30#issuecomment-2098820530) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) -5. 🗣 Commented on [#1565](https://github.com/spacetelescope/jwql/pull/1565#issuecomment-2098736786) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -6. 🗣 Commented on [#320](https://github.com/OpenFreeEnergy/gufe/pull/320#issuecomment-2098592908) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -7. 🗣 Commented on [#1557](https://github.com/openSUSE/osc/pull/1557#issuecomment-2098570705) in [openSUSE/osc](https://github.com/openSUSE/osc) -8. 🗣 Commented on [#1564](https://github.com/spacetelescope/jwql/pull/1564#issuecomment-2098559379) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#39](https://github.com/OpenFreeEnergy/konnektor/pull/39#issuecomment-2097932121) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) -10. 🗣 Commented on [#220](https://github.com/epfl-theos/koopmans/pull/220#issuecomment-2097673638) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +1. 🗣 Commented on [#35](https://github.com/kossiitkgp/bhattu/pull/35#issuecomment-2101036423) in [kossiitkgp/bhattu](https://github.com/kossiitkgp/bhattu) +2. 🗣 Commented on [#105](https://github.com/MDAnalysis/solvation-analysis/pull/105#issuecomment-2101035865) in [MDAnalysis/solvation-analysis](https://github.com/MDAnalysis/solvation-analysis) +3. 🗣 Commented on [#841](https://github.com/spacetelescope/webbpsf/pull/841#issuecomment-2101030072) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#34](https://github.com/kossiitkgp/bhattu/pull/34#issuecomment-2100992831) in [kossiitkgp/bhattu](https://github.com/kossiitkgp/bhattu) +5. 🗣 Commented on [#2866](https://github.com/metabrainz/listenbrainz-server/pull/2866#issuecomment-2100769224) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#597](https://github.com/ExoCTK/exoctk/pull/597#issuecomment-2100645050) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +7. 🗣 Commented on [#3929](https://github.com/privacyidea/privacyidea/pull/3929#issuecomment-2100436153) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#33](https://github.com/kossiitkgp/bhattu/pull/33#issuecomment-2100326072) in [kossiitkgp/bhattu](https://github.com/kossiitkgp/bhattu) +9. 🗣 Commented on [#3935](https://github.com/privacyidea/privacyidea/pull/3935#issuecomment-2100063067) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#4591](https://github.com/MDAnalysis/mdanalysis/pull/4591#issuecomment-2099432888) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From a4eb10d00e657435ead489616147d1e9b4b5696b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 May 2024 00:39:04 +0000 Subject: [PATCH 1908/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index efdcd7b4..504c7854 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#35](https://github.com/kossiitkgp/bhattu/pull/35#issuecomment-2101036423) in [kossiitkgp/bhattu](https://github.com/kossiitkgp/bhattu) -2. 🗣 Commented on [#105](https://github.com/MDAnalysis/solvation-analysis/pull/105#issuecomment-2101035865) in [MDAnalysis/solvation-analysis](https://github.com/MDAnalysis/solvation-analysis) -3. 🗣 Commented on [#841](https://github.com/spacetelescope/webbpsf/pull/841#issuecomment-2101030072) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#34](https://github.com/kossiitkgp/bhattu/pull/34#issuecomment-2100992831) in [kossiitkgp/bhattu](https://github.com/kossiitkgp/bhattu) -5. 🗣 Commented on [#2866](https://github.com/metabrainz/listenbrainz-server/pull/2866#issuecomment-2100769224) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#597](https://github.com/ExoCTK/exoctk/pull/597#issuecomment-2100645050) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -7. 🗣 Commented on [#3929](https://github.com/privacyidea/privacyidea/pull/3929#issuecomment-2100436153) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#33](https://github.com/kossiitkgp/bhattu/pull/33#issuecomment-2100326072) in [kossiitkgp/bhattu](https://github.com/kossiitkgp/bhattu) -9. 🗣 Commented on [#3935](https://github.com/privacyidea/privacyidea/pull/3935#issuecomment-2100063067) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#4591](https://github.com/MDAnalysis/mdanalysis/pull/4591#issuecomment-2099432888) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#1](https://github.com/JINO-ROHIT/Airflow-ML-GridSearchCV/pull/1#issuecomment-2103082972) in [JINO-ROHIT/Airflow-ML-GridSearchCV](https://github.com/JINO-ROHIT/Airflow-ML-GridSearchCV) +2. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_pandora/pull/2#issuecomment-2102252984) in [eastgenomics/eggd_pandora](https://github.com/eastgenomics/eggd_pandora) +3. 🗣 Commented on [#1501](https://github.com/rpm-software-management/ci-dnf-stack/pull/1501#issuecomment-2102236733) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +4. 🗣 Commented on [#24](https://github.com/drauger-os-development/drauger-welcome/pull/24#issuecomment-2101739126) in [drauger-os-development/drauger-welcome](https://github.com/drauger-os-development/drauger-welcome) +5. 🗣 Commented on [#35](https://github.com/kossiitkgp/bhattu/pull/35#issuecomment-2101036423) in [kossiitkgp/bhattu](https://github.com/kossiitkgp/bhattu) +6. 🗣 Commented on [#105](https://github.com/MDAnalysis/solvation-analysis/pull/105#issuecomment-2101035865) in [MDAnalysis/solvation-analysis](https://github.com/MDAnalysis/solvation-analysis) +7. 🗣 Commented on [#841](https://github.com/spacetelescope/webbpsf/pull/841#issuecomment-2101030072) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#34](https://github.com/kossiitkgp/bhattu/pull/34#issuecomment-2100992831) in [kossiitkgp/bhattu](https://github.com/kossiitkgp/bhattu) +9. 🗣 Commented on [#2866](https://github.com/metabrainz/listenbrainz-server/pull/2866#issuecomment-2100769224) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#597](https://github.com/ExoCTK/exoctk/pull/597#issuecomment-2100645050) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) From b2a30f1e777cf4de389da71f88c9adba54a11820 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 May 2024 00:38:26 +0000 Subject: [PATCH 1909/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 504c7854..e1ed20a4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/JINO-ROHIT/Airflow-ML-GridSearchCV/pull/1#issuecomment-2103082972) in [JINO-ROHIT/Airflow-ML-GridSearchCV](https://github.com/JINO-ROHIT/Airflow-ML-GridSearchCV) -2. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_pandora/pull/2#issuecomment-2102252984) in [eastgenomics/eggd_pandora](https://github.com/eastgenomics/eggd_pandora) -3. 🗣 Commented on [#1501](https://github.com/rpm-software-management/ci-dnf-stack/pull/1501#issuecomment-2102236733) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -4. 🗣 Commented on [#24](https://github.com/drauger-os-development/drauger-welcome/pull/24#issuecomment-2101739126) in [drauger-os-development/drauger-welcome](https://github.com/drauger-os-development/drauger-welcome) -5. 🗣 Commented on [#35](https://github.com/kossiitkgp/bhattu/pull/35#issuecomment-2101036423) in [kossiitkgp/bhattu](https://github.com/kossiitkgp/bhattu) -6. 🗣 Commented on [#105](https://github.com/MDAnalysis/solvation-analysis/pull/105#issuecomment-2101035865) in [MDAnalysis/solvation-analysis](https://github.com/MDAnalysis/solvation-analysis) -7. 🗣 Commented on [#841](https://github.com/spacetelescope/webbpsf/pull/841#issuecomment-2101030072) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#34](https://github.com/kossiitkgp/bhattu/pull/34#issuecomment-2100992831) in [kossiitkgp/bhattu](https://github.com/kossiitkgp/bhattu) -9. 🗣 Commented on [#2866](https://github.com/metabrainz/listenbrainz-server/pull/2866#issuecomment-2100769224) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#597](https://github.com/ExoCTK/exoctk/pull/597#issuecomment-2100645050) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +1. 🗣 Commented on [#394](https://github.com/aria-tools/ARIA-tools/pull/394#issuecomment-2105383276) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +2. 🗣 Commented on [#1855](https://github.com/zarr-developers/zarr-python/pull/1855#issuecomment-2105285169) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +3. 🗣 Commented on [#45](https://github.com/OpenFreeEnergy/konnektor/pull/45#issuecomment-2105003461) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +4. 🗣 Commented on [#319](https://github.com/OMalenfantThuot/ML_Calc_Driver/pull/319#issuecomment-2104786357) in [OMalenfantThuot/ML_Calc_Driver](https://github.com/OMalenfantThuot/ML_Calc_Driver) +5. 🗣 Commented on [#850](https://github.com/OpenFreeEnergy/openfe/pull/850#issuecomment-2104735641) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +6. 🗣 Commented on [#847](https://github.com/OpenFreeEnergy/openfe/pull/847#issuecomment-2104733787) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +7. 🗣 Commented on [#43](https://github.com/OpenFreeEnergy/konnektor/pull/43#issuecomment-2104661949) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +8. 🗣 Commented on [#971](https://github.com/avaframe/AvaFrame/pull/971#issuecomment-2104602176) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#42](https://github.com/OpenFreeEnergy/konnektor/pull/42#issuecomment-2104573490) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +10. 🗣 Commented on [#3936](https://github.com/privacyidea/privacyidea/pull/3936#issuecomment-2104464104) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From b01fafd6b3c30b9d1cd5d428ab0dcced2fa2a863 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 12 May 2024 00:42:52 +0000 Subject: [PATCH 1910/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e1ed20a4..8ad62898 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#394](https://github.com/aria-tools/ARIA-tools/pull/394#issuecomment-2105383276) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -2. 🗣 Commented on [#1855](https://github.com/zarr-developers/zarr-python/pull/1855#issuecomment-2105285169) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -3. 🗣 Commented on [#45](https://github.com/OpenFreeEnergy/konnektor/pull/45#issuecomment-2105003461) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) -4. 🗣 Commented on [#319](https://github.com/OMalenfantThuot/ML_Calc_Driver/pull/319#issuecomment-2104786357) in [OMalenfantThuot/ML_Calc_Driver](https://github.com/OMalenfantThuot/ML_Calc_Driver) -5. 🗣 Commented on [#850](https://github.com/OpenFreeEnergy/openfe/pull/850#issuecomment-2104735641) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -6. 🗣 Commented on [#847](https://github.com/OpenFreeEnergy/openfe/pull/847#issuecomment-2104733787) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -7. 🗣 Commented on [#43](https://github.com/OpenFreeEnergy/konnektor/pull/43#issuecomment-2104661949) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) -8. 🗣 Commented on [#971](https://github.com/avaframe/AvaFrame/pull/971#issuecomment-2104602176) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#42](https://github.com/OpenFreeEnergy/konnektor/pull/42#issuecomment-2104573490) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) -10. 🗣 Commented on [#3936](https://github.com/privacyidea/privacyidea/pull/3936#issuecomment-2104464104) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#7](https://github.com/Remi-Gau/reproschema-py/pull/7#issuecomment-2105968816) in [Remi-Gau/reproschema-py](https://github.com/Remi-Gau/reproschema-py) +2. 🗣 Commented on [#303](https://github.com/Remi-Gau/eCobidas/pull/303#issuecomment-2105960872) in [Remi-Gau/eCobidas](https://github.com/Remi-Gau/eCobidas) +3. 🗣 Commented on [#6](https://github.com/Remi-Gau/reproschema-py/pull/6#issuecomment-2105915254) in [Remi-Gau/reproschema-py](https://github.com/Remi-Gau/reproschema-py) +4. 🗣 Commented on [#36](https://github.com/njzjz/nodejs-wheel/pull/36#issuecomment-2105573817) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +5. 🗣 Commented on [#394](https://github.com/aria-tools/ARIA-tools/pull/394#issuecomment-2105383276) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +6. 🗣 Commented on [#1855](https://github.com/zarr-developers/zarr-python/pull/1855#issuecomment-2105285169) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) +7. 🗣 Commented on [#45](https://github.com/OpenFreeEnergy/konnektor/pull/45#issuecomment-2105003461) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +8. 🗣 Commented on [#319](https://github.com/OMalenfantThuot/ML_Calc_Driver/pull/319#issuecomment-2104786357) in [OMalenfantThuot/ML_Calc_Driver](https://github.com/OMalenfantThuot/ML_Calc_Driver) +9. 🗣 Commented on [#850](https://github.com/OpenFreeEnergy/openfe/pull/850#issuecomment-2104735641) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#847](https://github.com/OpenFreeEnergy/openfe/pull/847#issuecomment-2104733787) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) From c6d362c732c8b357b542c2ba44496e977bc2a559 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 May 2024 00:40:44 +0000 Subject: [PATCH 1911/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8ad62898..c2851a98 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#7](https://github.com/Remi-Gau/reproschema-py/pull/7#issuecomment-2105968816) in [Remi-Gau/reproschema-py](https://github.com/Remi-Gau/reproschema-py) -2. 🗣 Commented on [#303](https://github.com/Remi-Gau/eCobidas/pull/303#issuecomment-2105960872) in [Remi-Gau/eCobidas](https://github.com/Remi-Gau/eCobidas) -3. 🗣 Commented on [#6](https://github.com/Remi-Gau/reproschema-py/pull/6#issuecomment-2105915254) in [Remi-Gau/reproschema-py](https://github.com/Remi-Gau/reproschema-py) -4. 🗣 Commented on [#36](https://github.com/njzjz/nodejs-wheel/pull/36#issuecomment-2105573817) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -5. 🗣 Commented on [#394](https://github.com/aria-tools/ARIA-tools/pull/394#issuecomment-2105383276) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -6. 🗣 Commented on [#1855](https://github.com/zarr-developers/zarr-python/pull/1855#issuecomment-2105285169) in [zarr-developers/zarr-python](https://github.com/zarr-developers/zarr-python) -7. 🗣 Commented on [#45](https://github.com/OpenFreeEnergy/konnektor/pull/45#issuecomment-2105003461) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) -8. 🗣 Commented on [#319](https://github.com/OMalenfantThuot/ML_Calc_Driver/pull/319#issuecomment-2104786357) in [OMalenfantThuot/ML_Calc_Driver](https://github.com/OMalenfantThuot/ML_Calc_Driver) -9. 🗣 Commented on [#850](https://github.com/OpenFreeEnergy/openfe/pull/850#issuecomment-2104735641) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#847](https://github.com/OpenFreeEnergy/openfe/pull/847#issuecomment-2104733787) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +1. 🗣 Commented on [#543](https://github.com/bengosney/isitbinday/pull/543#issuecomment-2106350710) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +2. 🗣 Commented on [#845](https://github.com/spacetelescope/webbpsf/pull/845#issuecomment-2106323101) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#3218](https://github.com/dipy/dipy/pull/3218#issuecomment-2106274279) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/konnektor/pull/47#issuecomment-2106247577) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +5. 🗣 Commented on [#39](https://github.com/njzjz/nodejs-wheel/pull/39#issuecomment-2106151265) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +6. 🗣 Commented on [#2](https://github.com/JINO-ROHIT/Airflow-ML-GridSearchCV/pull/2#issuecomment-2106148854) in [JINO-ROHIT/Airflow-ML-GridSearchCV](https://github.com/JINO-ROHIT/Airflow-ML-GridSearchCV) +7. 🗣 Commented on [#7](https://github.com/Remi-Gau/reproschema-py/pull/7#issuecomment-2105968816) in [Remi-Gau/reproschema-py](https://github.com/Remi-Gau/reproschema-py) +8. 🗣 Commented on [#303](https://github.com/Remi-Gau/eCobidas/pull/303#issuecomment-2105960872) in [Remi-Gau/eCobidas](https://github.com/Remi-Gau/eCobidas) +9. 🗣 Commented on [#6](https://github.com/Remi-Gau/reproschema-py/pull/6#issuecomment-2105915254) in [Remi-Gau/reproschema-py](https://github.com/Remi-Gau/reproschema-py) +10. 🗣 Commented on [#36](https://github.com/njzjz/nodejs-wheel/pull/36#issuecomment-2105573817) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) From 5ec04baeb9d54c91e538529cc0a656f8c29b44b9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 May 2024 00:39:36 +0000 Subject: [PATCH 1912/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c2851a98..b15e8ebb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#543](https://github.com/bengosney/isitbinday/pull/543#issuecomment-2106350710) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) -2. 🗣 Commented on [#845](https://github.com/spacetelescope/webbpsf/pull/845#issuecomment-2106323101) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#3218](https://github.com/dipy/dipy/pull/3218#issuecomment-2106274279) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/konnektor/pull/47#issuecomment-2106247577) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) -5. 🗣 Commented on [#39](https://github.com/njzjz/nodejs-wheel/pull/39#issuecomment-2106151265) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -6. 🗣 Commented on [#2](https://github.com/JINO-ROHIT/Airflow-ML-GridSearchCV/pull/2#issuecomment-2106148854) in [JINO-ROHIT/Airflow-ML-GridSearchCV](https://github.com/JINO-ROHIT/Airflow-ML-GridSearchCV) -7. 🗣 Commented on [#7](https://github.com/Remi-Gau/reproschema-py/pull/7#issuecomment-2105968816) in [Remi-Gau/reproschema-py](https://github.com/Remi-Gau/reproschema-py) -8. 🗣 Commented on [#303](https://github.com/Remi-Gau/eCobidas/pull/303#issuecomment-2105960872) in [Remi-Gau/eCobidas](https://github.com/Remi-Gau/eCobidas) -9. 🗣 Commented on [#6](https://github.com/Remi-Gau/reproschema-py/pull/6#issuecomment-2105915254) in [Remi-Gau/reproschema-py](https://github.com/Remi-Gau/reproschema-py) -10. 🗣 Commented on [#36](https://github.com/njzjz/nodejs-wheel/pull/36#issuecomment-2105573817) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +1. 🗣 Commented on [#546](https://github.com/bengosney/isitbinday/pull/546#issuecomment-2108700744) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +2. 🗣 Commented on [#544](https://github.com/bengosney/isitbinday/pull/544#issuecomment-2108645185) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +3. 🗣 Commented on [#2](https://github.com/2lambda123/triton/pull/2#issuecomment-2108597826) in [2lambda123/triton](https://github.com/2lambda123/triton) +4. 🗣 Commented on [#26](https://github.com/2lambda123/spot_ros2/pull/26#issuecomment-2108585857) in [2lambda123/spot_ros2](https://github.com/2lambda123/spot_ros2) +5. 🗣 Commented on [#18](https://github.com/2lambda123/scikit-decide/pull/18#issuecomment-2108582063) in [2lambda123/scikit-decide](https://github.com/2lambda123/scikit-decide) +6. 🗣 Commented on [#3189](https://github.com/reframe-hpc/reframe/pull/3189#issuecomment-2108383015) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +7. 🗣 Commented on [#1](https://github.com/2lambda123/societe-generale-swordphish-awareness/pull/1#issuecomment-2108230635) in [2lambda123/societe-generale-swordphish-awareness](https://github.com/2lambda123/societe-generale-swordphish-awareness) +8. 🗣 Commented on [#23](https://github.com/jcmgray/autoray/pull/23#issuecomment-2107609122) in [jcmgray/autoray](https://github.com/jcmgray/autoray) +9. 🗣 Commented on [#5](https://github.com/eastgenomics/prometheus/pull/5#issuecomment-2107422195) in [eastgenomics/prometheus](https://github.com/eastgenomics/prometheus) +10. 🗣 Commented on [#402](https://github.com/aria-tools/ARIA-tools/pull/402#issuecomment-2107353281) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) From 69a0bf44f1980a73c8a9d374fd123b3b119809d7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 May 2024 00:39:26 +0000 Subject: [PATCH 1913/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b15e8ebb..6a272457 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#546](https://github.com/bengosney/isitbinday/pull/546#issuecomment-2108700744) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) -2. 🗣 Commented on [#544](https://github.com/bengosney/isitbinday/pull/544#issuecomment-2108645185) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) -3. 🗣 Commented on [#2](https://github.com/2lambda123/triton/pull/2#issuecomment-2108597826) in [2lambda123/triton](https://github.com/2lambda123/triton) -4. 🗣 Commented on [#26](https://github.com/2lambda123/spot_ros2/pull/26#issuecomment-2108585857) in [2lambda123/spot_ros2](https://github.com/2lambda123/spot_ros2) -5. 🗣 Commented on [#18](https://github.com/2lambda123/scikit-decide/pull/18#issuecomment-2108582063) in [2lambda123/scikit-decide](https://github.com/2lambda123/scikit-decide) -6. 🗣 Commented on [#3189](https://github.com/reframe-hpc/reframe/pull/3189#issuecomment-2108383015) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -7. 🗣 Commented on [#1](https://github.com/2lambda123/societe-generale-swordphish-awareness/pull/1#issuecomment-2108230635) in [2lambda123/societe-generale-swordphish-awareness](https://github.com/2lambda123/societe-generale-swordphish-awareness) -8. 🗣 Commented on [#23](https://github.com/jcmgray/autoray/pull/23#issuecomment-2107609122) in [jcmgray/autoray](https://github.com/jcmgray/autoray) -9. 🗣 Commented on [#5](https://github.com/eastgenomics/prometheus/pull/5#issuecomment-2107422195) in [eastgenomics/prometheus](https://github.com/eastgenomics/prometheus) -10. 🗣 Commented on [#402](https://github.com/aria-tools/ARIA-tools/pull/402#issuecomment-2107353281) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +1. 🗣 Commented on [#2](https://github.com/njzjz/deepmodeling_sphinx/pull/2#issuecomment-2111090729) in [njzjz/deepmodeling_sphinx](https://github.com/njzjz/deepmodeling_sphinx) +2. 🗣 Commented on [#551](https://github.com/bengosney/isitbinday/pull/551#issuecomment-2111077186) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +3. 🗣 Commented on [#1136](https://github.com/yeatmanlab/pyAFQ/pull/1136#issuecomment-2110993095) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +4. 🗣 Commented on [#22079](https://github.com/spyder-ide/spyder/pull/22079#issuecomment-2110592499) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#137](https://github.com/aimclub/Fedot.Industrial/pull/137#issuecomment-2110309852) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#9036](https://github.com/statsmodels/statsmodels/pull/9036#issuecomment-2110292811) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +7. 🗣 Commented on [#3190](https://github.com/reframe-hpc/reframe/pull/3190#issuecomment-2110263711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +8. 🗣 Commented on [#1566](https://github.com/openSUSE/osc/pull/1566#issuecomment-2110090110) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#3939](https://github.com/privacyidea/privacyidea/pull/3939#issuecomment-2109903854) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#43](https://github.com/eastgenomics/automated-archiving/pull/43#issuecomment-2109583765) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) From fd60201d0fddbad265aca17cbdc086ec83cfaa24 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 16 May 2024 00:39:11 +0000 Subject: [PATCH 1914/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6a272457..cbabd201 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/njzjz/deepmodeling_sphinx/pull/2#issuecomment-2111090729) in [njzjz/deepmodeling_sphinx](https://github.com/njzjz/deepmodeling_sphinx) -2. 🗣 Commented on [#551](https://github.com/bengosney/isitbinday/pull/551#issuecomment-2111077186) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) -3. 🗣 Commented on [#1136](https://github.com/yeatmanlab/pyAFQ/pull/1136#issuecomment-2110993095) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -4. 🗣 Commented on [#22079](https://github.com/spyder-ide/spyder/pull/22079#issuecomment-2110592499) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#137](https://github.com/aimclub/Fedot.Industrial/pull/137#issuecomment-2110309852) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#9036](https://github.com/statsmodels/statsmodels/pull/9036#issuecomment-2110292811) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -7. 🗣 Commented on [#3190](https://github.com/reframe-hpc/reframe/pull/3190#issuecomment-2110263711) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -8. 🗣 Commented on [#1566](https://github.com/openSUSE/osc/pull/1566#issuecomment-2110090110) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#3939](https://github.com/privacyidea/privacyidea/pull/3939#issuecomment-2109903854) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#43](https://github.com/eastgenomics/automated-archiving/pull/43#issuecomment-2109583765) in [eastgenomics/automated-archiving](https://github.com/eastgenomics/automated-archiving) +1. 🗣 Commented on [#537](https://github.com/UIUCLibrary/Speedwagon/pull/537#issuecomment-2113476658) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) +2. 🗣 Commented on [#849](https://github.com/spacetelescope/webbpsf/pull/849#issuecomment-2113222620) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#502](https://github.com/HEPCloud/decisionengine_modules/pull/502#issuecomment-2112949829) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +4. 🗣 Commented on [#974](https://github.com/avaframe/AvaFrame/pull/974#issuecomment-2112940694) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#304](https://github.com/Remi-Gau/eCobidas/pull/304#issuecomment-2112811603) in [Remi-Gau/eCobidas](https://github.com/Remi-Gau/eCobidas) +6. 🗣 Commented on [#304](https://github.com/Remi-Gau/eCobidas/pull/304#issuecomment-2112807516) in [Remi-Gau/eCobidas](https://github.com/Remi-Gau/eCobidas) +7. 🗣 Commented on [#2872](https://github.com/metabrainz/listenbrainz-server/pull/2872#issuecomment-2112692454) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#54](https://github.com/tilde-lab/metis-client/pull/54#issuecomment-2112403990) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) +9. 🗣 Commented on [#973](https://github.com/avaframe/AvaFrame/pull/973#issuecomment-2112342569) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#3940](https://github.com/privacyidea/privacyidea/pull/3940#issuecomment-2112037354) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From 21069584564dcccc28a6f4c066de9fc13c0d3caa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 17 May 2024 00:39:41 +0000 Subject: [PATCH 1915/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cbabd201..13bc1033 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#537](https://github.com/UIUCLibrary/Speedwagon/pull/537#issuecomment-2113476658) in [UIUCLibrary/Speedwagon](https://github.com/UIUCLibrary/Speedwagon) -2. 🗣 Commented on [#849](https://github.com/spacetelescope/webbpsf/pull/849#issuecomment-2113222620) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#502](https://github.com/HEPCloud/decisionengine_modules/pull/502#issuecomment-2112949829) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -4. 🗣 Commented on [#974](https://github.com/avaframe/AvaFrame/pull/974#issuecomment-2112940694) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#304](https://github.com/Remi-Gau/eCobidas/pull/304#issuecomment-2112811603) in [Remi-Gau/eCobidas](https://github.com/Remi-Gau/eCobidas) -6. 🗣 Commented on [#304](https://github.com/Remi-Gau/eCobidas/pull/304#issuecomment-2112807516) in [Remi-Gau/eCobidas](https://github.com/Remi-Gau/eCobidas) -7. 🗣 Commented on [#2872](https://github.com/metabrainz/listenbrainz-server/pull/2872#issuecomment-2112692454) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#54](https://github.com/tilde-lab/metis-client/pull/54#issuecomment-2112403990) in [tilde-lab/metis-client](https://github.com/tilde-lab/metis-client) -9. 🗣 Commented on [#973](https://github.com/avaframe/AvaFrame/pull/973#issuecomment-2112342569) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#3940](https://github.com/privacyidea/privacyidea/pull/3940#issuecomment-2112037354) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#1099](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1099#issuecomment-2116163193) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#850](https://github.com/spacetelescope/webbpsf/pull/850#issuecomment-2116151878) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#992](https://github.com/scilus/scilpy/pull/992#issuecomment-2116052168) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#3178](https://github.com/dipy/dipy/pull/3178#issuecomment-2115710890) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#3942](https://github.com/privacyidea/privacyidea/pull/3942#issuecomment-2115447114) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#1738](https://github.com/astropy/photutils/pull/1738#issuecomment-2115233962) in [astropy/photutils](https://github.com/astropy/photutils) +7. 🗣 Commented on [#121](https://github.com/OpenFreeEnergy/cinnabar/pull/121#issuecomment-2115181982) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +8. 🗣 Commented on [#976](https://github.com/avaframe/AvaFrame/pull/976#issuecomment-2114592433) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#498](https://github.com/Spoken-tutorial/spoken-website/pull/498#issuecomment-2114091989) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +10. 🗣 Commented on [#442](https://github.com/payu-org/payu/pull/442#issuecomment-2113993175) in [payu-org/payu](https://github.com/payu-org/payu) From 1cef4ad3c5e98ec4aba41c1b399a3da880652a63 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 May 2024 00:39:14 +0000 Subject: [PATCH 1916/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 13bc1033..584f0bef 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1099](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1099#issuecomment-2116163193) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#850](https://github.com/spacetelescope/webbpsf/pull/850#issuecomment-2116151878) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#992](https://github.com/scilus/scilpy/pull/992#issuecomment-2116052168) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#3178](https://github.com/dipy/dipy/pull/3178#issuecomment-2115710890) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#3942](https://github.com/privacyidea/privacyidea/pull/3942#issuecomment-2115447114) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#1738](https://github.com/astropy/photutils/pull/1738#issuecomment-2115233962) in [astropy/photutils](https://github.com/astropy/photutils) -7. 🗣 Commented on [#121](https://github.com/OpenFreeEnergy/cinnabar/pull/121#issuecomment-2115181982) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -8. 🗣 Commented on [#976](https://github.com/avaframe/AvaFrame/pull/976#issuecomment-2114592433) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#498](https://github.com/Spoken-tutorial/spoken-website/pull/498#issuecomment-2114091989) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -10. 🗣 Commented on [#442](https://github.com/payu-org/payu/pull/442#issuecomment-2113993175) in [payu-org/payu](https://github.com/payu-org/payu) +1. 🗣 Commented on [#17](https://github.com/njzjz/zhihubackup/pull/17#issuecomment-2118445420) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +2. 🗣 Commented on [#639](https://github.com/HEXRD/hexrd/pull/639#issuecomment-2118240531) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#852](https://github.com/spacetelescope/webbpsf/pull/852#issuecomment-2118174877) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#851](https://github.com/spacetelescope/webbpsf/pull/851#issuecomment-2117906027) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#1123](https://github.com/lmcinnes/umap/pull/1123#issuecomment-2117732846) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +6. 🗣 Commented on [#141](https://github.com/aimclub/Fedot.Industrial/pull/141#issuecomment-2117458752) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#140](https://github.com/aimclub/Fedot.Industrial/pull/140#issuecomment-2117187797) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +8. 🗣 Commented on [#577](https://github.com/aramis-lab/clinicadl/pull/577#issuecomment-2117098631) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +9. 🗣 Commented on [#149](https://github.com/DeMarcoLab/autolamella/pull/149#issuecomment-2116930295) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +10. 🗣 Commented on [#8](https://github.com/2lambda123/huawei-noah-Pretrained-Language-Model/pull/8#issuecomment-2116874105) in [2lambda123/huawei-noah-Pretrained-Language-Model](https://github.com/2lambda123/huawei-noah-Pretrained-Language-Model) From c08c9f7eb114c18d0fc236e84c09b41c8558cbd7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 19 May 2024 00:42:57 +0000 Subject: [PATCH 1917/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 584f0bef..d3b36885 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#17](https://github.com/njzjz/zhihubackup/pull/17#issuecomment-2118445420) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -2. 🗣 Commented on [#639](https://github.com/HEXRD/hexrd/pull/639#issuecomment-2118240531) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#852](https://github.com/spacetelescope/webbpsf/pull/852#issuecomment-2118174877) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#851](https://github.com/spacetelescope/webbpsf/pull/851#issuecomment-2117906027) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#1123](https://github.com/lmcinnes/umap/pull/1123#issuecomment-2117732846) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -6. 🗣 Commented on [#141](https://github.com/aimclub/Fedot.Industrial/pull/141#issuecomment-2117458752) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#140](https://github.com/aimclub/Fedot.Industrial/pull/140#issuecomment-2117187797) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -8. 🗣 Commented on [#577](https://github.com/aramis-lab/clinicadl/pull/577#issuecomment-2117098631) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -9. 🗣 Commented on [#149](https://github.com/DeMarcoLab/autolamella/pull/149#issuecomment-2116930295) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -10. 🗣 Commented on [#8](https://github.com/2lambda123/huawei-noah-Pretrained-Language-Model/pull/8#issuecomment-2116874105) in [2lambda123/huawei-noah-Pretrained-Language-Model](https://github.com/2lambda123/huawei-noah-Pretrained-Language-Model) +1. 🗣 Commented on [#304](https://github.com/Remi-Gau/eCobidas/pull/304#issuecomment-2118845312) in [Remi-Gau/eCobidas](https://github.com/Remi-Gau/eCobidas) +2. 🗣 Commented on [#31](https://github.com/Moonlark-Dev/Moonlark/pull/31#issuecomment-2118801024) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +3. 🗣 Commented on [#17](https://github.com/njzjz/zhihubackup/pull/17#issuecomment-2118445420) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +4. 🗣 Commented on [#639](https://github.com/HEXRD/hexrd/pull/639#issuecomment-2118240531) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#852](https://github.com/spacetelescope/webbpsf/pull/852#issuecomment-2118174877) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#851](https://github.com/spacetelescope/webbpsf/pull/851#issuecomment-2117906027) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +7. 🗣 Commented on [#1123](https://github.com/lmcinnes/umap/pull/1123#issuecomment-2117732846) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +8. 🗣 Commented on [#141](https://github.com/aimclub/Fedot.Industrial/pull/141#issuecomment-2117458752) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +9. 🗣 Commented on [#140](https://github.com/aimclub/Fedot.Industrial/pull/140#issuecomment-2117187797) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#577](https://github.com/aramis-lab/clinicadl/pull/577#issuecomment-2117098631) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) From 7e5820ad9ef2cf8113bf1f69b285f401969e0d49 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 20 May 2024 00:40:15 +0000 Subject: [PATCH 1918/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d3b36885..d218389a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#304](https://github.com/Remi-Gau/eCobidas/pull/304#issuecomment-2118845312) in [Remi-Gau/eCobidas](https://github.com/Remi-Gau/eCobidas) -2. 🗣 Commented on [#31](https://github.com/Moonlark-Dev/Moonlark/pull/31#issuecomment-2118801024) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -3. 🗣 Commented on [#17](https://github.com/njzjz/zhihubackup/pull/17#issuecomment-2118445420) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -4. 🗣 Commented on [#639](https://github.com/HEXRD/hexrd/pull/639#issuecomment-2118240531) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#852](https://github.com/spacetelescope/webbpsf/pull/852#issuecomment-2118174877) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#851](https://github.com/spacetelescope/webbpsf/pull/851#issuecomment-2117906027) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -7. 🗣 Commented on [#1123](https://github.com/lmcinnes/umap/pull/1123#issuecomment-2117732846) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -8. 🗣 Commented on [#141](https://github.com/aimclub/Fedot.Industrial/pull/141#issuecomment-2117458752) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -9. 🗣 Commented on [#140](https://github.com/aimclub/Fedot.Industrial/pull/140#issuecomment-2117187797) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#577](https://github.com/aramis-lab/clinicadl/pull/577#issuecomment-2117098631) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +1. 🗣 Commented on [#2](https://github.com/njzjz/wenxian/pull/2#issuecomment-2119476177) in [njzjz/wenxian](https://github.com/njzjz/wenxian) +2. 🗣 Commented on [#9249](https://github.com/statsmodels/statsmodels/pull/9249#issuecomment-2119263890) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#33](https://github.com/Moonlark-Dev/Moonlark/pull/33#issuecomment-2119167153) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +4. 🗣 Commented on [#32](https://github.com/Moonlark-Dev/Moonlark/pull/32#issuecomment-2119084755) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +5. 🗣 Commented on [#304](https://github.com/Remi-Gau/eCobidas/pull/304#issuecomment-2118845312) in [Remi-Gau/eCobidas](https://github.com/Remi-Gau/eCobidas) +6. 🗣 Commented on [#31](https://github.com/Moonlark-Dev/Moonlark/pull/31#issuecomment-2118801024) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +7. 🗣 Commented on [#17](https://github.com/njzjz/zhihubackup/pull/17#issuecomment-2118445420) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) +8. 🗣 Commented on [#639](https://github.com/HEXRD/hexrd/pull/639#issuecomment-2118240531) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +9. 🗣 Commented on [#852](https://github.com/spacetelescope/webbpsf/pull/852#issuecomment-2118174877) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +10. 🗣 Commented on [#851](https://github.com/spacetelescope/webbpsf/pull/851#issuecomment-2117906027) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) From 5c2eeeca6632f5c8265302e871f055f0f17ba9d3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 May 2024 00:39:57 +0000 Subject: [PATCH 1919/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d218389a..55e25b64 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/njzjz/wenxian/pull/2#issuecomment-2119476177) in [njzjz/wenxian](https://github.com/njzjz/wenxian) -2. 🗣 Commented on [#9249](https://github.com/statsmodels/statsmodels/pull/9249#issuecomment-2119263890) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#33](https://github.com/Moonlark-Dev/Moonlark/pull/33#issuecomment-2119167153) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -4. 🗣 Commented on [#32](https://github.com/Moonlark-Dev/Moonlark/pull/32#issuecomment-2119084755) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -5. 🗣 Commented on [#304](https://github.com/Remi-Gau/eCobidas/pull/304#issuecomment-2118845312) in [Remi-Gau/eCobidas](https://github.com/Remi-Gau/eCobidas) -6. 🗣 Commented on [#31](https://github.com/Moonlark-Dev/Moonlark/pull/31#issuecomment-2118801024) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -7. 🗣 Commented on [#17](https://github.com/njzjz/zhihubackup/pull/17#issuecomment-2118445420) in [njzjz/zhihubackup](https://github.com/njzjz/zhihubackup) -8. 🗣 Commented on [#639](https://github.com/HEXRD/hexrd/pull/639#issuecomment-2118240531) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -9. 🗣 Commented on [#852](https://github.com/spacetelescope/webbpsf/pull/852#issuecomment-2118174877) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -10. 🗣 Commented on [#851](https://github.com/spacetelescope/webbpsf/pull/851#issuecomment-2117906027) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +1. 🗣 Commented on [#16](https://github.com/njzjz/wenxian/pull/16#issuecomment-2121405113) in [njzjz/wenxian](https://github.com/njzjz/wenxian) +2. 🗣 Commented on [#12](https://github.com/2lambda123/juicefs/pull/12#issuecomment-2120993068) in [2lambda123/juicefs](https://github.com/2lambda123/juicefs) +3. 🗣 Commented on [#22100](https://github.com/spyder-ide/spyder/pull/22100#issuecomment-2120900820) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#90](https://github.com/eastgenomics/trendyQC/pull/90#issuecomment-2120196224) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +5. 🗣 Commented on [#1](https://github.com/2lambda123/-mi-sdm439-android_device_xiaomi_mi439/pull/1#issuecomment-2120144880) in [2lambda123/-mi-sdm439-android_device_xiaomi_mi439](https://github.com/2lambda123/-mi-sdm439-android_device_xiaomi_mi439) +6. 🗣 Commented on [#29](https://github.com/GenevieveBuckley/napari/pull/29#issuecomment-2119754225) in [GenevieveBuckley/napari](https://github.com/GenevieveBuckley/napari) +7. 🗣 Commented on [#14](https://github.com/njzjz/wenxian/pull/14#issuecomment-2119726506) in [njzjz/wenxian](https://github.com/njzjz/wenxian) +8. 🗣 Commented on [#12](https://github.com/njzjz/wenxian/pull/12#issuecomment-2119688015) in [njzjz/wenxian](https://github.com/njzjz/wenxian) +9. 🗣 Commented on [#11](https://github.com/njzjz/wenxian/pull/11#issuecomment-2119667790) in [njzjz/wenxian](https://github.com/njzjz/wenxian) +10. 🗣 Commented on [#9](https://github.com/njzjz/wenxian/pull/9#issuecomment-2119632190) in [njzjz/wenxian](https://github.com/njzjz/wenxian) From ce1fe1b38c3f65721c1c0d8493644c2366b17482 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 May 2024 00:39:45 +0000 Subject: [PATCH 1920/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 55e25b64..e3fe2ceb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#16](https://github.com/njzjz/wenxian/pull/16#issuecomment-2121405113) in [njzjz/wenxian](https://github.com/njzjz/wenxian) -2. 🗣 Commented on [#12](https://github.com/2lambda123/juicefs/pull/12#issuecomment-2120993068) in [2lambda123/juicefs](https://github.com/2lambda123/juicefs) -3. 🗣 Commented on [#22100](https://github.com/spyder-ide/spyder/pull/22100#issuecomment-2120900820) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#90](https://github.com/eastgenomics/trendyQC/pull/90#issuecomment-2120196224) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -5. 🗣 Commented on [#1](https://github.com/2lambda123/-mi-sdm439-android_device_xiaomi_mi439/pull/1#issuecomment-2120144880) in [2lambda123/-mi-sdm439-android_device_xiaomi_mi439](https://github.com/2lambda123/-mi-sdm439-android_device_xiaomi_mi439) -6. 🗣 Commented on [#29](https://github.com/GenevieveBuckley/napari/pull/29#issuecomment-2119754225) in [GenevieveBuckley/napari](https://github.com/GenevieveBuckley/napari) -7. 🗣 Commented on [#14](https://github.com/njzjz/wenxian/pull/14#issuecomment-2119726506) in [njzjz/wenxian](https://github.com/njzjz/wenxian) -8. 🗣 Commented on [#12](https://github.com/njzjz/wenxian/pull/12#issuecomment-2119688015) in [njzjz/wenxian](https://github.com/njzjz/wenxian) -9. 🗣 Commented on [#11](https://github.com/njzjz/wenxian/pull/11#issuecomment-2119667790) in [njzjz/wenxian](https://github.com/njzjz/wenxian) -10. 🗣 Commented on [#9](https://github.com/njzjz/wenxian/pull/9#issuecomment-2119632190) in [njzjz/wenxian](https://github.com/njzjz/wenxian) +1. 🗣 Commented on [#413](https://github.com/aria-tools/ARIA-tools/pull/413#issuecomment-2123623209) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +2. 🗣 Commented on [#4](https://github.com/drauger-os-development/systemd-boot-manager/pull/4#issuecomment-2123584960) in [drauger-os-development/systemd-boot-manager](https://github.com/drauger-os-development/systemd-boot-manager) +3. 🗣 Commented on [#3221](https://github.com/dipy/dipy/pull/3221#issuecomment-2123538532) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#22077](https://github.com/spyder-ide/spyder/pull/22077#issuecomment-2123523035) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#857](https://github.com/spacetelescope/webbpsf/pull/857#issuecomment-2123073468) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#856](https://github.com/spacetelescope/webbpsf/pull/856#issuecomment-2123012979) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +7. 🗣 Commented on [#855](https://github.com/spacetelescope/webbpsf/pull/855#issuecomment-2122810613) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#887](https://github.com/fury-gl/fury/pull/887#issuecomment-2122736171) in [fury-gl/fury](https://github.com/fury-gl/fury) +9. 🗣 Commented on [#33](https://github.com/ITMO-NSS-team/GAMLET/pull/33#issuecomment-2122633598) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) +10. 🗣 Commented on [#10](https://github.com/privacyidea/scripts/pull/10#issuecomment-2122459507) in [privacyidea/scripts](https://github.com/privacyidea/scripts) From 833e88e60914864db39b2213bb869bdbf11fb0c7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 May 2024 00:39:34 +0000 Subject: [PATCH 1921/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e3fe2ceb..031b2cf3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#413](https://github.com/aria-tools/ARIA-tools/pull/413#issuecomment-2123623209) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -2. 🗣 Commented on [#4](https://github.com/drauger-os-development/systemd-boot-manager/pull/4#issuecomment-2123584960) in [drauger-os-development/systemd-boot-manager](https://github.com/drauger-os-development/systemd-boot-manager) -3. 🗣 Commented on [#3221](https://github.com/dipy/dipy/pull/3221#issuecomment-2123538532) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#22077](https://github.com/spyder-ide/spyder/pull/22077#issuecomment-2123523035) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#857](https://github.com/spacetelescope/webbpsf/pull/857#issuecomment-2123073468) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#856](https://github.com/spacetelescope/webbpsf/pull/856#issuecomment-2123012979) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -7. 🗣 Commented on [#855](https://github.com/spacetelescope/webbpsf/pull/855#issuecomment-2122810613) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#887](https://github.com/fury-gl/fury/pull/887#issuecomment-2122736171) in [fury-gl/fury](https://github.com/fury-gl/fury) -9. 🗣 Commented on [#33](https://github.com/ITMO-NSS-team/GAMLET/pull/33#issuecomment-2122633598) in [ITMO-NSS-team/GAMLET](https://github.com/ITMO-NSS-team/GAMLET) -10. 🗣 Commented on [#10](https://github.com/privacyidea/scripts/pull/10#issuecomment-2122459507) in [privacyidea/scripts](https://github.com/privacyidea/scripts) +1. 🗣 Commented on [#313](https://github.com/AdvancedPhotonSource/tike/pull/313#issuecomment-2125655015) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +2. 🗣 Commented on [#4604](https://github.com/MDAnalysis/mdanalysis/pull/4604#issuecomment-2125591157) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#2](https://github.com/eastgenomics/variant_workbook_parser/pull/2#issuecomment-2125285797) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) +4. 🗣 Commented on [#993](https://github.com/scilus/scilpy/pull/993#issuecomment-2125139079) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#37](https://github.com/Moonlark-Dev/Moonlark/pull/37#issuecomment-2125138164) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +6. 🗣 Commented on [#42](https://github.com/rhinstaller/python-meh/pull/42#issuecomment-2124867976) in [rhinstaller/python-meh](https://github.com/rhinstaller/python-meh) +7. 🗣 Commented on [#11](https://github.com/eastgenomics/Haemonc_requests/pull/11#issuecomment-2124620158) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) +8. 🗣 Commented on [#1](https://github.com/eastgenomics/germline_from_somatic/pull/1#issuecomment-2124575417) in [eastgenomics/germline_from_somatic](https://github.com/eastgenomics/germline_from_somatic) +9. 🗣 Commented on [#413](https://github.com/aria-tools/ARIA-tools/pull/413#issuecomment-2123623209) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +10. 🗣 Commented on [#4](https://github.com/drauger-os-development/systemd-boot-manager/pull/4#issuecomment-2123584960) in [drauger-os-development/systemd-boot-manager](https://github.com/drauger-os-development/systemd-boot-manager) From 1197c388bfc740a5c806d6efba2daa6e738c8087 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 24 May 2024 00:40:04 +0000 Subject: [PATCH 1922/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 031b2cf3..43e781b8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#313](https://github.com/AdvancedPhotonSource/tike/pull/313#issuecomment-2125655015) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -2. 🗣 Commented on [#4604](https://github.com/MDAnalysis/mdanalysis/pull/4604#issuecomment-2125591157) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#2](https://github.com/eastgenomics/variant_workbook_parser/pull/2#issuecomment-2125285797) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) -4. 🗣 Commented on [#993](https://github.com/scilus/scilpy/pull/993#issuecomment-2125139079) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#37](https://github.com/Moonlark-Dev/Moonlark/pull/37#issuecomment-2125138164) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -6. 🗣 Commented on [#42](https://github.com/rhinstaller/python-meh/pull/42#issuecomment-2124867976) in [rhinstaller/python-meh](https://github.com/rhinstaller/python-meh) -7. 🗣 Commented on [#11](https://github.com/eastgenomics/Haemonc_requests/pull/11#issuecomment-2124620158) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) -8. 🗣 Commented on [#1](https://github.com/eastgenomics/germline_from_somatic/pull/1#issuecomment-2124575417) in [eastgenomics/germline_from_somatic](https://github.com/eastgenomics/germline_from_somatic) -9. 🗣 Commented on [#413](https://github.com/aria-tools/ARIA-tools/pull/413#issuecomment-2123623209) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -10. 🗣 Commented on [#4](https://github.com/drauger-os-development/systemd-boot-manager/pull/4#issuecomment-2123584960) in [drauger-os-development/systemd-boot-manager](https://github.com/drauger-os-development/systemd-boot-manager) +1. 🗣 Commented on [#1237](https://github.com/tableau/connector-plugin-sdk/pull/1237#issuecomment-2128204360) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) +2. 🗣 Commented on [#1592](https://github.com/spacetelescope/jwql/pull/1592#issuecomment-2128016026) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#243](https://github.com/scil-vital/dwi_ml/pull/243#issuecomment-2127859630) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +4. 🗣 Commented on [#10](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/10#issuecomment-2127486792) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +5. 🗣 Commented on [#9](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/9#issuecomment-2127331764) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +6. 🗣 Commented on [#38](https://github.com/Moonlark-Dev/Moonlark/pull/38#issuecomment-2127259002) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +7. 🗣 Commented on [#99](https://github.com/INT-NIT/DigLabTools/pull/99#issuecomment-2127253544) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +8. 🗣 Commented on [#588](https://github.com/aramis-lab/clinicadl/pull/588#issuecomment-2127124263) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +9. 🗣 Commented on [#6](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/6#issuecomment-2126969708) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +10. 🗣 Commented on [#4](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/4#issuecomment-2126842670) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) From 06508ab620940bd7117c20ef324b24165fdb3fa2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 May 2024 00:38:52 +0000 Subject: [PATCH 1923/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 43e781b8..98b5124e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1237](https://github.com/tableau/connector-plugin-sdk/pull/1237#issuecomment-2128204360) in [tableau/connector-plugin-sdk](https://github.com/tableau/connector-plugin-sdk) -2. 🗣 Commented on [#1592](https://github.com/spacetelescope/jwql/pull/1592#issuecomment-2128016026) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#243](https://github.com/scil-vital/dwi_ml/pull/243#issuecomment-2127859630) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -4. 🗣 Commented on [#10](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/10#issuecomment-2127486792) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -5. 🗣 Commented on [#9](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/9#issuecomment-2127331764) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -6. 🗣 Commented on [#38](https://github.com/Moonlark-Dev/Moonlark/pull/38#issuecomment-2127259002) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -7. 🗣 Commented on [#99](https://github.com/INT-NIT/DigLabTools/pull/99#issuecomment-2127253544) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -8. 🗣 Commented on [#588](https://github.com/aramis-lab/clinicadl/pull/588#issuecomment-2127124263) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -9. 🗣 Commented on [#6](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/6#issuecomment-2126969708) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -10. 🗣 Commented on [#4](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/4#issuecomment-2126842670) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +1. 🗣 Commented on [#22088](https://github.com/spyder-ide/spyder/pull/22088#issuecomment-2130343219) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#4465](https://github.com/pyload/pyload/pull/4465#issuecomment-2129922536) in [pyload/pyload](https://github.com/pyload/pyload) +3. 🗣 Commented on [#6](https://github.com/normcontrol/normocontrol-recommendation-system/pull/6#issuecomment-2129666170) in [normcontrol/normocontrol-recommendation-system](https://github.com/normcontrol/normocontrol-recommendation-system) +4. 🗣 Commented on [#3948](https://github.com/privacyidea/privacyidea/pull/3948#issuecomment-2129291451) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#144](https://github.com/aimclub/Fedot.Industrial/pull/144#issuecomment-2128899440) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#27](https://github.com/njzjz/wenxian/pull/27#issuecomment-2128852006) in [njzjz/wenxian](https://github.com/njzjz/wenxian) +7. 🗣 Commented on [#11](https://github.com/2lambda123/huawei-noah-Pretrained-Language-Model/pull/11#issuecomment-2128546708) in [2lambda123/huawei-noah-Pretrained-Language-Model](https://github.com/2lambda123/huawei-noah-Pretrained-Language-Model) +8. 🗣 Commented on [#27](https://github.com/2lambda123/pyca-cryptography/pull/27#issuecomment-2128530562) in [2lambda123/pyca-cryptography](https://github.com/2lambda123/pyca-cryptography) +9. 🗣 Commented on [#2](https://github.com/2lambda123/lmco-dart/pull/2#issuecomment-2128516090) in [2lambda123/lmco-dart](https://github.com/2lambda123/lmco-dart) +10. 🗣 Commented on [#2](https://github.com/2lambda123/jamesfolberth-jupyterhub_AWS_deployment/pull/2#issuecomment-2128515796) in [2lambda123/jamesfolberth-jupyterhub_AWS_deployment](https://github.com/2lambda123/jamesfolberth-jupyterhub_AWS_deployment) From 404c2b17bd066e7cd7e423e22bed0f620ff437df Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 26 May 2024 00:43:25 +0000 Subject: [PATCH 1924/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 98b5124e..5bd7a71f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#22088](https://github.com/spyder-ide/spyder/pull/22088#issuecomment-2130343219) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#4465](https://github.com/pyload/pyload/pull/4465#issuecomment-2129922536) in [pyload/pyload](https://github.com/pyload/pyload) -3. 🗣 Commented on [#6](https://github.com/normcontrol/normocontrol-recommendation-system/pull/6#issuecomment-2129666170) in [normcontrol/normocontrol-recommendation-system](https://github.com/normcontrol/normocontrol-recommendation-system) -4. 🗣 Commented on [#3948](https://github.com/privacyidea/privacyidea/pull/3948#issuecomment-2129291451) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#144](https://github.com/aimclub/Fedot.Industrial/pull/144#issuecomment-2128899440) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#27](https://github.com/njzjz/wenxian/pull/27#issuecomment-2128852006) in [njzjz/wenxian](https://github.com/njzjz/wenxian) -7. 🗣 Commented on [#11](https://github.com/2lambda123/huawei-noah-Pretrained-Language-Model/pull/11#issuecomment-2128546708) in [2lambda123/huawei-noah-Pretrained-Language-Model](https://github.com/2lambda123/huawei-noah-Pretrained-Language-Model) -8. 🗣 Commented on [#27](https://github.com/2lambda123/pyca-cryptography/pull/27#issuecomment-2128530562) in [2lambda123/pyca-cryptography](https://github.com/2lambda123/pyca-cryptography) -9. 🗣 Commented on [#2](https://github.com/2lambda123/lmco-dart/pull/2#issuecomment-2128516090) in [2lambda123/lmco-dart](https://github.com/2lambda123/lmco-dart) -10. 🗣 Commented on [#2](https://github.com/2lambda123/jamesfolberth-jupyterhub_AWS_deployment/pull/2#issuecomment-2128515796) in [2lambda123/jamesfolberth-jupyterhub_AWS_deployment](https://github.com/2lambda123/jamesfolberth-jupyterhub_AWS_deployment) +1. 🗣 Commented on [#22120](https://github.com/spyder-ide/spyder/pull/22120#issuecomment-2131312330) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#44](https://github.com/Moonlark-Dev/Moonlark/pull/44#issuecomment-2131161897) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +3. 🗣 Commented on [#42](https://github.com/Moonlark-Dev/Moonlark/pull/42#issuecomment-2131095293) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +4. 🗣 Commented on [#1](https://github.com/guanchengliu17/MLS-API/pull/1#issuecomment-2130642134) in [guanchengliu17/MLS-API](https://github.com/guanchengliu17/MLS-API) +5. 🗣 Commented on [#115](https://github.com/MDAnalysis/cookiecutter-mdakit/pull/115#issuecomment-2130610776) in [MDAnalysis/cookiecutter-mdakit](https://github.com/MDAnalysis/cookiecutter-mdakit) +6. 🗣 Commented on [#22088](https://github.com/spyder-ide/spyder/pull/22088#issuecomment-2130343219) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#4465](https://github.com/pyload/pyload/pull/4465#issuecomment-2129922536) in [pyload/pyload](https://github.com/pyload/pyload) +8. 🗣 Commented on [#6](https://github.com/normcontrol/normocontrol-recommendation-system/pull/6#issuecomment-2129666170) in [normcontrol/normocontrol-recommendation-system](https://github.com/normcontrol/normocontrol-recommendation-system) +9. 🗣 Commented on [#3948](https://github.com/privacyidea/privacyidea/pull/3948#issuecomment-2129291451) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#144](https://github.com/aimclub/Fedot.Industrial/pull/144#issuecomment-2128899440) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) From 00767e61e127051c1d8b279bb47e17f9b071718f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 May 2024 00:41:06 +0000 Subject: [PATCH 1925/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5bd7a71f..f663aca0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#22120](https://github.com/spyder-ide/spyder/pull/22120#issuecomment-2131312330) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#44](https://github.com/Moonlark-Dev/Moonlark/pull/44#issuecomment-2131161897) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -3. 🗣 Commented on [#42](https://github.com/Moonlark-Dev/Moonlark/pull/42#issuecomment-2131095293) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -4. 🗣 Commented on [#1](https://github.com/guanchengliu17/MLS-API/pull/1#issuecomment-2130642134) in [guanchengliu17/MLS-API](https://github.com/guanchengliu17/MLS-API) -5. 🗣 Commented on [#115](https://github.com/MDAnalysis/cookiecutter-mdakit/pull/115#issuecomment-2130610776) in [MDAnalysis/cookiecutter-mdakit](https://github.com/MDAnalysis/cookiecutter-mdakit) -6. 🗣 Commented on [#22088](https://github.com/spyder-ide/spyder/pull/22088#issuecomment-2130343219) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#4465](https://github.com/pyload/pyload/pull/4465#issuecomment-2129922536) in [pyload/pyload](https://github.com/pyload/pyload) -8. 🗣 Commented on [#6](https://github.com/normcontrol/normocontrol-recommendation-system/pull/6#issuecomment-2129666170) in [normcontrol/normocontrol-recommendation-system](https://github.com/normcontrol/normocontrol-recommendation-system) -9. 🗣 Commented on [#3948](https://github.com/privacyidea/privacyidea/pull/3948#issuecomment-2129291451) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#144](https://github.com/aimclub/Fedot.Industrial/pull/144#issuecomment-2128899440) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +1. 🗣 Commented on [#515](https://github.com/oemof/tespy/pull/515#issuecomment-2132382207) in [oemof/tespy](https://github.com/oemof/tespy) +2. 🗣 Commented on [#46](https://github.com/Moonlark-Dev/Moonlark/pull/46#issuecomment-2132170974) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +3. 🗣 Commented on [#45](https://github.com/Moonlark-Dev/Moonlark/pull/45#issuecomment-2132118875) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +4. 🗣 Commented on [#22120](https://github.com/spyder-ide/spyder/pull/22120#issuecomment-2131312330) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#44](https://github.com/Moonlark-Dev/Moonlark/pull/44#issuecomment-2131161897) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +6. 🗣 Commented on [#42](https://github.com/Moonlark-Dev/Moonlark/pull/42#issuecomment-2131095293) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +7. 🗣 Commented on [#1](https://github.com/guanchengliu17/MLS-API/pull/1#issuecomment-2130642134) in [guanchengliu17/MLS-API](https://github.com/guanchengliu17/MLS-API) +8. 🗣 Commented on [#115](https://github.com/MDAnalysis/cookiecutter-mdakit/pull/115#issuecomment-2130610776) in [MDAnalysis/cookiecutter-mdakit](https://github.com/MDAnalysis/cookiecutter-mdakit) +9. 🗣 Commented on [#22088](https://github.com/spyder-ide/spyder/pull/22088#issuecomment-2130343219) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#4465](https://github.com/pyload/pyload/pull/4465#issuecomment-2129922536) in [pyload/pyload](https://github.com/pyload/pyload) From 53639a447b76ac57ff971ab6e18fa65eb8384c10 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 May 2024 00:40:05 +0000 Subject: [PATCH 1926/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f663aca0..ae5153d0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#515](https://github.com/oemof/tespy/pull/515#issuecomment-2132382207) in [oemof/tespy](https://github.com/oemof/tespy) -2. 🗣 Commented on [#46](https://github.com/Moonlark-Dev/Moonlark/pull/46#issuecomment-2132170974) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -3. 🗣 Commented on [#45](https://github.com/Moonlark-Dev/Moonlark/pull/45#issuecomment-2132118875) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -4. 🗣 Commented on [#22120](https://github.com/spyder-ide/spyder/pull/22120#issuecomment-2131312330) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#44](https://github.com/Moonlark-Dev/Moonlark/pull/44#issuecomment-2131161897) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -6. 🗣 Commented on [#42](https://github.com/Moonlark-Dev/Moonlark/pull/42#issuecomment-2131095293) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -7. 🗣 Commented on [#1](https://github.com/guanchengliu17/MLS-API/pull/1#issuecomment-2130642134) in [guanchengliu17/MLS-API](https://github.com/guanchengliu17/MLS-API) -8. 🗣 Commented on [#115](https://github.com/MDAnalysis/cookiecutter-mdakit/pull/115#issuecomment-2130610776) in [MDAnalysis/cookiecutter-mdakit](https://github.com/MDAnalysis/cookiecutter-mdakit) -9. 🗣 Commented on [#22088](https://github.com/spyder-ide/spyder/pull/22088#issuecomment-2130343219) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#4465](https://github.com/pyload/pyload/pull/4465#issuecomment-2129922536) in [pyload/pyload](https://github.com/pyload/pyload) +1. 🗣 Commented on [#2](https://github.com/guanchengliu17/MLS-API/pull/2#issuecomment-2134173404) in [guanchengliu17/MLS-API](https://github.com/guanchengliu17/MLS-API) +2. 🗣 Commented on [#2](https://github.com/2lambda123/triton/pull/2#issuecomment-2133947260) in [2lambda123/triton](https://github.com/2lambda123/triton) +3. 🗣 Commented on [#26](https://github.com/2lambda123/spot_ros2/pull/26#issuecomment-2133942305) in [2lambda123/spot_ros2](https://github.com/2lambda123/spot_ros2) +4. 🗣 Commented on [#6](https://github.com/2lambda123/ros_utilities/pull/6#issuecomment-2133940489) in [2lambda123/ros_utilities](https://github.com/2lambda123/ros_utilities) +5. 🗣 Commented on [#2](https://github.com/2lambda123/cheader2json/pull/2#issuecomment-2133918350) in [2lambda123/cheader2json](https://github.com/2lambda123/cheader2json) +6. 🗣 Commented on [#3013](https://github.com/astropy/astroquery/pull/3013#issuecomment-2133830768) in [astropy/astroquery](https://github.com/astropy/astroquery) +7. 🗣 Commented on [#146](https://github.com/aimclub/Fedot.Industrial/pull/146#issuecomment-2133587343) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +8. 🗣 Commented on [#1](https://github.com/MDAnalysis/mda-openbabel-converter/pull/1#issuecomment-2133474716) in [MDAnalysis/mda-openbabel-converter](https://github.com/MDAnalysis/mda-openbabel-converter) +9. 🗣 Commented on [#3239](https://github.com/dipy/dipy/pull/3239#issuecomment-2133426382) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#5676](https://github.com/rhinstaller/anaconda/pull/5676#issuecomment-2133300683) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 026563919961726bd571f47a928ceabd78f97971 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 May 2024 00:43:26 +0000 Subject: [PATCH 1927/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ae5153d0..c3e78b64 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/guanchengliu17/MLS-API/pull/2#issuecomment-2134173404) in [guanchengliu17/MLS-API](https://github.com/guanchengliu17/MLS-API) -2. 🗣 Commented on [#2](https://github.com/2lambda123/triton/pull/2#issuecomment-2133947260) in [2lambda123/triton](https://github.com/2lambda123/triton) -3. 🗣 Commented on [#26](https://github.com/2lambda123/spot_ros2/pull/26#issuecomment-2133942305) in [2lambda123/spot_ros2](https://github.com/2lambda123/spot_ros2) -4. 🗣 Commented on [#6](https://github.com/2lambda123/ros_utilities/pull/6#issuecomment-2133940489) in [2lambda123/ros_utilities](https://github.com/2lambda123/ros_utilities) -5. 🗣 Commented on [#2](https://github.com/2lambda123/cheader2json/pull/2#issuecomment-2133918350) in [2lambda123/cheader2json](https://github.com/2lambda123/cheader2json) -6. 🗣 Commented on [#3013](https://github.com/astropy/astroquery/pull/3013#issuecomment-2133830768) in [astropy/astroquery](https://github.com/astropy/astroquery) -7. 🗣 Commented on [#146](https://github.com/aimclub/Fedot.Industrial/pull/146#issuecomment-2133587343) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -8. 🗣 Commented on [#1](https://github.com/MDAnalysis/mda-openbabel-converter/pull/1#issuecomment-2133474716) in [MDAnalysis/mda-openbabel-converter](https://github.com/MDAnalysis/mda-openbabel-converter) -9. 🗣 Commented on [#3239](https://github.com/dipy/dipy/pull/3239#issuecomment-2133426382) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#5676](https://github.com/rhinstaller/anaconda/pull/5676#issuecomment-2133300683) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#1098](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1098#issuecomment-2135870670) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#315](https://github.com/AdvancedPhotonSource/tike/pull/315#issuecomment-2135828073) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +3. 🗣 Commented on [#2](https://github.com/guanchengliu17/MLS-API/pull/2#issuecomment-2135778102) in [guanchengliu17/MLS-API](https://github.com/guanchengliu17/MLS-API) +4. 🗣 Commented on [#314](https://github.com/AdvancedPhotonSource/tike/pull/314#issuecomment-2135488956) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +5. 🗣 Commented on [#932](https://github.com/ToFuProject/tofu/pull/932#issuecomment-2135313328) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#149](https://github.com/aimclub/Fedot.Industrial/pull/149#issuecomment-2135311757) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#12](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/12#issuecomment-2135237657) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +8. 🗣 Commented on [#31](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/31#issuecomment-2135085309) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +9. 🗣 Commented on [#150](https://github.com/INT-NIT/BEP032tools/pull/150#issuecomment-2135079973) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) +10. 🗣 Commented on [#2](https://github.com/MDAnalysis/mda-openbabel-converter/pull/2#issuecomment-2134983498) in [MDAnalysis/mda-openbabel-converter](https://github.com/MDAnalysis/mda-openbabel-converter) From 252a470d0790bd98f0d2b301d217f965fce45fd9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 30 May 2024 00:40:18 +0000 Subject: [PATCH 1928/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c3e78b64..4039623f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1098](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1098#issuecomment-2135870670) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#315](https://github.com/AdvancedPhotonSource/tike/pull/315#issuecomment-2135828073) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -3. 🗣 Commented on [#2](https://github.com/guanchengliu17/MLS-API/pull/2#issuecomment-2135778102) in [guanchengliu17/MLS-API](https://github.com/guanchengliu17/MLS-API) -4. 🗣 Commented on [#314](https://github.com/AdvancedPhotonSource/tike/pull/314#issuecomment-2135488956) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -5. 🗣 Commented on [#932](https://github.com/ToFuProject/tofu/pull/932#issuecomment-2135313328) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#149](https://github.com/aimclub/Fedot.Industrial/pull/149#issuecomment-2135311757) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#12](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/12#issuecomment-2135237657) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -8. 🗣 Commented on [#31](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/31#issuecomment-2135085309) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -9. 🗣 Commented on [#150](https://github.com/INT-NIT/BEP032tools/pull/150#issuecomment-2135079973) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) -10. 🗣 Commented on [#2](https://github.com/MDAnalysis/mda-openbabel-converter/pull/2#issuecomment-2134983498) in [MDAnalysis/mda-openbabel-converter](https://github.com/MDAnalysis/mda-openbabel-converter) +1. 🗣 Commented on [#316](https://github.com/AdvancedPhotonSource/tike/pull/316#issuecomment-2138440251) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +2. 🗣 Commented on [#1709](https://github.com/OGGM/oggm/pull/1709#issuecomment-2138283941) in [OGGM/oggm](https://github.com/OGGM/oggm) +3. 🗣 Commented on [#3015](https://github.com/astropy/astroquery/pull/3015#issuecomment-2138218940) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#3014](https://github.com/astropy/astroquery/pull/3014#issuecomment-2137765404) in [astropy/astroquery](https://github.com/astropy/astroquery) +5. 🗣 Commented on [#15](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/15#issuecomment-2137641581) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +6. 🗣 Commented on [#13](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/13#issuecomment-2137636232) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +7. 🗣 Commented on [#4](https://github.com/2lambda123/cisagov-Malcolm/pull/4#issuecomment-2137113282) in [2lambda123/cisagov-Malcolm](https://github.com/2lambda123/cisagov-Malcolm) +8. 🗣 Commented on [#586](https://github.com/aramis-lab/clinicadl/pull/586#issuecomment-2136895782) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +9. 🗣 Commented on [#5682](https://github.com/rhinstaller/anaconda/pull/5682#issuecomment-2136846331) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#3951](https://github.com/privacyidea/privacyidea/pull/3951#issuecomment-2136828230) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From 01388a1a7d3f96eac268c40da49501a728168c7d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 31 May 2024 00:41:15 +0000 Subject: [PATCH 1929/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4039623f..8fe91222 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#316](https://github.com/AdvancedPhotonSource/tike/pull/316#issuecomment-2138440251) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -2. 🗣 Commented on [#1709](https://github.com/OGGM/oggm/pull/1709#issuecomment-2138283941) in [OGGM/oggm](https://github.com/OGGM/oggm) -3. 🗣 Commented on [#3015](https://github.com/astropy/astroquery/pull/3015#issuecomment-2138218940) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#3014](https://github.com/astropy/astroquery/pull/3014#issuecomment-2137765404) in [astropy/astroquery](https://github.com/astropy/astroquery) -5. 🗣 Commented on [#15](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/15#issuecomment-2137641581) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -6. 🗣 Commented on [#13](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/13#issuecomment-2137636232) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -7. 🗣 Commented on [#4](https://github.com/2lambda123/cisagov-Malcolm/pull/4#issuecomment-2137113282) in [2lambda123/cisagov-Malcolm](https://github.com/2lambda123/cisagov-Malcolm) -8. 🗣 Commented on [#586](https://github.com/aramis-lab/clinicadl/pull/586#issuecomment-2136895782) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -9. 🗣 Commented on [#5682](https://github.com/rhinstaller/anaconda/pull/5682#issuecomment-2136846331) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#3951](https://github.com/privacyidea/privacyidea/pull/3951#issuecomment-2136828230) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#10](https://github.com/2lambda123/scylladb-scylladb/pull/10#issuecomment-2141010228) in [2lambda123/scylladb-scylladb](https://github.com/2lambda123/scylladb-scylladb) +2. 🗣 Commented on [#5](https://github.com/Sowhat999/New-Salem/pull/5#issuecomment-2140992873) in [Sowhat999/New-Salem](https://github.com/Sowhat999/New-Salem) +3. 🗣 Commented on [#3](https://github.com/2lambda123/Huawei-containerops/pull/3#issuecomment-2140985467) in [2lambda123/Huawei-containerops](https://github.com/2lambda123/Huawei-containerops) +4. 🗣 Commented on [#5](https://github.com/2lambda123/jerabaul29-Cylinder2DFlowControlDRL/pull/5#issuecomment-2140979450) in [2lambda123/jerabaul29-Cylinder2DFlowControlDRL](https://github.com/2lambda123/jerabaul29-Cylinder2DFlowControlDRL) +5. 🗣 Commented on [#3](https://github.com/2lambda123/ibarrond-VariationalAutoencoders/pull/3#issuecomment-2140977738) in [2lambda123/ibarrond-VariationalAutoencoders](https://github.com/2lambda123/ibarrond-VariationalAutoencoders) +6. 🗣 Commented on [#5](https://github.com/2lambda123/google-research-pegasus/pull/5#issuecomment-2140974008) in [2lambda123/google-research-pegasus](https://github.com/2lambda123/google-research-pegasus) +7. 🗣 Commented on [#5](https://github.com/2lambda123/-inbarhub-DDPM_inversion/pull/5#issuecomment-2140973801) in [2lambda123/-inbarhub-DDPM_inversion](https://github.com/2lambda123/-inbarhub-DDPM_inversion) +8. 🗣 Commented on [#4](https://github.com/Sowhat999/evennia/pull/4#issuecomment-2140969695) in [Sowhat999/evennia](https://github.com/Sowhat999/evennia) +9. 🗣 Commented on [#6](https://github.com/2lambda123/ultralytics-yolov5/pull/6#issuecomment-2140969319) in [2lambda123/ultralytics-yolov5](https://github.com/2lambda123/ultralytics-yolov5) +10. 🗣 Commented on [#6](https://github.com/2lambda123/NREL-EnergyPlus/pull/6#issuecomment-2140958907) in [2lambda123/NREL-EnergyPlus](https://github.com/2lambda123/NREL-EnergyPlus) From d1d2d6e6be01ddee1709399634a589a3824dad5c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 00:43:13 +0000 Subject: [PATCH 1930/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8fe91222..35ff1e06 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#10](https://github.com/2lambda123/scylladb-scylladb/pull/10#issuecomment-2141010228) in [2lambda123/scylladb-scylladb](https://github.com/2lambda123/scylladb-scylladb) -2. 🗣 Commented on [#5](https://github.com/Sowhat999/New-Salem/pull/5#issuecomment-2140992873) in [Sowhat999/New-Salem](https://github.com/Sowhat999/New-Salem) -3. 🗣 Commented on [#3](https://github.com/2lambda123/Huawei-containerops/pull/3#issuecomment-2140985467) in [2lambda123/Huawei-containerops](https://github.com/2lambda123/Huawei-containerops) -4. 🗣 Commented on [#5](https://github.com/2lambda123/jerabaul29-Cylinder2DFlowControlDRL/pull/5#issuecomment-2140979450) in [2lambda123/jerabaul29-Cylinder2DFlowControlDRL](https://github.com/2lambda123/jerabaul29-Cylinder2DFlowControlDRL) -5. 🗣 Commented on [#3](https://github.com/2lambda123/ibarrond-VariationalAutoencoders/pull/3#issuecomment-2140977738) in [2lambda123/ibarrond-VariationalAutoencoders](https://github.com/2lambda123/ibarrond-VariationalAutoencoders) -6. 🗣 Commented on [#5](https://github.com/2lambda123/google-research-pegasus/pull/5#issuecomment-2140974008) in [2lambda123/google-research-pegasus](https://github.com/2lambda123/google-research-pegasus) -7. 🗣 Commented on [#5](https://github.com/2lambda123/-inbarhub-DDPM_inversion/pull/5#issuecomment-2140973801) in [2lambda123/-inbarhub-DDPM_inversion](https://github.com/2lambda123/-inbarhub-DDPM_inversion) -8. 🗣 Commented on [#4](https://github.com/Sowhat999/evennia/pull/4#issuecomment-2140969695) in [Sowhat999/evennia](https://github.com/Sowhat999/evennia) -9. 🗣 Commented on [#6](https://github.com/2lambda123/ultralytics-yolov5/pull/6#issuecomment-2140969319) in [2lambda123/ultralytics-yolov5](https://github.com/2lambda123/ultralytics-yolov5) -10. 🗣 Commented on [#6](https://github.com/2lambda123/NREL-EnergyPlus/pull/6#issuecomment-2140958907) in [2lambda123/NREL-EnergyPlus](https://github.com/2lambda123/NREL-EnergyPlus) +1. 🗣 Commented on [#191](https://github.com/tj-python/gcloud-aio/pull/191#issuecomment-2143121004) in [tj-python/gcloud-aio](https://github.com/tj-python/gcloud-aio) +2. 🗣 Commented on [#858](https://github.com/OpenFreeEnergy/openfe/pull/858#issuecomment-2142822277) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +3. 🗣 Commented on [#2895](https://github.com/metabrainz/listenbrainz-server/pull/2895#issuecomment-2142697406) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#855](https://github.com/OpenFreeEnergy/openfe/pull/855#issuecomment-2142697109) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +5. 🗣 Commented on [#935](https://github.com/ToFuProject/tofu/pull/935#issuecomment-2142472009) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#50](https://github.com/Moonlark-Dev/Moonlark/pull/50#issuecomment-2142249769) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +7. 🗣 Commented on [#5](https://github.com/2lambda123/Huawei-containerops/pull/5#issuecomment-2141852457) in [2lambda123/Huawei-containerops](https://github.com/2lambda123/Huawei-containerops) +8. 🗣 Commented on [#2](https://github.com/eastgenomics/komodo_cron_metrics/pull/2#issuecomment-2141829434) in [eastgenomics/komodo_cron_metrics](https://github.com/eastgenomics/komodo_cron_metrics) +9. 🗣 Commented on [#93](https://github.com/eastgenomics/athena/pull/93#issuecomment-2141791935) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +10. 🗣 Commented on [#65](https://github.com/Fatal1ty/aioapns/pull/65#issuecomment-2141741262) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) From f72d0536d0f1eac4805287ca9dbbf55e56ce616c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 2 Jun 2024 00:43:41 +0000 Subject: [PATCH 1931/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 35ff1e06..b497a5e7 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#191](https://github.com/tj-python/gcloud-aio/pull/191#issuecomment-2143121004) in [tj-python/gcloud-aio](https://github.com/tj-python/gcloud-aio) -2. 🗣 Commented on [#858](https://github.com/OpenFreeEnergy/openfe/pull/858#issuecomment-2142822277) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -3. 🗣 Commented on [#2895](https://github.com/metabrainz/listenbrainz-server/pull/2895#issuecomment-2142697406) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#855](https://github.com/OpenFreeEnergy/openfe/pull/855#issuecomment-2142697109) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -5. 🗣 Commented on [#935](https://github.com/ToFuProject/tofu/pull/935#issuecomment-2142472009) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -6. 🗣 Commented on [#50](https://github.com/Moonlark-Dev/Moonlark/pull/50#issuecomment-2142249769) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -7. 🗣 Commented on [#5](https://github.com/2lambda123/Huawei-containerops/pull/5#issuecomment-2141852457) in [2lambda123/Huawei-containerops](https://github.com/2lambda123/Huawei-containerops) -8. 🗣 Commented on [#2](https://github.com/eastgenomics/komodo_cron_metrics/pull/2#issuecomment-2141829434) in [eastgenomics/komodo_cron_metrics](https://github.com/eastgenomics/komodo_cron_metrics) -9. 🗣 Commented on [#93](https://github.com/eastgenomics/athena/pull/93#issuecomment-2141791935) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -10. 🗣 Commented on [#65](https://github.com/Fatal1ty/aioapns/pull/65#issuecomment-2141741262) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) +1. 🗣 Commented on [#4478](https://github.com/pyload/pyload/pull/4478#issuecomment-2143589552) in [pyload/pyload](https://github.com/pyload/pyload) +2. 🗣 Commented on [#9](https://github.com/2lambda123/huawei-noah-xingtian/pull/9#issuecomment-2143573786) in [2lambda123/huawei-noah-xingtian](https://github.com/2lambda123/huawei-noah-xingtian) +3. 🗣 Commented on [#9264](https://github.com/statsmodels/statsmodels/pull/9264#issuecomment-2143522393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +4. 🗣 Commented on [#38](https://github.com/kossiitkgp/bhattu/pull/38#issuecomment-2143431846) in [kossiitkgp/bhattu](https://github.com/kossiitkgp/bhattu) +5. 🗣 Commented on [#37](https://github.com/kossiitkgp/bhattu/pull/37#issuecomment-2143410100) in [kossiitkgp/bhattu](https://github.com/kossiitkgp/bhattu) +6. 🗣 Commented on [#2](https://github.com/2lambda123/Huawei-OpenStack_Driver/pull/2#issuecomment-2143286714) in [2lambda123/Huawei-OpenStack_Driver](https://github.com/2lambda123/Huawei-OpenStack_Driver) +7. 🗣 Commented on [#12](https://github.com/2lambda123/huawei-noah-Pretrained-Language-Model/pull/12#issuecomment-2143268015) in [2lambda123/huawei-noah-Pretrained-Language-Model](https://github.com/2lambda123/huawei-noah-Pretrained-Language-Model) +8. 🗣 Commented on [#191](https://github.com/tj-python/gcloud-aio/pull/191#issuecomment-2143121004) in [tj-python/gcloud-aio](https://github.com/tj-python/gcloud-aio) +9. 🗣 Commented on [#858](https://github.com/OpenFreeEnergy/openfe/pull/858#issuecomment-2142822277) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#2895](https://github.com/metabrainz/listenbrainz-server/pull/2895#issuecomment-2142697406) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 8c5e32df49bfb9925e93b5b0a416d3392c233eb3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Jun 2024 00:41:31 +0000 Subject: [PATCH 1932/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b497a5e7..0d464948 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4478](https://github.com/pyload/pyload/pull/4478#issuecomment-2143589552) in [pyload/pyload](https://github.com/pyload/pyload) -2. 🗣 Commented on [#9](https://github.com/2lambda123/huawei-noah-xingtian/pull/9#issuecomment-2143573786) in [2lambda123/huawei-noah-xingtian](https://github.com/2lambda123/huawei-noah-xingtian) -3. 🗣 Commented on [#9264](https://github.com/statsmodels/statsmodels/pull/9264#issuecomment-2143522393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -4. 🗣 Commented on [#38](https://github.com/kossiitkgp/bhattu/pull/38#issuecomment-2143431846) in [kossiitkgp/bhattu](https://github.com/kossiitkgp/bhattu) -5. 🗣 Commented on [#37](https://github.com/kossiitkgp/bhattu/pull/37#issuecomment-2143410100) in [kossiitkgp/bhattu](https://github.com/kossiitkgp/bhattu) -6. 🗣 Commented on [#2](https://github.com/2lambda123/Huawei-OpenStack_Driver/pull/2#issuecomment-2143286714) in [2lambda123/Huawei-OpenStack_Driver](https://github.com/2lambda123/Huawei-OpenStack_Driver) -7. 🗣 Commented on [#12](https://github.com/2lambda123/huawei-noah-Pretrained-Language-Model/pull/12#issuecomment-2143268015) in [2lambda123/huawei-noah-Pretrained-Language-Model](https://github.com/2lambda123/huawei-noah-Pretrained-Language-Model) -8. 🗣 Commented on [#191](https://github.com/tj-python/gcloud-aio/pull/191#issuecomment-2143121004) in [tj-python/gcloud-aio](https://github.com/tj-python/gcloud-aio) -9. 🗣 Commented on [#858](https://github.com/OpenFreeEnergy/openfe/pull/858#issuecomment-2142822277) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#2895](https://github.com/metabrainz/listenbrainz-server/pull/2895#issuecomment-2142697406) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#22141](https://github.com/spyder-ide/spyder/pull/22141#issuecomment-2144075672) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#53](https://github.com/Moonlark-Dev/Moonlark/pull/53#issuecomment-2143693771) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +3. 🗣 Commented on [#4478](https://github.com/pyload/pyload/pull/4478#issuecomment-2143589552) in [pyload/pyload](https://github.com/pyload/pyload) +4. 🗣 Commented on [#9](https://github.com/2lambda123/huawei-noah-xingtian/pull/9#issuecomment-2143573786) in [2lambda123/huawei-noah-xingtian](https://github.com/2lambda123/huawei-noah-xingtian) +5. 🗣 Commented on [#9264](https://github.com/statsmodels/statsmodels/pull/9264#issuecomment-2143522393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +6. 🗣 Commented on [#38](https://github.com/kossiitkgp/bhattu/pull/38#issuecomment-2143431846) in [kossiitkgp/bhattu](https://github.com/kossiitkgp/bhattu) +7. 🗣 Commented on [#37](https://github.com/kossiitkgp/bhattu/pull/37#issuecomment-2143410100) in [kossiitkgp/bhattu](https://github.com/kossiitkgp/bhattu) +8. 🗣 Commented on [#2](https://github.com/2lambda123/Huawei-OpenStack_Driver/pull/2#issuecomment-2143286714) in [2lambda123/Huawei-OpenStack_Driver](https://github.com/2lambda123/Huawei-OpenStack_Driver) +9. 🗣 Commented on [#12](https://github.com/2lambda123/huawei-noah-Pretrained-Language-Model/pull/12#issuecomment-2143268015) in [2lambda123/huawei-noah-Pretrained-Language-Model](https://github.com/2lambda123/huawei-noah-Pretrained-Language-Model) +10. 🗣 Commented on [#191](https://github.com/tj-python/gcloud-aio/pull/191#issuecomment-2143121004) in [tj-python/gcloud-aio](https://github.com/tj-python/gcloud-aio) From cd178ecf15dc4e81ccdfc44619461f3644821a53 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 4 Jun 2024 00:40:50 +0000 Subject: [PATCH 1933/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0d464948..e9f9a35b 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#22141](https://github.com/spyder-ide/spyder/pull/22141#issuecomment-2144075672) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#53](https://github.com/Moonlark-Dev/Moonlark/pull/53#issuecomment-2143693771) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -3. 🗣 Commented on [#4478](https://github.com/pyload/pyload/pull/4478#issuecomment-2143589552) in [pyload/pyload](https://github.com/pyload/pyload) -4. 🗣 Commented on [#9](https://github.com/2lambda123/huawei-noah-xingtian/pull/9#issuecomment-2143573786) in [2lambda123/huawei-noah-xingtian](https://github.com/2lambda123/huawei-noah-xingtian) -5. 🗣 Commented on [#9264](https://github.com/statsmodels/statsmodels/pull/9264#issuecomment-2143522393) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -6. 🗣 Commented on [#38](https://github.com/kossiitkgp/bhattu/pull/38#issuecomment-2143431846) in [kossiitkgp/bhattu](https://github.com/kossiitkgp/bhattu) -7. 🗣 Commented on [#37](https://github.com/kossiitkgp/bhattu/pull/37#issuecomment-2143410100) in [kossiitkgp/bhattu](https://github.com/kossiitkgp/bhattu) -8. 🗣 Commented on [#2](https://github.com/2lambda123/Huawei-OpenStack_Driver/pull/2#issuecomment-2143286714) in [2lambda123/Huawei-OpenStack_Driver](https://github.com/2lambda123/Huawei-OpenStack_Driver) -9. 🗣 Commented on [#12](https://github.com/2lambda123/huawei-noah-Pretrained-Language-Model/pull/12#issuecomment-2143268015) in [2lambda123/huawei-noah-Pretrained-Language-Model](https://github.com/2lambda123/huawei-noah-Pretrained-Language-Model) -10. 🗣 Commented on [#191](https://github.com/tj-python/gcloud-aio/pull/191#issuecomment-2143121004) in [tj-python/gcloud-aio](https://github.com/tj-python/gcloud-aio) +1. 🗣 Commented on [#10](https://github.com/CartoonFan/xiphos/pull/10#issuecomment-2146076316) in [CartoonFan/xiphos](https://github.com/CartoonFan/xiphos) +2. 🗣 Commented on [#27](https://github.com/2lambda123/jinja/pull/27#issuecomment-2145899018) in [2lambda123/jinja](https://github.com/2lambda123/jinja) +3. 🗣 Commented on [#3](https://github.com/2lambda123/graphene-django/pull/3#issuecomment-2145894499) in [2lambda123/graphene-django](https://github.com/2lambda123/graphene-django) +4. 🗣 Commented on [#1141](https://github.com/yeatmanlab/pyAFQ/pull/1141#issuecomment-2145890997) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +5. 🗣 Commented on [#1](https://github.com/2lambda123/elementary/pull/1#issuecomment-2145887701) in [2lambda123/elementary](https://github.com/2lambda123/elementary) +6. 🗣 Commented on [#951](https://github.com/scilus/scilpy/pull/951#issuecomment-2145856328) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#78](https://github.com/cdfxscrq/userbot/pull/78#issuecomment-2145846736) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) +8. 🗣 Commented on [#1](https://github.com/2lambda123/AzureAD-microsoft-authentication-library-for-python/pull/1#issuecomment-2145349218) in [2lambda123/AzureAD-microsoft-authentication-library-for-python](https://github.com/2lambda123/AzureAD-microsoft-authentication-library-for-python) +9. 🗣 Commented on [#534](https://github.com/askap-vast/vast-tools/pull/534#issuecomment-2144106340) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +10. 🗣 Commented on [#22141](https://github.com/spyder-ide/spyder/pull/22141#issuecomment-2144075672) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 9dc75042737ad469490481ea14805ae157531988 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 5 Jun 2024 00:40:30 +0000 Subject: [PATCH 1934/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e9f9a35b..dfb17f03 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#10](https://github.com/CartoonFan/xiphos/pull/10#issuecomment-2146076316) in [CartoonFan/xiphos](https://github.com/CartoonFan/xiphos) -2. 🗣 Commented on [#27](https://github.com/2lambda123/jinja/pull/27#issuecomment-2145899018) in [2lambda123/jinja](https://github.com/2lambda123/jinja) -3. 🗣 Commented on [#3](https://github.com/2lambda123/graphene-django/pull/3#issuecomment-2145894499) in [2lambda123/graphene-django](https://github.com/2lambda123/graphene-django) -4. 🗣 Commented on [#1141](https://github.com/yeatmanlab/pyAFQ/pull/1141#issuecomment-2145890997) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -5. 🗣 Commented on [#1](https://github.com/2lambda123/elementary/pull/1#issuecomment-2145887701) in [2lambda123/elementary](https://github.com/2lambda123/elementary) -6. 🗣 Commented on [#951](https://github.com/scilus/scilpy/pull/951#issuecomment-2145856328) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#78](https://github.com/cdfxscrq/userbot/pull/78#issuecomment-2145846736) in [cdfxscrq/userbot](https://github.com/cdfxscrq/userbot) -8. 🗣 Commented on [#1](https://github.com/2lambda123/AzureAD-microsoft-authentication-library-for-python/pull/1#issuecomment-2145349218) in [2lambda123/AzureAD-microsoft-authentication-library-for-python](https://github.com/2lambda123/AzureAD-microsoft-authentication-library-for-python) -9. 🗣 Commented on [#534](https://github.com/askap-vast/vast-tools/pull/534#issuecomment-2144106340) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -10. 🗣 Commented on [#22141](https://github.com/spyder-ide/spyder/pull/22141#issuecomment-2144075672) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#1103](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1103#issuecomment-2148595411) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#317](https://github.com/AdvancedPhotonSource/tike/pull/317#issuecomment-2148581645) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +3. 🗣 Commented on [#3234](https://github.com/dipy/dipy/pull/3234#issuecomment-2148554712) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#940](https://github.com/ToFuProject/tofu/pull/940#issuecomment-2148495893) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#1051](https://github.com/oemof/oemof-solph/pull/1051#issuecomment-2148349279) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +6. 🗣 Commented on [#1144](https://github.com/yeatmanlab/pyAFQ/pull/1144#issuecomment-2148249708) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +7. 🗣 Commented on [#93](https://github.com/eastgenomics/trendyQC/pull/93#issuecomment-2147770112) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +8. 🗣 Commented on [#4382](https://github.com/uwcirg/truenth-portal/pull/4382#issuecomment-2147514171) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +9. 🗣 Commented on [#152](https://github.com/INT-NIT/BEP032tools/pull/152#issuecomment-2147391769) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) +10. 🗣 Commented on [#5661](https://github.com/rhinstaller/anaconda/pull/5661#issuecomment-2147269973) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From bd8b2c321050e4dac2f08a70d19a2992efdc690d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 6 Jun 2024 00:40:24 +0000 Subject: [PATCH 1935/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dfb17f03..98763713 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1103](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1103#issuecomment-2148595411) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#317](https://github.com/AdvancedPhotonSource/tike/pull/317#issuecomment-2148581645) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -3. 🗣 Commented on [#3234](https://github.com/dipy/dipy/pull/3234#issuecomment-2148554712) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#940](https://github.com/ToFuProject/tofu/pull/940#issuecomment-2148495893) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#1051](https://github.com/oemof/oemof-solph/pull/1051#issuecomment-2148349279) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -6. 🗣 Commented on [#1144](https://github.com/yeatmanlab/pyAFQ/pull/1144#issuecomment-2148249708) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -7. 🗣 Commented on [#93](https://github.com/eastgenomics/trendyQC/pull/93#issuecomment-2147770112) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -8. 🗣 Commented on [#4382](https://github.com/uwcirg/truenth-portal/pull/4382#issuecomment-2147514171) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -9. 🗣 Commented on [#152](https://github.com/INT-NIT/BEP032tools/pull/152#issuecomment-2147391769) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) -10. 🗣 Commented on [#5661](https://github.com/rhinstaller/anaconda/pull/5661#issuecomment-2147269973) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#150](https://github.com/aimclub/Fedot.Industrial/pull/150#issuecomment-2151120131) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +2. 🗣 Commented on [#4](https://github.com/mavx/fileshare/pull/4#issuecomment-2150902632) in [mavx/fileshare](https://github.com/mavx/fileshare) +3. 🗣 Commented on [#4612](https://github.com/MDAnalysis/mdanalysis/pull/4612#issuecomment-2150580768) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#4017](https://github.com/MDAnalysis/mdanalysis/pull/4017#issuecomment-2150366816) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#122](https://github.com/OpenFreeEnergy/cinnabar/pull/122#issuecomment-2150335796) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) +6. 🗣 Commented on [#4](https://github.com/2lambda123/adidas-lakehouse-engine/pull/4#issuecomment-2150009106) in [2lambda123/adidas-lakehouse-engine](https://github.com/2lambda123/adidas-lakehouse-engine) +7. 🗣 Commented on [#5](https://github.com/2lambda123/adidas-lakehouse-engine/pull/5#issuecomment-2150008505) in [2lambda123/adidas-lakehouse-engine](https://github.com/2lambda123/adidas-lakehouse-engine) +8. 🗣 Commented on [#10](https://github.com/2lambda123/magenta-magenta/pull/10#issuecomment-2149892104) in [2lambda123/magenta-magenta](https://github.com/2lambda123/magenta-magenta) +9. 🗣 Commented on [#2](https://github.com/2lambda123/magenta-magenta/pull/2#issuecomment-2149809102) in [2lambda123/magenta-magenta](https://github.com/2lambda123/magenta-magenta) +10. 🗣 Commented on [#2](https://github.com/2lambda123/zenfish-ipmi/pull/2#issuecomment-2149802230) in [2lambda123/zenfish-ipmi](https://github.com/2lambda123/zenfish-ipmi) From f73ba9b445a50d6d52639665a2fef94e00b8cbaa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 7 Jun 2024 00:41:58 +0000 Subject: [PATCH 1936/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 98763713..3b0a0064 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#150](https://github.com/aimclub/Fedot.Industrial/pull/150#issuecomment-2151120131) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -2. 🗣 Commented on [#4](https://github.com/mavx/fileshare/pull/4#issuecomment-2150902632) in [mavx/fileshare](https://github.com/mavx/fileshare) -3. 🗣 Commented on [#4612](https://github.com/MDAnalysis/mdanalysis/pull/4612#issuecomment-2150580768) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#4017](https://github.com/MDAnalysis/mdanalysis/pull/4017#issuecomment-2150366816) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#122](https://github.com/OpenFreeEnergy/cinnabar/pull/122#issuecomment-2150335796) in [OpenFreeEnergy/cinnabar](https://github.com/OpenFreeEnergy/cinnabar) -6. 🗣 Commented on [#4](https://github.com/2lambda123/adidas-lakehouse-engine/pull/4#issuecomment-2150009106) in [2lambda123/adidas-lakehouse-engine](https://github.com/2lambda123/adidas-lakehouse-engine) -7. 🗣 Commented on [#5](https://github.com/2lambda123/adidas-lakehouse-engine/pull/5#issuecomment-2150008505) in [2lambda123/adidas-lakehouse-engine](https://github.com/2lambda123/adidas-lakehouse-engine) -8. 🗣 Commented on [#10](https://github.com/2lambda123/magenta-magenta/pull/10#issuecomment-2149892104) in [2lambda123/magenta-magenta](https://github.com/2lambda123/magenta-magenta) -9. 🗣 Commented on [#2](https://github.com/2lambda123/magenta-magenta/pull/2#issuecomment-2149809102) in [2lambda123/magenta-magenta](https://github.com/2lambda123/magenta-magenta) -10. 🗣 Commented on [#2](https://github.com/2lambda123/zenfish-ipmi/pull/2#issuecomment-2149802230) in [2lambda123/zenfish-ipmi](https://github.com/2lambda123/zenfish-ipmi) +1. 🗣 Commented on [#326](https://github.com/DeMarcoLab/fibsem/pull/326#issuecomment-2153319395) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +2. 🗣 Commented on [#21](https://github.com/arfc/openmcyclus/pull/21#issuecomment-2153148349) in [arfc/openmcyclus](https://github.com/arfc/openmcyclus) +3. 🗣 Commented on [#9270](https://github.com/statsmodels/statsmodels/pull/9270#issuecomment-2153041237) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +4. 🗣 Commented on [#326](https://github.com/OpenFreeEnergy/gufe/pull/326#issuecomment-2152868243) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +5. 🗣 Commented on [#27](https://github.com/cirKITers/MindTheQApp/pull/27#issuecomment-2152178145) in [cirKITers/MindTheQApp](https://github.com/cirKITers/MindTheQApp) +6. 🗣 Commented on [#45](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/45#issuecomment-2151642635) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +7. 🗣 Commented on [#102](https://github.com/cirKITers/Quafel/pull/102#issuecomment-2151567241) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) +8. 🗣 Commented on [#4](https://github.com/Sowhat999/DQfD/pull/4#issuecomment-2151529364) in [Sowhat999/DQfD](https://github.com/Sowhat999/DQfD) +9. 🗣 Commented on [#150](https://github.com/aimclub/Fedot.Industrial/pull/150#issuecomment-2151120131) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#4](https://github.com/mavx/fileshare/pull/4#issuecomment-2150902632) in [mavx/fileshare](https://github.com/mavx/fileshare) From e62f4bfbdaad77187d9098b9b44d494600e55f01 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 8 Jun 2024 00:41:23 +0000 Subject: [PATCH 1937/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3b0a0064..6b28701c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#326](https://github.com/DeMarcoLab/fibsem/pull/326#issuecomment-2153319395) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -2. 🗣 Commented on [#21](https://github.com/arfc/openmcyclus/pull/21#issuecomment-2153148349) in [arfc/openmcyclus](https://github.com/arfc/openmcyclus) -3. 🗣 Commented on [#9270](https://github.com/statsmodels/statsmodels/pull/9270#issuecomment-2153041237) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -4. 🗣 Commented on [#326](https://github.com/OpenFreeEnergy/gufe/pull/326#issuecomment-2152868243) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -5. 🗣 Commented on [#27](https://github.com/cirKITers/MindTheQApp/pull/27#issuecomment-2152178145) in [cirKITers/MindTheQApp](https://github.com/cirKITers/MindTheQApp) -6. 🗣 Commented on [#45](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/45#issuecomment-2151642635) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -7. 🗣 Commented on [#102](https://github.com/cirKITers/Quafel/pull/102#issuecomment-2151567241) in [cirKITers/Quafel](https://github.com/cirKITers/Quafel) -8. 🗣 Commented on [#4](https://github.com/Sowhat999/DQfD/pull/4#issuecomment-2151529364) in [Sowhat999/DQfD](https://github.com/Sowhat999/DQfD) -9. 🗣 Commented on [#150](https://github.com/aimclub/Fedot.Industrial/pull/150#issuecomment-2151120131) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#4](https://github.com/mavx/fileshare/pull/4#issuecomment-2150902632) in [mavx/fileshare](https://github.com/mavx/fileshare) +1. 🗣 Commented on [#4480](https://github.com/pyload/pyload/pull/4480#issuecomment-2155673000) in [pyload/pyload](https://github.com/pyload/pyload) +2. 🗣 Commented on [#1106](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1106#issuecomment-2155515648) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#1105](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1105#issuecomment-2155357226) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#151](https://github.com/aimclub/Fedot.Industrial/pull/151#issuecomment-2154967581) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +5. 🗣 Commented on [#539](https://github.com/rpm-software-management/dnf-plugins-core/pull/539#issuecomment-2154493127) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) +6. 🗣 Commented on [#78](https://github.com/eastgenomics/panel_ops/pull/78#issuecomment-2154409382) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) +7. 🗣 Commented on [#6](https://github.com/2lambda123/Huawei-containerops/pull/6#issuecomment-2154186127) in [2lambda123/Huawei-containerops](https://github.com/2lambda123/Huawei-containerops) +8. 🗣 Commented on [#326](https://github.com/DeMarcoLab/fibsem/pull/326#issuecomment-2153319395) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +9. 🗣 Commented on [#21](https://github.com/arfc/openmcyclus/pull/21#issuecomment-2153148349) in [arfc/openmcyclus](https://github.com/arfc/openmcyclus) +10. 🗣 Commented on [#9270](https://github.com/statsmodels/statsmodels/pull/9270#issuecomment-2153041237) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) From cd4f4971e87e645052e3f3b7b5fea8f730a2dcf1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 9 Jun 2024 00:45:29 +0000 Subject: [PATCH 1938/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6b28701c..cf8e4f1f 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4480](https://github.com/pyload/pyload/pull/4480#issuecomment-2155673000) in [pyload/pyload](https://github.com/pyload/pyload) -2. 🗣 Commented on [#1106](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1106#issuecomment-2155515648) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#1105](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1105#issuecomment-2155357226) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#151](https://github.com/aimclub/Fedot.Industrial/pull/151#issuecomment-2154967581) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -5. 🗣 Commented on [#539](https://github.com/rpm-software-management/dnf-plugins-core/pull/539#issuecomment-2154493127) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) -6. 🗣 Commented on [#78](https://github.com/eastgenomics/panel_ops/pull/78#issuecomment-2154409382) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) -7. 🗣 Commented on [#6](https://github.com/2lambda123/Huawei-containerops/pull/6#issuecomment-2154186127) in [2lambda123/Huawei-containerops](https://github.com/2lambda123/Huawei-containerops) -8. 🗣 Commented on [#326](https://github.com/DeMarcoLab/fibsem/pull/326#issuecomment-2153319395) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -9. 🗣 Commented on [#21](https://github.com/arfc/openmcyclus/pull/21#issuecomment-2153148349) in [arfc/openmcyclus](https://github.com/arfc/openmcyclus) -10. 🗣 Commented on [#9270](https://github.com/statsmodels/statsmodels/pull/9270#issuecomment-2153041237) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +1. 🗣 Commented on [#2](https://github.com/andrewguest/decky-anime-schedule/pull/2#issuecomment-2156152934) in [andrewguest/decky-anime-schedule](https://github.com/andrewguest/decky-anime-schedule) +2. 🗣 Commented on [#730](https://github.com/QuantEcon/QuantEcon.py/pull/730#issuecomment-2156032184) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +3. 🗣 Commented on [#4480](https://github.com/pyload/pyload/pull/4480#issuecomment-2155673000) in [pyload/pyload](https://github.com/pyload/pyload) +4. 🗣 Commented on [#1106](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1106#issuecomment-2155515648) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1105](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1105#issuecomment-2155357226) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#151](https://github.com/aimclub/Fedot.Industrial/pull/151#issuecomment-2154967581) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#539](https://github.com/rpm-software-management/dnf-plugins-core/pull/539#issuecomment-2154493127) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) +8. 🗣 Commented on [#78](https://github.com/eastgenomics/panel_ops/pull/78#issuecomment-2154409382) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) +9. 🗣 Commented on [#6](https://github.com/2lambda123/Huawei-containerops/pull/6#issuecomment-2154186127) in [2lambda123/Huawei-containerops](https://github.com/2lambda123/Huawei-containerops) +10. 🗣 Commented on [#326](https://github.com/DeMarcoLab/fibsem/pull/326#issuecomment-2153319395) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) From 9a6fdeb246a2624983d3afd05b570dec77ac3c31 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 10 Jun 2024 00:42:36 +0000 Subject: [PATCH 1939/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cf8e4f1f..facb80e8 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/andrewguest/decky-anime-schedule/pull/2#issuecomment-2156152934) in [andrewguest/decky-anime-schedule](https://github.com/andrewguest/decky-anime-schedule) -2. 🗣 Commented on [#730](https://github.com/QuantEcon/QuantEcon.py/pull/730#issuecomment-2156032184) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -3. 🗣 Commented on [#4480](https://github.com/pyload/pyload/pull/4480#issuecomment-2155673000) in [pyload/pyload](https://github.com/pyload/pyload) -4. 🗣 Commented on [#1106](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1106#issuecomment-2155515648) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1105](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1105#issuecomment-2155357226) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#151](https://github.com/aimclub/Fedot.Industrial/pull/151#issuecomment-2154967581) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#539](https://github.com/rpm-software-management/dnf-plugins-core/pull/539#issuecomment-2154493127) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) -8. 🗣 Commented on [#78](https://github.com/eastgenomics/panel_ops/pull/78#issuecomment-2154409382) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) -9. 🗣 Commented on [#6](https://github.com/2lambda123/Huawei-containerops/pull/6#issuecomment-2154186127) in [2lambda123/Huawei-containerops](https://github.com/2lambda123/Huawei-containerops) -10. 🗣 Commented on [#326](https://github.com/DeMarcoLab/fibsem/pull/326#issuecomment-2153319395) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +1. 🗣 Commented on [#289](https://github.com/boutproject/xBOUT/pull/289#issuecomment-2156690628) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) +2. 🗣 Commented on [#9](https://github.com/2lambda123/DPDK-dpdk/pull/9#issuecomment-2156513927) in [2lambda123/DPDK-dpdk](https://github.com/2lambda123/DPDK-dpdk) +3. 🗣 Commented on [#1](https://github.com/Seluj78/flask-utils/pull/1#issuecomment-2156511131) in [Seluj78/flask-utils](https://github.com/Seluj78/flask-utils) +4. 🗣 Commented on [#4](https://github.com/2lambda123/cisagov-manage.get.gov/pull/4#issuecomment-2156445100) in [2lambda123/cisagov-manage.get.gov](https://github.com/2lambda123/cisagov-manage.get.gov) +5. 🗣 Commented on [#6](https://github.com/2lambda123/cisagov-LME/pull/6#issuecomment-2156416325) in [2lambda123/cisagov-LME](https://github.com/2lambda123/cisagov-LME) +6. 🗣 Commented on [#4](https://github.com/2lambda123/bitcoin-bitcoin/pull/4#issuecomment-2156397160) in [2lambda123/bitcoin-bitcoin](https://github.com/2lambda123/bitcoin-bitcoin) +7. 🗣 Commented on [#8](https://github.com/2lambda123/wayveai-mile/pull/8#issuecomment-2156377196) in [2lambda123/wayveai-mile](https://github.com/2lambda123/wayveai-mile) +8. 🗣 Commented on [#23](https://github.com/brianhang/pokerpals/pull/23#issuecomment-2156372526) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) +9. 🗣 Commented on [#4](https://github.com/2lambda123/NASA-Planetary-Science-HiMAT/pull/4#issuecomment-2156330978) in [2lambda123/NASA-Planetary-Science-HiMAT](https://github.com/2lambda123/NASA-Planetary-Science-HiMAT) +10. 🗣 Commented on [#773](https://github.com/minerllabs/minerl/pull/773#issuecomment-2156317953) in [minerllabs/minerl](https://github.com/minerllabs/minerl) From 20b161a7b7bed33d111300765c218dc571e9b968 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 11 Jun 2024 00:41:19 +0000 Subject: [PATCH 1940/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index facb80e8..e1033912 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#289](https://github.com/boutproject/xBOUT/pull/289#issuecomment-2156690628) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) -2. 🗣 Commented on [#9](https://github.com/2lambda123/DPDK-dpdk/pull/9#issuecomment-2156513927) in [2lambda123/DPDK-dpdk](https://github.com/2lambda123/DPDK-dpdk) -3. 🗣 Commented on [#1](https://github.com/Seluj78/flask-utils/pull/1#issuecomment-2156511131) in [Seluj78/flask-utils](https://github.com/Seluj78/flask-utils) -4. 🗣 Commented on [#4](https://github.com/2lambda123/cisagov-manage.get.gov/pull/4#issuecomment-2156445100) in [2lambda123/cisagov-manage.get.gov](https://github.com/2lambda123/cisagov-manage.get.gov) -5. 🗣 Commented on [#6](https://github.com/2lambda123/cisagov-LME/pull/6#issuecomment-2156416325) in [2lambda123/cisagov-LME](https://github.com/2lambda123/cisagov-LME) -6. 🗣 Commented on [#4](https://github.com/2lambda123/bitcoin-bitcoin/pull/4#issuecomment-2156397160) in [2lambda123/bitcoin-bitcoin](https://github.com/2lambda123/bitcoin-bitcoin) -7. 🗣 Commented on [#8](https://github.com/2lambda123/wayveai-mile/pull/8#issuecomment-2156377196) in [2lambda123/wayveai-mile](https://github.com/2lambda123/wayveai-mile) -8. 🗣 Commented on [#23](https://github.com/brianhang/pokerpals/pull/23#issuecomment-2156372526) in [brianhang/pokerpals](https://github.com/brianhang/pokerpals) -9. 🗣 Commented on [#4](https://github.com/2lambda123/NASA-Planetary-Science-HiMAT/pull/4#issuecomment-2156330978) in [2lambda123/NASA-Planetary-Science-HiMAT](https://github.com/2lambda123/NASA-Planetary-Science-HiMAT) -10. 🗣 Commented on [#773](https://github.com/minerllabs/minerl/pull/773#issuecomment-2156317953) in [minerllabs/minerl](https://github.com/minerllabs/minerl) +1. 🗣 Commented on [#4](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/4#issuecomment-2159193152) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) +2. 🗣 Commented on [#2](https://github.com/2lambda123/triton/pull/2#issuecomment-2159114005) in [2lambda123/triton](https://github.com/2lambda123/triton) +3. 🗣 Commented on [#26](https://github.com/2lambda123/spot_ros2/pull/26#issuecomment-2159105247) in [2lambda123/spot_ros2](https://github.com/2lambda123/spot_ros2) +4. 🗣 Commented on [#18](https://github.com/2lambda123/scikit-decide/pull/18#issuecomment-2159102259) in [2lambda123/scikit-decide](https://github.com/2lambda123/scikit-decide) +5. 🗣 Commented on [#1](https://github.com/2lambda123/elementary/pull/1#issuecomment-2159060038) in [2lambda123/elementary](https://github.com/2lambda123/elementary) +6. 🗣 Commented on [#4](https://github.com/eastgenomics/variant_workbook_parser/pull/4#issuecomment-2158672875) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) +7. 🗣 Commented on [#1087](https://github.com/WesternFriend/westernfriend.org/pull/1087#issuecomment-2158463188) in [WesternFriend/westernfriend.org](https://github.com/WesternFriend/westernfriend.org) +8. 🗣 Commented on [#3017](https://github.com/astropy/astroquery/pull/3017#issuecomment-2158362235) in [astropy/astroquery](https://github.com/astropy/astroquery) +9. 🗣 Commented on [#1](https://github.com/mpds-io/mpds-distinct-phases/pull/1#issuecomment-2158285569) in [mpds-io/mpds-distinct-phases](https://github.com/mpds-io/mpds-distinct-phases) +10. 🗣 Commented on [#59](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/59#issuecomment-2158190545) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) From 28e42b12645c67b56e54aa1fad06d49e42cb43a2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 12 Jun 2024 00:41:37 +0000 Subject: [PATCH 1941/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e1033912..977e008a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/4#issuecomment-2159193152) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) -2. 🗣 Commented on [#2](https://github.com/2lambda123/triton/pull/2#issuecomment-2159114005) in [2lambda123/triton](https://github.com/2lambda123/triton) -3. 🗣 Commented on [#26](https://github.com/2lambda123/spot_ros2/pull/26#issuecomment-2159105247) in [2lambda123/spot_ros2](https://github.com/2lambda123/spot_ros2) -4. 🗣 Commented on [#18](https://github.com/2lambda123/scikit-decide/pull/18#issuecomment-2159102259) in [2lambda123/scikit-decide](https://github.com/2lambda123/scikit-decide) -5. 🗣 Commented on [#1](https://github.com/2lambda123/elementary/pull/1#issuecomment-2159060038) in [2lambda123/elementary](https://github.com/2lambda123/elementary) -6. 🗣 Commented on [#4](https://github.com/eastgenomics/variant_workbook_parser/pull/4#issuecomment-2158672875) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) -7. 🗣 Commented on [#1087](https://github.com/WesternFriend/westernfriend.org/pull/1087#issuecomment-2158463188) in [WesternFriend/westernfriend.org](https://github.com/WesternFriend/westernfriend.org) -8. 🗣 Commented on [#3017](https://github.com/astropy/astroquery/pull/3017#issuecomment-2158362235) in [astropy/astroquery](https://github.com/astropy/astroquery) -9. 🗣 Commented on [#1](https://github.com/mpds-io/mpds-distinct-phases/pull/1#issuecomment-2158285569) in [mpds-io/mpds-distinct-phases](https://github.com/mpds-io/mpds-distinct-phases) -10. 🗣 Commented on [#59](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/59#issuecomment-2158190545) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +1. 🗣 Commented on [#3031](https://github.com/astropy/astroquery/pull/3031#issuecomment-2161725032) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#3248](https://github.com/dipy/dipy/pull/3248#issuecomment-2161449439) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#1107](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1107#issuecomment-2161437337) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#870](https://github.com/spacetelescope/webbpsf/pull/870#issuecomment-2161423770) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#998](https://github.com/scilus/scilpy/pull/998#issuecomment-2160893931) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#35](https://github.com/cirKITers/Quantum-Siren/pull/35#issuecomment-2160765259) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) +7. 🗣 Commented on [#64](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/64#issuecomment-2160201083) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +8. 🗣 Commented on [#11](https://github.com/2lambda123/LinaYorda-OSINTko/pull/11#issuecomment-2159929045) in [2lambda123/LinaYorda-OSINTko](https://github.com/2lambda123/LinaYorda-OSINTko) +9. 🗣 Commented on [#50](https://github.com/OpenFreeEnergy/konnektor/pull/50#issuecomment-2159770297) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +10. 🗣 Commented on [#4](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/4#issuecomment-2159193152) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) From b25f139b556af3d9bf0105cc2134ed8bea6c490b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 13 Jun 2024 00:41:13 +0000 Subject: [PATCH 1942/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 977e008a..9027be99 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3031](https://github.com/astropy/astroquery/pull/3031#issuecomment-2161725032) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#3248](https://github.com/dipy/dipy/pull/3248#issuecomment-2161449439) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#1107](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1107#issuecomment-2161437337) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#870](https://github.com/spacetelescope/webbpsf/pull/870#issuecomment-2161423770) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#998](https://github.com/scilus/scilpy/pull/998#issuecomment-2160893931) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#35](https://github.com/cirKITers/Quantum-Siren/pull/35#issuecomment-2160765259) in [cirKITers/Quantum-Siren](https://github.com/cirKITers/Quantum-Siren) -7. 🗣 Commented on [#64](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/64#issuecomment-2160201083) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -8. 🗣 Commented on [#11](https://github.com/2lambda123/LinaYorda-OSINTko/pull/11#issuecomment-2159929045) in [2lambda123/LinaYorda-OSINTko](https://github.com/2lambda123/LinaYorda-OSINTko) -9. 🗣 Commented on [#50](https://github.com/OpenFreeEnergy/konnektor/pull/50#issuecomment-2159770297) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) -10. 🗣 Commented on [#4](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline/pull/4#issuecomment-2159193152) in [Gravity-Spy/gravityspy-ligo-pipeline](https://github.com/Gravity-Spy/gravityspy-ligo-pipeline) +1. 🗣 Commented on [#76](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/76#issuecomment-2163379318) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +2. 🗣 Commented on [#1129](https://github.com/lmcinnes/umap/pull/1129#issuecomment-2163162550) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +3. 🗣 Commented on [#3973](https://github.com/privacyidea/privacyidea/pull/3973#issuecomment-2162925316) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +4. 🗣 Commented on [#1](https://github.com/eastgenomics/Solid_cancer_requests/pull/1#issuecomment-2162706225) in [eastgenomics/Solid_cancer_requests](https://github.com/eastgenomics/Solid_cancer_requests) +5. 🗣 Commented on [#521](https://github.com/oemof/tespy/pull/521#issuecomment-2162380407) in [oemof/tespy](https://github.com/oemof/tespy) +6. 🗣 Commented on [#3031](https://github.com/astropy/astroquery/pull/3031#issuecomment-2161725032) in [astropy/astroquery](https://github.com/astropy/astroquery) +7. 🗣 Commented on [#3248](https://github.com/dipy/dipy/pull/3248#issuecomment-2161449439) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#1107](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1107#issuecomment-2161437337) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#870](https://github.com/spacetelescope/webbpsf/pull/870#issuecomment-2161423770) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +10. 🗣 Commented on [#998](https://github.com/scilus/scilpy/pull/998#issuecomment-2160893931) in [scilus/scilpy](https://github.com/scilus/scilpy) From c397c00f318fee4cba602fdd6b403f25bc28b273 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 14 Jun 2024 00:41:06 +0000 Subject: [PATCH 1943/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9027be99..02e16bb4 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#76](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/76#issuecomment-2163379318) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -2. 🗣 Commented on [#1129](https://github.com/lmcinnes/umap/pull/1129#issuecomment-2163162550) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -3. 🗣 Commented on [#3973](https://github.com/privacyidea/privacyidea/pull/3973#issuecomment-2162925316) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -4. 🗣 Commented on [#1](https://github.com/eastgenomics/Solid_cancer_requests/pull/1#issuecomment-2162706225) in [eastgenomics/Solid_cancer_requests](https://github.com/eastgenomics/Solid_cancer_requests) -5. 🗣 Commented on [#521](https://github.com/oemof/tespy/pull/521#issuecomment-2162380407) in [oemof/tespy](https://github.com/oemof/tespy) -6. 🗣 Commented on [#3031](https://github.com/astropy/astroquery/pull/3031#issuecomment-2161725032) in [astropy/astroquery](https://github.com/astropy/astroquery) -7. 🗣 Commented on [#3248](https://github.com/dipy/dipy/pull/3248#issuecomment-2161449439) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#1107](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1107#issuecomment-2161437337) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#870](https://github.com/spacetelescope/webbpsf/pull/870#issuecomment-2161423770) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -10. 🗣 Commented on [#998](https://github.com/scilus/scilpy/pull/998#issuecomment-2160893931) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#3249](https://github.com/dipy/dipy/pull/3249#issuecomment-2166803970) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#1304](https://github.com/aimclub/FEDOT/pull/1304#issuecomment-2166714257) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +3. 🗣 Commented on [#943](https://github.com/ToFuProject/tofu/pull/943#issuecomment-2166648262) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#224](https://github.com/epfl-theos/koopmans/pull/224#issuecomment-2166032571) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +5. 🗣 Commented on [#18](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/18#issuecomment-2165597467) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +6. 🗣 Commented on [#155](https://github.com/aimclub/Fedot.Industrial/pull/155#issuecomment-2165507744) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +7. 🗣 Commented on [#153](https://github.com/aimclub/Fedot.Industrial/pull/153#issuecomment-2165451223) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +8. 🗣 Commented on [#17](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/17#issuecomment-2165416727) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +9. 🗣 Commented on [#16](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/16#issuecomment-2165332596) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +10. 🗣 Commented on [#25](https://github.com/eastgenomics/eggd_artemis/pull/25#issuecomment-2165327989) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) From 67f54a39309ef6492c0ddadff6b64b7799c3c2de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 15 Jun 2024 00:40:50 +0000 Subject: [PATCH 1944/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 02e16bb4..95c3635a 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3249](https://github.com/dipy/dipy/pull/3249#issuecomment-2166803970) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#1304](https://github.com/aimclub/FEDOT/pull/1304#issuecomment-2166714257) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -3. 🗣 Commented on [#943](https://github.com/ToFuProject/tofu/pull/943#issuecomment-2166648262) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#224](https://github.com/epfl-theos/koopmans/pull/224#issuecomment-2166032571) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -5. 🗣 Commented on [#18](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/18#issuecomment-2165597467) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -6. 🗣 Commented on [#155](https://github.com/aimclub/Fedot.Industrial/pull/155#issuecomment-2165507744) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -7. 🗣 Commented on [#153](https://github.com/aimclub/Fedot.Industrial/pull/153#issuecomment-2165451223) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -8. 🗣 Commented on [#17](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/17#issuecomment-2165416727) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -9. 🗣 Commented on [#16](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/16#issuecomment-2165332596) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -10. 🗣 Commented on [#25](https://github.com/eastgenomics/eggd_artemis/pull/25#issuecomment-2165327989) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +1. 🗣 Commented on [#3035](https://github.com/astropy/astroquery/pull/3035#issuecomment-2168488701) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#318](https://github.com/AdvancedPhotonSource/tike/pull/318#issuecomment-2168378626) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +3. 🗣 Commented on [#56](https://github.com/Moonlark-Dev/Moonlark/pull/56#issuecomment-2168369994) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +4. 🗣 Commented on [#1580](https://github.com/openSUSE/osc/pull/1580#issuecomment-2168232674) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#23](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/23#issuecomment-2168083856) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +6. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_artemis/pull/27#issuecomment-2168066045) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +7. 🗣 Commented on [#7](https://github.com/2lambda123/AzureAD-microsoft-authentication-library-for-python/pull/7#issuecomment-2167955444) in [2lambda123/AzureAD-microsoft-authentication-library-for-python](https://github.com/2lambda123/AzureAD-microsoft-authentication-library-for-python) +8. 🗣 Commented on [#19](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/19#issuecomment-2167524240) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +9. 🗣 Commented on [#17](https://github.com/2lambda123/nipy-nipype/pull/17#issuecomment-2167324531) in [2lambda123/nipy-nipype](https://github.com/2lambda123/nipy-nipype) +10. 🗣 Commented on [#15](https://github.com/2lambda123/magenta-magenta/pull/15#issuecomment-2167320487) in [2lambda123/magenta-magenta](https://github.com/2lambda123/magenta-magenta) From 38428bca9abbea65a8559f1949fddc84809494eb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 16 Jun 2024 00:45:03 +0000 Subject: [PATCH 1945/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 95c3635a..7dc0620d 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3035](https://github.com/astropy/astroquery/pull/3035#issuecomment-2168488701) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#318](https://github.com/AdvancedPhotonSource/tike/pull/318#issuecomment-2168378626) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -3. 🗣 Commented on [#56](https://github.com/Moonlark-Dev/Moonlark/pull/56#issuecomment-2168369994) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -4. 🗣 Commented on [#1580](https://github.com/openSUSE/osc/pull/1580#issuecomment-2168232674) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#23](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/23#issuecomment-2168083856) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -6. 🗣 Commented on [#27](https://github.com/eastgenomics/eggd_artemis/pull/27#issuecomment-2168066045) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -7. 🗣 Commented on [#7](https://github.com/2lambda123/AzureAD-microsoft-authentication-library-for-python/pull/7#issuecomment-2167955444) in [2lambda123/AzureAD-microsoft-authentication-library-for-python](https://github.com/2lambda123/AzureAD-microsoft-authentication-library-for-python) -8. 🗣 Commented on [#19](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/19#issuecomment-2167524240) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -9. 🗣 Commented on [#17](https://github.com/2lambda123/nipy-nipype/pull/17#issuecomment-2167324531) in [2lambda123/nipy-nipype](https://github.com/2lambda123/nipy-nipype) -10. 🗣 Commented on [#15](https://github.com/2lambda123/magenta-magenta/pull/15#issuecomment-2167320487) in [2lambda123/magenta-magenta](https://github.com/2lambda123/magenta-magenta) +1. 🗣 Commented on [#8](https://github.com/2lambda123/ultralytics-yolov5/pull/8#issuecomment-2169924891) in [2lambda123/ultralytics-yolov5](https://github.com/2lambda123/ultralytics-yolov5) +2. 🗣 Commented on [#14](https://github.com/2lambda123/huawei-noah-xingtian/pull/14#issuecomment-2169910138) in [2lambda123/huawei-noah-xingtian](https://github.com/2lambda123/huawei-noah-xingtian) +3. 🗣 Commented on [#7](https://github.com/2lambda123/ultralytics-yolov5/pull/7#issuecomment-2169840164) in [2lambda123/ultralytics-yolov5](https://github.com/2lambda123/ultralytics-yolov5) +4. 🗣 Commented on [#19](https://github.com/2lambda123/huawei-noah-HEBO/pull/19#issuecomment-2169837677) in [2lambda123/huawei-noah-HEBO](https://github.com/2lambda123/huawei-noah-HEBO) +5. 🗣 Commented on [#23](https://github.com/2lambda123/ultralytics-ultralytics/pull/23#issuecomment-2169826736) in [2lambda123/ultralytics-ultralytics](https://github.com/2lambda123/ultralytics-ultralytics) +6. 🗣 Commented on [#9](https://github.com/2lambda123/OpenBioLink-OpenBioLink/pull/9#issuecomment-2169768082) in [2lambda123/OpenBioLink-OpenBioLink](https://github.com/2lambda123/OpenBioLink-OpenBioLink) +7. 🗣 Commented on [#6](https://github.com/2lambda123/google-research-pegasus/pull/6#issuecomment-2169606260) in [2lambda123/google-research-pegasus](https://github.com/2lambda123/google-research-pegasus) +8. 🗣 Commented on [#287](https://github.com/InvisibleSymbol/rocketwatch/pull/287#issuecomment-2169534191) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +9. 🗣 Commented on [#11](https://github.com/2lambda123/genome-breakdancer/pull/11#issuecomment-2169525280) in [2lambda123/genome-breakdancer](https://github.com/2lambda123/genome-breakdancer) +10. 🗣 Commented on [#6](https://github.com/Sowhat999/emmmm/pull/6#issuecomment-2169478431) in [Sowhat999/emmmm](https://github.com/Sowhat999/emmmm) From 22ebe4fb5f57158ec9fbd9232543bf589992b9bd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 00:43:09 +0000 Subject: [PATCH 1946/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7dc0620d..db8d5adb 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#8](https://github.com/2lambda123/ultralytics-yolov5/pull/8#issuecomment-2169924891) in [2lambda123/ultralytics-yolov5](https://github.com/2lambda123/ultralytics-yolov5) -2. 🗣 Commented on [#14](https://github.com/2lambda123/huawei-noah-xingtian/pull/14#issuecomment-2169910138) in [2lambda123/huawei-noah-xingtian](https://github.com/2lambda123/huawei-noah-xingtian) -3. 🗣 Commented on [#7](https://github.com/2lambda123/ultralytics-yolov5/pull/7#issuecomment-2169840164) in [2lambda123/ultralytics-yolov5](https://github.com/2lambda123/ultralytics-yolov5) -4. 🗣 Commented on [#19](https://github.com/2lambda123/huawei-noah-HEBO/pull/19#issuecomment-2169837677) in [2lambda123/huawei-noah-HEBO](https://github.com/2lambda123/huawei-noah-HEBO) -5. 🗣 Commented on [#23](https://github.com/2lambda123/ultralytics-ultralytics/pull/23#issuecomment-2169826736) in [2lambda123/ultralytics-ultralytics](https://github.com/2lambda123/ultralytics-ultralytics) -6. 🗣 Commented on [#9](https://github.com/2lambda123/OpenBioLink-OpenBioLink/pull/9#issuecomment-2169768082) in [2lambda123/OpenBioLink-OpenBioLink](https://github.com/2lambda123/OpenBioLink-OpenBioLink) -7. 🗣 Commented on [#6](https://github.com/2lambda123/google-research-pegasus/pull/6#issuecomment-2169606260) in [2lambda123/google-research-pegasus](https://github.com/2lambda123/google-research-pegasus) -8. 🗣 Commented on [#287](https://github.com/InvisibleSymbol/rocketwatch/pull/287#issuecomment-2169534191) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -9. 🗣 Commented on [#11](https://github.com/2lambda123/genome-breakdancer/pull/11#issuecomment-2169525280) in [2lambda123/genome-breakdancer](https://github.com/2lambda123/genome-breakdancer) -10. 🗣 Commented on [#6](https://github.com/Sowhat999/emmmm/pull/6#issuecomment-2169478431) in [Sowhat999/emmmm](https://github.com/Sowhat999/emmmm) +1. 🗣 Commented on [#3258](https://github.com/dipy/dipy/pull/3258#issuecomment-2171961464) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#1130](https://github.com/lmcinnes/umap/pull/1130#issuecomment-2171833281) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +3. 🗣 Commented on [#5704](https://github.com/rhinstaller/anaconda/pull/5704#issuecomment-2171795544) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#3257](https://github.com/dipy/dipy/pull/3257#issuecomment-2171757519) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#4486](https://github.com/pyload/pyload/pull/4486#issuecomment-2171361020) in [pyload/pyload](https://github.com/pyload/pyload) +6. 🗣 Commented on [#3252](https://github.com/dipy/dipy/pull/3252#issuecomment-2171116626) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#3251](https://github.com/dipy/dipy/pull/3251#issuecomment-2171091951) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#8](https://github.com/2lambda123/ultralytics-yolov5/pull/8#issuecomment-2169924891) in [2lambda123/ultralytics-yolov5](https://github.com/2lambda123/ultralytics-yolov5) +9. 🗣 Commented on [#14](https://github.com/2lambda123/huawei-noah-xingtian/pull/14#issuecomment-2169910138) in [2lambda123/huawei-noah-xingtian](https://github.com/2lambda123/huawei-noah-xingtian) +10. 🗣 Commented on [#7](https://github.com/2lambda123/ultralytics-yolov5/pull/7#issuecomment-2169840164) in [2lambda123/ultralytics-yolov5](https://github.com/2lambda123/ultralytics-yolov5) From 0095244f57d2e098ad3ea8d59bdf942f8ac692ff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 18 Jun 2024 00:42:01 +0000 Subject: [PATCH 1947/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index db8d5adb..e0a2385e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3258](https://github.com/dipy/dipy/pull/3258#issuecomment-2171961464) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#1130](https://github.com/lmcinnes/umap/pull/1130#issuecomment-2171833281) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -3. 🗣 Commented on [#5704](https://github.com/rhinstaller/anaconda/pull/5704#issuecomment-2171795544) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#3257](https://github.com/dipy/dipy/pull/3257#issuecomment-2171757519) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#4486](https://github.com/pyload/pyload/pull/4486#issuecomment-2171361020) in [pyload/pyload](https://github.com/pyload/pyload) -6. 🗣 Commented on [#3252](https://github.com/dipy/dipy/pull/3252#issuecomment-2171116626) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#3251](https://github.com/dipy/dipy/pull/3251#issuecomment-2171091951) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#8](https://github.com/2lambda123/ultralytics-yolov5/pull/8#issuecomment-2169924891) in [2lambda123/ultralytics-yolov5](https://github.com/2lambda123/ultralytics-yolov5) -9. 🗣 Commented on [#14](https://github.com/2lambda123/huawei-noah-xingtian/pull/14#issuecomment-2169910138) in [2lambda123/huawei-noah-xingtian](https://github.com/2lambda123/huawei-noah-xingtian) -10. 🗣 Commented on [#7](https://github.com/2lambda123/ultralytics-yolov5/pull/7#issuecomment-2169840164) in [2lambda123/ultralytics-yolov5](https://github.com/2lambda123/ultralytics-yolov5) +1. 🗣 Commented on [#1](https://github.com/Sage-Bionetworks/i2b2-cohort-builder/pull/1#issuecomment-2174433939) in [Sage-Bionetworks/i2b2-cohort-builder](https://github.com/Sage-Bionetworks/i2b2-cohort-builder) +2. 🗣 Commented on [#1](https://github.com/2lambda123/elementary/pull/1#issuecomment-2174186411) in [2lambda123/elementary](https://github.com/2lambda123/elementary) +3. 🗣 Commented on [#319](https://github.com/AdvancedPhotonSource/tike/pull/319#issuecomment-2174164869) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +4. 🗣 Commented on [#2](https://github.com/2lambda123/cheader2json/pull/2#issuecomment-2174139146) in [2lambda123/cheader2json](https://github.com/2lambda123/cheader2json) +5. 🗣 Commented on [#60](https://github.com/oemof/demandlib/pull/60#issuecomment-2173925407) in [oemof/demandlib](https://github.com/oemof/demandlib) +6. 🗣 Commented on [#1](https://github.com/eastgenomics/GitHub_Actions/pull/1#issuecomment-2173837710) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) +7. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_generate_wgs_workbook/pull/2#issuecomment-2173402541) in [eastgenomics/eggd_generate_wgs_workbook](https://github.com/eastgenomics/eggd_generate_wgs_workbook) +8. 🗣 Commented on [#3263](https://github.com/dipy/dipy/pull/3263#issuecomment-2173207045) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#11](https://github.com/MDAnalysis/mda-openbabel-converter/pull/11#issuecomment-2173140283) in [MDAnalysis/mda-openbabel-converter](https://github.com/MDAnalysis/mda-openbabel-converter) +10. 🗣 Commented on [#225](https://github.com/epfl-theos/koopmans/pull/225#issuecomment-2173128966) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) From bbadbabbf0dc3d1a923922fafc74d1b6fc3f28f1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 19 Jun 2024 00:41:43 +0000 Subject: [PATCH 1948/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e0a2385e..953ddb12 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/Sage-Bionetworks/i2b2-cohort-builder/pull/1#issuecomment-2174433939) in [Sage-Bionetworks/i2b2-cohort-builder](https://github.com/Sage-Bionetworks/i2b2-cohort-builder) -2. 🗣 Commented on [#1](https://github.com/2lambda123/elementary/pull/1#issuecomment-2174186411) in [2lambda123/elementary](https://github.com/2lambda123/elementary) -3. 🗣 Commented on [#319](https://github.com/AdvancedPhotonSource/tike/pull/319#issuecomment-2174164869) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -4. 🗣 Commented on [#2](https://github.com/2lambda123/cheader2json/pull/2#issuecomment-2174139146) in [2lambda123/cheader2json](https://github.com/2lambda123/cheader2json) -5. 🗣 Commented on [#60](https://github.com/oemof/demandlib/pull/60#issuecomment-2173925407) in [oemof/demandlib](https://github.com/oemof/demandlib) -6. 🗣 Commented on [#1](https://github.com/eastgenomics/GitHub_Actions/pull/1#issuecomment-2173837710) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) -7. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_generate_wgs_workbook/pull/2#issuecomment-2173402541) in [eastgenomics/eggd_generate_wgs_workbook](https://github.com/eastgenomics/eggd_generate_wgs_workbook) -8. 🗣 Commented on [#3263](https://github.com/dipy/dipy/pull/3263#issuecomment-2173207045) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#11](https://github.com/MDAnalysis/mda-openbabel-converter/pull/11#issuecomment-2173140283) in [MDAnalysis/mda-openbabel-converter](https://github.com/MDAnalysis/mda-openbabel-converter) -10. 🗣 Commented on [#225](https://github.com/epfl-theos/koopmans/pull/225#issuecomment-2173128966) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +1. 🗣 Commented on [#1002](https://github.com/scilus/scilpy/pull/1002#issuecomment-2176959093) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#1](https://github.com/gfunkmonk/macadmin-scripts/pull/1#issuecomment-2176937021) in [gfunkmonk/macadmin-scripts](https://github.com/gfunkmonk/macadmin-scripts) +3. 🗣 Commented on [#1001](https://github.com/scilus/scilpy/pull/1001#issuecomment-2176179817) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#5711](https://github.com/rhinstaller/anaconda/pull/5711#issuecomment-2176148414) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#3264](https://github.com/dipy/dipy/pull/3264#issuecomment-2176067639) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#235](https://github.com/OpenSCAP/openscap-report/pull/235#issuecomment-2175989649) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) +7. 🗣 Commented on [#985](https://github.com/avaframe/AvaFrame/pull/985#issuecomment-2175731294) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#295](https://github.com/InvisibleSymbol/rocketwatch/pull/295#issuecomment-2174886008) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +9. 🗣 Commented on [#424](https://github.com/aria-tools/ARIA-tools/pull/424#issuecomment-2174774723) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +10. 🗣 Commented on [#1](https://github.com/Sage-Bionetworks/i2b2-cohort-builder/pull/1#issuecomment-2174433939) in [Sage-Bionetworks/i2b2-cohort-builder](https://github.com/Sage-Bionetworks/i2b2-cohort-builder) From 45a7254b2f373a0148ea80d592042ef02295cc46 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 20 Jun 2024 00:40:34 +0000 Subject: [PATCH 1949/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 953ddb12..f365408e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1002](https://github.com/scilus/scilpy/pull/1002#issuecomment-2176959093) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#1](https://github.com/gfunkmonk/macadmin-scripts/pull/1#issuecomment-2176937021) in [gfunkmonk/macadmin-scripts](https://github.com/gfunkmonk/macadmin-scripts) -3. 🗣 Commented on [#1001](https://github.com/scilus/scilpy/pull/1001#issuecomment-2176179817) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#5711](https://github.com/rhinstaller/anaconda/pull/5711#issuecomment-2176148414) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#3264](https://github.com/dipy/dipy/pull/3264#issuecomment-2176067639) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#235](https://github.com/OpenSCAP/openscap-report/pull/235#issuecomment-2175989649) in [OpenSCAP/openscap-report](https://github.com/OpenSCAP/openscap-report) -7. 🗣 Commented on [#985](https://github.com/avaframe/AvaFrame/pull/985#issuecomment-2175731294) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#295](https://github.com/InvisibleSymbol/rocketwatch/pull/295#issuecomment-2174886008) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -9. 🗣 Commented on [#424](https://github.com/aria-tools/ARIA-tools/pull/424#issuecomment-2174774723) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -10. 🗣 Commented on [#1](https://github.com/Sage-Bionetworks/i2b2-cohort-builder/pull/1#issuecomment-2174433939) in [Sage-Bionetworks/i2b2-cohort-builder](https://github.com/Sage-Bionetworks/i2b2-cohort-builder) +1. 🗣 Commented on [#4620](https://github.com/MDAnalysis/mdanalysis/pull/4620#issuecomment-2179511638) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#482](https://github.com/AndrewAnnex/SpiceyPy/pull/482#issuecomment-2179282247) in [AndrewAnnex/SpiceyPy](https://github.com/AndrewAnnex/SpiceyPy) +3. 🗣 Commented on [#638](https://github.com/tableau/TabPy/pull/638#issuecomment-2179222437) in [tableau/TabPy](https://github.com/tableau/TabPy) +4. 🗣 Commented on [#647](https://github.com/HEXRD/hexrd/pull/647#issuecomment-2179121368) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#30](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/30#issuecomment-2179050293) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +6. 🗣 Commented on [#29](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/29#issuecomment-2179020814) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +7. 🗣 Commented on [#27](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/27#issuecomment-2178938887) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +8. 🗣 Commented on [#226](https://github.com/epfl-theos/koopmans/pull/226#issuecomment-2178896836) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +9. 🗣 Commented on [#95](https://github.com/eastgenomics/trendyQC/pull/95#issuecomment-2178881846) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +10. 🗣 Commented on [#4](https://github.com/MDAnalysis/mdgeomkit/pull/4#issuecomment-2178765927) in [MDAnalysis/mdgeomkit](https://github.com/MDAnalysis/mdgeomkit) From d2637f02ee5a1c6758b3a3c3e441166b47d8f871 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 21 Jun 2024 00:40:48 +0000 Subject: [PATCH 1950/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f365408e..66260391 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4620](https://github.com/MDAnalysis/mdanalysis/pull/4620#issuecomment-2179511638) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#482](https://github.com/AndrewAnnex/SpiceyPy/pull/482#issuecomment-2179282247) in [AndrewAnnex/SpiceyPy](https://github.com/AndrewAnnex/SpiceyPy) -3. 🗣 Commented on [#638](https://github.com/tableau/TabPy/pull/638#issuecomment-2179222437) in [tableau/TabPy](https://github.com/tableau/TabPy) -4. 🗣 Commented on [#647](https://github.com/HEXRD/hexrd/pull/647#issuecomment-2179121368) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#30](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/30#issuecomment-2179050293) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -6. 🗣 Commented on [#29](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/29#issuecomment-2179020814) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -7. 🗣 Commented on [#27](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/27#issuecomment-2178938887) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -8. 🗣 Commented on [#226](https://github.com/epfl-theos/koopmans/pull/226#issuecomment-2178896836) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -9. 🗣 Commented on [#95](https://github.com/eastgenomics/trendyQC/pull/95#issuecomment-2178881846) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -10. 🗣 Commented on [#4](https://github.com/MDAnalysis/mdgeomkit/pull/4#issuecomment-2178765927) in [MDAnalysis/mdgeomkit](https://github.com/MDAnalysis/mdgeomkit) +1. 🗣 Commented on [#1111](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1111#issuecomment-2181586271) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#128](https://github.com/Richard-Sti/csiborgtools/pull/128#issuecomment-2180710097) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +3. 🗣 Commented on [#12](https://github.com/MDAnalysis/mda-openbabel-converter/pull/12#issuecomment-2180493495) in [MDAnalysis/mda-openbabel-converter](https://github.com/MDAnalysis/mda-openbabel-converter) +4. 🗣 Commented on [#37](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/37#issuecomment-2180459660) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +5. 🗣 Commented on [#78](https://github.com/eastgenomics/Genetics_Ark/pull/78#issuecomment-2180442368) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +6. 🗣 Commented on [#36](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/36#issuecomment-2180342226) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +7. 🗣 Commented on [#989](https://github.com/avaframe/AvaFrame/pull/989#issuecomment-2180322727) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#3981](https://github.com/privacyidea/privacyidea/pull/3981#issuecomment-2180298689) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#35](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/35#issuecomment-2180174116) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +10. 🗣 Commented on [#34](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/34#issuecomment-2180142449) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) From ba825eb39e423188ada366ea3491bc9b98402471 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 22 Jun 2024 00:40:38 +0000 Subject: [PATCH 1951/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 66260391..71e8bf21 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1111](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1111#issuecomment-2181586271) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#128](https://github.com/Richard-Sti/csiborgtools/pull/128#issuecomment-2180710097) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -3. 🗣 Commented on [#12](https://github.com/MDAnalysis/mda-openbabel-converter/pull/12#issuecomment-2180493495) in [MDAnalysis/mda-openbabel-converter](https://github.com/MDAnalysis/mda-openbabel-converter) -4. 🗣 Commented on [#37](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/37#issuecomment-2180459660) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -5. 🗣 Commented on [#78](https://github.com/eastgenomics/Genetics_Ark/pull/78#issuecomment-2180442368) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -6. 🗣 Commented on [#36](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/36#issuecomment-2180342226) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -7. 🗣 Commented on [#989](https://github.com/avaframe/AvaFrame/pull/989#issuecomment-2180322727) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#3981](https://github.com/privacyidea/privacyidea/pull/3981#issuecomment-2180298689) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#35](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/35#issuecomment-2180174116) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -10. 🗣 Commented on [#34](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/34#issuecomment-2180142449) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +1. 🗣 Commented on [#83](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/83#issuecomment-2183593940) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +2. 🗣 Commented on [#650](https://github.com/HEXRD/hexrd/pull/650#issuecomment-2183560359) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#649](https://github.com/HEXRD/hexrd/pull/649#issuecomment-2183421221) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +4. 🗣 Commented on [#51](https://github.com/OpenFreeEnergy/konnektor/pull/51#issuecomment-2183410901) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +5. 🗣 Commented on [#22192](https://github.com/spyder-ide/spyder/pull/22192#issuecomment-2183158459) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#325](https://github.com/OMalenfantThuot/ML_Calc_Driver/pull/325#issuecomment-2182965074) in [OMalenfantThuot/ML_Calc_Driver](https://github.com/OMalenfantThuot/ML_Calc_Driver) +7. 🗣 Commented on [#324](https://github.com/OMalenfantThuot/ML_Calc_Driver/pull/324#issuecomment-2182947567) in [OMalenfantThuot/ML_Calc_Driver](https://github.com/OMalenfantThuot/ML_Calc_Driver) +8. 🗣 Commented on [#323](https://github.com/OMalenfantThuot/ML_Calc_Driver/pull/323#issuecomment-2182919729) in [OMalenfantThuot/ML_Calc_Driver](https://github.com/OMalenfantThuot/ML_Calc_Driver) +9. 🗣 Commented on [#991](https://github.com/avaframe/AvaFrame/pull/991#issuecomment-2182677382) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#97](https://github.com/eastgenomics/trendyQC/pull/97#issuecomment-2182558565) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) From 884a1a92b21c3d66431dc975c3dbad17ee3faba3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 23 Jun 2024 00:44:26 +0000 Subject: [PATCH 1952/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 71e8bf21..bb07f75e 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#83](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/83#issuecomment-2183593940) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -2. 🗣 Commented on [#650](https://github.com/HEXRD/hexrd/pull/650#issuecomment-2183560359) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#649](https://github.com/HEXRD/hexrd/pull/649#issuecomment-2183421221) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -4. 🗣 Commented on [#51](https://github.com/OpenFreeEnergy/konnektor/pull/51#issuecomment-2183410901) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) -5. 🗣 Commented on [#22192](https://github.com/spyder-ide/spyder/pull/22192#issuecomment-2183158459) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#325](https://github.com/OMalenfantThuot/ML_Calc_Driver/pull/325#issuecomment-2182965074) in [OMalenfantThuot/ML_Calc_Driver](https://github.com/OMalenfantThuot/ML_Calc_Driver) -7. 🗣 Commented on [#324](https://github.com/OMalenfantThuot/ML_Calc_Driver/pull/324#issuecomment-2182947567) in [OMalenfantThuot/ML_Calc_Driver](https://github.com/OMalenfantThuot/ML_Calc_Driver) -8. 🗣 Commented on [#323](https://github.com/OMalenfantThuot/ML_Calc_Driver/pull/323#issuecomment-2182919729) in [OMalenfantThuot/ML_Calc_Driver](https://github.com/OMalenfantThuot/ML_Calc_Driver) -9. 🗣 Commented on [#991](https://github.com/avaframe/AvaFrame/pull/991#issuecomment-2182677382) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#97](https://github.com/eastgenomics/trendyQC/pull/97#issuecomment-2182558565) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +1. 🗣 Commented on [#59](https://github.com/Moonlark-Dev/Moonlark/pull/59#issuecomment-2184022094) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +2. 🗣 Commented on [#120](https://github.com/MDAnalysis/cookiecutter-mdakit/pull/120#issuecomment-2183898597) in [MDAnalysis/cookiecutter-mdakit](https://github.com/MDAnalysis/cookiecutter-mdakit) +3. 🗣 Commented on [#83](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/83#issuecomment-2183593940) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +4. 🗣 Commented on [#650](https://github.com/HEXRD/hexrd/pull/650#issuecomment-2183560359) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#649](https://github.com/HEXRD/hexrd/pull/649#issuecomment-2183421221) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +6. 🗣 Commented on [#51](https://github.com/OpenFreeEnergy/konnektor/pull/51#issuecomment-2183410901) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +7. 🗣 Commented on [#22192](https://github.com/spyder-ide/spyder/pull/22192#issuecomment-2183158459) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#325](https://github.com/OMalenfantThuot/ML_Calc_Driver/pull/325#issuecomment-2182965074) in [OMalenfantThuot/ML_Calc_Driver](https://github.com/OMalenfantThuot/ML_Calc_Driver) +9. 🗣 Commented on [#324](https://github.com/OMalenfantThuot/ML_Calc_Driver/pull/324#issuecomment-2182947567) in [OMalenfantThuot/ML_Calc_Driver](https://github.com/OMalenfantThuot/ML_Calc_Driver) +10. 🗣 Commented on [#323](https://github.com/OMalenfantThuot/ML_Calc_Driver/pull/323#issuecomment-2182919729) in [OMalenfantThuot/ML_Calc_Driver](https://github.com/OMalenfantThuot/ML_Calc_Driver) From 93f5c1bf327441eba1dbfe16ca2dcd08c6d91ee6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 00:43:06 +0000 Subject: [PATCH 1953/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bb07f75e..033a39b0 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#59](https://github.com/Moonlark-Dev/Moonlark/pull/59#issuecomment-2184022094) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -2. 🗣 Commented on [#120](https://github.com/MDAnalysis/cookiecutter-mdakit/pull/120#issuecomment-2183898597) in [MDAnalysis/cookiecutter-mdakit](https://github.com/MDAnalysis/cookiecutter-mdakit) -3. 🗣 Commented on [#83](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/83#issuecomment-2183593940) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -4. 🗣 Commented on [#650](https://github.com/HEXRD/hexrd/pull/650#issuecomment-2183560359) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#649](https://github.com/HEXRD/hexrd/pull/649#issuecomment-2183421221) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -6. 🗣 Commented on [#51](https://github.com/OpenFreeEnergy/konnektor/pull/51#issuecomment-2183410901) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) -7. 🗣 Commented on [#22192](https://github.com/spyder-ide/spyder/pull/22192#issuecomment-2183158459) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#325](https://github.com/OMalenfantThuot/ML_Calc_Driver/pull/325#issuecomment-2182965074) in [OMalenfantThuot/ML_Calc_Driver](https://github.com/OMalenfantThuot/ML_Calc_Driver) -9. 🗣 Commented on [#324](https://github.com/OMalenfantThuot/ML_Calc_Driver/pull/324#issuecomment-2182947567) in [OMalenfantThuot/ML_Calc_Driver](https://github.com/OMalenfantThuot/ML_Calc_Driver) -10. 🗣 Commented on [#323](https://github.com/OMalenfantThuot/ML_Calc_Driver/pull/323#issuecomment-2182919729) in [OMalenfantThuot/ML_Calc_Driver](https://github.com/OMalenfantThuot/ML_Calc_Driver) +1. 🗣 Commented on [#232](https://github.com/Fatal1ty/mashumaro/pull/232#issuecomment-2185275463) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +2. 🗣 Commented on [#8](https://github.com/Sowhat999/online-judge/pull/8#issuecomment-2184562922) in [Sowhat999/online-judge](https://github.com/Sowhat999/online-judge) +3. 🗣 Commented on [#7](https://github.com/Sowhat999/online-judge/pull/7#issuecomment-2184532370) in [Sowhat999/online-judge](https://github.com/Sowhat999/online-judge) +4. 🗣 Commented on [#61](https://github.com/Moonlark-Dev/Moonlark/pull/61#issuecomment-2184497543) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +5. 🗣 Commented on [#59](https://github.com/Moonlark-Dev/Moonlark/pull/59#issuecomment-2184022094) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +6. 🗣 Commented on [#120](https://github.com/MDAnalysis/cookiecutter-mdakit/pull/120#issuecomment-2183898597) in [MDAnalysis/cookiecutter-mdakit](https://github.com/MDAnalysis/cookiecutter-mdakit) +7. 🗣 Commented on [#83](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/83#issuecomment-2183593940) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +8. 🗣 Commented on [#650](https://github.com/HEXRD/hexrd/pull/650#issuecomment-2183560359) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +9. 🗣 Commented on [#649](https://github.com/HEXRD/hexrd/pull/649#issuecomment-2183421221) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +10. 🗣 Commented on [#51](https://github.com/OpenFreeEnergy/konnektor/pull/51#issuecomment-2183410901) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) From 3b996ad8e93dcf10b2e9a3ba563746d3176810ec Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 25 Jun 2024 00:41:16 +0000 Subject: [PATCH 1954/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 033a39b0..addabb3c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#232](https://github.com/Fatal1ty/mashumaro/pull/232#issuecomment-2185275463) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) -2. 🗣 Commented on [#8](https://github.com/Sowhat999/online-judge/pull/8#issuecomment-2184562922) in [Sowhat999/online-judge](https://github.com/Sowhat999/online-judge) -3. 🗣 Commented on [#7](https://github.com/Sowhat999/online-judge/pull/7#issuecomment-2184532370) in [Sowhat999/online-judge](https://github.com/Sowhat999/online-judge) -4. 🗣 Commented on [#61](https://github.com/Moonlark-Dev/Moonlark/pull/61#issuecomment-2184497543) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -5. 🗣 Commented on [#59](https://github.com/Moonlark-Dev/Moonlark/pull/59#issuecomment-2184022094) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -6. 🗣 Commented on [#120](https://github.com/MDAnalysis/cookiecutter-mdakit/pull/120#issuecomment-2183898597) in [MDAnalysis/cookiecutter-mdakit](https://github.com/MDAnalysis/cookiecutter-mdakit) -7. 🗣 Commented on [#83](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/83#issuecomment-2183593940) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -8. 🗣 Commented on [#650](https://github.com/HEXRD/hexrd/pull/650#issuecomment-2183560359) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -9. 🗣 Commented on [#649](https://github.com/HEXRD/hexrd/pull/649#issuecomment-2183421221) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -10. 🗣 Commented on [#51](https://github.com/OpenFreeEnergy/konnektor/pull/51#issuecomment-2183410901) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +1. 🗣 Commented on [#945](https://github.com/ToFuProject/tofu/pull/945#issuecomment-2187590629) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#59](https://github.com/PenguinCloud/WaddleBot-Core/pull/59#issuecomment-2187580055) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) +3. 🗣 Commented on [#18](https://github.com/2lambda123/scikit-decide/pull/18#issuecomment-2187221563) in [2lambda123/scikit-decide](https://github.com/2lambda123/scikit-decide) +4. 🗣 Commented on [#3](https://github.com/2lambda123/graphene-django/pull/3#issuecomment-2187193197) in [2lambda123/graphene-django](https://github.com/2lambda123/graphene-django) +5. 🗣 Commented on [#1](https://github.com/2lambda123/elementary/pull/1#issuecomment-2187185740) in [2lambda123/elementary](https://github.com/2lambda123/elementary) +6. 🗣 Commented on [#651](https://github.com/HEXRD/hexrd/pull/651#issuecomment-2186869727) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +7. 🗣 Commented on [#3985](https://github.com/privacyidea/privacyidea/pull/3985#issuecomment-2186630547) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#80](https://github.com/eastgenomics/Genetics_Ark/pull/80#issuecomment-2186285377) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +9. 🗣 Commented on [#98](https://github.com/eastgenomics/trendyQC/pull/98#issuecomment-2186178831) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +10. 🗣 Commented on [#77](https://github.com/mgeier/sphinx-last-updated-by-git/pull/77#issuecomment-2185997207) in [mgeier/sphinx-last-updated-by-git](https://github.com/mgeier/sphinx-last-updated-by-git) From a90b14c15588cccfd7e32b1e38f720ea266dd75b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 26 Jun 2024 00:41:07 +0000 Subject: [PATCH 1955/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index addabb3c..2962a471 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#945](https://github.com/ToFuProject/tofu/pull/945#issuecomment-2187590629) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#59](https://github.com/PenguinCloud/WaddleBot-Core/pull/59#issuecomment-2187580055) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) -3. 🗣 Commented on [#18](https://github.com/2lambda123/scikit-decide/pull/18#issuecomment-2187221563) in [2lambda123/scikit-decide](https://github.com/2lambda123/scikit-decide) -4. 🗣 Commented on [#3](https://github.com/2lambda123/graphene-django/pull/3#issuecomment-2187193197) in [2lambda123/graphene-django](https://github.com/2lambda123/graphene-django) -5. 🗣 Commented on [#1](https://github.com/2lambda123/elementary/pull/1#issuecomment-2187185740) in [2lambda123/elementary](https://github.com/2lambda123/elementary) -6. 🗣 Commented on [#651](https://github.com/HEXRD/hexrd/pull/651#issuecomment-2186869727) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -7. 🗣 Commented on [#3985](https://github.com/privacyidea/privacyidea/pull/3985#issuecomment-2186630547) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#80](https://github.com/eastgenomics/Genetics_Ark/pull/80#issuecomment-2186285377) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -9. 🗣 Commented on [#98](https://github.com/eastgenomics/trendyQC/pull/98#issuecomment-2186178831) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -10. 🗣 Commented on [#77](https://github.com/mgeier/sphinx-last-updated-by-git/pull/77#issuecomment-2185997207) in [mgeier/sphinx-last-updated-by-git](https://github.com/mgeier/sphinx-last-updated-by-git) +1. 🗣 Commented on [#321](https://github.com/AdvancedPhotonSource/tike/pull/321#issuecomment-2189326488) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +2. 🗣 Commented on [#100](https://github.com/eastgenomics/trendyQC/pull/100#issuecomment-2189218439) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +3. 🗣 Commented on [#57](https://github.com/oemof/demandlib/pull/57#issuecomment-2189184008) in [oemof/demandlib](https://github.com/oemof/demandlib) +4. 🗣 Commented on [#1005](https://github.com/scilus/scilpy/pull/1005#issuecomment-2189142674) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#99](https://github.com/eastgenomics/trendyQC/pull/99#issuecomment-2189088125) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +6. 🗣 Commented on [#3987](https://github.com/privacyidea/privacyidea/pull/3987#issuecomment-2188953683) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +7. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_generate_wgs_solid_cancer_workbook/pull/5#issuecomment-2188776918) in [eastgenomics/eggd_generate_wgs_solid_cancer_workbook](https://github.com/eastgenomics/eggd_generate_wgs_solid_cancer_workbook) +8. 🗣 Commented on [#40](https://github.com/eastgenomics/dx-streaming-upload/pull/40#issuecomment-2188765021) in [eastgenomics/dx-streaming-upload](https://github.com/eastgenomics/dx-streaming-upload) +9. 🗣 Commented on [#993](https://github.com/avaframe/AvaFrame/pull/993#issuecomment-2188645672) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook/pull/3#issuecomment-2188642206) in [eastgenomics/eggd_generate_rd_wgs_workbook](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook) From e2e4fb97f0ef19116e4750f67979df60b9535803 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 00:41:44 +0000 Subject: [PATCH 1956/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2962a471..b4b778b3 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#321](https://github.com/AdvancedPhotonSource/tike/pull/321#issuecomment-2189326488) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -2. 🗣 Commented on [#100](https://github.com/eastgenomics/trendyQC/pull/100#issuecomment-2189218439) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -3. 🗣 Commented on [#57](https://github.com/oemof/demandlib/pull/57#issuecomment-2189184008) in [oemof/demandlib](https://github.com/oemof/demandlib) -4. 🗣 Commented on [#1005](https://github.com/scilus/scilpy/pull/1005#issuecomment-2189142674) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#99](https://github.com/eastgenomics/trendyQC/pull/99#issuecomment-2189088125) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -6. 🗣 Commented on [#3987](https://github.com/privacyidea/privacyidea/pull/3987#issuecomment-2188953683) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -7. 🗣 Commented on [#5](https://github.com/eastgenomics/eggd_generate_wgs_solid_cancer_workbook/pull/5#issuecomment-2188776918) in [eastgenomics/eggd_generate_wgs_solid_cancer_workbook](https://github.com/eastgenomics/eggd_generate_wgs_solid_cancer_workbook) -8. 🗣 Commented on [#40](https://github.com/eastgenomics/dx-streaming-upload/pull/40#issuecomment-2188765021) in [eastgenomics/dx-streaming-upload](https://github.com/eastgenomics/dx-streaming-upload) -9. 🗣 Commented on [#993](https://github.com/avaframe/AvaFrame/pull/993#issuecomment-2188645672) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook/pull/3#issuecomment-2188642206) in [eastgenomics/eggd_generate_rd_wgs_workbook](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook) +1. 🗣 Commented on [#2922](https://github.com/metabrainz/listenbrainz-server/pull/2922#issuecomment-2192387377) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#31](https://github.com/nsryan2/NEAR/pull/31#issuecomment-2192291717) in [nsryan2/NEAR](https://github.com/nsryan2/NEAR) +3. 🗣 Commented on [#241](https://github.com/jcmgray/quimb/pull/241#issuecomment-2191792840) in [jcmgray/quimb](https://github.com/jcmgray/quimb) +4. 🗣 Commented on [#3988](https://github.com/privacyidea/privacyidea/pull/3988#issuecomment-2191782849) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#1](https://github.com/Open-CAS/test-framework/pull/1#issuecomment-2191766003) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) +6. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser/pull/1#issuecomment-2191209566) in [eastgenomics/eggd_MetricsOutput_MultiQC_parser](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser) +7. 🗣 Commented on [#22196](https://github.com/spyder-ide/spyder/pull/22196#issuecomment-2190714094) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#321](https://github.com/AdvancedPhotonSource/tike/pull/321#issuecomment-2189326488) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +9. 🗣 Commented on [#100](https://github.com/eastgenomics/trendyQC/pull/100#issuecomment-2189218439) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +10. 🗣 Commented on [#57](https://github.com/oemof/demandlib/pull/57#issuecomment-2189184008) in [oemof/demandlib](https://github.com/oemof/demandlib) From 932c40f72ff5a7797de68a3a59ad136658c40f99 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 28 Jun 2024 00:41:53 +0000 Subject: [PATCH 1957/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b4b778b3..1e2054fd 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2922](https://github.com/metabrainz/listenbrainz-server/pull/2922#issuecomment-2192387377) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#31](https://github.com/nsryan2/NEAR/pull/31#issuecomment-2192291717) in [nsryan2/NEAR](https://github.com/nsryan2/NEAR) -3. 🗣 Commented on [#241](https://github.com/jcmgray/quimb/pull/241#issuecomment-2191792840) in [jcmgray/quimb](https://github.com/jcmgray/quimb) -4. 🗣 Commented on [#3988](https://github.com/privacyidea/privacyidea/pull/3988#issuecomment-2191782849) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#1](https://github.com/Open-CAS/test-framework/pull/1#issuecomment-2191766003) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) -6. 🗣 Commented on [#1](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser/pull/1#issuecomment-2191209566) in [eastgenomics/eggd_MetricsOutput_MultiQC_parser](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser) -7. 🗣 Commented on [#22196](https://github.com/spyder-ide/spyder/pull/22196#issuecomment-2190714094) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#321](https://github.com/AdvancedPhotonSource/tike/pull/321#issuecomment-2189326488) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -9. 🗣 Commented on [#100](https://github.com/eastgenomics/trendyQC/pull/100#issuecomment-2189218439) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -10. 🗣 Commented on [#57](https://github.com/oemof/demandlib/pull/57#issuecomment-2189184008) in [oemof/demandlib](https://github.com/oemof/demandlib) +1. 🗣 Commented on [#396](https://github.com/NASA-Planetary-Science/sbpy/pull/396#issuecomment-2195557273) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +2. 🗣 Commented on [#525](https://github.com/oemof/tespy/pull/525#issuecomment-2195411859) in [oemof/tespy](https://github.com/oemof/tespy) +3. 🗣 Commented on [#4](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook/pull/4#issuecomment-2195112212) in [eastgenomics/eggd_generate_rd_wgs_workbook](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook) +4. 🗣 Commented on [#55](https://github.com/spatialaudio/python-rtmixer/pull/55#issuecomment-2195004469) in [spatialaudio/python-rtmixer](https://github.com/spatialaudio/python-rtmixer) +5. 🗣 Commented on [#28](https://github.com/eastgenomics/eggd_artemis/pull/28#issuecomment-2194911458) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +6. 🗣 Commented on [#7](https://github.com/eastgenomics/eggd_pandora/pull/7#issuecomment-2194759409) in [eastgenomics/eggd_pandora](https://github.com/eastgenomics/eggd_pandora) +7. 🗣 Commented on [#79](https://github.com/eastgenomics/panel_ops/pull/79#issuecomment-2194219387) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) +8. 🗣 Commented on [#2922](https://github.com/metabrainz/listenbrainz-server/pull/2922#issuecomment-2192387377) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#31](https://github.com/nsryan2/NEAR/pull/31#issuecomment-2192291717) in [nsryan2/NEAR](https://github.com/nsryan2/NEAR) +10. 🗣 Commented on [#241](https://github.com/jcmgray/quimb/pull/241#issuecomment-2191792840) in [jcmgray/quimb](https://github.com/jcmgray/quimb) From 163db47556cd864012cefc389ccfcb9346af612e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 29 Jun 2024 00:40:44 +0000 Subject: [PATCH 1958/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1e2054fd..9c0dbb61 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#396](https://github.com/NASA-Planetary-Science/sbpy/pull/396#issuecomment-2195557273) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -2. 🗣 Commented on [#525](https://github.com/oemof/tespy/pull/525#issuecomment-2195411859) in [oemof/tespy](https://github.com/oemof/tespy) -3. 🗣 Commented on [#4](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook/pull/4#issuecomment-2195112212) in [eastgenomics/eggd_generate_rd_wgs_workbook](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook) -4. 🗣 Commented on [#55](https://github.com/spatialaudio/python-rtmixer/pull/55#issuecomment-2195004469) in [spatialaudio/python-rtmixer](https://github.com/spatialaudio/python-rtmixer) -5. 🗣 Commented on [#28](https://github.com/eastgenomics/eggd_artemis/pull/28#issuecomment-2194911458) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -6. 🗣 Commented on [#7](https://github.com/eastgenomics/eggd_pandora/pull/7#issuecomment-2194759409) in [eastgenomics/eggd_pandora](https://github.com/eastgenomics/eggd_pandora) -7. 🗣 Commented on [#79](https://github.com/eastgenomics/panel_ops/pull/79#issuecomment-2194219387) in [eastgenomics/panel_ops](https://github.com/eastgenomics/panel_ops) -8. 🗣 Commented on [#2922](https://github.com/metabrainz/listenbrainz-server/pull/2922#issuecomment-2192387377) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#31](https://github.com/nsryan2/NEAR/pull/31#issuecomment-2192291717) in [nsryan2/NEAR](https://github.com/nsryan2/NEAR) -10. 🗣 Commented on [#241](https://github.com/jcmgray/quimb/pull/241#issuecomment-2191792840) in [jcmgray/quimb](https://github.com/jcmgray/quimb) +1. 🗣 Commented on [#322](https://github.com/AdvancedPhotonSource/tike/pull/322#issuecomment-2197510384) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +2. 🗣 Commented on [#1712](https://github.com/OGGM/oggm/pull/1712#issuecomment-2197263880) in [OGGM/oggm](https://github.com/OGGM/oggm) +3. 🗣 Commented on [#1393](https://github.com/rpm-software-management/mock/pull/1393#issuecomment-2196954241) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +4. 🗣 Commented on [#30](https://github.com/eastgenomics/eggd_artemis/pull/30#issuecomment-2196875464) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +5. 🗣 Commented on [#995](https://github.com/avaframe/AvaFrame/pull/995#issuecomment-2196733009) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#29](https://github.com/eastgenomics/eggd_artemis/pull/29#issuecomment-2196624926) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +7. 🗣 Commented on [#2925](https://github.com/metabrainz/listenbrainz-server/pull/2925#issuecomment-2196575419) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#2924](https://github.com/metabrainz/listenbrainz-server/pull/2924#issuecomment-2196464677) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#1588](https://github.com/openSUSE/osc/pull/1588#issuecomment-2196312831) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#1795](https://github.com/astropy/photutils/pull/1795#issuecomment-2195818062) in [astropy/photutils](https://github.com/astropy/photutils) From 6bd4f5a3064e2909d6bb840414d758342110afca Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 30 Jun 2024 00:45:55 +0000 Subject: [PATCH 1959/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9c0dbb61..b8eb2a76 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#322](https://github.com/AdvancedPhotonSource/tike/pull/322#issuecomment-2197510384) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -2. 🗣 Commented on [#1712](https://github.com/OGGM/oggm/pull/1712#issuecomment-2197263880) in [OGGM/oggm](https://github.com/OGGM/oggm) -3. 🗣 Commented on [#1393](https://github.com/rpm-software-management/mock/pull/1393#issuecomment-2196954241) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -4. 🗣 Commented on [#30](https://github.com/eastgenomics/eggd_artemis/pull/30#issuecomment-2196875464) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -5. 🗣 Commented on [#995](https://github.com/avaframe/AvaFrame/pull/995#issuecomment-2196733009) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#29](https://github.com/eastgenomics/eggd_artemis/pull/29#issuecomment-2196624926) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -7. 🗣 Commented on [#2925](https://github.com/metabrainz/listenbrainz-server/pull/2925#issuecomment-2196575419) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#2924](https://github.com/metabrainz/listenbrainz-server/pull/2924#issuecomment-2196464677) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#1588](https://github.com/openSUSE/osc/pull/1588#issuecomment-2196312831) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#1795](https://github.com/astropy/photutils/pull/1795#issuecomment-2195818062) in [astropy/photutils](https://github.com/astropy/photutils) +1. 🗣 Commented on [#38](https://github.com/MDAnalysis/waterdynamics/pull/38#issuecomment-2198324402) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +2. 🗣 Commented on [#193](https://github.com/aragilar/root-solver/pull/193#issuecomment-2198078029) in [aragilar/root-solver](https://github.com/aragilar/root-solver) +3. 🗣 Commented on [#228](https://github.com/aragilar/DiscSolver/pull/228#issuecomment-2198037243) in [aragilar/DiscSolver](https://github.com/aragilar/DiscSolver) +4. 🗣 Commented on [#35](https://github.com/pypr/automan/pull/35#issuecomment-2197875624) in [pypr/automan](https://github.com/pypr/automan) +5. 🗣 Commented on [#322](https://github.com/AdvancedPhotonSource/tike/pull/322#issuecomment-2197510384) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +6. 🗣 Commented on [#1712](https://github.com/OGGM/oggm/pull/1712#issuecomment-2197263880) in [OGGM/oggm](https://github.com/OGGM/oggm) +7. 🗣 Commented on [#1393](https://github.com/rpm-software-management/mock/pull/1393#issuecomment-2196954241) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +8. 🗣 Commented on [#30](https://github.com/eastgenomics/eggd_artemis/pull/30#issuecomment-2196875464) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +9. 🗣 Commented on [#995](https://github.com/avaframe/AvaFrame/pull/995#issuecomment-2196733009) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#29](https://github.com/eastgenomics/eggd_artemis/pull/29#issuecomment-2196624926) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) From e9498b255b59fe5f5d881de6ebfb45992fe28bb1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 00:48:09 +0000 Subject: [PATCH 1960/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b8eb2a76..7957235c 100644 --- a/README.md +++ b/README.md @@ -236,14 +236,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#38](https://github.com/MDAnalysis/waterdynamics/pull/38#issuecomment-2198324402) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -2. 🗣 Commented on [#193](https://github.com/aragilar/root-solver/pull/193#issuecomment-2198078029) in [aragilar/root-solver](https://github.com/aragilar/root-solver) -3. 🗣 Commented on [#228](https://github.com/aragilar/DiscSolver/pull/228#issuecomment-2198037243) in [aragilar/DiscSolver](https://github.com/aragilar/DiscSolver) -4. 🗣 Commented on [#35](https://github.com/pypr/automan/pull/35#issuecomment-2197875624) in [pypr/automan](https://github.com/pypr/automan) -5. 🗣 Commented on [#322](https://github.com/AdvancedPhotonSource/tike/pull/322#issuecomment-2197510384) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -6. 🗣 Commented on [#1712](https://github.com/OGGM/oggm/pull/1712#issuecomment-2197263880) in [OGGM/oggm](https://github.com/OGGM/oggm) -7. 🗣 Commented on [#1393](https://github.com/rpm-software-management/mock/pull/1393#issuecomment-2196954241) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -8. 🗣 Commented on [#30](https://github.com/eastgenomics/eggd_artemis/pull/30#issuecomment-2196875464) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -9. 🗣 Commented on [#995](https://github.com/avaframe/AvaFrame/pull/995#issuecomment-2196733009) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#29](https://github.com/eastgenomics/eggd_artemis/pull/29#issuecomment-2196624926) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +1. 🗣 Commented on [#1308](https://github.com/aimclub/FEDOT/pull/1308#issuecomment-2198688090) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#9297](https://github.com/statsmodels/statsmodels/pull/9297#issuecomment-2198573460) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#42](https://github.com/njzjz/wenxian/pull/42#issuecomment-2198464318) in [njzjz/wenxian](https://github.com/njzjz/wenxian) +4. 🗣 Commented on [#41](https://github.com/njzjz/wenxian/pull/41#issuecomment-2198450850) in [njzjz/wenxian](https://github.com/njzjz/wenxian) +5. 🗣 Commented on [#36](https://github.com/njzjz/wenxian/pull/36#issuecomment-2198405840) in [njzjz/wenxian](https://github.com/njzjz/wenxian) +6. 🗣 Commented on [#35](https://github.com/njzjz/wenxian/pull/35#issuecomment-2198401818) in [njzjz/wenxian](https://github.com/njzjz/wenxian) +7. 🗣 Commented on [#38](https://github.com/MDAnalysis/waterdynamics/pull/38#issuecomment-2198324402) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) +8. 🗣 Commented on [#193](https://github.com/aragilar/root-solver/pull/193#issuecomment-2198078029) in [aragilar/root-solver](https://github.com/aragilar/root-solver) +9. 🗣 Commented on [#228](https://github.com/aragilar/DiscSolver/pull/228#issuecomment-2198037243) in [aragilar/DiscSolver](https://github.com/aragilar/DiscSolver) +10. 🗣 Commented on [#35](https://github.com/pypr/automan/pull/35#issuecomment-2197875624) in [pypr/automan](https://github.com/pypr/automan) From 9ef24c1d349e5857dcb70a69b8bd43e72bf049a7 Mon Sep 17 00:00:00 2001 From: Kanishk Pachauri Date: Mon, 1 Jul 2024 21:21:22 +0530 Subject: [PATCH 1961/2173] feat: Add star history --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 7957235c..32aa5800 100644 --- a/README.md +++ b/README.md @@ -232,6 +232,10 @@ If you use this project and you like it, [please let me know](https://saythanks. - April 5, 2020 - [PEP8Speaks - Now helping 5,000 open source projects write neat and clean Python](https://orkohunter.net/blog/pep8speaks-5000-projects/) +# Star History + +[![Star History Chart](https://api.star-history.com/svg?repos=pep8speaks-org/pep8speaks&type=Date)](https://star-history.com/#pep8speaks-org/pep8speaks&Date) + # Recent Activity From 2b78786bed48360f4b48b923c347f68012a592cd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 00:41:48 +0000 Subject: [PATCH 1962/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 32aa5800..12ed1939 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1308](https://github.com/aimclub/FEDOT/pull/1308#issuecomment-2198688090) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#9297](https://github.com/statsmodels/statsmodels/pull/9297#issuecomment-2198573460) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#42](https://github.com/njzjz/wenxian/pull/42#issuecomment-2198464318) in [njzjz/wenxian](https://github.com/njzjz/wenxian) -4. 🗣 Commented on [#41](https://github.com/njzjz/wenxian/pull/41#issuecomment-2198450850) in [njzjz/wenxian](https://github.com/njzjz/wenxian) -5. 🗣 Commented on [#36](https://github.com/njzjz/wenxian/pull/36#issuecomment-2198405840) in [njzjz/wenxian](https://github.com/njzjz/wenxian) -6. 🗣 Commented on [#35](https://github.com/njzjz/wenxian/pull/35#issuecomment-2198401818) in [njzjz/wenxian](https://github.com/njzjz/wenxian) -7. 🗣 Commented on [#38](https://github.com/MDAnalysis/waterdynamics/pull/38#issuecomment-2198324402) in [MDAnalysis/waterdynamics](https://github.com/MDAnalysis/waterdynamics) -8. 🗣 Commented on [#193](https://github.com/aragilar/root-solver/pull/193#issuecomment-2198078029) in [aragilar/root-solver](https://github.com/aragilar/root-solver) -9. 🗣 Commented on [#228](https://github.com/aragilar/DiscSolver/pull/228#issuecomment-2198037243) in [aragilar/DiscSolver](https://github.com/aragilar/DiscSolver) -10. 🗣 Commented on [#35](https://github.com/pypr/automan/pull/35#issuecomment-2197875624) in [pypr/automan](https://github.com/pypr/automan) +1. 🗣 Commented on [#663](https://github.com/HEXRD/hexrd/pull/663#issuecomment-2201004049) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#10](https://github.com/2lambda123/sunpy1/pull/10#issuecomment-2200872386) in [2lambda123/sunpy1](https://github.com/2lambda123/sunpy1) +3. 🗣 Commented on [#10](https://github.com/2lambda123/sunpy/pull/10#issuecomment-2200872039) in [2lambda123/sunpy](https://github.com/2lambda123/sunpy) +4. 🗣 Commented on [#1](https://github.com/2lambda123/spot-sim2real/pull/1#issuecomment-2200867633) in [2lambda123/spot-sim2real](https://github.com/2lambda123/spot-sim2real) +5. 🗣 Commented on [#3227](https://github.com/reframe-hpc/reframe/pull/3227#issuecomment-2200625915) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +6. 🗣 Commented on [#1254](https://github.com/cpp-lln-lab/bidspm/pull/1254#issuecomment-2200578940) in [cpp-lln-lab/bidspm](https://github.com/cpp-lln-lab/bidspm) +7. 🗣 Commented on [#1800](https://github.com/astropy/photutils/pull/1800#issuecomment-2200236788) in [astropy/photutils](https://github.com/astropy/photutils) +8. 🗣 Commented on [#660](https://github.com/HEXRD/hexrd/pull/660#issuecomment-2200218948) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +9. 🗣 Commented on [#659](https://github.com/HEXRD/hexrd/pull/659#issuecomment-2200200643) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +10. 🗣 Commented on [#9](https://github.com/Sowhat999/online-judge/pull/9#issuecomment-2199984627) in [Sowhat999/online-judge](https://github.com/Sowhat999/online-judge) From 5c3c4f8c45b0cdff64a78cbe63a31b64e2b03d62 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 3 Jul 2024 00:41:54 +0000 Subject: [PATCH 1963/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 12ed1939..2bedab1b 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#663](https://github.com/HEXRD/hexrd/pull/663#issuecomment-2201004049) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#10](https://github.com/2lambda123/sunpy1/pull/10#issuecomment-2200872386) in [2lambda123/sunpy1](https://github.com/2lambda123/sunpy1) -3. 🗣 Commented on [#10](https://github.com/2lambda123/sunpy/pull/10#issuecomment-2200872039) in [2lambda123/sunpy](https://github.com/2lambda123/sunpy) -4. 🗣 Commented on [#1](https://github.com/2lambda123/spot-sim2real/pull/1#issuecomment-2200867633) in [2lambda123/spot-sim2real](https://github.com/2lambda123/spot-sim2real) -5. 🗣 Commented on [#3227](https://github.com/reframe-hpc/reframe/pull/3227#issuecomment-2200625915) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -6. 🗣 Commented on [#1254](https://github.com/cpp-lln-lab/bidspm/pull/1254#issuecomment-2200578940) in [cpp-lln-lab/bidspm](https://github.com/cpp-lln-lab/bidspm) -7. 🗣 Commented on [#1800](https://github.com/astropy/photutils/pull/1800#issuecomment-2200236788) in [astropy/photutils](https://github.com/astropy/photutils) -8. 🗣 Commented on [#660](https://github.com/HEXRD/hexrd/pull/660#issuecomment-2200218948) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -9. 🗣 Commented on [#659](https://github.com/HEXRD/hexrd/pull/659#issuecomment-2200200643) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -10. 🗣 Commented on [#9](https://github.com/Sowhat999/online-judge/pull/9#issuecomment-2199984627) in [Sowhat999/online-judge](https://github.com/Sowhat999/online-judge) +1. 🗣 Commented on [#600](https://github.com/ExoCTK/exoctk/pull/600#issuecomment-2203593281) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +2. 🗣 Commented on [#533](https://github.com/rpm-software-management/dnf-plugins-core/pull/533#issuecomment-2203463329) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) +3. 🗣 Commented on [#3](https://github.com/cirKITers/qml-essentials/pull/3#issuecomment-2203413351) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +4. 🗣 Commented on [#2](https://github.com/cirKITers/qml-essentials/pull/2#issuecomment-2203412885) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +5. 🗣 Commented on [#1](https://github.com/cirKITers/qml-essentials/pull/1#issuecomment-2203412483) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +6. 🗣 Commented on [#1710](https://github.com/HEXRD/hexrdgui/pull/1710#issuecomment-2203336390) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +7. 🗣 Commented on [#327](https://github.com/DeMarcoLab/fibsem/pull/327#issuecomment-2203193573) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +8. 🗣 Commented on [#8](https://github.com/Sowhat999/PySimpleGUI/pull/8#issuecomment-2202668155) in [Sowhat999/PySimpleGUI](https://github.com/Sowhat999/PySimpleGUI) +9. 🗣 Commented on [#22223](https://github.com/spyder-ide/spyder/pull/22223#issuecomment-2202337889) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#828](https://github.com/StingraySoftware/stingray/pull/828#issuecomment-2201925024) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) From 354a496a15b4b006c2456a82788689868384a15c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 4 Jul 2024 00:41:57 +0000 Subject: [PATCH 1964/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2bedab1b..ffa68211 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#600](https://github.com/ExoCTK/exoctk/pull/600#issuecomment-2203593281) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -2. 🗣 Commented on [#533](https://github.com/rpm-software-management/dnf-plugins-core/pull/533#issuecomment-2203463329) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) -3. 🗣 Commented on [#3](https://github.com/cirKITers/qml-essentials/pull/3#issuecomment-2203413351) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -4. 🗣 Commented on [#2](https://github.com/cirKITers/qml-essentials/pull/2#issuecomment-2203412885) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -5. 🗣 Commented on [#1](https://github.com/cirKITers/qml-essentials/pull/1#issuecomment-2203412483) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -6. 🗣 Commented on [#1710](https://github.com/HEXRD/hexrdgui/pull/1710#issuecomment-2203336390) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -7. 🗣 Commented on [#327](https://github.com/DeMarcoLab/fibsem/pull/327#issuecomment-2203193573) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -8. 🗣 Commented on [#8](https://github.com/Sowhat999/PySimpleGUI/pull/8#issuecomment-2202668155) in [Sowhat999/PySimpleGUI](https://github.com/Sowhat999/PySimpleGUI) -9. 🗣 Commented on [#22223](https://github.com/spyder-ide/spyder/pull/22223#issuecomment-2202337889) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#828](https://github.com/StingraySoftware/stingray/pull/828#issuecomment-2201925024) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +1. 🗣 Commented on [#5741](https://github.com/rhinstaller/anaconda/pull/5741#issuecomment-2205921635) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#5740](https://github.com/rhinstaller/anaconda/pull/5740#issuecomment-2205572670) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#31](https://github.com/eastgenomics/eggd_artemis/pull/31#issuecomment-2205390994) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +4. 🗣 Commented on [#3997](https://github.com/privacyidea/privacyidea/pull/3997#issuecomment-2205338687) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#999](https://github.com/avaframe/AvaFrame/pull/999#issuecomment-2205275404) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#5739](https://github.com/rhinstaller/anaconda/pull/5739#issuecomment-2205184078) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#501](https://github.com/Spoken-tutorial/spoken-website/pull/501#issuecomment-2205097502) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +8. 🗣 Commented on [#455](https://github.com/payu-org/payu/pull/455#issuecomment-2204770004) in [payu-org/payu](https://github.com/payu-org/payu) +9. 🗣 Commented on [#4383](https://github.com/uwcirg/truenth-portal/pull/4383#issuecomment-2204640591) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +10. 🗣 Commented on [#33](https://github.com/gwpy/gwtrigfind/pull/33#issuecomment-2204621970) in [gwpy/gwtrigfind](https://github.com/gwpy/gwtrigfind) From 0a02daeca4844ab52bf867a95f466b0d8473efd8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Jul 2024 00:41:42 +0000 Subject: [PATCH 1965/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ffa68211..7ce03548 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5741](https://github.com/rhinstaller/anaconda/pull/5741#issuecomment-2205921635) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#5740](https://github.com/rhinstaller/anaconda/pull/5740#issuecomment-2205572670) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#31](https://github.com/eastgenomics/eggd_artemis/pull/31#issuecomment-2205390994) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -4. 🗣 Commented on [#3997](https://github.com/privacyidea/privacyidea/pull/3997#issuecomment-2205338687) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#999](https://github.com/avaframe/AvaFrame/pull/999#issuecomment-2205275404) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#5739](https://github.com/rhinstaller/anaconda/pull/5739#issuecomment-2205184078) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#501](https://github.com/Spoken-tutorial/spoken-website/pull/501#issuecomment-2205097502) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -8. 🗣 Commented on [#455](https://github.com/payu-org/payu/pull/455#issuecomment-2204770004) in [payu-org/payu](https://github.com/payu-org/payu) -9. 🗣 Commented on [#4383](https://github.com/uwcirg/truenth-portal/pull/4383#issuecomment-2204640591) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -10. 🗣 Commented on [#33](https://github.com/gwpy/gwtrigfind/pull/33#issuecomment-2204621970) in [gwpy/gwtrigfind](https://github.com/gwpy/gwtrigfind) +1. 🗣 Commented on [#669](https://github.com/HEXRD/hexrd/pull/669#issuecomment-2209231275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#118](https://github.com/eastgenomics/eggd_conductor/pull/118#issuecomment-2209208478) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +3. 🗣 Commented on [#883](https://github.com/OpenFreeEnergy/openfe/pull/883#issuecomment-2209045999) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#4](https://github.com/Open-CAS/test-framework/pull/4#issuecomment-2208927150) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) +5. 🗣 Commented on [#18](https://github.com/thoth-pub/thoth-loader/pull/18#issuecomment-2208864592) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) +6. 🗣 Commented on [#1597](https://github.com/openSUSE/osc/pull/1597#issuecomment-2208847301) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#3999](https://github.com/privacyidea/privacyidea/pull/3999#issuecomment-2208442081) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#75](https://github.com/cnovel/PodcastBulkDownloader/pull/75#issuecomment-2208350672) in [cnovel/PodcastBulkDownloader](https://github.com/cnovel/PodcastBulkDownloader) +9. 🗣 Commented on [#502](https://github.com/Spoken-tutorial/spoken-website/pull/502#issuecomment-2208305128) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +10. 🗣 Commented on [#234](https://github.com/Fatal1ty/mashumaro/pull/234#issuecomment-2207696825) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) From 8dae66858ee53e62b1e7c89f0f339e10e9d2c7f2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jul 2024 00:40:34 +0000 Subject: [PATCH 1966/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7ce03548..8e354d2d 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#669](https://github.com/HEXRD/hexrd/pull/669#issuecomment-2209231275) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#118](https://github.com/eastgenomics/eggd_conductor/pull/118#issuecomment-2209208478) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -3. 🗣 Commented on [#883](https://github.com/OpenFreeEnergy/openfe/pull/883#issuecomment-2209045999) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#4](https://github.com/Open-CAS/test-framework/pull/4#issuecomment-2208927150) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) -5. 🗣 Commented on [#18](https://github.com/thoth-pub/thoth-loader/pull/18#issuecomment-2208864592) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) -6. 🗣 Commented on [#1597](https://github.com/openSUSE/osc/pull/1597#issuecomment-2208847301) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#3999](https://github.com/privacyidea/privacyidea/pull/3999#issuecomment-2208442081) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#75](https://github.com/cnovel/PodcastBulkDownloader/pull/75#issuecomment-2208350672) in [cnovel/PodcastBulkDownloader](https://github.com/cnovel/PodcastBulkDownloader) -9. 🗣 Commented on [#502](https://github.com/Spoken-tutorial/spoken-website/pull/502#issuecomment-2208305128) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -10. 🗣 Commented on [#234](https://github.com/Fatal1ty/mashumaro/pull/234#issuecomment-2207696825) in [Fatal1ty/mashumaro](https://github.com/Fatal1ty/mashumaro) +1. 🗣 Commented on [#601](https://github.com/ExoCTK/exoctk/pull/601#issuecomment-2211478825) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +2. 🗣 Commented on [#2931](https://github.com/metabrainz/listenbrainz-server/pull/2931#issuecomment-2211145641) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser/pull/2#issuecomment-2211101824) in [eastgenomics/eggd_MetricsOutput_MultiQC_parser](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser) +4. 🗣 Commented on [#2929](https://github.com/metabrainz/listenbrainz-server/pull/2929#issuecomment-2210873840) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#118](https://github.com/aimclub/BAMT/pull/118#issuecomment-2210820236) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +6. 🗣 Commented on [#67](https://github.com/Moonlark-Dev/Moonlark/pull/67#issuecomment-2210643843) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +7. 🗣 Commented on [#2928](https://github.com/metabrainz/listenbrainz-server/pull/2928#issuecomment-2210577094) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#185](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/185#issuecomment-2210245279) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) +9. 🗣 Commented on [#1399](https://github.com/rpm-software-management/mock/pull/1399#issuecomment-2209871428) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +10. 🗣 Commented on [#22230](https://github.com/spyder-ide/spyder/pull/22230#issuecomment-2209629013) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 25c134e1b01f566f9b1e4310de320769cbc6f98a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Jul 2024 00:46:28 +0000 Subject: [PATCH 1967/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8e354d2d..caf149ee 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#601](https://github.com/ExoCTK/exoctk/pull/601#issuecomment-2211478825) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -2. 🗣 Commented on [#2931](https://github.com/metabrainz/listenbrainz-server/pull/2931#issuecomment-2211145641) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser/pull/2#issuecomment-2211101824) in [eastgenomics/eggd_MetricsOutput_MultiQC_parser](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser) -4. 🗣 Commented on [#2929](https://github.com/metabrainz/listenbrainz-server/pull/2929#issuecomment-2210873840) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#118](https://github.com/aimclub/BAMT/pull/118#issuecomment-2210820236) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -6. 🗣 Commented on [#67](https://github.com/Moonlark-Dev/Moonlark/pull/67#issuecomment-2210643843) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -7. 🗣 Commented on [#2928](https://github.com/metabrainz/listenbrainz-server/pull/2928#issuecomment-2210577094) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#185](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/185#issuecomment-2210245279) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) -9. 🗣 Commented on [#1399](https://github.com/rpm-software-management/mock/pull/1399#issuecomment-2209871428) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -10. 🗣 Commented on [#22230](https://github.com/spyder-ide/spyder/pull/22230#issuecomment-2209629013) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#425](https://github.com/aria-tools/ARIA-tools/pull/425#issuecomment-2212054477) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +2. 🗣 Commented on [#19](https://github.com/kkuba91/turnament_organizer/pull/19#issuecomment-2211754433) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +3. 🗣 Commented on [#601](https://github.com/ExoCTK/exoctk/pull/601#issuecomment-2211478825) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +4. 🗣 Commented on [#2931](https://github.com/metabrainz/listenbrainz-server/pull/2931#issuecomment-2211145641) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser/pull/2#issuecomment-2211101824) in [eastgenomics/eggd_MetricsOutput_MultiQC_parser](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser) +6. 🗣 Commented on [#2929](https://github.com/metabrainz/listenbrainz-server/pull/2929#issuecomment-2210873840) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#118](https://github.com/aimclub/BAMT/pull/118#issuecomment-2210820236) in [aimclub/BAMT](https://github.com/aimclub/BAMT) +8. 🗣 Commented on [#67](https://github.com/Moonlark-Dev/Moonlark/pull/67#issuecomment-2210643843) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +9. 🗣 Commented on [#2928](https://github.com/metabrainz/listenbrainz-server/pull/2928#issuecomment-2210577094) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#185](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/185#issuecomment-2210245279) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) From f8dc57a2fa7b5f9df1135b0c5c863d34b71212f8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Jul 2024 00:43:42 +0000 Subject: [PATCH 1968/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index caf149ee..0f85c488 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#425](https://github.com/aria-tools/ARIA-tools/pull/425#issuecomment-2212054477) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -2. 🗣 Commented on [#19](https://github.com/kkuba91/turnament_organizer/pull/19#issuecomment-2211754433) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -3. 🗣 Commented on [#601](https://github.com/ExoCTK/exoctk/pull/601#issuecomment-2211478825) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -4. 🗣 Commented on [#2931](https://github.com/metabrainz/listenbrainz-server/pull/2931#issuecomment-2211145641) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser/pull/2#issuecomment-2211101824) in [eastgenomics/eggd_MetricsOutput_MultiQC_parser](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser) -6. 🗣 Commented on [#2929](https://github.com/metabrainz/listenbrainz-server/pull/2929#issuecomment-2210873840) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#118](https://github.com/aimclub/BAMT/pull/118#issuecomment-2210820236) in [aimclub/BAMT](https://github.com/aimclub/BAMT) -8. 🗣 Commented on [#67](https://github.com/Moonlark-Dev/Moonlark/pull/67#issuecomment-2210643843) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -9. 🗣 Commented on [#2928](https://github.com/metabrainz/listenbrainz-server/pull/2928#issuecomment-2210577094) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#185](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2/pull/185#issuecomment-2210245279) in [AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2](https://github.com/AlbertEinsteinTG/Adv-Auto-Filter-Bot-V2) +1. 🗣 Commented on [#1004](https://github.com/scilus/scilpy/pull/1004#issuecomment-2212553853) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#82](https://github.com/Moonlark-Dev/Moonlark/pull/82#issuecomment-2212453565) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +3. 🗣 Commented on [#74](https://github.com/Moonlark-Dev/Moonlark/pull/74#issuecomment-2212431026) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +4. 🗣 Commented on [#1611](https://github.com/spacetelescope/jwql/pull/1611#issuecomment-2212349206) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#425](https://github.com/aria-tools/ARIA-tools/pull/425#issuecomment-2212054477) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +6. 🗣 Commented on [#19](https://github.com/kkuba91/turnament_organizer/pull/19#issuecomment-2211754433) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) +7. 🗣 Commented on [#601](https://github.com/ExoCTK/exoctk/pull/601#issuecomment-2211478825) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +8. 🗣 Commented on [#2931](https://github.com/metabrainz/listenbrainz-server/pull/2931#issuecomment-2211145641) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser/pull/2#issuecomment-2211101824) in [eastgenomics/eggd_MetricsOutput_MultiQC_parser](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser) +10. 🗣 Commented on [#2929](https://github.com/metabrainz/listenbrainz-server/pull/2929#issuecomment-2210873840) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 2e069df27758da4d07d0c3b094faf6749afda7ad Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 9 Jul 2024 00:42:23 +0000 Subject: [PATCH 1969/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0f85c488..f83dda59 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1004](https://github.com/scilus/scilpy/pull/1004#issuecomment-2212553853) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#82](https://github.com/Moonlark-Dev/Moonlark/pull/82#issuecomment-2212453565) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -3. 🗣 Commented on [#74](https://github.com/Moonlark-Dev/Moonlark/pull/74#issuecomment-2212431026) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -4. 🗣 Commented on [#1611](https://github.com/spacetelescope/jwql/pull/1611#issuecomment-2212349206) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#425](https://github.com/aria-tools/ARIA-tools/pull/425#issuecomment-2212054477) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -6. 🗣 Commented on [#19](https://github.com/kkuba91/turnament_organizer/pull/19#issuecomment-2211754433) in [kkuba91/turnament_organizer](https://github.com/kkuba91/turnament_organizer) -7. 🗣 Commented on [#601](https://github.com/ExoCTK/exoctk/pull/601#issuecomment-2211478825) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -8. 🗣 Commented on [#2931](https://github.com/metabrainz/listenbrainz-server/pull/2931#issuecomment-2211145641) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#2](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser/pull/2#issuecomment-2211101824) in [eastgenomics/eggd_MetricsOutput_MultiQC_parser](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser) -10. 🗣 Commented on [#2929](https://github.com/metabrainz/listenbrainz-server/pull/2929#issuecomment-2210873840) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#6](https://github.com/2lambda123/ros_utilities/pull/6#issuecomment-2214936769) in [2lambda123/ros_utilities](https://github.com/2lambda123/ros_utilities) +2. 🗣 Commented on [#81](https://github.com/2lambda123/home-assistant-core/pull/81#issuecomment-2214912304) in [2lambda123/home-assistant-core](https://github.com/2lambda123/home-assistant-core) +3. 🗣 Commented on [#3](https://github.com/2lambda123/graphene-django/pull/3#issuecomment-2214906286) in [2lambda123/graphene-django](https://github.com/2lambda123/graphene-django) +4. 🗣 Commented on [#1](https://github.com/2lambda123/elementary/pull/1#issuecomment-2214900965) in [2lambda123/elementary](https://github.com/2lambda123/elementary) +5. 🗣 Commented on [#30](https://github.com/yrahul3910/raise/pull/30#issuecomment-2214469415) in [yrahul3910/raise](https://github.com/yrahul3910/raise) +6. 🗣 Commented on [#595](https://github.com/ExoCTK/exoctk/pull/595#issuecomment-2214291113) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +7. 🗣 Commented on [#95](https://github.com/Moonlark-Dev/Moonlark/pull/95#issuecomment-2214181798) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +8. 🗣 Commented on [#38](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/38#issuecomment-2214180793) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +9. 🗣 Commented on [#4003](https://github.com/privacyidea/privacyidea/pull/4003#issuecomment-2214171185) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#1001](https://github.com/avaframe/AvaFrame/pull/1001#issuecomment-2213800739) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From cabbf1c232696deba20c29598f6dea3a5f90e474 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 10 Jul 2024 00:42:56 +0000 Subject: [PATCH 1970/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f83dda59..a0a3f090 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#6](https://github.com/2lambda123/ros_utilities/pull/6#issuecomment-2214936769) in [2lambda123/ros_utilities](https://github.com/2lambda123/ros_utilities) -2. 🗣 Commented on [#81](https://github.com/2lambda123/home-assistant-core/pull/81#issuecomment-2214912304) in [2lambda123/home-assistant-core](https://github.com/2lambda123/home-assistant-core) -3. 🗣 Commented on [#3](https://github.com/2lambda123/graphene-django/pull/3#issuecomment-2214906286) in [2lambda123/graphene-django](https://github.com/2lambda123/graphene-django) -4. 🗣 Commented on [#1](https://github.com/2lambda123/elementary/pull/1#issuecomment-2214900965) in [2lambda123/elementary](https://github.com/2lambda123/elementary) -5. 🗣 Commented on [#30](https://github.com/yrahul3910/raise/pull/30#issuecomment-2214469415) in [yrahul3910/raise](https://github.com/yrahul3910/raise) -6. 🗣 Commented on [#595](https://github.com/ExoCTK/exoctk/pull/595#issuecomment-2214291113) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -7. 🗣 Commented on [#95](https://github.com/Moonlark-Dev/Moonlark/pull/95#issuecomment-2214181798) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -8. 🗣 Commented on [#38](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/38#issuecomment-2214180793) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -9. 🗣 Commented on [#4003](https://github.com/privacyidea/privacyidea/pull/4003#issuecomment-2214171185) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#1001](https://github.com/avaframe/AvaFrame/pull/1001#issuecomment-2213800739) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#94](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/94#issuecomment-2218054875) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +2. 🗣 Commented on [#1613](https://github.com/spacetelescope/jwql/pull/1613#issuecomment-2217955107) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#14](https://github.com/ITMO-NSS-team/nas-fedot/pull/14#issuecomment-2217885142) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) +4. 🗣 Commented on [#39](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/39#issuecomment-2216969410) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +5. 🗣 Commented on [#459](https://github.com/payu-org/payu/pull/459#issuecomment-2216243690) in [payu-org/payu](https://github.com/payu-org/payu) +6. 🗣 Commented on [#22237](https://github.com/spyder-ide/spyder/pull/22237#issuecomment-2216103685) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#527](https://github.com/oemof/tespy/pull/527#issuecomment-2215346818) in [oemof/tespy](https://github.com/oemof/tespy) +8. 🗣 Commented on [#1599](https://github.com/openSUSE/osc/pull/1599#issuecomment-2215010687) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#6](https://github.com/2lambda123/ros_utilities/pull/6#issuecomment-2214936769) in [2lambda123/ros_utilities](https://github.com/2lambda123/ros_utilities) +10. 🗣 Commented on [#81](https://github.com/2lambda123/home-assistant-core/pull/81#issuecomment-2214912304) in [2lambda123/home-assistant-core](https://github.com/2lambda123/home-assistant-core) From a24d7e8dba8978564d8c461eab773f6a2bf4bfa4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 11 Jul 2024 00:43:02 +0000 Subject: [PATCH 1971/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a0a3f090..e88861ab 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#94](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/94#issuecomment-2218054875) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -2. 🗣 Commented on [#1613](https://github.com/spacetelescope/jwql/pull/1613#issuecomment-2217955107) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#14](https://github.com/ITMO-NSS-team/nas-fedot/pull/14#issuecomment-2217885142) in [ITMO-NSS-team/nas-fedot](https://github.com/ITMO-NSS-team/nas-fedot) -4. 🗣 Commented on [#39](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/39#issuecomment-2216969410) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -5. 🗣 Commented on [#459](https://github.com/payu-org/payu/pull/459#issuecomment-2216243690) in [payu-org/payu](https://github.com/payu-org/payu) -6. 🗣 Commented on [#22237](https://github.com/spyder-ide/spyder/pull/22237#issuecomment-2216103685) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#527](https://github.com/oemof/tespy/pull/527#issuecomment-2215346818) in [oemof/tespy](https://github.com/oemof/tespy) -8. 🗣 Commented on [#1599](https://github.com/openSUSE/osc/pull/1599#issuecomment-2215010687) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#6](https://github.com/2lambda123/ros_utilities/pull/6#issuecomment-2214936769) in [2lambda123/ros_utilities](https://github.com/2lambda123/ros_utilities) -10. 🗣 Commented on [#81](https://github.com/2lambda123/home-assistant-core/pull/81#issuecomment-2214912304) in [2lambda123/home-assistant-core](https://github.com/2lambda123/home-assistant-core) +1. 🗣 Commented on [#400](https://github.com/NASA-Planetary-Science/sbpy/pull/400#issuecomment-2221260368) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +2. 🗣 Commented on [#1614](https://github.com/spacetelescope/jwql/pull/1614#issuecomment-2220982836) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#899](https://github.com/fury-gl/fury/pull/899#issuecomment-2220949364) in [fury-gl/fury](https://github.com/fury-gl/fury) +4. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe-gromacs/pull/1#issuecomment-2220716289) in [OpenFreeEnergy/openfe-gromacs](https://github.com/OpenFreeEnergy/openfe-gromacs) +5. 🗣 Commented on [#22244](https://github.com/spyder-ide/spyder/pull/22244#issuecomment-2218984582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#22243](https://github.com/spyder-ide/spyder/pull/22243#issuecomment-2218869650) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#5](https://github.com/Open-CAS/test-framework/pull/5#issuecomment-2218482900) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) +8. 🗣 Commented on [#22200](https://github.com/spyder-ide/spyder/pull/22200#issuecomment-2218188476) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#94](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/94#issuecomment-2218054875) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +10. 🗣 Commented on [#1613](https://github.com/spacetelescope/jwql/pull/1613#issuecomment-2217955107) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 775f03c7112065c481ea198ad83796909bd08171 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 12 Jul 2024 00:42:15 +0000 Subject: [PATCH 1972/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e88861ab..cdc71d72 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#400](https://github.com/NASA-Planetary-Science/sbpy/pull/400#issuecomment-2221260368) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -2. 🗣 Commented on [#1614](https://github.com/spacetelescope/jwql/pull/1614#issuecomment-2220982836) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#899](https://github.com/fury-gl/fury/pull/899#issuecomment-2220949364) in [fury-gl/fury](https://github.com/fury-gl/fury) -4. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe-gromacs/pull/1#issuecomment-2220716289) in [OpenFreeEnergy/openfe-gromacs](https://github.com/OpenFreeEnergy/openfe-gromacs) -5. 🗣 Commented on [#22244](https://github.com/spyder-ide/spyder/pull/22244#issuecomment-2218984582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#22243](https://github.com/spyder-ide/spyder/pull/22243#issuecomment-2218869650) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#5](https://github.com/Open-CAS/test-framework/pull/5#issuecomment-2218482900) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) -8. 🗣 Commented on [#22200](https://github.com/spyder-ide/spyder/pull/22200#issuecomment-2218188476) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#94](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/94#issuecomment-2218054875) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -10. 🗣 Commented on [#1613](https://github.com/spacetelescope/jwql/pull/1613#issuecomment-2217955107) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#416](https://github.com/cggh/scikit-allel/pull/416#issuecomment-2222504973) in [cggh/scikit-allel](https://github.com/cggh/scikit-allel) +2. 🗣 Commented on [#40](https://github.com/NASA-Planetary-Science/pgdtools/pull/40#issuecomment-2222469477) in [NASA-Planetary-Science/pgdtools](https://github.com/NASA-Planetary-Science/pgdtools) +3. 🗣 Commented on [#40](https://github.com/NASA-Planetary-Science/pgdtools/pull/40#issuecomment-2222404727) in [NASA-Planetary-Science/pgdtools](https://github.com/NASA-Planetary-Science/pgdtools) +4. 🗣 Commented on [#461](https://github.com/payu-org/payu/pull/461#issuecomment-2221857765) in [payu-org/payu](https://github.com/payu-org/payu) +5. 🗣 Commented on [#400](https://github.com/NASA-Planetary-Science/sbpy/pull/400#issuecomment-2221260368) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +6. 🗣 Commented on [#1614](https://github.com/spacetelescope/jwql/pull/1614#issuecomment-2220982836) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +7. 🗣 Commented on [#899](https://github.com/fury-gl/fury/pull/899#issuecomment-2220949364) in [fury-gl/fury](https://github.com/fury-gl/fury) +8. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe-gromacs/pull/1#issuecomment-2220716289) in [OpenFreeEnergy/openfe-gromacs](https://github.com/OpenFreeEnergy/openfe-gromacs) +9. 🗣 Commented on [#22244](https://github.com/spyder-ide/spyder/pull/22244#issuecomment-2218984582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#22243](https://github.com/spyder-ide/spyder/pull/22243#issuecomment-2218869650) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From d8316341e14b621eaab67d2fb45d3a678ec91bfa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jul 2024 00:42:54 +0000 Subject: [PATCH 1973/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cdc71d72..c7f8183f 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#416](https://github.com/cggh/scikit-allel/pull/416#issuecomment-2222504973) in [cggh/scikit-allel](https://github.com/cggh/scikit-allel) -2. 🗣 Commented on [#40](https://github.com/NASA-Planetary-Science/pgdtools/pull/40#issuecomment-2222469477) in [NASA-Planetary-Science/pgdtools](https://github.com/NASA-Planetary-Science/pgdtools) -3. 🗣 Commented on [#40](https://github.com/NASA-Planetary-Science/pgdtools/pull/40#issuecomment-2222404727) in [NASA-Planetary-Science/pgdtools](https://github.com/NASA-Planetary-Science/pgdtools) -4. 🗣 Commented on [#461](https://github.com/payu-org/payu/pull/461#issuecomment-2221857765) in [payu-org/payu](https://github.com/payu-org/payu) -5. 🗣 Commented on [#400](https://github.com/NASA-Planetary-Science/sbpy/pull/400#issuecomment-2221260368) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -6. 🗣 Commented on [#1614](https://github.com/spacetelescope/jwql/pull/1614#issuecomment-2220982836) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -7. 🗣 Commented on [#899](https://github.com/fury-gl/fury/pull/899#issuecomment-2220949364) in [fury-gl/fury](https://github.com/fury-gl/fury) -8. 🗣 Commented on [#1](https://github.com/OpenFreeEnergy/openfe-gromacs/pull/1#issuecomment-2220716289) in [OpenFreeEnergy/openfe-gromacs](https://github.com/OpenFreeEnergy/openfe-gromacs) -9. 🗣 Commented on [#22244](https://github.com/spyder-ide/spyder/pull/22244#issuecomment-2218984582) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#22243](https://github.com/spyder-ide/spyder/pull/22243#issuecomment-2218869650) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#680](https://github.com/HEXRD/hexrd/pull/680#issuecomment-2225886784) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#2](https://github.com/Karim-53/pdll/pull/2#issuecomment-2225763290) in [Karim-53/pdll](https://github.com/Karim-53/pdll) +3. 🗣 Commented on [#135](https://github.com/Richard-Sti/csiborgtools/pull/135#issuecomment-2225751328) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +4. 🗣 Commented on [#3233](https://github.com/reframe-hpc/reframe/pull/3233#issuecomment-2225688004) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +5. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser/pull/3#issuecomment-2225617810) in [eastgenomics/eggd_MetricsOutput_MultiQC_parser](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser) +6. 🗣 Commented on [#5758](https://github.com/rhinstaller/anaconda/pull/5758#issuecomment-2225364117) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#208](https://github.com/eastgenomics/eggd_dias_batch/pull/208#issuecomment-2225175073) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +8. 🗣 Commented on [#416](https://github.com/cggh/scikit-allel/pull/416#issuecomment-2222504973) in [cggh/scikit-allel](https://github.com/cggh/scikit-allel) +9. 🗣 Commented on [#40](https://github.com/NASA-Planetary-Science/pgdtools/pull/40#issuecomment-2222469477) in [NASA-Planetary-Science/pgdtools](https://github.com/NASA-Planetary-Science/pgdtools) +10. 🗣 Commented on [#40](https://github.com/NASA-Planetary-Science/pgdtools/pull/40#issuecomment-2222404727) in [NASA-Planetary-Science/pgdtools](https://github.com/NASA-Planetary-Science/pgdtools) From cfe46130d3355095c2e72119e2d8e6557ca58dc9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 14 Jul 2024 00:47:18 +0000 Subject: [PATCH 1974/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c7f8183f..b9cbb37e 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#680](https://github.com/HEXRD/hexrd/pull/680#issuecomment-2225886784) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#2](https://github.com/Karim-53/pdll/pull/2#issuecomment-2225763290) in [Karim-53/pdll](https://github.com/Karim-53/pdll) -3. 🗣 Commented on [#135](https://github.com/Richard-Sti/csiborgtools/pull/135#issuecomment-2225751328) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -4. 🗣 Commented on [#3233](https://github.com/reframe-hpc/reframe/pull/3233#issuecomment-2225688004) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -5. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser/pull/3#issuecomment-2225617810) in [eastgenomics/eggd_MetricsOutput_MultiQC_parser](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser) -6. 🗣 Commented on [#5758](https://github.com/rhinstaller/anaconda/pull/5758#issuecomment-2225364117) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#208](https://github.com/eastgenomics/eggd_dias_batch/pull/208#issuecomment-2225175073) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -8. 🗣 Commented on [#416](https://github.com/cggh/scikit-allel/pull/416#issuecomment-2222504973) in [cggh/scikit-allel](https://github.com/cggh/scikit-allel) -9. 🗣 Commented on [#40](https://github.com/NASA-Planetary-Science/pgdtools/pull/40#issuecomment-2222469477) in [NASA-Planetary-Science/pgdtools](https://github.com/NASA-Planetary-Science/pgdtools) -10. 🗣 Commented on [#40](https://github.com/NASA-Planetary-Science/pgdtools/pull/40#issuecomment-2222404727) in [NASA-Planetary-Science/pgdtools](https://github.com/NASA-Planetary-Science/pgdtools) +1. 🗣 Commented on [#909](https://github.com/fury-gl/fury/pull/909#issuecomment-2227096836) in [fury-gl/fury](https://github.com/fury-gl/fury) +2. 🗣 Commented on [#6](https://github.com/ERPGulf/ultramsg_4_ERPNext/pull/6#issuecomment-2226939573) in [ERPGulf/ultramsg_4_ERPNext](https://github.com/ERPGulf/ultramsg_4_ERPNext) +3. 🗣 Commented on [#9309](https://github.com/statsmodels/statsmodels/pull/9309#issuecomment-2226782513) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +4. 🗣 Commented on [#1620](https://github.com/spacetelescope/jwql/pull/1620#issuecomment-2226727870) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#1120](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1120#issuecomment-2226400096) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#680](https://github.com/HEXRD/hexrd/pull/680#issuecomment-2225886784) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +7. 🗣 Commented on [#2](https://github.com/Karim-53/pdll/pull/2#issuecomment-2225763290) in [Karim-53/pdll](https://github.com/Karim-53/pdll) +8. 🗣 Commented on [#135](https://github.com/Richard-Sti/csiborgtools/pull/135#issuecomment-2225751328) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +9. 🗣 Commented on [#3233](https://github.com/reframe-hpc/reframe/pull/3233#issuecomment-2225688004) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +10. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser/pull/3#issuecomment-2225617810) in [eastgenomics/eggd_MetricsOutput_MultiQC_parser](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser) From 5d5b17d080f385165aa80a7c21a810d7d17888ae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 15 Jul 2024 00:44:24 +0000 Subject: [PATCH 1975/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b9cbb37e..ec4a1ded 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#909](https://github.com/fury-gl/fury/pull/909#issuecomment-2227096836) in [fury-gl/fury](https://github.com/fury-gl/fury) -2. 🗣 Commented on [#6](https://github.com/ERPGulf/ultramsg_4_ERPNext/pull/6#issuecomment-2226939573) in [ERPGulf/ultramsg_4_ERPNext](https://github.com/ERPGulf/ultramsg_4_ERPNext) -3. 🗣 Commented on [#9309](https://github.com/statsmodels/statsmodels/pull/9309#issuecomment-2226782513) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -4. 🗣 Commented on [#1620](https://github.com/spacetelescope/jwql/pull/1620#issuecomment-2226727870) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#1120](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1120#issuecomment-2226400096) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#680](https://github.com/HEXRD/hexrd/pull/680#issuecomment-2225886784) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -7. 🗣 Commented on [#2](https://github.com/Karim-53/pdll/pull/2#issuecomment-2225763290) in [Karim-53/pdll](https://github.com/Karim-53/pdll) -8. 🗣 Commented on [#135](https://github.com/Richard-Sti/csiborgtools/pull/135#issuecomment-2225751328) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -9. 🗣 Commented on [#3233](https://github.com/reframe-hpc/reframe/pull/3233#issuecomment-2225688004) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -10. 🗣 Commented on [#3](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser/pull/3#issuecomment-2225617810) in [eastgenomics/eggd_MetricsOutput_MultiQC_parser](https://github.com/eastgenomics/eggd_MetricsOutput_MultiQC_parser) +1. 🗣 Commented on [#1813](https://github.com/astropy/photutils/pull/1813#issuecomment-2227521059) in [astropy/photutils](https://github.com/astropy/photutils) +2. 🗣 Commented on [#3067](https://github.com/astropy/astroquery/pull/3067#issuecomment-2227417990) in [astropy/astroquery](https://github.com/astropy/astroquery) +3. 🗣 Commented on [#61](https://github.com/aragilar/spaceplot/pull/61#issuecomment-2227254270) in [aragilar/spaceplot](https://github.com/aragilar/spaceplot) +4. 🗣 Commented on [#909](https://github.com/fury-gl/fury/pull/909#issuecomment-2227096836) in [fury-gl/fury](https://github.com/fury-gl/fury) +5. 🗣 Commented on [#6](https://github.com/ERPGulf/ultramsg_4_ERPNext/pull/6#issuecomment-2226939573) in [ERPGulf/ultramsg_4_ERPNext](https://github.com/ERPGulf/ultramsg_4_ERPNext) +6. 🗣 Commented on [#9309](https://github.com/statsmodels/statsmodels/pull/9309#issuecomment-2226782513) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +7. 🗣 Commented on [#1620](https://github.com/spacetelescope/jwql/pull/1620#issuecomment-2226727870) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#1120](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1120#issuecomment-2226400096) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#680](https://github.com/HEXRD/hexrd/pull/680#issuecomment-2225886784) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +10. 🗣 Commented on [#2](https://github.com/Karim-53/pdll/pull/2#issuecomment-2225763290) in [Karim-53/pdll](https://github.com/Karim-53/pdll) From 03636bbcd3cf3134c07d2190012f8c73d35416e4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jul 2024 00:43:22 +0000 Subject: [PATCH 1976/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ec4a1ded..f96fa2ed 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1813](https://github.com/astropy/photutils/pull/1813#issuecomment-2227521059) in [astropy/photutils](https://github.com/astropy/photutils) -2. 🗣 Commented on [#3067](https://github.com/astropy/astroquery/pull/3067#issuecomment-2227417990) in [astropy/astroquery](https://github.com/astropy/astroquery) -3. 🗣 Commented on [#61](https://github.com/aragilar/spaceplot/pull/61#issuecomment-2227254270) in [aragilar/spaceplot](https://github.com/aragilar/spaceplot) -4. 🗣 Commented on [#909](https://github.com/fury-gl/fury/pull/909#issuecomment-2227096836) in [fury-gl/fury](https://github.com/fury-gl/fury) -5. 🗣 Commented on [#6](https://github.com/ERPGulf/ultramsg_4_ERPNext/pull/6#issuecomment-2226939573) in [ERPGulf/ultramsg_4_ERPNext](https://github.com/ERPGulf/ultramsg_4_ERPNext) -6. 🗣 Commented on [#9309](https://github.com/statsmodels/statsmodels/pull/9309#issuecomment-2226782513) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -7. 🗣 Commented on [#1620](https://github.com/spacetelescope/jwql/pull/1620#issuecomment-2226727870) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#1120](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1120#issuecomment-2226400096) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#680](https://github.com/HEXRD/hexrd/pull/680#issuecomment-2225886784) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -10. 🗣 Commented on [#2](https://github.com/Karim-53/pdll/pull/2#issuecomment-2225763290) in [Karim-53/pdll](https://github.com/Karim-53/pdll) +1. 🗣 Commented on [#4](https://github.com/tomopy/astra-toolbox/pull/4#issuecomment-2228845907) in [tomopy/astra-toolbox](https://github.com/tomopy/astra-toolbox) +2. 🗣 Commented on [#209](https://github.com/eastgenomics/eggd_dias_batch/pull/209#issuecomment-2228508381) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +3. 🗣 Commented on [#6](https://github.com/OpenFreeEnergy/openfe-gromacs/pull/6#issuecomment-2228458499) in [OpenFreeEnergy/openfe-gromacs](https://github.com/OpenFreeEnergy/openfe-gromacs) +4. 🗣 Commented on [#1005](https://github.com/avaframe/AvaFrame/pull/1005#issuecomment-2228046764) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#4009](https://github.com/privacyidea/privacyidea/pull/4009#issuecomment-2227971086) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#1813](https://github.com/astropy/photutils/pull/1813#issuecomment-2227521059) in [astropy/photutils](https://github.com/astropy/photutils) +7. 🗣 Commented on [#3067](https://github.com/astropy/astroquery/pull/3067#issuecomment-2227417990) in [astropy/astroquery](https://github.com/astropy/astroquery) +8. 🗣 Commented on [#61](https://github.com/aragilar/spaceplot/pull/61#issuecomment-2227254270) in [aragilar/spaceplot](https://github.com/aragilar/spaceplot) +9. 🗣 Commented on [#909](https://github.com/fury-gl/fury/pull/909#issuecomment-2227096836) in [fury-gl/fury](https://github.com/fury-gl/fury) +10. 🗣 Commented on [#6](https://github.com/ERPGulf/ultramsg_4_ERPNext/pull/6#issuecomment-2226939573) in [ERPGulf/ultramsg_4_ERPNext](https://github.com/ERPGulf/ultramsg_4_ERPNext) From be4ff7bca316512d32f95a51e28c5354ed10471b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Jul 2024 00:43:17 +0000 Subject: [PATCH 1977/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f96fa2ed..6377ea5b 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4](https://github.com/tomopy/astra-toolbox/pull/4#issuecomment-2228845907) in [tomopy/astra-toolbox](https://github.com/tomopy/astra-toolbox) -2. 🗣 Commented on [#209](https://github.com/eastgenomics/eggd_dias_batch/pull/209#issuecomment-2228508381) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -3. 🗣 Commented on [#6](https://github.com/OpenFreeEnergy/openfe-gromacs/pull/6#issuecomment-2228458499) in [OpenFreeEnergy/openfe-gromacs](https://github.com/OpenFreeEnergy/openfe-gromacs) -4. 🗣 Commented on [#1005](https://github.com/avaframe/AvaFrame/pull/1005#issuecomment-2228046764) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#4009](https://github.com/privacyidea/privacyidea/pull/4009#issuecomment-2227971086) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#1813](https://github.com/astropy/photutils/pull/1813#issuecomment-2227521059) in [astropy/photutils](https://github.com/astropy/photutils) -7. 🗣 Commented on [#3067](https://github.com/astropy/astroquery/pull/3067#issuecomment-2227417990) in [astropy/astroquery](https://github.com/astropy/astroquery) -8. 🗣 Commented on [#61](https://github.com/aragilar/spaceplot/pull/61#issuecomment-2227254270) in [aragilar/spaceplot](https://github.com/aragilar/spaceplot) -9. 🗣 Commented on [#909](https://github.com/fury-gl/fury/pull/909#issuecomment-2227096836) in [fury-gl/fury](https://github.com/fury-gl/fury) -10. 🗣 Commented on [#6](https://github.com/ERPGulf/ultramsg_4_ERPNext/pull/6#issuecomment-2226939573) in [ERPGulf/ultramsg_4_ERPNext](https://github.com/ERPGulf/ultramsg_4_ERPNext) +1. 🗣 Commented on [#4007](https://github.com/privacyidea/privacyidea/pull/4007#issuecomment-2231429359) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#7](https://github.com/OpenFreeEnergy/openfe-gromacs/pull/7#issuecomment-2230842714) in [OpenFreeEnergy/openfe-gromacs](https://github.com/OpenFreeEnergy/openfe-gromacs) +3. 🗣 Commented on [#22259](https://github.com/spyder-ide/spyder/pull/22259#issuecomment-2229709265) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#1121](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1121#issuecomment-2229590940) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#28](https://github.com/spacetelescope/jwst_backgrounds/pull/28#issuecomment-2229472600) in [spacetelescope/jwst_backgrounds](https://github.com/spacetelescope/jwst_backgrounds) +6. 🗣 Commented on [#27](https://github.com/spacetelescope/jwst_backgrounds/pull/27#issuecomment-2229265736) in [spacetelescope/jwst_backgrounds](https://github.com/spacetelescope/jwst_backgrounds) +7. 🗣 Commented on [#1](https://github.com/2lambda123/elementary/pull/1#issuecomment-2229166946) in [2lambda123/elementary](https://github.com/2lambda123/elementary) +8. 🗣 Commented on [#4](https://github.com/tomopy/astra-toolbox/pull/4#issuecomment-2228845907) in [tomopy/astra-toolbox](https://github.com/tomopy/astra-toolbox) +9. 🗣 Commented on [#209](https://github.com/eastgenomics/eggd_dias_batch/pull/209#issuecomment-2228508381) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +10. 🗣 Commented on [#6](https://github.com/OpenFreeEnergy/openfe-gromacs/pull/6#issuecomment-2228458499) in [OpenFreeEnergy/openfe-gromacs](https://github.com/OpenFreeEnergy/openfe-gromacs) From fe296c5c52f8ff792e584c7b7bf7cb13517f948b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 Jul 2024 00:42:25 +0000 Subject: [PATCH 1978/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6377ea5b..8be969e5 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4007](https://github.com/privacyidea/privacyidea/pull/4007#issuecomment-2231429359) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#7](https://github.com/OpenFreeEnergy/openfe-gromacs/pull/7#issuecomment-2230842714) in [OpenFreeEnergy/openfe-gromacs](https://github.com/OpenFreeEnergy/openfe-gromacs) -3. 🗣 Commented on [#22259](https://github.com/spyder-ide/spyder/pull/22259#issuecomment-2229709265) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#1121](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1121#issuecomment-2229590940) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#28](https://github.com/spacetelescope/jwst_backgrounds/pull/28#issuecomment-2229472600) in [spacetelescope/jwst_backgrounds](https://github.com/spacetelescope/jwst_backgrounds) -6. 🗣 Commented on [#27](https://github.com/spacetelescope/jwst_backgrounds/pull/27#issuecomment-2229265736) in [spacetelescope/jwst_backgrounds](https://github.com/spacetelescope/jwst_backgrounds) -7. 🗣 Commented on [#1](https://github.com/2lambda123/elementary/pull/1#issuecomment-2229166946) in [2lambda123/elementary](https://github.com/2lambda123/elementary) -8. 🗣 Commented on [#4](https://github.com/tomopy/astra-toolbox/pull/4#issuecomment-2228845907) in [tomopy/astra-toolbox](https://github.com/tomopy/astra-toolbox) -9. 🗣 Commented on [#209](https://github.com/eastgenomics/eggd_dias_batch/pull/209#issuecomment-2228508381) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -10. 🗣 Commented on [#6](https://github.com/OpenFreeEnergy/openfe-gromacs/pull/6#issuecomment-2228458499) in [OpenFreeEnergy/openfe-gromacs](https://github.com/OpenFreeEnergy/openfe-gromacs) +1. 🗣 Commented on [#450](https://github.com/SDXorg/pysd/pull/450#issuecomment-2233703471) in [SDXorg/pysd](https://github.com/SDXorg/pysd) +2. 🗣 Commented on [#2](https://github.com/Code-Institute-Solutions/postgresql-and-python/pull/2#issuecomment-2233564415) in [Code-Institute-Solutions/postgresql-and-python](https://github.com/Code-Institute-Solutions/postgresql-and-python) +3. 🗣 Commented on [#886](https://github.com/spacetelescope/webbpsf/pull/886#issuecomment-2233378906) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#7](https://github.com/D0LLi/submissions-fall-2014/pull/7#issuecomment-2233334729) in [D0LLi/submissions-fall-2014](https://github.com/D0LLi/submissions-fall-2014) +5. 🗣 Commented on [#66](https://github.com/oemof/demandlib/pull/66#issuecomment-2233218559) in [oemof/demandlib](https://github.com/oemof/demandlib) +6. 🗣 Commented on [#329](https://github.com/DeMarcoLab/fibsem/pull/329#issuecomment-2232039648) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +7. 🗣 Commented on [#328](https://github.com/DeMarcoLab/fibsem/pull/328#issuecomment-2232037122) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +8. 🗣 Commented on [#161](https://github.com/aimclub/Fedot.Industrial/pull/161#issuecomment-2232019777) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +9. 🗣 Commented on [#2110](https://github.com/rpm-software-management/dnf/pull/2110#issuecomment-2231740437) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +10. 🗣 Commented on [#30](https://github.com/spacetelescope/jwst_backgrounds/pull/30#issuecomment-2231705409) in [spacetelescope/jwst_backgrounds](https://github.com/spacetelescope/jwst_backgrounds) From 12c16a8ff83b430cb918d96e813a8549907360a7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Jul 2024 05:12:41 +0000 Subject: [PATCH 1979/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8be969e5..edb07c18 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#450](https://github.com/SDXorg/pysd/pull/450#issuecomment-2233703471) in [SDXorg/pysd](https://github.com/SDXorg/pysd) -2. 🗣 Commented on [#2](https://github.com/Code-Institute-Solutions/postgresql-and-python/pull/2#issuecomment-2233564415) in [Code-Institute-Solutions/postgresql-and-python](https://github.com/Code-Institute-Solutions/postgresql-and-python) -3. 🗣 Commented on [#886](https://github.com/spacetelescope/webbpsf/pull/886#issuecomment-2233378906) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#7](https://github.com/D0LLi/submissions-fall-2014/pull/7#issuecomment-2233334729) in [D0LLi/submissions-fall-2014](https://github.com/D0LLi/submissions-fall-2014) -5. 🗣 Commented on [#66](https://github.com/oemof/demandlib/pull/66#issuecomment-2233218559) in [oemof/demandlib](https://github.com/oemof/demandlib) -6. 🗣 Commented on [#329](https://github.com/DeMarcoLab/fibsem/pull/329#issuecomment-2232039648) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -7. 🗣 Commented on [#328](https://github.com/DeMarcoLab/fibsem/pull/328#issuecomment-2232037122) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -8. 🗣 Commented on [#161](https://github.com/aimclub/Fedot.Industrial/pull/161#issuecomment-2232019777) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -9. 🗣 Commented on [#2110](https://github.com/rpm-software-management/dnf/pull/2110#issuecomment-2231740437) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -10. 🗣 Commented on [#30](https://github.com/spacetelescope/jwst_backgrounds/pull/30#issuecomment-2231705409) in [spacetelescope/jwst_backgrounds](https://github.com/spacetelescope/jwst_backgrounds) +1. 🗣 Commented on [#49](https://github.com/Borda/pyDeprecate/pull/49#issuecomment-2237387316) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) +2. 🗣 Commented on [#1623](https://github.com/spacetelescope/jwql/pull/1623#issuecomment-2237079050) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#687](https://github.com/HEXRD/hexrd/pull/687#issuecomment-2237056892) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +4. 🗣 Commented on [#31](https://github.com/spacetelescope/jwst_backgrounds/pull/31#issuecomment-2236625900) in [spacetelescope/jwst_backgrounds](https://github.com/spacetelescope/jwst_backgrounds) +5. 🗣 Commented on [#121](https://github.com/eastgenomics/eggd_conductor/pull/121#issuecomment-2236594458) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +6. 🗣 Commented on [#5775](https://github.com/rhinstaller/anaconda/pull/5775#issuecomment-2236043141) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#1007](https://github.com/avaframe/AvaFrame/pull/1007#issuecomment-2235974596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#53](https://github.com/aguinane/nem-reader/pull/53#issuecomment-2235913424) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) +9. 🗣 Commented on [#9](https://github.com/D0LLi/PySimpleGUI/pull/9#issuecomment-2235904167) in [D0LLi/PySimpleGUI](https://github.com/D0LLi/PySimpleGUI) +10. 🗣 Commented on [#450](https://github.com/SDXorg/pysd/pull/450#issuecomment-2233703471) in [SDXorg/pysd](https://github.com/SDXorg/pysd) From e48015abf36c724975728192629b8ea48f787c66 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 20 Jul 2024 00:42:04 +0000 Subject: [PATCH 1980/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index edb07c18..6367a273 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#49](https://github.com/Borda/pyDeprecate/pull/49#issuecomment-2237387316) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) -2. 🗣 Commented on [#1623](https://github.com/spacetelescope/jwql/pull/1623#issuecomment-2237079050) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#687](https://github.com/HEXRD/hexrd/pull/687#issuecomment-2237056892) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -4. 🗣 Commented on [#31](https://github.com/spacetelescope/jwst_backgrounds/pull/31#issuecomment-2236625900) in [spacetelescope/jwst_backgrounds](https://github.com/spacetelescope/jwst_backgrounds) -5. 🗣 Commented on [#121](https://github.com/eastgenomics/eggd_conductor/pull/121#issuecomment-2236594458) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -6. 🗣 Commented on [#5775](https://github.com/rhinstaller/anaconda/pull/5775#issuecomment-2236043141) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#1007](https://github.com/avaframe/AvaFrame/pull/1007#issuecomment-2235974596) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#53](https://github.com/aguinane/nem-reader/pull/53#issuecomment-2235913424) in [aguinane/nem-reader](https://github.com/aguinane/nem-reader) -9. 🗣 Commented on [#9](https://github.com/D0LLi/PySimpleGUI/pull/9#issuecomment-2235904167) in [D0LLi/PySimpleGUI](https://github.com/D0LLi/PySimpleGUI) -10. 🗣 Commented on [#450](https://github.com/SDXorg/pysd/pull/450#issuecomment-2233703471) in [SDXorg/pysd](https://github.com/SDXorg/pysd) +1. 🗣 Commented on [#427](https://github.com/aria-tools/ARIA-tools/pull/427#issuecomment-2239811097) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +2. 🗣 Commented on [#2112](https://github.com/rpm-software-management/dnf/pull/2112#issuecomment-2239717394) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +3. 🗣 Commented on [#3071](https://github.com/astropy/astroquery/pull/3071#issuecomment-2239485703) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#102](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/102#issuecomment-2238925475) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +5. 🗣 Commented on [#165](https://github.com/lettucecfd/lettuce/pull/165#issuecomment-2238707436) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +6. 🗣 Commented on [#150](https://github.com/DeMarcoLab/autolamella/pull/150#issuecomment-2238694128) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +7. 🗣 Commented on [#164](https://github.com/lettucecfd/lettuce/pull/164#issuecomment-2238690068) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +8. 🗣 Commented on [#163](https://github.com/lettucecfd/lettuce/pull/163#issuecomment-2238552280) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +9. 🗣 Commented on [#159](https://github.com/lettucecfd/lettuce/pull/159#issuecomment-2238491137) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +10. 🗣 Commented on [#3](https://github.com/D0LLi/Library_of_jumble/pull/3#issuecomment-2238049705) in [D0LLi/Library_of_jumble](https://github.com/D0LLi/Library_of_jumble) From 15a23776cbe209e4e75c14c7106b08a237b59f02 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 00:44:41 +0000 Subject: [PATCH 1981/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6367a273..920054e5 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#427](https://github.com/aria-tools/ARIA-tools/pull/427#issuecomment-2239811097) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -2. 🗣 Commented on [#2112](https://github.com/rpm-software-management/dnf/pull/2112#issuecomment-2239717394) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -3. 🗣 Commented on [#3071](https://github.com/astropy/astroquery/pull/3071#issuecomment-2239485703) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#102](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/102#issuecomment-2238925475) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -5. 🗣 Commented on [#165](https://github.com/lettucecfd/lettuce/pull/165#issuecomment-2238707436) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -6. 🗣 Commented on [#150](https://github.com/DeMarcoLab/autolamella/pull/150#issuecomment-2238694128) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -7. 🗣 Commented on [#164](https://github.com/lettucecfd/lettuce/pull/164#issuecomment-2238690068) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -8. 🗣 Commented on [#163](https://github.com/lettucecfd/lettuce/pull/163#issuecomment-2238552280) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -9. 🗣 Commented on [#159](https://github.com/lettucecfd/lettuce/pull/159#issuecomment-2238491137) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -10. 🗣 Commented on [#3](https://github.com/D0LLi/Library_of_jumble/pull/3#issuecomment-2238049705) in [D0LLi/Library_of_jumble](https://github.com/D0LLi/Library_of_jumble) +1. 🗣 Commented on [#4638](https://github.com/MDAnalysis/mdanalysis/pull/4638#issuecomment-2241806822) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#22276](https://github.com/spyder-ide/spyder/pull/22276#issuecomment-2241715596) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#78](https://github.com/cnovel/PodcastBulkDownloader/pull/78#issuecomment-2241516067) in [cnovel/PodcastBulkDownloader](https://github.com/cnovel/PodcastBulkDownloader) +4. 🗣 Commented on [#114](https://github.com/Moonlark-Dev/Moonlark/pull/114#issuecomment-2241513687) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +5. 🗣 Commented on [#427](https://github.com/aria-tools/ARIA-tools/pull/427#issuecomment-2239811097) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +6. 🗣 Commented on [#2112](https://github.com/rpm-software-management/dnf/pull/2112#issuecomment-2239717394) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +7. 🗣 Commented on [#3071](https://github.com/astropy/astroquery/pull/3071#issuecomment-2239485703) in [astropy/astroquery](https://github.com/astropy/astroquery) +8. 🗣 Commented on [#102](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/102#issuecomment-2238925475) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +9. 🗣 Commented on [#165](https://github.com/lettucecfd/lettuce/pull/165#issuecomment-2238707436) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +10. 🗣 Commented on [#150](https://github.com/DeMarcoLab/autolamella/pull/150#issuecomment-2238694128) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) From 5af3636d61662455f329e51e7ad0282f78b13507 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 23 Jul 2024 00:43:15 +0000 Subject: [PATCH 1982/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 920054e5..7a6b19c0 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4638](https://github.com/MDAnalysis/mdanalysis/pull/4638#issuecomment-2241806822) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#22276](https://github.com/spyder-ide/spyder/pull/22276#issuecomment-2241715596) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#78](https://github.com/cnovel/PodcastBulkDownloader/pull/78#issuecomment-2241516067) in [cnovel/PodcastBulkDownloader](https://github.com/cnovel/PodcastBulkDownloader) -4. 🗣 Commented on [#114](https://github.com/Moonlark-Dev/Moonlark/pull/114#issuecomment-2241513687) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -5. 🗣 Commented on [#427](https://github.com/aria-tools/ARIA-tools/pull/427#issuecomment-2239811097) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -6. 🗣 Commented on [#2112](https://github.com/rpm-software-management/dnf/pull/2112#issuecomment-2239717394) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -7. 🗣 Commented on [#3071](https://github.com/astropy/astroquery/pull/3071#issuecomment-2239485703) in [astropy/astroquery](https://github.com/astropy/astroquery) -8. 🗣 Commented on [#102](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/102#issuecomment-2238925475) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -9. 🗣 Commented on [#165](https://github.com/lettucecfd/lettuce/pull/165#issuecomment-2238707436) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -10. 🗣 Commented on [#150](https://github.com/DeMarcoLab/autolamella/pull/150#issuecomment-2238694128) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +1. 🗣 Commented on [#691](https://github.com/HEXRD/hexrd/pull/691#issuecomment-2244015558) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#955](https://github.com/ToFuProject/tofu/pull/955#issuecomment-2243867989) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#953](https://github.com/ToFuProject/tofu/pull/953#issuecomment-2243841860) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#690](https://github.com/HEXRD/hexrd/pull/690#issuecomment-2243610779) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#327](https://github.com/AdvancedPhotonSource/tike/pull/327#issuecomment-2243360666) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +6. 🗣 Commented on [#326](https://github.com/AdvancedPhotonSource/tike/pull/326#issuecomment-2243354763) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +7. 🗣 Commented on [#689](https://github.com/HEXRD/hexrd/pull/689#issuecomment-2243292184) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +8. 🗣 Commented on [#688](https://github.com/HEXRD/hexrd/pull/688#issuecomment-2243113973) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +9. 🗣 Commented on [#1311](https://github.com/aimclub/FEDOT/pull/1311#issuecomment-2242732178) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#94](https://github.com/johnveitch/cpnest/pull/94#issuecomment-2242428559) in [johnveitch/cpnest](https://github.com/johnveitch/cpnest) From 0ba5cf17bc2d6dd98b024686d9b2a1d4727833dc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jul 2024 00:43:52 +0000 Subject: [PATCH 1983/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7a6b19c0..af7e1313 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#691](https://github.com/HEXRD/hexrd/pull/691#issuecomment-2244015558) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#955](https://github.com/ToFuProject/tofu/pull/955#issuecomment-2243867989) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#953](https://github.com/ToFuProject/tofu/pull/953#issuecomment-2243841860) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#690](https://github.com/HEXRD/hexrd/pull/690#issuecomment-2243610779) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#327](https://github.com/AdvancedPhotonSource/tike/pull/327#issuecomment-2243360666) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -6. 🗣 Commented on [#326](https://github.com/AdvancedPhotonSource/tike/pull/326#issuecomment-2243354763) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -7. 🗣 Commented on [#689](https://github.com/HEXRD/hexrd/pull/689#issuecomment-2243292184) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -8. 🗣 Commented on [#688](https://github.com/HEXRD/hexrd/pull/688#issuecomment-2243113973) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -9. 🗣 Commented on [#1311](https://github.com/aimclub/FEDOT/pull/1311#issuecomment-2242732178) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#94](https://github.com/johnveitch/cpnest/pull/94#issuecomment-2242428559) in [johnveitch/cpnest](https://github.com/johnveitch/cpnest) +1. 🗣 Commented on [#465](https://github.com/payu-org/payu/pull/465#issuecomment-2246565084) in [payu-org/payu](https://github.com/payu-org/payu) +2. 🗣 Commented on [#4642](https://github.com/MDAnalysis/mdanalysis/pull/4642#issuecomment-2246353940) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#329](https://github.com/AdvancedPhotonSource/tike/pull/329#issuecomment-2246167373) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +4. 🗣 Commented on [#215](https://github.com/eastgenomics/eggd_dias_batch/pull/215#issuecomment-2244719823) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +5. 🗣 Commented on [#36](https://github.com/thoth-pub/thoth-client/pull/36#issuecomment-2244718307) in [thoth-pub/thoth-client](https://github.com/thoth-pub/thoth-client) +6. 🗣 Commented on [#691](https://github.com/HEXRD/hexrd/pull/691#issuecomment-2244015558) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +7. 🗣 Commented on [#955](https://github.com/ToFuProject/tofu/pull/955#issuecomment-2243867989) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#953](https://github.com/ToFuProject/tofu/pull/953#issuecomment-2243841860) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#690](https://github.com/HEXRD/hexrd/pull/690#issuecomment-2243610779) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +10. 🗣 Commented on [#327](https://github.com/AdvancedPhotonSource/tike/pull/327#issuecomment-2243360666) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) From 89d2ebf614d8641adfcb245f99d78fcb935a26fb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Jul 2024 00:43:03 +0000 Subject: [PATCH 1984/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index af7e1313..07ce165c 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#465](https://github.com/payu-org/payu/pull/465#issuecomment-2246565084) in [payu-org/payu](https://github.com/payu-org/payu) -2. 🗣 Commented on [#4642](https://github.com/MDAnalysis/mdanalysis/pull/4642#issuecomment-2246353940) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#329](https://github.com/AdvancedPhotonSource/tike/pull/329#issuecomment-2246167373) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -4. 🗣 Commented on [#215](https://github.com/eastgenomics/eggd_dias_batch/pull/215#issuecomment-2244719823) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -5. 🗣 Commented on [#36](https://github.com/thoth-pub/thoth-client/pull/36#issuecomment-2244718307) in [thoth-pub/thoth-client](https://github.com/thoth-pub/thoth-client) -6. 🗣 Commented on [#691](https://github.com/HEXRD/hexrd/pull/691#issuecomment-2244015558) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -7. 🗣 Commented on [#955](https://github.com/ToFuProject/tofu/pull/955#issuecomment-2243867989) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#953](https://github.com/ToFuProject/tofu/pull/953#issuecomment-2243841860) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#690](https://github.com/HEXRD/hexrd/pull/690#issuecomment-2243610779) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -10. 🗣 Commented on [#327](https://github.com/AdvancedPhotonSource/tike/pull/327#issuecomment-2243360666) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +1. 🗣 Commented on [#431](https://github.com/aria-tools/ARIA-tools/pull/431#issuecomment-2249023512) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +2. 🗣 Commented on [#22285](https://github.com/spyder-ide/spyder/pull/22285#issuecomment-2248869920) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#9320](https://github.com/statsmodels/statsmodels/pull/9320#issuecomment-2248773748) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +4. 🗣 Commented on [#11](https://github.com/eastgenomics/variant_workbook_parser/pull/11#issuecomment-2248427603) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) +5. 🗣 Commented on [#1143](https://github.com/lmcinnes/umap/pull/1143#issuecomment-2248180830) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +6. 🗣 Commented on [#82](https://github.com/eastgenomics/Genetics_Ark/pull/82#issuecomment-2248109335) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +7. 🗣 Commented on [#2114](https://github.com/rpm-software-management/dnf/pull/2114#issuecomment-2247659174) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +8. 🗣 Commented on [#3](https://github.com/Borda/cmd-tree/pull/3#issuecomment-2247610241) in [Borda/cmd-tree](https://github.com/Borda/cmd-tree) +9. 🗣 Commented on [#505](https://github.com/Spoken-tutorial/spoken-website/pull/505#issuecomment-2247364304) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +10. 🗣 Commented on [#1008](https://github.com/avaframe/AvaFrame/pull/1008#issuecomment-2247161769) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From bb744f49ba5a86a0ecb95761c8c8386f7efccc9e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Jul 2024 00:42:41 +0000 Subject: [PATCH 1985/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 07ce165c..79d93f9e 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#431](https://github.com/aria-tools/ARIA-tools/pull/431#issuecomment-2249023512) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -2. 🗣 Commented on [#22285](https://github.com/spyder-ide/spyder/pull/22285#issuecomment-2248869920) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#9320](https://github.com/statsmodels/statsmodels/pull/9320#issuecomment-2248773748) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -4. 🗣 Commented on [#11](https://github.com/eastgenomics/variant_workbook_parser/pull/11#issuecomment-2248427603) in [eastgenomics/variant_workbook_parser](https://github.com/eastgenomics/variant_workbook_parser) -5. 🗣 Commented on [#1143](https://github.com/lmcinnes/umap/pull/1143#issuecomment-2248180830) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -6. 🗣 Commented on [#82](https://github.com/eastgenomics/Genetics_Ark/pull/82#issuecomment-2248109335) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -7. 🗣 Commented on [#2114](https://github.com/rpm-software-management/dnf/pull/2114#issuecomment-2247659174) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -8. 🗣 Commented on [#3](https://github.com/Borda/cmd-tree/pull/3#issuecomment-2247610241) in [Borda/cmd-tree](https://github.com/Borda/cmd-tree) -9. 🗣 Commented on [#505](https://github.com/Spoken-tutorial/spoken-website/pull/505#issuecomment-2247364304) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -10. 🗣 Commented on [#1008](https://github.com/avaframe/AvaFrame/pull/1008#issuecomment-2247161769) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#1017](https://github.com/scilus/scilpy/pull/1017#issuecomment-2251449436) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#994](https://github.com/scilus/scilpy/pull/994#issuecomment-2251339991) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#777](https://github.com/minerllabs/minerl/pull/777#issuecomment-2251178601) in [minerllabs/minerl](https://github.com/minerllabs/minerl) +4. 🗣 Commented on [#6](https://github.com/HEPCloud/bill-calculator-hep/pull/6#issuecomment-2251176735) in [HEPCloud/bill-calculator-hep](https://github.com/HEPCloud/bill-calculator-hep) +5. 🗣 Commented on [#4](https://github.com/Karim-53/pdll/pull/4#issuecomment-2251107075) in [Karim-53/pdll](https://github.com/Karim-53/pdll) +6. 🗣 Commented on [#1016](https://github.com/scilus/scilpy/pull/1016#issuecomment-2250891732) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#22288](https://github.com/spyder-ide/spyder/pull/22288#issuecomment-2250727774) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#330](https://github.com/AdvancedPhotonSource/tike/pull/330#issuecomment-2250714110) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +9. 🗣 Commented on [#167](https://github.com/lettucecfd/lettuce/pull/167#issuecomment-2250624632) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +10. 🗣 Commented on [#39](https://github.com/thoth-pub/thoth-dissemination/pull/39#issuecomment-2250509472) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) From cc23763f876f350b8bd5803f0e02b6998b4939fe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jul 2024 00:42:36 +0000 Subject: [PATCH 1986/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 79d93f9e..bf6f732d 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1017](https://github.com/scilus/scilpy/pull/1017#issuecomment-2251449436) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#994](https://github.com/scilus/scilpy/pull/994#issuecomment-2251339991) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#777](https://github.com/minerllabs/minerl/pull/777#issuecomment-2251178601) in [minerllabs/minerl](https://github.com/minerllabs/minerl) -4. 🗣 Commented on [#6](https://github.com/HEPCloud/bill-calculator-hep/pull/6#issuecomment-2251176735) in [HEPCloud/bill-calculator-hep](https://github.com/HEPCloud/bill-calculator-hep) -5. 🗣 Commented on [#4](https://github.com/Karim-53/pdll/pull/4#issuecomment-2251107075) in [Karim-53/pdll](https://github.com/Karim-53/pdll) -6. 🗣 Commented on [#1016](https://github.com/scilus/scilpy/pull/1016#issuecomment-2250891732) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#22288](https://github.com/spyder-ide/spyder/pull/22288#issuecomment-2250727774) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#330](https://github.com/AdvancedPhotonSource/tike/pull/330#issuecomment-2250714110) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -9. 🗣 Commented on [#167](https://github.com/lettucecfd/lettuce/pull/167#issuecomment-2250624632) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -10. 🗣 Commented on [#39](https://github.com/thoth-pub/thoth-dissemination/pull/39#issuecomment-2250509472) in [thoth-pub/thoth-dissemination](https://github.com/thoth-pub/thoth-dissemination) +1. 🗣 Commented on [#890](https://github.com/spacetelescope/webbpsf/pull/890#issuecomment-2253270099) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#338](https://github.com/cleder/fastkml/pull/338#issuecomment-2253144034) in [cleder/fastkml](https://github.com/cleder/fastkml) +3. 🗣 Commented on [#57](https://github.com/nsryan2/NEAR/pull/57#issuecomment-2253006510) in [nsryan2/NEAR](https://github.com/nsryan2/NEAR) +4. 🗣 Commented on [#43](https://github.com/NASA-Planetary-Science/pgdtools/pull/43#issuecomment-2252699009) in [NASA-Planetary-Science/pgdtools](https://github.com/NASA-Planetary-Science/pgdtools) +5. 🗣 Commented on [#1486](https://github.com/Open-CAS/open-cas-linux/pull/1486#issuecomment-2252478355) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +6. 🗣 Commented on [#218](https://github.com/eastgenomics/eggd_dias_batch/pull/218#issuecomment-2252435709) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +7. 🗣 Commented on [#1532](https://github.com/rpm-software-management/ci-dnf-stack/pull/1532#issuecomment-2252320061) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +8. 🗣 Commented on [#549](https://github.com/askap-vast/vast-tools/pull/549#issuecomment-2252132743) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +9. 🗣 Commented on [#22293](https://github.com/spyder-ide/spyder/pull/22293#issuecomment-2251782943) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#467](https://github.com/payu-org/payu/pull/467#issuecomment-2251758622) in [payu-org/payu](https://github.com/payu-org/payu) From 7f89582c582d3e4f70125768ce177a151ceb5b3f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 28 Jul 2024 00:47:29 +0000 Subject: [PATCH 1987/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bf6f732d..2a3dc8e2 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#890](https://github.com/spacetelescope/webbpsf/pull/890#issuecomment-2253270099) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#338](https://github.com/cleder/fastkml/pull/338#issuecomment-2253144034) in [cleder/fastkml](https://github.com/cleder/fastkml) -3. 🗣 Commented on [#57](https://github.com/nsryan2/NEAR/pull/57#issuecomment-2253006510) in [nsryan2/NEAR](https://github.com/nsryan2/NEAR) -4. 🗣 Commented on [#43](https://github.com/NASA-Planetary-Science/pgdtools/pull/43#issuecomment-2252699009) in [NASA-Planetary-Science/pgdtools](https://github.com/NASA-Planetary-Science/pgdtools) -5. 🗣 Commented on [#1486](https://github.com/Open-CAS/open-cas-linux/pull/1486#issuecomment-2252478355) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -6. 🗣 Commented on [#218](https://github.com/eastgenomics/eggd_dias_batch/pull/218#issuecomment-2252435709) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -7. 🗣 Commented on [#1532](https://github.com/rpm-software-management/ci-dnf-stack/pull/1532#issuecomment-2252320061) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -8. 🗣 Commented on [#549](https://github.com/askap-vast/vast-tools/pull/549#issuecomment-2252132743) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -9. 🗣 Commented on [#22293](https://github.com/spyder-ide/spyder/pull/22293#issuecomment-2251782943) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#467](https://github.com/payu-org/payu/pull/467#issuecomment-2251758622) in [payu-org/payu](https://github.com/payu-org/payu) +1. 🗣 Commented on [#9](https://github.com/cirKITers/qml-essentials/pull/9#issuecomment-2254205304) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +2. 🗣 Commented on [#890](https://github.com/spacetelescope/webbpsf/pull/890#issuecomment-2253270099) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#338](https://github.com/cleder/fastkml/pull/338#issuecomment-2253144034) in [cleder/fastkml](https://github.com/cleder/fastkml) +4. 🗣 Commented on [#57](https://github.com/nsryan2/NEAR/pull/57#issuecomment-2253006510) in [nsryan2/NEAR](https://github.com/nsryan2/NEAR) +5. 🗣 Commented on [#43](https://github.com/NASA-Planetary-Science/pgdtools/pull/43#issuecomment-2252699009) in [NASA-Planetary-Science/pgdtools](https://github.com/NASA-Planetary-Science/pgdtools) +6. 🗣 Commented on [#1486](https://github.com/Open-CAS/open-cas-linux/pull/1486#issuecomment-2252478355) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +7. 🗣 Commented on [#218](https://github.com/eastgenomics/eggd_dias_batch/pull/218#issuecomment-2252435709) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +8. 🗣 Commented on [#1532](https://github.com/rpm-software-management/ci-dnf-stack/pull/1532#issuecomment-2252320061) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +9. 🗣 Commented on [#549](https://github.com/askap-vast/vast-tools/pull/549#issuecomment-2252132743) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +10. 🗣 Commented on [#22293](https://github.com/spyder-ide/spyder/pull/22293#issuecomment-2251782943) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 535498fc5dc15dbd8e435ac095acccdefbc8bb9d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 29 Jul 2024 00:44:38 +0000 Subject: [PATCH 1988/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2a3dc8e2..25e7a19a 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#9](https://github.com/cirKITers/qml-essentials/pull/9#issuecomment-2254205304) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -2. 🗣 Commented on [#890](https://github.com/spacetelescope/webbpsf/pull/890#issuecomment-2253270099) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#338](https://github.com/cleder/fastkml/pull/338#issuecomment-2253144034) in [cleder/fastkml](https://github.com/cleder/fastkml) -4. 🗣 Commented on [#57](https://github.com/nsryan2/NEAR/pull/57#issuecomment-2253006510) in [nsryan2/NEAR](https://github.com/nsryan2/NEAR) -5. 🗣 Commented on [#43](https://github.com/NASA-Planetary-Science/pgdtools/pull/43#issuecomment-2252699009) in [NASA-Planetary-Science/pgdtools](https://github.com/NASA-Planetary-Science/pgdtools) -6. 🗣 Commented on [#1486](https://github.com/Open-CAS/open-cas-linux/pull/1486#issuecomment-2252478355) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -7. 🗣 Commented on [#218](https://github.com/eastgenomics/eggd_dias_batch/pull/218#issuecomment-2252435709) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -8. 🗣 Commented on [#1532](https://github.com/rpm-software-management/ci-dnf-stack/pull/1532#issuecomment-2252320061) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) -9. 🗣 Commented on [#549](https://github.com/askap-vast/vast-tools/pull/549#issuecomment-2252132743) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -10. 🗣 Commented on [#22293](https://github.com/spyder-ide/spyder/pull/22293#issuecomment-2251782943) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#4](https://github.com/Richard-Sti/PecVelCov.jl/pull/4#issuecomment-2254616573) in [Richard-Sti/PecVelCov.jl](https://github.com/Richard-Sti/PecVelCov.jl) +2. 🗣 Commented on [#61](https://github.com/mpds-io/mpds-api/pull/61#issuecomment-2254541781) in [mpds-io/mpds-api](https://github.com/mpds-io/mpds-api) +3. 🗣 Commented on [#9](https://github.com/cirKITers/qml-essentials/pull/9#issuecomment-2254205304) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +4. 🗣 Commented on [#890](https://github.com/spacetelescope/webbpsf/pull/890#issuecomment-2253270099) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#338](https://github.com/cleder/fastkml/pull/338#issuecomment-2253144034) in [cleder/fastkml](https://github.com/cleder/fastkml) +6. 🗣 Commented on [#57](https://github.com/nsryan2/NEAR/pull/57#issuecomment-2253006510) in [nsryan2/NEAR](https://github.com/nsryan2/NEAR) +7. 🗣 Commented on [#43](https://github.com/NASA-Planetary-Science/pgdtools/pull/43#issuecomment-2252699009) in [NASA-Planetary-Science/pgdtools](https://github.com/NASA-Planetary-Science/pgdtools) +8. 🗣 Commented on [#1486](https://github.com/Open-CAS/open-cas-linux/pull/1486#issuecomment-2252478355) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +9. 🗣 Commented on [#218](https://github.com/eastgenomics/eggd_dias_batch/pull/218#issuecomment-2252435709) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) +10. 🗣 Commented on [#1532](https://github.com/rpm-software-management/ci-dnf-stack/pull/1532#issuecomment-2252320061) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) From 505e953f74b91be8662761194721533b7d715185 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 30 Jul 2024 00:43:13 +0000 Subject: [PATCH 1989/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 25e7a19a..7a12b560 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4](https://github.com/Richard-Sti/PecVelCov.jl/pull/4#issuecomment-2254616573) in [Richard-Sti/PecVelCov.jl](https://github.com/Richard-Sti/PecVelCov.jl) -2. 🗣 Commented on [#61](https://github.com/mpds-io/mpds-api/pull/61#issuecomment-2254541781) in [mpds-io/mpds-api](https://github.com/mpds-io/mpds-api) -3. 🗣 Commented on [#9](https://github.com/cirKITers/qml-essentials/pull/9#issuecomment-2254205304) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -4. 🗣 Commented on [#890](https://github.com/spacetelescope/webbpsf/pull/890#issuecomment-2253270099) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#338](https://github.com/cleder/fastkml/pull/338#issuecomment-2253144034) in [cleder/fastkml](https://github.com/cleder/fastkml) -6. 🗣 Commented on [#57](https://github.com/nsryan2/NEAR/pull/57#issuecomment-2253006510) in [nsryan2/NEAR](https://github.com/nsryan2/NEAR) -7. 🗣 Commented on [#43](https://github.com/NASA-Planetary-Science/pgdtools/pull/43#issuecomment-2252699009) in [NASA-Planetary-Science/pgdtools](https://github.com/NASA-Planetary-Science/pgdtools) -8. 🗣 Commented on [#1486](https://github.com/Open-CAS/open-cas-linux/pull/1486#issuecomment-2252478355) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -9. 🗣 Commented on [#218](https://github.com/eastgenomics/eggd_dias_batch/pull/218#issuecomment-2252435709) in [eastgenomics/eggd_dias_batch](https://github.com/eastgenomics/eggd_dias_batch) -10. 🗣 Commented on [#1532](https://github.com/rpm-software-management/ci-dnf-stack/pull/1532#issuecomment-2252320061) in [rpm-software-management/ci-dnf-stack](https://github.com/rpm-software-management/ci-dnf-stack) +1. 🗣 Commented on [#160](https://github.com/aimclub/Fedot.Industrial/pull/160#issuecomment-2257145000) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +2. 🗣 Commented on [#1624](https://github.com/spacetelescope/jwql/pull/1624#issuecomment-2256688605) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#693](https://github.com/HEXRD/hexrd/pull/693#issuecomment-2256163508) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +4. 🗣 Commented on [#41](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/41#issuecomment-2255956225) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +5. 🗣 Commented on [#4023](https://github.com/privacyidea/privacyidea/pull/4023#issuecomment-2255741734) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#157](https://github.com/MDAnalysis/distopia/pull/157#issuecomment-2255556936) in [MDAnalysis/distopia](https://github.com/MDAnalysis/distopia) +7. 🗣 Commented on [#22300](https://github.com/spyder-ide/spyder/pull/22300#issuecomment-2254905736) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#4](https://github.com/Richard-Sti/PecVelCov.jl/pull/4#issuecomment-2254616573) in [Richard-Sti/PecVelCov.jl](https://github.com/Richard-Sti/PecVelCov.jl) +9. 🗣 Commented on [#61](https://github.com/mpds-io/mpds-api/pull/61#issuecomment-2254541781) in [mpds-io/mpds-api](https://github.com/mpds-io/mpds-api) +10. 🗣 Commented on [#9](https://github.com/cirKITers/qml-essentials/pull/9#issuecomment-2254205304) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) From da781ac3abadc61a23350321d96309968d7dfee1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 31 Jul 2024 00:35:53 +0000 Subject: [PATCH 1990/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7a12b560..d4aa1d27 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#160](https://github.com/aimclub/Fedot.Industrial/pull/160#issuecomment-2257145000) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -2. 🗣 Commented on [#1624](https://github.com/spacetelescope/jwql/pull/1624#issuecomment-2256688605) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#693](https://github.com/HEXRD/hexrd/pull/693#issuecomment-2256163508) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -4. 🗣 Commented on [#41](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/41#issuecomment-2255956225) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -5. 🗣 Commented on [#4023](https://github.com/privacyidea/privacyidea/pull/4023#issuecomment-2255741734) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#157](https://github.com/MDAnalysis/distopia/pull/157#issuecomment-2255556936) in [MDAnalysis/distopia](https://github.com/MDAnalysis/distopia) -7. 🗣 Commented on [#22300](https://github.com/spyder-ide/spyder/pull/22300#issuecomment-2254905736) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#4](https://github.com/Richard-Sti/PecVelCov.jl/pull/4#issuecomment-2254616573) in [Richard-Sti/PecVelCov.jl](https://github.com/Richard-Sti/PecVelCov.jl) -9. 🗣 Commented on [#61](https://github.com/mpds-io/mpds-api/pull/61#issuecomment-2254541781) in [mpds-io/mpds-api](https://github.com/mpds-io/mpds-api) -10. 🗣 Commented on [#9](https://github.com/cirKITers/qml-essentials/pull/9#issuecomment-2254205304) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +1. 🗣 Commented on [#4025](https://github.com/privacyidea/privacyidea/pull/4025#issuecomment-2259345664) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#22302](https://github.com/spyder-ide/spyder/pull/22302#issuecomment-2259230693) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#1122](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1122#issuecomment-2258777717) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#2](https://github.com/eastgenomics/rd_wgs_workbooks_monitoring/pull/2#issuecomment-2258186020) in [eastgenomics/rd_wgs_workbooks_monitoring](https://github.com/eastgenomics/rd_wgs_workbooks_monitoring) +5. 🗣 Commented on [#72](https://github.com/tilde-lab/aiida-crystal-dft/pull/72#issuecomment-2258021630) in [tilde-lab/aiida-crystal-dft](https://github.com/tilde-lab/aiida-crystal-dft) +6. 🗣 Commented on [#109](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/109#issuecomment-2257914639) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +7. 🗣 Commented on [#334](https://github.com/askap-vast/vast-tools/pull/334#issuecomment-2257566655) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +8. 🗣 Commented on [#6](https://github.com/D0LLi/saleor/pull/6#issuecomment-2257417095) in [D0LLi/saleor](https://github.com/D0LLi/saleor) +9. 🗣 Commented on [#160](https://github.com/aimclub/Fedot.Industrial/pull/160#issuecomment-2257145000) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#1624](https://github.com/spacetelescope/jwql/pull/1624#issuecomment-2256688605) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 8e0d40628d08a8c5b385e44739d92314346eff9e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 00:48:16 +0000 Subject: [PATCH 1991/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d4aa1d27..48f3a921 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4025](https://github.com/privacyidea/privacyidea/pull/4025#issuecomment-2259345664) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#22302](https://github.com/spyder-ide/spyder/pull/22302#issuecomment-2259230693) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#1122](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1122#issuecomment-2258777717) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#2](https://github.com/eastgenomics/rd_wgs_workbooks_monitoring/pull/2#issuecomment-2258186020) in [eastgenomics/rd_wgs_workbooks_monitoring](https://github.com/eastgenomics/rd_wgs_workbooks_monitoring) -5. 🗣 Commented on [#72](https://github.com/tilde-lab/aiida-crystal-dft/pull/72#issuecomment-2258021630) in [tilde-lab/aiida-crystal-dft](https://github.com/tilde-lab/aiida-crystal-dft) -6. 🗣 Commented on [#109](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/109#issuecomment-2257914639) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -7. 🗣 Commented on [#334](https://github.com/askap-vast/vast-tools/pull/334#issuecomment-2257566655) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -8. 🗣 Commented on [#6](https://github.com/D0LLi/saleor/pull/6#issuecomment-2257417095) in [D0LLi/saleor](https://github.com/D0LLi/saleor) -9. 🗣 Commented on [#160](https://github.com/aimclub/Fedot.Industrial/pull/160#issuecomment-2257145000) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#1624](https://github.com/spacetelescope/jwql/pull/1624#issuecomment-2256688605) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#5](https://github.com/2lambda123/pyscf-gpu4pyscf/pull/5#issuecomment-2261574151) in [2lambda123/pyscf-gpu4pyscf](https://github.com/2lambda123/pyscf-gpu4pyscf) +2. 🗣 Commented on [#4](https://github.com/2lambda123/pyscf-gpu4pyscf/pull/4#issuecomment-2261573924) in [2lambda123/pyscf-gpu4pyscf](https://github.com/2lambda123/pyscf-gpu4pyscf) +3. 🗣 Commented on [#2](https://github.com/2lambda123/pyscf-gpu4pyscf/pull/2#issuecomment-2261551136) in [2lambda123/pyscf-gpu4pyscf](https://github.com/2lambda123/pyscf-gpu4pyscf) +4. 🗣 Commented on [#1](https://github.com/2lambda123/rincetonUniversity-prga/pull/1#issuecomment-2261465730) in [2lambda123/rincetonUniversity-prga](https://github.com/2lambda123/rincetonUniversity-prga) +5. 🗣 Commented on [#893](https://github.com/spacetelescope/webbpsf/pull/893#issuecomment-2261306433) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#529](https://github.com/oemof/tespy/pull/529#issuecomment-2261207236) in [oemof/tespy](https://github.com/oemof/tespy) +7. 🗣 Commented on [#331](https://github.com/AdvancedPhotonSource/tike/pull/331#issuecomment-2261197552) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +8. 🗣 Commented on [#920](https://github.com/fury-gl/fury/pull/920#issuecomment-2261023239) in [fury-gl/fury](https://github.com/fury-gl/fury) +9. 🗣 Commented on [#2](https://github.com/2lambda123/PrincetonUniversity-athena/pull/2#issuecomment-2260958467) in [2lambda123/PrincetonUniversity-athena](https://github.com/2lambda123/PrincetonUniversity-athena) +10. 🗣 Commented on [#642](https://github.com/aramis-lab/clinicadl/pull/642#issuecomment-2260862575) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) From d1f131b87458c17b28400975690c17efdbff4fe7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 2 Aug 2024 00:43:17 +0000 Subject: [PATCH 1992/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 48f3a921..997027df 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5](https://github.com/2lambda123/pyscf-gpu4pyscf/pull/5#issuecomment-2261574151) in [2lambda123/pyscf-gpu4pyscf](https://github.com/2lambda123/pyscf-gpu4pyscf) -2. 🗣 Commented on [#4](https://github.com/2lambda123/pyscf-gpu4pyscf/pull/4#issuecomment-2261573924) in [2lambda123/pyscf-gpu4pyscf](https://github.com/2lambda123/pyscf-gpu4pyscf) -3. 🗣 Commented on [#2](https://github.com/2lambda123/pyscf-gpu4pyscf/pull/2#issuecomment-2261551136) in [2lambda123/pyscf-gpu4pyscf](https://github.com/2lambda123/pyscf-gpu4pyscf) -4. 🗣 Commented on [#1](https://github.com/2lambda123/rincetonUniversity-prga/pull/1#issuecomment-2261465730) in [2lambda123/rincetonUniversity-prga](https://github.com/2lambda123/rincetonUniversity-prga) -5. 🗣 Commented on [#893](https://github.com/spacetelescope/webbpsf/pull/893#issuecomment-2261306433) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#529](https://github.com/oemof/tespy/pull/529#issuecomment-2261207236) in [oemof/tespy](https://github.com/oemof/tespy) -7. 🗣 Commented on [#331](https://github.com/AdvancedPhotonSource/tike/pull/331#issuecomment-2261197552) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -8. 🗣 Commented on [#920](https://github.com/fury-gl/fury/pull/920#issuecomment-2261023239) in [fury-gl/fury](https://github.com/fury-gl/fury) -9. 🗣 Commented on [#2](https://github.com/2lambda123/PrincetonUniversity-athena/pull/2#issuecomment-2260958467) in [2lambda123/PrincetonUniversity-athena](https://github.com/2lambda123/PrincetonUniversity-athena) -10. 🗣 Commented on [#642](https://github.com/aramis-lab/clinicadl/pull/642#issuecomment-2260862575) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +1. 🗣 Commented on [#435](https://github.com/aria-tools/ARIA-tools/pull/435#issuecomment-2263854153) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +2. 🗣 Commented on [#610](https://github.com/ExoCTK/exoctk/pull/610#issuecomment-2263391510) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +3. 🗣 Commented on [#666](https://github.com/quark-engine/quark-engine/pull/666#issuecomment-2263187527) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +4. 🗣 Commented on [#608](https://github.com/ExoCTK/exoctk/pull/608#issuecomment-2263186684) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +5. 🗣 Commented on [#68](https://github.com/oemof/demandlib/pull/68#issuecomment-2263110564) in [oemof/demandlib](https://github.com/oemof/demandlib) +6. 🗣 Commented on [#11](https://github.com/eastgenomics/gene_annotation2bed/pull/11#issuecomment-2263058989) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) +7. 🗣 Commented on [#2949](https://github.com/metabrainz/listenbrainz-server/pull/2949#issuecomment-2263045645) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#88](https://github.com/GeoscienceAustralia/dea-coastlines/pull/88#issuecomment-2262952210) in [GeoscienceAustralia/dea-coastlines](https://github.com/GeoscienceAustralia/dea-coastlines) +9. 🗣 Commented on [#154](https://github.com/INT-NIT/BEP032tools/pull/154#issuecomment-2262916513) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) +10. 🗣 Commented on [#832](https://github.com/StingraySoftware/stingray/pull/832#issuecomment-2262910737) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) From 26afdcbe335ddba0180c3d16242cf7e69855c36d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Aug 2024 00:42:37 +0000 Subject: [PATCH 1993/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 997027df..ee7eb3f7 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#435](https://github.com/aria-tools/ARIA-tools/pull/435#issuecomment-2263854153) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -2. 🗣 Commented on [#610](https://github.com/ExoCTK/exoctk/pull/610#issuecomment-2263391510) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -3. 🗣 Commented on [#666](https://github.com/quark-engine/quark-engine/pull/666#issuecomment-2263187527) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -4. 🗣 Commented on [#608](https://github.com/ExoCTK/exoctk/pull/608#issuecomment-2263186684) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -5. 🗣 Commented on [#68](https://github.com/oemof/demandlib/pull/68#issuecomment-2263110564) in [oemof/demandlib](https://github.com/oemof/demandlib) -6. 🗣 Commented on [#11](https://github.com/eastgenomics/gene_annotation2bed/pull/11#issuecomment-2263058989) in [eastgenomics/gene_annotation2bed](https://github.com/eastgenomics/gene_annotation2bed) -7. 🗣 Commented on [#2949](https://github.com/metabrainz/listenbrainz-server/pull/2949#issuecomment-2263045645) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#88](https://github.com/GeoscienceAustralia/dea-coastlines/pull/88#issuecomment-2262952210) in [GeoscienceAustralia/dea-coastlines](https://github.com/GeoscienceAustralia/dea-coastlines) -9. 🗣 Commented on [#154](https://github.com/INT-NIT/BEP032tools/pull/154#issuecomment-2262916513) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) -10. 🗣 Commented on [#832](https://github.com/StingraySoftware/stingray/pull/832#issuecomment-2262910737) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +1. 🗣 Commented on [#696](https://github.com/HEXRD/hexrd/pull/696#issuecomment-2265875490) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#1719](https://github.com/OGGM/oggm/pull/1719#issuecomment-2265343942) in [OGGM/oggm](https://github.com/OGGM/oggm) +3. 🗣 Commented on [#200](https://github.com/lettucecfd/lettuce/pull/200#issuecomment-2265334996) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +4. 🗣 Commented on [#112](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/112#issuecomment-2265273616) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +5. 🗣 Commented on [#43](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/43#issuecomment-2265136376) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +6. 🗣 Commented on [#125](https://github.com/eastgenomics/eggd_conductor/pull/125#issuecomment-2265136093) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +7. 🗣 Commented on [#124](https://github.com/eastgenomics/eggd_conductor/pull/124#issuecomment-2265111053) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +8. 🗣 Commented on [#475](https://github.com/payu-org/payu/pull/475#issuecomment-2264814398) in [payu-org/payu](https://github.com/payu-org/payu) +9. 🗣 Commented on [#6](https://github.com/D0LLi/evennia/pull/6#issuecomment-2264801648) in [D0LLi/evennia](https://github.com/D0LLi/evennia) +10. 🗣 Commented on [#92](https://github.com/GeoscienceAustralia/dea-coastlines/pull/92#issuecomment-2264762562) in [GeoscienceAustralia/dea-coastlines](https://github.com/GeoscienceAustralia/dea-coastlines) From c9c5a2dbeb94ff19e948739a3423d3b7f6707197 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 4 Aug 2024 00:47:47 +0000 Subject: [PATCH 1994/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ee7eb3f7..cf1a36a9 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#696](https://github.com/HEXRD/hexrd/pull/696#issuecomment-2265875490) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#1719](https://github.com/OGGM/oggm/pull/1719#issuecomment-2265343942) in [OGGM/oggm](https://github.com/OGGM/oggm) -3. 🗣 Commented on [#200](https://github.com/lettucecfd/lettuce/pull/200#issuecomment-2265334996) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -4. 🗣 Commented on [#112](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/112#issuecomment-2265273616) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -5. 🗣 Commented on [#43](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/43#issuecomment-2265136376) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -6. 🗣 Commented on [#125](https://github.com/eastgenomics/eggd_conductor/pull/125#issuecomment-2265136093) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -7. 🗣 Commented on [#124](https://github.com/eastgenomics/eggd_conductor/pull/124#issuecomment-2265111053) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -8. 🗣 Commented on [#475](https://github.com/payu-org/payu/pull/475#issuecomment-2264814398) in [payu-org/payu](https://github.com/payu-org/payu) -9. 🗣 Commented on [#6](https://github.com/D0LLi/evennia/pull/6#issuecomment-2264801648) in [D0LLi/evennia](https://github.com/D0LLi/evennia) -10. 🗣 Commented on [#92](https://github.com/GeoscienceAustralia/dea-coastlines/pull/92#issuecomment-2264762562) in [GeoscienceAustralia/dea-coastlines](https://github.com/GeoscienceAustralia/dea-coastlines) +1. 🗣 Commented on [#9325](https://github.com/statsmodels/statsmodels/pull/9325#issuecomment-2266319742) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +2. 🗣 Commented on [#696](https://github.com/HEXRD/hexrd/pull/696#issuecomment-2265875490) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#1719](https://github.com/OGGM/oggm/pull/1719#issuecomment-2265343942) in [OGGM/oggm](https://github.com/OGGM/oggm) +4. 🗣 Commented on [#200](https://github.com/lettucecfd/lettuce/pull/200#issuecomment-2265334996) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +5. 🗣 Commented on [#112](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/112#issuecomment-2265273616) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +6. 🗣 Commented on [#43](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/43#issuecomment-2265136376) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +7. 🗣 Commented on [#125](https://github.com/eastgenomics/eggd_conductor/pull/125#issuecomment-2265136093) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +8. 🗣 Commented on [#124](https://github.com/eastgenomics/eggd_conductor/pull/124#issuecomment-2265111053) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +9. 🗣 Commented on [#475](https://github.com/payu-org/payu/pull/475#issuecomment-2264814398) in [payu-org/payu](https://github.com/payu-org/payu) +10. 🗣 Commented on [#6](https://github.com/D0LLi/evennia/pull/6#issuecomment-2264801648) in [D0LLi/evennia](https://github.com/D0LLi/evennia) From ed112a4a7721d470ca5356b04231be6a242d541d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 00:45:12 +0000 Subject: [PATCH 1995/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cf1a36a9..4a66a108 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#9325](https://github.com/statsmodels/statsmodels/pull/9325#issuecomment-2266319742) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -2. 🗣 Commented on [#696](https://github.com/HEXRD/hexrd/pull/696#issuecomment-2265875490) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#1719](https://github.com/OGGM/oggm/pull/1719#issuecomment-2265343942) in [OGGM/oggm](https://github.com/OGGM/oggm) -4. 🗣 Commented on [#200](https://github.com/lettucecfd/lettuce/pull/200#issuecomment-2265334996) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -5. 🗣 Commented on [#112](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/112#issuecomment-2265273616) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -6. 🗣 Commented on [#43](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/43#issuecomment-2265136376) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -7. 🗣 Commented on [#125](https://github.com/eastgenomics/eggd_conductor/pull/125#issuecomment-2265136093) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -8. 🗣 Commented on [#124](https://github.com/eastgenomics/eggd_conductor/pull/124#issuecomment-2265111053) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -9. 🗣 Commented on [#475](https://github.com/payu-org/payu/pull/475#issuecomment-2264814398) in [payu-org/payu](https://github.com/payu-org/payu) -10. 🗣 Commented on [#6](https://github.com/D0LLi/evennia/pull/6#issuecomment-2264801648) in [D0LLi/evennia](https://github.com/D0LLi/evennia) +1. 🗣 Commented on [#1](https://github.com/sarnold/timew-addons/pull/1#issuecomment-2267813931) in [sarnold/timew-addons](https://github.com/sarnold/timew-addons) +2. 🗣 Commented on [#9325](https://github.com/statsmodels/statsmodels/pull/9325#issuecomment-2266319742) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#696](https://github.com/HEXRD/hexrd/pull/696#issuecomment-2265875490) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +4. 🗣 Commented on [#1719](https://github.com/OGGM/oggm/pull/1719#issuecomment-2265343942) in [OGGM/oggm](https://github.com/OGGM/oggm) +5. 🗣 Commented on [#200](https://github.com/lettucecfd/lettuce/pull/200#issuecomment-2265334996) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +6. 🗣 Commented on [#112](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/112#issuecomment-2265273616) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +7. 🗣 Commented on [#43](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/43#issuecomment-2265136376) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +8. 🗣 Commented on [#125](https://github.com/eastgenomics/eggd_conductor/pull/125#issuecomment-2265136093) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +9. 🗣 Commented on [#124](https://github.com/eastgenomics/eggd_conductor/pull/124#issuecomment-2265111053) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +10. 🗣 Commented on [#475](https://github.com/payu-org/payu/pull/475#issuecomment-2264814398) in [payu-org/payu](https://github.com/payu-org/payu) From b1d534f53a5938791fbf2a98457b19b821bd99b7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 Aug 2024 00:43:29 +0000 Subject: [PATCH 1996/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4a66a108..f4aaa85e 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/sarnold/timew-addons/pull/1#issuecomment-2267813931) in [sarnold/timew-addons](https://github.com/sarnold/timew-addons) -2. 🗣 Commented on [#9325](https://github.com/statsmodels/statsmodels/pull/9325#issuecomment-2266319742) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#696](https://github.com/HEXRD/hexrd/pull/696#issuecomment-2265875490) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -4. 🗣 Commented on [#1719](https://github.com/OGGM/oggm/pull/1719#issuecomment-2265343942) in [OGGM/oggm](https://github.com/OGGM/oggm) -5. 🗣 Commented on [#200](https://github.com/lettucecfd/lettuce/pull/200#issuecomment-2265334996) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -6. 🗣 Commented on [#112](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/112#issuecomment-2265273616) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -7. 🗣 Commented on [#43](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/43#issuecomment-2265136376) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -8. 🗣 Commented on [#125](https://github.com/eastgenomics/eggd_conductor/pull/125#issuecomment-2265136093) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -9. 🗣 Commented on [#124](https://github.com/eastgenomics/eggd_conductor/pull/124#issuecomment-2265111053) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -10. 🗣 Commented on [#475](https://github.com/payu-org/payu/pull/475#issuecomment-2264814398) in [payu-org/payu](https://github.com/payu-org/payu) +1. 🗣 Commented on [#834](https://github.com/StingraySoftware/stingray/pull/834#issuecomment-2270123205) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +2. 🗣 Commented on [#10](https://github.com/2lambda123/metaflow/pull/10#issuecomment-2269745414) in [2lambda123/metaflow](https://github.com/2lambda123/metaflow) +3. 🗣 Commented on [#13](https://github.com/2lambda123/mckinsey-vizro/pull/13#issuecomment-2269744707) in [2lambda123/mckinsey-vizro](https://github.com/2lambda123/mckinsey-vizro) +4. 🗣 Commented on [#3](https://github.com/2lambda123/mckinsey-causalnex/pull/3#issuecomment-2269743669) in [2lambda123/mckinsey-causalnex](https://github.com/2lambda123/mckinsey-causalnex) +5. 🗣 Commented on [#3](https://github.com/2lambda123/lartpang-PySODEvalToolkit/pull/3#issuecomment-2269742557) in [2lambda123/lartpang-PySODEvalToolkit](https://github.com/2lambda123/lartpang-PySODEvalToolkit) +6. 🗣 Commented on [#2](https://github.com/2lambda123/cheader2json/pull/2#issuecomment-2269711497) in [2lambda123/cheader2json](https://github.com/2lambda123/cheader2json) +7. 🗣 Commented on [#901](https://github.com/spacetelescope/webbpsf/pull/901#issuecomment-2269605937) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#1604](https://github.com/openSUSE/osc/pull/1604#issuecomment-2269342817) in [openSUSE/osc](https://github.com/openSUSE/osc) +9. 🗣 Commented on [#613](https://github.com/ExoCTK/exoctk/pull/613#issuecomment-2269276197) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +10. 🗣 Commented on [#612](https://github.com/ExoCTK/exoctk/pull/612#issuecomment-2269266690) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) From 18caa2f891a282e3799b74b1b9a070a79956ad89 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 7 Aug 2024 00:44:04 +0000 Subject: [PATCH 1997/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f4aaa85e..86fc92f6 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#834](https://github.com/StingraySoftware/stingray/pull/834#issuecomment-2270123205) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -2. 🗣 Commented on [#10](https://github.com/2lambda123/metaflow/pull/10#issuecomment-2269745414) in [2lambda123/metaflow](https://github.com/2lambda123/metaflow) -3. 🗣 Commented on [#13](https://github.com/2lambda123/mckinsey-vizro/pull/13#issuecomment-2269744707) in [2lambda123/mckinsey-vizro](https://github.com/2lambda123/mckinsey-vizro) -4. 🗣 Commented on [#3](https://github.com/2lambda123/mckinsey-causalnex/pull/3#issuecomment-2269743669) in [2lambda123/mckinsey-causalnex](https://github.com/2lambda123/mckinsey-causalnex) -5. 🗣 Commented on [#3](https://github.com/2lambda123/lartpang-PySODEvalToolkit/pull/3#issuecomment-2269742557) in [2lambda123/lartpang-PySODEvalToolkit](https://github.com/2lambda123/lartpang-PySODEvalToolkit) -6. 🗣 Commented on [#2](https://github.com/2lambda123/cheader2json/pull/2#issuecomment-2269711497) in [2lambda123/cheader2json](https://github.com/2lambda123/cheader2json) -7. 🗣 Commented on [#901](https://github.com/spacetelescope/webbpsf/pull/901#issuecomment-2269605937) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#1604](https://github.com/openSUSE/osc/pull/1604#issuecomment-2269342817) in [openSUSE/osc](https://github.com/openSUSE/osc) -9. 🗣 Commented on [#613](https://github.com/ExoCTK/exoctk/pull/613#issuecomment-2269276197) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -10. 🗣 Commented on [#612](https://github.com/ExoCTK/exoctk/pull/612#issuecomment-2269266690) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +1. 🗣 Commented on [#117](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/117#issuecomment-2272268380) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +2. 🗣 Commented on [#3303](https://github.com/dipy/dipy/pull/3303#issuecomment-2271969094) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#5](https://github.com/eastgenomics/GitHub_Actions/pull/5#issuecomment-2271590855) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) +4. 🗣 Commented on [#4](https://github.com/eastgenomics/GitHub_Actions/pull/4#issuecomment-2271472850) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) +5. 🗣 Commented on [#28](https://github.com/2lambda123/scikit-decide/pull/28#issuecomment-2271406387) in [2lambda123/scikit-decide](https://github.com/2lambda123/scikit-decide) +6. 🗣 Commented on [#2954](https://github.com/metabrainz/listenbrainz-server/pull/2954#issuecomment-2271104130) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#2](https://github.com/2lambda123/mozilla-TTS/pull/2#issuecomment-2270926297) in [2lambda123/mozilla-TTS](https://github.com/2lambda123/mozilla-TTS) +8. 🗣 Commented on [#116](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/116#issuecomment-2270702499) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +9. 🗣 Commented on [#134](https://github.com/Moonlark-Dev/Moonlark/pull/134#issuecomment-2270665624) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +10. 🗣 Commented on [#834](https://github.com/StingraySoftware/stingray/pull/834#issuecomment-2270123205) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) From 9f9da9775f0a4ed756bb6dee5ea526ed3e4291af Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 8 Aug 2024 00:43:50 +0000 Subject: [PATCH 1998/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 86fc92f6..fb4653f3 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#117](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/117#issuecomment-2272268380) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -2. 🗣 Commented on [#3303](https://github.com/dipy/dipy/pull/3303#issuecomment-2271969094) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#5](https://github.com/eastgenomics/GitHub_Actions/pull/5#issuecomment-2271590855) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) -4. 🗣 Commented on [#4](https://github.com/eastgenomics/GitHub_Actions/pull/4#issuecomment-2271472850) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) -5. 🗣 Commented on [#28](https://github.com/2lambda123/scikit-decide/pull/28#issuecomment-2271406387) in [2lambda123/scikit-decide](https://github.com/2lambda123/scikit-decide) -6. 🗣 Commented on [#2954](https://github.com/metabrainz/listenbrainz-server/pull/2954#issuecomment-2271104130) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#2](https://github.com/2lambda123/mozilla-TTS/pull/2#issuecomment-2270926297) in [2lambda123/mozilla-TTS](https://github.com/2lambda123/mozilla-TTS) -8. 🗣 Commented on [#116](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/116#issuecomment-2270702499) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -9. 🗣 Commented on [#134](https://github.com/Moonlark-Dev/Moonlark/pull/134#issuecomment-2270665624) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -10. 🗣 Commented on [#834](https://github.com/StingraySoftware/stingray/pull/834#issuecomment-2270123205) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +1. 🗣 Commented on [#1021](https://github.com/scilus/scilpy/pull/1021#issuecomment-2274361574) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#4396](https://github.com/uwcirg/truenth-portal/pull/4396#issuecomment-2274348077) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +3. 🗣 Commented on [#3](https://github.com/njzjz/python-template/pull/3#issuecomment-2274219438) in [njzjz/python-template](https://github.com/njzjz/python-template) +4. 🗣 Commented on [#4](https://github.com/2lambda123/AsahiLinux-gpu/pull/4#issuecomment-2274211540) in [2lambda123/AsahiLinux-gpu](https://github.com/2lambda123/AsahiLinux-gpu) +5. 🗣 Commented on [#3](https://github.com/2lambda123/AsahiLinux-gpu/pull/3#issuecomment-2274210974) in [2lambda123/AsahiLinux-gpu](https://github.com/2lambda123/AsahiLinux-gpu) +6. 🗣 Commented on [#2](https://github.com/njzjz/python-template/pull/2#issuecomment-2274204818) in [njzjz/python-template](https://github.com/njzjz/python-template) +7. 🗣 Commented on [#2](https://github.com/2lambda123/AsahiLinux-gpu/pull/2#issuecomment-2274187108) in [2lambda123/AsahiLinux-gpu](https://github.com/2lambda123/AsahiLinux-gpu) +8. 🗣 Commented on [#1](https://github.com/2lambda123/AsahiLinux-gpu/pull/1#issuecomment-2274185332) in [2lambda123/AsahiLinux-gpu](https://github.com/2lambda123/AsahiLinux-gpu) +9. 🗣 Commented on [#536](https://github.com/oemof/tespy/pull/536#issuecomment-2274059246) in [oemof/tespy](https://github.com/oemof/tespy) +10. 🗣 Commented on [#47](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/47#issuecomment-2273764085) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) From 4a8d42744df506c77f89d75222baadab32a1ac17 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 Aug 2024 00:44:15 +0000 Subject: [PATCH 1999/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fb4653f3..b11bc007 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1021](https://github.com/scilus/scilpy/pull/1021#issuecomment-2274361574) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#4396](https://github.com/uwcirg/truenth-portal/pull/4396#issuecomment-2274348077) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -3. 🗣 Commented on [#3](https://github.com/njzjz/python-template/pull/3#issuecomment-2274219438) in [njzjz/python-template](https://github.com/njzjz/python-template) -4. 🗣 Commented on [#4](https://github.com/2lambda123/AsahiLinux-gpu/pull/4#issuecomment-2274211540) in [2lambda123/AsahiLinux-gpu](https://github.com/2lambda123/AsahiLinux-gpu) -5. 🗣 Commented on [#3](https://github.com/2lambda123/AsahiLinux-gpu/pull/3#issuecomment-2274210974) in [2lambda123/AsahiLinux-gpu](https://github.com/2lambda123/AsahiLinux-gpu) -6. 🗣 Commented on [#2](https://github.com/njzjz/python-template/pull/2#issuecomment-2274204818) in [njzjz/python-template](https://github.com/njzjz/python-template) -7. 🗣 Commented on [#2](https://github.com/2lambda123/AsahiLinux-gpu/pull/2#issuecomment-2274187108) in [2lambda123/AsahiLinux-gpu](https://github.com/2lambda123/AsahiLinux-gpu) -8. 🗣 Commented on [#1](https://github.com/2lambda123/AsahiLinux-gpu/pull/1#issuecomment-2274185332) in [2lambda123/AsahiLinux-gpu](https://github.com/2lambda123/AsahiLinux-gpu) -9. 🗣 Commented on [#536](https://github.com/oemof/tespy/pull/536#issuecomment-2274059246) in [oemof/tespy](https://github.com/oemof/tespy) -10. 🗣 Commented on [#47](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/47#issuecomment-2273764085) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +1. 🗣 Commented on [#1649](https://github.com/odlgroup/odl/pull/1649#issuecomment-2276088553) in [odlgroup/odl](https://github.com/odlgroup/odl) +2. 🗣 Commented on [#127](https://github.com/eastgenomics/eggd_conductor/pull/127#issuecomment-2275865621) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +3. 🗣 Commented on [#50](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/50#issuecomment-2275658570) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +4. 🗣 Commented on [#2](https://github.com/ITMO-NSS-team/FEDOT.LLM/pull/2#issuecomment-2275656343) in [ITMO-NSS-team/FEDOT.LLM](https://github.com/ITMO-NSS-team/FEDOT.LLM) +5. 🗣 Commented on [#48](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/48#issuecomment-2275302241) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +6. 🗣 Commented on [#38](https://github.com/linyqh/action_demo/pull/38#issuecomment-2274869433) in [linyqh/action_demo](https://github.com/linyqh/action_demo) +7. 🗣 Commented on [#37](https://github.com/linyqh/action_demo/pull/37#issuecomment-2274866688) in [linyqh/action_demo](https://github.com/linyqh/action_demo) +8. 🗣 Commented on [#1488](https://github.com/Open-CAS/open-cas-linux/pull/1488#issuecomment-2274711790) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +9. 🗣 Commented on [#1021](https://github.com/scilus/scilpy/pull/1021#issuecomment-2274361574) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#4396](https://github.com/uwcirg/truenth-portal/pull/4396#issuecomment-2274348077) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) From f48d94f478f381771f3d5953a52b2d85dc8d0bbc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Aug 2024 00:43:47 +0000 Subject: [PATCH 2000/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b11bc007..e3902a27 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1649](https://github.com/odlgroup/odl/pull/1649#issuecomment-2276088553) in [odlgroup/odl](https://github.com/odlgroup/odl) -2. 🗣 Commented on [#127](https://github.com/eastgenomics/eggd_conductor/pull/127#issuecomment-2275865621) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -3. 🗣 Commented on [#50](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/50#issuecomment-2275658570) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -4. 🗣 Commented on [#2](https://github.com/ITMO-NSS-team/FEDOT.LLM/pull/2#issuecomment-2275656343) in [ITMO-NSS-team/FEDOT.LLM](https://github.com/ITMO-NSS-team/FEDOT.LLM) -5. 🗣 Commented on [#48](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/48#issuecomment-2275302241) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -6. 🗣 Commented on [#38](https://github.com/linyqh/action_demo/pull/38#issuecomment-2274869433) in [linyqh/action_demo](https://github.com/linyqh/action_demo) -7. 🗣 Commented on [#37](https://github.com/linyqh/action_demo/pull/37#issuecomment-2274866688) in [linyqh/action_demo](https://github.com/linyqh/action_demo) -8. 🗣 Commented on [#1488](https://github.com/Open-CAS/open-cas-linux/pull/1488#issuecomment-2274711790) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -9. 🗣 Commented on [#1021](https://github.com/scilus/scilpy/pull/1021#issuecomment-2274361574) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#4396](https://github.com/uwcirg/truenth-portal/pull/4396#issuecomment-2274348077) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +1. 🗣 Commented on [#701](https://github.com/HEXRD/hexrd/pull/701#issuecomment-2278616415) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#2957](https://github.com/metabrainz/listenbrainz-server/pull/2957#issuecomment-2278563966) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#3083](https://github.com/astropy/astroquery/pull/3083#issuecomment-2278557232) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#670](https://github.com/quark-engine/quark-engine/pull/670#issuecomment-2277988383) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +5. 🗣 Commented on [#69](https://github.com/Fatal1ty/aioapns/pull/69#issuecomment-2277944585) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) +6. 🗣 Commented on [#5814](https://github.com/rhinstaller/anaconda/pull/5814#issuecomment-2277933164) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#3081](https://github.com/astropy/astroquery/pull/3081#issuecomment-2277759624) in [astropy/astroquery](https://github.com/astropy/astroquery) +8. 🗣 Commented on [#1651](https://github.com/odlgroup/odl/pull/1651#issuecomment-2277563770) in [odlgroup/odl](https://github.com/odlgroup/odl) +9. 🗣 Commented on [#1606](https://github.com/openSUSE/osc/pull/1606#issuecomment-2277536733) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#480](https://github.com/payu-org/payu/pull/480#issuecomment-2276890920) in [payu-org/payu](https://github.com/payu-org/payu) From 77050b9ebb954453d05e7902309063f3591f7e16 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 11 Aug 2024 00:48:43 +0000 Subject: [PATCH 2001/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e3902a27..d1759e41 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#701](https://github.com/HEXRD/hexrd/pull/701#issuecomment-2278616415) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#2957](https://github.com/metabrainz/listenbrainz-server/pull/2957#issuecomment-2278563966) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#3083](https://github.com/astropy/astroquery/pull/3083#issuecomment-2278557232) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#670](https://github.com/quark-engine/quark-engine/pull/670#issuecomment-2277988383) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -5. 🗣 Commented on [#69](https://github.com/Fatal1ty/aioapns/pull/69#issuecomment-2277944585) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) -6. 🗣 Commented on [#5814](https://github.com/rhinstaller/anaconda/pull/5814#issuecomment-2277933164) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#3081](https://github.com/astropy/astroquery/pull/3081#issuecomment-2277759624) in [astropy/astroquery](https://github.com/astropy/astroquery) -8. 🗣 Commented on [#1651](https://github.com/odlgroup/odl/pull/1651#issuecomment-2277563770) in [odlgroup/odl](https://github.com/odlgroup/odl) -9. 🗣 Commented on [#1606](https://github.com/openSUSE/osc/pull/1606#issuecomment-2277536733) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#480](https://github.com/payu-org/payu/pull/480#issuecomment-2276890920) in [payu-org/payu](https://github.com/payu-org/payu) +1. 🗣 Commented on [#578](https://github.com/bengosney/isitbinday/pull/578#issuecomment-2282263741) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +2. 🗣 Commented on [#3309](https://github.com/dipy/dipy/pull/3309#issuecomment-2282235002) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#701](https://github.com/HEXRD/hexrd/pull/701#issuecomment-2278616415) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +4. 🗣 Commented on [#2957](https://github.com/metabrainz/listenbrainz-server/pull/2957#issuecomment-2278563966) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#3083](https://github.com/astropy/astroquery/pull/3083#issuecomment-2278557232) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#670](https://github.com/quark-engine/quark-engine/pull/670#issuecomment-2277988383) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +7. 🗣 Commented on [#69](https://github.com/Fatal1ty/aioapns/pull/69#issuecomment-2277944585) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) +8. 🗣 Commented on [#5814](https://github.com/rhinstaller/anaconda/pull/5814#issuecomment-2277933164) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#3081](https://github.com/astropy/astroquery/pull/3081#issuecomment-2277759624) in [astropy/astroquery](https://github.com/astropy/astroquery) +10. 🗣 Commented on [#1651](https://github.com/odlgroup/odl/pull/1651#issuecomment-2277563770) in [odlgroup/odl](https://github.com/odlgroup/odl) From e0c245396f0537a9c873a24186fb66b670393ac3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 00:45:35 +0000 Subject: [PATCH 2002/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d1759e41..16d82d27 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#578](https://github.com/bengosney/isitbinday/pull/578#issuecomment-2282263741) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) -2. 🗣 Commented on [#3309](https://github.com/dipy/dipy/pull/3309#issuecomment-2282235002) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#701](https://github.com/HEXRD/hexrd/pull/701#issuecomment-2278616415) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -4. 🗣 Commented on [#2957](https://github.com/metabrainz/listenbrainz-server/pull/2957#issuecomment-2278563966) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#3083](https://github.com/astropy/astroquery/pull/3083#issuecomment-2278557232) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#670](https://github.com/quark-engine/quark-engine/pull/670#issuecomment-2277988383) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -7. 🗣 Commented on [#69](https://github.com/Fatal1ty/aioapns/pull/69#issuecomment-2277944585) in [Fatal1ty/aioapns](https://github.com/Fatal1ty/aioapns) -8. 🗣 Commented on [#5814](https://github.com/rhinstaller/anaconda/pull/5814#issuecomment-2277933164) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#3081](https://github.com/astropy/astroquery/pull/3081#issuecomment-2277759624) in [astropy/astroquery](https://github.com/astropy/astroquery) -10. 🗣 Commented on [#1651](https://github.com/odlgroup/odl/pull/1651#issuecomment-2277563770) in [odlgroup/odl](https://github.com/odlgroup/odl) +1. 🗣 Commented on [#167](https://github.com/arfc/transition-scenarios/pull/167#issuecomment-2282918299) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +2. 🗣 Commented on [#922](https://github.com/fury-gl/fury/pull/922#issuecomment-2282813080) in [fury-gl/fury](https://github.com/fury-gl/fury) +3. 🗣 Commented on [#923](https://github.com/PyThaiNLP/pythainlp/pull/923#issuecomment-2282761480) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#158](https://github.com/Moonlark-Dev/Moonlark/pull/158#issuecomment-2282729356) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +5. 🗣 Commented on [#157](https://github.com/Moonlark-Dev/Moonlark/pull/157#issuecomment-2282724638) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +6. 🗣 Commented on [#548](https://github.com/spatialaudio/python-sounddevice/pull/548#issuecomment-2282703272) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +7. 🗣 Commented on [#1](https://github.com/rachellamcw/testrepo/pull/1#issuecomment-2282644622) in [rachellamcw/testrepo](https://github.com/rachellamcw/testrepo) +8. 🗣 Commented on [#578](https://github.com/bengosney/isitbinday/pull/578#issuecomment-2282263741) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +9. 🗣 Commented on [#3309](https://github.com/dipy/dipy/pull/3309#issuecomment-2282235002) in [dipy/dipy](https://github.com/dipy/dipy) +10. 🗣 Commented on [#701](https://github.com/HEXRD/hexrd/pull/701#issuecomment-2278616415) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) From 5dc54b0a9b96833913e14b515b0ae70e1fff8eae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 13 Aug 2024 00:44:49 +0000 Subject: [PATCH 2003/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 16d82d27..4873045d 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#167](https://github.com/arfc/transition-scenarios/pull/167#issuecomment-2282918299) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -2. 🗣 Commented on [#922](https://github.com/fury-gl/fury/pull/922#issuecomment-2282813080) in [fury-gl/fury](https://github.com/fury-gl/fury) -3. 🗣 Commented on [#923](https://github.com/PyThaiNLP/pythainlp/pull/923#issuecomment-2282761480) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#158](https://github.com/Moonlark-Dev/Moonlark/pull/158#issuecomment-2282729356) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -5. 🗣 Commented on [#157](https://github.com/Moonlark-Dev/Moonlark/pull/157#issuecomment-2282724638) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -6. 🗣 Commented on [#548](https://github.com/spatialaudio/python-sounddevice/pull/548#issuecomment-2282703272) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -7. 🗣 Commented on [#1](https://github.com/rachellamcw/testrepo/pull/1#issuecomment-2282644622) in [rachellamcw/testrepo](https://github.com/rachellamcw/testrepo) -8. 🗣 Commented on [#578](https://github.com/bengosney/isitbinday/pull/578#issuecomment-2282263741) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) -9. 🗣 Commented on [#3309](https://github.com/dipy/dipy/pull/3309#issuecomment-2282235002) in [dipy/dipy](https://github.com/dipy/dipy) -10. 🗣 Commented on [#701](https://github.com/HEXRD/hexrd/pull/701#issuecomment-2278616415) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +1. 🗣 Commented on [#52](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/52#issuecomment-2285017168) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +2. 🗣 Commented on [#51](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/51#issuecomment-2284872154) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +3. 🗣 Commented on [#1101](https://github.com/oemof/oemof-solph/pull/1101#issuecomment-2284794761) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +4. 🗣 Commented on [#705](https://github.com/HEXRD/hexrd/pull/705#issuecomment-2284770901) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#702](https://github.com/HEXRD/hexrd/pull/702#issuecomment-2284642873) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +6. 🗣 Commented on [#161](https://github.com/Moonlark-Dev/Moonlark/pull/161#issuecomment-2284199935) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +7. 🗣 Commented on [#4](https://github.com/eastgenomics/phoenix/pull/4#issuecomment-2284131517) in [eastgenomics/phoenix](https://github.com/eastgenomics/phoenix) +8. 🗣 Commented on [#6](https://github.com/eastgenomics/GitHub_Actions/pull/6#issuecomment-2284045829) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) +9. 🗣 Commented on [#128](https://github.com/eastgenomics/eggd_conductor/pull/128#issuecomment-2283985453) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +10. 🗣 Commented on [#507](https://github.com/VorTECHsa/python-sdk/pull/507#issuecomment-2283739278) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) From 0fca79f8bf2f6334555e12d458e4a7203e8d7ac9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 Aug 2024 00:44:06 +0000 Subject: [PATCH 2004/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4873045d..51a693e2 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#52](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/52#issuecomment-2285017168) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -2. 🗣 Commented on [#51](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/51#issuecomment-2284872154) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -3. 🗣 Commented on [#1101](https://github.com/oemof/oemof-solph/pull/1101#issuecomment-2284794761) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -4. 🗣 Commented on [#705](https://github.com/HEXRD/hexrd/pull/705#issuecomment-2284770901) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#702](https://github.com/HEXRD/hexrd/pull/702#issuecomment-2284642873) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -6. 🗣 Commented on [#161](https://github.com/Moonlark-Dev/Moonlark/pull/161#issuecomment-2284199935) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -7. 🗣 Commented on [#4](https://github.com/eastgenomics/phoenix/pull/4#issuecomment-2284131517) in [eastgenomics/phoenix](https://github.com/eastgenomics/phoenix) -8. 🗣 Commented on [#6](https://github.com/eastgenomics/GitHub_Actions/pull/6#issuecomment-2284045829) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) -9. 🗣 Commented on [#128](https://github.com/eastgenomics/eggd_conductor/pull/128#issuecomment-2283985453) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -10. 🗣 Commented on [#507](https://github.com/VorTECHsa/python-sdk/pull/507#issuecomment-2283739278) in [VorTECHsa/python-sdk](https://github.com/VorTECHsa/python-sdk) +1. 🗣 Commented on [#1147](https://github.com/lmcinnes/umap/pull/1147#issuecomment-2286999679) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +2. 🗣 Commented on [#4](https://github.com/HEXRD/polycrystalx/pull/4#issuecomment-2286700558) in [HEXRD/polycrystalx](https://github.com/HEXRD/polycrystalx) +3. 🗣 Commented on [#1320](https://github.com/aimclub/FEDOT/pull/1320#issuecomment-2286475348) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#52](https://github.com/OpenFreeEnergy/konnektor/pull/52#issuecomment-2286418658) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +5. 🗣 Commented on [#62](https://github.com/elinscott/ase_koopmans/pull/62#issuecomment-2286370326) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) +6. 🗣 Commented on [#129](https://github.com/eastgenomics/eggd_conductor/pull/129#issuecomment-2286305823) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +7. 🗣 Commented on [#5826](https://github.com/rhinstaller/anaconda/pull/5826#issuecomment-2286256483) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#58](https://github.com/OpenFreeEnergy/konnektor/pull/58#issuecomment-2286131663) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +9. 🗣 Commented on [#55](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/55#issuecomment-2286024498) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +10. 🗣 Commented on [#17](https://github.com/cirKITers/qml-essentials/pull/17#issuecomment-2285823847) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) From f27a675175836a1b34d8db2b7b820f17ac387ea4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 15 Aug 2024 00:42:18 +0000 Subject: [PATCH 2005/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 51a693e2..00ff912f 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1147](https://github.com/lmcinnes/umap/pull/1147#issuecomment-2286999679) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -2. 🗣 Commented on [#4](https://github.com/HEXRD/polycrystalx/pull/4#issuecomment-2286700558) in [HEXRD/polycrystalx](https://github.com/HEXRD/polycrystalx) -3. 🗣 Commented on [#1320](https://github.com/aimclub/FEDOT/pull/1320#issuecomment-2286475348) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#52](https://github.com/OpenFreeEnergy/konnektor/pull/52#issuecomment-2286418658) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) -5. 🗣 Commented on [#62](https://github.com/elinscott/ase_koopmans/pull/62#issuecomment-2286370326) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) -6. 🗣 Commented on [#129](https://github.com/eastgenomics/eggd_conductor/pull/129#issuecomment-2286305823) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -7. 🗣 Commented on [#5826](https://github.com/rhinstaller/anaconda/pull/5826#issuecomment-2286256483) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#58](https://github.com/OpenFreeEnergy/konnektor/pull/58#issuecomment-2286131663) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) -9. 🗣 Commented on [#55](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/55#issuecomment-2286024498) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -10. 🗣 Commented on [#17](https://github.com/cirKITers/qml-essentials/pull/17#issuecomment-2285823847) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +1. 🗣 Commented on [#5](https://github.com/Sage-Bionetworks/core-models/pull/5#issuecomment-2289574553) in [Sage-Bionetworks/core-models](https://github.com/Sage-Bionetworks/core-models) +2. 🗣 Commented on [#706](https://github.com/HEXRD/hexrd/pull/706#issuecomment-2289486003) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#10](https://github.com/cirKITers/qml-essentials/pull/10#issuecomment-2289212608) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +4. 🗣 Commented on [#3](https://github.com/ITMO-NSS-team/FEDOT.LLM/pull/3#issuecomment-2289164753) in [ITMO-NSS-team/FEDOT.LLM](https://github.com/ITMO-NSS-team/FEDOT.LLM) +5. 🗣 Commented on [#157](https://github.com/lettucecfd/lettuce/pull/157#issuecomment-2289128899) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +6. 🗣 Commented on [#56](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/56#issuecomment-2289051314) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) +7. 🗣 Commented on [#1653](https://github.com/odlgroup/odl/pull/1653#issuecomment-2288837354) in [odlgroup/odl](https://github.com/odlgroup/odl) +8. 🗣 Commented on [#1](https://github.com/rachellamcw/LogisticsShippingRates/pull/1#issuecomment-2288751000) in [rachellamcw/LogisticsShippingRates](https://github.com/rachellamcw/LogisticsShippingRates) +9. 🗣 Commented on [#5657](https://github.com/rhinstaller/anaconda/pull/5657#issuecomment-2288502985) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#140](https://github.com/Richard-Sti/csiborgtools/pull/140#issuecomment-2288455634) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) From 6235f3f27dfc3ab73795779fabd894a7deae33b3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Aug 2024 00:43:29 +0000 Subject: [PATCH 2006/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 00ff912f..94360dfa 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5](https://github.com/Sage-Bionetworks/core-models/pull/5#issuecomment-2289574553) in [Sage-Bionetworks/core-models](https://github.com/Sage-Bionetworks/core-models) -2. 🗣 Commented on [#706](https://github.com/HEXRD/hexrd/pull/706#issuecomment-2289486003) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#10](https://github.com/cirKITers/qml-essentials/pull/10#issuecomment-2289212608) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -4. 🗣 Commented on [#3](https://github.com/ITMO-NSS-team/FEDOT.LLM/pull/3#issuecomment-2289164753) in [ITMO-NSS-team/FEDOT.LLM](https://github.com/ITMO-NSS-team/FEDOT.LLM) -5. 🗣 Commented on [#157](https://github.com/lettucecfd/lettuce/pull/157#issuecomment-2289128899) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -6. 🗣 Commented on [#56](https://github.com/eastgenomics/dias_reports_bulk_reanalysis/pull/56#issuecomment-2289051314) in [eastgenomics/dias_reports_bulk_reanalysis](https://github.com/eastgenomics/dias_reports_bulk_reanalysis) -7. 🗣 Commented on [#1653](https://github.com/odlgroup/odl/pull/1653#issuecomment-2288837354) in [odlgroup/odl](https://github.com/odlgroup/odl) -8. 🗣 Commented on [#1](https://github.com/rachellamcw/LogisticsShippingRates/pull/1#issuecomment-2288751000) in [rachellamcw/LogisticsShippingRates](https://github.com/rachellamcw/LogisticsShippingRates) -9. 🗣 Commented on [#5657](https://github.com/rhinstaller/anaconda/pull/5657#issuecomment-2288502985) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#140](https://github.com/Richard-Sti/csiborgtools/pull/140#issuecomment-2288455634) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +1. 🗣 Commented on [#708](https://github.com/HEXRD/hexrd/pull/708#issuecomment-2292458652) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#46](https://github.com/NASA-Planetary-Science/AmesCAP/pull/46#issuecomment-2292421285) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +3. 🗣 Commented on [#45](https://github.com/NASA-Planetary-Science/AmesCAP/pull/45#issuecomment-2292420292) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +4. 🗣 Commented on [#2963](https://github.com/metabrainz/listenbrainz-server/pull/2963#issuecomment-2291824015) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#2121](https://github.com/rpm-software-management/dnf/pull/2121#issuecomment-2291413012) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +6. 🗣 Commented on [#4656](https://github.com/MDAnalysis/mdanalysis/pull/4656#issuecomment-2291353898) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#5828](https://github.com/rhinstaller/anaconda/pull/5828#issuecomment-2291167243) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#22350](https://github.com/spyder-ide/spyder/pull/22350#issuecomment-2290172664) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#5](https://github.com/Sage-Bionetworks/core-models/pull/5#issuecomment-2289574553) in [Sage-Bionetworks/core-models](https://github.com/Sage-Bionetworks/core-models) +10. 🗣 Commented on [#706](https://github.com/HEXRD/hexrd/pull/706#issuecomment-2289486003) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) From 1fa06427e5f45bb3180980ddcd8b4b0906f817a1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 17 Aug 2024 00:42:17 +0000 Subject: [PATCH 2007/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 94360dfa..48845568 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#708](https://github.com/HEXRD/hexrd/pull/708#issuecomment-2292458652) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#46](https://github.com/NASA-Planetary-Science/AmesCAP/pull/46#issuecomment-2292421285) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -3. 🗣 Commented on [#45](https://github.com/NASA-Planetary-Science/AmesCAP/pull/45#issuecomment-2292420292) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -4. 🗣 Commented on [#2963](https://github.com/metabrainz/listenbrainz-server/pull/2963#issuecomment-2291824015) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#2121](https://github.com/rpm-software-management/dnf/pull/2121#issuecomment-2291413012) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -6. 🗣 Commented on [#4656](https://github.com/MDAnalysis/mdanalysis/pull/4656#issuecomment-2291353898) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#5828](https://github.com/rhinstaller/anaconda/pull/5828#issuecomment-2291167243) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#22350](https://github.com/spyder-ide/spyder/pull/22350#issuecomment-2290172664) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#5](https://github.com/Sage-Bionetworks/core-models/pull/5#issuecomment-2289574553) in [Sage-Bionetworks/core-models](https://github.com/Sage-Bionetworks/core-models) -10. 🗣 Commented on [#706](https://github.com/HEXRD/hexrd/pull/706#issuecomment-2289486003) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +1. 🗣 Commented on [#3321](https://github.com/dipy/dipy/pull/3321#issuecomment-2294483039) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#1125](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1125#issuecomment-2294096090) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#1628](https://github.com/spacetelescope/jwql/pull/1628#issuecomment-2294040646) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#174](https://github.com/Moonlark-Dev/Moonlark/pull/174#issuecomment-2293794530) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +5. 🗣 Commented on [#642](https://github.com/tableau/TabPy/pull/642#issuecomment-2293409826) in [tableau/TabPy](https://github.com/tableau/TabPy) +6. 🗣 Commented on [#216](https://github.com/lettucecfd/lettuce/pull/216#issuecomment-2293306189) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +7. 🗣 Commented on [#1](https://github.com/2lambda123/dhlparcel-bots/pull/1#issuecomment-2293300430) in [2lambda123/dhlparcel-bots](https://github.com/2lambda123/dhlparcel-bots) +8. 🗣 Commented on [#33](https://github.com/cirKITers/mind-the-qapp/pull/33#issuecomment-2293150324) in [cirKITers/mind-the-qapp](https://github.com/cirKITers/mind-the-qapp) +9. 🗣 Commented on [#214](https://github.com/lettucecfd/lettuce/pull/214#issuecomment-2293137972) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +10. 🗣 Commented on [#213](https://github.com/lettucecfd/lettuce/pull/213#issuecomment-2292950233) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) From 53faf24d5b9ab4d39da9962df22a7e5aaee8e9f2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 18 Aug 2024 00:47:39 +0000 Subject: [PATCH 2008/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 48845568..041aabd5 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3321](https://github.com/dipy/dipy/pull/3321#issuecomment-2294483039) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#1125](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1125#issuecomment-2294096090) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#1628](https://github.com/spacetelescope/jwql/pull/1628#issuecomment-2294040646) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#174](https://github.com/Moonlark-Dev/Moonlark/pull/174#issuecomment-2293794530) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -5. 🗣 Commented on [#642](https://github.com/tableau/TabPy/pull/642#issuecomment-2293409826) in [tableau/TabPy](https://github.com/tableau/TabPy) -6. 🗣 Commented on [#216](https://github.com/lettucecfd/lettuce/pull/216#issuecomment-2293306189) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -7. 🗣 Commented on [#1](https://github.com/2lambda123/dhlparcel-bots/pull/1#issuecomment-2293300430) in [2lambda123/dhlparcel-bots](https://github.com/2lambda123/dhlparcel-bots) -8. 🗣 Commented on [#33](https://github.com/cirKITers/mind-the-qapp/pull/33#issuecomment-2293150324) in [cirKITers/mind-the-qapp](https://github.com/cirKITers/mind-the-qapp) -9. 🗣 Commented on [#214](https://github.com/lettucecfd/lettuce/pull/214#issuecomment-2293137972) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -10. 🗣 Commented on [#213](https://github.com/lettucecfd/lettuce/pull/213#issuecomment-2292950233) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +1. 🗣 Commented on [#1](https://github.com/2lambda123/ethereum-tests/pull/1#issuecomment-2295006029) in [2lambda123/ethereum-tests](https://github.com/2lambda123/ethereum-tests) +2. 🗣 Commented on [#72](https://github.com/PenguinCloud/WaddleBot-Core/pull/72#issuecomment-2294932126) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) +3. 🗣 Commented on [#54](https://github.com/MDAnalysis/transport-analysis/pull/54#issuecomment-2294926672) in [MDAnalysis/transport-analysis](https://github.com/MDAnalysis/transport-analysis) +4. 🗣 Commented on [#4](https://github.com/2lambda123/ubisoft-mixer/pull/4#issuecomment-2294884477) in [2lambda123/ubisoft-mixer](https://github.com/2lambda123/ubisoft-mixer) +5. 🗣 Commented on [#2](https://github.com/2lambda123/ubisoft-mixer/pull/2#issuecomment-2294884395) in [2lambda123/ubisoft-mixer](https://github.com/2lambda123/ubisoft-mixer) +6. 🗣 Commented on [#70](https://github.com/PenguinCloud/WaddleBot-Core/pull/70#issuecomment-2294878304) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) +7. 🗣 Commented on [#67](https://github.com/PenguinCloud/WaddleBot-Core/pull/67#issuecomment-2294870740) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) +8. 🗣 Commented on [#3](https://github.com/2lambda123/EpicGames-SPIRV-Cross/pull/3#issuecomment-2294857880) in [2lambda123/EpicGames-SPIRV-Cross](https://github.com/2lambda123/EpicGames-SPIRV-Cross) +9. 🗣 Commented on [#2](https://github.com/2lambda123/EpicGames-SPIRV-Cross/pull/2#issuecomment-2294855901) in [2lambda123/EpicGames-SPIRV-Cross](https://github.com/2lambda123/EpicGames-SPIRV-Cross) +10. 🗣 Commented on [#579](https://github.com/bengosney/isitbinday/pull/579#issuecomment-2294707331) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) From cbb14fd650801cd2f7d0ed58c94bdaa41678e869 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 00:44:43 +0000 Subject: [PATCH 2009/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 041aabd5..b62cae11 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/2lambda123/ethereum-tests/pull/1#issuecomment-2295006029) in [2lambda123/ethereum-tests](https://github.com/2lambda123/ethereum-tests) -2. 🗣 Commented on [#72](https://github.com/PenguinCloud/WaddleBot-Core/pull/72#issuecomment-2294932126) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) -3. 🗣 Commented on [#54](https://github.com/MDAnalysis/transport-analysis/pull/54#issuecomment-2294926672) in [MDAnalysis/transport-analysis](https://github.com/MDAnalysis/transport-analysis) -4. 🗣 Commented on [#4](https://github.com/2lambda123/ubisoft-mixer/pull/4#issuecomment-2294884477) in [2lambda123/ubisoft-mixer](https://github.com/2lambda123/ubisoft-mixer) -5. 🗣 Commented on [#2](https://github.com/2lambda123/ubisoft-mixer/pull/2#issuecomment-2294884395) in [2lambda123/ubisoft-mixer](https://github.com/2lambda123/ubisoft-mixer) -6. 🗣 Commented on [#70](https://github.com/PenguinCloud/WaddleBot-Core/pull/70#issuecomment-2294878304) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) -7. 🗣 Commented on [#67](https://github.com/PenguinCloud/WaddleBot-Core/pull/67#issuecomment-2294870740) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) -8. 🗣 Commented on [#3](https://github.com/2lambda123/EpicGames-SPIRV-Cross/pull/3#issuecomment-2294857880) in [2lambda123/EpicGames-SPIRV-Cross](https://github.com/2lambda123/EpicGames-SPIRV-Cross) -9. 🗣 Commented on [#2](https://github.com/2lambda123/EpicGames-SPIRV-Cross/pull/2#issuecomment-2294855901) in [2lambda123/EpicGames-SPIRV-Cross](https://github.com/2lambda123/EpicGames-SPIRV-Cross) -10. 🗣 Commented on [#579](https://github.com/bengosney/isitbinday/pull/579#issuecomment-2294707331) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +1. 🗣 Commented on [#3](https://github.com/2lambda123/CosmiQ-solaris/pull/3#issuecomment-2295223667) in [2lambda123/CosmiQ-solaris](https://github.com/2lambda123/CosmiQ-solaris) +2. 🗣 Commented on [#2](https://github.com/2lambda123/CosmiQ-solaris/pull/2#issuecomment-2295223572) in [2lambda123/CosmiQ-solaris](https://github.com/2lambda123/CosmiQ-solaris) +3. 🗣 Commented on [#105](https://github.com/pypr/compyle/pull/105#issuecomment-2295220750) in [pypr/compyle](https://github.com/pypr/compyle) +4. 🗣 Commented on [#179](https://github.com/Moonlark-Dev/Moonlark/pull/179#issuecomment-2295202603) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +5. 🗣 Commented on [#1](https://github.com/2lambda123/ethereum-tests/pull/1#issuecomment-2295006029) in [2lambda123/ethereum-tests](https://github.com/2lambda123/ethereum-tests) +6. 🗣 Commented on [#72](https://github.com/PenguinCloud/WaddleBot-Core/pull/72#issuecomment-2294932126) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) +7. 🗣 Commented on [#54](https://github.com/MDAnalysis/transport-analysis/pull/54#issuecomment-2294926672) in [MDAnalysis/transport-analysis](https://github.com/MDAnalysis/transport-analysis) +8. 🗣 Commented on [#4](https://github.com/2lambda123/ubisoft-mixer/pull/4#issuecomment-2294884477) in [2lambda123/ubisoft-mixer](https://github.com/2lambda123/ubisoft-mixer) +9. 🗣 Commented on [#2](https://github.com/2lambda123/ubisoft-mixer/pull/2#issuecomment-2294884395) in [2lambda123/ubisoft-mixer](https://github.com/2lambda123/ubisoft-mixer) +10. 🗣 Commented on [#70](https://github.com/PenguinCloud/WaddleBot-Core/pull/70#issuecomment-2294878304) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) From e49387926cb31b24062fa8bb87ac2baa815a1bf6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 20 Aug 2024 00:43:44 +0000 Subject: [PATCH 2010/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b62cae11..c33e7309 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3](https://github.com/2lambda123/CosmiQ-solaris/pull/3#issuecomment-2295223667) in [2lambda123/CosmiQ-solaris](https://github.com/2lambda123/CosmiQ-solaris) -2. 🗣 Commented on [#2](https://github.com/2lambda123/CosmiQ-solaris/pull/2#issuecomment-2295223572) in [2lambda123/CosmiQ-solaris](https://github.com/2lambda123/CosmiQ-solaris) -3. 🗣 Commented on [#105](https://github.com/pypr/compyle/pull/105#issuecomment-2295220750) in [pypr/compyle](https://github.com/pypr/compyle) -4. 🗣 Commented on [#179](https://github.com/Moonlark-Dev/Moonlark/pull/179#issuecomment-2295202603) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -5. 🗣 Commented on [#1](https://github.com/2lambda123/ethereum-tests/pull/1#issuecomment-2295006029) in [2lambda123/ethereum-tests](https://github.com/2lambda123/ethereum-tests) -6. 🗣 Commented on [#72](https://github.com/PenguinCloud/WaddleBot-Core/pull/72#issuecomment-2294932126) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) -7. 🗣 Commented on [#54](https://github.com/MDAnalysis/transport-analysis/pull/54#issuecomment-2294926672) in [MDAnalysis/transport-analysis](https://github.com/MDAnalysis/transport-analysis) -8. 🗣 Commented on [#4](https://github.com/2lambda123/ubisoft-mixer/pull/4#issuecomment-2294884477) in [2lambda123/ubisoft-mixer](https://github.com/2lambda123/ubisoft-mixer) -9. 🗣 Commented on [#2](https://github.com/2lambda123/ubisoft-mixer/pull/2#issuecomment-2294884395) in [2lambda123/ubisoft-mixer](https://github.com/2lambda123/ubisoft-mixer) -10. 🗣 Commented on [#70](https://github.com/PenguinCloud/WaddleBot-Core/pull/70#issuecomment-2294878304) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) +1. 🗣 Commented on [#584](https://github.com/bengosney/isitbinday/pull/584#issuecomment-2297313698) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +2. 🗣 Commented on [#12](https://github.com/2lambda123/juicefs/pull/12#issuecomment-2297238364) in [2lambda123/juicefs](https://github.com/2lambda123/juicefs) +3. 🗣 Commented on [#1023](https://github.com/scilus/scilpy/pull/1023#issuecomment-2296832409) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#221](https://github.com/lettucecfd/lettuce/pull/221#issuecomment-2295871117) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +5. 🗣 Commented on [#3](https://github.com/2lambda123/CosmiQ-solaris/pull/3#issuecomment-2295223667) in [2lambda123/CosmiQ-solaris](https://github.com/2lambda123/CosmiQ-solaris) +6. 🗣 Commented on [#2](https://github.com/2lambda123/CosmiQ-solaris/pull/2#issuecomment-2295223572) in [2lambda123/CosmiQ-solaris](https://github.com/2lambda123/CosmiQ-solaris) +7. 🗣 Commented on [#105](https://github.com/pypr/compyle/pull/105#issuecomment-2295220750) in [pypr/compyle](https://github.com/pypr/compyle) +8. 🗣 Commented on [#179](https://github.com/Moonlark-Dev/Moonlark/pull/179#issuecomment-2295202603) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +9. 🗣 Commented on [#1](https://github.com/2lambda123/ethereum-tests/pull/1#issuecomment-2295006029) in [2lambda123/ethereum-tests](https://github.com/2lambda123/ethereum-tests) +10. 🗣 Commented on [#72](https://github.com/PenguinCloud/WaddleBot-Core/pull/72#issuecomment-2294932126) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) From 80eba94db694b4b6eba9d1e29093e128048a7692 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 21 Aug 2024 00:43:37 +0000 Subject: [PATCH 2011/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c33e7309..d05092af 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#584](https://github.com/bengosney/isitbinday/pull/584#issuecomment-2297313698) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) -2. 🗣 Commented on [#12](https://github.com/2lambda123/juicefs/pull/12#issuecomment-2297238364) in [2lambda123/juicefs](https://github.com/2lambda123/juicefs) -3. 🗣 Commented on [#1023](https://github.com/scilus/scilpy/pull/1023#issuecomment-2296832409) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#221](https://github.com/lettucecfd/lettuce/pull/221#issuecomment-2295871117) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -5. 🗣 Commented on [#3](https://github.com/2lambda123/CosmiQ-solaris/pull/3#issuecomment-2295223667) in [2lambda123/CosmiQ-solaris](https://github.com/2lambda123/CosmiQ-solaris) -6. 🗣 Commented on [#2](https://github.com/2lambda123/CosmiQ-solaris/pull/2#issuecomment-2295223572) in [2lambda123/CosmiQ-solaris](https://github.com/2lambda123/CosmiQ-solaris) -7. 🗣 Commented on [#105](https://github.com/pypr/compyle/pull/105#issuecomment-2295220750) in [pypr/compyle](https://github.com/pypr/compyle) -8. 🗣 Commented on [#179](https://github.com/Moonlark-Dev/Moonlark/pull/179#issuecomment-2295202603) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -9. 🗣 Commented on [#1](https://github.com/2lambda123/ethereum-tests/pull/1#issuecomment-2295006029) in [2lambda123/ethereum-tests](https://github.com/2lambda123/ethereum-tests) -10. 🗣 Commented on [#72](https://github.com/PenguinCloud/WaddleBot-Core/pull/72#issuecomment-2294932126) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) +1. 🗣 Commented on [#712](https://github.com/HEXRD/hexrd/pull/712#issuecomment-2299844615) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#711](https://github.com/HEXRD/hexrd/pull/711#issuecomment-2299440347) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#3328](https://github.com/dipy/dipy/pull/3328#issuecomment-2299184723) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#128](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/128#issuecomment-2299134594) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +5. 🗣 Commented on [#123](https://github.com/eastgenomics/trendyQC/pull/123#issuecomment-2299077534) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +6. 🗣 Commented on [#224](https://github.com/lettucecfd/lettuce/pull/224#issuecomment-2298776293) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +7. 🗣 Commented on [#400](https://github.com/pypr/pysph/pull/400#issuecomment-2298481902) in [pypr/pysph](https://github.com/pypr/pysph) +8. 🗣 Commented on [#1013](https://github.com/avaframe/AvaFrame/pull/1013#issuecomment-2298464571) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#1012](https://github.com/avaframe/AvaFrame/pull/1012#issuecomment-2298422810) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#1011](https://github.com/avaframe/AvaFrame/pull/1011#issuecomment-2298388708) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) From 044b4d80cae183ffbcce574a13ef371b87ea0732 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 22 Aug 2024 00:44:56 +0000 Subject: [PATCH 2012/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d05092af..f0215bb4 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#712](https://github.com/HEXRD/hexrd/pull/712#issuecomment-2299844615) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#711](https://github.com/HEXRD/hexrd/pull/711#issuecomment-2299440347) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#3328](https://github.com/dipy/dipy/pull/3328#issuecomment-2299184723) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#128](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/128#issuecomment-2299134594) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -5. 🗣 Commented on [#123](https://github.com/eastgenomics/trendyQC/pull/123#issuecomment-2299077534) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -6. 🗣 Commented on [#224](https://github.com/lettucecfd/lettuce/pull/224#issuecomment-2298776293) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -7. 🗣 Commented on [#400](https://github.com/pypr/pysph/pull/400#issuecomment-2298481902) in [pypr/pysph](https://github.com/pypr/pysph) -8. 🗣 Commented on [#1013](https://github.com/avaframe/AvaFrame/pull/1013#issuecomment-2298464571) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#1012](https://github.com/avaframe/AvaFrame/pull/1012#issuecomment-2298422810) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#1011](https://github.com/avaframe/AvaFrame/pull/1011#issuecomment-2298388708) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +1. 🗣 Commented on [#22368](https://github.com/spyder-ide/spyder/pull/22368#issuecomment-2303047329) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#332](https://github.com/AdvancedPhotonSource/tike/pull/332#issuecomment-2302638814) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +3. 🗣 Commented on [#336](https://github.com/OpenFreeEnergy/gufe/pull/336#issuecomment-2302523116) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) +4. 🗣 Commented on [#4046](https://github.com/privacyidea/privacyidea/pull/4046#issuecomment-2302374295) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#5842](https://github.com/rhinstaller/anaconda/pull/5842#issuecomment-2301798158) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#5829](https://github.com/rhinstaller/anaconda/pull/5829#issuecomment-2301732826) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#7](https://github.com/eastgenomics/GitHub_Actions/pull/7#issuecomment-2301500360) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) +8. 🗣 Commented on [#5](https://github.com/eastgenomics/phoenix/pull/5#issuecomment-2301394773) in [eastgenomics/phoenix](https://github.com/eastgenomics/phoenix) +9. 🗣 Commented on [#712](https://github.com/HEXRD/hexrd/pull/712#issuecomment-2299844615) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +10. 🗣 Commented on [#711](https://github.com/HEXRD/hexrd/pull/711#issuecomment-2299440347) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) From 717b7d3e60fd627ef348e876f9016cff581d3853 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 23 Aug 2024 00:43:51 +0000 Subject: [PATCH 2013/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f0215bb4..f4198f74 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#22368](https://github.com/spyder-ide/spyder/pull/22368#issuecomment-2303047329) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#332](https://github.com/AdvancedPhotonSource/tike/pull/332#issuecomment-2302638814) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -3. 🗣 Commented on [#336](https://github.com/OpenFreeEnergy/gufe/pull/336#issuecomment-2302523116) in [OpenFreeEnergy/gufe](https://github.com/OpenFreeEnergy/gufe) -4. 🗣 Commented on [#4046](https://github.com/privacyidea/privacyidea/pull/4046#issuecomment-2302374295) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#5842](https://github.com/rhinstaller/anaconda/pull/5842#issuecomment-2301798158) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#5829](https://github.com/rhinstaller/anaconda/pull/5829#issuecomment-2301732826) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#7](https://github.com/eastgenomics/GitHub_Actions/pull/7#issuecomment-2301500360) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) -8. 🗣 Commented on [#5](https://github.com/eastgenomics/phoenix/pull/5#issuecomment-2301394773) in [eastgenomics/phoenix](https://github.com/eastgenomics/phoenix) -9. 🗣 Commented on [#712](https://github.com/HEXRD/hexrd/pull/712#issuecomment-2299844615) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -10. 🗣 Commented on [#711](https://github.com/HEXRD/hexrd/pull/711#issuecomment-2299440347) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +1. 🗣 Commented on [#2](https://github.com/2lambda123/OpenCTI-Platform-client-python/pull/2#issuecomment-2305925423) in [2lambda123/OpenCTI-Platform-client-python](https://github.com/2lambda123/OpenCTI-Platform-client-python) +2. 🗣 Commented on [#1](https://github.com/2lambda123/OpenCTI-Platform-client-python/pull/1#issuecomment-2305924802) in [2lambda123/OpenCTI-Platform-client-python](https://github.com/2lambda123/OpenCTI-Platform-client-python) +3. 🗣 Commented on [#333](https://github.com/AdvancedPhotonSource/tike/pull/333#issuecomment-2305562815) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) +4. 🗣 Commented on [#436](https://github.com/aria-tools/ARIA-tools/pull/436#issuecomment-2305469135) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +5. 🗣 Commented on [#6](https://github.com/ucsusa/2024-kansas-city-analysis/pull/6#issuecomment-2305367472) in [ucsusa/2024-kansas-city-analysis](https://github.com/ucsusa/2024-kansas-city-analysis) +6. 🗣 Commented on [#2965](https://github.com/metabrainz/listenbrainz-server/pull/2965#issuecomment-2305225110) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#22372](https://github.com/spyder-ide/spyder/pull/22372#issuecomment-2305190986) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#184](https://github.com/Moonlark-Dev/Moonlark/pull/184#issuecomment-2304977576) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +9. 🗣 Commented on [#239](https://github.com/lettucecfd/lettuce/pull/239#issuecomment-2304962683) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +10. 🗣 Commented on [#1635](https://github.com/spacetelescope/jwql/pull/1635#issuecomment-2304862319) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From dfcd3f0e0899d9998a818a08b9fe461ed155092b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 24 Aug 2024 00:42:59 +0000 Subject: [PATCH 2014/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f4198f74..a8c2cb09 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/2lambda123/OpenCTI-Platform-client-python/pull/2#issuecomment-2305925423) in [2lambda123/OpenCTI-Platform-client-python](https://github.com/2lambda123/OpenCTI-Platform-client-python) -2. 🗣 Commented on [#1](https://github.com/2lambda123/OpenCTI-Platform-client-python/pull/1#issuecomment-2305924802) in [2lambda123/OpenCTI-Platform-client-python](https://github.com/2lambda123/OpenCTI-Platform-client-python) -3. 🗣 Commented on [#333](https://github.com/AdvancedPhotonSource/tike/pull/333#issuecomment-2305562815) in [AdvancedPhotonSource/tike](https://github.com/AdvancedPhotonSource/tike) -4. 🗣 Commented on [#436](https://github.com/aria-tools/ARIA-tools/pull/436#issuecomment-2305469135) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -5. 🗣 Commented on [#6](https://github.com/ucsusa/2024-kansas-city-analysis/pull/6#issuecomment-2305367472) in [ucsusa/2024-kansas-city-analysis](https://github.com/ucsusa/2024-kansas-city-analysis) -6. 🗣 Commented on [#2965](https://github.com/metabrainz/listenbrainz-server/pull/2965#issuecomment-2305225110) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#22372](https://github.com/spyder-ide/spyder/pull/22372#issuecomment-2305190986) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#184](https://github.com/Moonlark-Dev/Moonlark/pull/184#issuecomment-2304977576) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -9. 🗣 Commented on [#239](https://github.com/lettucecfd/lettuce/pull/239#issuecomment-2304962683) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -10. 🗣 Commented on [#1635](https://github.com/spacetelescope/jwql/pull/1635#issuecomment-2304862319) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#22377](https://github.com/spyder-ide/spyder/pull/22377#issuecomment-2307656530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#11](https://github.com/eastgenomics/GitHub_Actions/pull/11#issuecomment-2307338097) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) +3. 🗣 Commented on [#588](https://github.com/bengosney/isitbinday/pull/588#issuecomment-2307330159) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +4. 🗣 Commented on [#125](https://github.com/eastgenomics/trendyQC/pull/125#issuecomment-2307243101) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +5. 🗣 Commented on [#4684](https://github.com/MDAnalysis/mdanalysis/pull/4684#issuecomment-2307218406) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#4683](https://github.com/MDAnalysis/mdanalysis/pull/4683#issuecomment-2307185384) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#4682](https://github.com/MDAnalysis/mdanalysis/pull/4682#issuecomment-2307147016) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#4681](https://github.com/MDAnalysis/mdanalysis/pull/4681#issuecomment-2306883149) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#1324](https://github.com/aimclub/FEDOT/pull/1324#issuecomment-2306855187) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +10. 🗣 Commented on [#241](https://github.com/lettucecfd/lettuce/pull/241#issuecomment-2306843014) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) From 455cb20e22cd2a18d60e7e3ed798b2e59cd00380 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 25 Aug 2024 00:49:01 +0000 Subject: [PATCH 2015/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a8c2cb09..c9c54901 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#22377](https://github.com/spyder-ide/spyder/pull/22377#issuecomment-2307656530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#11](https://github.com/eastgenomics/GitHub_Actions/pull/11#issuecomment-2307338097) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) -3. 🗣 Commented on [#588](https://github.com/bengosney/isitbinday/pull/588#issuecomment-2307330159) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) -4. 🗣 Commented on [#125](https://github.com/eastgenomics/trendyQC/pull/125#issuecomment-2307243101) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -5. 🗣 Commented on [#4684](https://github.com/MDAnalysis/mdanalysis/pull/4684#issuecomment-2307218406) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#4683](https://github.com/MDAnalysis/mdanalysis/pull/4683#issuecomment-2307185384) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#4682](https://github.com/MDAnalysis/mdanalysis/pull/4682#issuecomment-2307147016) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#4681](https://github.com/MDAnalysis/mdanalysis/pull/4681#issuecomment-2306883149) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#1324](https://github.com/aimclub/FEDOT/pull/1324#issuecomment-2306855187) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -10. 🗣 Commented on [#241](https://github.com/lettucecfd/lettuce/pull/241#issuecomment-2306843014) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +1. 🗣 Commented on [#22379](https://github.com/spyder-ide/spyder/pull/22379#issuecomment-2308466569) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#194](https://github.com/Moonlark-Dev/Moonlark/pull/194#issuecomment-2308259748) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +3. 🗣 Commented on [#1](https://github.com/Moonlark-Dev/Moonlark-QQ/pull/1#issuecomment-2308255900) in [Moonlark-Dev/Moonlark-QQ](https://github.com/Moonlark-Dev/Moonlark-QQ) +4. 🗣 Commented on [#22377](https://github.com/spyder-ide/spyder/pull/22377#issuecomment-2307656530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#11](https://github.com/eastgenomics/GitHub_Actions/pull/11#issuecomment-2307338097) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) +6. 🗣 Commented on [#588](https://github.com/bengosney/isitbinday/pull/588#issuecomment-2307330159) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +7. 🗣 Commented on [#125](https://github.com/eastgenomics/trendyQC/pull/125#issuecomment-2307243101) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +8. 🗣 Commented on [#4684](https://github.com/MDAnalysis/mdanalysis/pull/4684#issuecomment-2307218406) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#4683](https://github.com/MDAnalysis/mdanalysis/pull/4683#issuecomment-2307185384) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#4682](https://github.com/MDAnalysis/mdanalysis/pull/4682#issuecomment-2307147016) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From fd9c7dd4a5648c2a7367397ec93d6d31627279a9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 26 Aug 2024 00:44:52 +0000 Subject: [PATCH 2016/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c9c54901..91c4b58b 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#22379](https://github.com/spyder-ide/spyder/pull/22379#issuecomment-2308466569) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#194](https://github.com/Moonlark-Dev/Moonlark/pull/194#issuecomment-2308259748) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -3. 🗣 Commented on [#1](https://github.com/Moonlark-Dev/Moonlark-QQ/pull/1#issuecomment-2308255900) in [Moonlark-Dev/Moonlark-QQ](https://github.com/Moonlark-Dev/Moonlark-QQ) -4. 🗣 Commented on [#22377](https://github.com/spyder-ide/spyder/pull/22377#issuecomment-2307656530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#11](https://github.com/eastgenomics/GitHub_Actions/pull/11#issuecomment-2307338097) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) -6. 🗣 Commented on [#588](https://github.com/bengosney/isitbinday/pull/588#issuecomment-2307330159) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) -7. 🗣 Commented on [#125](https://github.com/eastgenomics/trendyQC/pull/125#issuecomment-2307243101) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -8. 🗣 Commented on [#4684](https://github.com/MDAnalysis/mdanalysis/pull/4684#issuecomment-2307218406) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#4683](https://github.com/MDAnalysis/mdanalysis/pull/4683#issuecomment-2307185384) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#4682](https://github.com/MDAnalysis/mdanalysis/pull/4682#issuecomment-2307147016) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#2962](https://github.com/metabrainz/listenbrainz-server/pull/2962#issuecomment-2308849175) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#200](https://github.com/Moonlark-Dev/Moonlark/pull/200#issuecomment-2308694968) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +3. 🗣 Commented on [#22379](https://github.com/spyder-ide/spyder/pull/22379#issuecomment-2308466569) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#194](https://github.com/Moonlark-Dev/Moonlark/pull/194#issuecomment-2308259748) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +5. 🗣 Commented on [#1](https://github.com/Moonlark-Dev/Moonlark-QQ/pull/1#issuecomment-2308255900) in [Moonlark-Dev/Moonlark-QQ](https://github.com/Moonlark-Dev/Moonlark-QQ) +6. 🗣 Commented on [#22377](https://github.com/spyder-ide/spyder/pull/22377#issuecomment-2307656530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#11](https://github.com/eastgenomics/GitHub_Actions/pull/11#issuecomment-2307338097) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) +8. 🗣 Commented on [#588](https://github.com/bengosney/isitbinday/pull/588#issuecomment-2307330159) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) +9. 🗣 Commented on [#125](https://github.com/eastgenomics/trendyQC/pull/125#issuecomment-2307243101) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +10. 🗣 Commented on [#4684](https://github.com/MDAnalysis/mdanalysis/pull/4684#issuecomment-2307218406) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From f7cb5210ee53a59ad47cb3618cf14e072c2975b6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 27 Aug 2024 00:44:55 +0000 Subject: [PATCH 2017/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 91c4b58b..fb114129 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2962](https://github.com/metabrainz/listenbrainz-server/pull/2962#issuecomment-2308849175) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#200](https://github.com/Moonlark-Dev/Moonlark/pull/200#issuecomment-2308694968) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -3. 🗣 Commented on [#22379](https://github.com/spyder-ide/spyder/pull/22379#issuecomment-2308466569) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#194](https://github.com/Moonlark-Dev/Moonlark/pull/194#issuecomment-2308259748) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -5. 🗣 Commented on [#1](https://github.com/Moonlark-Dev/Moonlark-QQ/pull/1#issuecomment-2308255900) in [Moonlark-Dev/Moonlark-QQ](https://github.com/Moonlark-Dev/Moonlark-QQ) -6. 🗣 Commented on [#22377](https://github.com/spyder-ide/spyder/pull/22377#issuecomment-2307656530) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#11](https://github.com/eastgenomics/GitHub_Actions/pull/11#issuecomment-2307338097) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) -8. 🗣 Commented on [#588](https://github.com/bengosney/isitbinday/pull/588#issuecomment-2307330159) in [bengosney/isitbinday](https://github.com/bengosney/isitbinday) -9. 🗣 Commented on [#125](https://github.com/eastgenomics/trendyQC/pull/125#issuecomment-2307243101) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -10. 🗣 Commented on [#4684](https://github.com/MDAnalysis/mdanalysis/pull/4684#issuecomment-2307218406) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#142](https://github.com/Richard-Sti/csiborgtools/pull/142#issuecomment-2311226256) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +2. 🗣 Commented on [#9335](https://github.com/statsmodels/statsmodels/pull/9335#issuecomment-2311085896) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#6](https://github.com/HEXRD/polycrystalx/pull/6#issuecomment-2310858249) in [HEXRD/polycrystalx](https://github.com/HEXRD/polycrystalx) +4. 🗣 Commented on [#6](https://github.com/2lambda123/OpenCTI-Platform-client-python/pull/6#issuecomment-2310825943) in [2lambda123/OpenCTI-Platform-client-python](https://github.com/2lambda123/OpenCTI-Platform-client-python) +5. 🗣 Commented on [#204](https://github.com/Moonlark-Dev/Moonlark/pull/204#issuecomment-2310338925) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +6. 🗣 Commented on [#4](https://github.com/ITMO-NSS-team/FEDOT.LLM/pull/4#issuecomment-2309748285) in [ITMO-NSS-team/FEDOT.LLM](https://github.com/ITMO-NSS-team/FEDOT.LLM) +7. 🗣 Commented on [#27](https://github.com/cirKITers/qml-essentials/pull/27#issuecomment-2309638208) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +8. 🗣 Commented on [#244](https://github.com/lettucecfd/lettuce/pull/244#issuecomment-2309632907) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +9. 🗣 Commented on [#18](https://github.com/sarnold/yaml-tools/pull/18#issuecomment-2309391685) in [sarnold/yaml-tools](https://github.com/sarnold/yaml-tools) +10. 🗣 Commented on [#2962](https://github.com/metabrainz/listenbrainz-server/pull/2962#issuecomment-2308849175) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From c579d39e9c2341385aa4d05e9c485f7010449fc3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 28 Aug 2024 00:45:02 +0000 Subject: [PATCH 2018/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fb114129..9f9cd5d2 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#142](https://github.com/Richard-Sti/csiborgtools/pull/142#issuecomment-2311226256) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -2. 🗣 Commented on [#9335](https://github.com/statsmodels/statsmodels/pull/9335#issuecomment-2311085896) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#6](https://github.com/HEXRD/polycrystalx/pull/6#issuecomment-2310858249) in [HEXRD/polycrystalx](https://github.com/HEXRD/polycrystalx) -4. 🗣 Commented on [#6](https://github.com/2lambda123/OpenCTI-Platform-client-python/pull/6#issuecomment-2310825943) in [2lambda123/OpenCTI-Platform-client-python](https://github.com/2lambda123/OpenCTI-Platform-client-python) -5. 🗣 Commented on [#204](https://github.com/Moonlark-Dev/Moonlark/pull/204#issuecomment-2310338925) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -6. 🗣 Commented on [#4](https://github.com/ITMO-NSS-team/FEDOT.LLM/pull/4#issuecomment-2309748285) in [ITMO-NSS-team/FEDOT.LLM](https://github.com/ITMO-NSS-team/FEDOT.LLM) -7. 🗣 Commented on [#27](https://github.com/cirKITers/qml-essentials/pull/27#issuecomment-2309638208) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -8. 🗣 Commented on [#244](https://github.com/lettucecfd/lettuce/pull/244#issuecomment-2309632907) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -9. 🗣 Commented on [#18](https://github.com/sarnold/yaml-tools/pull/18#issuecomment-2309391685) in [sarnold/yaml-tools](https://github.com/sarnold/yaml-tools) -10. 🗣 Commented on [#2962](https://github.com/metabrainz/listenbrainz-server/pull/2962#issuecomment-2308849175) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1157](https://github.com/yeatmanlab/pyAFQ/pull/1157#issuecomment-2313438091) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) +2. 🗣 Commented on [#168](https://github.com/arfc/transition-scenarios/pull/168#issuecomment-2313333497) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +3. 🗣 Commented on [#2](https://github.com/2lambda123/EleutherAI-pythia/pull/2#issuecomment-2313179593) in [2lambda123/EleutherAI-pythia](https://github.com/2lambda123/EleutherAI-pythia) +4. 🗣 Commented on [#1](https://github.com/2lambda123/EleutherAI-pythia/pull/1#issuecomment-2313178598) in [2lambda123/EleutherAI-pythia](https://github.com/2lambda123/EleutherAI-pythia) +5. 🗣 Commented on [#1](https://github.com/2lambda123/apple-foundationdb/pull/1#issuecomment-2313156000) in [2lambda123/apple-foundationdb](https://github.com/2lambda123/apple-foundationdb) +6. 🗣 Commented on [#2](https://github.com/2lambda123/EleutherAI-gpt-neox/pull/2#issuecomment-2313132100) in [2lambda123/EleutherAI-gpt-neox](https://github.com/2lambda123/EleutherAI-gpt-neox) +7. 🗣 Commented on [#1](https://github.com/2lambda123/EleutherAI-gpt-neox/pull/1#issuecomment-2313131597) in [2lambda123/EleutherAI-gpt-neox](https://github.com/2lambda123/EleutherAI-gpt-neox) +8. 🗣 Commented on [#17](https://github.com/2lambda123/EleutherAI-math-lm/pull/17#issuecomment-2313118700) in [2lambda123/EleutherAI-math-lm](https://github.com/2lambda123/EleutherAI-math-lm) +9. 🗣 Commented on [#15](https://github.com/2lambda123/EleutherAI-math-lm/pull/15#issuecomment-2313118431) in [2lambda123/EleutherAI-math-lm](https://github.com/2lambda123/EleutherAI-math-lm) +10. 🗣 Commented on [#12](https://github.com/2lambda123/EleutherAI-math-lm/pull/12#issuecomment-2313117385) in [2lambda123/EleutherAI-math-lm](https://github.com/2lambda123/EleutherAI-math-lm) From b8b69b05998e7f7cbb5fe34a1e666d2b8b69cd3c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 29 Aug 2024 00:45:29 +0000 Subject: [PATCH 2019/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9f9cd5d2..721c3de9 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1157](https://github.com/yeatmanlab/pyAFQ/pull/1157#issuecomment-2313438091) in [yeatmanlab/pyAFQ](https://github.com/yeatmanlab/pyAFQ) -2. 🗣 Commented on [#168](https://github.com/arfc/transition-scenarios/pull/168#issuecomment-2313333497) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -3. 🗣 Commented on [#2](https://github.com/2lambda123/EleutherAI-pythia/pull/2#issuecomment-2313179593) in [2lambda123/EleutherAI-pythia](https://github.com/2lambda123/EleutherAI-pythia) -4. 🗣 Commented on [#1](https://github.com/2lambda123/EleutherAI-pythia/pull/1#issuecomment-2313178598) in [2lambda123/EleutherAI-pythia](https://github.com/2lambda123/EleutherAI-pythia) -5. 🗣 Commented on [#1](https://github.com/2lambda123/apple-foundationdb/pull/1#issuecomment-2313156000) in [2lambda123/apple-foundationdb](https://github.com/2lambda123/apple-foundationdb) -6. 🗣 Commented on [#2](https://github.com/2lambda123/EleutherAI-gpt-neox/pull/2#issuecomment-2313132100) in [2lambda123/EleutherAI-gpt-neox](https://github.com/2lambda123/EleutherAI-gpt-neox) -7. 🗣 Commented on [#1](https://github.com/2lambda123/EleutherAI-gpt-neox/pull/1#issuecomment-2313131597) in [2lambda123/EleutherAI-gpt-neox](https://github.com/2lambda123/EleutherAI-gpt-neox) -8. 🗣 Commented on [#17](https://github.com/2lambda123/EleutherAI-math-lm/pull/17#issuecomment-2313118700) in [2lambda123/EleutherAI-math-lm](https://github.com/2lambda123/EleutherAI-math-lm) -9. 🗣 Commented on [#15](https://github.com/2lambda123/EleutherAI-math-lm/pull/15#issuecomment-2313118431) in [2lambda123/EleutherAI-math-lm](https://github.com/2lambda123/EleutherAI-math-lm) -10. 🗣 Commented on [#12](https://github.com/2lambda123/EleutherAI-math-lm/pull/12#issuecomment-2313117385) in [2lambda123/EleutherAI-math-lm](https://github.com/2lambda123/EleutherAI-math-lm) +1. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/kartograf/pull/47#issuecomment-2316412862) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) +2. 🗣 Commented on [#418](https://github.com/cggh/scikit-allel/pull/418#issuecomment-2316386731) in [cggh/scikit-allel](https://github.com/cggh/scikit-allel) +3. 🗣 Commented on [#89](https://github.com/eastgenomics/Genetics_Ark/pull/89#issuecomment-2315790596) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) +4. 🗣 Commented on [#2127](https://github.com/rpm-software-management/dnf/pull/2127#issuecomment-2315509433) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +5. 🗣 Commented on [#5857](https://github.com/rhinstaller/anaconda/pull/5857#issuecomment-2315034850) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#2968](https://github.com/metabrainz/listenbrainz-server/pull/2968#issuecomment-2315019542) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#247](https://github.com/lettucecfd/lettuce/pull/247#issuecomment-2314974091) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +8. 🗣 Commented on [#273](https://github.com/casacore/python-casacore/pull/273#issuecomment-2314737079) in [casacore/python-casacore](https://github.com/casacore/python-casacore) +9. 🗣 Commented on [#2](https://github.com/eastgenomics/automated-clinvar-submission/pull/2#issuecomment-2314671947) in [eastgenomics/automated-clinvar-submission](https://github.com/eastgenomics/automated-clinvar-submission) +10. 🗣 Commented on [#899](https://github.com/spacetelescope/webbpsf/pull/899#issuecomment-2314360871) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) From ac5adb41679a0f0fa2a47015700ac39244db380f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 00:45:58 +0000 Subject: [PATCH 2020/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 721c3de9..f91d85e1 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/kartograf/pull/47#issuecomment-2316412862) in [OpenFreeEnergy/kartograf](https://github.com/OpenFreeEnergy/kartograf) -2. 🗣 Commented on [#418](https://github.com/cggh/scikit-allel/pull/418#issuecomment-2316386731) in [cggh/scikit-allel](https://github.com/cggh/scikit-allel) -3. 🗣 Commented on [#89](https://github.com/eastgenomics/Genetics_Ark/pull/89#issuecomment-2315790596) in [eastgenomics/Genetics_Ark](https://github.com/eastgenomics/Genetics_Ark) -4. 🗣 Commented on [#2127](https://github.com/rpm-software-management/dnf/pull/2127#issuecomment-2315509433) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -5. 🗣 Commented on [#5857](https://github.com/rhinstaller/anaconda/pull/5857#issuecomment-2315034850) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#2968](https://github.com/metabrainz/listenbrainz-server/pull/2968#issuecomment-2315019542) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#247](https://github.com/lettucecfd/lettuce/pull/247#issuecomment-2314974091) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -8. 🗣 Commented on [#273](https://github.com/casacore/python-casacore/pull/273#issuecomment-2314737079) in [casacore/python-casacore](https://github.com/casacore/python-casacore) -9. 🗣 Commented on [#2](https://github.com/eastgenomics/automated-clinvar-submission/pull/2#issuecomment-2314671947) in [eastgenomics/automated-clinvar-submission](https://github.com/eastgenomics/automated-clinvar-submission) -10. 🗣 Commented on [#899](https://github.com/spacetelescope/webbpsf/pull/899#issuecomment-2314360871) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +1. 🗣 Commented on [#3343](https://github.com/dipy/dipy/pull/3343#issuecomment-2319458128) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#1126](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1126#issuecomment-2318975860) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#1643](https://github.com/spacetelescope/jwql/pull/1643#issuecomment-2318701034) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +4. 🗣 Commented on [#34](https://github.com/ucsusa/pypsa-illinois/pull/34#issuecomment-2318697382) in [ucsusa/pypsa-illinois](https://github.com/ucsusa/pypsa-illinois) +5. 🗣 Commented on [#4](https://github.com/2lambda123/https-github.com-shivasiddharth-GassistPi/pull/4#issuecomment-2318559362) in [2lambda123/https-github.com-shivasiddharth-GassistPi](https://github.com/2lambda123/https-github.com-shivasiddharth-GassistPi) +6. 🗣 Commented on [#4693](https://github.com/MDAnalysis/mdanalysis/pull/4693#issuecomment-2318553013) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#1328](https://github.com/aimclub/FEDOT/pull/1328#issuecomment-2318445217) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +8. 🗣 Commented on [#1656](https://github.com/odlgroup/odl/pull/1656#issuecomment-2318380655) in [odlgroup/odl](https://github.com/odlgroup/odl) +9. 🗣 Commented on [#1655](https://github.com/odlgroup/odl/pull/1655#issuecomment-2318333587) in [odlgroup/odl](https://github.com/odlgroup/odl) +10. 🗣 Commented on [#837](https://github.com/StingraySoftware/stingray/pull/837#issuecomment-2318242021) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) From 483274caa91c2650af149eb0b992aaa0b1ed6846 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 31 Aug 2024 00:45:46 +0000 Subject: [PATCH 2021/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f91d85e1..9bdaa446 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3343](https://github.com/dipy/dipy/pull/3343#issuecomment-2319458128) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#1126](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1126#issuecomment-2318975860) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#1643](https://github.com/spacetelescope/jwql/pull/1643#issuecomment-2318701034) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -4. 🗣 Commented on [#34](https://github.com/ucsusa/pypsa-illinois/pull/34#issuecomment-2318697382) in [ucsusa/pypsa-illinois](https://github.com/ucsusa/pypsa-illinois) -5. 🗣 Commented on [#4](https://github.com/2lambda123/https-github.com-shivasiddharth-GassistPi/pull/4#issuecomment-2318559362) in [2lambda123/https-github.com-shivasiddharth-GassistPi](https://github.com/2lambda123/https-github.com-shivasiddharth-GassistPi) -6. 🗣 Commented on [#4693](https://github.com/MDAnalysis/mdanalysis/pull/4693#issuecomment-2318553013) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#1328](https://github.com/aimclub/FEDOT/pull/1328#issuecomment-2318445217) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -8. 🗣 Commented on [#1656](https://github.com/odlgroup/odl/pull/1656#issuecomment-2318380655) in [odlgroup/odl](https://github.com/odlgroup/odl) -9. 🗣 Commented on [#1655](https://github.com/odlgroup/odl/pull/1655#issuecomment-2318333587) in [odlgroup/odl](https://github.com/odlgroup/odl) -10. 🗣 Commented on [#837](https://github.com/StingraySoftware/stingray/pull/837#issuecomment-2318242021) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +1. 🗣 Commented on [#193](https://github.com/SwaragThaikkandi/SMdRQA/pull/193#issuecomment-2322144563) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +2. 🗣 Commented on [#1644](https://github.com/spacetelescope/jwql/pull/1644#issuecomment-2321598287) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#1](https://github.com/2lambda123/statbiophys-pygor3/pull/1#issuecomment-2320962327) in [2lambda123/statbiophys-pygor3](https://github.com/2lambda123/statbiophys-pygor3) +4. 🗣 Commented on [#3](https://github.com/2lambda123/nasa-opera-sds-pge/pull/3#issuecomment-2320944307) in [2lambda123/nasa-opera-sds-pge](https://github.com/2lambda123/nasa-opera-sds-pge) +5. 🗣 Commented on [#1](https://github.com/2lambda123/statbiophys-OLGA/pull/1#issuecomment-2320931203) in [2lambda123/statbiophys-OLGA](https://github.com/2lambda123/statbiophys-OLGA) +6. 🗣 Commented on [#2](https://github.com/2lambda123/nasa-opera-sds-pge/pull/2#issuecomment-2320925670) in [2lambda123/nasa-opera-sds-pge](https://github.com/2lambda123/nasa-opera-sds-pge) +7. 🗣 Commented on [#13](https://github.com/2lambda123/nasa-opera-sds-pcm/pull/13#issuecomment-2320886280) in [2lambda123/nasa-opera-sds-pcm](https://github.com/2lambda123/nasa-opera-sds-pcm) +8. 🗣 Commented on [#8](https://github.com/2lambda123/nasa-opera-sds-pcm/pull/8#issuecomment-2320819799) in [2lambda123/nasa-opera-sds-pcm](https://github.com/2lambda123/nasa-opera-sds-pcm) +9. 🗣 Commented on [#7](https://github.com/2lambda123/nasa-opera-sds-pcm/pull/7#issuecomment-2320819399) in [2lambda123/nasa-opera-sds-pcm](https://github.com/2lambda123/nasa-opera-sds-pcm) +10. 🗣 Commented on [#5](https://github.com/2lambda123/nasa-opera-sds-pcm/pull/5#issuecomment-2320818794) in [2lambda123/nasa-opera-sds-pcm](https://github.com/2lambda123/nasa-opera-sds-pcm) From ea817b5d540b2f7cb2287f3cf64ebbc6078d2488 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 1 Sep 2024 00:55:21 +0000 Subject: [PATCH 2022/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9bdaa446..458ccc32 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#193](https://github.com/SwaragThaikkandi/SMdRQA/pull/193#issuecomment-2322144563) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -2. 🗣 Commented on [#1644](https://github.com/spacetelescope/jwql/pull/1644#issuecomment-2321598287) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#1](https://github.com/2lambda123/statbiophys-pygor3/pull/1#issuecomment-2320962327) in [2lambda123/statbiophys-pygor3](https://github.com/2lambda123/statbiophys-pygor3) -4. 🗣 Commented on [#3](https://github.com/2lambda123/nasa-opera-sds-pge/pull/3#issuecomment-2320944307) in [2lambda123/nasa-opera-sds-pge](https://github.com/2lambda123/nasa-opera-sds-pge) -5. 🗣 Commented on [#1](https://github.com/2lambda123/statbiophys-OLGA/pull/1#issuecomment-2320931203) in [2lambda123/statbiophys-OLGA](https://github.com/2lambda123/statbiophys-OLGA) -6. 🗣 Commented on [#2](https://github.com/2lambda123/nasa-opera-sds-pge/pull/2#issuecomment-2320925670) in [2lambda123/nasa-opera-sds-pge](https://github.com/2lambda123/nasa-opera-sds-pge) -7. 🗣 Commented on [#13](https://github.com/2lambda123/nasa-opera-sds-pcm/pull/13#issuecomment-2320886280) in [2lambda123/nasa-opera-sds-pcm](https://github.com/2lambda123/nasa-opera-sds-pcm) -8. 🗣 Commented on [#8](https://github.com/2lambda123/nasa-opera-sds-pcm/pull/8#issuecomment-2320819799) in [2lambda123/nasa-opera-sds-pcm](https://github.com/2lambda123/nasa-opera-sds-pcm) -9. 🗣 Commented on [#7](https://github.com/2lambda123/nasa-opera-sds-pcm/pull/7#issuecomment-2320819399) in [2lambda123/nasa-opera-sds-pcm](https://github.com/2lambda123/nasa-opera-sds-pcm) -10. 🗣 Commented on [#5](https://github.com/2lambda123/nasa-opera-sds-pcm/pull/5#issuecomment-2320818794) in [2lambda123/nasa-opera-sds-pcm](https://github.com/2lambda123/nasa-opera-sds-pcm) +1. 🗣 Commented on [#3344](https://github.com/dipy/dipy/pull/3344#issuecomment-2322937661) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#22404](https://github.com/spyder-ide/spyder/pull/22404#issuecomment-2322731745) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#193](https://github.com/SwaragThaikkandi/SMdRQA/pull/193#issuecomment-2322144563) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +4. 🗣 Commented on [#1644](https://github.com/spacetelescope/jwql/pull/1644#issuecomment-2321598287) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +5. 🗣 Commented on [#1](https://github.com/2lambda123/statbiophys-pygor3/pull/1#issuecomment-2320962327) in [2lambda123/statbiophys-pygor3](https://github.com/2lambda123/statbiophys-pygor3) +6. 🗣 Commented on [#3](https://github.com/2lambda123/nasa-opera-sds-pge/pull/3#issuecomment-2320944307) in [2lambda123/nasa-opera-sds-pge](https://github.com/2lambda123/nasa-opera-sds-pge) +7. 🗣 Commented on [#1](https://github.com/2lambda123/statbiophys-OLGA/pull/1#issuecomment-2320931203) in [2lambda123/statbiophys-OLGA](https://github.com/2lambda123/statbiophys-OLGA) +8. 🗣 Commented on [#2](https://github.com/2lambda123/nasa-opera-sds-pge/pull/2#issuecomment-2320925670) in [2lambda123/nasa-opera-sds-pge](https://github.com/2lambda123/nasa-opera-sds-pge) +9. 🗣 Commented on [#13](https://github.com/2lambda123/nasa-opera-sds-pcm/pull/13#issuecomment-2320886280) in [2lambda123/nasa-opera-sds-pcm](https://github.com/2lambda123/nasa-opera-sds-pcm) +10. 🗣 Commented on [#8](https://github.com/2lambda123/nasa-opera-sds-pcm/pull/8#issuecomment-2320819799) in [2lambda123/nasa-opera-sds-pcm](https://github.com/2lambda123/nasa-opera-sds-pcm) From 8562cc2a6a52d4ac5de883a64d403d88541a54ac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 00:48:02 +0000 Subject: [PATCH 2023/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 458ccc32..ffc48182 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3344](https://github.com/dipy/dipy/pull/3344#issuecomment-2322937661) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#22404](https://github.com/spyder-ide/spyder/pull/22404#issuecomment-2322731745) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#193](https://github.com/SwaragThaikkandi/SMdRQA/pull/193#issuecomment-2322144563) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -4. 🗣 Commented on [#1644](https://github.com/spacetelescope/jwql/pull/1644#issuecomment-2321598287) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -5. 🗣 Commented on [#1](https://github.com/2lambda123/statbiophys-pygor3/pull/1#issuecomment-2320962327) in [2lambda123/statbiophys-pygor3](https://github.com/2lambda123/statbiophys-pygor3) -6. 🗣 Commented on [#3](https://github.com/2lambda123/nasa-opera-sds-pge/pull/3#issuecomment-2320944307) in [2lambda123/nasa-opera-sds-pge](https://github.com/2lambda123/nasa-opera-sds-pge) -7. 🗣 Commented on [#1](https://github.com/2lambda123/statbiophys-OLGA/pull/1#issuecomment-2320931203) in [2lambda123/statbiophys-OLGA](https://github.com/2lambda123/statbiophys-OLGA) -8. 🗣 Commented on [#2](https://github.com/2lambda123/nasa-opera-sds-pge/pull/2#issuecomment-2320925670) in [2lambda123/nasa-opera-sds-pge](https://github.com/2lambda123/nasa-opera-sds-pge) -9. 🗣 Commented on [#13](https://github.com/2lambda123/nasa-opera-sds-pcm/pull/13#issuecomment-2320886280) in [2lambda123/nasa-opera-sds-pcm](https://github.com/2lambda123/nasa-opera-sds-pcm) -10. 🗣 Commented on [#8](https://github.com/2lambda123/nasa-opera-sds-pcm/pull/8#issuecomment-2320819799) in [2lambda123/nasa-opera-sds-pcm](https://github.com/2lambda123/nasa-opera-sds-pcm) +1. 🗣 Commented on [#9](https://github.com/sarnold/timew-addons/pull/9#issuecomment-2323548076) in [sarnold/timew-addons](https://github.com/sarnold/timew-addons) +2. 🗣 Commented on [#29](https://github.com/foreign-sub/tinygrad/pull/29#issuecomment-2323169327) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +3. 🗣 Commented on [#422](https://github.com/xarray-contrib/xskillscore/pull/422#issuecomment-2323163130) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) +4. 🗣 Commented on [#3344](https://github.com/dipy/dipy/pull/3344#issuecomment-2322937661) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#22404](https://github.com/spyder-ide/spyder/pull/22404#issuecomment-2322731745) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#193](https://github.com/SwaragThaikkandi/SMdRQA/pull/193#issuecomment-2322144563) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) +7. 🗣 Commented on [#1644](https://github.com/spacetelescope/jwql/pull/1644#issuecomment-2321598287) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +8. 🗣 Commented on [#1](https://github.com/2lambda123/statbiophys-pygor3/pull/1#issuecomment-2320962327) in [2lambda123/statbiophys-pygor3](https://github.com/2lambda123/statbiophys-pygor3) +9. 🗣 Commented on [#3](https://github.com/2lambda123/nasa-opera-sds-pge/pull/3#issuecomment-2320944307) in [2lambda123/nasa-opera-sds-pge](https://github.com/2lambda123/nasa-opera-sds-pge) +10. 🗣 Commented on [#1](https://github.com/2lambda123/statbiophys-OLGA/pull/1#issuecomment-2320931203) in [2lambda123/statbiophys-OLGA](https://github.com/2lambda123/statbiophys-OLGA) From 8017f1b1f48b7856c485e73be69dc30be7bd7e25 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 00:45:35 +0000 Subject: [PATCH 2024/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ffc48182..10531c6d 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#9](https://github.com/sarnold/timew-addons/pull/9#issuecomment-2323548076) in [sarnold/timew-addons](https://github.com/sarnold/timew-addons) -2. 🗣 Commented on [#29](https://github.com/foreign-sub/tinygrad/pull/29#issuecomment-2323169327) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -3. 🗣 Commented on [#422](https://github.com/xarray-contrib/xskillscore/pull/422#issuecomment-2323163130) in [xarray-contrib/xskillscore](https://github.com/xarray-contrib/xskillscore) -4. 🗣 Commented on [#3344](https://github.com/dipy/dipy/pull/3344#issuecomment-2322937661) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#22404](https://github.com/spyder-ide/spyder/pull/22404#issuecomment-2322731745) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#193](https://github.com/SwaragThaikkandi/SMdRQA/pull/193#issuecomment-2322144563) in [SwaragThaikkandi/SMdRQA](https://github.com/SwaragThaikkandi/SMdRQA) -7. 🗣 Commented on [#1644](https://github.com/spacetelescope/jwql/pull/1644#issuecomment-2321598287) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -8. 🗣 Commented on [#1](https://github.com/2lambda123/statbiophys-pygor3/pull/1#issuecomment-2320962327) in [2lambda123/statbiophys-pygor3](https://github.com/2lambda123/statbiophys-pygor3) -9. 🗣 Commented on [#3](https://github.com/2lambda123/nasa-opera-sds-pge/pull/3#issuecomment-2320944307) in [2lambda123/nasa-opera-sds-pge](https://github.com/2lambda123/nasa-opera-sds-pge) -10. 🗣 Commented on [#1](https://github.com/2lambda123/statbiophys-OLGA/pull/1#issuecomment-2320931203) in [2lambda123/statbiophys-OLGA](https://github.com/2lambda123/statbiophys-OLGA) +1. 🗣 Commented on [#4](https://github.com/2lambda123/apple-foundationdb/pull/4#issuecomment-2325189945) in [2lambda123/apple-foundationdb](https://github.com/2lambda123/apple-foundationdb) +2. 🗣 Commented on [#148](https://github.com/CartoonFan/gearhead-caramel/pull/148#issuecomment-2325090547) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) +3. 🗣 Commented on [#136](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/136#issuecomment-2324827986) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +4. 🗣 Commented on [#5865](https://github.com/rhinstaller/anaconda/pull/5865#issuecomment-2324567066) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#248](https://github.com/lettucecfd/lettuce/pull/248#issuecomment-2324539149) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +6. 🗣 Commented on [#3166](https://github.com/MycroftAI/mycroft-core/pull/3166#issuecomment-2324433718) in [MycroftAI/mycroft-core](https://github.com/MycroftAI/mycroft-core) +7. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook/pull/11#issuecomment-2324284192) in [eastgenomics/eggd_generate_rd_wgs_workbook](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook) +8. 🗣 Commented on [#4700](https://github.com/MDAnalysis/mdanalysis/pull/4700#issuecomment-2324282747) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#9](https://github.com/sarnold/timew-addons/pull/9#issuecomment-2323548076) in [sarnold/timew-addons](https://github.com/sarnold/timew-addons) +10. 🗣 Commented on [#29](https://github.com/foreign-sub/tinygrad/pull/29#issuecomment-2323169327) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) From b75cf3d5508737cc9be61a97674eccb9a2fd7b8d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 00:46:24 +0000 Subject: [PATCH 2025/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 10531c6d..74b77f44 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4](https://github.com/2lambda123/apple-foundationdb/pull/4#issuecomment-2325189945) in [2lambda123/apple-foundationdb](https://github.com/2lambda123/apple-foundationdb) -2. 🗣 Commented on [#148](https://github.com/CartoonFan/gearhead-caramel/pull/148#issuecomment-2325090547) in [CartoonFan/gearhead-caramel](https://github.com/CartoonFan/gearhead-caramel) -3. 🗣 Commented on [#136](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/136#issuecomment-2324827986) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -4. 🗣 Commented on [#5865](https://github.com/rhinstaller/anaconda/pull/5865#issuecomment-2324567066) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#248](https://github.com/lettucecfd/lettuce/pull/248#issuecomment-2324539149) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -6. 🗣 Commented on [#3166](https://github.com/MycroftAI/mycroft-core/pull/3166#issuecomment-2324433718) in [MycroftAI/mycroft-core](https://github.com/MycroftAI/mycroft-core) -7. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook/pull/11#issuecomment-2324284192) in [eastgenomics/eggd_generate_rd_wgs_workbook](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook) -8. 🗣 Commented on [#4700](https://github.com/MDAnalysis/mdanalysis/pull/4700#issuecomment-2324282747) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#9](https://github.com/sarnold/timew-addons/pull/9#issuecomment-2323548076) in [sarnold/timew-addons](https://github.com/sarnold/timew-addons) -10. 🗣 Commented on [#29](https://github.com/foreign-sub/tinygrad/pull/29#issuecomment-2323169327) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +1. 🗣 Commented on [#4065](https://github.com/privacyidea/privacyidea/pull/4065#issuecomment-2327525233) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#908](https://github.com/spacetelescope/webbpsf/pull/908#issuecomment-2327342037) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#929](https://github.com/OpenFreeEnergy/openfe/pull/929#issuecomment-2326824045) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +4. 🗣 Commented on [#144](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/144#issuecomment-2326756270) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +5. 🗣 Commented on [#9](https://github.com/2lambda123/winter-telescope-mirar/pull/9#issuecomment-2326699234) in [2lambda123/winter-telescope-mirar](https://github.com/2lambda123/winter-telescope-mirar) +6. 🗣 Commented on [#36](https://github.com/ucsusa/pypsa-illinois/pull/36#issuecomment-2326687052) in [ucsusa/pypsa-illinois](https://github.com/ucsusa/pypsa-illinois) +7. 🗣 Commented on [#8](https://github.com/2lambda123/winter-telescope-mirar/pull/8#issuecomment-2326610127) in [2lambda123/winter-telescope-mirar](https://github.com/2lambda123/winter-telescope-mirar) +8. 🗣 Commented on [#7](https://github.com/2lambda123/winter-telescope-mirar/pull/7#issuecomment-2326608518) in [2lambda123/winter-telescope-mirar](https://github.com/2lambda123/winter-telescope-mirar) +9. 🗣 Commented on [#1499](https://github.com/Open-CAS/open-cas-linux/pull/1499#issuecomment-2326443070) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +10. 🗣 Commented on [#12](https://github.com/eastgenomics/GitHub_Actions/pull/12#issuecomment-2326256353) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) From 85e4a0b580477345ef19d0298e170c34ba20cf93 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 00:46:30 +0000 Subject: [PATCH 2026/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 74b77f44..1e58f8af 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4065](https://github.com/privacyidea/privacyidea/pull/4065#issuecomment-2327525233) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#908](https://github.com/spacetelescope/webbpsf/pull/908#issuecomment-2327342037) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#929](https://github.com/OpenFreeEnergy/openfe/pull/929#issuecomment-2326824045) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -4. 🗣 Commented on [#144](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/144#issuecomment-2326756270) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -5. 🗣 Commented on [#9](https://github.com/2lambda123/winter-telescope-mirar/pull/9#issuecomment-2326699234) in [2lambda123/winter-telescope-mirar](https://github.com/2lambda123/winter-telescope-mirar) -6. 🗣 Commented on [#36](https://github.com/ucsusa/pypsa-illinois/pull/36#issuecomment-2326687052) in [ucsusa/pypsa-illinois](https://github.com/ucsusa/pypsa-illinois) -7. 🗣 Commented on [#8](https://github.com/2lambda123/winter-telescope-mirar/pull/8#issuecomment-2326610127) in [2lambda123/winter-telescope-mirar](https://github.com/2lambda123/winter-telescope-mirar) -8. 🗣 Commented on [#7](https://github.com/2lambda123/winter-telescope-mirar/pull/7#issuecomment-2326608518) in [2lambda123/winter-telescope-mirar](https://github.com/2lambda123/winter-telescope-mirar) -9. 🗣 Commented on [#1499](https://github.com/Open-CAS/open-cas-linux/pull/1499#issuecomment-2326443070) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -10. 🗣 Commented on [#12](https://github.com/eastgenomics/GitHub_Actions/pull/12#issuecomment-2326256353) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) +1. 🗣 Commented on [#1](https://github.com/2lambda123/nasa-astrobee/pull/1#issuecomment-2329930976) in [2lambda123/nasa-astrobee](https://github.com/2lambda123/nasa-astrobee) +2. 🗣 Commented on [#4](https://github.com/2lambda123/nasa-gesdisc-tutorials/pull/4#issuecomment-2329866684) in [2lambda123/nasa-gesdisc-tutorials](https://github.com/2lambda123/nasa-gesdisc-tutorials) +3. 🗣 Commented on [#838](https://github.com/StingraySoftware/stingray/pull/838#issuecomment-2329450952) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) +4. 🗣 Commented on [#39](https://github.com/ucsusa/pypsa-illinois/pull/39#issuecomment-2329341227) in [ucsusa/pypsa-illinois](https://github.com/ucsusa/pypsa-illinois) +5. 🗣 Commented on [#3](https://github.com/gfunkmonk/Ventoy/pull/3#issuecomment-2329339415) in [gfunkmonk/Ventoy](https://github.com/gfunkmonk/Ventoy) +6. 🗣 Commented on [#1026](https://github.com/scilus/scilpy/pull/1026#issuecomment-2329305194) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#40](https://github.com/cirKITers/qml-essentials/pull/40#issuecomment-2328236341) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +8. 🗣 Commented on [#10](https://github.com/Open-CAS/test-framework/pull/10#issuecomment-2328022227) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) +9. 🗣 Commented on [#506](https://github.com/Spoken-tutorial/spoken-website/pull/506#issuecomment-2328006696) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +10. 🗣 Commented on [#1127](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1127#issuecomment-2327578344) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From 364cb79143920e9ad9739e13caf844c6344176d3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 00:46:24 +0000 Subject: [PATCH 2027/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1e58f8af..a2e79785 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/2lambda123/nasa-astrobee/pull/1#issuecomment-2329930976) in [2lambda123/nasa-astrobee](https://github.com/2lambda123/nasa-astrobee) -2. 🗣 Commented on [#4](https://github.com/2lambda123/nasa-gesdisc-tutorials/pull/4#issuecomment-2329866684) in [2lambda123/nasa-gesdisc-tutorials](https://github.com/2lambda123/nasa-gesdisc-tutorials) -3. 🗣 Commented on [#838](https://github.com/StingraySoftware/stingray/pull/838#issuecomment-2329450952) in [StingraySoftware/stingray](https://github.com/StingraySoftware/stingray) -4. 🗣 Commented on [#39](https://github.com/ucsusa/pypsa-illinois/pull/39#issuecomment-2329341227) in [ucsusa/pypsa-illinois](https://github.com/ucsusa/pypsa-illinois) -5. 🗣 Commented on [#3](https://github.com/gfunkmonk/Ventoy/pull/3#issuecomment-2329339415) in [gfunkmonk/Ventoy](https://github.com/gfunkmonk/Ventoy) -6. 🗣 Commented on [#1026](https://github.com/scilus/scilpy/pull/1026#issuecomment-2329305194) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#40](https://github.com/cirKITers/qml-essentials/pull/40#issuecomment-2328236341) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -8. 🗣 Commented on [#10](https://github.com/Open-CAS/test-framework/pull/10#issuecomment-2328022227) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) -9. 🗣 Commented on [#506](https://github.com/Spoken-tutorial/spoken-website/pull/506#issuecomment-2328006696) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -10. 🗣 Commented on [#1127](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1127#issuecomment-2327578344) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#1027](https://github.com/scilus/scilpy/pull/1027#issuecomment-2332202488) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#968](https://github.com/scilus/scilpy/pull/968#issuecomment-2332103162) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#41](https://github.com/ucsusa/pypsa-illinois/pull/41#issuecomment-2332004660) in [ucsusa/pypsa-illinois](https://github.com/ucsusa/pypsa-illinois) +4. 🗣 Commented on [#963](https://github.com/ToFuProject/tofu/pull/963#issuecomment-2331857205) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +5. 🗣 Commented on [#2](https://github.com/2lambda123/nasa-harmony-service-example/pull/2#issuecomment-2331760265) in [2lambda123/nasa-harmony-service-example](https://github.com/2lambda123/nasa-harmony-service-example) +6. 🗣 Commented on [#1](https://github.com/2lambda123/nasa-harmony-service-example/pull/1#issuecomment-2331759705) in [2lambda123/nasa-harmony-service-example](https://github.com/2lambda123/nasa-harmony-service-example) +7. 🗣 Commented on [#507](https://github.com/Spoken-tutorial/spoken-website/pull/507#issuecomment-2331027540) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +8. 🗣 Commented on [#12](https://github.com/oemof/oemof-visio/pull/12#issuecomment-2330994513) in [oemof/oemof-visio](https://github.com/oemof/oemof-visio) +9. 🗣 Commented on [#153](https://github.com/DeMarcoLab/autolamella/pull/153#issuecomment-2330755729) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +10. 🗣 Commented on [#335](https://github.com/DeMarcoLab/fibsem/pull/335#issuecomment-2330542472) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) From 3804e8530fceb8010a5010f1dd637ca0eca0c030 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 00:45:20 +0000 Subject: [PATCH 2028/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a2e79785..64ff9da1 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1027](https://github.com/scilus/scilpy/pull/1027#issuecomment-2332202488) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#968](https://github.com/scilus/scilpy/pull/968#issuecomment-2332103162) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#41](https://github.com/ucsusa/pypsa-illinois/pull/41#issuecomment-2332004660) in [ucsusa/pypsa-illinois](https://github.com/ucsusa/pypsa-illinois) -4. 🗣 Commented on [#963](https://github.com/ToFuProject/tofu/pull/963#issuecomment-2331857205) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -5. 🗣 Commented on [#2](https://github.com/2lambda123/nasa-harmony-service-example/pull/2#issuecomment-2331760265) in [2lambda123/nasa-harmony-service-example](https://github.com/2lambda123/nasa-harmony-service-example) -6. 🗣 Commented on [#1](https://github.com/2lambda123/nasa-harmony-service-example/pull/1#issuecomment-2331759705) in [2lambda123/nasa-harmony-service-example](https://github.com/2lambda123/nasa-harmony-service-example) -7. 🗣 Commented on [#507](https://github.com/Spoken-tutorial/spoken-website/pull/507#issuecomment-2331027540) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -8. 🗣 Commented on [#12](https://github.com/oemof/oemof-visio/pull/12#issuecomment-2330994513) in [oemof/oemof-visio](https://github.com/oemof/oemof-visio) -9. 🗣 Commented on [#153](https://github.com/DeMarcoLab/autolamella/pull/153#issuecomment-2330755729) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -10. 🗣 Commented on [#335](https://github.com/DeMarcoLab/fibsem/pull/335#issuecomment-2330542472) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +1. 🗣 Commented on [#1](https://github.com/robbibt/pyTMD/pull/1#issuecomment-2334394326) in [robbibt/pyTMD](https://github.com/robbibt/pyTMD) +2. 🗣 Commented on [#4691](https://github.com/MDAnalysis/mdanalysis/pull/4691#issuecomment-2334330771) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#645](https://github.com/tableau/TabPy/pull/645#issuecomment-2334219977) in [tableau/TabPy](https://github.com/tableau/TabPy) +4. 🗣 Commented on [#508](https://github.com/Spoken-tutorial/spoken-website/pull/508#issuecomment-2333759043) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +5. 🗣 Commented on [#165](https://github.com/MDAnalysis/distopia/pull/165#issuecomment-2333413028) in [MDAnalysis/distopia](https://github.com/MDAnalysis/distopia) +6. 🗣 Commented on [#965](https://github.com/ToFuProject/tofu/pull/965#issuecomment-2333049689) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#4511](https://github.com/pyload/pyload/pull/4511#issuecomment-2333026104) in [pyload/pyload](https://github.com/pyload/pyload) +8. 🗣 Commented on [#964](https://github.com/ToFuProject/tofu/pull/964#issuecomment-2332987841) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#4702](https://github.com/MDAnalysis/mdanalysis/pull/4702#issuecomment-2332636794) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#1](https://github.com/2lambda123/gchq-ConcourseTools/pull/1#issuecomment-2332598312) in [2lambda123/gchq-ConcourseTools](https://github.com/2lambda123/gchq-ConcourseTools) From 5e5d6061a03201865864009a1577be317dda5f84 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 8 Sep 2024 00:51:48 +0000 Subject: [PATCH 2029/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 64ff9da1..d7a211ac 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/robbibt/pyTMD/pull/1#issuecomment-2334394326) in [robbibt/pyTMD](https://github.com/robbibt/pyTMD) -2. 🗣 Commented on [#4691](https://github.com/MDAnalysis/mdanalysis/pull/4691#issuecomment-2334330771) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#645](https://github.com/tableau/TabPy/pull/645#issuecomment-2334219977) in [tableau/TabPy](https://github.com/tableau/TabPy) -4. 🗣 Commented on [#508](https://github.com/Spoken-tutorial/spoken-website/pull/508#issuecomment-2333759043) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -5. 🗣 Commented on [#165](https://github.com/MDAnalysis/distopia/pull/165#issuecomment-2333413028) in [MDAnalysis/distopia](https://github.com/MDAnalysis/distopia) -6. 🗣 Commented on [#965](https://github.com/ToFuProject/tofu/pull/965#issuecomment-2333049689) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#4511](https://github.com/pyload/pyload/pull/4511#issuecomment-2333026104) in [pyload/pyload](https://github.com/pyload/pyload) -8. 🗣 Commented on [#964](https://github.com/ToFuProject/tofu/pull/964#issuecomment-2332987841) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#4702](https://github.com/MDAnalysis/mdanalysis/pull/4702#issuecomment-2332636794) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#1](https://github.com/2lambda123/gchq-ConcourseTools/pull/1#issuecomment-2332598312) in [2lambda123/gchq-ConcourseTools](https://github.com/2lambda123/gchq-ConcourseTools) +1. 🗣 Commented on [#1869](https://github.com/astropy/photutils/pull/1869#issuecomment-2336495788) in [astropy/photutils](https://github.com/astropy/photutils) +2. 🗣 Commented on [#92](https://github.com/CartoonFan/mgba/pull/92#issuecomment-2335200150) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) +3. 🗣 Commented on [#11](https://github.com/njzjz/deepmd-mace/pull/11#issuecomment-2335002194) in [njzjz/deepmd-mace](https://github.com/njzjz/deepmd-mace) +4. 🗣 Commented on [#1](https://github.com/robbibt/pyTMD/pull/1#issuecomment-2334394326) in [robbibt/pyTMD](https://github.com/robbibt/pyTMD) +5. 🗣 Commented on [#4691](https://github.com/MDAnalysis/mdanalysis/pull/4691#issuecomment-2334330771) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#645](https://github.com/tableau/TabPy/pull/645#issuecomment-2334219977) in [tableau/TabPy](https://github.com/tableau/TabPy) +7. 🗣 Commented on [#508](https://github.com/Spoken-tutorial/spoken-website/pull/508#issuecomment-2333759043) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +8. 🗣 Commented on [#165](https://github.com/MDAnalysis/distopia/pull/165#issuecomment-2333413028) in [MDAnalysis/distopia](https://github.com/MDAnalysis/distopia) +9. 🗣 Commented on [#965](https://github.com/ToFuProject/tofu/pull/965#issuecomment-2333049689) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +10. 🗣 Commented on [#4511](https://github.com/pyload/pyload/pull/4511#issuecomment-2333026104) in [pyload/pyload](https://github.com/pyload/pyload) From a4e12d2e05f7874a716a84e361a795135cd83d98 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 00:49:42 +0000 Subject: [PATCH 2030/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d7a211ac..29b30fea 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1869](https://github.com/astropy/photutils/pull/1869#issuecomment-2336495788) in [astropy/photutils](https://github.com/astropy/photutils) -2. 🗣 Commented on [#92](https://github.com/CartoonFan/mgba/pull/92#issuecomment-2335200150) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) -3. 🗣 Commented on [#11](https://github.com/njzjz/deepmd-mace/pull/11#issuecomment-2335002194) in [njzjz/deepmd-mace](https://github.com/njzjz/deepmd-mace) -4. 🗣 Commented on [#1](https://github.com/robbibt/pyTMD/pull/1#issuecomment-2334394326) in [robbibt/pyTMD](https://github.com/robbibt/pyTMD) -5. 🗣 Commented on [#4691](https://github.com/MDAnalysis/mdanalysis/pull/4691#issuecomment-2334330771) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#645](https://github.com/tableau/TabPy/pull/645#issuecomment-2334219977) in [tableau/TabPy](https://github.com/tableau/TabPy) -7. 🗣 Commented on [#508](https://github.com/Spoken-tutorial/spoken-website/pull/508#issuecomment-2333759043) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -8. 🗣 Commented on [#165](https://github.com/MDAnalysis/distopia/pull/165#issuecomment-2333413028) in [MDAnalysis/distopia](https://github.com/MDAnalysis/distopia) -9. 🗣 Commented on [#965](https://github.com/ToFuProject/tofu/pull/965#issuecomment-2333049689) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -10. 🗣 Commented on [#4511](https://github.com/pyload/pyload/pull/4511#issuecomment-2333026104) in [pyload/pyload](https://github.com/pyload/pyload) +1. 🗣 Commented on [#2976](https://github.com/metabrainz/listenbrainz-server/pull/2976#issuecomment-2336762444) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#219](https://github.com/Moonlark-Dev/Moonlark/pull/219#issuecomment-2336554270) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +3. 🗣 Commented on [#10](https://github.com/mltobi/kodi-pip-addon/pull/10#issuecomment-2336520108) in [mltobi/kodi-pip-addon](https://github.com/mltobi/kodi-pip-addon) +4. 🗣 Commented on [#1869](https://github.com/astropy/photutils/pull/1869#issuecomment-2336495788) in [astropy/photutils](https://github.com/astropy/photutils) +5. 🗣 Commented on [#92](https://github.com/CartoonFan/mgba/pull/92#issuecomment-2335200150) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) +6. 🗣 Commented on [#11](https://github.com/njzjz/deepmd-mace/pull/11#issuecomment-2335002194) in [njzjz/deepmd-mace](https://github.com/njzjz/deepmd-mace) +7. 🗣 Commented on [#1](https://github.com/robbibt/pyTMD/pull/1#issuecomment-2334394326) in [robbibt/pyTMD](https://github.com/robbibt/pyTMD) +8. 🗣 Commented on [#4691](https://github.com/MDAnalysis/mdanalysis/pull/4691#issuecomment-2334330771) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#645](https://github.com/tableau/TabPy/pull/645#issuecomment-2334219977) in [tableau/TabPy](https://github.com/tableau/TabPy) +10. 🗣 Commented on [#508](https://github.com/Spoken-tutorial/spoken-website/pull/508#issuecomment-2333759043) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) From 479b8c40d106545c017ae6c7367aaa0d83817e28 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 00:47:25 +0000 Subject: [PATCH 2031/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 29b30fea..8fdeaac7 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2976](https://github.com/metabrainz/listenbrainz-server/pull/2976#issuecomment-2336762444) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#219](https://github.com/Moonlark-Dev/Moonlark/pull/219#issuecomment-2336554270) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -3. 🗣 Commented on [#10](https://github.com/mltobi/kodi-pip-addon/pull/10#issuecomment-2336520108) in [mltobi/kodi-pip-addon](https://github.com/mltobi/kodi-pip-addon) -4. 🗣 Commented on [#1869](https://github.com/astropy/photutils/pull/1869#issuecomment-2336495788) in [astropy/photutils](https://github.com/astropy/photutils) -5. 🗣 Commented on [#92](https://github.com/CartoonFan/mgba/pull/92#issuecomment-2335200150) in [CartoonFan/mgba](https://github.com/CartoonFan/mgba) -6. 🗣 Commented on [#11](https://github.com/njzjz/deepmd-mace/pull/11#issuecomment-2335002194) in [njzjz/deepmd-mace](https://github.com/njzjz/deepmd-mace) -7. 🗣 Commented on [#1](https://github.com/robbibt/pyTMD/pull/1#issuecomment-2334394326) in [robbibt/pyTMD](https://github.com/robbibt/pyTMD) -8. 🗣 Commented on [#4691](https://github.com/MDAnalysis/mdanalysis/pull/4691#issuecomment-2334330771) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#645](https://github.com/tableau/TabPy/pull/645#issuecomment-2334219977) in [tableau/TabPy](https://github.com/tableau/TabPy) -10. 🗣 Commented on [#508](https://github.com/Spoken-tutorial/spoken-website/pull/508#issuecomment-2333759043) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +1. 🗣 Commented on [#47](https://github.com/NASA-Planetary-Science/AmesCAP/pull/47#issuecomment-2339080236) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +2. 🗣 Commented on [#775](https://github.com/EducationalTestingService/skll/pull/775#issuecomment-2338527978) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) +3. 🗣 Commented on [#3323](https://github.com/dipy/dipy/pull/3323#issuecomment-2338515951) in [dipy/dipy](https://github.com/dipy/dipy) +4. 🗣 Commented on [#13](https://github.com/eastgenomics/GitHub_Actions/pull/13#issuecomment-2338087733) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) +5. 🗣 Commented on [#2977](https://github.com/metabrainz/listenbrainz-server/pull/2977#issuecomment-2338080644) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#813](https://github.com/Open-CAS/ocf/pull/813#issuecomment-2338048673) in [Open-CAS/ocf](https://github.com/Open-CAS/ocf) +7. 🗣 Commented on [#1](https://github.com/eastgenomics/RD_requests/pull/1#issuecomment-2337684887) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) +8. 🗣 Commented on [#2976](https://github.com/metabrainz/listenbrainz-server/pull/2976#issuecomment-2336762444) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#219](https://github.com/Moonlark-Dev/Moonlark/pull/219#issuecomment-2336554270) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +10. 🗣 Commented on [#10](https://github.com/mltobi/kodi-pip-addon/pull/10#issuecomment-2336520108) in [mltobi/kodi-pip-addon](https://github.com/mltobi/kodi-pip-addon) From 4e14fd0ece12b6da2f2eda5ea76d9dd1100c8c74 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Sep 2024 00:46:34 +0000 Subject: [PATCH 2032/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8fdeaac7..19327552 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#47](https://github.com/NASA-Planetary-Science/AmesCAP/pull/47#issuecomment-2339080236) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -2. 🗣 Commented on [#775](https://github.com/EducationalTestingService/skll/pull/775#issuecomment-2338527978) in [EducationalTestingService/skll](https://github.com/EducationalTestingService/skll) -3. 🗣 Commented on [#3323](https://github.com/dipy/dipy/pull/3323#issuecomment-2338515951) in [dipy/dipy](https://github.com/dipy/dipy) -4. 🗣 Commented on [#13](https://github.com/eastgenomics/GitHub_Actions/pull/13#issuecomment-2338087733) in [eastgenomics/GitHub_Actions](https://github.com/eastgenomics/GitHub_Actions) -5. 🗣 Commented on [#2977](https://github.com/metabrainz/listenbrainz-server/pull/2977#issuecomment-2338080644) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#813](https://github.com/Open-CAS/ocf/pull/813#issuecomment-2338048673) in [Open-CAS/ocf](https://github.com/Open-CAS/ocf) -7. 🗣 Commented on [#1](https://github.com/eastgenomics/RD_requests/pull/1#issuecomment-2337684887) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) -8. 🗣 Commented on [#2976](https://github.com/metabrainz/listenbrainz-server/pull/2976#issuecomment-2336762444) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#219](https://github.com/Moonlark-Dev/Moonlark/pull/219#issuecomment-2336554270) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -10. 🗣 Commented on [#10](https://github.com/mltobi/kodi-pip-addon/pull/10#issuecomment-2336520108) in [mltobi/kodi-pip-addon](https://github.com/mltobi/kodi-pip-addon) +1. 🗣 Commented on [#1334](https://github.com/aimclub/FEDOT/pull/1334#issuecomment-2341974093) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#65](https://github.com/OpenFreeEnergy/konnektor/pull/65#issuecomment-2341959974) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) +3. 🗣 Commented on [#4404](https://github.com/uwcirg/truenth-portal/pull/4404#issuecomment-2341874096) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +4. 🗣 Commented on [#4](https://github.com/Onset-lab/onsetpy/pull/4#issuecomment-2341829607) in [Onset-lab/onsetpy](https://github.com/Onset-lab/onsetpy) +5. 🗣 Commented on [#42](https://github.com/ucsusa/pypsa-illinois/pull/42#issuecomment-2341816419) in [ucsusa/pypsa-illinois](https://github.com/ucsusa/pypsa-illinois) +6. 🗣 Commented on [#169](https://github.com/arfc/transition-scenarios/pull/169#issuecomment-2341776611) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +7. 🗣 Commented on [#1742](https://github.com/OGGM/oggm/pull/1742#issuecomment-2341591945) in [OGGM/oggm](https://github.com/OGGM/oggm) +8. 🗣 Commented on [#618](https://github.com/ExoCTK/exoctk/pull/618#issuecomment-2341586425) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +9. 🗣 Commented on [#1021](https://github.com/avaframe/AvaFrame/pull/1021#issuecomment-2341129316) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#18](https://github.com/ligne/ook/pull/18#issuecomment-2340971499) in [ligne/ook](https://github.com/ligne/ook) From 97187ba6d7d67345f529e716b7059018fa07fc2c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Sep 2024 00:47:00 +0000 Subject: [PATCH 2033/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 19327552..92e33c20 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1334](https://github.com/aimclub/FEDOT/pull/1334#issuecomment-2341974093) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#65](https://github.com/OpenFreeEnergy/konnektor/pull/65#issuecomment-2341959974) in [OpenFreeEnergy/konnektor](https://github.com/OpenFreeEnergy/konnektor) -3. 🗣 Commented on [#4404](https://github.com/uwcirg/truenth-portal/pull/4404#issuecomment-2341874096) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -4. 🗣 Commented on [#4](https://github.com/Onset-lab/onsetpy/pull/4#issuecomment-2341829607) in [Onset-lab/onsetpy](https://github.com/Onset-lab/onsetpy) -5. 🗣 Commented on [#42](https://github.com/ucsusa/pypsa-illinois/pull/42#issuecomment-2341816419) in [ucsusa/pypsa-illinois](https://github.com/ucsusa/pypsa-illinois) -6. 🗣 Commented on [#169](https://github.com/arfc/transition-scenarios/pull/169#issuecomment-2341776611) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -7. 🗣 Commented on [#1742](https://github.com/OGGM/oggm/pull/1742#issuecomment-2341591945) in [OGGM/oggm](https://github.com/OGGM/oggm) -8. 🗣 Commented on [#618](https://github.com/ExoCTK/exoctk/pull/618#issuecomment-2341586425) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -9. 🗣 Commented on [#1021](https://github.com/avaframe/AvaFrame/pull/1021#issuecomment-2341129316) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#18](https://github.com/ligne/ook/pull/18#issuecomment-2340971499) in [ligne/ook](https://github.com/ligne/ook) +1. 🗣 Commented on [#911](https://github.com/spacetelescope/webbpsf/pull/911#issuecomment-2344684445) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#1](https://github.com/llgneuroresearch/avnirpy/pull/1#issuecomment-2344585117) in [llgneuroresearch/avnirpy](https://github.com/llgneuroresearch/avnirpy) +3. 🗣 Commented on [#413](https://github.com/NASA-Planetary-Science/sbpy/pull/413#issuecomment-2344397736) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +4. 🗣 Commented on [#365](https://github.com/bashtage/randomgen/pull/365#issuecomment-2344140682) in [bashtage/randomgen](https://github.com/bashtage/randomgen) +5. 🗣 Commented on [#910](https://github.com/spacetelescope/webbpsf/pull/910#issuecomment-2343617815) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#2978](https://github.com/metabrainz/listenbrainz-server/pull/2978#issuecomment-2343513400) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#3](https://github.com/2lambda123/ColumbiaDVMM-hardnet/pull/3#issuecomment-2343300596) in [2lambda123/ColumbiaDVMM-hardnet](https://github.com/2lambda123/ColumbiaDVMM-hardnet) +8. 🗣 Commented on [#2](https://github.com/2lambda123/ColumbiaDVMM-One_Shot_Mouse_Brain_Segmentation/pull/2#issuecomment-2343300318) in [2lambda123/ColumbiaDVMM-One_Shot_Mouse_Brain_Segmentation](https://github.com/2lambda123/ColumbiaDVMM-One_Shot_Mouse_Brain_Segmentation) +9. 🗣 Commented on [#1](https://github.com/2lambda123/ColumbiaDVMM-Spread-out_Local_Feature_Descripto/pull/1#issuecomment-2343286742) in [2lambda123/ColumbiaDVMM-Spread-out_Local_Feature_Descripto](https://github.com/2lambda123/ColumbiaDVMM-Spread-out_Local_Feature_Descripto) +10. 🗣 Commented on [#1](https://github.com/2lambda123/ColumbiaDVMM-Spread-out_Local_Feature_Descriptor/pull/1#issuecomment-2343253334) in [2lambda123/ColumbiaDVMM-Spread-out_Local_Feature_Descriptor](https://github.com/2lambda123/ColumbiaDVMM-Spread-out_Local_Feature_Descriptor) From f61976b097e98b6c6c8b6dfaa19c6ef044f97617 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Sep 2024 00:47:00 +0000 Subject: [PATCH 2034/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 92e33c20..8d8762b6 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#911](https://github.com/spacetelescope/webbpsf/pull/911#issuecomment-2344684445) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#1](https://github.com/llgneuroresearch/avnirpy/pull/1#issuecomment-2344585117) in [llgneuroresearch/avnirpy](https://github.com/llgneuroresearch/avnirpy) -3. 🗣 Commented on [#413](https://github.com/NASA-Planetary-Science/sbpy/pull/413#issuecomment-2344397736) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -4. 🗣 Commented on [#365](https://github.com/bashtage/randomgen/pull/365#issuecomment-2344140682) in [bashtage/randomgen](https://github.com/bashtage/randomgen) -5. 🗣 Commented on [#910](https://github.com/spacetelescope/webbpsf/pull/910#issuecomment-2343617815) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#2978](https://github.com/metabrainz/listenbrainz-server/pull/2978#issuecomment-2343513400) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#3](https://github.com/2lambda123/ColumbiaDVMM-hardnet/pull/3#issuecomment-2343300596) in [2lambda123/ColumbiaDVMM-hardnet](https://github.com/2lambda123/ColumbiaDVMM-hardnet) -8. 🗣 Commented on [#2](https://github.com/2lambda123/ColumbiaDVMM-One_Shot_Mouse_Brain_Segmentation/pull/2#issuecomment-2343300318) in [2lambda123/ColumbiaDVMM-One_Shot_Mouse_Brain_Segmentation](https://github.com/2lambda123/ColumbiaDVMM-One_Shot_Mouse_Brain_Segmentation) -9. 🗣 Commented on [#1](https://github.com/2lambda123/ColumbiaDVMM-Spread-out_Local_Feature_Descripto/pull/1#issuecomment-2343286742) in [2lambda123/ColumbiaDVMM-Spread-out_Local_Feature_Descripto](https://github.com/2lambda123/ColumbiaDVMM-Spread-out_Local_Feature_Descripto) -10. 🗣 Commented on [#1](https://github.com/2lambda123/ColumbiaDVMM-Spread-out_Local_Feature_Descriptor/pull/1#issuecomment-2343253334) in [2lambda123/ColumbiaDVMM-Spread-out_Local_Feature_Descriptor](https://github.com/2lambda123/ColumbiaDVMM-Spread-out_Local_Feature_Descriptor) +1. 🗣 Commented on [#12](https://github.com/arfc/ghastly/pull/12#issuecomment-2346757897) in [arfc/ghastly](https://github.com/arfc/ghastly) +2. 🗣 Commented on [#2](https://github.com/eastgenomics/RD_requests/pull/2#issuecomment-2346583398) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) +3. 🗣 Commented on [#2](https://github.com/llgneuroresearch/avnirpy/pull/2#issuecomment-2346509985) in [llgneuroresearch/avnirpy](https://github.com/llgneuroresearch/avnirpy) +4. 🗣 Commented on [#134](https://github.com/eastgenomics/trendyQC/pull/134#issuecomment-2346272064) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +5. 🗣 Commented on [#1514](https://github.com/Open-CAS/open-cas-linux/pull/1514#issuecomment-2345963412) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +6. 🗣 Commented on [#131](https://github.com/eastgenomics/eggd_conductor/pull/131#issuecomment-2345933811) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +7. 🗣 Commented on [#824](https://github.com/Open-CAS/ocf/pull/824#issuecomment-2345913561) in [Open-CAS/ocf](https://github.com/Open-CAS/ocf) +8. 🗣 Commented on [#510](https://github.com/Spoken-tutorial/spoken-website/pull/510#issuecomment-2345412259) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +9. 🗣 Commented on [#911](https://github.com/spacetelescope/webbpsf/pull/911#issuecomment-2344684445) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +10. 🗣 Commented on [#1](https://github.com/llgneuroresearch/avnirpy/pull/1#issuecomment-2344585117) in [llgneuroresearch/avnirpy](https://github.com/llgneuroresearch/avnirpy) From bc120ea3c5875e169c43d1e0d0f57d208e484e42 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Sep 2024 00:46:15 +0000 Subject: [PATCH 2035/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8d8762b6..c168c477 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#12](https://github.com/arfc/ghastly/pull/12#issuecomment-2346757897) in [arfc/ghastly](https://github.com/arfc/ghastly) -2. 🗣 Commented on [#2](https://github.com/eastgenomics/RD_requests/pull/2#issuecomment-2346583398) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) -3. 🗣 Commented on [#2](https://github.com/llgneuroresearch/avnirpy/pull/2#issuecomment-2346509985) in [llgneuroresearch/avnirpy](https://github.com/llgneuroresearch/avnirpy) -4. 🗣 Commented on [#134](https://github.com/eastgenomics/trendyQC/pull/134#issuecomment-2346272064) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -5. 🗣 Commented on [#1514](https://github.com/Open-CAS/open-cas-linux/pull/1514#issuecomment-2345963412) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -6. 🗣 Commented on [#131](https://github.com/eastgenomics/eggd_conductor/pull/131#issuecomment-2345933811) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -7. 🗣 Commented on [#824](https://github.com/Open-CAS/ocf/pull/824#issuecomment-2345913561) in [Open-CAS/ocf](https://github.com/Open-CAS/ocf) -8. 🗣 Commented on [#510](https://github.com/Spoken-tutorial/spoken-website/pull/510#issuecomment-2345412259) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -9. 🗣 Commented on [#911](https://github.com/spacetelescope/webbpsf/pull/911#issuecomment-2344684445) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -10. 🗣 Commented on [#1](https://github.com/llgneuroresearch/avnirpy/pull/1#issuecomment-2344585117) in [llgneuroresearch/avnirpy](https://github.com/llgneuroresearch/avnirpy) +1. 🗣 Commented on [#1523](https://github.com/Open-CAS/open-cas-linux/pull/1523#issuecomment-2350007073) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +2. 🗣 Commented on [#915](https://github.com/spacetelescope/webbpsf/pull/915#issuecomment-2349818561) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#913](https://github.com/spacetelescope/webbpsf/pull/913#issuecomment-2349680910) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#3356](https://github.com/dipy/dipy/pull/3356#issuecomment-2349601734) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#5](https://github.com/Onset-lab/onsetpy/pull/5#issuecomment-2349036552) in [Onset-lab/onsetpy](https://github.com/Onset-lab/onsetpy) +6. 🗣 Commented on [#976](https://github.com/ToFuProject/tofu/pull/976#issuecomment-2348716414) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +7. 🗣 Commented on [#975](https://github.com/ToFuProject/tofu/pull/975#issuecomment-2348649208) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#512](https://github.com/Spoken-tutorial/spoken-website/pull/512#issuecomment-2348628348) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +9. 🗣 Commented on [#1518](https://github.com/Open-CAS/open-cas-linux/pull/1518#issuecomment-2348159432) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +10. 🗣 Commented on [#507](https://github.com/payu-org/payu/pull/507#issuecomment-2347987137) in [payu-org/payu](https://github.com/payu-org/payu) From c1d20f67383989a6b8f7c1c1c2cffb4d6e37156a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 00:51:12 +0000 Subject: [PATCH 2036/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c168c477..b875b1e8 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1523](https://github.com/Open-CAS/open-cas-linux/pull/1523#issuecomment-2350007073) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -2. 🗣 Commented on [#915](https://github.com/spacetelescope/webbpsf/pull/915#issuecomment-2349818561) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#913](https://github.com/spacetelescope/webbpsf/pull/913#issuecomment-2349680910) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#3356](https://github.com/dipy/dipy/pull/3356#issuecomment-2349601734) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#5](https://github.com/Onset-lab/onsetpy/pull/5#issuecomment-2349036552) in [Onset-lab/onsetpy](https://github.com/Onset-lab/onsetpy) -6. 🗣 Commented on [#976](https://github.com/ToFuProject/tofu/pull/976#issuecomment-2348716414) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -7. 🗣 Commented on [#975](https://github.com/ToFuProject/tofu/pull/975#issuecomment-2348649208) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#512](https://github.com/Spoken-tutorial/spoken-website/pull/512#issuecomment-2348628348) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -9. 🗣 Commented on [#1518](https://github.com/Open-CAS/open-cas-linux/pull/1518#issuecomment-2348159432) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -10. 🗣 Commented on [#507](https://github.com/payu-org/payu/pull/507#issuecomment-2347987137) in [payu-org/payu](https://github.com/payu-org/payu) +1. 🗣 Commented on [#1](https://github.com/2lambda123/hologram-io-hologram-python/pull/1#issuecomment-2351380151) in [2lambda123/hologram-io-hologram-python](https://github.com/2lambda123/hologram-io-hologram-python) +2. 🗣 Commented on [#5](https://github.com/2lambda123/iphysresearch-GWData-Bootcamp/pull/5#issuecomment-2351379062) in [2lambda123/iphysresearch-GWData-Bootcamp](https://github.com/2lambda123/iphysresearch-GWData-Bootcamp) +3. 🗣 Commented on [#2](https://github.com/2lambda123/iphysresearch-GWData-Bootcamp/pull/2#issuecomment-2351377419) in [2lambda123/iphysresearch-GWData-Bootcamp](https://github.com/2lambda123/iphysresearch-GWData-Bootcamp) +4. 🗣 Commented on [#1](https://github.com/2lambda123/iphysresearch-GWData-Bootcamp/pull/1#issuecomment-2351377184) in [2lambda123/iphysresearch-GWData-Bootcamp](https://github.com/2lambda123/iphysresearch-GWData-Bootcamp) +5. 🗣 Commented on [#1523](https://github.com/Open-CAS/open-cas-linux/pull/1523#issuecomment-2350007073) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +6. 🗣 Commented on [#915](https://github.com/spacetelescope/webbpsf/pull/915#issuecomment-2349818561) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +7. 🗣 Commented on [#913](https://github.com/spacetelescope/webbpsf/pull/913#issuecomment-2349680910) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#3356](https://github.com/dipy/dipy/pull/3356#issuecomment-2349601734) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#5](https://github.com/Onset-lab/onsetpy/pull/5#issuecomment-2349036552) in [Onset-lab/onsetpy](https://github.com/Onset-lab/onsetpy) +10. 🗣 Commented on [#976](https://github.com/ToFuProject/tofu/pull/976#issuecomment-2348716414) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From 76f195c9df3ce01f3e673c0cb4a4cc54e2ce639a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 00:39:03 +0000 Subject: [PATCH 2037/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b875b1e8..b89440c5 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/2lambda123/hologram-io-hologram-python/pull/1#issuecomment-2351380151) in [2lambda123/hologram-io-hologram-python](https://github.com/2lambda123/hologram-io-hologram-python) -2. 🗣 Commented on [#5](https://github.com/2lambda123/iphysresearch-GWData-Bootcamp/pull/5#issuecomment-2351379062) in [2lambda123/iphysresearch-GWData-Bootcamp](https://github.com/2lambda123/iphysresearch-GWData-Bootcamp) -3. 🗣 Commented on [#2](https://github.com/2lambda123/iphysresearch-GWData-Bootcamp/pull/2#issuecomment-2351377419) in [2lambda123/iphysresearch-GWData-Bootcamp](https://github.com/2lambda123/iphysresearch-GWData-Bootcamp) -4. 🗣 Commented on [#1](https://github.com/2lambda123/iphysresearch-GWData-Bootcamp/pull/1#issuecomment-2351377184) in [2lambda123/iphysresearch-GWData-Bootcamp](https://github.com/2lambda123/iphysresearch-GWData-Bootcamp) -5. 🗣 Commented on [#1523](https://github.com/Open-CAS/open-cas-linux/pull/1523#issuecomment-2350007073) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -6. 🗣 Commented on [#915](https://github.com/spacetelescope/webbpsf/pull/915#issuecomment-2349818561) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -7. 🗣 Commented on [#913](https://github.com/spacetelescope/webbpsf/pull/913#issuecomment-2349680910) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#3356](https://github.com/dipy/dipy/pull/3356#issuecomment-2349601734) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#5](https://github.com/Onset-lab/onsetpy/pull/5#issuecomment-2349036552) in [Onset-lab/onsetpy](https://github.com/Onset-lab/onsetpy) -10. 🗣 Commented on [#976](https://github.com/ToFuProject/tofu/pull/976#issuecomment-2348716414) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#132](https://github.com/eastgenomics/eggd_conductor/pull/132#issuecomment-2353231707) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +2. 🗣 Commented on [#425](https://github.com/cggh/scikit-allel/pull/425#issuecomment-2353204471) in [cggh/scikit-allel](https://github.com/cggh/scikit-allel) +3. 🗣 Commented on [#9365](https://github.com/statsmodels/statsmodels/pull/9365#issuecomment-2353195007) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +4. 🗣 Commented on [#615](https://github.com/ExoCTK/exoctk/pull/615#issuecomment-2353183242) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +5. 🗣 Commented on [#1024](https://github.com/avaframe/AvaFrame/pull/1024#issuecomment-2352853003) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#2981](https://github.com/metabrainz/listenbrainz-server/pull/2981#issuecomment-2352482480) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#137](https://github.com/eastgenomics/trendyQC/pull/137#issuecomment-2352327810) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +8. 🗣 Commented on [#227](https://github.com/Moonlark-Dev/Moonlark/pull/227#issuecomment-2352159497) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +9. 🗣 Commented on [#931](https://github.com/OpenFreeEnergy/openfe/pull/931#issuecomment-2352121310) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +10. 🗣 Commented on [#1](https://github.com/2lambda123/hologram-io-hologram-python/pull/1#issuecomment-2351380151) in [2lambda123/hologram-io-hologram-python](https://github.com/2lambda123/hologram-io-hologram-python) From bccdefb1394e893c96df32a32975fa81d6d48db7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Sep 2024 00:47:05 +0000 Subject: [PATCH 2038/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b89440c5..9cdd9ea7 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#132](https://github.com/eastgenomics/eggd_conductor/pull/132#issuecomment-2353231707) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -2. 🗣 Commented on [#425](https://github.com/cggh/scikit-allel/pull/425#issuecomment-2353204471) in [cggh/scikit-allel](https://github.com/cggh/scikit-allel) -3. 🗣 Commented on [#9365](https://github.com/statsmodels/statsmodels/pull/9365#issuecomment-2353195007) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -4. 🗣 Commented on [#615](https://github.com/ExoCTK/exoctk/pull/615#issuecomment-2353183242) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -5. 🗣 Commented on [#1024](https://github.com/avaframe/AvaFrame/pull/1024#issuecomment-2352853003) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#2981](https://github.com/metabrainz/listenbrainz-server/pull/2981#issuecomment-2352482480) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#137](https://github.com/eastgenomics/trendyQC/pull/137#issuecomment-2352327810) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -8. 🗣 Commented on [#227](https://github.com/Moonlark-Dev/Moonlark/pull/227#issuecomment-2352159497) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -9. 🗣 Commented on [#931](https://github.com/OpenFreeEnergy/openfe/pull/931#issuecomment-2352121310) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -10. 🗣 Commented on [#1](https://github.com/2lambda123/hologram-io-hologram-python/pull/1#issuecomment-2351380151) in [2lambda123/hologram-io-hologram-python](https://github.com/2lambda123/hologram-io-hologram-python) +1. 🗣 Commented on [#34](https://github.com/Borda/kaggle_SandBox/pull/34#issuecomment-2356833616) in [Borda/kaggle_SandBox](https://github.com/Borda/kaggle_SandBox) +2. 🗣 Commented on [#1526](https://github.com/Open-CAS/open-cas-linux/pull/1526#issuecomment-2356770147) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +3. 🗣 Commented on [#1130](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1130#issuecomment-2356590123) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#3358](https://github.com/dipy/dipy/pull/3358#issuecomment-2356291565) in [dipy/dipy](https://github.com/dipy/dipy) +5. 🗣 Commented on [#816](https://github.com/Open-CAS/ocf/pull/816#issuecomment-2355904978) in [Open-CAS/ocf](https://github.com/Open-CAS/ocf) +6. 🗣 Commented on [#3](https://github.com/eastgenomics/RD_requests/pull/3#issuecomment-2355892976) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) +7. 🗣 Commented on [#13](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook/pull/13#issuecomment-2355785384) in [eastgenomics/eggd_generate_rd_wgs_workbook](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook) +8. 🗣 Commented on [#937](https://github.com/OpenFreeEnergy/openfe/pull/937#issuecomment-2354207543) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) +9. 🗣 Commented on [#132](https://github.com/eastgenomics/eggd_conductor/pull/132#issuecomment-2353231707) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +10. 🗣 Commented on [#425](https://github.com/cggh/scikit-allel/pull/425#issuecomment-2353204471) in [cggh/scikit-allel](https://github.com/cggh/scikit-allel) From 6da6498882d2f077214b4823825da01945d8c746 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Sep 2024 00:48:06 +0000 Subject: [PATCH 2039/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9cdd9ea7..40884bf1 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#34](https://github.com/Borda/kaggle_SandBox/pull/34#issuecomment-2356833616) in [Borda/kaggle_SandBox](https://github.com/Borda/kaggle_SandBox) -2. 🗣 Commented on [#1526](https://github.com/Open-CAS/open-cas-linux/pull/1526#issuecomment-2356770147) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -3. 🗣 Commented on [#1130](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1130#issuecomment-2356590123) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#3358](https://github.com/dipy/dipy/pull/3358#issuecomment-2356291565) in [dipy/dipy](https://github.com/dipy/dipy) -5. 🗣 Commented on [#816](https://github.com/Open-CAS/ocf/pull/816#issuecomment-2355904978) in [Open-CAS/ocf](https://github.com/Open-CAS/ocf) -6. 🗣 Commented on [#3](https://github.com/eastgenomics/RD_requests/pull/3#issuecomment-2355892976) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) -7. 🗣 Commented on [#13](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook/pull/13#issuecomment-2355785384) in [eastgenomics/eggd_generate_rd_wgs_workbook](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook) -8. 🗣 Commented on [#937](https://github.com/OpenFreeEnergy/openfe/pull/937#issuecomment-2354207543) in [OpenFreeEnergy/openfe](https://github.com/OpenFreeEnergy/openfe) -9. 🗣 Commented on [#132](https://github.com/eastgenomics/eggd_conductor/pull/132#issuecomment-2353231707) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -10. 🗣 Commented on [#425](https://github.com/cggh/scikit-allel/pull/425#issuecomment-2353204471) in [cggh/scikit-allel](https://github.com/cggh/scikit-allel) +1. 🗣 Commented on [#827](https://github.com/Open-CAS/ocf/pull/827#issuecomment-2359072391) in [Open-CAS/ocf](https://github.com/Open-CAS/ocf) +2. 🗣 Commented on [#5](https://github.com/eastgenomics/RD_requests/pull/5#issuecomment-2358712222) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) +3. 🗣 Commented on [#12](https://github.com/eastgenomics/Haemonc_requests/pull/12#issuecomment-2358638626) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) +4. 🗣 Commented on [#133](https://github.com/eastgenomics/eggd_conductor/pull/133#issuecomment-2358533958) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +5. 🗣 Commented on [#75](https://github.com/tuhinmallick/InsiderTrader/pull/75#issuecomment-2358357691) in [tuhinmallick/InsiderTrader](https://github.com/tuhinmallick/InsiderTrader) +6. 🗣 Commented on [#68](https://github.com/tuhinmallick/InsiderTrader/pull/68#issuecomment-2358357649) in [tuhinmallick/InsiderTrader](https://github.com/tuhinmallick/InsiderTrader) +7. 🗣 Commented on [#67](https://github.com/tuhinmallick/InsiderTrader/pull/67#issuecomment-2358356771) in [tuhinmallick/InsiderTrader](https://github.com/tuhinmallick/InsiderTrader) +8. 🗣 Commented on [#62](https://github.com/tuhinmallick/InsiderTrader/pull/62#issuecomment-2358354370) in [tuhinmallick/InsiderTrader](https://github.com/tuhinmallick/InsiderTrader) +9. 🗣 Commented on [#306](https://github.com/OpenFreeEnergy/alchemiscale/pull/306#issuecomment-2358337267) in [OpenFreeEnergy/alchemiscale](https://github.com/OpenFreeEnergy/alchemiscale) +10. 🗣 Commented on [#55](https://github.com/tuhinmallick/InsiderTrader/pull/55#issuecomment-2358312647) in [tuhinmallick/InsiderTrader](https://github.com/tuhinmallick/InsiderTrader) From c2fdf4d7eaceb65ba4ecc3474819834a43938dc0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Sep 2024 00:48:06 +0000 Subject: [PATCH 2040/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 40884bf1..69472b32 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#827](https://github.com/Open-CAS/ocf/pull/827#issuecomment-2359072391) in [Open-CAS/ocf](https://github.com/Open-CAS/ocf) -2. 🗣 Commented on [#5](https://github.com/eastgenomics/RD_requests/pull/5#issuecomment-2358712222) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) -3. 🗣 Commented on [#12](https://github.com/eastgenomics/Haemonc_requests/pull/12#issuecomment-2358638626) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) -4. 🗣 Commented on [#133](https://github.com/eastgenomics/eggd_conductor/pull/133#issuecomment-2358533958) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -5. 🗣 Commented on [#75](https://github.com/tuhinmallick/InsiderTrader/pull/75#issuecomment-2358357691) in [tuhinmallick/InsiderTrader](https://github.com/tuhinmallick/InsiderTrader) -6. 🗣 Commented on [#68](https://github.com/tuhinmallick/InsiderTrader/pull/68#issuecomment-2358357649) in [tuhinmallick/InsiderTrader](https://github.com/tuhinmallick/InsiderTrader) -7. 🗣 Commented on [#67](https://github.com/tuhinmallick/InsiderTrader/pull/67#issuecomment-2358356771) in [tuhinmallick/InsiderTrader](https://github.com/tuhinmallick/InsiderTrader) -8. 🗣 Commented on [#62](https://github.com/tuhinmallick/InsiderTrader/pull/62#issuecomment-2358354370) in [tuhinmallick/InsiderTrader](https://github.com/tuhinmallick/InsiderTrader) -9. 🗣 Commented on [#306](https://github.com/OpenFreeEnergy/alchemiscale/pull/306#issuecomment-2358337267) in [OpenFreeEnergy/alchemiscale](https://github.com/OpenFreeEnergy/alchemiscale) -10. 🗣 Commented on [#55](https://github.com/tuhinmallick/InsiderTrader/pull/55#issuecomment-2358312647) in [tuhinmallick/InsiderTrader](https://github.com/tuhinmallick/InsiderTrader) +1. 🗣 Commented on [#280](https://github.com/OpenFreeEnergy/alchemiscale/pull/280#issuecomment-2362281936) in [OpenFreeEnergy/alchemiscale](https://github.com/OpenFreeEnergy/alchemiscale) +2. 🗣 Commented on [#16](https://github.com/ucsusa/2024-kansas-city-analysis/pull/16#issuecomment-2362016618) in [ucsusa/2024-kansas-city-analysis](https://github.com/ucsusa/2024-kansas-city-analysis) +3. 🗣 Commented on [#147](https://github.com/Richard-Sti/csiborgtools/pull/147#issuecomment-2360867016) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +4. 🗣 Commented on [#4075](https://github.com/privacyidea/privacyidea/pull/4075#issuecomment-2360747570) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#1](https://github.com/eastgenomics/clinvar_submissions/pull/1#issuecomment-2360699867) in [eastgenomics/clinvar_submissions](https://github.com/eastgenomics/clinvar_submissions) +6. 🗣 Commented on [#150](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/150#issuecomment-2360362833) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) +7. 🗣 Commented on [#827](https://github.com/Open-CAS/ocf/pull/827#issuecomment-2359072391) in [Open-CAS/ocf](https://github.com/Open-CAS/ocf) +8. 🗣 Commented on [#5](https://github.com/eastgenomics/RD_requests/pull/5#issuecomment-2358712222) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) +9. 🗣 Commented on [#12](https://github.com/eastgenomics/Haemonc_requests/pull/12#issuecomment-2358638626) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) +10. 🗣 Commented on [#133](https://github.com/eastgenomics/eggd_conductor/pull/133#issuecomment-2358533958) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) From 78fa4fba5cd25394ff2bf90677b5cfe72c51e625 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Sep 2024 00:47:03 +0000 Subject: [PATCH 2041/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 69472b32..65963b1d 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#280](https://github.com/OpenFreeEnergy/alchemiscale/pull/280#issuecomment-2362281936) in [OpenFreeEnergy/alchemiscale](https://github.com/OpenFreeEnergy/alchemiscale) -2. 🗣 Commented on [#16](https://github.com/ucsusa/2024-kansas-city-analysis/pull/16#issuecomment-2362016618) in [ucsusa/2024-kansas-city-analysis](https://github.com/ucsusa/2024-kansas-city-analysis) -3. 🗣 Commented on [#147](https://github.com/Richard-Sti/csiborgtools/pull/147#issuecomment-2360867016) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -4. 🗣 Commented on [#4075](https://github.com/privacyidea/privacyidea/pull/4075#issuecomment-2360747570) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#1](https://github.com/eastgenomics/clinvar_submissions/pull/1#issuecomment-2360699867) in [eastgenomics/clinvar_submissions](https://github.com/eastgenomics/clinvar_submissions) -6. 🗣 Commented on [#150](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024/pull/150#issuecomment-2360362833) in [OpenFreeEnergy/IndustryBenchmarks2024](https://github.com/OpenFreeEnergy/IndustryBenchmarks2024) -7. 🗣 Commented on [#827](https://github.com/Open-CAS/ocf/pull/827#issuecomment-2359072391) in [Open-CAS/ocf](https://github.com/Open-CAS/ocf) -8. 🗣 Commented on [#5](https://github.com/eastgenomics/RD_requests/pull/5#issuecomment-2358712222) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) -9. 🗣 Commented on [#12](https://github.com/eastgenomics/Haemonc_requests/pull/12#issuecomment-2358638626) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) -10. 🗣 Commented on [#133](https://github.com/eastgenomics/eggd_conductor/pull/133#issuecomment-2358533958) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +1. 🗣 Commented on [#4712](https://github.com/MDAnalysis/mdanalysis/pull/4712#issuecomment-2364670889) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#1132](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1132#issuecomment-2364355720) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#1131](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1131#issuecomment-2364197405) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#19](https://github.com/ucsusa/2024-kansas-city-analysis/pull/19#issuecomment-2363931386) in [ucsusa/2024-kansas-city-analysis](https://github.com/ucsusa/2024-kansas-city-analysis) +5. 🗣 Commented on [#2133](https://github.com/rpm-software-management/dnf/pull/2133#issuecomment-2363535330) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +6. 🗣 Commented on [#1402](https://github.com/deepfakes/faceswap/pull/1402#issuecomment-2363265021) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) +7. 🗣 Commented on [#9](https://github.com/eastgenomics/eggd_vcf_qc/pull/9#issuecomment-2363203549) in [eastgenomics/eggd_vcf_qc](https://github.com/eastgenomics/eggd_vcf_qc) +8. 🗣 Commented on [#280](https://github.com/OpenFreeEnergy/alchemiscale/pull/280#issuecomment-2362281936) in [OpenFreeEnergy/alchemiscale](https://github.com/OpenFreeEnergy/alchemiscale) +9. 🗣 Commented on [#16](https://github.com/ucsusa/2024-kansas-city-analysis/pull/16#issuecomment-2362016618) in [ucsusa/2024-kansas-city-analysis](https://github.com/ucsusa/2024-kansas-city-analysis) +10. 🗣 Commented on [#147](https://github.com/Richard-Sti/csiborgtools/pull/147#issuecomment-2360867016) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) From de23b8f08846c88e80dae0032099cb3271cd053f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 22 Sep 2024 00:53:39 +0000 Subject: [PATCH 2042/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 65963b1d..dd5b3d53 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4712](https://github.com/MDAnalysis/mdanalysis/pull/4712#issuecomment-2364670889) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#1132](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1132#issuecomment-2364355720) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#1131](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1131#issuecomment-2364197405) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#19](https://github.com/ucsusa/2024-kansas-city-analysis/pull/19#issuecomment-2363931386) in [ucsusa/2024-kansas-city-analysis](https://github.com/ucsusa/2024-kansas-city-analysis) -5. 🗣 Commented on [#2133](https://github.com/rpm-software-management/dnf/pull/2133#issuecomment-2363535330) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -6. 🗣 Commented on [#1402](https://github.com/deepfakes/faceswap/pull/1402#issuecomment-2363265021) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) -7. 🗣 Commented on [#9](https://github.com/eastgenomics/eggd_vcf_qc/pull/9#issuecomment-2363203549) in [eastgenomics/eggd_vcf_qc](https://github.com/eastgenomics/eggd_vcf_qc) -8. 🗣 Commented on [#280](https://github.com/OpenFreeEnergy/alchemiscale/pull/280#issuecomment-2362281936) in [OpenFreeEnergy/alchemiscale](https://github.com/OpenFreeEnergy/alchemiscale) -9. 🗣 Commented on [#16](https://github.com/ucsusa/2024-kansas-city-analysis/pull/16#issuecomment-2362016618) in [ucsusa/2024-kansas-city-analysis](https://github.com/ucsusa/2024-kansas-city-analysis) -10. 🗣 Commented on [#147](https://github.com/Richard-Sti/csiborgtools/pull/147#issuecomment-2360867016) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +1. 🗣 Commented on [#2](https://github.com/2lambda123/meracan-netcdf-swan/pull/2#issuecomment-2365223118) in [2lambda123/meracan-netcdf-swan](https://github.com/2lambda123/meracan-netcdf-swan) +2. 🗣 Commented on [#36](https://github.com/cirKITers/qml-essentials/pull/36#issuecomment-2365046265) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +3. 🗣 Commented on [#4712](https://github.com/MDAnalysis/mdanalysis/pull/4712#issuecomment-2364670889) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#1132](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1132#issuecomment-2364355720) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1131](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1131#issuecomment-2364197405) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#19](https://github.com/ucsusa/2024-kansas-city-analysis/pull/19#issuecomment-2363931386) in [ucsusa/2024-kansas-city-analysis](https://github.com/ucsusa/2024-kansas-city-analysis) +7. 🗣 Commented on [#2133](https://github.com/rpm-software-management/dnf/pull/2133#issuecomment-2363535330) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +8. 🗣 Commented on [#1402](https://github.com/deepfakes/faceswap/pull/1402#issuecomment-2363265021) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) +9. 🗣 Commented on [#9](https://github.com/eastgenomics/eggd_vcf_qc/pull/9#issuecomment-2363203549) in [eastgenomics/eggd_vcf_qc](https://github.com/eastgenomics/eggd_vcf_qc) +10. 🗣 Commented on [#280](https://github.com/OpenFreeEnergy/alchemiscale/pull/280#issuecomment-2362281936) in [OpenFreeEnergy/alchemiscale](https://github.com/OpenFreeEnergy/alchemiscale) From a02e27a8b64b148c2379cac1c62ea00e9098beb0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2024 00:50:40 +0000 Subject: [PATCH 2043/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index dd5b3d53..3c9efd29 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/2lambda123/meracan-netcdf-swan/pull/2#issuecomment-2365223118) in [2lambda123/meracan-netcdf-swan](https://github.com/2lambda123/meracan-netcdf-swan) -2. 🗣 Commented on [#36](https://github.com/cirKITers/qml-essentials/pull/36#issuecomment-2365046265) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -3. 🗣 Commented on [#4712](https://github.com/MDAnalysis/mdanalysis/pull/4712#issuecomment-2364670889) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#1132](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1132#issuecomment-2364355720) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1131](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1131#issuecomment-2364197405) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#19](https://github.com/ucsusa/2024-kansas-city-analysis/pull/19#issuecomment-2363931386) in [ucsusa/2024-kansas-city-analysis](https://github.com/ucsusa/2024-kansas-city-analysis) -7. 🗣 Commented on [#2133](https://github.com/rpm-software-management/dnf/pull/2133#issuecomment-2363535330) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -8. 🗣 Commented on [#1402](https://github.com/deepfakes/faceswap/pull/1402#issuecomment-2363265021) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) -9. 🗣 Commented on [#9](https://github.com/eastgenomics/eggd_vcf_qc/pull/9#issuecomment-2363203549) in [eastgenomics/eggd_vcf_qc](https://github.com/eastgenomics/eggd_vcf_qc) -10. 🗣 Commented on [#280](https://github.com/OpenFreeEnergy/alchemiscale/pull/280#issuecomment-2362281936) in [OpenFreeEnergy/alchemiscale](https://github.com/OpenFreeEnergy/alchemiscale) +1. 🗣 Commented on [#690](https://github.com/quark-engine/quark-engine/pull/690#issuecomment-2366829954) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +2. 🗣 Commented on [#235](https://github.com/Moonlark-Dev/Moonlark/pull/235#issuecomment-2365582485) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +3. 🗣 Commented on [#1](https://github.com/2lambda123/udacity-AIND-Isolation/pull/1#issuecomment-2365478554) in [2lambda123/udacity-AIND-Isolation](https://github.com/2lambda123/udacity-AIND-Isolation) +4. 🗣 Commented on [#2](https://github.com/2lambda123/meracan-netcdf-swan/pull/2#issuecomment-2365223118) in [2lambda123/meracan-netcdf-swan](https://github.com/2lambda123/meracan-netcdf-swan) +5. 🗣 Commented on [#36](https://github.com/cirKITers/qml-essentials/pull/36#issuecomment-2365046265) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +6. 🗣 Commented on [#4712](https://github.com/MDAnalysis/mdanalysis/pull/4712#issuecomment-2364670889) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#1132](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1132#issuecomment-2364355720) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +8. 🗣 Commented on [#1131](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1131#issuecomment-2364197405) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#19](https://github.com/ucsusa/2024-kansas-city-analysis/pull/19#issuecomment-2363931386) in [ucsusa/2024-kansas-city-analysis](https://github.com/ucsusa/2024-kansas-city-analysis) +10. 🗣 Commented on [#2133](https://github.com/rpm-software-management/dnf/pull/2133#issuecomment-2363535330) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) From e4fc9fffd29b58e53d5519f1ef6338539ecf6750 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Sep 2024 00:50:24 +0000 Subject: [PATCH 2044/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3c9efd29..2a76198d 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#690](https://github.com/quark-engine/quark-engine/pull/690#issuecomment-2366829954) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -2. 🗣 Commented on [#235](https://github.com/Moonlark-Dev/Moonlark/pull/235#issuecomment-2365582485) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -3. 🗣 Commented on [#1](https://github.com/2lambda123/udacity-AIND-Isolation/pull/1#issuecomment-2365478554) in [2lambda123/udacity-AIND-Isolation](https://github.com/2lambda123/udacity-AIND-Isolation) -4. 🗣 Commented on [#2](https://github.com/2lambda123/meracan-netcdf-swan/pull/2#issuecomment-2365223118) in [2lambda123/meracan-netcdf-swan](https://github.com/2lambda123/meracan-netcdf-swan) -5. 🗣 Commented on [#36](https://github.com/cirKITers/qml-essentials/pull/36#issuecomment-2365046265) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -6. 🗣 Commented on [#4712](https://github.com/MDAnalysis/mdanalysis/pull/4712#issuecomment-2364670889) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#1132](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1132#issuecomment-2364355720) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -8. 🗣 Commented on [#1131](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1131#issuecomment-2364197405) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#19](https://github.com/ucsusa/2024-kansas-city-analysis/pull/19#issuecomment-2363931386) in [ucsusa/2024-kansas-city-analysis](https://github.com/ucsusa/2024-kansas-city-analysis) -10. 🗣 Commented on [#2133](https://github.com/rpm-software-management/dnf/pull/2133#issuecomment-2363535330) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +1. 🗣 Commented on [#90](https://github.com/OpenFreeEnergy/feflow/pull/90#issuecomment-2368075242) in [OpenFreeEnergy/feflow](https://github.com/OpenFreeEnergy/feflow) +2. 🗣 Commented on [#88](https://github.com/OpenFreeEnergy/feflow/pull/88#issuecomment-2368001377) in [OpenFreeEnergy/feflow](https://github.com/OpenFreeEnergy/feflow) +3. 🗣 Commented on [#45](https://github.com/cirKITers/qml-essentials/pull/45#issuecomment-2367888539) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +4. 🗣 Commented on [#374](https://github.com/bashtage/randomgen/pull/374#issuecomment-2367847103) in [bashtage/randomgen](https://github.com/bashtage/randomgen) +5. 🗣 Commented on [#4714](https://github.com/MDAnalysis/mdanalysis/pull/4714#issuecomment-2367126287) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#18](https://github.com/MDAnalysis/mda-openbabel-converter/pull/18#issuecomment-2367105479) in [MDAnalysis/mda-openbabel-converter](https://github.com/MDAnalysis/mda-openbabel-converter) +7. 🗣 Commented on [#690](https://github.com/quark-engine/quark-engine/pull/690#issuecomment-2366829954) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +8. 🗣 Commented on [#235](https://github.com/Moonlark-Dev/Moonlark/pull/235#issuecomment-2365582485) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +9. 🗣 Commented on [#1](https://github.com/2lambda123/udacity-AIND-Isolation/pull/1#issuecomment-2365478554) in [2lambda123/udacity-AIND-Isolation](https://github.com/2lambda123/udacity-AIND-Isolation) +10. 🗣 Commented on [#2](https://github.com/2lambda123/meracan-netcdf-swan/pull/2#issuecomment-2365223118) in [2lambda123/meracan-netcdf-swan](https://github.com/2lambda123/meracan-netcdf-swan) From 499ec4848609f4ebd65cc26cd807a16b908e3254 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 00:51:02 +0000 Subject: [PATCH 2045/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2a76198d..33183389 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#90](https://github.com/OpenFreeEnergy/feflow/pull/90#issuecomment-2368075242) in [OpenFreeEnergy/feflow](https://github.com/OpenFreeEnergy/feflow) -2. 🗣 Commented on [#88](https://github.com/OpenFreeEnergy/feflow/pull/88#issuecomment-2368001377) in [OpenFreeEnergy/feflow](https://github.com/OpenFreeEnergy/feflow) -3. 🗣 Commented on [#45](https://github.com/cirKITers/qml-essentials/pull/45#issuecomment-2367888539) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -4. 🗣 Commented on [#374](https://github.com/bashtage/randomgen/pull/374#issuecomment-2367847103) in [bashtage/randomgen](https://github.com/bashtage/randomgen) -5. 🗣 Commented on [#4714](https://github.com/MDAnalysis/mdanalysis/pull/4714#issuecomment-2367126287) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#18](https://github.com/MDAnalysis/mda-openbabel-converter/pull/18#issuecomment-2367105479) in [MDAnalysis/mda-openbabel-converter](https://github.com/MDAnalysis/mda-openbabel-converter) -7. 🗣 Commented on [#690](https://github.com/quark-engine/quark-engine/pull/690#issuecomment-2366829954) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -8. 🗣 Commented on [#235](https://github.com/Moonlark-Dev/Moonlark/pull/235#issuecomment-2365582485) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -9. 🗣 Commented on [#1](https://github.com/2lambda123/udacity-AIND-Isolation/pull/1#issuecomment-2365478554) in [2lambda123/udacity-AIND-Isolation](https://github.com/2lambda123/udacity-AIND-Isolation) -10. 🗣 Commented on [#2](https://github.com/2lambda123/meracan-netcdf-swan/pull/2#issuecomment-2365223118) in [2lambda123/meracan-netcdf-swan](https://github.com/2lambda123/meracan-netcdf-swan) +1. 🗣 Commented on [#48](https://github.com/NASA-Planetary-Science/AmesCAP/pull/48#issuecomment-2372015231) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +2. 🗣 Commented on [#170](https://github.com/arfc/transition-scenarios/pull/170#issuecomment-2371715159) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +3. 🗣 Commented on [#428](https://github.com/cggh/scikit-allel/pull/428#issuecomment-2371593155) in [cggh/scikit-allel](https://github.com/cggh/scikit-allel) +4. 🗣 Commented on [#43](https://github.com/OpenFreeEnergy/openfe-gromacs/pull/43#issuecomment-2371248303) in [OpenFreeEnergy/openfe-gromacs](https://github.com/OpenFreeEnergy/openfe-gromacs) +5. 🗣 Commented on [#22564](https://github.com/spyder-ide/spyder/pull/22564#issuecomment-2371217524) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#1415](https://github.com/rpm-software-management/mock/pull/1415#issuecomment-2371161758) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +7. 🗣 Commented on [#7](https://github.com/eastgenomics/RD_requests/pull/7#issuecomment-2371130929) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) +8. 🗣 Commented on [#42](https://github.com/OpenFreeEnergy/openfe-gromacs/pull/42#issuecomment-2371039582) in [OpenFreeEnergy/openfe-gromacs](https://github.com/OpenFreeEnergy/openfe-gromacs) +9. 🗣 Commented on [#665](https://github.com/einsteinpy/einsteinpy/pull/665#issuecomment-2369427623) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) +10. 🗣 Commented on [#90](https://github.com/OpenFreeEnergy/feflow/pull/90#issuecomment-2368075242) in [OpenFreeEnergy/feflow](https://github.com/OpenFreeEnergy/feflow) From 7f7835fbd5cb7a24cee7e4a10692405cf09d270e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Sep 2024 00:49:47 +0000 Subject: [PATCH 2046/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 33183389..f1e12209 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#48](https://github.com/NASA-Planetary-Science/AmesCAP/pull/48#issuecomment-2372015231) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -2. 🗣 Commented on [#170](https://github.com/arfc/transition-scenarios/pull/170#issuecomment-2371715159) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -3. 🗣 Commented on [#428](https://github.com/cggh/scikit-allel/pull/428#issuecomment-2371593155) in [cggh/scikit-allel](https://github.com/cggh/scikit-allel) -4. 🗣 Commented on [#43](https://github.com/OpenFreeEnergy/openfe-gromacs/pull/43#issuecomment-2371248303) in [OpenFreeEnergy/openfe-gromacs](https://github.com/OpenFreeEnergy/openfe-gromacs) -5. 🗣 Commented on [#22564](https://github.com/spyder-ide/spyder/pull/22564#issuecomment-2371217524) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#1415](https://github.com/rpm-software-management/mock/pull/1415#issuecomment-2371161758) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -7. 🗣 Commented on [#7](https://github.com/eastgenomics/RD_requests/pull/7#issuecomment-2371130929) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) -8. 🗣 Commented on [#42](https://github.com/OpenFreeEnergy/openfe-gromacs/pull/42#issuecomment-2371039582) in [OpenFreeEnergy/openfe-gromacs](https://github.com/OpenFreeEnergy/openfe-gromacs) -9. 🗣 Commented on [#665](https://github.com/einsteinpy/einsteinpy/pull/665#issuecomment-2369427623) in [einsteinpy/einsteinpy](https://github.com/einsteinpy/einsteinpy) -10. 🗣 Commented on [#90](https://github.com/OpenFreeEnergy/feflow/pull/90#issuecomment-2368075242) in [OpenFreeEnergy/feflow](https://github.com/OpenFreeEnergy/feflow) +1. 🗣 Commented on [#1135](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1135#issuecomment-2374267369) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +2. 🗣 Commented on [#1134](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1134#issuecomment-2374033164) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +3. 🗣 Commented on [#1030](https://github.com/scilus/scilpy/pull/1030#issuecomment-2374011461) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#1533](https://github.com/Open-CAS/open-cas-linux/pull/1533#issuecomment-2373984126) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +5. 🗣 Commented on [#90](https://github.com/PenguinCloud/WaddleBot-Core/pull/90#issuecomment-2373611642) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) +6. 🗣 Commented on [#1030](https://github.com/avaframe/AvaFrame/pull/1030#issuecomment-2373589704) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/openfe-gromacs/pull/47#issuecomment-2373568668) in [OpenFreeEnergy/openfe-gromacs](https://github.com/OpenFreeEnergy/openfe-gromacs) +8. 🗣 Commented on [#89](https://github.com/PenguinCloud/WaddleBot-Core/pull/89#issuecomment-2373561528) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) +9. 🗣 Commented on [#4718](https://github.com/MDAnalysis/mdanalysis/pull/4718#issuecomment-2373497861) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#10](https://github.com/PenguinCloud/WaddleDBM/pull/10#issuecomment-2373470102) in [PenguinCloud/WaddleDBM](https://github.com/PenguinCloud/WaddleDBM) From ec880e4f2a4fb29fb6c0361e10f49bdb092df7c7 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Thu, 26 Sep 2024 11:45:00 +0530 Subject: [PATCH 2047/2173] Create test.yml --- .github/workflows/test.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..e30a64ba --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,8 @@ +name: hello-world +on: push +jobs: + my-job: + runs-on: ubuntu-latest + steps: + - name: my-step + run: echo "Hello World!" From c0657717fad925affe09510604515348a413547c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2024 00:50:20 +0000 Subject: [PATCH 2048/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f1e12209..4b54add7 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1135](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1135#issuecomment-2374267369) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -2. 🗣 Commented on [#1134](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1134#issuecomment-2374033164) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -3. 🗣 Commented on [#1030](https://github.com/scilus/scilpy/pull/1030#issuecomment-2374011461) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#1533](https://github.com/Open-CAS/open-cas-linux/pull/1533#issuecomment-2373984126) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -5. 🗣 Commented on [#90](https://github.com/PenguinCloud/WaddleBot-Core/pull/90#issuecomment-2373611642) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) -6. 🗣 Commented on [#1030](https://github.com/avaframe/AvaFrame/pull/1030#issuecomment-2373589704) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#47](https://github.com/OpenFreeEnergy/openfe-gromacs/pull/47#issuecomment-2373568668) in [OpenFreeEnergy/openfe-gromacs](https://github.com/OpenFreeEnergy/openfe-gromacs) -8. 🗣 Commented on [#89](https://github.com/PenguinCloud/WaddleBot-Core/pull/89#issuecomment-2373561528) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) -9. 🗣 Commented on [#4718](https://github.com/MDAnalysis/mdanalysis/pull/4718#issuecomment-2373497861) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#10](https://github.com/PenguinCloud/WaddleDBM/pull/10#issuecomment-2373470102) in [PenguinCloud/WaddleDBM](https://github.com/PenguinCloud/WaddleDBM) +1. 🗣 Commented on [#1](https://github.com/eastgenomics/MultiQC/pull/1#issuecomment-2377187818) in [eastgenomics/MultiQC](https://github.com/eastgenomics/MultiQC) +2. 🗣 Commented on [#23](https://github.com/OpenFreeEnergy/openfe-gromacs/pull/23#issuecomment-2377070904) in [OpenFreeEnergy/openfe-gromacs](https://github.com/OpenFreeEnergy/openfe-gromacs) +3. 🗣 Commented on [#140](https://github.com/eastgenomics/trendyQC/pull/140#issuecomment-2376736118) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +4. 🗣 Commented on [#1634](https://github.com/openSUSE/osc/pull/1634#issuecomment-2376648213) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#1746](https://github.com/OGGM/oggm/pull/1746#issuecomment-2376108087) in [OGGM/oggm](https://github.com/OGGM/oggm) +6. 🗣 Commented on [#44](https://github.com/ucsusa/pypsa-illinois/pull/44#issuecomment-2375057466) in [ucsusa/pypsa-illinois](https://github.com/ucsusa/pypsa-illinois) +7. 🗣 Commented on [#244](https://github.com/scil-vital/dwi_ml/pull/244#issuecomment-2375050448) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +8. 🗣 Commented on [#1135](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1135#issuecomment-2374267369) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +9. 🗣 Commented on [#1134](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1134#issuecomment-2374033164) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +10. 🗣 Commented on [#1030](https://github.com/scilus/scilpy/pull/1030#issuecomment-2374011461) in [scilus/scilpy](https://github.com/scilus/scilpy) From 8e88621db4ab20af9b3b274a1ad80526f6a71114 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Sep 2024 00:49:41 +0000 Subject: [PATCH 2049/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4b54add7..6d752931 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/eastgenomics/MultiQC/pull/1#issuecomment-2377187818) in [eastgenomics/MultiQC](https://github.com/eastgenomics/MultiQC) -2. 🗣 Commented on [#23](https://github.com/OpenFreeEnergy/openfe-gromacs/pull/23#issuecomment-2377070904) in [OpenFreeEnergy/openfe-gromacs](https://github.com/OpenFreeEnergy/openfe-gromacs) -3. 🗣 Commented on [#140](https://github.com/eastgenomics/trendyQC/pull/140#issuecomment-2376736118) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -4. 🗣 Commented on [#1634](https://github.com/openSUSE/osc/pull/1634#issuecomment-2376648213) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#1746](https://github.com/OGGM/oggm/pull/1746#issuecomment-2376108087) in [OGGM/oggm](https://github.com/OGGM/oggm) -6. 🗣 Commented on [#44](https://github.com/ucsusa/pypsa-illinois/pull/44#issuecomment-2375057466) in [ucsusa/pypsa-illinois](https://github.com/ucsusa/pypsa-illinois) -7. 🗣 Commented on [#244](https://github.com/scil-vital/dwi_ml/pull/244#issuecomment-2375050448) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -8. 🗣 Commented on [#1135](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1135#issuecomment-2374267369) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -9. 🗣 Commented on [#1134](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1134#issuecomment-2374033164) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -10. 🗣 Commented on [#1030](https://github.com/scilus/scilpy/pull/1030#issuecomment-2374011461) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#918](https://github.com/spacetelescope/webbpsf/pull/918#issuecomment-2379941248) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#135](https://github.com/tilde-lab/yascheduler/pull/135#issuecomment-2379856837) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) +3. 🗣 Commented on [#245](https://github.com/scil-vital/dwi_ml/pull/245#issuecomment-2379681572) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +4. 🗣 Commented on [#3](https://github.com/eastgenomics/MultiQC/pull/3#issuecomment-2379363918) in [eastgenomics/MultiQC](https://github.com/eastgenomics/MultiQC) +5. 🗣 Commented on [#1472](https://github.com/rpm-software-management/mock/pull/1472#issuecomment-2379297231) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +6. 🗣 Commented on [#3106](https://github.com/astropy/astroquery/pull/3106#issuecomment-2379156059) in [astropy/astroquery](https://github.com/astropy/astroquery) +7. 🗣 Commented on [#658](https://github.com/aramis-lab/clinicadl/pull/658#issuecomment-2379033132) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +8. 🗣 Commented on [#2988](https://github.com/metabrainz/listenbrainz-server/pull/2988#issuecomment-2378872887) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#92](https://github.com/OpenFreeEnergy/feflow/pull/92#issuecomment-2377979950) in [OpenFreeEnergy/feflow](https://github.com/OpenFreeEnergy/feflow) +10. 🗣 Commented on [#1](https://github.com/eastgenomics/MultiQC/pull/1#issuecomment-2377187818) in [eastgenomics/MultiQC](https://github.com/eastgenomics/MultiQC) From 8c606b419f544d145fe37b73fe05614acbbb34f9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 29 Sep 2024 00:54:39 +0000 Subject: [PATCH 2050/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6d752931..6eb056a4 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#918](https://github.com/spacetelescope/webbpsf/pull/918#issuecomment-2379941248) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#135](https://github.com/tilde-lab/yascheduler/pull/135#issuecomment-2379856837) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) -3. 🗣 Commented on [#245](https://github.com/scil-vital/dwi_ml/pull/245#issuecomment-2379681572) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -4. 🗣 Commented on [#3](https://github.com/eastgenomics/MultiQC/pull/3#issuecomment-2379363918) in [eastgenomics/MultiQC](https://github.com/eastgenomics/MultiQC) -5. 🗣 Commented on [#1472](https://github.com/rpm-software-management/mock/pull/1472#issuecomment-2379297231) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -6. 🗣 Commented on [#3106](https://github.com/astropy/astroquery/pull/3106#issuecomment-2379156059) in [astropy/astroquery](https://github.com/astropy/astroquery) -7. 🗣 Commented on [#658](https://github.com/aramis-lab/clinicadl/pull/658#issuecomment-2379033132) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -8. 🗣 Commented on [#2988](https://github.com/metabrainz/listenbrainz-server/pull/2988#issuecomment-2378872887) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#92](https://github.com/OpenFreeEnergy/feflow/pull/92#issuecomment-2377979950) in [OpenFreeEnergy/feflow](https://github.com/OpenFreeEnergy/feflow) -10. 🗣 Commented on [#1](https://github.com/eastgenomics/MultiQC/pull/1#issuecomment-2377187818) in [eastgenomics/MultiQC](https://github.com/eastgenomics/MultiQC) +1. 🗣 Commented on [#720](https://github.com/HEXRD/hexrd/pull/720#issuecomment-2380715500) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#213](https://github.com/njzjz/deepmd-kit/pull/213#issuecomment-2380576101) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) +3. 🗣 Commented on [#4721](https://github.com/MDAnalysis/mdanalysis/pull/4721#issuecomment-2380264181) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#1139](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1139#issuecomment-2380175207) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#918](https://github.com/spacetelescope/webbpsf/pull/918#issuecomment-2379941248) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#135](https://github.com/tilde-lab/yascheduler/pull/135#issuecomment-2379856837) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) +7. 🗣 Commented on [#245](https://github.com/scil-vital/dwi_ml/pull/245#issuecomment-2379681572) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +8. 🗣 Commented on [#3](https://github.com/eastgenomics/MultiQC/pull/3#issuecomment-2379363918) in [eastgenomics/MultiQC](https://github.com/eastgenomics/MultiQC) +9. 🗣 Commented on [#1472](https://github.com/rpm-software-management/mock/pull/1472#issuecomment-2379297231) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +10. 🗣 Commented on [#3106](https://github.com/astropy/astroquery/pull/3106#issuecomment-2379156059) in [astropy/astroquery](https://github.com/astropy/astroquery) From 305523b97a6cc7370e6404f6b66ac15a3ff6b6db Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 00:55:24 +0000 Subject: [PATCH 2051/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6eb056a4..91929a32 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#720](https://github.com/HEXRD/hexrd/pull/720#issuecomment-2380715500) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#213](https://github.com/njzjz/deepmd-kit/pull/213#issuecomment-2380576101) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) -3. 🗣 Commented on [#4721](https://github.com/MDAnalysis/mdanalysis/pull/4721#issuecomment-2380264181) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#1139](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1139#issuecomment-2380175207) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#918](https://github.com/spacetelescope/webbpsf/pull/918#issuecomment-2379941248) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#135](https://github.com/tilde-lab/yascheduler/pull/135#issuecomment-2379856837) in [tilde-lab/yascheduler](https://github.com/tilde-lab/yascheduler) -7. 🗣 Commented on [#245](https://github.com/scil-vital/dwi_ml/pull/245#issuecomment-2379681572) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -8. 🗣 Commented on [#3](https://github.com/eastgenomics/MultiQC/pull/3#issuecomment-2379363918) in [eastgenomics/MultiQC](https://github.com/eastgenomics/MultiQC) -9. 🗣 Commented on [#1472](https://github.com/rpm-software-management/mock/pull/1472#issuecomment-2379297231) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -10. 🗣 Commented on [#3106](https://github.com/astropy/astroquery/pull/3106#issuecomment-2379156059) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#4097](https://github.com/privacyidea/privacyidea/pull/4097#issuecomment-2384087079) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#3368](https://github.com/dipy/dipy/pull/3368#issuecomment-2384061700) in [dipy/dipy](https://github.com/dipy/dipy) +3. 🗣 Commented on [#1032](https://github.com/scilus/scilpy/pull/1032#issuecomment-2383532427) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#43](https://github.com/cirKITers/qml-essentials/pull/43#issuecomment-2383493836) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +5. 🗣 Commented on [#227](https://github.com/UKRIN-MAPS/ukat/pull/227#issuecomment-2383089110) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) +6. 🗣 Commented on [#1480](https://github.com/rpm-software-management/mock/pull/1480#issuecomment-2382286620) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +7. 🗣 Commented on [#154](https://github.com/DeMarcoLab/autolamella/pull/154#issuecomment-2381975085) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +8. 🗣 Commented on [#336](https://github.com/DeMarcoLab/fibsem/pull/336#issuecomment-2381969142) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +9. 🗣 Commented on [#720](https://github.com/HEXRD/hexrd/pull/720#issuecomment-2380715500) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +10. 🗣 Commented on [#213](https://github.com/njzjz/deepmd-kit/pull/213#issuecomment-2380576101) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) From 1041307bc3925f8d495350ecdb0d750a4f0c94aa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 2 Oct 2024 00:50:14 +0000 Subject: [PATCH 2052/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 91929a32..1319ff9c 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4097](https://github.com/privacyidea/privacyidea/pull/4097#issuecomment-2384087079) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#3368](https://github.com/dipy/dipy/pull/3368#issuecomment-2384061700) in [dipy/dipy](https://github.com/dipy/dipy) -3. 🗣 Commented on [#1032](https://github.com/scilus/scilpy/pull/1032#issuecomment-2383532427) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#43](https://github.com/cirKITers/qml-essentials/pull/43#issuecomment-2383493836) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -5. 🗣 Commented on [#227](https://github.com/UKRIN-MAPS/ukat/pull/227#issuecomment-2383089110) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) -6. 🗣 Commented on [#1480](https://github.com/rpm-software-management/mock/pull/1480#issuecomment-2382286620) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -7. 🗣 Commented on [#154](https://github.com/DeMarcoLab/autolamella/pull/154#issuecomment-2381975085) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -8. 🗣 Commented on [#336](https://github.com/DeMarcoLab/fibsem/pull/336#issuecomment-2381969142) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -9. 🗣 Commented on [#720](https://github.com/HEXRD/hexrd/pull/720#issuecomment-2380715500) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -10. 🗣 Commented on [#213](https://github.com/njzjz/deepmd-kit/pull/213#issuecomment-2380576101) in [njzjz/deepmd-kit](https://github.com/njzjz/deepmd-kit) +1. 🗣 Commented on [#246](https://github.com/scil-vital/dwi_ml/pull/246#issuecomment-2386427318) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +2. 🗣 Commented on [#5](https://github.com/eastgenomics/MultiQC/pull/5#issuecomment-2386335692) in [eastgenomics/MultiQC](https://github.com/eastgenomics/MultiQC) +3. 🗣 Commented on [#4](https://github.com/eastgenomics/MultiQC/pull/4#issuecomment-2386287431) in [eastgenomics/MultiQC](https://github.com/eastgenomics/MultiQC) +4. 🗣 Commented on [#2](https://github.com/eastgenomics/s3_upload/pull/2#issuecomment-2386192433) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +5. 🗣 Commented on [#4098](https://github.com/privacyidea/privacyidea/pull/4098#issuecomment-2385965770) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#3111](https://github.com/astropy/astroquery/pull/3111#issuecomment-2385405981) in [astropy/astroquery](https://github.com/astropy/astroquery) +7. 🗣 Commented on [#134](https://github.com/eastgenomics/eggd_conductor/pull/134#issuecomment-2385328563) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +8. 🗣 Commented on [#22620](https://github.com/spyder-ide/spyder/pull/22620#issuecomment-2384858668) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#4408](https://github.com/uwcirg/truenth-portal/pull/4408#issuecomment-2384563188) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +10. 🗣 Commented on [#1734](https://github.com/HEXRD/hexrdgui/pull/1734#issuecomment-2384423232) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) From fd44affea024cb8c979346ccd54d29ecc5c57911 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 3 Oct 2024 00:50:07 +0000 Subject: [PATCH 2053/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1319ff9c..70534944 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#246](https://github.com/scil-vital/dwi_ml/pull/246#issuecomment-2386427318) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -2. 🗣 Commented on [#5](https://github.com/eastgenomics/MultiQC/pull/5#issuecomment-2386335692) in [eastgenomics/MultiQC](https://github.com/eastgenomics/MultiQC) -3. 🗣 Commented on [#4](https://github.com/eastgenomics/MultiQC/pull/4#issuecomment-2386287431) in [eastgenomics/MultiQC](https://github.com/eastgenomics/MultiQC) -4. 🗣 Commented on [#2](https://github.com/eastgenomics/s3_upload/pull/2#issuecomment-2386192433) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -5. 🗣 Commented on [#4098](https://github.com/privacyidea/privacyidea/pull/4098#issuecomment-2385965770) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#3111](https://github.com/astropy/astroquery/pull/3111#issuecomment-2385405981) in [astropy/astroquery](https://github.com/astropy/astroquery) -7. 🗣 Commented on [#134](https://github.com/eastgenomics/eggd_conductor/pull/134#issuecomment-2385328563) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -8. 🗣 Commented on [#22620](https://github.com/spyder-ide/spyder/pull/22620#issuecomment-2384858668) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#4408](https://github.com/uwcirg/truenth-portal/pull/4408#issuecomment-2384563188) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -10. 🗣 Commented on [#1734](https://github.com/HEXRD/hexrdgui/pull/1734#issuecomment-2384423232) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +1. 🗣 Commented on [#1033](https://github.com/scilus/scilpy/pull/1033#issuecomment-2389358607) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#356](https://github.com/cleder/fastkml/pull/356#issuecomment-2389104949) in [cleder/fastkml](https://github.com/cleder/fastkml) +3. 🗣 Commented on [#1547](https://github.com/Open-CAS/open-cas-linux/pull/1547#issuecomment-2389031906) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +4. 🗣 Commented on [#175](https://github.com/arfc/transition-scenarios/pull/175#issuecomment-2389024775) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +5. 🗣 Commented on [#2991](https://github.com/metabrainz/listenbrainz-server/pull/2991#issuecomment-2389002393) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#3275](https://github.com/reframe-hpc/reframe/pull/3275#issuecomment-2388998635) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +7. 🗣 Commented on [#20](https://github.com/thoth-pub/thoth-loader/pull/20#issuecomment-2388733366) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) +8. 🗣 Commented on [#156](https://github.com/INT-NIT/BEP032tools/pull/156#issuecomment-2388592925) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) +9. 🗣 Commented on [#1538](https://github.com/Open-CAS/open-cas-linux/pull/1538#issuecomment-2388292795) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +10. 🗣 Commented on [#8](https://github.com/eastgenomics/RD_requests/pull/8#issuecomment-2387950197) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) From 63619b48f317f51410121404170a4425a3e0782b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 4 Oct 2024 00:50:16 +0000 Subject: [PATCH 2054/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 70534944..46199ce3 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1033](https://github.com/scilus/scilpy/pull/1033#issuecomment-2389358607) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#356](https://github.com/cleder/fastkml/pull/356#issuecomment-2389104949) in [cleder/fastkml](https://github.com/cleder/fastkml) -3. 🗣 Commented on [#1547](https://github.com/Open-CAS/open-cas-linux/pull/1547#issuecomment-2389031906) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -4. 🗣 Commented on [#175](https://github.com/arfc/transition-scenarios/pull/175#issuecomment-2389024775) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -5. 🗣 Commented on [#2991](https://github.com/metabrainz/listenbrainz-server/pull/2991#issuecomment-2389002393) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#3275](https://github.com/reframe-hpc/reframe/pull/3275#issuecomment-2388998635) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -7. 🗣 Commented on [#20](https://github.com/thoth-pub/thoth-loader/pull/20#issuecomment-2388733366) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) -8. 🗣 Commented on [#156](https://github.com/INT-NIT/BEP032tools/pull/156#issuecomment-2388592925) in [INT-NIT/BEP032tools](https://github.com/INT-NIT/BEP032tools) -9. 🗣 Commented on [#1538](https://github.com/Open-CAS/open-cas-linux/pull/1538#issuecomment-2388292795) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -10. 🗣 Commented on [#8](https://github.com/eastgenomics/RD_requests/pull/8#issuecomment-2387950197) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) +1. 🗣 Commented on [#3113](https://github.com/astropy/astroquery/pull/3113#issuecomment-2391423990) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#4726](https://github.com/MDAnalysis/mdanalysis/pull/4726#issuecomment-2391412337) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#661](https://github.com/aramis-lab/clinicadl/pull/661#issuecomment-2390910074) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +4. 🗣 Commented on [#3](https://github.com/eastgenomics/s3_upload/pull/3#issuecomment-2390834431) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +5. 🗣 Commented on [#1546](https://github.com/Open-CAS/open-cas-linux/pull/1546#issuecomment-2390690386) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +6. 🗣 Commented on [#58](https://github.com/tj-python/cpython/pull/58#issuecomment-2390537418) in [tj-python/cpython](https://github.com/tj-python/cpython) +7. 🗣 Commented on [#16](https://github.com/njzjz/deepmd-mace/pull/16#issuecomment-2389777416) in [njzjz/deepmd-mace](https://github.com/njzjz/deepmd-mace) +8. 🗣 Commented on [#4725](https://github.com/MDAnalysis/mdanalysis/pull/4725#issuecomment-2389716658) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#1034](https://github.com/scilus/scilpy/pull/1034#issuecomment-2389633537) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#17](https://github.com/Open-CAS/test-framework/pull/17#issuecomment-2389562733) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) From 68975449dd85a158764935f4de60448ef6f2ff7a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 5 Oct 2024 00:49:32 +0000 Subject: [PATCH 2055/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 46199ce3..440bb301 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3113](https://github.com/astropy/astroquery/pull/3113#issuecomment-2391423990) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#4726](https://github.com/MDAnalysis/mdanalysis/pull/4726#issuecomment-2391412337) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#661](https://github.com/aramis-lab/clinicadl/pull/661#issuecomment-2390910074) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -4. 🗣 Commented on [#3](https://github.com/eastgenomics/s3_upload/pull/3#issuecomment-2390834431) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -5. 🗣 Commented on [#1546](https://github.com/Open-CAS/open-cas-linux/pull/1546#issuecomment-2390690386) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -6. 🗣 Commented on [#58](https://github.com/tj-python/cpython/pull/58#issuecomment-2390537418) in [tj-python/cpython](https://github.com/tj-python/cpython) -7. 🗣 Commented on [#16](https://github.com/njzjz/deepmd-mace/pull/16#issuecomment-2389777416) in [njzjz/deepmd-mace](https://github.com/njzjz/deepmd-mace) -8. 🗣 Commented on [#4725](https://github.com/MDAnalysis/mdanalysis/pull/4725#issuecomment-2389716658) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#1034](https://github.com/scilus/scilpy/pull/1034#issuecomment-2389633537) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#17](https://github.com/Open-CAS/test-framework/pull/17#issuecomment-2389562733) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) +1. 🗣 Commented on [#292](https://github.com/DevoInc/python-sdk/pull/292#issuecomment-2394391681) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) +2. 🗣 Commented on [#3280](https://github.com/reframe-hpc/reframe/pull/3280#issuecomment-2393969895) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +3. 🗣 Commented on [#135](https://github.com/eastgenomics/eggd_conductor/pull/135#issuecomment-2393780745) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +4. 🗣 Commented on [#358](https://github.com/cleder/fastkml/pull/358#issuecomment-2393750203) in [cleder/fastkml](https://github.com/cleder/fastkml) +5. 🗣 Commented on [#4100](https://github.com/privacyidea/privacyidea/pull/4100#issuecomment-2393704277) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#1635](https://github.com/openSUSE/osc/pull/1635#issuecomment-2393612779) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#255](https://github.com/OpenSCAP/oscap-anaconda-addon/pull/255#issuecomment-2393577914) in [OpenSCAP/oscap-anaconda-addon](https://github.com/OpenSCAP/oscap-anaconda-addon) +8. 🗣 Commented on [#9](https://github.com/eastgenomics/RD_requests/pull/9#issuecomment-2393370949) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) +9. 🗣 Commented on [#338](https://github.com/DeMarcoLab/fibsem/pull/338#issuecomment-2393094752) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +10. 🗣 Commented on [#1737](https://github.com/HEXRD/hexrdgui/pull/1737#issuecomment-2392478782) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) From a1235525e182da288e5666c3d5c27e21c0bd9018 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 6 Oct 2024 00:54:17 +0000 Subject: [PATCH 2056/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 440bb301..9f4a6061 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#292](https://github.com/DevoInc/python-sdk/pull/292#issuecomment-2394391681) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) -2. 🗣 Commented on [#3280](https://github.com/reframe-hpc/reframe/pull/3280#issuecomment-2393969895) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -3. 🗣 Commented on [#135](https://github.com/eastgenomics/eggd_conductor/pull/135#issuecomment-2393780745) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -4. 🗣 Commented on [#358](https://github.com/cleder/fastkml/pull/358#issuecomment-2393750203) in [cleder/fastkml](https://github.com/cleder/fastkml) -5. 🗣 Commented on [#4100](https://github.com/privacyidea/privacyidea/pull/4100#issuecomment-2393704277) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#1635](https://github.com/openSUSE/osc/pull/1635#issuecomment-2393612779) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#255](https://github.com/OpenSCAP/oscap-anaconda-addon/pull/255#issuecomment-2393577914) in [OpenSCAP/oscap-anaconda-addon](https://github.com/OpenSCAP/oscap-anaconda-addon) -8. 🗣 Commented on [#9](https://github.com/eastgenomics/RD_requests/pull/9#issuecomment-2393370949) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) -9. 🗣 Commented on [#338](https://github.com/DeMarcoLab/fibsem/pull/338#issuecomment-2393094752) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -10. 🗣 Commented on [#1737](https://github.com/HEXRD/hexrdgui/pull/1737#issuecomment-2392478782) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +1. 🗣 Commented on [#60](https://github.com/cdfxscrq/PyroGramUserBot/pull/60#issuecomment-2395229765) in [cdfxscrq/PyroGramUserBot](https://github.com/cdfxscrq/PyroGramUserBot) +2. 🗣 Commented on [#1913](https://github.com/astropy/photutils/pull/1913#issuecomment-2395191948) in [astropy/photutils](https://github.com/astropy/photutils) +3. 🗣 Commented on [#243](https://github.com/Moonlark-Dev/Moonlark/pull/243#issuecomment-2395042481) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +4. 🗣 Commented on [#241](https://github.com/Moonlark-Dev/Moonlark/pull/241#issuecomment-2394994563) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +5. 🗣 Commented on [#2](https://github.com/2lambda123/IBM-ELM-Python-Client/pull/2#issuecomment-2394981946) in [2lambda123/IBM-ELM-Python-Client](https://github.com/2lambda123/IBM-ELM-Python-Client) +6. 🗣 Commented on [#240](https://github.com/Moonlark-Dev/Moonlark/pull/240#issuecomment-2394959647) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +7. 🗣 Commented on [#241](https://github.com/aragilar/DiscSolver/pull/241#issuecomment-2394868076) in [aragilar/DiscSolver](https://github.com/aragilar/DiscSolver) +8. 🗣 Commented on [#292](https://github.com/DevoInc/python-sdk/pull/292#issuecomment-2394391681) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) +9. 🗣 Commented on [#3280](https://github.com/reframe-hpc/reframe/pull/3280#issuecomment-2393969895) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +10. 🗣 Commented on [#135](https://github.com/eastgenomics/eggd_conductor/pull/135#issuecomment-2393780745) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) From 7386afa8906f9aa8d68d9a7db4c5622821f3cf99 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 00:52:16 +0000 Subject: [PATCH 2057/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9f4a6061..06751131 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#60](https://github.com/cdfxscrq/PyroGramUserBot/pull/60#issuecomment-2395229765) in [cdfxscrq/PyroGramUserBot](https://github.com/cdfxscrq/PyroGramUserBot) -2. 🗣 Commented on [#1913](https://github.com/astropy/photutils/pull/1913#issuecomment-2395191948) in [astropy/photutils](https://github.com/astropy/photutils) -3. 🗣 Commented on [#243](https://github.com/Moonlark-Dev/Moonlark/pull/243#issuecomment-2395042481) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -4. 🗣 Commented on [#241](https://github.com/Moonlark-Dev/Moonlark/pull/241#issuecomment-2394994563) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -5. 🗣 Commented on [#2](https://github.com/2lambda123/IBM-ELM-Python-Client/pull/2#issuecomment-2394981946) in [2lambda123/IBM-ELM-Python-Client](https://github.com/2lambda123/IBM-ELM-Python-Client) -6. 🗣 Commented on [#240](https://github.com/Moonlark-Dev/Moonlark/pull/240#issuecomment-2394959647) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -7. 🗣 Commented on [#241](https://github.com/aragilar/DiscSolver/pull/241#issuecomment-2394868076) in [aragilar/DiscSolver](https://github.com/aragilar/DiscSolver) -8. 🗣 Commented on [#292](https://github.com/DevoInc/python-sdk/pull/292#issuecomment-2394391681) in [DevoInc/python-sdk](https://github.com/DevoInc/python-sdk) -9. 🗣 Commented on [#3280](https://github.com/reframe-hpc/reframe/pull/3280#issuecomment-2393969895) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -10. 🗣 Commented on [#135](https://github.com/eastgenomics/eggd_conductor/pull/135#issuecomment-2393780745) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +1. 🗣 Commented on [#924](https://github.com/PyThaiNLP/pythainlp/pull/924#issuecomment-2395465985) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#240](https://github.com/my8100/scrapydweb/pull/240#issuecomment-2395361022) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +3. 🗣 Commented on [#156](https://github.com/DeMarcoLab/autolamella/pull/156#issuecomment-2395302802) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +4. 🗣 Commented on [#60](https://github.com/cdfxscrq/PyroGramUserBot/pull/60#issuecomment-2395229765) in [cdfxscrq/PyroGramUserBot](https://github.com/cdfxscrq/PyroGramUserBot) +5. 🗣 Commented on [#1913](https://github.com/astropy/photutils/pull/1913#issuecomment-2395191948) in [astropy/photutils](https://github.com/astropy/photutils) +6. 🗣 Commented on [#243](https://github.com/Moonlark-Dev/Moonlark/pull/243#issuecomment-2395042481) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +7. 🗣 Commented on [#241](https://github.com/Moonlark-Dev/Moonlark/pull/241#issuecomment-2394994563) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +8. 🗣 Commented on [#2](https://github.com/2lambda123/IBM-ELM-Python-Client/pull/2#issuecomment-2394981946) in [2lambda123/IBM-ELM-Python-Client](https://github.com/2lambda123/IBM-ELM-Python-Client) +9. 🗣 Commented on [#240](https://github.com/Moonlark-Dev/Moonlark/pull/240#issuecomment-2394959647) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +10. 🗣 Commented on [#241](https://github.com/aragilar/DiscSolver/pull/241#issuecomment-2394868076) in [aragilar/DiscSolver](https://github.com/aragilar/DiscSolver) From 26cb67d90b83c90517f42d9bc41fedc4b7f9428e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 00:50:08 +0000 Subject: [PATCH 2058/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 06751131..ec0a66a8 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#924](https://github.com/PyThaiNLP/pythainlp/pull/924#issuecomment-2395465985) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#240](https://github.com/my8100/scrapydweb/pull/240#issuecomment-2395361022) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) -3. 🗣 Commented on [#156](https://github.com/DeMarcoLab/autolamella/pull/156#issuecomment-2395302802) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -4. 🗣 Commented on [#60](https://github.com/cdfxscrq/PyroGramUserBot/pull/60#issuecomment-2395229765) in [cdfxscrq/PyroGramUserBot](https://github.com/cdfxscrq/PyroGramUserBot) -5. 🗣 Commented on [#1913](https://github.com/astropy/photutils/pull/1913#issuecomment-2395191948) in [astropy/photutils](https://github.com/astropy/photutils) -6. 🗣 Commented on [#243](https://github.com/Moonlark-Dev/Moonlark/pull/243#issuecomment-2395042481) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -7. 🗣 Commented on [#241](https://github.com/Moonlark-Dev/Moonlark/pull/241#issuecomment-2394994563) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -8. 🗣 Commented on [#2](https://github.com/2lambda123/IBM-ELM-Python-Client/pull/2#issuecomment-2394981946) in [2lambda123/IBM-ELM-Python-Client](https://github.com/2lambda123/IBM-ELM-Python-Client) -9. 🗣 Commented on [#240](https://github.com/Moonlark-Dev/Moonlark/pull/240#issuecomment-2394959647) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -10. 🗣 Commented on [#241](https://github.com/aragilar/DiscSolver/pull/241#issuecomment-2394868076) in [aragilar/DiscSolver](https://github.com/aragilar/DiscSolver) +1. 🗣 Commented on [#1647](https://github.com/spacetelescope/jwql/pull/1647#issuecomment-2397382653) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +2. 🗣 Commented on [#5](https://github.com/eastgenomics/s3_upload/pull/5#issuecomment-2397342896) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +3. 🗣 Commented on [#56](https://github.com/cirKITers/qml-essentials/pull/56#issuecomment-2396881996) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +4. 🗣 Commented on [#3281](https://github.com/reframe-hpc/reframe/pull/3281#issuecomment-2396870166) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +5. 🗣 Commented on [#4](https://github.com/eastgenomics/s3_upload/pull/4#issuecomment-2396564802) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +6. 🗣 Commented on [#255](https://github.com/OpenSCAP/oscap-anaconda-addon/pull/255#issuecomment-2396421903) in [OpenSCAP/oscap-anaconda-addon](https://github.com/OpenSCAP/oscap-anaconda-addon) +7. 🗣 Commented on [#560](https://github.com/spatialaudio/python-sounddevice/pull/560#issuecomment-2396229467) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) +8. 🗣 Commented on [#924](https://github.com/PyThaiNLP/pythainlp/pull/924#issuecomment-2395465985) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +9. 🗣 Commented on [#240](https://github.com/my8100/scrapydweb/pull/240#issuecomment-2395361022) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +10. 🗣 Commented on [#156](https://github.com/DeMarcoLab/autolamella/pull/156#issuecomment-2395302802) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) From e93aa752a20083a19d2a2e1278454a792a1f0b0c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 9 Oct 2024 00:50:00 +0000 Subject: [PATCH 2059/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ec0a66a8..e8cc8af9 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1647](https://github.com/spacetelescope/jwql/pull/1647#issuecomment-2397382653) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -2. 🗣 Commented on [#5](https://github.com/eastgenomics/s3_upload/pull/5#issuecomment-2397342896) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -3. 🗣 Commented on [#56](https://github.com/cirKITers/qml-essentials/pull/56#issuecomment-2396881996) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -4. 🗣 Commented on [#3281](https://github.com/reframe-hpc/reframe/pull/3281#issuecomment-2396870166) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -5. 🗣 Commented on [#4](https://github.com/eastgenomics/s3_upload/pull/4#issuecomment-2396564802) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -6. 🗣 Commented on [#255](https://github.com/OpenSCAP/oscap-anaconda-addon/pull/255#issuecomment-2396421903) in [OpenSCAP/oscap-anaconda-addon](https://github.com/OpenSCAP/oscap-anaconda-addon) -7. 🗣 Commented on [#560](https://github.com/spatialaudio/python-sounddevice/pull/560#issuecomment-2396229467) in [spatialaudio/python-sounddevice](https://github.com/spatialaudio/python-sounddevice) -8. 🗣 Commented on [#924](https://github.com/PyThaiNLP/pythainlp/pull/924#issuecomment-2395465985) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -9. 🗣 Commented on [#240](https://github.com/my8100/scrapydweb/pull/240#issuecomment-2395361022) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) -10. 🗣 Commented on [#156](https://github.com/DeMarcoLab/autolamella/pull/156#issuecomment-2395302802) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +1. 🗣 Commented on [#10](https://github.com/eastgenomics/RD_requests/pull/10#issuecomment-2400134649) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) +2. 🗣 Commented on [#430](https://github.com/cggh/scikit-allel/pull/430#issuecomment-2399716885) in [cggh/scikit-allel](https://github.com/cggh/scikit-allel) +3. 🗣 Commented on [#9385](https://github.com/statsmodels/statsmodels/pull/9385#issuecomment-2399149356) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +4. 🗣 Commented on [#28](https://github.com/njzjz/deepmd-gnn/pull/28#issuecomment-2398168079) in [njzjz/deepmd-gnn](https://github.com/njzjz/deepmd-gnn) +5. 🗣 Commented on [#445](https://github.com/aria-tools/ARIA-tools/pull/445#issuecomment-2398051033) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +6. 🗣 Commented on [#27](https://github.com/njzjz/deepmd-gnn/pull/27#issuecomment-2398025812) in [njzjz/deepmd-gnn](https://github.com/njzjz/deepmd-gnn) +7. 🗣 Commented on [#560](https://github.com/rpm-software-management/dnf-plugins-core/pull/560#issuecomment-2397937081) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) +8. 🗣 Commented on [#14](https://github.com/2lambda123/mesa/pull/14#issuecomment-2397779974) in [2lambda123/mesa](https://github.com/2lambda123/mesa) +9. 🗣 Commented on [#5](https://github.com/2lambda123/QuandeLibC/pull/5#issuecomment-2397706549) in [2lambda123/QuandeLibC](https://github.com/2lambda123/QuandeLibC) +10. 🗣 Commented on [#1647](https://github.com/spacetelescope/jwql/pull/1647#issuecomment-2397382653) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From c7843e0e2f3df535a0de463ae291f0fefefdc86d Mon Sep 17 00:00:00 2001 From: kyluca Date: Wed, 9 Oct 2024 12:29:52 +1000 Subject: [PATCH 2060/2173] Update test.yml workflow with basic actions for Python --- .github/workflows/test.yml | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e30a64ba..04c8a602 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,8 +1,25 @@ -name: hello-world -on: push +name: Build and test + +on: + pull_request: + push: + branches: [ "master" ] + jobs: - my-job: + build: runs-on: ubuntu-latest steps: - - name: my-step - run: echo "Hello World!" + - uses: actions/checkout@v4 + - name: Set up Python 3.12 + uses: actions/setup-python@v5 + with: + python-version: "3.12" + # cache: "pip" # caching pip dependencies + - name: Install test requirements + run: | + python -m pip install --upgrade pip + pip install -r requirements/test.txt + - name: Run tests + run: | + echo "Make sure the review app of this branch is deployed and configured in the test-pep8speaks app" + pytest From 0362c68f633a0b0a7efbddccdcc5aabc0af8b0e5 Mon Sep 17 00:00:00 2001 From: kyluca Date: Wed, 9 Oct 2024 12:32:53 +1000 Subject: [PATCH 2061/2173] Enable pip cache --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 04c8a602..01364bf8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: uses: actions/setup-python@v5 with: python-version: "3.12" - # cache: "pip" # caching pip dependencies + cache: "pip" # caching pip dependencies - name: Install test requirements run: | python -m pip install --upgrade pip From 2ebecf5a30af7905f002a3500d192e8d69012476 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 10 Oct 2024 00:50:04 +0000 Subject: [PATCH 2062/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e8cc8af9..c85dcacb 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#10](https://github.com/eastgenomics/RD_requests/pull/10#issuecomment-2400134649) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) -2. 🗣 Commented on [#430](https://github.com/cggh/scikit-allel/pull/430#issuecomment-2399716885) in [cggh/scikit-allel](https://github.com/cggh/scikit-allel) -3. 🗣 Commented on [#9385](https://github.com/statsmodels/statsmodels/pull/9385#issuecomment-2399149356) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -4. 🗣 Commented on [#28](https://github.com/njzjz/deepmd-gnn/pull/28#issuecomment-2398168079) in [njzjz/deepmd-gnn](https://github.com/njzjz/deepmd-gnn) -5. 🗣 Commented on [#445](https://github.com/aria-tools/ARIA-tools/pull/445#issuecomment-2398051033) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -6. 🗣 Commented on [#27](https://github.com/njzjz/deepmd-gnn/pull/27#issuecomment-2398025812) in [njzjz/deepmd-gnn](https://github.com/njzjz/deepmd-gnn) -7. 🗣 Commented on [#560](https://github.com/rpm-software-management/dnf-plugins-core/pull/560#issuecomment-2397937081) in [rpm-software-management/dnf-plugins-core](https://github.com/rpm-software-management/dnf-plugins-core) -8. 🗣 Commented on [#14](https://github.com/2lambda123/mesa/pull/14#issuecomment-2397779974) in [2lambda123/mesa](https://github.com/2lambda123/mesa) -9. 🗣 Commented on [#5](https://github.com/2lambda123/QuandeLibC/pull/5#issuecomment-2397706549) in [2lambda123/QuandeLibC](https://github.com/2lambda123/QuandeLibC) -10. 🗣 Commented on [#1647](https://github.com/spacetelescope/jwql/pull/1647#issuecomment-2397382653) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#1639](https://github.com/openSUSE/osc/pull/1639#issuecomment-2402121433) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#5927](https://github.com/rhinstaller/anaconda/pull/5927#issuecomment-2401966956) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#1](https://github.com/Open-CAS/test-runner/pull/1#issuecomment-2401873673) in [Open-CAS/test-runner](https://github.com/Open-CAS/test-runner) +4. 🗣 Commented on [#1638](https://github.com/openSUSE/osc/pull/1638#issuecomment-2400971146) in [openSUSE/osc](https://github.com/openSUSE/osc) +5. 🗣 Commented on [#446](https://github.com/aria-tools/ARIA-tools/pull/446#issuecomment-2400851556) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +6. 🗣 Commented on [#4729](https://github.com/MDAnalysis/mdanalysis/pull/4729#issuecomment-2400837697) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#10](https://github.com/eastgenomics/RD_requests/pull/10#issuecomment-2400134649) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) +8. 🗣 Commented on [#430](https://github.com/cggh/scikit-allel/pull/430#issuecomment-2399716885) in [cggh/scikit-allel](https://github.com/cggh/scikit-allel) +9. 🗣 Commented on [#9385](https://github.com/statsmodels/statsmodels/pull/9385#issuecomment-2399149356) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +10. 🗣 Commented on [#28](https://github.com/njzjz/deepmd-gnn/pull/28#issuecomment-2398168079) in [njzjz/deepmd-gnn](https://github.com/njzjz/deepmd-gnn) From 2e22f0636313785a8da0a2e1791dcaf93a89d50d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 11 Oct 2024 00:50:04 +0000 Subject: [PATCH 2063/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c85dcacb..f5b083a8 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1639](https://github.com/openSUSE/osc/pull/1639#issuecomment-2402121433) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#5927](https://github.com/rhinstaller/anaconda/pull/5927#issuecomment-2401966956) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#1](https://github.com/Open-CAS/test-runner/pull/1#issuecomment-2401873673) in [Open-CAS/test-runner](https://github.com/Open-CAS/test-runner) -4. 🗣 Commented on [#1638](https://github.com/openSUSE/osc/pull/1638#issuecomment-2400971146) in [openSUSE/osc](https://github.com/openSUSE/osc) -5. 🗣 Commented on [#446](https://github.com/aria-tools/ARIA-tools/pull/446#issuecomment-2400851556) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -6. 🗣 Commented on [#4729](https://github.com/MDAnalysis/mdanalysis/pull/4729#issuecomment-2400837697) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#10](https://github.com/eastgenomics/RD_requests/pull/10#issuecomment-2400134649) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) -8. 🗣 Commented on [#430](https://github.com/cggh/scikit-allel/pull/430#issuecomment-2399716885) in [cggh/scikit-allel](https://github.com/cggh/scikit-allel) -9. 🗣 Commented on [#9385](https://github.com/statsmodels/statsmodels/pull/9385#issuecomment-2399149356) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -10. 🗣 Commented on [#28](https://github.com/njzjz/deepmd-gnn/pull/28#issuecomment-2398168079) in [njzjz/deepmd-gnn](https://github.com/njzjz/deepmd-gnn) +1. 🗣 Commented on [#7](https://github.com/eastgenomics/s3_upload/pull/7#issuecomment-2404738544) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +2. 🗣 Commented on [#5928](https://github.com/rhinstaller/anaconda/pull/5928#issuecomment-2404344732) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#4727](https://github.com/MDAnalysis/mdanalysis/pull/4727#issuecomment-2403689673) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#156](https://github.com/Richard-Sti/csiborgtools/pull/156#issuecomment-2403042858) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) +5. 🗣 Commented on [#3348](https://github.com/dipy/dipy/pull/3348#issuecomment-2402725810) in [dipy/dipy](https://github.com/dipy/dipy) +6. 🗣 Commented on [#3276](https://github.com/dipy/dipy/pull/3276#issuecomment-2402683844) in [dipy/dipy](https://github.com/dipy/dipy) +7. 🗣 Commented on [#507](https://github.com/HEPCloud/decisionengine_modules/pull/507#issuecomment-2402664644) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) +8. 🗣 Commented on [#176](https://github.com/arfc/transition-scenarios/pull/176#issuecomment-2402603121) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +9. 🗣 Commented on [#4](https://github.com/llgneuroresearch/avnirpy/pull/4#issuecomment-2402365653) in [llgneuroresearch/avnirpy](https://github.com/llgneuroresearch/avnirpy) +10. 🗣 Commented on [#1639](https://github.com/openSUSE/osc/pull/1639#issuecomment-2402121433) in [openSUSE/osc](https://github.com/openSUSE/osc) From 894c97baadae9deec19e65394e84ed67156d7fed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 12 Oct 2024 00:48:26 +0000 Subject: [PATCH 2064/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f5b083a8..27bc5b28 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#7](https://github.com/eastgenomics/s3_upload/pull/7#issuecomment-2404738544) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -2. 🗣 Commented on [#5928](https://github.com/rhinstaller/anaconda/pull/5928#issuecomment-2404344732) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#4727](https://github.com/MDAnalysis/mdanalysis/pull/4727#issuecomment-2403689673) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#156](https://github.com/Richard-Sti/csiborgtools/pull/156#issuecomment-2403042858) in [Richard-Sti/csiborgtools](https://github.com/Richard-Sti/csiborgtools) -5. 🗣 Commented on [#3348](https://github.com/dipy/dipy/pull/3348#issuecomment-2402725810) in [dipy/dipy](https://github.com/dipy/dipy) -6. 🗣 Commented on [#3276](https://github.com/dipy/dipy/pull/3276#issuecomment-2402683844) in [dipy/dipy](https://github.com/dipy/dipy) -7. 🗣 Commented on [#507](https://github.com/HEPCloud/decisionengine_modules/pull/507#issuecomment-2402664644) in [HEPCloud/decisionengine_modules](https://github.com/HEPCloud/decisionengine_modules) -8. 🗣 Commented on [#176](https://github.com/arfc/transition-scenarios/pull/176#issuecomment-2402603121) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -9. 🗣 Commented on [#4](https://github.com/llgneuroresearch/avnirpy/pull/4#issuecomment-2402365653) in [llgneuroresearch/avnirpy](https://github.com/llgneuroresearch/avnirpy) -10. 🗣 Commented on [#1639](https://github.com/openSUSE/osc/pull/1639#issuecomment-2402121433) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#1035](https://github.com/scilus/scilpy/pull/1035#issuecomment-2407367516) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#1641](https://github.com/openSUSE/osc/pull/1641#issuecomment-2407308643) in [openSUSE/osc](https://github.com/openSUSE/osc) +3. 🗣 Commented on [#5](https://github.com/Karim-53/pdll/pull/5#issuecomment-2407077121) in [Karim-53/pdll](https://github.com/Karim-53/pdll) +4. 🗣 Commented on [#136](https://github.com/eastgenomics/eggd_conductor/pull/136#issuecomment-2407061796) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +5. 🗣 Commented on [#4730](https://github.com/MDAnalysis/mdanalysis/pull/4730#issuecomment-2406899156) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#14](https://github.com/CartoonFan/python-libusb1/pull/14#issuecomment-2406660460) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) +7. 🗣 Commented on [#697](https://github.com/quark-engine/quark-engine/pull/697#issuecomment-2406641776) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +8. 🗣 Commented on [#174](https://github.com/arfc/transition-scenarios/pull/174#issuecomment-2406069393) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +9. 🗣 Commented on [#2](https://github.com/2lambda123/ludwig-ai-ludwig/pull/2#issuecomment-2405534436) in [2lambda123/ludwig-ai-ludwig](https://github.com/2lambda123/ludwig-ai-ludwig) +10. 🗣 Commented on [#1640](https://github.com/openSUSE/osc/pull/1640#issuecomment-2405433059) in [openSUSE/osc](https://github.com/openSUSE/osc) From 59eb7ca7c45373bbc382e8bf8e3187bda4482127 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 13 Oct 2024 00:54:03 +0000 Subject: [PATCH 2065/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 27bc5b28..0d210407 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1035](https://github.com/scilus/scilpy/pull/1035#issuecomment-2407367516) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#1641](https://github.com/openSUSE/osc/pull/1641#issuecomment-2407308643) in [openSUSE/osc](https://github.com/openSUSE/osc) -3. 🗣 Commented on [#5](https://github.com/Karim-53/pdll/pull/5#issuecomment-2407077121) in [Karim-53/pdll](https://github.com/Karim-53/pdll) -4. 🗣 Commented on [#136](https://github.com/eastgenomics/eggd_conductor/pull/136#issuecomment-2407061796) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -5. 🗣 Commented on [#4730](https://github.com/MDAnalysis/mdanalysis/pull/4730#issuecomment-2406899156) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#14](https://github.com/CartoonFan/python-libusb1/pull/14#issuecomment-2406660460) in [CartoonFan/python-libusb1](https://github.com/CartoonFan/python-libusb1) -7. 🗣 Commented on [#697](https://github.com/quark-engine/quark-engine/pull/697#issuecomment-2406641776) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -8. 🗣 Commented on [#174](https://github.com/arfc/transition-scenarios/pull/174#issuecomment-2406069393) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -9. 🗣 Commented on [#2](https://github.com/2lambda123/ludwig-ai-ludwig/pull/2#issuecomment-2405534436) in [2lambda123/ludwig-ai-ludwig](https://github.com/2lambda123/ludwig-ai-ludwig) -10. 🗣 Commented on [#1640](https://github.com/openSUSE/osc/pull/1640#issuecomment-2405433059) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#109](https://github.com/aviolaris/instaunfollowers/pull/109#issuecomment-2408722566) in [aviolaris/instaunfollowers](https://github.com/aviolaris/instaunfollowers) +2. 🗣 Commented on [#365](https://github.com/cleder/fastkml/pull/365#issuecomment-2408703280) in [cleder/fastkml](https://github.com/cleder/fastkml) +3. 🗣 Commented on [#327](https://github.com/SAP/credential-digger/pull/327#issuecomment-2408702239) in [SAP/credential-digger](https://github.com/SAP/credential-digger) +4. 🗣 Commented on [#363](https://github.com/cleder/fastkml/pull/363#issuecomment-2408662061) in [cleder/fastkml](https://github.com/cleder/fastkml) +5. 🗣 Commented on [#1153](https://github.com/lmcinnes/umap/pull/1153#issuecomment-2408444636) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +6. 🗣 Commented on [#5](https://github.com/AlbertEinsteinTG/pyrogram/pull/5#issuecomment-2408401896) in [AlbertEinsteinTG/pyrogram](https://github.com/AlbertEinsteinTG/pyrogram) +7. 🗣 Commented on [#3377](https://github.com/dipy/dipy/pull/3377#issuecomment-2408234813) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#179](https://github.com/arfc/transition-scenarios/pull/179#issuecomment-2407959668) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) +9. 🗣 Commented on [#4518](https://github.com/pyload/pyload/pull/4518#issuecomment-2407947873) in [pyload/pyload](https://github.com/pyload/pyload) +10. 🗣 Commented on [#3118](https://github.com/astropy/astroquery/pull/3118#issuecomment-2407875039) in [astropy/astroquery](https://github.com/astropy/astroquery) From f9f7d84c673b96f5b12c3b1e03390079b34abe00 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 00:52:07 +0000 Subject: [PATCH 2066/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0d210407..0d41ce85 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#109](https://github.com/aviolaris/instaunfollowers/pull/109#issuecomment-2408722566) in [aviolaris/instaunfollowers](https://github.com/aviolaris/instaunfollowers) -2. 🗣 Commented on [#365](https://github.com/cleder/fastkml/pull/365#issuecomment-2408703280) in [cleder/fastkml](https://github.com/cleder/fastkml) -3. 🗣 Commented on [#327](https://github.com/SAP/credential-digger/pull/327#issuecomment-2408702239) in [SAP/credential-digger](https://github.com/SAP/credential-digger) -4. 🗣 Commented on [#363](https://github.com/cleder/fastkml/pull/363#issuecomment-2408662061) in [cleder/fastkml](https://github.com/cleder/fastkml) -5. 🗣 Commented on [#1153](https://github.com/lmcinnes/umap/pull/1153#issuecomment-2408444636) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -6. 🗣 Commented on [#5](https://github.com/AlbertEinsteinTG/pyrogram/pull/5#issuecomment-2408401896) in [AlbertEinsteinTG/pyrogram](https://github.com/AlbertEinsteinTG/pyrogram) -7. 🗣 Commented on [#3377](https://github.com/dipy/dipy/pull/3377#issuecomment-2408234813) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#179](https://github.com/arfc/transition-scenarios/pull/179#issuecomment-2407959668) in [arfc/transition-scenarios](https://github.com/arfc/transition-scenarios) -9. 🗣 Commented on [#4518](https://github.com/pyload/pyload/pull/4518#issuecomment-2407947873) in [pyload/pyload](https://github.com/pyload/pyload) -10. 🗣 Commented on [#3118](https://github.com/astropy/astroquery/pull/3118#issuecomment-2407875039) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#4520](https://github.com/pyload/pyload/pull/4520#issuecomment-2408928803) in [pyload/pyload](https://github.com/pyload/pyload) +2. 🗣 Commented on [#927](https://github.com/PyThaiNLP/pythainlp/pull/927#issuecomment-2408921116) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#1](https://github.com/2lambda123/mhostert-Heavy-Neutrino-Limits/pull/1#issuecomment-2408895958) in [2lambda123/mhostert-Heavy-Neutrino-Limits](https://github.com/2lambda123/mhostert-Heavy-Neutrino-Limits) +4. 🗣 Commented on [#168](https://github.com/MDAnalysis/distopia/pull/168#issuecomment-2408822734) in [MDAnalysis/distopia](https://github.com/MDAnalysis/distopia) +5. 🗣 Commented on [#251](https://github.com/Moonlark-Dev/Moonlark/pull/251#issuecomment-2408803597) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +6. 🗣 Commented on [#109](https://github.com/aviolaris/instaunfollowers/pull/109#issuecomment-2408722566) in [aviolaris/instaunfollowers](https://github.com/aviolaris/instaunfollowers) +7. 🗣 Commented on [#365](https://github.com/cleder/fastkml/pull/365#issuecomment-2408703280) in [cleder/fastkml](https://github.com/cleder/fastkml) +8. 🗣 Commented on [#327](https://github.com/SAP/credential-digger/pull/327#issuecomment-2408702239) in [SAP/credential-digger](https://github.com/SAP/credential-digger) +9. 🗣 Commented on [#363](https://github.com/cleder/fastkml/pull/363#issuecomment-2408662061) in [cleder/fastkml](https://github.com/cleder/fastkml) +10. 🗣 Commented on [#1153](https://github.com/lmcinnes/umap/pull/1153#issuecomment-2408444636) in [lmcinnes/umap](https://github.com/lmcinnes/umap) From 198dbfd2862d336ad0eca6e2a73543c6979139cf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 15 Oct 2024 00:51:01 +0000 Subject: [PATCH 2067/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0d41ce85..c1e3927a 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4520](https://github.com/pyload/pyload/pull/4520#issuecomment-2408928803) in [pyload/pyload](https://github.com/pyload/pyload) -2. 🗣 Commented on [#927](https://github.com/PyThaiNLP/pythainlp/pull/927#issuecomment-2408921116) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#1](https://github.com/2lambda123/mhostert-Heavy-Neutrino-Limits/pull/1#issuecomment-2408895958) in [2lambda123/mhostert-Heavy-Neutrino-Limits](https://github.com/2lambda123/mhostert-Heavy-Neutrino-Limits) -4. 🗣 Commented on [#168](https://github.com/MDAnalysis/distopia/pull/168#issuecomment-2408822734) in [MDAnalysis/distopia](https://github.com/MDAnalysis/distopia) -5. 🗣 Commented on [#251](https://github.com/Moonlark-Dev/Moonlark/pull/251#issuecomment-2408803597) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -6. 🗣 Commented on [#109](https://github.com/aviolaris/instaunfollowers/pull/109#issuecomment-2408722566) in [aviolaris/instaunfollowers](https://github.com/aviolaris/instaunfollowers) -7. 🗣 Commented on [#365](https://github.com/cleder/fastkml/pull/365#issuecomment-2408703280) in [cleder/fastkml](https://github.com/cleder/fastkml) -8. 🗣 Commented on [#327](https://github.com/SAP/credential-digger/pull/327#issuecomment-2408702239) in [SAP/credential-digger](https://github.com/SAP/credential-digger) -9. 🗣 Commented on [#363](https://github.com/cleder/fastkml/pull/363#issuecomment-2408662061) in [cleder/fastkml](https://github.com/cleder/fastkml) -10. 🗣 Commented on [#1153](https://github.com/lmcinnes/umap/pull/1153#issuecomment-2408444636) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +1. 🗣 Commented on [#853](https://github.com/Open-CAS/ocf/pull/853#issuecomment-2411669739) in [Open-CAS/ocf](https://github.com/Open-CAS/ocf) +2. 🗣 Commented on [#1660](https://github.com/odlgroup/odl/pull/1660#issuecomment-2411407705) in [odlgroup/odl](https://github.com/odlgroup/odl) +3. 🗣 Commented on [#11](https://github.com/eastgenomics/RD_requests/pull/11#issuecomment-2411169735) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) +4. 🗣 Commented on [#666](https://github.com/aramis-lab/clinicadl/pull/666#issuecomment-2411063803) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +5. 🗣 Commented on [#165](https://github.com/aimclub/Fedot.Industrial/pull/165#issuecomment-2410656753) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +6. 🗣 Commented on [#36](https://github.com/avaframe/QGisAF/pull/36#issuecomment-2410475411) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +7. 🗣 Commented on [#1032](https://github.com/avaframe/AvaFrame/pull/1032#issuecomment-2410430764) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#11](https://github.com/drauger-os-development/drauger-installer/pull/11#issuecomment-2409940227) in [drauger-os-development/drauger-installer](https://github.com/drauger-os-development/drauger-installer) +9. 🗣 Commented on [#9389](https://github.com/statsmodels/statsmodels/pull/9389#issuecomment-2409919192) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +10. 🗣 Commented on [#528](https://github.com/payu-org/payu/pull/528#issuecomment-2409842828) in [payu-org/payu](https://github.com/payu-org/payu) From bdabcaaf804ad42d39ee198f64ff504c7acda8d8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 16 Oct 2024 00:50:57 +0000 Subject: [PATCH 2068/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c1e3927a..8500f10a 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#853](https://github.com/Open-CAS/ocf/pull/853#issuecomment-2411669739) in [Open-CAS/ocf](https://github.com/Open-CAS/ocf) -2. 🗣 Commented on [#1660](https://github.com/odlgroup/odl/pull/1660#issuecomment-2411407705) in [odlgroup/odl](https://github.com/odlgroup/odl) -3. 🗣 Commented on [#11](https://github.com/eastgenomics/RD_requests/pull/11#issuecomment-2411169735) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) -4. 🗣 Commented on [#666](https://github.com/aramis-lab/clinicadl/pull/666#issuecomment-2411063803) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -5. 🗣 Commented on [#165](https://github.com/aimclub/Fedot.Industrial/pull/165#issuecomment-2410656753) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -6. 🗣 Commented on [#36](https://github.com/avaframe/QGisAF/pull/36#issuecomment-2410475411) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) -7. 🗣 Commented on [#1032](https://github.com/avaframe/AvaFrame/pull/1032#issuecomment-2410430764) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#11](https://github.com/drauger-os-development/drauger-installer/pull/11#issuecomment-2409940227) in [drauger-os-development/drauger-installer](https://github.com/drauger-os-development/drauger-installer) -9. 🗣 Commented on [#9389](https://github.com/statsmodels/statsmodels/pull/9389#issuecomment-2409919192) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -10. 🗣 Commented on [#528](https://github.com/payu-org/payu/pull/528#issuecomment-2409842828) in [payu-org/payu](https://github.com/payu-org/payu) +1. 🗣 Commented on [#117](https://github.com/UIUCLibrary/Packager/pull/117#issuecomment-2414688423) in [UIUCLibrary/Packager](https://github.com/UIUCLibrary/Packager) +2. 🗣 Commented on [#1035](https://github.com/avaframe/AvaFrame/pull/1035#issuecomment-2413698002) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#4734](https://github.com/MDAnalysis/mdanalysis/pull/4734#issuecomment-2413498595) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#2143](https://github.com/rpm-software-management/dnf/pull/2143#issuecomment-2413451509) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +5. 🗣 Commented on [#170](https://github.com/MDAnalysis/distopia/pull/170#issuecomment-2413429251) in [MDAnalysis/distopia](https://github.com/MDAnalysis/distopia) +6. 🗣 Commented on [#38](https://github.com/avaframe/QGisAF/pull/38#issuecomment-2413233820) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +7. 🗣 Commented on [#531](https://github.com/payu-org/payu/pull/531#issuecomment-2412608811) in [payu-org/payu](https://github.com/payu-org/payu) +8. 🗣 Commented on [#22598](https://github.com/spyder-ide/spyder/pull/22598#issuecomment-2412589123) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#853](https://github.com/Open-CAS/ocf/pull/853#issuecomment-2411669739) in [Open-CAS/ocf](https://github.com/Open-CAS/ocf) +10. 🗣 Commented on [#1660](https://github.com/odlgroup/odl/pull/1660#issuecomment-2411407705) in [odlgroup/odl](https://github.com/odlgroup/odl) From ffc695876ccf4f658e35112d420bf5c3af2e05e4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 17 Oct 2024 00:50:25 +0000 Subject: [PATCH 2069/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8500f10a..03ab2f89 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#117](https://github.com/UIUCLibrary/Packager/pull/117#issuecomment-2414688423) in [UIUCLibrary/Packager](https://github.com/UIUCLibrary/Packager) -2. 🗣 Commented on [#1035](https://github.com/avaframe/AvaFrame/pull/1035#issuecomment-2413698002) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#4734](https://github.com/MDAnalysis/mdanalysis/pull/4734#issuecomment-2413498595) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#2143](https://github.com/rpm-software-management/dnf/pull/2143#issuecomment-2413451509) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -5. 🗣 Commented on [#170](https://github.com/MDAnalysis/distopia/pull/170#issuecomment-2413429251) in [MDAnalysis/distopia](https://github.com/MDAnalysis/distopia) -6. 🗣 Commented on [#38](https://github.com/avaframe/QGisAF/pull/38#issuecomment-2413233820) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) -7. 🗣 Commented on [#531](https://github.com/payu-org/payu/pull/531#issuecomment-2412608811) in [payu-org/payu](https://github.com/payu-org/payu) -8. 🗣 Commented on [#22598](https://github.com/spyder-ide/spyder/pull/22598#issuecomment-2412589123) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#853](https://github.com/Open-CAS/ocf/pull/853#issuecomment-2411669739) in [Open-CAS/ocf](https://github.com/Open-CAS/ocf) -10. 🗣 Commented on [#1660](https://github.com/odlgroup/odl/pull/1660#issuecomment-2411407705) in [odlgroup/odl](https://github.com/odlgroup/odl) +1. 🗣 Commented on [#3384](https://github.com/dipy/dipy/pull/3384#issuecomment-2417100232) in [dipy/dipy](https://github.com/dipy/dipy) +2. 🗣 Commented on [#16](https://github.com/eastgenomics/s3_upload/pull/16#issuecomment-2417033851) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +3. 🗣 Commented on [#625](https://github.com/ExoCTK/exoctk/pull/625#issuecomment-2416941160) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +4. 🗣 Commented on [#1573](https://github.com/Open-CAS/open-cas-linux/pull/1573#issuecomment-2416849692) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +5. 🗣 Commented on [#31](https://github.com/Borda/pyDeprecate/pull/31#issuecomment-2416150732) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) +6. 🗣 Commented on [#7](https://github.com/avaframe/AmaConnector/pull/7#issuecomment-2416056600) in [avaframe/AmaConnector](https://github.com/avaframe/AmaConnector) +7. 🗣 Commented on [#2](https://github.com/eastgenomics/clinvar_submissions/pull/2#issuecomment-2416055809) in [eastgenomics/clinvar_submissions](https://github.com/eastgenomics/clinvar_submissions) +8. 🗣 Commented on [#699](https://github.com/quark-engine/quark-engine/pull/699#issuecomment-2415750246) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +9. 🗣 Commented on [#532](https://github.com/payu-org/payu/pull/532#issuecomment-2415657762) in [payu-org/payu](https://github.com/payu-org/payu) +10. 🗣 Commented on [#171](https://github.com/MDAnalysis/distopia/pull/171#issuecomment-2415307553) in [MDAnalysis/distopia](https://github.com/MDAnalysis/distopia) From 08befb90dfbccb920ff61bbf98c7610df7d58d55 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Oct 2024 00:50:27 +0000 Subject: [PATCH 2070/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 03ab2f89..5cef2fe0 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3384](https://github.com/dipy/dipy/pull/3384#issuecomment-2417100232) in [dipy/dipy](https://github.com/dipy/dipy) -2. 🗣 Commented on [#16](https://github.com/eastgenomics/s3_upload/pull/16#issuecomment-2417033851) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -3. 🗣 Commented on [#625](https://github.com/ExoCTK/exoctk/pull/625#issuecomment-2416941160) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) -4. 🗣 Commented on [#1573](https://github.com/Open-CAS/open-cas-linux/pull/1573#issuecomment-2416849692) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -5. 🗣 Commented on [#31](https://github.com/Borda/pyDeprecate/pull/31#issuecomment-2416150732) in [Borda/pyDeprecate](https://github.com/Borda/pyDeprecate) -6. 🗣 Commented on [#7](https://github.com/avaframe/AmaConnector/pull/7#issuecomment-2416056600) in [avaframe/AmaConnector](https://github.com/avaframe/AmaConnector) -7. 🗣 Commented on [#2](https://github.com/eastgenomics/clinvar_submissions/pull/2#issuecomment-2416055809) in [eastgenomics/clinvar_submissions](https://github.com/eastgenomics/clinvar_submissions) -8. 🗣 Commented on [#699](https://github.com/quark-engine/quark-engine/pull/699#issuecomment-2415750246) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -9. 🗣 Commented on [#532](https://github.com/payu-org/payu/pull/532#issuecomment-2415657762) in [payu-org/payu](https://github.com/payu-org/payu) -10. 🗣 Commented on [#171](https://github.com/MDAnalysis/distopia/pull/171#issuecomment-2415307553) in [MDAnalysis/distopia](https://github.com/MDAnalysis/distopia) +1. 🗣 Commented on [#2146](https://github.com/rpm-software-management/dnf/pull/2146#issuecomment-2419356992) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +2. 🗣 Commented on [#9398](https://github.com/statsmodels/statsmodels/pull/9398#issuecomment-2419331083) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#5945](https://github.com/rhinstaller/anaconda/pull/5945#issuecomment-2419269257) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +4. 🗣 Commented on [#9396](https://github.com/statsmodels/statsmodels/pull/9396#issuecomment-2419081475) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#1343](https://github.com/aimclub/FEDOT/pull/1343#issuecomment-2419074141) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#22684](https://github.com/spyder-ide/spyder/pull/22684#issuecomment-2418191877) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#9393](https://github.com/statsmodels/statsmodels/pull/9393#issuecomment-2417791438) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +8. 🗣 Commented on [#3384](https://github.com/dipy/dipy/pull/3384#issuecomment-2417100232) in [dipy/dipy](https://github.com/dipy/dipy) +9. 🗣 Commented on [#16](https://github.com/eastgenomics/s3_upload/pull/16#issuecomment-2417033851) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +10. 🗣 Commented on [#625](https://github.com/ExoCTK/exoctk/pull/625#issuecomment-2416941160) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) From 119daa1415527e829fa47c9666719ff57e322117 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 19 Oct 2024 00:50:04 +0000 Subject: [PATCH 2071/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5cef2fe0..61db53ef 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2146](https://github.com/rpm-software-management/dnf/pull/2146#issuecomment-2419356992) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -2. 🗣 Commented on [#9398](https://github.com/statsmodels/statsmodels/pull/9398#issuecomment-2419331083) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#5945](https://github.com/rhinstaller/anaconda/pull/5945#issuecomment-2419269257) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -4. 🗣 Commented on [#9396](https://github.com/statsmodels/statsmodels/pull/9396#issuecomment-2419081475) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -5. 🗣 Commented on [#1343](https://github.com/aimclub/FEDOT/pull/1343#issuecomment-2419074141) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#22684](https://github.com/spyder-ide/spyder/pull/22684#issuecomment-2418191877) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#9393](https://github.com/statsmodels/statsmodels/pull/9393#issuecomment-2417791438) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -8. 🗣 Commented on [#3384](https://github.com/dipy/dipy/pull/3384#issuecomment-2417100232) in [dipy/dipy](https://github.com/dipy/dipy) -9. 🗣 Commented on [#16](https://github.com/eastgenomics/s3_upload/pull/16#issuecomment-2417033851) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -10. 🗣 Commented on [#625](https://github.com/ExoCTK/exoctk/pull/625#issuecomment-2416941160) in [ExoCTK/exoctk](https://github.com/ExoCTK/exoctk) +1. 🗣 Commented on [#200](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/200#issuecomment-2422107739) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +2. 🗣 Commented on [#1](https://github.com/2lambda123/openstack-sushy/pull/1#issuecomment-2421972945) in [2lambda123/openstack-sushy](https://github.com/2lambda123/openstack-sushy) +3. 🗣 Commented on [#1](https://github.com/MDAnalysis/helanal/pull/1#issuecomment-2421436932) in [MDAnalysis/helanal](https://github.com/MDAnalysis/helanal) +4. 🗣 Commented on [#27](https://github.com/drauger-os-development/drauger-welcome/pull/27#issuecomment-2421179563) in [drauger-os-development/drauger-welcome](https://github.com/drauger-os-development/drauger-welcome) +5. 🗣 Commented on [#2999](https://github.com/metabrainz/listenbrainz-server/pull/2999#issuecomment-2420336482) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#2146](https://github.com/rpm-software-management/dnf/pull/2146#issuecomment-2419356992) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +7. 🗣 Commented on [#9398](https://github.com/statsmodels/statsmodels/pull/9398#issuecomment-2419331083) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +8. 🗣 Commented on [#5945](https://github.com/rhinstaller/anaconda/pull/5945#issuecomment-2419269257) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#9396](https://github.com/statsmodels/statsmodels/pull/9396#issuecomment-2419081475) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +10. 🗣 Commented on [#1343](https://github.com/aimclub/FEDOT/pull/1343#issuecomment-2419074141) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) From a0fae273e88abc714199b47373a9439b24b15e4f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 20 Oct 2024 00:55:01 +0000 Subject: [PATCH 2072/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 61db53ef..16bbeb62 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#200](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/200#issuecomment-2422107739) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -2. 🗣 Commented on [#1](https://github.com/2lambda123/openstack-sushy/pull/1#issuecomment-2421972945) in [2lambda123/openstack-sushy](https://github.com/2lambda123/openstack-sushy) -3. 🗣 Commented on [#1](https://github.com/MDAnalysis/helanal/pull/1#issuecomment-2421436932) in [MDAnalysis/helanal](https://github.com/MDAnalysis/helanal) -4. 🗣 Commented on [#27](https://github.com/drauger-os-development/drauger-welcome/pull/27#issuecomment-2421179563) in [drauger-os-development/drauger-welcome](https://github.com/drauger-os-development/drauger-welcome) -5. 🗣 Commented on [#2999](https://github.com/metabrainz/listenbrainz-server/pull/2999#issuecomment-2420336482) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#2146](https://github.com/rpm-software-management/dnf/pull/2146#issuecomment-2419356992) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -7. 🗣 Commented on [#9398](https://github.com/statsmodels/statsmodels/pull/9398#issuecomment-2419331083) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -8. 🗣 Commented on [#5945](https://github.com/rhinstaller/anaconda/pull/5945#issuecomment-2419269257) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#9396](https://github.com/statsmodels/statsmodels/pull/9396#issuecomment-2419081475) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -10. 🗣 Commented on [#1343](https://github.com/aimclub/FEDOT/pull/1343#issuecomment-2419074141) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +1. 🗣 Commented on [#558](https://github.com/oemof/tespy/pull/558#issuecomment-2424106510) in [oemof/tespy](https://github.com/oemof/tespy) +2. 🗣 Commented on [#368](https://github.com/cleder/fastkml/pull/368#issuecomment-2424056981) in [cleder/fastkml](https://github.com/cleder/fastkml) +3. 🗣 Commented on [#22695](https://github.com/spyder-ide/spyder/pull/22695#issuecomment-2424051667) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +4. 🗣 Commented on [#4744](https://github.com/MDAnalysis/mdanalysis/pull/4744#issuecomment-2423923389) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#4743](https://github.com/MDAnalysis/mdanalysis/pull/4743#issuecomment-2423920917) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#367](https://github.com/cleder/fastkml/pull/367#issuecomment-2423746645) in [cleder/fastkml](https://github.com/cleder/fastkml) +7. 🗣 Commented on [#47](https://github.com/njzjz/wenxian/pull/47#issuecomment-2423653778) in [njzjz/wenxian](https://github.com/njzjz/wenxian) +8. 🗣 Commented on [#46](https://github.com/njzjz/wenxian/pull/46#issuecomment-2423622538) in [njzjz/wenxian](https://github.com/njzjz/wenxian) +9. 🗣 Commented on [#8](https://github.com/gfunkmonk/RetroPie-Setup/pull/8#issuecomment-2423619788) in [gfunkmonk/RetroPie-Setup](https://github.com/gfunkmonk/RetroPie-Setup) +10. 🗣 Commented on [#259](https://github.com/Moonlark-Dev/Moonlark/pull/259#issuecomment-2423585225) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) From e337e64e44607318641ef0ab22e3449b72de8c61 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 00:52:29 +0000 Subject: [PATCH 2073/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 16bbeb62..ac3ff457 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#558](https://github.com/oemof/tespy/pull/558#issuecomment-2424106510) in [oemof/tespy](https://github.com/oemof/tespy) -2. 🗣 Commented on [#368](https://github.com/cleder/fastkml/pull/368#issuecomment-2424056981) in [cleder/fastkml](https://github.com/cleder/fastkml) -3. 🗣 Commented on [#22695](https://github.com/spyder-ide/spyder/pull/22695#issuecomment-2424051667) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -4. 🗣 Commented on [#4744](https://github.com/MDAnalysis/mdanalysis/pull/4744#issuecomment-2423923389) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#4743](https://github.com/MDAnalysis/mdanalysis/pull/4743#issuecomment-2423920917) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#367](https://github.com/cleder/fastkml/pull/367#issuecomment-2423746645) in [cleder/fastkml](https://github.com/cleder/fastkml) -7. 🗣 Commented on [#47](https://github.com/njzjz/wenxian/pull/47#issuecomment-2423653778) in [njzjz/wenxian](https://github.com/njzjz/wenxian) -8. 🗣 Commented on [#46](https://github.com/njzjz/wenxian/pull/46#issuecomment-2423622538) in [njzjz/wenxian](https://github.com/njzjz/wenxian) -9. 🗣 Commented on [#8](https://github.com/gfunkmonk/RetroPie-Setup/pull/8#issuecomment-2423619788) in [gfunkmonk/RetroPie-Setup](https://github.com/gfunkmonk/RetroPie-Setup) -10. 🗣 Commented on [#259](https://github.com/Moonlark-Dev/Moonlark/pull/259#issuecomment-2423585225) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +1. 🗣 Commented on [#58](https://github.com/foreign-sub/aiofreepybox/pull/58#issuecomment-2425198978) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +2. 🗣 Commented on [#342](https://github.com/InvisibleSymbol/rocketwatch/pull/342#issuecomment-2424869200) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +3. 🗣 Commented on [#4757](https://github.com/MDAnalysis/mdanalysis/pull/4757#issuecomment-2424831029) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#4754](https://github.com/MDAnalysis/mdanalysis/pull/4754#issuecomment-2424792280) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#4752](https://github.com/MDAnalysis/mdanalysis/pull/4752#issuecomment-2424757291) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#340](https://github.com/InvisibleSymbol/rocketwatch/pull/340#issuecomment-2424260363) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +7. 🗣 Commented on [#4745](https://github.com/MDAnalysis/mdanalysis/pull/4745#issuecomment-2424237430) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#558](https://github.com/oemof/tespy/pull/558#issuecomment-2424106510) in [oemof/tespy](https://github.com/oemof/tespy) +9. 🗣 Commented on [#368](https://github.com/cleder/fastkml/pull/368#issuecomment-2424056981) in [cleder/fastkml](https://github.com/cleder/fastkml) +10. 🗣 Commented on [#22695](https://github.com/spyder-ide/spyder/pull/22695#issuecomment-2424051667) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 3ee2d829c78e722d22ebf3c6b2874dd30c00e107 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 00:51:26 +0000 Subject: [PATCH 2074/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ac3ff457..b94aee54 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#58](https://github.com/foreign-sub/aiofreepybox/pull/58#issuecomment-2425198978) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -2. 🗣 Commented on [#342](https://github.com/InvisibleSymbol/rocketwatch/pull/342#issuecomment-2424869200) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -3. 🗣 Commented on [#4757](https://github.com/MDAnalysis/mdanalysis/pull/4757#issuecomment-2424831029) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#4754](https://github.com/MDAnalysis/mdanalysis/pull/4754#issuecomment-2424792280) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#4752](https://github.com/MDAnalysis/mdanalysis/pull/4752#issuecomment-2424757291) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#340](https://github.com/InvisibleSymbol/rocketwatch/pull/340#issuecomment-2424260363) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -7. 🗣 Commented on [#4745](https://github.com/MDAnalysis/mdanalysis/pull/4745#issuecomment-2424237430) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#558](https://github.com/oemof/tespy/pull/558#issuecomment-2424106510) in [oemof/tespy](https://github.com/oemof/tespy) -9. 🗣 Commented on [#368](https://github.com/cleder/fastkml/pull/368#issuecomment-2424056981) in [cleder/fastkml](https://github.com/cleder/fastkml) -10. 🗣 Commented on [#22695](https://github.com/spyder-ide/spyder/pull/22695#issuecomment-2424051667) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#4114](https://github.com/privacyidea/privacyidea/pull/4114#issuecomment-2426583814) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#166](https://github.com/aimclub/Fedot.Industrial/pull/166#issuecomment-2426452528) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +3. 🗣 Commented on [#141](https://github.com/eastgenomics/eggd_conductor/pull/141#issuecomment-2426088133) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +4. 🗣 Commented on [#941](https://github.com/fury-gl/fury/pull/941#issuecomment-2425720981) in [fury-gl/fury](https://github.com/fury-gl/fury) +5. 🗣 Commented on [#58](https://github.com/foreign-sub/aiofreepybox/pull/58#issuecomment-2425198978) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +6. 🗣 Commented on [#342](https://github.com/InvisibleSymbol/rocketwatch/pull/342#issuecomment-2424869200) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +7. 🗣 Commented on [#4757](https://github.com/MDAnalysis/mdanalysis/pull/4757#issuecomment-2424831029) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#4754](https://github.com/MDAnalysis/mdanalysis/pull/4754#issuecomment-2424792280) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#4752](https://github.com/MDAnalysis/mdanalysis/pull/4752#issuecomment-2424757291) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#340](https://github.com/InvisibleSymbol/rocketwatch/pull/340#issuecomment-2424260363) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) From 004f743662091ccb4f946430c07ed66bf7af7ec3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 00:50:24 +0000 Subject: [PATCH 2075/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b94aee54..f049fbef 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4114](https://github.com/privacyidea/privacyidea/pull/4114#issuecomment-2426583814) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#166](https://github.com/aimclub/Fedot.Industrial/pull/166#issuecomment-2426452528) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -3. 🗣 Commented on [#141](https://github.com/eastgenomics/eggd_conductor/pull/141#issuecomment-2426088133) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -4. 🗣 Commented on [#941](https://github.com/fury-gl/fury/pull/941#issuecomment-2425720981) in [fury-gl/fury](https://github.com/fury-gl/fury) -5. 🗣 Commented on [#58](https://github.com/foreign-sub/aiofreepybox/pull/58#issuecomment-2425198978) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -6. 🗣 Commented on [#342](https://github.com/InvisibleSymbol/rocketwatch/pull/342#issuecomment-2424869200) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -7. 🗣 Commented on [#4757](https://github.com/MDAnalysis/mdanalysis/pull/4757#issuecomment-2424831029) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#4754](https://github.com/MDAnalysis/mdanalysis/pull/4754#issuecomment-2424792280) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#4752](https://github.com/MDAnalysis/mdanalysis/pull/4752#issuecomment-2424757291) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#340](https://github.com/InvisibleSymbol/rocketwatch/pull/340#issuecomment-2424260363) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +1. 🗣 Commented on [#1489](https://github.com/rpm-software-management/mock/pull/1489#issuecomment-2429026445) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +2. 🗣 Commented on [#4](https://github.com/eastgenomics/clinvar_submissions/pull/4#issuecomment-2428798264) in [eastgenomics/clinvar_submissions](https://github.com/eastgenomics/clinvar_submissions) +3. 🗣 Commented on [#1749](https://github.com/OGGM/oggm/pull/1749#issuecomment-2428011453) in [OGGM/oggm](https://github.com/OGGM/oggm) +4. 🗣 Commented on [#3287](https://github.com/reframe-hpc/reframe/pull/3287#issuecomment-2427847780) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +5. 🗣 Commented on [#450](https://github.com/aria-tools/ARIA-tools/pull/450#issuecomment-2427676829) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +6. 🗣 Commented on [#725](https://github.com/HEXRD/hexrd/pull/725#issuecomment-2427312465) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +7. 🗣 Commented on [#4114](https://github.com/privacyidea/privacyidea/pull/4114#issuecomment-2426583814) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#166](https://github.com/aimclub/Fedot.Industrial/pull/166#issuecomment-2426452528) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +9. 🗣 Commented on [#141](https://github.com/eastgenomics/eggd_conductor/pull/141#issuecomment-2426088133) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +10. 🗣 Commented on [#941](https://github.com/fury-gl/fury/pull/941#issuecomment-2425720981) in [fury-gl/fury](https://github.com/fury-gl/fury) From ae5b08b196e13a4075b0f992fa5779f9615702a3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 24 Oct 2024 00:50:27 +0000 Subject: [PATCH 2076/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f049fbef..fca300d9 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1489](https://github.com/rpm-software-management/mock/pull/1489#issuecomment-2429026445) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -2. 🗣 Commented on [#4](https://github.com/eastgenomics/clinvar_submissions/pull/4#issuecomment-2428798264) in [eastgenomics/clinvar_submissions](https://github.com/eastgenomics/clinvar_submissions) -3. 🗣 Commented on [#1749](https://github.com/OGGM/oggm/pull/1749#issuecomment-2428011453) in [OGGM/oggm](https://github.com/OGGM/oggm) -4. 🗣 Commented on [#3287](https://github.com/reframe-hpc/reframe/pull/3287#issuecomment-2427847780) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -5. 🗣 Commented on [#450](https://github.com/aria-tools/ARIA-tools/pull/450#issuecomment-2427676829) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -6. 🗣 Commented on [#725](https://github.com/HEXRD/hexrd/pull/725#issuecomment-2427312465) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -7. 🗣 Commented on [#4114](https://github.com/privacyidea/privacyidea/pull/4114#issuecomment-2426583814) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#166](https://github.com/aimclub/Fedot.Industrial/pull/166#issuecomment-2426452528) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -9. 🗣 Commented on [#141](https://github.com/eastgenomics/eggd_conductor/pull/141#issuecomment-2426088133) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -10. 🗣 Commented on [#941](https://github.com/fury-gl/fury/pull/941#issuecomment-2425720981) in [fury-gl/fury](https://github.com/fury-gl/fury) +1. 🗣 Commented on [#452](https://github.com/aria-tools/ARIA-tools/pull/452#issuecomment-2433348015) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +2. 🗣 Commented on [#22718](https://github.com/spyder-ide/spyder/pull/22718#issuecomment-2433287381) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#203](https://github.com/mcdougallab/modeldb/pull/203#issuecomment-2433248853) in [mcdougallab/modeldb](https://github.com/mcdougallab/modeldb) +4. 🗣 Commented on [#202](https://github.com/mcdougallab/modeldb/pull/202#issuecomment-2433222666) in [mcdougallab/modeldb](https://github.com/mcdougallab/modeldb) +5. 🗣 Commented on [#9402](https://github.com/statsmodels/statsmodels/pull/9402#issuecomment-2433079717) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +6. 🗣 Commented on [#22](https://github.com/thoth-pub/thoth-loader/pull/22#issuecomment-2432353293) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) +7. 🗣 Commented on [#1957](https://github.com/dipy/dipy/pull/1957#issuecomment-2430239858) in [dipy/dipy](https://github.com/dipy/dipy) +8. 🗣 Commented on [#20](https://github.com/MDAnalysis/mda-openbabel-converter/pull/20#issuecomment-2430167446) in [MDAnalysis/mda-openbabel-converter](https://github.com/MDAnalysis/mda-openbabel-converter) +9. 🗣 Commented on [#21](https://github.com/thoth-pub/thoth-loader/pull/21#issuecomment-2429438322) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) +10. 🗣 Commented on [#1489](https://github.com/rpm-software-management/mock/pull/1489#issuecomment-2429026445) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) From 716d907ae6f582994ce5e8e73398b89f22091d8b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 00:51:04 +0000 Subject: [PATCH 2077/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fca300d9..bbde8009 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#452](https://github.com/aria-tools/ARIA-tools/pull/452#issuecomment-2433348015) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -2. 🗣 Commented on [#22718](https://github.com/spyder-ide/spyder/pull/22718#issuecomment-2433287381) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#203](https://github.com/mcdougallab/modeldb/pull/203#issuecomment-2433248853) in [mcdougallab/modeldb](https://github.com/mcdougallab/modeldb) -4. 🗣 Commented on [#202](https://github.com/mcdougallab/modeldb/pull/202#issuecomment-2433222666) in [mcdougallab/modeldb](https://github.com/mcdougallab/modeldb) -5. 🗣 Commented on [#9402](https://github.com/statsmodels/statsmodels/pull/9402#issuecomment-2433079717) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -6. 🗣 Commented on [#22](https://github.com/thoth-pub/thoth-loader/pull/22#issuecomment-2432353293) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) -7. 🗣 Commented on [#1957](https://github.com/dipy/dipy/pull/1957#issuecomment-2430239858) in [dipy/dipy](https://github.com/dipy/dipy) -8. 🗣 Commented on [#20](https://github.com/MDAnalysis/mda-openbabel-converter/pull/20#issuecomment-2430167446) in [MDAnalysis/mda-openbabel-converter](https://github.com/MDAnalysis/mda-openbabel-converter) -9. 🗣 Commented on [#21](https://github.com/thoth-pub/thoth-loader/pull/21#issuecomment-2429438322) in [thoth-pub/thoth-loader](https://github.com/thoth-pub/thoth-loader) -10. 🗣 Commented on [#1489](https://github.com/rpm-software-management/mock/pull/1489#issuecomment-2429026445) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +1. 🗣 Commented on [#201](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/201#issuecomment-2435721535) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +2. 🗣 Commented on [#151](https://github.com/eastgenomics/trendyQC/pull/151#issuecomment-2434922731) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +3. 🗣 Commented on [#150](https://github.com/eastgenomics/trendyQC/pull/150#issuecomment-2434876604) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +4. 🗣 Commented on [#9407](https://github.com/statsmodels/statsmodels/pull/9407#issuecomment-2434574626) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#179](https://github.com/MDAnalysis/distopia/pull/179#issuecomment-2434201008) in [MDAnalysis/distopia](https://github.com/MDAnalysis/distopia) +6. 🗣 Commented on [#4417](https://github.com/uwcirg/truenth-portal/pull/4417#issuecomment-2434127954) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +7. 🗣 Commented on [#22721](https://github.com/spyder-ide/spyder/pull/22721#issuecomment-2434081447) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#1](https://github.com/2lambda123/RasaHQ-rasa/pull/1#issuecomment-2433701741) in [2lambda123/RasaHQ-rasa](https://github.com/2lambda123/RasaHQ-rasa) +9. 🗣 Commented on [#452](https://github.com/aria-tools/ARIA-tools/pull/452#issuecomment-2433348015) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +10. 🗣 Commented on [#22718](https://github.com/spyder-ide/spyder/pull/22718#issuecomment-2433287381) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 0e2700a7b1e8f5e6f824145c580a64cef25102af Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 26 Oct 2024 00:49:06 +0000 Subject: [PATCH 2078/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bbde8009..298e7511 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#201](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/201#issuecomment-2435721535) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -2. 🗣 Commented on [#151](https://github.com/eastgenomics/trendyQC/pull/151#issuecomment-2434922731) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -3. 🗣 Commented on [#150](https://github.com/eastgenomics/trendyQC/pull/150#issuecomment-2434876604) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -4. 🗣 Commented on [#9407](https://github.com/statsmodels/statsmodels/pull/9407#issuecomment-2434574626) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -5. 🗣 Commented on [#179](https://github.com/MDAnalysis/distopia/pull/179#issuecomment-2434201008) in [MDAnalysis/distopia](https://github.com/MDAnalysis/distopia) -6. 🗣 Commented on [#4417](https://github.com/uwcirg/truenth-portal/pull/4417#issuecomment-2434127954) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -7. 🗣 Commented on [#22721](https://github.com/spyder-ide/spyder/pull/22721#issuecomment-2434081447) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#1](https://github.com/2lambda123/RasaHQ-rasa/pull/1#issuecomment-2433701741) in [2lambda123/RasaHQ-rasa](https://github.com/2lambda123/RasaHQ-rasa) -9. 🗣 Commented on [#452](https://github.com/aria-tools/ARIA-tools/pull/452#issuecomment-2433348015) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -10. 🗣 Commented on [#22718](https://github.com/spyder-ide/spyder/pull/22718#issuecomment-2433287381) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#61](https://github.com/cdfxscrq/PyroGramUserBot/pull/61#issuecomment-2437558333) in [cdfxscrq/PyroGramUserBot](https://github.com/cdfxscrq/PyroGramUserBot) +2. 🗣 Commented on [#4125](https://github.com/privacyidea/privacyidea/pull/4125#issuecomment-2437200949) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#4763](https://github.com/MDAnalysis/mdanalysis/pull/4763#issuecomment-2437132046) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#4761](https://github.com/MDAnalysis/mdanalysis/pull/4761#issuecomment-2436870157) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#535](https://github.com/payu-org/payu/pull/535#issuecomment-2436712087) in [payu-org/payu](https://github.com/payu-org/payu) +6. 🗣 Commented on [#22728](https://github.com/spyder-ide/spyder/pull/22728#issuecomment-2436610075) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#1039](https://github.com/scilus/scilpy/pull/1039#issuecomment-2436303415) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#1156](https://github.com/lmcinnes/umap/pull/1156#issuecomment-2436269827) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +9. 🗣 Commented on [#5962](https://github.com/rhinstaller/anaconda/pull/5962#issuecomment-2436071808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#6](https://github.com/Onset-lab/onsetpy/pull/6#issuecomment-2435887941) in [Onset-lab/onsetpy](https://github.com/Onset-lab/onsetpy) From 2ec2ee802c12abd49120f8a9e11e7328380d0cdf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 27 Oct 2024 00:54:46 +0000 Subject: [PATCH 2079/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 298e7511..3734df28 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#61](https://github.com/cdfxscrq/PyroGramUserBot/pull/61#issuecomment-2437558333) in [cdfxscrq/PyroGramUserBot](https://github.com/cdfxscrq/PyroGramUserBot) -2. 🗣 Commented on [#4125](https://github.com/privacyidea/privacyidea/pull/4125#issuecomment-2437200949) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#4763](https://github.com/MDAnalysis/mdanalysis/pull/4763#issuecomment-2437132046) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#4761](https://github.com/MDAnalysis/mdanalysis/pull/4761#issuecomment-2436870157) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#535](https://github.com/payu-org/payu/pull/535#issuecomment-2436712087) in [payu-org/payu](https://github.com/payu-org/payu) -6. 🗣 Commented on [#22728](https://github.com/spyder-ide/spyder/pull/22728#issuecomment-2436610075) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#1039](https://github.com/scilus/scilpy/pull/1039#issuecomment-2436303415) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#1156](https://github.com/lmcinnes/umap/pull/1156#issuecomment-2436269827) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -9. 🗣 Commented on [#5962](https://github.com/rhinstaller/anaconda/pull/5962#issuecomment-2436071808) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#6](https://github.com/Onset-lab/onsetpy/pull/6#issuecomment-2435887941) in [Onset-lab/onsetpy](https://github.com/Onset-lab/onsetpy) +1. 🗣 Commented on [#4766](https://github.com/MDAnalysis/mdanalysis/pull/4766#issuecomment-2439725945) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#7](https://github.com/foreign-sub/CustomPiOS/pull/7#issuecomment-2439636795) in [foreign-sub/CustomPiOS](https://github.com/foreign-sub/CustomPiOS) +3. 🗣 Commented on [#982](https://github.com/ToFuProject/tofu/pull/982#issuecomment-2439634667) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#2150](https://github.com/rpm-software-management/dnf/pull/2150#issuecomment-2439622575) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +5. 🗣 Commented on [#929](https://github.com/PyThaiNLP/pythainlp/pull/929#issuecomment-2439390672) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#2149](https://github.com/rpm-software-management/dnf/pull/2149#issuecomment-2438560016) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +7. 🗣 Commented on [#61](https://github.com/cdfxscrq/PyroGramUserBot/pull/61#issuecomment-2437558333) in [cdfxscrq/PyroGramUserBot](https://github.com/cdfxscrq/PyroGramUserBot) +8. 🗣 Commented on [#4125](https://github.com/privacyidea/privacyidea/pull/4125#issuecomment-2437200949) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#4763](https://github.com/MDAnalysis/mdanalysis/pull/4763#issuecomment-2437132046) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#4761](https://github.com/MDAnalysis/mdanalysis/pull/4761#issuecomment-2436870157) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 54092f9277115e2860bdc1ab95accd5272a11878 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 00:53:11 +0000 Subject: [PATCH 2080/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3734df28..b735f064 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4766](https://github.com/MDAnalysis/mdanalysis/pull/4766#issuecomment-2439725945) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#7](https://github.com/foreign-sub/CustomPiOS/pull/7#issuecomment-2439636795) in [foreign-sub/CustomPiOS](https://github.com/foreign-sub/CustomPiOS) -3. 🗣 Commented on [#982](https://github.com/ToFuProject/tofu/pull/982#issuecomment-2439634667) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#2150](https://github.com/rpm-software-management/dnf/pull/2150#issuecomment-2439622575) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -5. 🗣 Commented on [#929](https://github.com/PyThaiNLP/pythainlp/pull/929#issuecomment-2439390672) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#2149](https://github.com/rpm-software-management/dnf/pull/2149#issuecomment-2438560016) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -7. 🗣 Commented on [#61](https://github.com/cdfxscrq/PyroGramUserBot/pull/61#issuecomment-2437558333) in [cdfxscrq/PyroGramUserBot](https://github.com/cdfxscrq/PyroGramUserBot) -8. 🗣 Commented on [#4125](https://github.com/privacyidea/privacyidea/pull/4125#issuecomment-2437200949) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#4763](https://github.com/MDAnalysis/mdanalysis/pull/4763#issuecomment-2437132046) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#4761](https://github.com/MDAnalysis/mdanalysis/pull/4761#issuecomment-2436870157) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#87](https://github.com/tj-python/aiohttp/pull/87#issuecomment-2440213210) in [tj-python/aiohttp](https://github.com/tj-python/aiohttp) +2. 🗣 Commented on [#4769](https://github.com/MDAnalysis/mdanalysis/pull/4769#issuecomment-2440164890) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#563](https://github.com/oemof/tespy/pull/563#issuecomment-2440163435) in [oemof/tespy](https://github.com/oemof/tespy) +4. 🗣 Commented on [#4768](https://github.com/MDAnalysis/mdanalysis/pull/4768#issuecomment-2440150431) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#4766](https://github.com/MDAnalysis/mdanalysis/pull/4766#issuecomment-2439725945) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#7](https://github.com/foreign-sub/CustomPiOS/pull/7#issuecomment-2439636795) in [foreign-sub/CustomPiOS](https://github.com/foreign-sub/CustomPiOS) +7. 🗣 Commented on [#982](https://github.com/ToFuProject/tofu/pull/982#issuecomment-2439634667) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#2150](https://github.com/rpm-software-management/dnf/pull/2150#issuecomment-2439622575) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +9. 🗣 Commented on [#929](https://github.com/PyThaiNLP/pythainlp/pull/929#issuecomment-2439390672) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +10. 🗣 Commented on [#2149](https://github.com/rpm-software-management/dnf/pull/2149#issuecomment-2438560016) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) From c47269223726b4357ed694f7de1b8e5403a2485a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 29 Oct 2024 00:52:09 +0000 Subject: [PATCH 2081/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b735f064..c7a2cb31 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#87](https://github.com/tj-python/aiohttp/pull/87#issuecomment-2440213210) in [tj-python/aiohttp](https://github.com/tj-python/aiohttp) -2. 🗣 Commented on [#4769](https://github.com/MDAnalysis/mdanalysis/pull/4769#issuecomment-2440164890) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#563](https://github.com/oemof/tespy/pull/563#issuecomment-2440163435) in [oemof/tespy](https://github.com/oemof/tespy) -4. 🗣 Commented on [#4768](https://github.com/MDAnalysis/mdanalysis/pull/4768#issuecomment-2440150431) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#4766](https://github.com/MDAnalysis/mdanalysis/pull/4766#issuecomment-2439725945) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#7](https://github.com/foreign-sub/CustomPiOS/pull/7#issuecomment-2439636795) in [foreign-sub/CustomPiOS](https://github.com/foreign-sub/CustomPiOS) -7. 🗣 Commented on [#982](https://github.com/ToFuProject/tofu/pull/982#issuecomment-2439634667) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#2150](https://github.com/rpm-software-management/dnf/pull/2150#issuecomment-2439622575) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -9. 🗣 Commented on [#929](https://github.com/PyThaiNLP/pythainlp/pull/929#issuecomment-2439390672) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -10. 🗣 Commented on [#2149](https://github.com/rpm-software-management/dnf/pull/2149#issuecomment-2438560016) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +1. 🗣 Commented on [#22](https://github.com/2lambda123/RasaHQ-rasa/pull/22#issuecomment-2442371434) in [2lambda123/RasaHQ-rasa](https://github.com/2lambda123/RasaHQ-rasa) +2. 🗣 Commented on [#45](https://github.com/ucsusa/pypsa-illinois/pull/45#issuecomment-2442236006) in [ucsusa/pypsa-illinois](https://github.com/ucsusa/pypsa-illinois) +3. 🗣 Commented on [#142](https://github.com/eastgenomics/eggd_conductor/pull/142#issuecomment-2441925521) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +4. 🗣 Commented on [#4770](https://github.com/MDAnalysis/mdanalysis/pull/4770#issuecomment-2441606428) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#21](https://github.com/2lambda123/RasaHQ-rasa/pull/21#issuecomment-2441455459) in [2lambda123/RasaHQ-rasa](https://github.com/2lambda123/RasaHQ-rasa) +6. 🗣 Commented on [#20](https://github.com/2lambda123/RasaHQ-rasa/pull/20#issuecomment-2441454382) in [2lambda123/RasaHQ-rasa](https://github.com/2lambda123/RasaHQ-rasa) +7. 🗣 Commented on [#19](https://github.com/2lambda123/RasaHQ-rasa/pull/19#issuecomment-2441452751) in [2lambda123/RasaHQ-rasa](https://github.com/2lambda123/RasaHQ-rasa) +8. 🗣 Commented on [#18](https://github.com/2lambda123/RasaHQ-rasa/pull/18#issuecomment-2441451655) in [2lambda123/RasaHQ-rasa](https://github.com/2lambda123/RasaHQ-rasa) +9. 🗣 Commented on [#17](https://github.com/2lambda123/RasaHQ-rasa/pull/17#issuecomment-2441450622) in [2lambda123/RasaHQ-rasa](https://github.com/2lambda123/RasaHQ-rasa) +10. 🗣 Commented on [#16](https://github.com/2lambda123/RasaHQ-rasa/pull/16#issuecomment-2441449704) in [2lambda123/RasaHQ-rasa](https://github.com/2lambda123/RasaHQ-rasa) From 7079cadf9d5ca685391548fe516a259750894d6e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2024 00:51:22 +0000 Subject: [PATCH 2082/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c7a2cb31..12106851 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#22](https://github.com/2lambda123/RasaHQ-rasa/pull/22#issuecomment-2442371434) in [2lambda123/RasaHQ-rasa](https://github.com/2lambda123/RasaHQ-rasa) -2. 🗣 Commented on [#45](https://github.com/ucsusa/pypsa-illinois/pull/45#issuecomment-2442236006) in [ucsusa/pypsa-illinois](https://github.com/ucsusa/pypsa-illinois) -3. 🗣 Commented on [#142](https://github.com/eastgenomics/eggd_conductor/pull/142#issuecomment-2441925521) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -4. 🗣 Commented on [#4770](https://github.com/MDAnalysis/mdanalysis/pull/4770#issuecomment-2441606428) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#21](https://github.com/2lambda123/RasaHQ-rasa/pull/21#issuecomment-2441455459) in [2lambda123/RasaHQ-rasa](https://github.com/2lambda123/RasaHQ-rasa) -6. 🗣 Commented on [#20](https://github.com/2lambda123/RasaHQ-rasa/pull/20#issuecomment-2441454382) in [2lambda123/RasaHQ-rasa](https://github.com/2lambda123/RasaHQ-rasa) -7. 🗣 Commented on [#19](https://github.com/2lambda123/RasaHQ-rasa/pull/19#issuecomment-2441452751) in [2lambda123/RasaHQ-rasa](https://github.com/2lambda123/RasaHQ-rasa) -8. 🗣 Commented on [#18](https://github.com/2lambda123/RasaHQ-rasa/pull/18#issuecomment-2441451655) in [2lambda123/RasaHQ-rasa](https://github.com/2lambda123/RasaHQ-rasa) -9. 🗣 Commented on [#17](https://github.com/2lambda123/RasaHQ-rasa/pull/17#issuecomment-2441450622) in [2lambda123/RasaHQ-rasa](https://github.com/2lambda123/RasaHQ-rasa) -10. 🗣 Commented on [#16](https://github.com/2lambda123/RasaHQ-rasa/pull/16#issuecomment-2441449704) in [2lambda123/RasaHQ-rasa](https://github.com/2lambda123/RasaHQ-rasa) +1. 🗣 Commented on [#1157](https://github.com/lmcinnes/umap/pull/1157#issuecomment-2444364159) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +2. 🗣 Commented on [#1041](https://github.com/scilus/scilpy/pull/1041#issuecomment-2444122102) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#4773](https://github.com/MDAnalysis/mdanalysis/pull/4773#issuecomment-2444038206) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#4134](https://github.com/privacyidea/privacyidea/pull/4134#issuecomment-2443865012) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#202](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/202#issuecomment-2443626222) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +6. 🗣 Commented on [#5969](https://github.com/rhinstaller/anaconda/pull/5969#issuecomment-2443387005) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#819](https://github.com/spatialaudio/nbsphinx/pull/819#issuecomment-2442663329) in [spatialaudio/nbsphinx](https://github.com/spatialaudio/nbsphinx) +8. 🗣 Commented on [#4132](https://github.com/privacyidea/privacyidea/pull/4132#issuecomment-2442386905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#22](https://github.com/2lambda123/RasaHQ-rasa/pull/22#issuecomment-2442371434) in [2lambda123/RasaHQ-rasa](https://github.com/2lambda123/RasaHQ-rasa) +10. 🗣 Commented on [#45](https://github.com/ucsusa/pypsa-illinois/pull/45#issuecomment-2442236006) in [ucsusa/pypsa-illinois](https://github.com/ucsusa/pypsa-illinois) From e5e6a88a6c878e682adef01b4c915fbf68657051 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 31 Oct 2024 00:51:40 +0000 Subject: [PATCH 2083/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 12106851..3e9f689c 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1157](https://github.com/lmcinnes/umap/pull/1157#issuecomment-2444364159) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -2. 🗣 Commented on [#1041](https://github.com/scilus/scilpy/pull/1041#issuecomment-2444122102) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#4773](https://github.com/MDAnalysis/mdanalysis/pull/4773#issuecomment-2444038206) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#4134](https://github.com/privacyidea/privacyidea/pull/4134#issuecomment-2443865012) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#202](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/202#issuecomment-2443626222) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -6. 🗣 Commented on [#5969](https://github.com/rhinstaller/anaconda/pull/5969#issuecomment-2443387005) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#819](https://github.com/spatialaudio/nbsphinx/pull/819#issuecomment-2442663329) in [spatialaudio/nbsphinx](https://github.com/spatialaudio/nbsphinx) -8. 🗣 Commented on [#4132](https://github.com/privacyidea/privacyidea/pull/4132#issuecomment-2442386905) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#22](https://github.com/2lambda123/RasaHQ-rasa/pull/22#issuecomment-2442371434) in [2lambda123/RasaHQ-rasa](https://github.com/2lambda123/RasaHQ-rasa) -10. 🗣 Commented on [#45](https://github.com/ucsusa/pypsa-illinois/pull/45#issuecomment-2442236006) in [ucsusa/pypsa-illinois](https://github.com/ucsusa/pypsa-illinois) +1. 🗣 Commented on [#454](https://github.com/aria-tools/ARIA-tools/pull/454#issuecomment-2445670222) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +2. 🗣 Commented on [#750](https://github.com/bashtage/arch/pull/750#issuecomment-2445517765) in [bashtage/arch](https://github.com/bashtage/arch) +3. 🗣 Commented on [#303](https://github.com/boutproject/xBOUT/pull/303#issuecomment-2445387451) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) +4. 🗣 Commented on [#1043](https://github.com/scilus/scilpy/pull/1043#issuecomment-2444992732) in [scilus/scilpy](https://github.com/scilus/scilpy) +5. 🗣 Commented on [#670](https://github.com/aramis-lab/clinicadl/pull/670#issuecomment-2444820353) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) +6. 🗣 Commented on [#1157](https://github.com/lmcinnes/umap/pull/1157#issuecomment-2444364159) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +7. 🗣 Commented on [#1041](https://github.com/scilus/scilpy/pull/1041#issuecomment-2444122102) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#4773](https://github.com/MDAnalysis/mdanalysis/pull/4773#issuecomment-2444038206) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#4134](https://github.com/privacyidea/privacyidea/pull/4134#issuecomment-2443865012) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +10. 🗣 Commented on [#202](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/202#issuecomment-2443626222) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) From af5ba6ad9740673153726a2988647e3473587702 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 00:55:23 +0000 Subject: [PATCH 2084/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3e9f689c..91aa17be 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#454](https://github.com/aria-tools/ARIA-tools/pull/454#issuecomment-2445670222) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -2. 🗣 Commented on [#750](https://github.com/bashtage/arch/pull/750#issuecomment-2445517765) in [bashtage/arch](https://github.com/bashtage/arch) -3. 🗣 Commented on [#303](https://github.com/boutproject/xBOUT/pull/303#issuecomment-2445387451) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) -4. 🗣 Commented on [#1043](https://github.com/scilus/scilpy/pull/1043#issuecomment-2444992732) in [scilus/scilpy](https://github.com/scilus/scilpy) -5. 🗣 Commented on [#670](https://github.com/aramis-lab/clinicadl/pull/670#issuecomment-2444820353) in [aramis-lab/clinicadl](https://github.com/aramis-lab/clinicadl) -6. 🗣 Commented on [#1157](https://github.com/lmcinnes/umap/pull/1157#issuecomment-2444364159) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -7. 🗣 Commented on [#1041](https://github.com/scilus/scilpy/pull/1041#issuecomment-2444122102) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#4773](https://github.com/MDAnalysis/mdanalysis/pull/4773#issuecomment-2444038206) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#4134](https://github.com/privacyidea/privacyidea/pull/4134#issuecomment-2443865012) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -10. 🗣 Commented on [#202](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/202#issuecomment-2443626222) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +1. 🗣 Commented on [#204](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/204#issuecomment-2449491902) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +2. 🗣 Commented on [#1657](https://github.com/spacetelescope/jwql/pull/1657#issuecomment-2447991199) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +3. 🗣 Commented on [#230](https://github.com/UKRIN-MAPS/ukat/pull/230#issuecomment-2447799466) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) +4. 🗣 Commented on [#650](https://github.com/tableau/TabPy/pull/650#issuecomment-2447559084) in [tableau/TabPy](https://github.com/tableau/TabPy) +5. 🗣 Commented on [#5](https://github.com/NASA-Planetary-Science/CCAM_PROSPECT/pull/5#issuecomment-2447555284) in [NASA-Planetary-Science/CCAM_PROSPECT](https://github.com/NASA-Planetary-Science/CCAM_PROSPECT) +6. 🗣 Commented on [#3018](https://github.com/metabrainz/listenbrainz-server/pull/3018#issuecomment-2447287571) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#454](https://github.com/aria-tools/ARIA-tools/pull/454#issuecomment-2445670222) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +8. 🗣 Commented on [#750](https://github.com/bashtage/arch/pull/750#issuecomment-2445517765) in [bashtage/arch](https://github.com/bashtage/arch) +9. 🗣 Commented on [#303](https://github.com/boutproject/xBOUT/pull/303#issuecomment-2445387451) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) +10. 🗣 Commented on [#1043](https://github.com/scilus/scilpy/pull/1043#issuecomment-2444992732) in [scilus/scilpy](https://github.com/scilus/scilpy) From 2c15b5d7127be9d3b7edf1ec9f8d9829db588346 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Nov 2024 00:49:59 +0000 Subject: [PATCH 2085/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 91aa17be..f291b6e2 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#204](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/204#issuecomment-2449491902) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -2. 🗣 Commented on [#1657](https://github.com/spacetelescope/jwql/pull/1657#issuecomment-2447991199) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -3. 🗣 Commented on [#230](https://github.com/UKRIN-MAPS/ukat/pull/230#issuecomment-2447799466) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) -4. 🗣 Commented on [#650](https://github.com/tableau/TabPy/pull/650#issuecomment-2447559084) in [tableau/TabPy](https://github.com/tableau/TabPy) -5. 🗣 Commented on [#5](https://github.com/NASA-Planetary-Science/CCAM_PROSPECT/pull/5#issuecomment-2447555284) in [NASA-Planetary-Science/CCAM_PROSPECT](https://github.com/NASA-Planetary-Science/CCAM_PROSPECT) -6. 🗣 Commented on [#3018](https://github.com/metabrainz/listenbrainz-server/pull/3018#issuecomment-2447287571) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#454](https://github.com/aria-tools/ARIA-tools/pull/454#issuecomment-2445670222) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -8. 🗣 Commented on [#750](https://github.com/bashtage/arch/pull/750#issuecomment-2445517765) in [bashtage/arch](https://github.com/bashtage/arch) -9. 🗣 Commented on [#303](https://github.com/boutproject/xBOUT/pull/303#issuecomment-2445387451) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) -10. 🗣 Commented on [#1043](https://github.com/scilus/scilpy/pull/1043#issuecomment-2444992732) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#27](https://github.com/eastgenomics/s3_upload/pull/27#issuecomment-2451666883) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +2. 🗣 Commented on [#953](https://github.com/PyThaiNLP/pythainlp/pull/953#issuecomment-2451374733) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#248](https://github.com/scil-vital/dwi_ml/pull/248#issuecomment-2450423035) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +4. 🗣 Commented on [#143](https://github.com/eastgenomics/eggd_conductor/pull/143#issuecomment-2450267735) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +5. 🗣 Commented on [#1045](https://github.com/scilus/scilpy/pull/1045#issuecomment-2449959674) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#26](https://github.com/eastgenomics/s3_upload/pull/26#issuecomment-2449850058) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +7. 🗣 Commented on [#204](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/204#issuecomment-2449491902) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +8. 🗣 Commented on [#1657](https://github.com/spacetelescope/jwql/pull/1657#issuecomment-2447991199) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#230](https://github.com/UKRIN-MAPS/ukat/pull/230#issuecomment-2447799466) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) +10. 🗣 Commented on [#650](https://github.com/tableau/TabPy/pull/650#issuecomment-2447559084) in [tableau/TabPy](https://github.com/tableau/TabPy) From a70bef458494ea5c694048d4fbaf58ed665c4af7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 3 Nov 2024 00:54:41 +0000 Subject: [PATCH 2086/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f291b6e2..fdc884c0 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#27](https://github.com/eastgenomics/s3_upload/pull/27#issuecomment-2451666883) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -2. 🗣 Commented on [#953](https://github.com/PyThaiNLP/pythainlp/pull/953#issuecomment-2451374733) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#248](https://github.com/scil-vital/dwi_ml/pull/248#issuecomment-2450423035) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -4. 🗣 Commented on [#143](https://github.com/eastgenomics/eggd_conductor/pull/143#issuecomment-2450267735) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -5. 🗣 Commented on [#1045](https://github.com/scilus/scilpy/pull/1045#issuecomment-2449959674) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#26](https://github.com/eastgenomics/s3_upload/pull/26#issuecomment-2449850058) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -7. 🗣 Commented on [#204](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/204#issuecomment-2449491902) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) -8. 🗣 Commented on [#1657](https://github.com/spacetelescope/jwql/pull/1657#issuecomment-2447991199) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#230](https://github.com/UKRIN-MAPS/ukat/pull/230#issuecomment-2447799466) in [UKRIN-MAPS/ukat](https://github.com/UKRIN-MAPS/ukat) -10. 🗣 Commented on [#650](https://github.com/tableau/TabPy/pull/650#issuecomment-2447559084) in [tableau/TabPy](https://github.com/tableau/TabPy) +1. 🗣 Commented on [#2172](https://github.com/OpenSCAP/openscap/pull/2172#issuecomment-2453037136) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +2. 🗣 Commented on [#305](https://github.com/boutproject/xBOUT/pull/305#issuecomment-2452466734) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) +3. 🗣 Commented on [#1145](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1145#issuecomment-2452325729) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#27](https://github.com/eastgenomics/s3_upload/pull/27#issuecomment-2451666883) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +5. 🗣 Commented on [#953](https://github.com/PyThaiNLP/pythainlp/pull/953#issuecomment-2451374733) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#248](https://github.com/scil-vital/dwi_ml/pull/248#issuecomment-2450423035) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) +7. 🗣 Commented on [#143](https://github.com/eastgenomics/eggd_conductor/pull/143#issuecomment-2450267735) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +8. 🗣 Commented on [#1045](https://github.com/scilus/scilpy/pull/1045#issuecomment-2449959674) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#26](https://github.com/eastgenomics/s3_upload/pull/26#issuecomment-2449850058) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +10. 🗣 Commented on [#204](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/204#issuecomment-2449491902) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) From 0580e21e52e3f4e58fe67bc05f91f3d5a08129ac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 00:52:42 +0000 Subject: [PATCH 2087/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fdc884c0..60e4b4f9 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2172](https://github.com/OpenSCAP/openscap/pull/2172#issuecomment-2453037136) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -2. 🗣 Commented on [#305](https://github.com/boutproject/xBOUT/pull/305#issuecomment-2452466734) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) -3. 🗣 Commented on [#1145](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1145#issuecomment-2452325729) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#27](https://github.com/eastgenomics/s3_upload/pull/27#issuecomment-2451666883) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -5. 🗣 Commented on [#953](https://github.com/PyThaiNLP/pythainlp/pull/953#issuecomment-2451374733) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#248](https://github.com/scil-vital/dwi_ml/pull/248#issuecomment-2450423035) in [scil-vital/dwi_ml](https://github.com/scil-vital/dwi_ml) -7. 🗣 Commented on [#143](https://github.com/eastgenomics/eggd_conductor/pull/143#issuecomment-2450267735) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -8. 🗣 Commented on [#1045](https://github.com/scilus/scilpy/pull/1045#issuecomment-2449959674) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#26](https://github.com/eastgenomics/s3_upload/pull/26#issuecomment-2449850058) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -10. 🗣 Commented on [#204](https://github.com/eastgenomics/eggd_generate_variant_workbook/pull/204#issuecomment-2449491902) in [eastgenomics/eggd_generate_variant_workbook](https://github.com/eastgenomics/eggd_generate_variant_workbook) +1. 🗣 Commented on [#928](https://github.com/spacetelescope/webbpsf/pull/928#issuecomment-2453535716) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +2. 🗣 Commented on [#685](https://github.com/SergeyPirogov/webdriver_manager/pull/685#issuecomment-2453503010) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +3. 🗣 Commented on [#2](https://github.com/2lambda123/aws-serverless-application-model/pull/2#issuecomment-2453488867) in [2lambda123/aws-serverless-application-model](https://github.com/2lambda123/aws-serverless-application-model) +4. 🗣 Commented on [#6](https://github.com/2lambda123/aws-aws-cli/pull/6#issuecomment-2453482670) in [2lambda123/aws-aws-cli](https://github.com/2lambda123/aws-aws-cli) +5. 🗣 Commented on [#2](https://github.com/2lambda123/MotorolaSolutions-cerbero/pull/2#issuecomment-2453458732) in [2lambda123/MotorolaSolutions-cerbero](https://github.com/2lambda123/MotorolaSolutions-cerbero) +6. 🗣 Commented on [#3](https://github.com/2lambda123/dowjones-hammer/pull/3#issuecomment-2453446466) in [2lambda123/dowjones-hammer](https://github.com/2lambda123/dowjones-hammer) +7. 🗣 Commented on [#977](https://github.com/PyThaiNLP/pythainlp/pull/977#issuecomment-2453446159) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +8. 🗣 Commented on [#2](https://github.com/2lambda123/OpenRarity-open-rarity/pull/2#issuecomment-2453445763) in [2lambda123/OpenRarity-open-rarity](https://github.com/2lambda123/OpenRarity-open-rarity) +9. 🗣 Commented on [#2](https://github.com/2lambda123/wallix-redemption/pull/2#issuecomment-2453421933) in [2lambda123/wallix-redemption](https://github.com/2lambda123/wallix-redemption) +10. 🗣 Commented on [#3016](https://github.com/metabrainz/listenbrainz-server/pull/3016#issuecomment-2453410945) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From a7468b09376ded04e14e29b7b6bf62009f7165bd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Nov 2024 00:49:43 +0000 Subject: [PATCH 2088/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 60e4b4f9..2f000bf9 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#928](https://github.com/spacetelescope/webbpsf/pull/928#issuecomment-2453535716) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -2. 🗣 Commented on [#685](https://github.com/SergeyPirogov/webdriver_manager/pull/685#issuecomment-2453503010) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -3. 🗣 Commented on [#2](https://github.com/2lambda123/aws-serverless-application-model/pull/2#issuecomment-2453488867) in [2lambda123/aws-serverless-application-model](https://github.com/2lambda123/aws-serverless-application-model) -4. 🗣 Commented on [#6](https://github.com/2lambda123/aws-aws-cli/pull/6#issuecomment-2453482670) in [2lambda123/aws-aws-cli](https://github.com/2lambda123/aws-aws-cli) -5. 🗣 Commented on [#2](https://github.com/2lambda123/MotorolaSolutions-cerbero/pull/2#issuecomment-2453458732) in [2lambda123/MotorolaSolutions-cerbero](https://github.com/2lambda123/MotorolaSolutions-cerbero) -6. 🗣 Commented on [#3](https://github.com/2lambda123/dowjones-hammer/pull/3#issuecomment-2453446466) in [2lambda123/dowjones-hammer](https://github.com/2lambda123/dowjones-hammer) -7. 🗣 Commented on [#977](https://github.com/PyThaiNLP/pythainlp/pull/977#issuecomment-2453446159) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -8. 🗣 Commented on [#2](https://github.com/2lambda123/OpenRarity-open-rarity/pull/2#issuecomment-2453445763) in [2lambda123/OpenRarity-open-rarity](https://github.com/2lambda123/OpenRarity-open-rarity) -9. 🗣 Commented on [#2](https://github.com/2lambda123/wallix-redemption/pull/2#issuecomment-2453421933) in [2lambda123/wallix-redemption](https://github.com/2lambda123/wallix-redemption) -10. 🗣 Commented on [#3016](https://github.com/metabrainz/listenbrainz-server/pull/3016#issuecomment-2453410945) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1022](https://github.com/scilus/scilpy/pull/1022#issuecomment-2454993274) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#145](https://github.com/eastgenomics/eggd_conductor/pull/145#issuecomment-2454829979) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +3. 🗣 Commented on [#144](https://github.com/eastgenomics/eggd_conductor/pull/144#issuecomment-2454625539) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +4. 🗣 Commented on [#31](https://github.com/eastgenomics/s3_upload/pull/31#issuecomment-2454559780) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +5. 🗣 Commented on [#928](https://github.com/spacetelescope/webbpsf/pull/928#issuecomment-2453535716) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +6. 🗣 Commented on [#685](https://github.com/SergeyPirogov/webdriver_manager/pull/685#issuecomment-2453503010) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) +7. 🗣 Commented on [#2](https://github.com/2lambda123/aws-serverless-application-model/pull/2#issuecomment-2453488867) in [2lambda123/aws-serverless-application-model](https://github.com/2lambda123/aws-serverless-application-model) +8. 🗣 Commented on [#6](https://github.com/2lambda123/aws-aws-cli/pull/6#issuecomment-2453482670) in [2lambda123/aws-aws-cli](https://github.com/2lambda123/aws-aws-cli) +9. 🗣 Commented on [#2](https://github.com/2lambda123/MotorolaSolutions-cerbero/pull/2#issuecomment-2453458732) in [2lambda123/MotorolaSolutions-cerbero](https://github.com/2lambda123/MotorolaSolutions-cerbero) +10. 🗣 Commented on [#3](https://github.com/2lambda123/dowjones-hammer/pull/3#issuecomment-2453446466) in [2lambda123/dowjones-hammer](https://github.com/2lambda123/dowjones-hammer) From 3eb113594ec8351a5063fe75859f6e1c6656e42e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 00:49:47 +0000 Subject: [PATCH 2089/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2f000bf9..c73a5ca5 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1022](https://github.com/scilus/scilpy/pull/1022#issuecomment-2454993274) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#145](https://github.com/eastgenomics/eggd_conductor/pull/145#issuecomment-2454829979) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -3. 🗣 Commented on [#144](https://github.com/eastgenomics/eggd_conductor/pull/144#issuecomment-2454625539) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -4. 🗣 Commented on [#31](https://github.com/eastgenomics/s3_upload/pull/31#issuecomment-2454559780) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -5. 🗣 Commented on [#928](https://github.com/spacetelescope/webbpsf/pull/928#issuecomment-2453535716) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -6. 🗣 Commented on [#685](https://github.com/SergeyPirogov/webdriver_manager/pull/685#issuecomment-2453503010) in [SergeyPirogov/webdriver_manager](https://github.com/SergeyPirogov/webdriver_manager) -7. 🗣 Commented on [#2](https://github.com/2lambda123/aws-serverless-application-model/pull/2#issuecomment-2453488867) in [2lambda123/aws-serverless-application-model](https://github.com/2lambda123/aws-serverless-application-model) -8. 🗣 Commented on [#6](https://github.com/2lambda123/aws-aws-cli/pull/6#issuecomment-2453482670) in [2lambda123/aws-aws-cli](https://github.com/2lambda123/aws-aws-cli) -9. 🗣 Commented on [#2](https://github.com/2lambda123/MotorolaSolutions-cerbero/pull/2#issuecomment-2453458732) in [2lambda123/MotorolaSolutions-cerbero](https://github.com/2lambda123/MotorolaSolutions-cerbero) -10. 🗣 Commented on [#3](https://github.com/2lambda123/dowjones-hammer/pull/3#issuecomment-2453446466) in [2lambda123/dowjones-hammer](https://github.com/2lambda123/dowjones-hammer) +1. 🗣 Commented on [#153](https://github.com/eastgenomics/trendyQC/pull/153#issuecomment-2457032176) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +2. 🗣 Commented on [#1580](https://github.com/Open-CAS/open-cas-linux/pull/1580#issuecomment-2456838675) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +3. 🗣 Commented on [#26](https://github.com/Open-CAS/test-framework/pull/26#issuecomment-2456830951) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) +4. 🗣 Commented on [#1751](https://github.com/HEXRD/hexrdgui/pull/1751#issuecomment-2455848969) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +5. 🗣 Commented on [#1046](https://github.com/scilus/scilpy/pull/1046#issuecomment-2455476864) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#4](https://github.com/2lambda123/OpenRarity-open-rarity/pull/4#issuecomment-2455460806) in [2lambda123/OpenRarity-open-rarity](https://github.com/2lambda123/OpenRarity-open-rarity) +7. 🗣 Commented on [#1022](https://github.com/scilus/scilpy/pull/1022#issuecomment-2454993274) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#145](https://github.com/eastgenomics/eggd_conductor/pull/145#issuecomment-2454829979) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +9. 🗣 Commented on [#144](https://github.com/eastgenomics/eggd_conductor/pull/144#issuecomment-2454625539) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +10. 🗣 Commented on [#31](https://github.com/eastgenomics/s3_upload/pull/31#issuecomment-2454559780) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) From 50cc928eda123a0a5f93557fae8e2b8cdffe7004 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Nov 2024 00:49:48 +0000 Subject: [PATCH 2090/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index c73a5ca5..43472cba 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#153](https://github.com/eastgenomics/trendyQC/pull/153#issuecomment-2457032176) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -2. 🗣 Commented on [#1580](https://github.com/Open-CAS/open-cas-linux/pull/1580#issuecomment-2456838675) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -3. 🗣 Commented on [#26](https://github.com/Open-CAS/test-framework/pull/26#issuecomment-2456830951) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) -4. 🗣 Commented on [#1751](https://github.com/HEXRD/hexrdgui/pull/1751#issuecomment-2455848969) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -5. 🗣 Commented on [#1046](https://github.com/scilus/scilpy/pull/1046#issuecomment-2455476864) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#4](https://github.com/2lambda123/OpenRarity-open-rarity/pull/4#issuecomment-2455460806) in [2lambda123/OpenRarity-open-rarity](https://github.com/2lambda123/OpenRarity-open-rarity) -7. 🗣 Commented on [#1022](https://github.com/scilus/scilpy/pull/1022#issuecomment-2454993274) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#145](https://github.com/eastgenomics/eggd_conductor/pull/145#issuecomment-2454829979) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -9. 🗣 Commented on [#144](https://github.com/eastgenomics/eggd_conductor/pull/144#issuecomment-2454625539) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -10. 🗣 Commented on [#31](https://github.com/eastgenomics/s3_upload/pull/31#issuecomment-2454559780) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +1. 🗣 Commented on [#3026](https://github.com/metabrainz/listenbrainz-server/pull/3026#issuecomment-2460202162) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#2](https://github.com/2lambda123/micropython-micropython/pull/2#issuecomment-2460188406) in [2lambda123/micropython-micropython](https://github.com/2lambda123/micropython-micropython) +3. 🗣 Commented on [#167](https://github.com/aimclub/Fedot.Industrial/pull/167#issuecomment-2460065506) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +4. 🗣 Commented on [#58](https://github.com/cirKITers/qml-essentials/pull/58#issuecomment-2460006193) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +5. 🗣 Commented on [#27](https://github.com/Open-CAS/test-framework/pull/27#issuecomment-2459832308) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) +6. 🗣 Commented on [#1](https://github.com/2lambda123/dowjones-tokendito/pull/1#issuecomment-2459683089) in [2lambda123/dowjones-tokendito](https://github.com/2lambda123/dowjones-tokendito) +7. 🗣 Commented on [#5982](https://github.com/rhinstaller/anaconda/pull/5982#issuecomment-2457747870) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#35](https://github.com/eastgenomics/s3_upload/pull/35#issuecomment-2457665425) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +9. 🗣 Commented on [#3](https://github.com/2lambda123/cda-tum-fiction/pull/3#issuecomment-2457626812) in [2lambda123/cda-tum-fiction](https://github.com/2lambda123/cda-tum-fiction) +10. 🗣 Commented on [#4129](https://github.com/privacyidea/privacyidea/pull/4129#issuecomment-2457490226) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) From c82c6bb07984fda51c08b5152b6035f1dde6e0b0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 8 Nov 2024 00:49:44 +0000 Subject: [PATCH 2091/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 43472cba..bc40c996 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3026](https://github.com/metabrainz/listenbrainz-server/pull/3026#issuecomment-2460202162) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#2](https://github.com/2lambda123/micropython-micropython/pull/2#issuecomment-2460188406) in [2lambda123/micropython-micropython](https://github.com/2lambda123/micropython-micropython) -3. 🗣 Commented on [#167](https://github.com/aimclub/Fedot.Industrial/pull/167#issuecomment-2460065506) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -4. 🗣 Commented on [#58](https://github.com/cirKITers/qml-essentials/pull/58#issuecomment-2460006193) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -5. 🗣 Commented on [#27](https://github.com/Open-CAS/test-framework/pull/27#issuecomment-2459832308) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) -6. 🗣 Commented on [#1](https://github.com/2lambda123/dowjones-tokendito/pull/1#issuecomment-2459683089) in [2lambda123/dowjones-tokendito](https://github.com/2lambda123/dowjones-tokendito) -7. 🗣 Commented on [#5982](https://github.com/rhinstaller/anaconda/pull/5982#issuecomment-2457747870) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#35](https://github.com/eastgenomics/s3_upload/pull/35#issuecomment-2457665425) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -9. 🗣 Commented on [#3](https://github.com/2lambda123/cda-tum-fiction/pull/3#issuecomment-2457626812) in [2lambda123/cda-tum-fiction](https://github.com/2lambda123/cda-tum-fiction) -10. 🗣 Commented on [#4129](https://github.com/privacyidea/privacyidea/pull/4129#issuecomment-2457490226) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +1. 🗣 Commented on [#2](https://github.com/2lambda123/midjourney-flax/pull/2#issuecomment-2462312205) in [2lambda123/midjourney-flax](https://github.com/2lambda123/midjourney-flax) +2. 🗣 Commented on [#2](https://github.com/2lambda123/apirrone-Memento/pull/2#issuecomment-2462302714) in [2lambda123/apirrone-Memento](https://github.com/2lambda123/apirrone-Memento) +3. 🗣 Commented on [#13](https://github.com/eastgenomics/RD_requests/pull/13#issuecomment-2461742023) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) +4. 🗣 Commented on [#378](https://github.com/cleder/fastkml/pull/378#issuecomment-2461381439) in [cleder/fastkml](https://github.com/cleder/fastkml) +5. 🗣 Commented on [#2155](https://github.com/rpm-software-management/dnf/pull/2155#issuecomment-2461267078) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +6. 🗣 Commented on [#365](https://github.com/TIGRLab/datman/pull/365#issuecomment-2461010285) in [TIGRLab/datman](https://github.com/TIGRLab/datman) +7. 🗣 Commented on [#3026](https://github.com/metabrainz/listenbrainz-server/pull/3026#issuecomment-2460202162) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#2](https://github.com/2lambda123/micropython-micropython/pull/2#issuecomment-2460188406) in [2lambda123/micropython-micropython](https://github.com/2lambda123/micropython-micropython) +9. 🗣 Commented on [#167](https://github.com/aimclub/Fedot.Industrial/pull/167#issuecomment-2460065506) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) +10. 🗣 Commented on [#58](https://github.com/cirKITers/qml-essentials/pull/58#issuecomment-2460006193) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) From bf234f1c96235b5f5ef232958a735673162a808e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Nov 2024 00:47:53 +0000 Subject: [PATCH 2092/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bc40c996..d4e4da66 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#2](https://github.com/2lambda123/midjourney-flax/pull/2#issuecomment-2462312205) in [2lambda123/midjourney-flax](https://github.com/2lambda123/midjourney-flax) -2. 🗣 Commented on [#2](https://github.com/2lambda123/apirrone-Memento/pull/2#issuecomment-2462302714) in [2lambda123/apirrone-Memento](https://github.com/2lambda123/apirrone-Memento) -3. 🗣 Commented on [#13](https://github.com/eastgenomics/RD_requests/pull/13#issuecomment-2461742023) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) -4. 🗣 Commented on [#378](https://github.com/cleder/fastkml/pull/378#issuecomment-2461381439) in [cleder/fastkml](https://github.com/cleder/fastkml) -5. 🗣 Commented on [#2155](https://github.com/rpm-software-management/dnf/pull/2155#issuecomment-2461267078) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -6. 🗣 Commented on [#365](https://github.com/TIGRLab/datman/pull/365#issuecomment-2461010285) in [TIGRLab/datman](https://github.com/TIGRLab/datman) -7. 🗣 Commented on [#3026](https://github.com/metabrainz/listenbrainz-server/pull/3026#issuecomment-2460202162) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#2](https://github.com/2lambda123/micropython-micropython/pull/2#issuecomment-2460188406) in [2lambda123/micropython-micropython](https://github.com/2lambda123/micropython-micropython) -9. 🗣 Commented on [#167](https://github.com/aimclub/Fedot.Industrial/pull/167#issuecomment-2460065506) in [aimclub/Fedot.Industrial](https://github.com/aimclub/Fedot.Industrial) -10. 🗣 Commented on [#58](https://github.com/cirKITers/qml-essentials/pull/58#issuecomment-2460006193) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +1. 🗣 Commented on [#1754](https://github.com/HEXRD/hexrdgui/pull/1754#issuecomment-2463528683) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +2. 🗣 Commented on [#4423](https://github.com/uwcirg/truenth-portal/pull/4423#issuecomment-2463464001) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +3. 🗣 Commented on [#1048](https://github.com/scilus/scilpy/pull/1048#issuecomment-2463308377) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#24](https://github.com/Open-CAS/test-framework/pull/24#issuecomment-2462863313) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) +5. 🗣 Commented on [#2](https://github.com/2lambda123/midjourney-flax/pull/2#issuecomment-2462312205) in [2lambda123/midjourney-flax](https://github.com/2lambda123/midjourney-flax) +6. 🗣 Commented on [#2](https://github.com/2lambda123/apirrone-Memento/pull/2#issuecomment-2462302714) in [2lambda123/apirrone-Memento](https://github.com/2lambda123/apirrone-Memento) +7. 🗣 Commented on [#13](https://github.com/eastgenomics/RD_requests/pull/13#issuecomment-2461742023) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) +8. 🗣 Commented on [#378](https://github.com/cleder/fastkml/pull/378#issuecomment-2461381439) in [cleder/fastkml](https://github.com/cleder/fastkml) +9. 🗣 Commented on [#2155](https://github.com/rpm-software-management/dnf/pull/2155#issuecomment-2461267078) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +10. 🗣 Commented on [#365](https://github.com/TIGRLab/datman/pull/365#issuecomment-2461010285) in [TIGRLab/datman](https://github.com/TIGRLab/datman) From c3fb3b0e00c68650f92fe9f82c1ad212fc594bc9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 10 Nov 2024 00:53:18 +0000 Subject: [PATCH 2093/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d4e4da66..d05872d4 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1754](https://github.com/HEXRD/hexrdgui/pull/1754#issuecomment-2463528683) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -2. 🗣 Commented on [#4423](https://github.com/uwcirg/truenth-portal/pull/4423#issuecomment-2463464001) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -3. 🗣 Commented on [#1048](https://github.com/scilus/scilpy/pull/1048#issuecomment-2463308377) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#24](https://github.com/Open-CAS/test-framework/pull/24#issuecomment-2462863313) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) -5. 🗣 Commented on [#2](https://github.com/2lambda123/midjourney-flax/pull/2#issuecomment-2462312205) in [2lambda123/midjourney-flax](https://github.com/2lambda123/midjourney-flax) -6. 🗣 Commented on [#2](https://github.com/2lambda123/apirrone-Memento/pull/2#issuecomment-2462302714) in [2lambda123/apirrone-Memento](https://github.com/2lambda123/apirrone-Memento) -7. 🗣 Commented on [#13](https://github.com/eastgenomics/RD_requests/pull/13#issuecomment-2461742023) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) -8. 🗣 Commented on [#378](https://github.com/cleder/fastkml/pull/378#issuecomment-2461381439) in [cleder/fastkml](https://github.com/cleder/fastkml) -9. 🗣 Commented on [#2155](https://github.com/rpm-software-management/dnf/pull/2155#issuecomment-2461267078) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -10. 🗣 Commented on [#365](https://github.com/TIGRLab/datman/pull/365#issuecomment-2461010285) in [TIGRLab/datman](https://github.com/TIGRLab/datman) +1. 🗣 Commented on [#281](https://github.com/Moonlark-Dev/Moonlark/pull/281#issuecomment-2466109437) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +2. 🗣 Commented on [#280](https://github.com/Moonlark-Dev/Moonlark/pull/280#issuecomment-2466108250) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +3. 🗣 Commented on [#3](https://github.com/2lambda123/camel-ai-crab/pull/3#issuecomment-2465959999) in [2lambda123/camel-ai-crab](https://github.com/2lambda123/camel-ai-crab) +4. 🗣 Commented on [#2](https://github.com/2lambda123/TheHive-Project-Cortex-Analyzers/pull/2#issuecomment-2465950372) in [2lambda123/TheHive-Project-Cortex-Analyzers](https://github.com/2lambda123/TheHive-Project-Cortex-Analyzers) +5. 🗣 Commented on [#728](https://github.com/HEXRD/hexrd/pull/728#issuecomment-2465915794) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +6. 🗣 Commented on [#2174](https://github.com/OpenSCAP/openscap/pull/2174#issuecomment-2465896552) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +7. 🗣 Commented on [#930](https://github.com/spacetelescope/webbpsf/pull/930#issuecomment-2465847733) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#2](https://github.com/2lambda123/pytorch-vision/pull/2#issuecomment-2465726289) in [2lambda123/pytorch-vision](https://github.com/2lambda123/pytorch-vision) +9. 🗣 Commented on [#1131](https://github.com/oemof/oemof-solph/pull/1131#issuecomment-2465105612) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +10. 🗣 Commented on [#1754](https://github.com/HEXRD/hexrdgui/pull/1754#issuecomment-2463528683) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) From c2158c1a52ad3ab49fb2e3333815c4735d2cce3a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Nov 2024 00:51:25 +0000 Subject: [PATCH 2094/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d05872d4..e361c11b 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#281](https://github.com/Moonlark-Dev/Moonlark/pull/281#issuecomment-2466109437) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -2. 🗣 Commented on [#280](https://github.com/Moonlark-Dev/Moonlark/pull/280#issuecomment-2466108250) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -3. 🗣 Commented on [#3](https://github.com/2lambda123/camel-ai-crab/pull/3#issuecomment-2465959999) in [2lambda123/camel-ai-crab](https://github.com/2lambda123/camel-ai-crab) -4. 🗣 Commented on [#2](https://github.com/2lambda123/TheHive-Project-Cortex-Analyzers/pull/2#issuecomment-2465950372) in [2lambda123/TheHive-Project-Cortex-Analyzers](https://github.com/2lambda123/TheHive-Project-Cortex-Analyzers) -5. 🗣 Commented on [#728](https://github.com/HEXRD/hexrd/pull/728#issuecomment-2465915794) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -6. 🗣 Commented on [#2174](https://github.com/OpenSCAP/openscap/pull/2174#issuecomment-2465896552) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -7. 🗣 Commented on [#930](https://github.com/spacetelescope/webbpsf/pull/930#issuecomment-2465847733) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#2](https://github.com/2lambda123/pytorch-vision/pull/2#issuecomment-2465726289) in [2lambda123/pytorch-vision](https://github.com/2lambda123/pytorch-vision) -9. 🗣 Commented on [#1131](https://github.com/oemof/oemof-solph/pull/1131#issuecomment-2465105612) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -10. 🗣 Commented on [#1754](https://github.com/HEXRD/hexrdgui/pull/1754#issuecomment-2463528683) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +1. 🗣 Commented on [#283](https://github.com/Moonlark-Dev/Moonlark/pull/283#issuecomment-2466564491) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +2. 🗣 Commented on [#456](https://github.com/aria-tools/ARIA-tools/pull/456#issuecomment-2466440065) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +3. 🗣 Commented on [#281](https://github.com/Moonlark-Dev/Moonlark/pull/281#issuecomment-2466109437) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +4. 🗣 Commented on [#280](https://github.com/Moonlark-Dev/Moonlark/pull/280#issuecomment-2466108250) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +5. 🗣 Commented on [#3](https://github.com/2lambda123/camel-ai-crab/pull/3#issuecomment-2465959999) in [2lambda123/camel-ai-crab](https://github.com/2lambda123/camel-ai-crab) +6. 🗣 Commented on [#2](https://github.com/2lambda123/TheHive-Project-Cortex-Analyzers/pull/2#issuecomment-2465950372) in [2lambda123/TheHive-Project-Cortex-Analyzers](https://github.com/2lambda123/TheHive-Project-Cortex-Analyzers) +7. 🗣 Commented on [#728](https://github.com/HEXRD/hexrd/pull/728#issuecomment-2465915794) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +8. 🗣 Commented on [#2174](https://github.com/OpenSCAP/openscap/pull/2174#issuecomment-2465896552) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +9. 🗣 Commented on [#930](https://github.com/spacetelescope/webbpsf/pull/930#issuecomment-2465847733) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +10. 🗣 Commented on [#2](https://github.com/2lambda123/pytorch-vision/pull/2#issuecomment-2465726289) in [2lambda123/pytorch-vision](https://github.com/2lambda123/pytorch-vision) From 10544762e78201ef60b8486d29872a6bc3ed7202 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 00:49:05 +0000 Subject: [PATCH 2095/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e361c11b..cd119f64 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#283](https://github.com/Moonlark-Dev/Moonlark/pull/283#issuecomment-2466564491) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -2. 🗣 Commented on [#456](https://github.com/aria-tools/ARIA-tools/pull/456#issuecomment-2466440065) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -3. 🗣 Commented on [#281](https://github.com/Moonlark-Dev/Moonlark/pull/281#issuecomment-2466109437) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -4. 🗣 Commented on [#280](https://github.com/Moonlark-Dev/Moonlark/pull/280#issuecomment-2466108250) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -5. 🗣 Commented on [#3](https://github.com/2lambda123/camel-ai-crab/pull/3#issuecomment-2465959999) in [2lambda123/camel-ai-crab](https://github.com/2lambda123/camel-ai-crab) -6. 🗣 Commented on [#2](https://github.com/2lambda123/TheHive-Project-Cortex-Analyzers/pull/2#issuecomment-2465950372) in [2lambda123/TheHive-Project-Cortex-Analyzers](https://github.com/2lambda123/TheHive-Project-Cortex-Analyzers) -7. 🗣 Commented on [#728](https://github.com/HEXRD/hexrd/pull/728#issuecomment-2465915794) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -8. 🗣 Commented on [#2174](https://github.com/OpenSCAP/openscap/pull/2174#issuecomment-2465896552) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -9. 🗣 Commented on [#930](https://github.com/spacetelescope/webbpsf/pull/930#issuecomment-2465847733) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -10. 🗣 Commented on [#2](https://github.com/2lambda123/pytorch-vision/pull/2#issuecomment-2465726289) in [2lambda123/pytorch-vision](https://github.com/2lambda123/pytorch-vision) +1. 🗣 Commented on [#1](https://github.com/2lambda123/0xInfection-TIDoS-Framework/pull/1#issuecomment-2468937976) in [2lambda123/0xInfection-TIDoS-Framework](https://github.com/2lambda123/0xInfection-TIDoS-Framework) +2. 🗣 Commented on [#3029](https://github.com/metabrainz/listenbrainz-server/pull/3029#issuecomment-2468294021) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#149](https://github.com/eastgenomics/eggd_conductor/pull/149#issuecomment-2468288049) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +4. 🗣 Commented on [#418](https://github.com/NASA-Planetary-Science/sbpy/pull/418#issuecomment-2468283614) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +5. 🗣 Commented on [#45](https://github.com/cirKITers/mind-the-qapp/pull/45#issuecomment-2468101890) in [cirKITers/mind-the-qapp](https://github.com/cirKITers/mind-the-qapp) +6. 🗣 Commented on [#1660](https://github.com/openSUSE/osc/pull/1660#issuecomment-2468087803) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#44](https://github.com/cirKITers/mind-the-qapp/pull/44#issuecomment-2468072454) in [cirKITers/mind-the-qapp](https://github.com/cirKITers/mind-the-qapp) +8. 🗣 Commented on [#42](https://github.com/cirKITers/mind-the-qapp/pull/42#issuecomment-2467855065) in [cirKITers/mind-the-qapp](https://github.com/cirKITers/mind-the-qapp) +9. 🗣 Commented on [#1039](https://github.com/avaframe/AvaFrame/pull/1039#issuecomment-2467782209) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#41](https://github.com/avaframe/QGisAF/pull/41#issuecomment-2467693902) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) From f043029691078779f76c7ea5da73608927817941 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Nov 2024 00:50:21 +0000 Subject: [PATCH 2096/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index cd119f64..7d978401 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/2lambda123/0xInfection-TIDoS-Framework/pull/1#issuecomment-2468937976) in [2lambda123/0xInfection-TIDoS-Framework](https://github.com/2lambda123/0xInfection-TIDoS-Framework) -2. 🗣 Commented on [#3029](https://github.com/metabrainz/listenbrainz-server/pull/3029#issuecomment-2468294021) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#149](https://github.com/eastgenomics/eggd_conductor/pull/149#issuecomment-2468288049) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -4. 🗣 Commented on [#418](https://github.com/NASA-Planetary-Science/sbpy/pull/418#issuecomment-2468283614) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -5. 🗣 Commented on [#45](https://github.com/cirKITers/mind-the-qapp/pull/45#issuecomment-2468101890) in [cirKITers/mind-the-qapp](https://github.com/cirKITers/mind-the-qapp) -6. 🗣 Commented on [#1660](https://github.com/openSUSE/osc/pull/1660#issuecomment-2468087803) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#44](https://github.com/cirKITers/mind-the-qapp/pull/44#issuecomment-2468072454) in [cirKITers/mind-the-qapp](https://github.com/cirKITers/mind-the-qapp) -8. 🗣 Commented on [#42](https://github.com/cirKITers/mind-the-qapp/pull/42#issuecomment-2467855065) in [cirKITers/mind-the-qapp](https://github.com/cirKITers/mind-the-qapp) -9. 🗣 Commented on [#1039](https://github.com/avaframe/AvaFrame/pull/1039#issuecomment-2467782209) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#41](https://github.com/avaframe/QGisAF/pull/41#issuecomment-2467693902) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +1. 🗣 Commented on [#7](https://github.com/HEXRD/polycrystalx/pull/7#issuecomment-2471323285) in [HEXRD/polycrystalx](https://github.com/HEXRD/polycrystalx) +2. 🗣 Commented on [#3031](https://github.com/metabrainz/listenbrainz-server/pull/3031#issuecomment-2471046330) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#3316](https://github.com/reframe-hpc/reframe/pull/3316#issuecomment-2470999923) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +4. 🗣 Commented on [#419](https://github.com/NASA-Planetary-Science/sbpy/pull/419#issuecomment-2470765096) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +5. 🗣 Commented on [#1409](https://github.com/deepfakes/faceswap/pull/1409#issuecomment-2470596107) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) +6. 🗣 Commented on [#712](https://github.com/quark-engine/quark-engine/pull/712#issuecomment-2470565416) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +7. 🗣 Commented on [#5990](https://github.com/rhinstaller/anaconda/pull/5990#issuecomment-2470094287) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#339](https://github.com/DeMarcoLab/fibsem/pull/339#issuecomment-2469660555) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) +9. 🗣 Commented on [#537](https://github.com/payu-org/payu/pull/537#issuecomment-2469393654) in [payu-org/payu](https://github.com/payu-org/payu) +10. 🗣 Commented on [#366](https://github.com/TIGRLab/datman/pull/366#issuecomment-2469261381) in [TIGRLab/datman](https://github.com/TIGRLab/datman) From 988704ab1562e89e325808a279f8651b5e385d0b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 00:50:31 +0000 Subject: [PATCH 2097/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7d978401..e32fbca7 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#7](https://github.com/HEXRD/polycrystalx/pull/7#issuecomment-2471323285) in [HEXRD/polycrystalx](https://github.com/HEXRD/polycrystalx) -2. 🗣 Commented on [#3031](https://github.com/metabrainz/listenbrainz-server/pull/3031#issuecomment-2471046330) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#3316](https://github.com/reframe-hpc/reframe/pull/3316#issuecomment-2470999923) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -4. 🗣 Commented on [#419](https://github.com/NASA-Planetary-Science/sbpy/pull/419#issuecomment-2470765096) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) -5. 🗣 Commented on [#1409](https://github.com/deepfakes/faceswap/pull/1409#issuecomment-2470596107) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) -6. 🗣 Commented on [#712](https://github.com/quark-engine/quark-engine/pull/712#issuecomment-2470565416) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -7. 🗣 Commented on [#5990](https://github.com/rhinstaller/anaconda/pull/5990#issuecomment-2470094287) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#339](https://github.com/DeMarcoLab/fibsem/pull/339#issuecomment-2469660555) in [DeMarcoLab/fibsem](https://github.com/DeMarcoLab/fibsem) -9. 🗣 Commented on [#537](https://github.com/payu-org/payu/pull/537#issuecomment-2469393654) in [payu-org/payu](https://github.com/payu-org/payu) -10. 🗣 Commented on [#366](https://github.com/TIGRLab/datman/pull/366#issuecomment-2469261381) in [TIGRLab/datman](https://github.com/TIGRLab/datman) +1. 🗣 Commented on [#986](https://github.com/ToFuProject/tofu/pull/986#issuecomment-2474298521) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#1584](https://github.com/Open-CAS/open-cas-linux/pull/1584#issuecomment-2473661295) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +3. 🗣 Commented on [#152](https://github.com/eastgenomics/eggd_conductor/pull/152#issuecomment-2473351503) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +4. 🗣 Commented on [#9423](https://github.com/statsmodels/statsmodels/pull/9423#issuecomment-2473053740) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#1043](https://github.com/avaframe/AvaFrame/pull/1043#issuecomment-2472870841) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#22965](https://github.com/spyder-ide/spyder/pull/22965#issuecomment-2472037845) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#7](https://github.com/HEXRD/polycrystalx/pull/7#issuecomment-2471323285) in [HEXRD/polycrystalx](https://github.com/HEXRD/polycrystalx) +8. 🗣 Commented on [#3031](https://github.com/metabrainz/listenbrainz-server/pull/3031#issuecomment-2471046330) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#3316](https://github.com/reframe-hpc/reframe/pull/3316#issuecomment-2470999923) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +10. 🗣 Commented on [#419](https://github.com/NASA-Planetary-Science/sbpy/pull/419#issuecomment-2470765096) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) From 4d6a01fa9e796a05872036f64d4fd80c4d73225c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 00:53:29 +0000 Subject: [PATCH 2098/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e32fbca7..bf129b7f 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#986](https://github.com/ToFuProject/tofu/pull/986#issuecomment-2474298521) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#1584](https://github.com/Open-CAS/open-cas-linux/pull/1584#issuecomment-2473661295) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -3. 🗣 Commented on [#152](https://github.com/eastgenomics/eggd_conductor/pull/152#issuecomment-2473351503) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -4. 🗣 Commented on [#9423](https://github.com/statsmodels/statsmodels/pull/9423#issuecomment-2473053740) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -5. 🗣 Commented on [#1043](https://github.com/avaframe/AvaFrame/pull/1043#issuecomment-2472870841) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#22965](https://github.com/spyder-ide/spyder/pull/22965#issuecomment-2472037845) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#7](https://github.com/HEXRD/polycrystalx/pull/7#issuecomment-2471323285) in [HEXRD/polycrystalx](https://github.com/HEXRD/polycrystalx) -8. 🗣 Commented on [#3031](https://github.com/metabrainz/listenbrainz-server/pull/3031#issuecomment-2471046330) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#3316](https://github.com/reframe-hpc/reframe/pull/3316#issuecomment-2470999923) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -10. 🗣 Commented on [#419](https://github.com/NASA-Planetary-Science/sbpy/pull/419#issuecomment-2470765096) in [NASA-Planetary-Science/sbpy](https://github.com/NASA-Planetary-Science/sbpy) +1. 🗣 Commented on [#3027](https://github.com/metabrainz/listenbrainz-server/pull/3027#issuecomment-2476396548) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#37](https://github.com/eastgenomics/s3_upload/pull/37#issuecomment-2476134015) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +3. 🗣 Commented on [#62](https://github.com/cirKITers/qml-essentials/pull/62#issuecomment-2475903378) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +4. 🗣 Commented on [#5996](https://github.com/rhinstaller/anaconda/pull/5996#issuecomment-2475835002) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#4](https://github.com/drauger-os-development/download-optimizer/pull/4#issuecomment-2475303832) in [drauger-os-development/download-optimizer](https://github.com/drauger-os-development/download-optimizer) +6. 🗣 Commented on [#1759](https://github.com/HEXRD/hexrdgui/pull/1759#issuecomment-2475037299) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +7. 🗣 Commented on [#987](https://github.com/ToFuProject/tofu/pull/987#issuecomment-2474842874) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +8. 🗣 Commented on [#387](https://github.com/PyAbel/PyAbel/pull/387#issuecomment-2474842426) in [PyAbel/PyAbel](https://github.com/PyAbel/PyAbel) +9. 🗣 Commented on [#651](https://github.com/tomopy/tomopy/pull/651#issuecomment-2474798027) in [tomopy/tomopy](https://github.com/tomopy/tomopy) +10. 🗣 Commented on [#986](https://github.com/ToFuProject/tofu/pull/986#issuecomment-2474298521) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From 087334b074b1554b36ef86ee6a4f239133f080c7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Nov 2024 00:52:22 +0000 Subject: [PATCH 2099/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bf129b7f..67e962f0 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3027](https://github.com/metabrainz/listenbrainz-server/pull/3027#issuecomment-2476396548) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#37](https://github.com/eastgenomics/s3_upload/pull/37#issuecomment-2476134015) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -3. 🗣 Commented on [#62](https://github.com/cirKITers/qml-essentials/pull/62#issuecomment-2475903378) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -4. 🗣 Commented on [#5996](https://github.com/rhinstaller/anaconda/pull/5996#issuecomment-2475835002) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#4](https://github.com/drauger-os-development/download-optimizer/pull/4#issuecomment-2475303832) in [drauger-os-development/download-optimizer](https://github.com/drauger-os-development/download-optimizer) -6. 🗣 Commented on [#1759](https://github.com/HEXRD/hexrdgui/pull/1759#issuecomment-2475037299) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -7. 🗣 Commented on [#987](https://github.com/ToFuProject/tofu/pull/987#issuecomment-2474842874) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -8. 🗣 Commented on [#387](https://github.com/PyAbel/PyAbel/pull/387#issuecomment-2474842426) in [PyAbel/PyAbel](https://github.com/PyAbel/PyAbel) -9. 🗣 Commented on [#651](https://github.com/tomopy/tomopy/pull/651#issuecomment-2474798027) in [tomopy/tomopy](https://github.com/tomopy/tomopy) -10. 🗣 Commented on [#986](https://github.com/ToFuProject/tofu/pull/986#issuecomment-2474298521) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#8](https://github.com/foreign-sub/CustomPiOS/pull/8#issuecomment-2478461313) in [foreign-sub/CustomPiOS](https://github.com/foreign-sub/CustomPiOS) +2. 🗣 Commented on [#4144](https://github.com/privacyidea/privacyidea/pull/4144#issuecomment-2478084422) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +3. 🗣 Commented on [#4790](https://github.com/MDAnalysis/mdanalysis/pull/4790#issuecomment-2477214391) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#46](https://github.com/cirKITers/mind-the-qapp/pull/46#issuecomment-2476744196) in [cirKITers/mind-the-qapp](https://github.com/cirKITers/mind-the-qapp) +5. 🗣 Commented on [#3027](https://github.com/metabrainz/listenbrainz-server/pull/3027#issuecomment-2476396548) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#37](https://github.com/eastgenomics/s3_upload/pull/37#issuecomment-2476134015) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +7. 🗣 Commented on [#62](https://github.com/cirKITers/qml-essentials/pull/62#issuecomment-2475903378) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +8. 🗣 Commented on [#5996](https://github.com/rhinstaller/anaconda/pull/5996#issuecomment-2475835002) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#4](https://github.com/drauger-os-development/download-optimizer/pull/4#issuecomment-2475303832) in [drauger-os-development/download-optimizer](https://github.com/drauger-os-development/download-optimizer) +10. 🗣 Commented on [#1759](https://github.com/HEXRD/hexrdgui/pull/1759#issuecomment-2475037299) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) From b6e718ec2724a50ad8a75a609cb7ae0ea535d45a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 Nov 2024 00:56:33 +0000 Subject: [PATCH 2100/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 67e962f0..25271fe9 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#8](https://github.com/foreign-sub/CustomPiOS/pull/8#issuecomment-2478461313) in [foreign-sub/CustomPiOS](https://github.com/foreign-sub/CustomPiOS) -2. 🗣 Commented on [#4144](https://github.com/privacyidea/privacyidea/pull/4144#issuecomment-2478084422) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -3. 🗣 Commented on [#4790](https://github.com/MDAnalysis/mdanalysis/pull/4790#issuecomment-2477214391) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#46](https://github.com/cirKITers/mind-the-qapp/pull/46#issuecomment-2476744196) in [cirKITers/mind-the-qapp](https://github.com/cirKITers/mind-the-qapp) -5. 🗣 Commented on [#3027](https://github.com/metabrainz/listenbrainz-server/pull/3027#issuecomment-2476396548) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#37](https://github.com/eastgenomics/s3_upload/pull/37#issuecomment-2476134015) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -7. 🗣 Commented on [#62](https://github.com/cirKITers/qml-essentials/pull/62#issuecomment-2475903378) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -8. 🗣 Commented on [#5996](https://github.com/rhinstaller/anaconda/pull/5996#issuecomment-2475835002) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#4](https://github.com/drauger-os-development/download-optimizer/pull/4#issuecomment-2475303832) in [drauger-os-development/download-optimizer](https://github.com/drauger-os-development/download-optimizer) -10. 🗣 Commented on [#1759](https://github.com/HEXRD/hexrdgui/pull/1759#issuecomment-2475037299) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +1. 🗣 Commented on [#3](https://github.com/2lambda123/bartongroup-slivka-bio/pull/3#issuecomment-2480830867) in [2lambda123/bartongroup-slivka-bio](https://github.com/2lambda123/bartongroup-slivka-bio) +2. 🗣 Commented on [#108](https://github.com/drauger-os-development/edamame/pull/108#issuecomment-2480811047) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +3. 🗣 Commented on [#1](https://github.com/2lambda123/bartongroup-2passtools/pull/1#issuecomment-2480755485) in [2lambda123/bartongroup-2passtools](https://github.com/2lambda123/bartongroup-2passtools) +4. 🗣 Commented on [#22996](https://github.com/spyder-ide/spyder/pull/22996#issuecomment-2480398710) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#6](https://github.com/2lambda123/Ericsson-cognitive-labs/pull/6#issuecomment-2480241253) in [2lambda123/Ericsson-cognitive-labs](https://github.com/2lambda123/Ericsson-cognitive-labs) +6. 🗣 Commented on [#3](https://github.com/cdfxscrq/MissSabrina/pull/3#issuecomment-2479932930) in [cdfxscrq/MissSabrina](https://github.com/cdfxscrq/MissSabrina) +7. 🗣 Commented on [#42](https://github.com/avaframe/QGisAF/pull/42#issuecomment-2479797947) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +8. 🗣 Commented on [#14](https://github.com/eastgenomics/RD_requests/pull/14#issuecomment-2479435610) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) +9. 🗣 Commented on [#297](https://github.com/Moonlark-Dev/Moonlark/pull/297#issuecomment-2479395505) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +10. 🗣 Commented on [#290](https://github.com/Moonlark-Dev/Moonlark/pull/290#issuecomment-2479205422) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) From b1bc3e5104ed73dfa2405ff16f3e78f05d12f521 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 00:54:53 +0000 Subject: [PATCH 2101/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 25271fe9..6ae3522b 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3](https://github.com/2lambda123/bartongroup-slivka-bio/pull/3#issuecomment-2480830867) in [2lambda123/bartongroup-slivka-bio](https://github.com/2lambda123/bartongroup-slivka-bio) -2. 🗣 Commented on [#108](https://github.com/drauger-os-development/edamame/pull/108#issuecomment-2480811047) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -3. 🗣 Commented on [#1](https://github.com/2lambda123/bartongroup-2passtools/pull/1#issuecomment-2480755485) in [2lambda123/bartongroup-2passtools](https://github.com/2lambda123/bartongroup-2passtools) -4. 🗣 Commented on [#22996](https://github.com/spyder-ide/spyder/pull/22996#issuecomment-2480398710) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#6](https://github.com/2lambda123/Ericsson-cognitive-labs/pull/6#issuecomment-2480241253) in [2lambda123/Ericsson-cognitive-labs](https://github.com/2lambda123/Ericsson-cognitive-labs) -6. 🗣 Commented on [#3](https://github.com/cdfxscrq/MissSabrina/pull/3#issuecomment-2479932930) in [cdfxscrq/MissSabrina](https://github.com/cdfxscrq/MissSabrina) -7. 🗣 Commented on [#42](https://github.com/avaframe/QGisAF/pull/42#issuecomment-2479797947) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) -8. 🗣 Commented on [#14](https://github.com/eastgenomics/RD_requests/pull/14#issuecomment-2479435610) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) -9. 🗣 Commented on [#297](https://github.com/Moonlark-Dev/Moonlark/pull/297#issuecomment-2479395505) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -10. 🗣 Commented on [#290](https://github.com/Moonlark-Dev/Moonlark/pull/290#issuecomment-2479205422) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +1. 🗣 Commented on [#1](https://github.com/MBrede/generative_ai/pull/1#issuecomment-2481444727) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) +2. 🗣 Commented on [#3](https://github.com/foreign-sub/esphome-docs/pull/3#issuecomment-2481051404) in [foreign-sub/esphome-docs](https://github.com/foreign-sub/esphome-docs) +3. 🗣 Commented on [#3](https://github.com/2lambda123/bartongroup-slivka-bio/pull/3#issuecomment-2480830867) in [2lambda123/bartongroup-slivka-bio](https://github.com/2lambda123/bartongroup-slivka-bio) +4. 🗣 Commented on [#108](https://github.com/drauger-os-development/edamame/pull/108#issuecomment-2480811047) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +5. 🗣 Commented on [#1](https://github.com/2lambda123/bartongroup-2passtools/pull/1#issuecomment-2480755485) in [2lambda123/bartongroup-2passtools](https://github.com/2lambda123/bartongroup-2passtools) +6. 🗣 Commented on [#22996](https://github.com/spyder-ide/spyder/pull/22996#issuecomment-2480398710) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#6](https://github.com/2lambda123/Ericsson-cognitive-labs/pull/6#issuecomment-2480241253) in [2lambda123/Ericsson-cognitive-labs](https://github.com/2lambda123/Ericsson-cognitive-labs) +8. 🗣 Commented on [#3](https://github.com/cdfxscrq/MissSabrina/pull/3#issuecomment-2479932930) in [cdfxscrq/MissSabrina](https://github.com/cdfxscrq/MissSabrina) +9. 🗣 Commented on [#42](https://github.com/avaframe/QGisAF/pull/42#issuecomment-2479797947) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) +10. 🗣 Commented on [#14](https://github.com/eastgenomics/RD_requests/pull/14#issuecomment-2479435610) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) From 285c008b9d7283ad1252a4124769154dbe78a070 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 19 Nov 2024 00:53:22 +0000 Subject: [PATCH 2102/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6ae3522b..09fb3b0d 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/MBrede/generative_ai/pull/1#issuecomment-2481444727) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) -2. 🗣 Commented on [#3](https://github.com/foreign-sub/esphome-docs/pull/3#issuecomment-2481051404) in [foreign-sub/esphome-docs](https://github.com/foreign-sub/esphome-docs) -3. 🗣 Commented on [#3](https://github.com/2lambda123/bartongroup-slivka-bio/pull/3#issuecomment-2480830867) in [2lambda123/bartongroup-slivka-bio](https://github.com/2lambda123/bartongroup-slivka-bio) -4. 🗣 Commented on [#108](https://github.com/drauger-os-development/edamame/pull/108#issuecomment-2480811047) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -5. 🗣 Commented on [#1](https://github.com/2lambda123/bartongroup-2passtools/pull/1#issuecomment-2480755485) in [2lambda123/bartongroup-2passtools](https://github.com/2lambda123/bartongroup-2passtools) -6. 🗣 Commented on [#22996](https://github.com/spyder-ide/spyder/pull/22996#issuecomment-2480398710) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#6](https://github.com/2lambda123/Ericsson-cognitive-labs/pull/6#issuecomment-2480241253) in [2lambda123/Ericsson-cognitive-labs](https://github.com/2lambda123/Ericsson-cognitive-labs) -8. 🗣 Commented on [#3](https://github.com/cdfxscrq/MissSabrina/pull/3#issuecomment-2479932930) in [cdfxscrq/MissSabrina](https://github.com/cdfxscrq/MissSabrina) -9. 🗣 Commented on [#42](https://github.com/avaframe/QGisAF/pull/42#issuecomment-2479797947) in [avaframe/QGisAF](https://github.com/avaframe/QGisAF) -10. 🗣 Commented on [#14](https://github.com/eastgenomics/RD_requests/pull/14#issuecomment-2479435610) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) +1. 🗣 Commented on [#16](https://github.com/MBrede/generative_ai/pull/16#issuecomment-2483920459) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) +2. 🗣 Commented on [#4](https://github.com/2lambda123/PyBoy/pull/4#issuecomment-2483836870) in [2lambda123/PyBoy](https://github.com/2lambda123/PyBoy) +3. 🗣 Commented on [#335](https://github.com/manodeep/Corrfunc/pull/335#issuecomment-2483796165) in [manodeep/Corrfunc](https://github.com/manodeep/Corrfunc) +4. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_conductor_monitor/pull/11#issuecomment-2483181381) in [eastgenomics/eggd_conductor_monitor](https://github.com/eastgenomics/eggd_conductor_monitor) +5. 🗣 Commented on [#49](https://github.com/cirKITers/mind-the-qapp/pull/49#issuecomment-2482069826) in [cirKITers/mind-the-qapp](https://github.com/cirKITers/mind-the-qapp) +6. 🗣 Commented on [#1](https://github.com/MBrede/generative_ai/pull/1#issuecomment-2481444727) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) +7. 🗣 Commented on [#3](https://github.com/foreign-sub/esphome-docs/pull/3#issuecomment-2481051404) in [foreign-sub/esphome-docs](https://github.com/foreign-sub/esphome-docs) +8. 🗣 Commented on [#3](https://github.com/2lambda123/bartongroup-slivka-bio/pull/3#issuecomment-2480830867) in [2lambda123/bartongroup-slivka-bio](https://github.com/2lambda123/bartongroup-slivka-bio) +9. 🗣 Commented on [#108](https://github.com/drauger-os-development/edamame/pull/108#issuecomment-2480811047) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +10. 🗣 Commented on [#1](https://github.com/2lambda123/bartongroup-2passtools/pull/1#issuecomment-2480755485) in [2lambda123/bartongroup-2passtools](https://github.com/2lambda123/bartongroup-2passtools) From 3721c64571241ac5d319dd8bc53c85b18360d4a4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Nov 2024 00:52:53 +0000 Subject: [PATCH 2103/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 09fb3b0d..b7702cd2 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#16](https://github.com/MBrede/generative_ai/pull/16#issuecomment-2483920459) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) -2. 🗣 Commented on [#4](https://github.com/2lambda123/PyBoy/pull/4#issuecomment-2483836870) in [2lambda123/PyBoy](https://github.com/2lambda123/PyBoy) -3. 🗣 Commented on [#335](https://github.com/manodeep/Corrfunc/pull/335#issuecomment-2483796165) in [manodeep/Corrfunc](https://github.com/manodeep/Corrfunc) -4. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_conductor_monitor/pull/11#issuecomment-2483181381) in [eastgenomics/eggd_conductor_monitor](https://github.com/eastgenomics/eggd_conductor_monitor) -5. 🗣 Commented on [#49](https://github.com/cirKITers/mind-the-qapp/pull/49#issuecomment-2482069826) in [cirKITers/mind-the-qapp](https://github.com/cirKITers/mind-the-qapp) -6. 🗣 Commented on [#1](https://github.com/MBrede/generative_ai/pull/1#issuecomment-2481444727) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) -7. 🗣 Commented on [#3](https://github.com/foreign-sub/esphome-docs/pull/3#issuecomment-2481051404) in [foreign-sub/esphome-docs](https://github.com/foreign-sub/esphome-docs) -8. 🗣 Commented on [#3](https://github.com/2lambda123/bartongroup-slivka-bio/pull/3#issuecomment-2480830867) in [2lambda123/bartongroup-slivka-bio](https://github.com/2lambda123/bartongroup-slivka-bio) -9. 🗣 Commented on [#108](https://github.com/drauger-os-development/edamame/pull/108#issuecomment-2480811047) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -10. 🗣 Commented on [#1](https://github.com/2lambda123/bartongroup-2passtools/pull/1#issuecomment-2480755485) in [2lambda123/bartongroup-2passtools](https://github.com/2lambda123/bartongroup-2passtools) +1. 🗣 Commented on [#1046](https://github.com/avaframe/AvaFrame/pull/1046#issuecomment-2485681898) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#64](https://github.com/tjhowse/modbus4mqtt/pull/64#issuecomment-2485108112) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +3. 🗣 Commented on [#715](https://github.com/quark-engine/quark-engine/pull/715#issuecomment-2485009403) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +4. 🗣 Commented on [#23022](https://github.com/spyder-ide/spyder/pull/23022#issuecomment-2484401613) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#389](https://github.com/PyAbel/PyAbel/pull/389#issuecomment-2484369504) in [PyAbel/PyAbel](https://github.com/PyAbel/PyAbel) +6. 🗣 Commented on [#16](https://github.com/MBrede/generative_ai/pull/16#issuecomment-2483920459) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) +7. 🗣 Commented on [#4](https://github.com/2lambda123/PyBoy/pull/4#issuecomment-2483836870) in [2lambda123/PyBoy](https://github.com/2lambda123/PyBoy) +8. 🗣 Commented on [#335](https://github.com/manodeep/Corrfunc/pull/335#issuecomment-2483796165) in [manodeep/Corrfunc](https://github.com/manodeep/Corrfunc) +9. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_conductor_monitor/pull/11#issuecomment-2483181381) in [eastgenomics/eggd_conductor_monitor](https://github.com/eastgenomics/eggd_conductor_monitor) +10. 🗣 Commented on [#49](https://github.com/cirKITers/mind-the-qapp/pull/49#issuecomment-2482069826) in [cirKITers/mind-the-qapp](https://github.com/cirKITers/mind-the-qapp) From 1e029e73cfe619e35519769abe20006fb72a7e3e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Nov 2024 00:52:55 +0000 Subject: [PATCH 2104/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b7702cd2..e8dd2ab8 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1046](https://github.com/avaframe/AvaFrame/pull/1046#issuecomment-2485681898) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#64](https://github.com/tjhowse/modbus4mqtt/pull/64#issuecomment-2485108112) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) -3. 🗣 Commented on [#715](https://github.com/quark-engine/quark-engine/pull/715#issuecomment-2485009403) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -4. 🗣 Commented on [#23022](https://github.com/spyder-ide/spyder/pull/23022#issuecomment-2484401613) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#389](https://github.com/PyAbel/PyAbel/pull/389#issuecomment-2484369504) in [PyAbel/PyAbel](https://github.com/PyAbel/PyAbel) -6. 🗣 Commented on [#16](https://github.com/MBrede/generative_ai/pull/16#issuecomment-2483920459) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) -7. 🗣 Commented on [#4](https://github.com/2lambda123/PyBoy/pull/4#issuecomment-2483836870) in [2lambda123/PyBoy](https://github.com/2lambda123/PyBoy) -8. 🗣 Commented on [#335](https://github.com/manodeep/Corrfunc/pull/335#issuecomment-2483796165) in [manodeep/Corrfunc](https://github.com/manodeep/Corrfunc) -9. 🗣 Commented on [#11](https://github.com/eastgenomics/eggd_conductor_monitor/pull/11#issuecomment-2483181381) in [eastgenomics/eggd_conductor_monitor](https://github.com/eastgenomics/eggd_conductor_monitor) -10. 🗣 Commented on [#49](https://github.com/cirKITers/mind-the-qapp/pull/49#issuecomment-2482069826) in [cirKITers/mind-the-qapp](https://github.com/cirKITers/mind-the-qapp) +1. 🗣 Commented on [#1045](https://github.com/avaframe/AvaFrame/pull/1045#issuecomment-2488109434) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#109](https://github.com/drauger-os-development/edamame/pull/109#issuecomment-2487486454) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +3. 🗣 Commented on [#3134](https://github.com/astropy/astroquery/pull/3134#issuecomment-2487354949) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#4424](https://github.com/uwcirg/truenth-portal/pull/4424#issuecomment-2487055255) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +5. 🗣 Commented on [#7](https://github.com/Onset-lab/onsetpy/pull/7#issuecomment-2486483439) in [Onset-lab/onsetpy](https://github.com/Onset-lab/onsetpy) +6. 🗣 Commented on [#932](https://github.com/spacetelescope/webbpsf/pull/932#issuecomment-2486481208) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +7. 🗣 Commented on [#16](https://github.com/eastgenomics/RD_requests/pull/16#issuecomment-2486478125) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) +8. 🗣 Commented on [#1046](https://github.com/avaframe/AvaFrame/pull/1046#issuecomment-2485681898) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#64](https://github.com/tjhowse/modbus4mqtt/pull/64#issuecomment-2485108112) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) +10. 🗣 Commented on [#715](https://github.com/quark-engine/quark-engine/pull/715#issuecomment-2485009403) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) From 6c958ce7189c913fc1178574da3d0e906009f7ae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 22 Nov 2024 00:53:47 +0000 Subject: [PATCH 2105/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e8dd2ab8..6105a5c1 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1045](https://github.com/avaframe/AvaFrame/pull/1045#issuecomment-2488109434) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#109](https://github.com/drauger-os-development/edamame/pull/109#issuecomment-2487486454) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -3. 🗣 Commented on [#3134](https://github.com/astropy/astroquery/pull/3134#issuecomment-2487354949) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#4424](https://github.com/uwcirg/truenth-portal/pull/4424#issuecomment-2487055255) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -5. 🗣 Commented on [#7](https://github.com/Onset-lab/onsetpy/pull/7#issuecomment-2486483439) in [Onset-lab/onsetpy](https://github.com/Onset-lab/onsetpy) -6. 🗣 Commented on [#932](https://github.com/spacetelescope/webbpsf/pull/932#issuecomment-2486481208) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -7. 🗣 Commented on [#16](https://github.com/eastgenomics/RD_requests/pull/16#issuecomment-2486478125) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) -8. 🗣 Commented on [#1046](https://github.com/avaframe/AvaFrame/pull/1046#issuecomment-2485681898) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#64](https://github.com/tjhowse/modbus4mqtt/pull/64#issuecomment-2485108112) in [tjhowse/modbus4mqtt](https://github.com/tjhowse/modbus4mqtt) -10. 🗣 Commented on [#715](https://github.com/quark-engine/quark-engine/pull/715#issuecomment-2485009403) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +1. 🗣 Commented on [#36](https://github.com/njzjz/deepmd-gnn/pull/36#issuecomment-2490278329) in [njzjz/deepmd-gnn](https://github.com/njzjz/deepmd-gnn) +2. 🗣 Commented on [#458](https://github.com/aria-tools/ARIA-tools/pull/458#issuecomment-2489920091) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +3. 🗣 Commented on [#391](https://github.com/cleder/fastkml/pull/391#issuecomment-2489754472) in [cleder/fastkml](https://github.com/cleder/fastkml) +4. 🗣 Commented on [#3042](https://github.com/metabrainz/listenbrainz-server/pull/3042#issuecomment-2489404027) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#652](https://github.com/tableau/TabPy/pull/652#issuecomment-2489366701) in [tableau/TabPy](https://github.com/tableau/TabPy) +6. 🗣 Commented on [#1053](https://github.com/scilus/scilpy/pull/1053#issuecomment-2489353611) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#1045](https://github.com/avaframe/AvaFrame/pull/1045#issuecomment-2488109434) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#109](https://github.com/drauger-os-development/edamame/pull/109#issuecomment-2487486454) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) +9. 🗣 Commented on [#3134](https://github.com/astropy/astroquery/pull/3134#issuecomment-2487354949) in [astropy/astroquery](https://github.com/astropy/astroquery) +10. 🗣 Commented on [#4424](https://github.com/uwcirg/truenth-portal/pull/4424#issuecomment-2487055255) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) From 69ffa9cb29e1d48c7cf0fc5e0d6c052d52a3b2ae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Nov 2024 00:51:35 +0000 Subject: [PATCH 2106/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6105a5c1..5269d81b 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#36](https://github.com/njzjz/deepmd-gnn/pull/36#issuecomment-2490278329) in [njzjz/deepmd-gnn](https://github.com/njzjz/deepmd-gnn) -2. 🗣 Commented on [#458](https://github.com/aria-tools/ARIA-tools/pull/458#issuecomment-2489920091) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -3. 🗣 Commented on [#391](https://github.com/cleder/fastkml/pull/391#issuecomment-2489754472) in [cleder/fastkml](https://github.com/cleder/fastkml) -4. 🗣 Commented on [#3042](https://github.com/metabrainz/listenbrainz-server/pull/3042#issuecomment-2489404027) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#652](https://github.com/tableau/TabPy/pull/652#issuecomment-2489366701) in [tableau/TabPy](https://github.com/tableau/TabPy) -6. 🗣 Commented on [#1053](https://github.com/scilus/scilpy/pull/1053#issuecomment-2489353611) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#1045](https://github.com/avaframe/AvaFrame/pull/1045#issuecomment-2488109434) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#109](https://github.com/drauger-os-development/edamame/pull/109#issuecomment-2487486454) in [drauger-os-development/edamame](https://github.com/drauger-os-development/edamame) -9. 🗣 Commented on [#3134](https://github.com/astropy/astroquery/pull/3134#issuecomment-2487354949) in [astropy/astroquery](https://github.com/astropy/astroquery) -10. 🗣 Commented on [#4424](https://github.com/uwcirg/truenth-portal/pull/4424#issuecomment-2487055255) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +1. 🗣 Commented on [#6018](https://github.com/rhinstaller/anaconda/pull/6018#issuecomment-2494916010) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#392](https://github.com/cleder/fastkml/pull/392#issuecomment-2494540280) in [cleder/fastkml](https://github.com/cleder/fastkml) +3. 🗣 Commented on [#1510](https://github.com/CiviWiki/OpenCiviWiki/pull/1510#issuecomment-2494484613) in [CiviWiki/OpenCiviWiki](https://github.com/CiviWiki/OpenCiviWiki) +4. 🗣 Commented on [#41](https://github.com/eastgenomics/s3_upload/pull/41#issuecomment-2494481861) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +5. 🗣 Commented on [#21](https://github.com/eastgenomics/eggd_GATKgCNV_call/pull/21#issuecomment-2493964423) in [eastgenomics/eggd_GATKgCNV_call](https://github.com/eastgenomics/eggd_GATKgCNV_call) +6. 🗣 Commented on [#23055](https://github.com/spyder-ide/spyder/pull/23055#issuecomment-2493959572) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#653](https://github.com/tableau/TabPy/pull/653#issuecomment-2491912020) in [tableau/TabPy](https://github.com/tableau/TabPy) +8. 🗣 Commented on [#9430](https://github.com/statsmodels/statsmodels/pull/9430#issuecomment-2491669834) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +9. 🗣 Commented on [#9431](https://github.com/statsmodels/statsmodels/pull/9431#issuecomment-2491654805) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +10. 🗣 Commented on [#23044](https://github.com/spyder-ide/spyder/pull/23044#issuecomment-2491646668) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 904b6c23455ccf03212217862eebc5a6e11f5b7d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 24 Nov 2024 00:56:59 +0000 Subject: [PATCH 2107/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5269d81b..f1eac4d7 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#6018](https://github.com/rhinstaller/anaconda/pull/6018#issuecomment-2494916010) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#392](https://github.com/cleder/fastkml/pull/392#issuecomment-2494540280) in [cleder/fastkml](https://github.com/cleder/fastkml) -3. 🗣 Commented on [#1510](https://github.com/CiviWiki/OpenCiviWiki/pull/1510#issuecomment-2494484613) in [CiviWiki/OpenCiviWiki](https://github.com/CiviWiki/OpenCiviWiki) -4. 🗣 Commented on [#41](https://github.com/eastgenomics/s3_upload/pull/41#issuecomment-2494481861) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -5. 🗣 Commented on [#21](https://github.com/eastgenomics/eggd_GATKgCNV_call/pull/21#issuecomment-2493964423) in [eastgenomics/eggd_GATKgCNV_call](https://github.com/eastgenomics/eggd_GATKgCNV_call) -6. 🗣 Commented on [#23055](https://github.com/spyder-ide/spyder/pull/23055#issuecomment-2493959572) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#653](https://github.com/tableau/TabPy/pull/653#issuecomment-2491912020) in [tableau/TabPy](https://github.com/tableau/TabPy) -8. 🗣 Commented on [#9430](https://github.com/statsmodels/statsmodels/pull/9430#issuecomment-2491669834) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -9. 🗣 Commented on [#9431](https://github.com/statsmodels/statsmodels/pull/9431#issuecomment-2491654805) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -10. 🗣 Commented on [#23044](https://github.com/spyder-ide/spyder/pull/23044#issuecomment-2491646668) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#309](https://github.com/Moonlark-Dev/Moonlark/pull/309#issuecomment-2495495892) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +2. 🗣 Commented on [#6018](https://github.com/rhinstaller/anaconda/pull/6018#issuecomment-2494916010) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#392](https://github.com/cleder/fastkml/pull/392#issuecomment-2494540280) in [cleder/fastkml](https://github.com/cleder/fastkml) +4. 🗣 Commented on [#1510](https://github.com/CiviWiki/OpenCiviWiki/pull/1510#issuecomment-2494484613) in [CiviWiki/OpenCiviWiki](https://github.com/CiviWiki/OpenCiviWiki) +5. 🗣 Commented on [#41](https://github.com/eastgenomics/s3_upload/pull/41#issuecomment-2494481861) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +6. 🗣 Commented on [#21](https://github.com/eastgenomics/eggd_GATKgCNV_call/pull/21#issuecomment-2493964423) in [eastgenomics/eggd_GATKgCNV_call](https://github.com/eastgenomics/eggd_GATKgCNV_call) +7. 🗣 Commented on [#23055](https://github.com/spyder-ide/spyder/pull/23055#issuecomment-2493959572) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#653](https://github.com/tableau/TabPy/pull/653#issuecomment-2491912020) in [tableau/TabPy](https://github.com/tableau/TabPy) +9. 🗣 Commented on [#9430](https://github.com/statsmodels/statsmodels/pull/9430#issuecomment-2491669834) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +10. 🗣 Commented on [#9431](https://github.com/statsmodels/statsmodels/pull/9431#issuecomment-2491654805) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) From 83ee4384a24bf0db090893b7d18fe5e9a2885b5e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Nov 2024 00:54:42 +0000 Subject: [PATCH 2108/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f1eac4d7..98bb51af 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#309](https://github.com/Moonlark-Dev/Moonlark/pull/309#issuecomment-2495495892) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -2. 🗣 Commented on [#6018](https://github.com/rhinstaller/anaconda/pull/6018#issuecomment-2494916010) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#392](https://github.com/cleder/fastkml/pull/392#issuecomment-2494540280) in [cleder/fastkml](https://github.com/cleder/fastkml) -4. 🗣 Commented on [#1510](https://github.com/CiviWiki/OpenCiviWiki/pull/1510#issuecomment-2494484613) in [CiviWiki/OpenCiviWiki](https://github.com/CiviWiki/OpenCiviWiki) -5. 🗣 Commented on [#41](https://github.com/eastgenomics/s3_upload/pull/41#issuecomment-2494481861) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -6. 🗣 Commented on [#21](https://github.com/eastgenomics/eggd_GATKgCNV_call/pull/21#issuecomment-2493964423) in [eastgenomics/eggd_GATKgCNV_call](https://github.com/eastgenomics/eggd_GATKgCNV_call) -7. 🗣 Commented on [#23055](https://github.com/spyder-ide/spyder/pull/23055#issuecomment-2493959572) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#653](https://github.com/tableau/TabPy/pull/653#issuecomment-2491912020) in [tableau/TabPy](https://github.com/tableau/TabPy) -9. 🗣 Commented on [#9430](https://github.com/statsmodels/statsmodels/pull/9430#issuecomment-2491669834) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -10. 🗣 Commented on [#9431](https://github.com/statsmodels/statsmodels/pull/9431#issuecomment-2491654805) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +1. 🗣 Commented on [#23](https://github.com/MBrede/generative_ai/pull/23#issuecomment-2495968717) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) +2. 🗣 Commented on [#742](https://github.com/QuantEcon/QuantEcon.py/pull/742#issuecomment-2495843452) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +3. 🗣 Commented on [#309](https://github.com/Moonlark-Dev/Moonlark/pull/309#issuecomment-2495495892) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +4. 🗣 Commented on [#6018](https://github.com/rhinstaller/anaconda/pull/6018#issuecomment-2494916010) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#392](https://github.com/cleder/fastkml/pull/392#issuecomment-2494540280) in [cleder/fastkml](https://github.com/cleder/fastkml) +6. 🗣 Commented on [#1510](https://github.com/CiviWiki/OpenCiviWiki/pull/1510#issuecomment-2494484613) in [CiviWiki/OpenCiviWiki](https://github.com/CiviWiki/OpenCiviWiki) +7. 🗣 Commented on [#41](https://github.com/eastgenomics/s3_upload/pull/41#issuecomment-2494481861) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +8. 🗣 Commented on [#21](https://github.com/eastgenomics/eggd_GATKgCNV_call/pull/21#issuecomment-2493964423) in [eastgenomics/eggd_GATKgCNV_call](https://github.com/eastgenomics/eggd_GATKgCNV_call) +9. 🗣 Commented on [#23055](https://github.com/spyder-ide/spyder/pull/23055#issuecomment-2493959572) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +10. 🗣 Commented on [#653](https://github.com/tableau/TabPy/pull/653#issuecomment-2491912020) in [tableau/TabPy](https://github.com/tableau/TabPy) From ac5783fb72c4faa318751ba94f0f2b2fe13d24a2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Nov 2024 00:53:45 +0000 Subject: [PATCH 2109/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 98bb51af..a74e8a57 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#23](https://github.com/MBrede/generative_ai/pull/23#issuecomment-2495968717) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) -2. 🗣 Commented on [#742](https://github.com/QuantEcon/QuantEcon.py/pull/742#issuecomment-2495843452) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -3. 🗣 Commented on [#309](https://github.com/Moonlark-Dev/Moonlark/pull/309#issuecomment-2495495892) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -4. 🗣 Commented on [#6018](https://github.com/rhinstaller/anaconda/pull/6018#issuecomment-2494916010) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#392](https://github.com/cleder/fastkml/pull/392#issuecomment-2494540280) in [cleder/fastkml](https://github.com/cleder/fastkml) -6. 🗣 Commented on [#1510](https://github.com/CiviWiki/OpenCiviWiki/pull/1510#issuecomment-2494484613) in [CiviWiki/OpenCiviWiki](https://github.com/CiviWiki/OpenCiviWiki) -7. 🗣 Commented on [#41](https://github.com/eastgenomics/s3_upload/pull/41#issuecomment-2494481861) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -8. 🗣 Commented on [#21](https://github.com/eastgenomics/eggd_GATKgCNV_call/pull/21#issuecomment-2493964423) in [eastgenomics/eggd_GATKgCNV_call](https://github.com/eastgenomics/eggd_GATKgCNV_call) -9. 🗣 Commented on [#23055](https://github.com/spyder-ide/spyder/pull/23055#issuecomment-2493959572) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -10. 🗣 Commented on [#653](https://github.com/tableau/TabPy/pull/653#issuecomment-2491912020) in [tableau/TabPy](https://github.com/tableau/TabPy) +1. 🗣 Commented on [#56](https://github.com/MDAnalysis/transport-analysis/pull/56#issuecomment-2498729259) in [MDAnalysis/transport-analysis](https://github.com/MDAnalysis/transport-analysis) +2. 🗣 Commented on [#732](https://github.com/HEXRD/hexrd/pull/732#issuecomment-2498466703) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#1055](https://github.com/scilus/scilpy/pull/1055#issuecomment-2498324349) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#42](https://github.com/eastgenomics/s3_upload/pull/42#issuecomment-2498294389) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) +5. 🗣 Commented on [#4163](https://github.com/privacyidea/privacyidea/pull/4163#issuecomment-2497547399) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#23](https://github.com/MBrede/generative_ai/pull/23#issuecomment-2495968717) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) +7. 🗣 Commented on [#742](https://github.com/QuantEcon/QuantEcon.py/pull/742#issuecomment-2495843452) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +8. 🗣 Commented on [#309](https://github.com/Moonlark-Dev/Moonlark/pull/309#issuecomment-2495495892) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +9. 🗣 Commented on [#6018](https://github.com/rhinstaller/anaconda/pull/6018#issuecomment-2494916010) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#392](https://github.com/cleder/fastkml/pull/392#issuecomment-2494540280) in [cleder/fastkml](https://github.com/cleder/fastkml) From 3c4cd7e5a3a7203bdfcbc9e3e285ea79f95b5417 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Nov 2024 00:55:39 +0000 Subject: [PATCH 2110/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a74e8a57..7d8b2815 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#56](https://github.com/MDAnalysis/transport-analysis/pull/56#issuecomment-2498729259) in [MDAnalysis/transport-analysis](https://github.com/MDAnalysis/transport-analysis) -2. 🗣 Commented on [#732](https://github.com/HEXRD/hexrd/pull/732#issuecomment-2498466703) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#1055](https://github.com/scilus/scilpy/pull/1055#issuecomment-2498324349) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#42](https://github.com/eastgenomics/s3_upload/pull/42#issuecomment-2498294389) in [eastgenomics/s3_upload](https://github.com/eastgenomics/s3_upload) -5. 🗣 Commented on [#4163](https://github.com/privacyidea/privacyidea/pull/4163#issuecomment-2497547399) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#23](https://github.com/MBrede/generative_ai/pull/23#issuecomment-2495968717) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) -7. 🗣 Commented on [#742](https://github.com/QuantEcon/QuantEcon.py/pull/742#issuecomment-2495843452) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) -8. 🗣 Commented on [#309](https://github.com/Moonlark-Dev/Moonlark/pull/309#issuecomment-2495495892) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -9. 🗣 Commented on [#6018](https://github.com/rhinstaller/anaconda/pull/6018#issuecomment-2494916010) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#392](https://github.com/cleder/fastkml/pull/392#issuecomment-2494540280) in [cleder/fastkml](https://github.com/cleder/fastkml) +1. 🗣 Commented on [#1052](https://github.com/scilus/scilpy/pull/1052#issuecomment-2501304160) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#1057](https://github.com/scilus/scilpy/pull/1057#issuecomment-2501299032) in [scilus/scilpy](https://github.com/scilus/scilpy) +3. 🗣 Commented on [#19](https://github.com/eastgenomics/RD_requests/pull/19#issuecomment-2501235040) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) +4. 🗣 Commented on [#6024](https://github.com/rhinstaller/anaconda/pull/6024#issuecomment-2500230526) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#3326](https://github.com/reframe-hpc/reframe/pull/3326#issuecomment-2500095430) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +6. 🗣 Commented on [#1144](https://github.com/oemof/oemof-solph/pull/1144#issuecomment-2499943860) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +7. 🗣 Commented on [#23079](https://github.com/spyder-ide/spyder/pull/23079#issuecomment-2499042694) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#992](https://github.com/ToFuProject/tofu/pull/992#issuecomment-2499002526) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#56](https://github.com/MDAnalysis/transport-analysis/pull/56#issuecomment-2498729259) in [MDAnalysis/transport-analysis](https://github.com/MDAnalysis/transport-analysis) +10. 🗣 Commented on [#732](https://github.com/HEXRD/hexrd/pull/732#issuecomment-2498466703) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) From b0d19b53c5621360944823159f7b5fc2bc210922 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Nov 2024 00:54:20 +0000 Subject: [PATCH 2111/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7d8b2815..8b417b2b 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1052](https://github.com/scilus/scilpy/pull/1052#issuecomment-2501304160) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#1057](https://github.com/scilus/scilpy/pull/1057#issuecomment-2501299032) in [scilus/scilpy](https://github.com/scilus/scilpy) -3. 🗣 Commented on [#19](https://github.com/eastgenomics/RD_requests/pull/19#issuecomment-2501235040) in [eastgenomics/RD_requests](https://github.com/eastgenomics/RD_requests) -4. 🗣 Commented on [#6024](https://github.com/rhinstaller/anaconda/pull/6024#issuecomment-2500230526) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#3326](https://github.com/reframe-hpc/reframe/pull/3326#issuecomment-2500095430) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) -6. 🗣 Commented on [#1144](https://github.com/oemof/oemof-solph/pull/1144#issuecomment-2499943860) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -7. 🗣 Commented on [#23079](https://github.com/spyder-ide/spyder/pull/23079#issuecomment-2499042694) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#992](https://github.com/ToFuProject/tofu/pull/992#issuecomment-2499002526) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#56](https://github.com/MDAnalysis/transport-analysis/pull/56#issuecomment-2498729259) in [MDAnalysis/transport-analysis](https://github.com/MDAnalysis/transport-analysis) -10. 🗣 Commented on [#732](https://github.com/HEXRD/hexrd/pull/732#issuecomment-2498466703) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +1. 🗣 Commented on [#5](https://github.com/mpds-io/mpds-aiida/pull/5#issuecomment-2504320559) in [mpds-io/mpds-aiida](https://github.com/mpds-io/mpds-aiida) +2. 🗣 Commented on [#17](https://github.com/mpds-io/mpds-client/pull/17#issuecomment-2504299659) in [mpds-io/mpds-client](https://github.com/mpds-io/mpds-client) +3. 🗣 Commented on [#17](https://github.com/eastgenomics/eggd_vcf_qc/pull/17#issuecomment-2504288122) in [eastgenomics/eggd_vcf_qc](https://github.com/eastgenomics/eggd_vcf_qc) +4. 🗣 Commented on [#4808](https://github.com/MDAnalysis/mdanalysis/pull/4808#issuecomment-2504276355) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#3139](https://github.com/astropy/astroquery/pull/3139#issuecomment-2504153100) in [astropy/astroquery](https://github.com/astropy/astroquery) +6. 🗣 Commented on [#6023](https://github.com/rhinstaller/anaconda/pull/6023#issuecomment-2503983955) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#16](https://github.com/eastgenomics/eggd_vcf_qc/pull/16#issuecomment-2503686028) in [eastgenomics/eggd_vcf_qc](https://github.com/eastgenomics/eggd_vcf_qc) +8. 🗣 Commented on [#513](https://github.com/Spoken-tutorial/spoken-website/pull/513#issuecomment-2503016496) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +9. 🗣 Commented on [#2](https://github.com/PenguinCloud/WaddlebotLibs/pull/2#issuecomment-2502950790) in [PenguinCloud/WaddlebotLibs](https://github.com/PenguinCloud/WaddlebotLibs) +10. 🗣 Commented on [#740](https://github.com/QuantEcon/QuantEcon.py/pull/740#issuecomment-2502674043) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) From 5528cb7766315acb44f5b92ededab2c571235acc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Nov 2024 00:54:28 +0000 Subject: [PATCH 2112/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8b417b2b..42b670d4 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5](https://github.com/mpds-io/mpds-aiida/pull/5#issuecomment-2504320559) in [mpds-io/mpds-aiida](https://github.com/mpds-io/mpds-aiida) -2. 🗣 Commented on [#17](https://github.com/mpds-io/mpds-client/pull/17#issuecomment-2504299659) in [mpds-io/mpds-client](https://github.com/mpds-io/mpds-client) -3. 🗣 Commented on [#17](https://github.com/eastgenomics/eggd_vcf_qc/pull/17#issuecomment-2504288122) in [eastgenomics/eggd_vcf_qc](https://github.com/eastgenomics/eggd_vcf_qc) -4. 🗣 Commented on [#4808](https://github.com/MDAnalysis/mdanalysis/pull/4808#issuecomment-2504276355) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#3139](https://github.com/astropy/astroquery/pull/3139#issuecomment-2504153100) in [astropy/astroquery](https://github.com/astropy/astroquery) -6. 🗣 Commented on [#6023](https://github.com/rhinstaller/anaconda/pull/6023#issuecomment-2503983955) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#16](https://github.com/eastgenomics/eggd_vcf_qc/pull/16#issuecomment-2503686028) in [eastgenomics/eggd_vcf_qc](https://github.com/eastgenomics/eggd_vcf_qc) -8. 🗣 Commented on [#513](https://github.com/Spoken-tutorial/spoken-website/pull/513#issuecomment-2503016496) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -9. 🗣 Commented on [#2](https://github.com/PenguinCloud/WaddlebotLibs/pull/2#issuecomment-2502950790) in [PenguinCloud/WaddlebotLibs](https://github.com/PenguinCloud/WaddlebotLibs) -10. 🗣 Commented on [#740](https://github.com/QuantEcon/QuantEcon.py/pull/740#issuecomment-2502674043) in [QuantEcon/QuantEcon.py](https://github.com/QuantEcon/QuantEcon.py) +1. 🗣 Commented on [#1669](https://github.com/openSUSE/osc/pull/1669#issuecomment-2506257110) in [openSUSE/osc](https://github.com/openSUSE/osc) +2. 🗣 Commented on [#230](https://github.com/epfl-theos/koopmans/pull/230#issuecomment-2505987616) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +3. 🗣 Commented on [#1166](https://github.com/lmcinnes/umap/pull/1166#issuecomment-2505494319) in [lmcinnes/umap](https://github.com/lmcinnes/umap) +4. 🗣 Commented on [#4809](https://github.com/MDAnalysis/mdanalysis/pull/4809#issuecomment-2504873414) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#1761](https://github.com/HEXRD/hexrdgui/pull/1761#issuecomment-2504509650) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +6. 🗣 Commented on [#5](https://github.com/mpds-io/mpds-aiida/pull/5#issuecomment-2504320559) in [mpds-io/mpds-aiida](https://github.com/mpds-io/mpds-aiida) +7. 🗣 Commented on [#17](https://github.com/mpds-io/mpds-client/pull/17#issuecomment-2504299659) in [mpds-io/mpds-client](https://github.com/mpds-io/mpds-client) +8. 🗣 Commented on [#17](https://github.com/eastgenomics/eggd_vcf_qc/pull/17#issuecomment-2504288122) in [eastgenomics/eggd_vcf_qc](https://github.com/eastgenomics/eggd_vcf_qc) +9. 🗣 Commented on [#4808](https://github.com/MDAnalysis/mdanalysis/pull/4808#issuecomment-2504276355) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#3139](https://github.com/astropy/astroquery/pull/3139#issuecomment-2504153100) in [astropy/astroquery](https://github.com/astropy/astroquery) From ff5817462e5addcdd7a4660360794d40b423e9b8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 30 Nov 2024 00:52:57 +0000 Subject: [PATCH 2113/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 42b670d4..10507b56 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1669](https://github.com/openSUSE/osc/pull/1669#issuecomment-2506257110) in [openSUSE/osc](https://github.com/openSUSE/osc) -2. 🗣 Commented on [#230](https://github.com/epfl-theos/koopmans/pull/230#issuecomment-2505987616) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) -3. 🗣 Commented on [#1166](https://github.com/lmcinnes/umap/pull/1166#issuecomment-2505494319) in [lmcinnes/umap](https://github.com/lmcinnes/umap) -4. 🗣 Commented on [#4809](https://github.com/MDAnalysis/mdanalysis/pull/4809#issuecomment-2504873414) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#1761](https://github.com/HEXRD/hexrdgui/pull/1761#issuecomment-2504509650) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -6. 🗣 Commented on [#5](https://github.com/mpds-io/mpds-aiida/pull/5#issuecomment-2504320559) in [mpds-io/mpds-aiida](https://github.com/mpds-io/mpds-aiida) -7. 🗣 Commented on [#17](https://github.com/mpds-io/mpds-client/pull/17#issuecomment-2504299659) in [mpds-io/mpds-client](https://github.com/mpds-io/mpds-client) -8. 🗣 Commented on [#17](https://github.com/eastgenomics/eggd_vcf_qc/pull/17#issuecomment-2504288122) in [eastgenomics/eggd_vcf_qc](https://github.com/eastgenomics/eggd_vcf_qc) -9. 🗣 Commented on [#4808](https://github.com/MDAnalysis/mdanalysis/pull/4808#issuecomment-2504276355) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#3139](https://github.com/astropy/astroquery/pull/3139#issuecomment-2504153100) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#3053](https://github.com/metabrainz/listenbrainz-server/pull/3053#issuecomment-2508134958) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#6030](https://github.com/rhinstaller/anaconda/pull/6030#issuecomment-2507836919) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#1048](https://github.com/avaframe/AvaFrame/pull/1048#issuecomment-2507787483) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#4168](https://github.com/privacyidea/privacyidea/pull/4168#issuecomment-2507777627) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#5995](https://github.com/rhinstaller/anaconda/pull/5995#issuecomment-2507734670) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#19](https://github.com/CartoonFan/oclint/pull/19#issuecomment-2506964977) in [CartoonFan/oclint](https://github.com/CartoonFan/oclint) +7. 🗣 Commented on [#348](https://github.com/InvisibleSymbol/rocketwatch/pull/348#issuecomment-2506869974) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +8. 🗣 Commented on [#3141](https://github.com/astropy/astroquery/pull/3141#issuecomment-2506512558) in [astropy/astroquery](https://github.com/astropy/astroquery) +9. 🗣 Commented on [#1669](https://github.com/openSUSE/osc/pull/1669#issuecomment-2506257110) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#230](https://github.com/epfl-theos/koopmans/pull/230#issuecomment-2505987616) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) From e0385cb8be5880235766a8ee77e0618923797920 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 1 Dec 2024 01:03:47 +0000 Subject: [PATCH 2114/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 10507b56..33c4e3d3 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3053](https://github.com/metabrainz/listenbrainz-server/pull/3053#issuecomment-2508134958) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#6030](https://github.com/rhinstaller/anaconda/pull/6030#issuecomment-2507836919) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#1048](https://github.com/avaframe/AvaFrame/pull/1048#issuecomment-2507787483) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#4168](https://github.com/privacyidea/privacyidea/pull/4168#issuecomment-2507777627) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#5995](https://github.com/rhinstaller/anaconda/pull/5995#issuecomment-2507734670) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#19](https://github.com/CartoonFan/oclint/pull/19#issuecomment-2506964977) in [CartoonFan/oclint](https://github.com/CartoonFan/oclint) -7. 🗣 Commented on [#348](https://github.com/InvisibleSymbol/rocketwatch/pull/348#issuecomment-2506869974) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -8. 🗣 Commented on [#3141](https://github.com/astropy/astroquery/pull/3141#issuecomment-2506512558) in [astropy/astroquery](https://github.com/astropy/astroquery) -9. 🗣 Commented on [#1669](https://github.com/openSUSE/osc/pull/1669#issuecomment-2506257110) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#230](https://github.com/epfl-theos/koopmans/pull/230#issuecomment-2505987616) in [epfl-theos/koopmans](https://github.com/epfl-theos/koopmans) +1. 🗣 Commented on [#23024](https://github.com/spyder-ide/spyder/pull/23024#issuecomment-2509023029) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#937](https://github.com/spacetelescope/webbpsf/pull/937#issuecomment-2508802081) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +3. 🗣 Commented on [#994](https://github.com/ToFuProject/tofu/pull/994#issuecomment-2508752587) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#3053](https://github.com/metabrainz/listenbrainz-server/pull/3053#issuecomment-2508134958) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#6030](https://github.com/rhinstaller/anaconda/pull/6030#issuecomment-2507836919) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#1048](https://github.com/avaframe/AvaFrame/pull/1048#issuecomment-2507787483) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#4168](https://github.com/privacyidea/privacyidea/pull/4168#issuecomment-2507777627) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +8. 🗣 Commented on [#5995](https://github.com/rhinstaller/anaconda/pull/5995#issuecomment-2507734670) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +9. 🗣 Commented on [#19](https://github.com/CartoonFan/oclint/pull/19#issuecomment-2506964977) in [CartoonFan/oclint](https://github.com/CartoonFan/oclint) +10. 🗣 Commented on [#348](https://github.com/InvisibleSymbol/rocketwatch/pull/348#issuecomment-2506869974) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) From 3ade4d0efeca70375a8edabbf1c7b016dd4ac752 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 00:56:44 +0000 Subject: [PATCH 2115/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 33c4e3d3..3dc72761 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#23024](https://github.com/spyder-ide/spyder/pull/23024#issuecomment-2509023029) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#937](https://github.com/spacetelescope/webbpsf/pull/937#issuecomment-2508802081) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -3. 🗣 Commented on [#994](https://github.com/ToFuProject/tofu/pull/994#issuecomment-2508752587) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#3053](https://github.com/metabrainz/listenbrainz-server/pull/3053#issuecomment-2508134958) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#6030](https://github.com/rhinstaller/anaconda/pull/6030#issuecomment-2507836919) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#1048](https://github.com/avaframe/AvaFrame/pull/1048#issuecomment-2507787483) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#4168](https://github.com/privacyidea/privacyidea/pull/4168#issuecomment-2507777627) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -8. 🗣 Commented on [#5995](https://github.com/rhinstaller/anaconda/pull/5995#issuecomment-2507734670) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -9. 🗣 Commented on [#19](https://github.com/CartoonFan/oclint/pull/19#issuecomment-2506964977) in [CartoonFan/oclint](https://github.com/CartoonFan/oclint) -10. 🗣 Commented on [#348](https://github.com/InvisibleSymbol/rocketwatch/pull/348#issuecomment-2506869974) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +1. 🗣 Commented on [#400](https://github.com/cleder/fastkml/pull/400#issuecomment-2510347004) in [cleder/fastkml](https://github.com/cleder/fastkml) +2. 🗣 Commented on [#995](https://github.com/ToFuProject/tofu/pull/995#issuecomment-2510250065) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#397](https://github.com/cleder/fastkml/pull/397#issuecomment-2510227587) in [cleder/fastkml](https://github.com/cleder/fastkml) +4. 🗣 Commented on [#247](https://github.com/MDAnalysis/MDAKits/pull/247#issuecomment-2509575906) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +5. 🗣 Commented on [#315](https://github.com/Moonlark-Dev/Moonlark/pull/315#issuecomment-2509552529) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +6. 🗣 Commented on [#23024](https://github.com/spyder-ide/spyder/pull/23024#issuecomment-2509023029) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#937](https://github.com/spacetelescope/webbpsf/pull/937#issuecomment-2508802081) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +8. 🗣 Commented on [#994](https://github.com/ToFuProject/tofu/pull/994#issuecomment-2508752587) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#3053](https://github.com/metabrainz/listenbrainz-server/pull/3053#issuecomment-2508134958) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#6030](https://github.com/rhinstaller/anaconda/pull/6030#issuecomment-2507836919) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From c6de81aced810763c22ef76ae5116dfd369b0bbb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 00:55:47 +0000 Subject: [PATCH 2116/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3dc72761..32229d9d 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#400](https://github.com/cleder/fastkml/pull/400#issuecomment-2510347004) in [cleder/fastkml](https://github.com/cleder/fastkml) -2. 🗣 Commented on [#995](https://github.com/ToFuProject/tofu/pull/995#issuecomment-2510250065) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#397](https://github.com/cleder/fastkml/pull/397#issuecomment-2510227587) in [cleder/fastkml](https://github.com/cleder/fastkml) -4. 🗣 Commented on [#247](https://github.com/MDAnalysis/MDAKits/pull/247#issuecomment-2509575906) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) -5. 🗣 Commented on [#315](https://github.com/Moonlark-Dev/Moonlark/pull/315#issuecomment-2509552529) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -6. 🗣 Commented on [#23024](https://github.com/spyder-ide/spyder/pull/23024#issuecomment-2509023029) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#937](https://github.com/spacetelescope/webbpsf/pull/937#issuecomment-2508802081) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -8. 🗣 Commented on [#994](https://github.com/ToFuProject/tofu/pull/994#issuecomment-2508752587) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#3053](https://github.com/metabrainz/listenbrainz-server/pull/3053#issuecomment-2508134958) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#6030](https://github.com/rhinstaller/anaconda/pull/6030#issuecomment-2507836919) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#1350](https://github.com/aimclub/FEDOT/pull/1350#issuecomment-2511914507) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +2. 🗣 Commented on [#29](https://github.com/drauger-os-development/drauger-welcome/pull/29#issuecomment-2511747476) in [drauger-os-development/drauger-welcome](https://github.com/drauger-os-development/drauger-welcome) +3. 🗣 Commented on [#11](https://github.com/ITMO-NSS-team/Open-Source-Advisor/pull/11#issuecomment-2511417459) in [ITMO-NSS-team/Open-Source-Advisor](https://github.com/ITMO-NSS-team/Open-Source-Advisor) +4. 🗣 Commented on [#4814](https://github.com/MDAnalysis/mdanalysis/pull/4814#issuecomment-2511377355) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#1514](https://github.com/rpm-software-management/mock/pull/1514#issuecomment-2511196221) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +6. 🗣 Commented on [#3055](https://github.com/metabrainz/listenbrainz-server/pull/3055#issuecomment-2510982092) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#400](https://github.com/cleder/fastkml/pull/400#issuecomment-2510347004) in [cleder/fastkml](https://github.com/cleder/fastkml) +8. 🗣 Commented on [#995](https://github.com/ToFuProject/tofu/pull/995#issuecomment-2510250065) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#397](https://github.com/cleder/fastkml/pull/397#issuecomment-2510227587) in [cleder/fastkml](https://github.com/cleder/fastkml) +10. 🗣 Commented on [#247](https://github.com/MDAnalysis/MDAKits/pull/247#issuecomment-2509575906) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) From 25a15629a4463cebdda5c460724d57d2baca5a2b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 4 Dec 2024 00:55:39 +0000 Subject: [PATCH 2117/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 32229d9d..d8d4d185 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1350](https://github.com/aimclub/FEDOT/pull/1350#issuecomment-2511914507) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -2. 🗣 Commented on [#29](https://github.com/drauger-os-development/drauger-welcome/pull/29#issuecomment-2511747476) in [drauger-os-development/drauger-welcome](https://github.com/drauger-os-development/drauger-welcome) -3. 🗣 Commented on [#11](https://github.com/ITMO-NSS-team/Open-Source-Advisor/pull/11#issuecomment-2511417459) in [ITMO-NSS-team/Open-Source-Advisor](https://github.com/ITMO-NSS-team/Open-Source-Advisor) -4. 🗣 Commented on [#4814](https://github.com/MDAnalysis/mdanalysis/pull/4814#issuecomment-2511377355) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#1514](https://github.com/rpm-software-management/mock/pull/1514#issuecomment-2511196221) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -6. 🗣 Commented on [#3055](https://github.com/metabrainz/listenbrainz-server/pull/3055#issuecomment-2510982092) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#400](https://github.com/cleder/fastkml/pull/400#issuecomment-2510347004) in [cleder/fastkml](https://github.com/cleder/fastkml) -8. 🗣 Commented on [#995](https://github.com/ToFuProject/tofu/pull/995#issuecomment-2510250065) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#397](https://github.com/cleder/fastkml/pull/397#issuecomment-2510227587) in [cleder/fastkml](https://github.com/cleder/fastkml) -10. 🗣 Commented on [#247](https://github.com/MDAnalysis/MDAKits/pull/247#issuecomment-2509575906) in [MDAnalysis/MDAKits](https://github.com/MDAnalysis/MDAKits) +1. 🗣 Commented on [#997](https://github.com/ToFuProject/tofu/pull/997#issuecomment-2515214376) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#1663](https://github.com/odlgroup/odl/pull/1663#issuecomment-2515000356) in [odlgroup/odl](https://github.com/odlgroup/odl) +3. 🗣 Commented on [#996](https://github.com/ToFuProject/tofu/pull/996#issuecomment-2514645702) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#41](https://github.com/eastgenomics/eggd_artemis/pull/41#issuecomment-2514498577) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +5. 🗣 Commented on [#40](https://github.com/eastgenomics/eggd_artemis/pull/40#issuecomment-2514289521) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +6. 🗣 Commented on [#39](https://github.com/eastgenomics/eggd_artemis/pull/39#issuecomment-2513938015) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +7. 🗣 Commented on [#319](https://github.com/Moonlark-Dev/Moonlark/pull/319#issuecomment-2513880461) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +8. 🗣 Commented on [#539](https://github.com/payu-org/payu/pull/539#issuecomment-2513574094) in [payu-org/payu](https://github.com/payu-org/payu) +9. 🗣 Commented on [#4816](https://github.com/MDAnalysis/mdanalysis/pull/4816#issuecomment-2513314059) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#1659](https://github.com/spacetelescope/jwql/pull/1659#issuecomment-2513032448) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) From 4b528150a26a29038071c15a5f657445e50294d9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Dec 2024 00:55:45 +0000 Subject: [PATCH 2118/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d8d4d185..19fd6898 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#997](https://github.com/ToFuProject/tofu/pull/997#issuecomment-2515214376) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#1663](https://github.com/odlgroup/odl/pull/1663#issuecomment-2515000356) in [odlgroup/odl](https://github.com/odlgroup/odl) -3. 🗣 Commented on [#996](https://github.com/ToFuProject/tofu/pull/996#issuecomment-2514645702) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#41](https://github.com/eastgenomics/eggd_artemis/pull/41#issuecomment-2514498577) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -5. 🗣 Commented on [#40](https://github.com/eastgenomics/eggd_artemis/pull/40#issuecomment-2514289521) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -6. 🗣 Commented on [#39](https://github.com/eastgenomics/eggd_artemis/pull/39#issuecomment-2513938015) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -7. 🗣 Commented on [#319](https://github.com/Moonlark-Dev/Moonlark/pull/319#issuecomment-2513880461) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -8. 🗣 Commented on [#539](https://github.com/payu-org/payu/pull/539#issuecomment-2513574094) in [payu-org/payu](https://github.com/payu-org/payu) -9. 🗣 Commented on [#4816](https://github.com/MDAnalysis/mdanalysis/pull/4816#issuecomment-2513314059) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#1659](https://github.com/spacetelescope/jwql/pull/1659#issuecomment-2513032448) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +1. 🗣 Commented on [#32](https://github.com/foreign-sub/tinygrad/pull/32#issuecomment-2517505268) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +2. 🗣 Commented on [#581](https://github.com/oemof/tespy/pull/581#issuecomment-2517171806) in [oemof/tespy](https://github.com/oemof/tespy) +3. 🗣 Commented on [#162](https://github.com/eastgenomics/trendyQC/pull/162#issuecomment-2516936102) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +4. 🗣 Commented on [#42](https://github.com/eastgenomics/eggd_artemis/pull/42#issuecomment-2516716577) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +5. 🗣 Commented on [#31](https://github.com/foreign-sub/tinygrad/pull/31#issuecomment-2516472475) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +6. 🗣 Commented on [#394](https://github.com/PyAbel/PyAbel/pull/394#issuecomment-2516066113) in [PyAbel/PyAbel](https://github.com/PyAbel/PyAbel) +7. 🗣 Commented on [#4820](https://github.com/MDAnalysis/mdanalysis/pull/4820#issuecomment-2515902606) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#1068](https://github.com/scilus/scilpy/pull/1068#issuecomment-2515559099) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#28](https://github.com/CartoonFan/shaderc/pull/28#issuecomment-2515526539) in [CartoonFan/shaderc](https://github.com/CartoonFan/shaderc) +10. 🗣 Commented on [#733](https://github.com/HEXRD/hexrd/pull/733#issuecomment-2515444740) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) From 2e38dfa1d0670a234ed6ce3762381be92dd40917 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 00:55:07 +0000 Subject: [PATCH 2119/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 19fd6898..10fbd4d8 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#32](https://github.com/foreign-sub/tinygrad/pull/32#issuecomment-2517505268) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -2. 🗣 Commented on [#581](https://github.com/oemof/tespy/pull/581#issuecomment-2517171806) in [oemof/tespy](https://github.com/oemof/tespy) -3. 🗣 Commented on [#162](https://github.com/eastgenomics/trendyQC/pull/162#issuecomment-2516936102) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -4. 🗣 Commented on [#42](https://github.com/eastgenomics/eggd_artemis/pull/42#issuecomment-2516716577) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -5. 🗣 Commented on [#31](https://github.com/foreign-sub/tinygrad/pull/31#issuecomment-2516472475) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -6. 🗣 Commented on [#394](https://github.com/PyAbel/PyAbel/pull/394#issuecomment-2516066113) in [PyAbel/PyAbel](https://github.com/PyAbel/PyAbel) -7. 🗣 Commented on [#4820](https://github.com/MDAnalysis/mdanalysis/pull/4820#issuecomment-2515902606) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#1068](https://github.com/scilus/scilpy/pull/1068#issuecomment-2515559099) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#28](https://github.com/CartoonFan/shaderc/pull/28#issuecomment-2515526539) in [CartoonFan/shaderc](https://github.com/CartoonFan/shaderc) -10. 🗣 Commented on [#733](https://github.com/HEXRD/hexrd/pull/733#issuecomment-2515444740) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +1. 🗣 Commented on [#1664](https://github.com/odlgroup/odl/pull/1664#issuecomment-2520284949) in [odlgroup/odl](https://github.com/odlgroup/odl) +2. 🗣 Commented on [#63](https://github.com/cirKITers/qml-essentials/pull/63#issuecomment-2520159430) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +3. 🗣 Commented on [#35](https://github.com/foreign-sub/tinygrad/pull/35#issuecomment-2519518184) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +4. 🗣 Commented on [#34](https://github.com/foreign-sub/tinygrad/pull/34#issuecomment-2518925690) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +5. 🗣 Commented on [#4822](https://github.com/MDAnalysis/mdanalysis/pull/4822#issuecomment-2518863028) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#1069](https://github.com/scilus/scilpy/pull/1069#issuecomment-2518527192) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#33](https://github.com/foreign-sub/tinygrad/pull/33#issuecomment-2518451700) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +8. 🗣 Commented on [#3066](https://github.com/metabrainz/listenbrainz-server/pull/3066#issuecomment-2517832615) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#32](https://github.com/foreign-sub/tinygrad/pull/32#issuecomment-2517505268) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +10. 🗣 Commented on [#581](https://github.com/oemof/tespy/pull/581#issuecomment-2517171806) in [oemof/tespy](https://github.com/oemof/tespy) From cb8a18d73dda26aa79c1cd55fad7db20652b57e4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 7 Dec 2024 00:54:39 +0000 Subject: [PATCH 2120/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 10fbd4d8..0176c9d2 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1664](https://github.com/odlgroup/odl/pull/1664#issuecomment-2520284949) in [odlgroup/odl](https://github.com/odlgroup/odl) -2. 🗣 Commented on [#63](https://github.com/cirKITers/qml-essentials/pull/63#issuecomment-2520159430) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -3. 🗣 Commented on [#35](https://github.com/foreign-sub/tinygrad/pull/35#issuecomment-2519518184) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -4. 🗣 Commented on [#34](https://github.com/foreign-sub/tinygrad/pull/34#issuecomment-2518925690) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -5. 🗣 Commented on [#4822](https://github.com/MDAnalysis/mdanalysis/pull/4822#issuecomment-2518863028) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#1069](https://github.com/scilus/scilpy/pull/1069#issuecomment-2518527192) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#33](https://github.com/foreign-sub/tinygrad/pull/33#issuecomment-2518451700) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -8. 🗣 Commented on [#3066](https://github.com/metabrainz/listenbrainz-server/pull/3066#issuecomment-2517832615) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#32](https://github.com/foreign-sub/tinygrad/pull/32#issuecomment-2517505268) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -10. 🗣 Commented on [#581](https://github.com/oemof/tespy/pull/581#issuecomment-2517171806) in [oemof/tespy](https://github.com/oemof/tespy) +1. 🗣 Commented on [#39](https://github.com/foreign-sub/tinygrad/pull/39#issuecomment-2522451577) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +2. 🗣 Commented on [#38](https://github.com/foreign-sub/tinygrad/pull/38#issuecomment-2521925723) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +3. 🗣 Commented on [#264](https://github.com/cleder/pygeoif/pull/264#issuecomment-2521312414) in [cleder/pygeoif](https://github.com/cleder/pygeoif) +4. 🗣 Commented on [#37](https://github.com/foreign-sub/tinygrad/pull/37#issuecomment-2521288210) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +5. 🗣 Commented on [#4173](https://github.com/privacyidea/privacyidea/pull/4173#issuecomment-2520627569) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +6. 🗣 Commented on [#205](https://github.com/colinoflynn/pico-python/pull/205#issuecomment-2520426248) in [colinoflynn/pico-python](https://github.com/colinoflynn/pico-python) +7. 🗣 Commented on [#36](https://github.com/foreign-sub/tinygrad/pull/36#issuecomment-2520416731) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +8. 🗣 Commented on [#4166](https://github.com/privacyidea/privacyidea/pull/4166#issuecomment-2520410930) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +9. 🗣 Commented on [#1664](https://github.com/odlgroup/odl/pull/1664#issuecomment-2520284949) in [odlgroup/odl](https://github.com/odlgroup/odl) +10. 🗣 Commented on [#63](https://github.com/cirKITers/qml-essentials/pull/63#issuecomment-2520159430) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) From c3f9e6594dafbe191745dfd7c624b0fe6a22a3cd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 8 Dec 2024 00:59:43 +0000 Subject: [PATCH 2121/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0176c9d2..8f36ecb1 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#39](https://github.com/foreign-sub/tinygrad/pull/39#issuecomment-2522451577) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -2. 🗣 Commented on [#38](https://github.com/foreign-sub/tinygrad/pull/38#issuecomment-2521925723) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -3. 🗣 Commented on [#264](https://github.com/cleder/pygeoif/pull/264#issuecomment-2521312414) in [cleder/pygeoif](https://github.com/cleder/pygeoif) -4. 🗣 Commented on [#37](https://github.com/foreign-sub/tinygrad/pull/37#issuecomment-2521288210) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -5. 🗣 Commented on [#4173](https://github.com/privacyidea/privacyidea/pull/4173#issuecomment-2520627569) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -6. 🗣 Commented on [#205](https://github.com/colinoflynn/pico-python/pull/205#issuecomment-2520426248) in [colinoflynn/pico-python](https://github.com/colinoflynn/pico-python) -7. 🗣 Commented on [#36](https://github.com/foreign-sub/tinygrad/pull/36#issuecomment-2520416731) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -8. 🗣 Commented on [#4166](https://github.com/privacyidea/privacyidea/pull/4166#issuecomment-2520410930) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -9. 🗣 Commented on [#1664](https://github.com/odlgroup/odl/pull/1664#issuecomment-2520284949) in [odlgroup/odl](https://github.com/odlgroup/odl) -10. 🗣 Commented on [#63](https://github.com/cirKITers/qml-essentials/pull/63#issuecomment-2520159430) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +1. 🗣 Commented on [#449](https://github.com/manoharan-lab/holopy/pull/449#issuecomment-2525273545) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +2. 🗣 Commented on [#23213](https://github.com/spyder-ide/spyder/pull/23213#issuecomment-2525255202) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#1668](https://github.com/odlgroup/odl/pull/1668#issuecomment-2525247035) in [odlgroup/odl](https://github.com/odlgroup/odl) +4. 🗣 Commented on [#44](https://github.com/foreign-sub/tinygrad/pull/44#issuecomment-2525176592) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +5. 🗣 Commented on [#43](https://github.com/foreign-sub/tinygrad/pull/43#issuecomment-2525000992) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +6. 🗣 Commented on [#946](https://github.com/fury-gl/fury/pull/946#issuecomment-2524830473) in [fury-gl/fury](https://github.com/fury-gl/fury) +7. 🗣 Commented on [#42](https://github.com/foreign-sub/tinygrad/pull/42#issuecomment-2524802729) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +8. 🗣 Commented on [#23201](https://github.com/spyder-ide/spyder/pull/23201#issuecomment-2524566903) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#41](https://github.com/foreign-sub/tinygrad/pull/41#issuecomment-2524064292) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +10. 🗣 Commented on [#945](https://github.com/fury-gl/fury/pull/945#issuecomment-2523896832) in [fury-gl/fury](https://github.com/fury-gl/fury) From 8760facea266f11828a128926370dd40a98dafae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 00:57:16 +0000 Subject: [PATCH 2122/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8f36ecb1..d82018d9 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#449](https://github.com/manoharan-lab/holopy/pull/449#issuecomment-2525273545) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -2. 🗣 Commented on [#23213](https://github.com/spyder-ide/spyder/pull/23213#issuecomment-2525255202) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#1668](https://github.com/odlgroup/odl/pull/1668#issuecomment-2525247035) in [odlgroup/odl](https://github.com/odlgroup/odl) -4. 🗣 Commented on [#44](https://github.com/foreign-sub/tinygrad/pull/44#issuecomment-2525176592) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -5. 🗣 Commented on [#43](https://github.com/foreign-sub/tinygrad/pull/43#issuecomment-2525000992) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -6. 🗣 Commented on [#946](https://github.com/fury-gl/fury/pull/946#issuecomment-2524830473) in [fury-gl/fury](https://github.com/fury-gl/fury) -7. 🗣 Commented on [#42](https://github.com/foreign-sub/tinygrad/pull/42#issuecomment-2524802729) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -8. 🗣 Commented on [#23201](https://github.com/spyder-ide/spyder/pull/23201#issuecomment-2524566903) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#41](https://github.com/foreign-sub/tinygrad/pull/41#issuecomment-2524064292) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -10. 🗣 Commented on [#945](https://github.com/fury-gl/fury/pull/945#issuecomment-2523896832) in [fury-gl/fury](https://github.com/fury-gl/fury) +1. 🗣 Commented on [#4800](https://github.com/MDAnalysis/mdanalysis/pull/4800#issuecomment-2526406858) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#47](https://github.com/foreign-sub/tinygrad/pull/47#issuecomment-2526357829) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +3. 🗣 Commented on [#46](https://github.com/foreign-sub/tinygrad/pull/46#issuecomment-2525990730) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +4. 🗣 Commented on [#2](https://github.com/sdgniser/app/pull/2#issuecomment-2525431556) in [sdgniser/app](https://github.com/sdgniser/app) +5. 🗣 Commented on [#45](https://github.com/foreign-sub/tinygrad/pull/45#issuecomment-2525379064) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +6. 🗣 Commented on [#449](https://github.com/manoharan-lab/holopy/pull/449#issuecomment-2525273545) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +7. 🗣 Commented on [#23213](https://github.com/spyder-ide/spyder/pull/23213#issuecomment-2525255202) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#1668](https://github.com/odlgroup/odl/pull/1668#issuecomment-2525247035) in [odlgroup/odl](https://github.com/odlgroup/odl) +9. 🗣 Commented on [#44](https://github.com/foreign-sub/tinygrad/pull/44#issuecomment-2525176592) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +10. 🗣 Commented on [#43](https://github.com/foreign-sub/tinygrad/pull/43#issuecomment-2525000992) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) From b2f4a39a5e75293fa100944128f4cd656411fb60 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Dec 2024 00:56:33 +0000 Subject: [PATCH 2123/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d82018d9..bf35a1d6 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4800](https://github.com/MDAnalysis/mdanalysis/pull/4800#issuecomment-2526406858) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#47](https://github.com/foreign-sub/tinygrad/pull/47#issuecomment-2526357829) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -3. 🗣 Commented on [#46](https://github.com/foreign-sub/tinygrad/pull/46#issuecomment-2525990730) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -4. 🗣 Commented on [#2](https://github.com/sdgniser/app/pull/2#issuecomment-2525431556) in [sdgniser/app](https://github.com/sdgniser/app) -5. 🗣 Commented on [#45](https://github.com/foreign-sub/tinygrad/pull/45#issuecomment-2525379064) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -6. 🗣 Commented on [#449](https://github.com/manoharan-lab/holopy/pull/449#issuecomment-2525273545) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -7. 🗣 Commented on [#23213](https://github.com/spyder-ide/spyder/pull/23213#issuecomment-2525255202) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#1668](https://github.com/odlgroup/odl/pull/1668#issuecomment-2525247035) in [odlgroup/odl](https://github.com/odlgroup/odl) -9. 🗣 Commented on [#44](https://github.com/foreign-sub/tinygrad/pull/44#issuecomment-2525176592) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -10. 🗣 Commented on [#43](https://github.com/foreign-sub/tinygrad/pull/43#issuecomment-2525000992) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +1. 🗣 Commented on [#49](https://github.com/foreign-sub/tinygrad/pull/49#issuecomment-2529330596) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +2. 🗣 Commented on [#12](https://github.com/llgneuroresearch/avnirpy/pull/12#issuecomment-2529222442) in [llgneuroresearch/avnirpy](https://github.com/llgneuroresearch/avnirpy) +3. 🗣 Commented on [#948](https://github.com/spacetelescope/webbpsf/pull/948#issuecomment-2529094335) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#5](https://github.com/Code-Institute-Solutions/churnometer/pull/5#issuecomment-2528648465) in [Code-Institute-Solutions/churnometer](https://github.com/Code-Institute-Solutions/churnometer) +5. 🗣 Commented on [#1052](https://github.com/avaframe/AvaFrame/pull/1052#issuecomment-2528483878) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#9445](https://github.com/statsmodels/statsmodels/pull/9445#issuecomment-2528461315) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +7. 🗣 Commented on [#48](https://github.com/foreign-sub/tinygrad/pull/48#issuecomment-2528459040) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +8. 🗣 Commented on [#3069](https://github.com/metabrainz/listenbrainz-server/pull/3069#issuecomment-2527975027) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#1594](https://github.com/Open-CAS/open-cas-linux/pull/1594#issuecomment-2527698338) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +10. 🗣 Commented on [#13](https://github.com/eastgenomics/Haemonc_requests/pull/13#issuecomment-2527427080) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) From 4db1c8dffb40255484fc75f2434a8e64aa838e1c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 00:55:44 +0000 Subject: [PATCH 2124/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bf35a1d6..b62ae90a 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#49](https://github.com/foreign-sub/tinygrad/pull/49#issuecomment-2529330596) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -2. 🗣 Commented on [#12](https://github.com/llgneuroresearch/avnirpy/pull/12#issuecomment-2529222442) in [llgneuroresearch/avnirpy](https://github.com/llgneuroresearch/avnirpy) -3. 🗣 Commented on [#948](https://github.com/spacetelescope/webbpsf/pull/948#issuecomment-2529094335) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#5](https://github.com/Code-Institute-Solutions/churnometer/pull/5#issuecomment-2528648465) in [Code-Institute-Solutions/churnometer](https://github.com/Code-Institute-Solutions/churnometer) -5. 🗣 Commented on [#1052](https://github.com/avaframe/AvaFrame/pull/1052#issuecomment-2528483878) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#9445](https://github.com/statsmodels/statsmodels/pull/9445#issuecomment-2528461315) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -7. 🗣 Commented on [#48](https://github.com/foreign-sub/tinygrad/pull/48#issuecomment-2528459040) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -8. 🗣 Commented on [#3069](https://github.com/metabrainz/listenbrainz-server/pull/3069#issuecomment-2527975027) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#1594](https://github.com/Open-CAS/open-cas-linux/pull/1594#issuecomment-2527698338) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -10. 🗣 Commented on [#13](https://github.com/eastgenomics/Haemonc_requests/pull/13#issuecomment-2527427080) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) +1. 🗣 Commented on [#38](https://github.com/MBrede/generative_ai/pull/38#issuecomment-2532113042) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) +2. 🗣 Commented on [#51](https://github.com/foreign-sub/tinygrad/pull/51#issuecomment-2531728697) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +3. 🗣 Commented on [#1053](https://github.com/avaframe/AvaFrame/pull/1053#issuecomment-2531699396) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#6045](https://github.com/rhinstaller/anaconda/pull/6045#issuecomment-2531530196) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#2171](https://github.com/rpm-software-management/dnf/pull/2171#issuecomment-2531114438) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +6. 🗣 Commented on [#33](https://github.com/Open-CAS/test-framework/pull/33#issuecomment-2530363982) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) +7. 🗣 Commented on [#1595](https://github.com/Open-CAS/open-cas-linux/pull/1595#issuecomment-2530360897) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) +8. 🗣 Commented on [#50](https://github.com/foreign-sub/tinygrad/pull/50#issuecomment-2530040658) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +9. 🗣 Commented on [#49](https://github.com/foreign-sub/tinygrad/pull/49#issuecomment-2529330596) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +10. 🗣 Commented on [#12](https://github.com/llgneuroresearch/avnirpy/pull/12#issuecomment-2529222442) in [llgneuroresearch/avnirpy](https://github.com/llgneuroresearch/avnirpy) From 0c203606e3ddb1d1391ad669be8fd8231bd28808 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 00:55:20 +0000 Subject: [PATCH 2125/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b62ae90a..89d70246 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#38](https://github.com/MBrede/generative_ai/pull/38#issuecomment-2532113042) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) -2. 🗣 Commented on [#51](https://github.com/foreign-sub/tinygrad/pull/51#issuecomment-2531728697) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -3. 🗣 Commented on [#1053](https://github.com/avaframe/AvaFrame/pull/1053#issuecomment-2531699396) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#6045](https://github.com/rhinstaller/anaconda/pull/6045#issuecomment-2531530196) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#2171](https://github.com/rpm-software-management/dnf/pull/2171#issuecomment-2531114438) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -6. 🗣 Commented on [#33](https://github.com/Open-CAS/test-framework/pull/33#issuecomment-2530363982) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) -7. 🗣 Commented on [#1595](https://github.com/Open-CAS/open-cas-linux/pull/1595#issuecomment-2530360897) in [Open-CAS/open-cas-linux](https://github.com/Open-CAS/open-cas-linux) -8. 🗣 Commented on [#50](https://github.com/foreign-sub/tinygrad/pull/50#issuecomment-2530040658) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -9. 🗣 Commented on [#49](https://github.com/foreign-sub/tinygrad/pull/49#issuecomment-2529330596) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -10. 🗣 Commented on [#12](https://github.com/llgneuroresearch/avnirpy/pull/12#issuecomment-2529222442) in [llgneuroresearch/avnirpy](https://github.com/llgneuroresearch/avnirpy) +1. 🗣 Commented on [#54](https://github.com/foreign-sub/tinygrad/pull/54#issuecomment-2536078054) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +2. 🗣 Commented on [#308](https://github.com/boutproject/xBOUT/pull/308#issuecomment-2533758545) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) +3. 🗣 Commented on [#1](https://github.com/ERPGulf/gauth_erpgulf/pull/1#issuecomment-2533675169) in [ERPGulf/gauth_erpgulf](https://github.com/ERPGulf/gauth_erpgulf) +4. 🗣 Commented on [#53](https://github.com/foreign-sub/tinygrad/pull/53#issuecomment-2533454929) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +5. 🗣 Commented on [#4427](https://github.com/uwcirg/truenth-portal/pull/4427#issuecomment-2533343987) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +6. 🗣 Commented on [#1512](https://github.com/CiviWiki/OpenCiviWiki/pull/1512#issuecomment-2533218369) in [CiviWiki/OpenCiviWiki](https://github.com/CiviWiki/OpenCiviWiki) +7. 🗣 Commented on [#53](https://github.com/NASA-Planetary-Science/AmesCAP/pull/53#issuecomment-2532847254) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +8. 🗣 Commented on [#52](https://github.com/foreign-sub/tinygrad/pull/52#issuecomment-2532754564) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +9. 🗣 Commented on [#52](https://github.com/NASA-Planetary-Science/AmesCAP/pull/52#issuecomment-2532553236) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +10. 🗣 Commented on [#38](https://github.com/MBrede/generative_ai/pull/38#issuecomment-2532113042) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) From b4e02c2a913ef1081a7158da87da5d0b05e51514 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Dec 2024 00:56:12 +0000 Subject: [PATCH 2126/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 89d70246..a20bb7de 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#54](https://github.com/foreign-sub/tinygrad/pull/54#issuecomment-2536078054) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -2. 🗣 Commented on [#308](https://github.com/boutproject/xBOUT/pull/308#issuecomment-2533758545) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) -3. 🗣 Commented on [#1](https://github.com/ERPGulf/gauth_erpgulf/pull/1#issuecomment-2533675169) in [ERPGulf/gauth_erpgulf](https://github.com/ERPGulf/gauth_erpgulf) -4. 🗣 Commented on [#53](https://github.com/foreign-sub/tinygrad/pull/53#issuecomment-2533454929) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -5. 🗣 Commented on [#4427](https://github.com/uwcirg/truenth-portal/pull/4427#issuecomment-2533343987) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -6. 🗣 Commented on [#1512](https://github.com/CiviWiki/OpenCiviWiki/pull/1512#issuecomment-2533218369) in [CiviWiki/OpenCiviWiki](https://github.com/CiviWiki/OpenCiviWiki) -7. 🗣 Commented on [#53](https://github.com/NASA-Planetary-Science/AmesCAP/pull/53#issuecomment-2532847254) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -8. 🗣 Commented on [#52](https://github.com/foreign-sub/tinygrad/pull/52#issuecomment-2532754564) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -9. 🗣 Commented on [#52](https://github.com/NASA-Planetary-Science/AmesCAP/pull/52#issuecomment-2532553236) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -10. 🗣 Commented on [#38](https://github.com/MBrede/generative_ai/pull/38#issuecomment-2532113042) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) +1. 🗣 Commented on [#57](https://github.com/foreign-sub/tinygrad/pull/57#issuecomment-2538075358) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +2. 🗣 Commented on [#1025](https://github.com/PyThaiNLP/pythainlp/pull/1025#issuecomment-2537810546) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#56](https://github.com/foreign-sub/tinygrad/pull/56#issuecomment-2537589696) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +4. 🗣 Commented on [#2174](https://github.com/rpm-software-management/dnf/pull/2174#issuecomment-2537042593) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +5. 🗣 Commented on [#55](https://github.com/foreign-sub/tinygrad/pull/55#issuecomment-2536998255) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +6. 🗣 Commented on [#54](https://github.com/foreign-sub/tinygrad/pull/54#issuecomment-2536078054) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +7. 🗣 Commented on [#308](https://github.com/boutproject/xBOUT/pull/308#issuecomment-2533758545) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) +8. 🗣 Commented on [#1](https://github.com/ERPGulf/gauth_erpgulf/pull/1#issuecomment-2533675169) in [ERPGulf/gauth_erpgulf](https://github.com/ERPGulf/gauth_erpgulf) +9. 🗣 Commented on [#53](https://github.com/foreign-sub/tinygrad/pull/53#issuecomment-2533454929) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +10. 🗣 Commented on [#4427](https://github.com/uwcirg/truenth-portal/pull/4427#issuecomment-2533343987) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) From a6f23be1276d04a3c8cbf334774f2ac1410091a1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Dec 2024 00:53:48 +0000 Subject: [PATCH 2127/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a20bb7de..4f4d4583 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#57](https://github.com/foreign-sub/tinygrad/pull/57#issuecomment-2538075358) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -2. 🗣 Commented on [#1025](https://github.com/PyThaiNLP/pythainlp/pull/1025#issuecomment-2537810546) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#56](https://github.com/foreign-sub/tinygrad/pull/56#issuecomment-2537589696) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -4. 🗣 Commented on [#2174](https://github.com/rpm-software-management/dnf/pull/2174#issuecomment-2537042593) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) -5. 🗣 Commented on [#55](https://github.com/foreign-sub/tinygrad/pull/55#issuecomment-2536998255) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -6. 🗣 Commented on [#54](https://github.com/foreign-sub/tinygrad/pull/54#issuecomment-2536078054) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -7. 🗣 Commented on [#308](https://github.com/boutproject/xBOUT/pull/308#issuecomment-2533758545) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) -8. 🗣 Commented on [#1](https://github.com/ERPGulf/gauth_erpgulf/pull/1#issuecomment-2533675169) in [ERPGulf/gauth_erpgulf](https://github.com/ERPGulf/gauth_erpgulf) -9. 🗣 Commented on [#53](https://github.com/foreign-sub/tinygrad/pull/53#issuecomment-2533454929) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -10. 🗣 Commented on [#4427](https://github.com/uwcirg/truenth-portal/pull/4427#issuecomment-2533343987) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +1. 🗣 Commented on [#514](https://github.com/Spoken-tutorial/spoken-website/pull/514#issuecomment-2540904784) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +2. 🗣 Commented on [#61](https://github.com/foreign-sub/tinygrad/pull/61#issuecomment-2540823391) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +3. 🗣 Commented on [#60](https://github.com/foreign-sub/tinygrad/pull/60#issuecomment-2540372701) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +4. 🗣 Commented on [#4428](https://github.com/uwcirg/truenth-portal/pull/4428#issuecomment-2539947767) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) +5. 🗣 Commented on [#59](https://github.com/foreign-sub/tinygrad/pull/59#issuecomment-2539908775) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +6. 🗣 Commented on [#1106](https://github.com/scilus/scilpy/pull/1106#issuecomment-2539907875) in [scilus/scilpy](https://github.com/scilus/scilpy) +7. 🗣 Commented on [#1103](https://github.com/scilus/scilpy/pull/1103#issuecomment-2539892988) in [scilus/scilpy](https://github.com/scilus/scilpy) +8. 🗣 Commented on [#1102](https://github.com/scilus/scilpy/pull/1102#issuecomment-2539872473) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#1101](https://github.com/scilus/scilpy/pull/1101#issuecomment-2539830024) in [scilus/scilpy](https://github.com/scilus/scilpy) +10. 🗣 Commented on [#1099](https://github.com/scilus/scilpy/pull/1099#issuecomment-2539811881) in [scilus/scilpy](https://github.com/scilus/scilpy) From ffeef0b65aabed2748cad243a52319b1ee49b09f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Dec 2024 00:59:47 +0000 Subject: [PATCH 2128/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4f4d4583..4c7707fa 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#514](https://github.com/Spoken-tutorial/spoken-website/pull/514#issuecomment-2540904784) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -2. 🗣 Commented on [#61](https://github.com/foreign-sub/tinygrad/pull/61#issuecomment-2540823391) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -3. 🗣 Commented on [#60](https://github.com/foreign-sub/tinygrad/pull/60#issuecomment-2540372701) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -4. 🗣 Commented on [#4428](https://github.com/uwcirg/truenth-portal/pull/4428#issuecomment-2539947767) in [uwcirg/truenth-portal](https://github.com/uwcirg/truenth-portal) -5. 🗣 Commented on [#59](https://github.com/foreign-sub/tinygrad/pull/59#issuecomment-2539908775) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -6. 🗣 Commented on [#1106](https://github.com/scilus/scilpy/pull/1106#issuecomment-2539907875) in [scilus/scilpy](https://github.com/scilus/scilpy) -7. 🗣 Commented on [#1103](https://github.com/scilus/scilpy/pull/1103#issuecomment-2539892988) in [scilus/scilpy](https://github.com/scilus/scilpy) -8. 🗣 Commented on [#1102](https://github.com/scilus/scilpy/pull/1102#issuecomment-2539872473) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#1101](https://github.com/scilus/scilpy/pull/1101#issuecomment-2539830024) in [scilus/scilpy](https://github.com/scilus/scilpy) -10. 🗣 Commented on [#1099](https://github.com/scilus/scilpy/pull/1099#issuecomment-2539811881) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#18](https://github.com/mpds-io/mpds-client/pull/18#issuecomment-2543075346) in [mpds-io/mpds-client](https://github.com/mpds-io/mpds-client) +2. 🗣 Commented on [#66](https://github.com/elinscott/ase_koopmans/pull/66#issuecomment-2543022136) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) +3. 🗣 Commented on [#65](https://github.com/foreign-sub/tinygrad/pull/65#issuecomment-2542993605) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +4. 🗣 Commented on [#64](https://github.com/foreign-sub/tinygrad/pull/64#issuecomment-2542662099) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +5. 🗣 Commented on [#54](https://github.com/NASA-Planetary-Science/AmesCAP/pull/54#issuecomment-2542584981) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +6. 🗣 Commented on [#63](https://github.com/foreign-sub/tinygrad/pull/63#issuecomment-2542217867) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +7. 🗣 Commented on [#2](https://github.com/HEXRD/polycrystal/pull/2#issuecomment-2542047567) in [HEXRD/polycrystal](https://github.com/HEXRD/polycrystal) +8. 🗣 Commented on [#13](https://github.com/llgneuroresearch/avnirpy/pull/13#issuecomment-2541896201) in [llgneuroresearch/avnirpy](https://github.com/llgneuroresearch/avnirpy) +9. 🗣 Commented on [#62](https://github.com/foreign-sub/tinygrad/pull/62#issuecomment-2541534773) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +10. 🗣 Commented on [#3347](https://github.com/reframe-hpc/reframe/pull/3347#issuecomment-2541489602) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) From 9b3dd55c4a65656bda118377e0abfc4e9749da44 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Dec 2024 00:57:35 +0000 Subject: [PATCH 2129/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4c7707fa..106480c5 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#18](https://github.com/mpds-io/mpds-client/pull/18#issuecomment-2543075346) in [mpds-io/mpds-client](https://github.com/mpds-io/mpds-client) -2. 🗣 Commented on [#66](https://github.com/elinscott/ase_koopmans/pull/66#issuecomment-2543022136) in [elinscott/ase_koopmans](https://github.com/elinscott/ase_koopmans) -3. 🗣 Commented on [#65](https://github.com/foreign-sub/tinygrad/pull/65#issuecomment-2542993605) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -4. 🗣 Commented on [#64](https://github.com/foreign-sub/tinygrad/pull/64#issuecomment-2542662099) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -5. 🗣 Commented on [#54](https://github.com/NASA-Planetary-Science/AmesCAP/pull/54#issuecomment-2542584981) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -6. 🗣 Commented on [#63](https://github.com/foreign-sub/tinygrad/pull/63#issuecomment-2542217867) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -7. 🗣 Commented on [#2](https://github.com/HEXRD/polycrystal/pull/2#issuecomment-2542047567) in [HEXRD/polycrystal](https://github.com/HEXRD/polycrystal) -8. 🗣 Commented on [#13](https://github.com/llgneuroresearch/avnirpy/pull/13#issuecomment-2541896201) in [llgneuroresearch/avnirpy](https://github.com/llgneuroresearch/avnirpy) -9. 🗣 Commented on [#62](https://github.com/foreign-sub/tinygrad/pull/62#issuecomment-2541534773) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -10. 🗣 Commented on [#3347](https://github.com/reframe-hpc/reframe/pull/3347#issuecomment-2541489602) in [reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) +1. 🗣 Commented on [#23293](https://github.com/spyder-ide/spyder/pull/23293#issuecomment-2544164726) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#69](https://github.com/foreign-sub/tinygrad/pull/69#issuecomment-2544034152) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +3. 🗣 Commented on [#4837](https://github.com/MDAnalysis/mdanalysis/pull/4837#issuecomment-2544006152) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#22](https://github.com/sarnold/pyserv/pull/22#issuecomment-2543982348) in [sarnold/pyserv](https://github.com/sarnold/pyserv) +5. 🗣 Commented on [#68](https://github.com/foreign-sub/tinygrad/pull/68#issuecomment-2543886832) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +6. 🗣 Commented on [#1679](https://github.com/openSUSE/osc/pull/1679#issuecomment-2543840847) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#25](https://github.com/my8100/logparser/pull/25#issuecomment-2543507315) in [my8100/logparser](https://github.com/my8100/logparser) +8. 🗣 Commented on [#33](https://github.com/sdhutchins/labrat/pull/33#issuecomment-2543414444) in [sdhutchins/labrat](https://github.com/sdhutchins/labrat) +9. 🗣 Commented on [#67](https://github.com/foreign-sub/tinygrad/pull/67#issuecomment-2543410166) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +10. 🗣 Commented on [#9456](https://github.com/statsmodels/statsmodels/pull/9456#issuecomment-2543384327) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) From c1fe88fe73cf535122f169530a6b466beae28b12 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 00:55:35 +0000 Subject: [PATCH 2130/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 106480c5..027c548f 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#23293](https://github.com/spyder-ide/spyder/pull/23293#issuecomment-2544164726) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#69](https://github.com/foreign-sub/tinygrad/pull/69#issuecomment-2544034152) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -3. 🗣 Commented on [#4837](https://github.com/MDAnalysis/mdanalysis/pull/4837#issuecomment-2544006152) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#22](https://github.com/sarnold/pyserv/pull/22#issuecomment-2543982348) in [sarnold/pyserv](https://github.com/sarnold/pyserv) -5. 🗣 Commented on [#68](https://github.com/foreign-sub/tinygrad/pull/68#issuecomment-2543886832) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -6. 🗣 Commented on [#1679](https://github.com/openSUSE/osc/pull/1679#issuecomment-2543840847) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#25](https://github.com/my8100/logparser/pull/25#issuecomment-2543507315) in [my8100/logparser](https://github.com/my8100/logparser) -8. 🗣 Commented on [#33](https://github.com/sdhutchins/labrat/pull/33#issuecomment-2543414444) in [sdhutchins/labrat](https://github.com/sdhutchins/labrat) -9. 🗣 Commented on [#67](https://github.com/foreign-sub/tinygrad/pull/67#issuecomment-2543410166) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -10. 🗣 Commented on [#9456](https://github.com/statsmodels/statsmodels/pull/9456#issuecomment-2543384327) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +1. 🗣 Commented on [#4192](https://github.com/privacyidea/privacyidea/pull/4192#issuecomment-2546139502) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +2. 🗣 Commented on [#8](https://github.com/HEXRD/polycrystalx/pull/8#issuecomment-2545961890) in [HEXRD/polycrystalx](https://github.com/HEXRD/polycrystalx) +3. 🗣 Commented on [#951](https://github.com/spacetelescope/webbpsf/pull/951#issuecomment-2545924382) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +4. 🗣 Commented on [#950](https://github.com/spacetelescope/webbpsf/pull/950#issuecomment-2545877325) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) +5. 🗣 Commented on [#134](https://github.com/oda-hub/dispatcher-plugin-integral/pull/134#issuecomment-2545729207) in [oda-hub/dispatcher-plugin-integral](https://github.com/oda-hub/dispatcher-plugin-integral) +6. 🗣 Commented on [#71](https://github.com/foreign-sub/tinygrad/pull/71#issuecomment-2544859848) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +7. 🗣 Commented on [#223](https://github.com/damnever/pigar/pull/223#issuecomment-2544501667) in [damnever/pigar](https://github.com/damnever/pigar) +8. 🗣 Commented on [#70](https://github.com/foreign-sub/tinygrad/pull/70#issuecomment-2544330811) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +9. 🗣 Commented on [#205](https://github.com/mcdougallab/modeldb/pull/205#issuecomment-2544325733) in [mcdougallab/modeldb](https://github.com/mcdougallab/modeldb) +10. 🗣 Commented on [#23293](https://github.com/spyder-ide/spyder/pull/23293#issuecomment-2544164726) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From f7a299ba3fb50c2e751ed7c77c9cce5386a86163 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 00:53:24 +0000 Subject: [PATCH 2131/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 027c548f..a9f2aebd 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4192](https://github.com/privacyidea/privacyidea/pull/4192#issuecomment-2546139502) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -2. 🗣 Commented on [#8](https://github.com/HEXRD/polycrystalx/pull/8#issuecomment-2545961890) in [HEXRD/polycrystalx](https://github.com/HEXRD/polycrystalx) -3. 🗣 Commented on [#951](https://github.com/spacetelescope/webbpsf/pull/951#issuecomment-2545924382) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -4. 🗣 Commented on [#950](https://github.com/spacetelescope/webbpsf/pull/950#issuecomment-2545877325) in [spacetelescope/webbpsf](https://github.com/spacetelescope/webbpsf) -5. 🗣 Commented on [#134](https://github.com/oda-hub/dispatcher-plugin-integral/pull/134#issuecomment-2545729207) in [oda-hub/dispatcher-plugin-integral](https://github.com/oda-hub/dispatcher-plugin-integral) -6. 🗣 Commented on [#71](https://github.com/foreign-sub/tinygrad/pull/71#issuecomment-2544859848) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -7. 🗣 Commented on [#223](https://github.com/damnever/pigar/pull/223#issuecomment-2544501667) in [damnever/pigar](https://github.com/damnever/pigar) -8. 🗣 Commented on [#70](https://github.com/foreign-sub/tinygrad/pull/70#issuecomment-2544330811) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -9. 🗣 Commented on [#205](https://github.com/mcdougallab/modeldb/pull/205#issuecomment-2544325733) in [mcdougallab/modeldb](https://github.com/mcdougallab/modeldb) -10. 🗣 Commented on [#23293](https://github.com/spyder-ide/spyder/pull/23293#issuecomment-2544164726) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#251](https://github.com/lettucecfd/lettuce/pull/251#issuecomment-2548431156) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) +2. 🗣 Commented on [#43](https://github.com/eastgenomics/eggd_artemis/pull/43#issuecomment-2548231275) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) +3. 🗣 Commented on [#34](https://github.com/sdhutchins/labrat/pull/34#issuecomment-2547410282) in [sdhutchins/labrat](https://github.com/sdhutchins/labrat) +4. 🗣 Commented on [#580](https://github.com/askap-vast/vast-tools/pull/580#issuecomment-2547353051) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +5. 🗣 Commented on [#55](https://github.com/NASA-Planetary-Science/AmesCAP/pull/55#issuecomment-2547105117) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +6. 🗣 Commented on [#1767](https://github.com/HEXRD/hexrdgui/pull/1767#issuecomment-2547092040) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +7. 🗣 Commented on [#16](https://github.com/linum-uqam/linumpy/pull/16#issuecomment-2546816954) in [linum-uqam/linumpy](https://github.com/linum-uqam/linumpy) +8. 🗣 Commented on [#460](https://github.com/aria-tools/ARIA-tools/pull/460#issuecomment-2546770407) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) +9. 🗣 Commented on [#33](https://github.com/linum-uqam/linumpy/pull/33#issuecomment-2546663241) in [linum-uqam/linumpy](https://github.com/linum-uqam/linumpy) +10. 🗣 Commented on [#1147](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1147#issuecomment-2546439461) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) From a59e1d95976054706fa1111c12d25429c0c11c86 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 00:53:52 +0000 Subject: [PATCH 2132/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a9f2aebd..e79903c4 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#251](https://github.com/lettucecfd/lettuce/pull/251#issuecomment-2548431156) in [lettucecfd/lettuce](https://github.com/lettucecfd/lettuce) -2. 🗣 Commented on [#43](https://github.com/eastgenomics/eggd_artemis/pull/43#issuecomment-2548231275) in [eastgenomics/eggd_artemis](https://github.com/eastgenomics/eggd_artemis) -3. 🗣 Commented on [#34](https://github.com/sdhutchins/labrat/pull/34#issuecomment-2547410282) in [sdhutchins/labrat](https://github.com/sdhutchins/labrat) -4. 🗣 Commented on [#580](https://github.com/askap-vast/vast-tools/pull/580#issuecomment-2547353051) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -5. 🗣 Commented on [#55](https://github.com/NASA-Planetary-Science/AmesCAP/pull/55#issuecomment-2547105117) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -6. 🗣 Commented on [#1767](https://github.com/HEXRD/hexrdgui/pull/1767#issuecomment-2547092040) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -7. 🗣 Commented on [#16](https://github.com/linum-uqam/linumpy/pull/16#issuecomment-2546816954) in [linum-uqam/linumpy](https://github.com/linum-uqam/linumpy) -8. 🗣 Commented on [#460](https://github.com/aria-tools/ARIA-tools/pull/460#issuecomment-2546770407) in [aria-tools/ARIA-tools](https://github.com/aria-tools/ARIA-tools) -9. 🗣 Commented on [#33](https://github.com/linum-uqam/linumpy/pull/33#issuecomment-2546663241) in [linum-uqam/linumpy](https://github.com/linum-uqam/linumpy) -10. 🗣 Commented on [#1147](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1147#issuecomment-2546439461) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +1. 🗣 Commented on [#6057](https://github.com/rhinstaller/anaconda/pull/6057#issuecomment-2550908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#155](https://github.com/eastgenomics/eggd_conductor/pull/155#issuecomment-2550851822) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +3. 🗣 Commented on [#3083](https://github.com/metabrainz/listenbrainz-server/pull/3083#issuecomment-2550661996) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#75](https://github.com/foreign-sub/tinygrad/pull/75#issuecomment-2550616698) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +5. 🗣 Commented on [#88](https://github.com/ChinaGodMan/UserScriptsHistory/pull/88#issuecomment-2550554798) in [ChinaGodMan/UserScriptsHistory](https://github.com/ChinaGodMan/UserScriptsHistory) +6. 🗣 Commented on [#74](https://github.com/foreign-sub/tinygrad/pull/74#issuecomment-2550129319) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +7. 🗣 Commented on [#59](https://github.com/foreign-sub/aiofreepybox/pull/59#issuecomment-2549672664) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +8. 🗣 Commented on [#73](https://github.com/foreign-sub/tinygrad/pull/73#issuecomment-2549499270) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +9. 🗣 Commented on [#83](https://github.com/ChinaGodMan/UserScriptsHistory/pull/83#issuecomment-2549444504) in [ChinaGodMan/UserScriptsHistory](https://github.com/ChinaGodMan/UserScriptsHistory) +10. 🗣 Commented on [#6056](https://github.com/rhinstaller/anaconda/pull/6056#issuecomment-2549338355) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From 85531af625702c45751c47e0419604d2f72d1bac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 00:51:15 +0000 Subject: [PATCH 2133/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e79903c4..aa54e6c5 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#6057](https://github.com/rhinstaller/anaconda/pull/6057#issuecomment-2550908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#155](https://github.com/eastgenomics/eggd_conductor/pull/155#issuecomment-2550851822) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -3. 🗣 Commented on [#3083](https://github.com/metabrainz/listenbrainz-server/pull/3083#issuecomment-2550661996) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#75](https://github.com/foreign-sub/tinygrad/pull/75#issuecomment-2550616698) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -5. 🗣 Commented on [#88](https://github.com/ChinaGodMan/UserScriptsHistory/pull/88#issuecomment-2550554798) in [ChinaGodMan/UserScriptsHistory](https://github.com/ChinaGodMan/UserScriptsHistory) -6. 🗣 Commented on [#74](https://github.com/foreign-sub/tinygrad/pull/74#issuecomment-2550129319) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -7. 🗣 Commented on [#59](https://github.com/foreign-sub/aiofreepybox/pull/59#issuecomment-2549672664) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -8. 🗣 Commented on [#73](https://github.com/foreign-sub/tinygrad/pull/73#issuecomment-2549499270) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -9. 🗣 Commented on [#83](https://github.com/ChinaGodMan/UserScriptsHistory/pull/83#issuecomment-2549444504) in [ChinaGodMan/UserScriptsHistory](https://github.com/ChinaGodMan/UserScriptsHistory) -10. 🗣 Commented on [#6056](https://github.com/rhinstaller/anaconda/pull/6056#issuecomment-2549338355) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#79](https://github.com/foreign-sub/tinygrad/pull/79#issuecomment-2555678463) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +2. 🗣 Commented on [#6060](https://github.com/rhinstaller/anaconda/pull/6060#issuecomment-2554363573) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#3154](https://github.com/astropy/astroquery/pull/3154#issuecomment-2551625537) in [astropy/astroquery](https://github.com/astropy/astroquery) +4. 🗣 Commented on [#516](https://github.com/Spoken-tutorial/spoken-website/pull/516#issuecomment-2551083899) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +5. 🗣 Commented on [#953](https://github.com/fury-gl/fury/pull/953#issuecomment-2550986408) in [fury-gl/fury](https://github.com/fury-gl/fury) +6. 🗣 Commented on [#6057](https://github.com/rhinstaller/anaconda/pull/6057#issuecomment-2550908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#155](https://github.com/eastgenomics/eggd_conductor/pull/155#issuecomment-2550851822) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +8. 🗣 Commented on [#3083](https://github.com/metabrainz/listenbrainz-server/pull/3083#issuecomment-2550661996) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#75](https://github.com/foreign-sub/tinygrad/pull/75#issuecomment-2550616698) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +10. 🗣 Commented on [#88](https://github.com/ChinaGodMan/UserScriptsHistory/pull/88#issuecomment-2550554798) in [ChinaGodMan/UserScriptsHistory](https://github.com/ChinaGodMan/UserScriptsHistory) From a2d5c9b1332f18cd0b72c50bb3622349c8db6f49 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 00:50:12 +0000 Subject: [PATCH 2134/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index aa54e6c5..58755e18 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#79](https://github.com/foreign-sub/tinygrad/pull/79#issuecomment-2555678463) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -2. 🗣 Commented on [#6060](https://github.com/rhinstaller/anaconda/pull/6060#issuecomment-2554363573) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#3154](https://github.com/astropy/astroquery/pull/3154#issuecomment-2551625537) in [astropy/astroquery](https://github.com/astropy/astroquery) -4. 🗣 Commented on [#516](https://github.com/Spoken-tutorial/spoken-website/pull/516#issuecomment-2551083899) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -5. 🗣 Commented on [#953](https://github.com/fury-gl/fury/pull/953#issuecomment-2550986408) in [fury-gl/fury](https://github.com/fury-gl/fury) -6. 🗣 Commented on [#6057](https://github.com/rhinstaller/anaconda/pull/6057#issuecomment-2550908161) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#155](https://github.com/eastgenomics/eggd_conductor/pull/155#issuecomment-2550851822) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -8. 🗣 Commented on [#3083](https://github.com/metabrainz/listenbrainz-server/pull/3083#issuecomment-2550661996) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#75](https://github.com/foreign-sub/tinygrad/pull/75#issuecomment-2550616698) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -10. 🗣 Commented on [#88](https://github.com/ChinaGodMan/UserScriptsHistory/pull/88#issuecomment-2550554798) in [ChinaGodMan/UserScriptsHistory](https://github.com/ChinaGodMan/UserScriptsHistory) +1. 🗣 Commented on [#63](https://github.com/mpds-io/mpds-api/pull/63#issuecomment-2557362269) in [mpds-io/mpds-api](https://github.com/mpds-io/mpds-api) +2. 🗣 Commented on [#44](https://github.com/linum-uqam/linumpy/pull/44#issuecomment-2557289110) in [linum-uqam/linumpy](https://github.com/linum-uqam/linumpy) +3. 🗣 Commented on [#3090](https://github.com/metabrainz/listenbrainz-server/pull/3090#issuecomment-2557254619) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#736](https://github.com/Ibercivis/EU-CS_platform/pull/736#issuecomment-2557236135) in [Ibercivis/EU-CS_platform](https://github.com/Ibercivis/EU-CS_platform) +5. 🗣 Commented on [#60](https://github.com/foreign-sub/aiofreepybox/pull/60#issuecomment-2556215330) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) +6. 🗣 Commented on [#80](https://github.com/foreign-sub/tinygrad/pull/80#issuecomment-2556116068) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +7. 🗣 Commented on [#357](https://github.com/InvisibleSymbol/rocketwatch/pull/357#issuecomment-2556096926) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) +8. 🗣 Commented on [#1663](https://github.com/spacetelescope/jwql/pull/1663#issuecomment-2555869070) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +9. 🗣 Commented on [#79](https://github.com/foreign-sub/tinygrad/pull/79#issuecomment-2555678463) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +10. 🗣 Commented on [#6060](https://github.com/rhinstaller/anaconda/pull/6060#issuecomment-2554363573) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) From bca49e9c358262289fc8d3db12c45824ca6c276b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 22 Dec 2024 00:55:28 +0000 Subject: [PATCH 2135/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 58755e18..5f2eb83d 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#63](https://github.com/mpds-io/mpds-api/pull/63#issuecomment-2557362269) in [mpds-io/mpds-api](https://github.com/mpds-io/mpds-api) -2. 🗣 Commented on [#44](https://github.com/linum-uqam/linumpy/pull/44#issuecomment-2557289110) in [linum-uqam/linumpy](https://github.com/linum-uqam/linumpy) -3. 🗣 Commented on [#3090](https://github.com/metabrainz/listenbrainz-server/pull/3090#issuecomment-2557254619) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#736](https://github.com/Ibercivis/EU-CS_platform/pull/736#issuecomment-2557236135) in [Ibercivis/EU-CS_platform](https://github.com/Ibercivis/EU-CS_platform) -5. 🗣 Commented on [#60](https://github.com/foreign-sub/aiofreepybox/pull/60#issuecomment-2556215330) in [foreign-sub/aiofreepybox](https://github.com/foreign-sub/aiofreepybox) -6. 🗣 Commented on [#80](https://github.com/foreign-sub/tinygrad/pull/80#issuecomment-2556116068) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -7. 🗣 Commented on [#357](https://github.com/InvisibleSymbol/rocketwatch/pull/357#issuecomment-2556096926) in [InvisibleSymbol/rocketwatch](https://github.com/InvisibleSymbol/rocketwatch) -8. 🗣 Commented on [#1663](https://github.com/spacetelescope/jwql/pull/1663#issuecomment-2555869070) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -9. 🗣 Commented on [#79](https://github.com/foreign-sub/tinygrad/pull/79#issuecomment-2555678463) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -10. 🗣 Commented on [#6060](https://github.com/rhinstaller/anaconda/pull/6060#issuecomment-2554363573) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +1. 🗣 Commented on [#12](https://github.com/jztan/python-learning/pull/12#issuecomment-2558282590) in [jztan/python-learning](https://github.com/jztan/python-learning) +2. 🗣 Commented on [#10](https://github.com/jztan/python-learning/pull/10#issuecomment-2558275598) in [jztan/python-learning](https://github.com/jztan/python-learning) +3. 🗣 Commented on [#86](https://github.com/foreign-sub/tinygrad/pull/86#issuecomment-2558224693) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +4. 🗣 Commented on [#85](https://github.com/foreign-sub/tinygrad/pull/85#issuecomment-2558131318) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +5. 🗣 Commented on [#84](https://github.com/foreign-sub/tinygrad/pull/84#issuecomment-2558042994) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +6. 🗣 Commented on [#5](https://github.com/sdgniser/app/pull/5#issuecomment-2557980167) in [sdgniser/app](https://github.com/sdgniser/app) +7. 🗣 Commented on [#83](https://github.com/foreign-sub/tinygrad/pull/83#issuecomment-2557952518) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +8. 🗣 Commented on [#4850](https://github.com/MDAnalysis/mdanalysis/pull/4850#issuecomment-2557711862) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#4849](https://github.com/MDAnalysis/mdanalysis/pull/4849#issuecomment-2557707181) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#82](https://github.com/foreign-sub/tinygrad/pull/82#issuecomment-2557647364) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) From 70473a8e7d95b2939009eb99184deab8f472665f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 00:52:32 +0000 Subject: [PATCH 2136/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 5f2eb83d..6e8b90fb 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#12](https://github.com/jztan/python-learning/pull/12#issuecomment-2558282590) in [jztan/python-learning](https://github.com/jztan/python-learning) -2. 🗣 Commented on [#10](https://github.com/jztan/python-learning/pull/10#issuecomment-2558275598) in [jztan/python-learning](https://github.com/jztan/python-learning) -3. 🗣 Commented on [#86](https://github.com/foreign-sub/tinygrad/pull/86#issuecomment-2558224693) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -4. 🗣 Commented on [#85](https://github.com/foreign-sub/tinygrad/pull/85#issuecomment-2558131318) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -5. 🗣 Commented on [#84](https://github.com/foreign-sub/tinygrad/pull/84#issuecomment-2558042994) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -6. 🗣 Commented on [#5](https://github.com/sdgniser/app/pull/5#issuecomment-2557980167) in [sdgniser/app](https://github.com/sdgniser/app) -7. 🗣 Commented on [#83](https://github.com/foreign-sub/tinygrad/pull/83#issuecomment-2557952518) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -8. 🗣 Commented on [#4850](https://github.com/MDAnalysis/mdanalysis/pull/4850#issuecomment-2557711862) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#4849](https://github.com/MDAnalysis/mdanalysis/pull/4849#issuecomment-2557707181) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#82](https://github.com/foreign-sub/tinygrad/pull/82#issuecomment-2557647364) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +1. 🗣 Commented on [#4861](https://github.com/MDAnalysis/mdanalysis/pull/4861#issuecomment-2558622828) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#4859](https://github.com/MDAnalysis/mdanalysis/pull/4859#issuecomment-2558618827) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#4857](https://github.com/MDAnalysis/mdanalysis/pull/4857#issuecomment-2558442393) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#4856](https://github.com/MDAnalysis/mdanalysis/pull/4856#issuecomment-2558441486) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#13](https://github.com/jztan/python-learning/pull/13#issuecomment-2558302599) in [jztan/python-learning](https://github.com/jztan/python-learning) +6. 🗣 Commented on [#12](https://github.com/jztan/python-learning/pull/12#issuecomment-2558282590) in [jztan/python-learning](https://github.com/jztan/python-learning) +7. 🗣 Commented on [#10](https://github.com/jztan/python-learning/pull/10#issuecomment-2558275598) in [jztan/python-learning](https://github.com/jztan/python-learning) +8. 🗣 Commented on [#86](https://github.com/foreign-sub/tinygrad/pull/86#issuecomment-2558224693) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +9. 🗣 Commented on [#85](https://github.com/foreign-sub/tinygrad/pull/85#issuecomment-2558131318) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +10. 🗣 Commented on [#84](https://github.com/foreign-sub/tinygrad/pull/84#issuecomment-2558042994) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) From 4e256decbda84372642f747a2f365eb7070e7605 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Dec 2024 00:51:08 +0000 Subject: [PATCH 2137/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6e8b90fb..fe3401f3 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4861](https://github.com/MDAnalysis/mdanalysis/pull/4861#issuecomment-2558622828) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#4859](https://github.com/MDAnalysis/mdanalysis/pull/4859#issuecomment-2558618827) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#4857](https://github.com/MDAnalysis/mdanalysis/pull/4857#issuecomment-2558442393) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#4856](https://github.com/MDAnalysis/mdanalysis/pull/4856#issuecomment-2558441486) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#13](https://github.com/jztan/python-learning/pull/13#issuecomment-2558302599) in [jztan/python-learning](https://github.com/jztan/python-learning) -6. 🗣 Commented on [#12](https://github.com/jztan/python-learning/pull/12#issuecomment-2558282590) in [jztan/python-learning](https://github.com/jztan/python-learning) -7. 🗣 Commented on [#10](https://github.com/jztan/python-learning/pull/10#issuecomment-2558275598) in [jztan/python-learning](https://github.com/jztan/python-learning) -8. 🗣 Commented on [#86](https://github.com/foreign-sub/tinygrad/pull/86#issuecomment-2558224693) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -9. 🗣 Commented on [#85](https://github.com/foreign-sub/tinygrad/pull/85#issuecomment-2558131318) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) -10. 🗣 Commented on [#84](https://github.com/foreign-sub/tinygrad/pull/84#issuecomment-2558042994) in [foreign-sub/tinygrad](https://github.com/foreign-sub/tinygrad) +1. 🗣 Commented on [#56](https://github.com/NASA-Planetary-Science/AmesCAP/pull/56#issuecomment-2560325812) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +2. 🗣 Commented on [#544](https://github.com/UsergeTeam/Userge/pull/544#issuecomment-2560291765) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) +3. 🗣 Commented on [#71](https://github.com/arfc/osier/pull/71#issuecomment-2560153151) in [arfc/osier](https://github.com/arfc/osier) +4. 🗣 Commented on [#1043](https://github.com/PyThaiNLP/pythainlp/pull/1043#issuecomment-2559788971) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#279](https://github.com/aimclub/GOLEM/pull/279#issuecomment-2559646811) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) +6. 🗣 Commented on [#4861](https://github.com/MDAnalysis/mdanalysis/pull/4861#issuecomment-2558622828) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#4859](https://github.com/MDAnalysis/mdanalysis/pull/4859#issuecomment-2558618827) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#4857](https://github.com/MDAnalysis/mdanalysis/pull/4857#issuecomment-2558442393) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#4856](https://github.com/MDAnalysis/mdanalysis/pull/4856#issuecomment-2558441486) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#13](https://github.com/jztan/python-learning/pull/13#issuecomment-2558302599) in [jztan/python-learning](https://github.com/jztan/python-learning) From 32c9521f9b527c4b1ec1d1be668819689b9de7a2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Dec 2024 00:50:28 +0000 Subject: [PATCH 2138/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fe3401f3..834bbaa2 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#56](https://github.com/NASA-Planetary-Science/AmesCAP/pull/56#issuecomment-2560325812) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -2. 🗣 Commented on [#544](https://github.com/UsergeTeam/Userge/pull/544#issuecomment-2560291765) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) -3. 🗣 Commented on [#71](https://github.com/arfc/osier/pull/71#issuecomment-2560153151) in [arfc/osier](https://github.com/arfc/osier) -4. 🗣 Commented on [#1043](https://github.com/PyThaiNLP/pythainlp/pull/1043#issuecomment-2559788971) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#279](https://github.com/aimclub/GOLEM/pull/279#issuecomment-2559646811) in [aimclub/GOLEM](https://github.com/aimclub/GOLEM) -6. 🗣 Commented on [#4861](https://github.com/MDAnalysis/mdanalysis/pull/4861#issuecomment-2558622828) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#4859](https://github.com/MDAnalysis/mdanalysis/pull/4859#issuecomment-2558618827) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#4857](https://github.com/MDAnalysis/mdanalysis/pull/4857#issuecomment-2558442393) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#4856](https://github.com/MDAnalysis/mdanalysis/pull/4856#issuecomment-2558441486) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#13](https://github.com/jztan/python-learning/pull/13#issuecomment-2558302599) in [jztan/python-learning](https://github.com/jztan/python-learning) +1. 🗣 Commented on [#16](https://github.com/eastgenomics/Haemonc_requests/pull/16#issuecomment-2561097751) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) +2. 🗣 Commented on [#1045](https://github.com/PyThaiNLP/pythainlp/pull/1045#issuecomment-2561051790) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#4851](https://github.com/MDAnalysis/mdanalysis/pull/4851#issuecomment-2561016350) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#1059](https://github.com/avaframe/AvaFrame/pull/1059#issuecomment-2560984235) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#326](https://github.com/Moonlark-Dev/Moonlark/pull/326#issuecomment-2560851436) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +6. 🗣 Commented on [#1](https://github.com/gfunkmonk/PiClock/pull/1#issuecomment-2560596257) in [gfunkmonk/PiClock](https://github.com/gfunkmonk/PiClock) +7. 🗣 Commented on [#56](https://github.com/NASA-Planetary-Science/AmesCAP/pull/56#issuecomment-2560325812) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +8. 🗣 Commented on [#544](https://github.com/UsergeTeam/Userge/pull/544#issuecomment-2560291765) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) +9. 🗣 Commented on [#71](https://github.com/arfc/osier/pull/71#issuecomment-2560153151) in [arfc/osier](https://github.com/arfc/osier) +10. 🗣 Commented on [#1043](https://github.com/PyThaiNLP/pythainlp/pull/1043#issuecomment-2559788971) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) From 25c6633586ab2b110d5d6762b68c1fe7c393b333 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Dec 2024 00:50:33 +0000 Subject: [PATCH 2139/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 834bbaa2..7a13a33d 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#16](https://github.com/eastgenomics/Haemonc_requests/pull/16#issuecomment-2561097751) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) -2. 🗣 Commented on [#1045](https://github.com/PyThaiNLP/pythainlp/pull/1045#issuecomment-2561051790) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#4851](https://github.com/MDAnalysis/mdanalysis/pull/4851#issuecomment-2561016350) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#1059](https://github.com/avaframe/AvaFrame/pull/1059#issuecomment-2560984235) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#326](https://github.com/Moonlark-Dev/Moonlark/pull/326#issuecomment-2560851436) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -6. 🗣 Commented on [#1](https://github.com/gfunkmonk/PiClock/pull/1#issuecomment-2560596257) in [gfunkmonk/PiClock](https://github.com/gfunkmonk/PiClock) -7. 🗣 Commented on [#56](https://github.com/NASA-Planetary-Science/AmesCAP/pull/56#issuecomment-2560325812) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -8. 🗣 Commented on [#544](https://github.com/UsergeTeam/Userge/pull/544#issuecomment-2560291765) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) -9. 🗣 Commented on [#71](https://github.com/arfc/osier/pull/71#issuecomment-2560153151) in [arfc/osier](https://github.com/arfc/osier) -10. 🗣 Commented on [#1043](https://github.com/PyThaiNLP/pythainlp/pull/1043#issuecomment-2559788971) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +1. 🗣 Commented on [#3](https://github.com/ERPGulf/gauth_erpgulf/pull/3#issuecomment-2561934541) in [ERPGulf/gauth_erpgulf](https://github.com/ERPGulf/gauth_erpgulf) +2. 🗣 Commented on [#2](https://github.com/ERPGulf/gauth_erpgulf/pull/2#issuecomment-2561613267) in [ERPGulf/gauth_erpgulf](https://github.com/ERPGulf/gauth_erpgulf) +3. 🗣 Commented on [#16](https://github.com/eastgenomics/Haemonc_requests/pull/16#issuecomment-2561097751) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) +4. 🗣 Commented on [#1045](https://github.com/PyThaiNLP/pythainlp/pull/1045#issuecomment-2561051790) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +5. 🗣 Commented on [#4851](https://github.com/MDAnalysis/mdanalysis/pull/4851#issuecomment-2561016350) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#1059](https://github.com/avaframe/AvaFrame/pull/1059#issuecomment-2560984235) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +7. 🗣 Commented on [#326](https://github.com/Moonlark-Dev/Moonlark/pull/326#issuecomment-2560851436) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +8. 🗣 Commented on [#1](https://github.com/gfunkmonk/PiClock/pull/1#issuecomment-2560596257) in [gfunkmonk/PiClock](https://github.com/gfunkmonk/PiClock) +9. 🗣 Commented on [#56](https://github.com/NASA-Planetary-Science/AmesCAP/pull/56#issuecomment-2560325812) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +10. 🗣 Commented on [#544](https://github.com/UsergeTeam/Userge/pull/544#issuecomment-2560291765) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) From 020dc3215cd19d1c8e0bd44d2af2b210dc1cdbdd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 00:50:56 +0000 Subject: [PATCH 2140/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7a13a33d..4eea28a4 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3](https://github.com/ERPGulf/gauth_erpgulf/pull/3#issuecomment-2561934541) in [ERPGulf/gauth_erpgulf](https://github.com/ERPGulf/gauth_erpgulf) -2. 🗣 Commented on [#2](https://github.com/ERPGulf/gauth_erpgulf/pull/2#issuecomment-2561613267) in [ERPGulf/gauth_erpgulf](https://github.com/ERPGulf/gauth_erpgulf) -3. 🗣 Commented on [#16](https://github.com/eastgenomics/Haemonc_requests/pull/16#issuecomment-2561097751) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) -4. 🗣 Commented on [#1045](https://github.com/PyThaiNLP/pythainlp/pull/1045#issuecomment-2561051790) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -5. 🗣 Commented on [#4851](https://github.com/MDAnalysis/mdanalysis/pull/4851#issuecomment-2561016350) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#1059](https://github.com/avaframe/AvaFrame/pull/1059#issuecomment-2560984235) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -7. 🗣 Commented on [#326](https://github.com/Moonlark-Dev/Moonlark/pull/326#issuecomment-2560851436) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -8. 🗣 Commented on [#1](https://github.com/gfunkmonk/PiClock/pull/1#issuecomment-2560596257) in [gfunkmonk/PiClock](https://github.com/gfunkmonk/PiClock) -9. 🗣 Commented on [#56](https://github.com/NASA-Planetary-Science/AmesCAP/pull/56#issuecomment-2560325812) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -10. 🗣 Commented on [#544](https://github.com/UsergeTeam/Userge/pull/544#issuecomment-2560291765) in [UsergeTeam/Userge](https://github.com/UsergeTeam/Userge) +1. 🗣 Commented on [#454](https://github.com/manoharan-lab/holopy/pull/454#issuecomment-2563158527) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +2. 🗣 Commented on [#4866](https://github.com/MDAnalysis/mdanalysis/pull/4866#issuecomment-2563147682) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#1105](https://github.com/scilus/scilpy/pull/1105#issuecomment-2562949809) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#3](https://github.com/ERPGulf/gauth_erpgulf/pull/3#issuecomment-2561934541) in [ERPGulf/gauth_erpgulf](https://github.com/ERPGulf/gauth_erpgulf) +5. 🗣 Commented on [#2](https://github.com/ERPGulf/gauth_erpgulf/pull/2#issuecomment-2561613267) in [ERPGulf/gauth_erpgulf](https://github.com/ERPGulf/gauth_erpgulf) +6. 🗣 Commented on [#16](https://github.com/eastgenomics/Haemonc_requests/pull/16#issuecomment-2561097751) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) +7. 🗣 Commented on [#1045](https://github.com/PyThaiNLP/pythainlp/pull/1045#issuecomment-2561051790) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +8. 🗣 Commented on [#4851](https://github.com/MDAnalysis/mdanalysis/pull/4851#issuecomment-2561016350) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#1059](https://github.com/avaframe/AvaFrame/pull/1059#issuecomment-2560984235) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +10. 🗣 Commented on [#326](https://github.com/Moonlark-Dev/Moonlark/pull/326#issuecomment-2560851436) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) From 3e98247d3c0fee9e667fa42d9a37168f6d28f23f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 00:49:39 +0000 Subject: [PATCH 2141/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4eea28a4..e9fca5a5 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#454](https://github.com/manoharan-lab/holopy/pull/454#issuecomment-2563158527) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -2. 🗣 Commented on [#4866](https://github.com/MDAnalysis/mdanalysis/pull/4866#issuecomment-2563147682) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#1105](https://github.com/scilus/scilpy/pull/1105#issuecomment-2562949809) in [scilus/scilpy](https://github.com/scilus/scilpy) -4. 🗣 Commented on [#3](https://github.com/ERPGulf/gauth_erpgulf/pull/3#issuecomment-2561934541) in [ERPGulf/gauth_erpgulf](https://github.com/ERPGulf/gauth_erpgulf) -5. 🗣 Commented on [#2](https://github.com/ERPGulf/gauth_erpgulf/pull/2#issuecomment-2561613267) in [ERPGulf/gauth_erpgulf](https://github.com/ERPGulf/gauth_erpgulf) -6. 🗣 Commented on [#16](https://github.com/eastgenomics/Haemonc_requests/pull/16#issuecomment-2561097751) in [eastgenomics/Haemonc_requests](https://github.com/eastgenomics/Haemonc_requests) -7. 🗣 Commented on [#1045](https://github.com/PyThaiNLP/pythainlp/pull/1045#issuecomment-2561051790) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -8. 🗣 Commented on [#4851](https://github.com/MDAnalysis/mdanalysis/pull/4851#issuecomment-2561016350) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#1059](https://github.com/avaframe/AvaFrame/pull/1059#issuecomment-2560984235) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -10. 🗣 Commented on [#326](https://github.com/Moonlark-Dev/Moonlark/pull/326#issuecomment-2560851436) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +1. 🗣 Commented on [#4870](https://github.com/MDAnalysis/mdanalysis/pull/4870#issuecomment-2564045415) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#106](https://github.com/PenguinCloud/WaddleBot-Core/pull/106#issuecomment-2563967910) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) +3. 🗣 Commented on [#1353](https://github.com/aimclub/FEDOT/pull/1353#issuecomment-2563912196) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +4. 🗣 Commented on [#440](https://github.com/spyder-ide/spyder-notebook/pull/440#issuecomment-2563871786) in [spyder-ide/spyder-notebook](https://github.com/spyder-ide/spyder-notebook) +5. 🗣 Commented on [#1](https://github.com/callum-mccracken/pytta/pull/1#issuecomment-2563850328) in [callum-mccracken/pytta](https://github.com/callum-mccracken/pytta) +6. 🗣 Commented on [#106](https://github.com/PenguinCloud/WaddleBot-Core/pull/106#issuecomment-2563704896) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) +7. 🗣 Commented on [#15](https://github.com/aniketmaurya/python-project-template/pull/15#issuecomment-2563692995) in [aniketmaurya/python-project-template](https://github.com/aniketmaurya/python-project-template) +8. 🗣 Commented on [#1](https://github.com/DavianYang/paper2synthesis/pull/1#issuecomment-2563660923) in [DavianYang/paper2synthesis](https://github.com/DavianYang/paper2synthesis) +9. 🗣 Commented on [#454](https://github.com/manoharan-lab/holopy/pull/454#issuecomment-2563158527) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) +10. 🗣 Commented on [#4866](https://github.com/MDAnalysis/mdanalysis/pull/4866#issuecomment-2563147682) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From abb430ea36c5dcc20bea3da1d05779d21eee6ea2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 29 Dec 2024 00:55:54 +0000 Subject: [PATCH 2142/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e9fca5a5..91e33866 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4870](https://github.com/MDAnalysis/mdanalysis/pull/4870#issuecomment-2564045415) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#106](https://github.com/PenguinCloud/WaddleBot-Core/pull/106#issuecomment-2563967910) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) -3. 🗣 Commented on [#1353](https://github.com/aimclub/FEDOT/pull/1353#issuecomment-2563912196) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -4. 🗣 Commented on [#440](https://github.com/spyder-ide/spyder-notebook/pull/440#issuecomment-2563871786) in [spyder-ide/spyder-notebook](https://github.com/spyder-ide/spyder-notebook) -5. 🗣 Commented on [#1](https://github.com/callum-mccracken/pytta/pull/1#issuecomment-2563850328) in [callum-mccracken/pytta](https://github.com/callum-mccracken/pytta) -6. 🗣 Commented on [#106](https://github.com/PenguinCloud/WaddleBot-Core/pull/106#issuecomment-2563704896) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) -7. 🗣 Commented on [#15](https://github.com/aniketmaurya/python-project-template/pull/15#issuecomment-2563692995) in [aniketmaurya/python-project-template](https://github.com/aniketmaurya/python-project-template) -8. 🗣 Commented on [#1](https://github.com/DavianYang/paper2synthesis/pull/1#issuecomment-2563660923) in [DavianYang/paper2synthesis](https://github.com/DavianYang/paper2synthesis) -9. 🗣 Commented on [#454](https://github.com/manoharan-lab/holopy/pull/454#issuecomment-2563158527) in [manoharan-lab/holopy](https://github.com/manoharan-lab/holopy) -10. 🗣 Commented on [#4866](https://github.com/MDAnalysis/mdanalysis/pull/4866#issuecomment-2563147682) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#3099](https://github.com/metabrainz/listenbrainz-server/pull/3099#issuecomment-2564328288) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#4871](https://github.com/MDAnalysis/mdanalysis/pull/4871#issuecomment-2564293824) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#4870](https://github.com/MDAnalysis/mdanalysis/pull/4870#issuecomment-2564045415) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#106](https://github.com/PenguinCloud/WaddleBot-Core/pull/106#issuecomment-2563967910) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) +5. 🗣 Commented on [#1353](https://github.com/aimclub/FEDOT/pull/1353#issuecomment-2563912196) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +6. 🗣 Commented on [#440](https://github.com/spyder-ide/spyder-notebook/pull/440#issuecomment-2563871786) in [spyder-ide/spyder-notebook](https://github.com/spyder-ide/spyder-notebook) +7. 🗣 Commented on [#1](https://github.com/callum-mccracken/pytta/pull/1#issuecomment-2563850328) in [callum-mccracken/pytta](https://github.com/callum-mccracken/pytta) +8. 🗣 Commented on [#106](https://github.com/PenguinCloud/WaddleBot-Core/pull/106#issuecomment-2563704896) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) +9. 🗣 Commented on [#15](https://github.com/aniketmaurya/python-project-template/pull/15#issuecomment-2563692995) in [aniketmaurya/python-project-template](https://github.com/aniketmaurya/python-project-template) +10. 🗣 Commented on [#1](https://github.com/DavianYang/paper2synthesis/pull/1#issuecomment-2563660923) in [DavianYang/paper2synthesis](https://github.com/DavianYang/paper2synthesis) From 14baa43af236266cde60824f2de3f36fca17f921 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 00:52:46 +0000 Subject: [PATCH 2143/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 91e33866..16cab0a5 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3099](https://github.com/metabrainz/listenbrainz-server/pull/3099#issuecomment-2564328288) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#4871](https://github.com/MDAnalysis/mdanalysis/pull/4871#issuecomment-2564293824) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#4870](https://github.com/MDAnalysis/mdanalysis/pull/4870#issuecomment-2564045415) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#106](https://github.com/PenguinCloud/WaddleBot-Core/pull/106#issuecomment-2563967910) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) -5. 🗣 Commented on [#1353](https://github.com/aimclub/FEDOT/pull/1353#issuecomment-2563912196) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -6. 🗣 Commented on [#440](https://github.com/spyder-ide/spyder-notebook/pull/440#issuecomment-2563871786) in [spyder-ide/spyder-notebook](https://github.com/spyder-ide/spyder-notebook) -7. 🗣 Commented on [#1](https://github.com/callum-mccracken/pytta/pull/1#issuecomment-2563850328) in [callum-mccracken/pytta](https://github.com/callum-mccracken/pytta) -8. 🗣 Commented on [#106](https://github.com/PenguinCloud/WaddleBot-Core/pull/106#issuecomment-2563704896) in [PenguinCloud/WaddleBot-Core](https://github.com/PenguinCloud/WaddleBot-Core) -9. 🗣 Commented on [#15](https://github.com/aniketmaurya/python-project-template/pull/15#issuecomment-2563692995) in [aniketmaurya/python-project-template](https://github.com/aniketmaurya/python-project-template) -10. 🗣 Commented on [#1](https://github.com/DavianYang/paper2synthesis/pull/1#issuecomment-2563660923) in [DavianYang/paper2synthesis](https://github.com/DavianYang/paper2synthesis) +1. 🗣 Commented on [#4875](https://github.com/MDAnalysis/mdanalysis/pull/4875#issuecomment-2564861861) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +2. 🗣 Commented on [#4874](https://github.com/MDAnalysis/mdanalysis/pull/4874#issuecomment-2564861014) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +3. 🗣 Commented on [#3](https://github.com/DavianYang/paper2synthesis/pull/3#issuecomment-2564843188) in [DavianYang/paper2synthesis](https://github.com/DavianYang/paper2synthesis) +4. 🗣 Commented on [#4873](https://github.com/MDAnalysis/mdanalysis/pull/4873#issuecomment-2564842804) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#4841](https://github.com/MDAnalysis/mdanalysis/pull/4841#issuecomment-2564736231) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +6. 🗣 Commented on [#587](https://github.com/oemof/tespy/pull/587#issuecomment-2564714324) in [oemof/tespy](https://github.com/oemof/tespy) +7. 🗣 Commented on [#75](https://github.com/CartoonFan/pcsx2/pull/75#issuecomment-2564577842) in [CartoonFan/pcsx2](https://github.com/CartoonFan/pcsx2) +8. 🗣 Commented on [#3099](https://github.com/metabrainz/listenbrainz-server/pull/3099#issuecomment-2564328288) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#4871](https://github.com/MDAnalysis/mdanalysis/pull/4871#issuecomment-2564293824) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#4870](https://github.com/MDAnalysis/mdanalysis/pull/4870#issuecomment-2564045415) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From 06a23fc7e9c8e2e6aa7761add628ca024f567356 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 00:50:42 +0000 Subject: [PATCH 2144/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 16cab0a5..3fcbfa91 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4875](https://github.com/MDAnalysis/mdanalysis/pull/4875#issuecomment-2564861861) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -2. 🗣 Commented on [#4874](https://github.com/MDAnalysis/mdanalysis/pull/4874#issuecomment-2564861014) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -3. 🗣 Commented on [#3](https://github.com/DavianYang/paper2synthesis/pull/3#issuecomment-2564843188) in [DavianYang/paper2synthesis](https://github.com/DavianYang/paper2synthesis) -4. 🗣 Commented on [#4873](https://github.com/MDAnalysis/mdanalysis/pull/4873#issuecomment-2564842804) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#4841](https://github.com/MDAnalysis/mdanalysis/pull/4841#issuecomment-2564736231) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -6. 🗣 Commented on [#587](https://github.com/oemof/tespy/pull/587#issuecomment-2564714324) in [oemof/tespy](https://github.com/oemof/tespy) -7. 🗣 Commented on [#75](https://github.com/CartoonFan/pcsx2/pull/75#issuecomment-2564577842) in [CartoonFan/pcsx2](https://github.com/CartoonFan/pcsx2) -8. 🗣 Commented on [#3099](https://github.com/metabrainz/listenbrainz-server/pull/3099#issuecomment-2564328288) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#4871](https://github.com/MDAnalysis/mdanalysis/pull/4871#issuecomment-2564293824) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#4870](https://github.com/MDAnalysis/mdanalysis/pull/4870#issuecomment-2564045415) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#23381](https://github.com/spyder-ide/spyder/pull/23381#issuecomment-2566013759) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +2. 🗣 Commented on [#23376](https://github.com/spyder-ide/spyder/pull/23376#issuecomment-2565738500) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +3. 🗣 Commented on [#4875](https://github.com/MDAnalysis/mdanalysis/pull/4875#issuecomment-2564861861) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +4. 🗣 Commented on [#4874](https://github.com/MDAnalysis/mdanalysis/pull/4874#issuecomment-2564861014) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +5. 🗣 Commented on [#3](https://github.com/DavianYang/paper2synthesis/pull/3#issuecomment-2564843188) in [DavianYang/paper2synthesis](https://github.com/DavianYang/paper2synthesis) +6. 🗣 Commented on [#4873](https://github.com/MDAnalysis/mdanalysis/pull/4873#issuecomment-2564842804) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#4841](https://github.com/MDAnalysis/mdanalysis/pull/4841#issuecomment-2564736231) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#587](https://github.com/oemof/tespy/pull/587#issuecomment-2564714324) in [oemof/tespy](https://github.com/oemof/tespy) +9. 🗣 Commented on [#75](https://github.com/CartoonFan/pcsx2/pull/75#issuecomment-2564577842) in [CartoonFan/pcsx2](https://github.com/CartoonFan/pcsx2) +10. 🗣 Commented on [#3099](https://github.com/metabrainz/listenbrainz-server/pull/3099#issuecomment-2564328288) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From c10d8a236a6417fcee91b8ad1dfd85891f94a0bf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 00:56:02 +0000 Subject: [PATCH 2145/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3fcbfa91..b6cb2297 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#23381](https://github.com/spyder-ide/spyder/pull/23381#issuecomment-2566013759) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -2. 🗣 Commented on [#23376](https://github.com/spyder-ide/spyder/pull/23376#issuecomment-2565738500) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -3. 🗣 Commented on [#4875](https://github.com/MDAnalysis/mdanalysis/pull/4875#issuecomment-2564861861) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -4. 🗣 Commented on [#4874](https://github.com/MDAnalysis/mdanalysis/pull/4874#issuecomment-2564861014) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -5. 🗣 Commented on [#3](https://github.com/DavianYang/paper2synthesis/pull/3#issuecomment-2564843188) in [DavianYang/paper2synthesis](https://github.com/DavianYang/paper2synthesis) -6. 🗣 Commented on [#4873](https://github.com/MDAnalysis/mdanalysis/pull/4873#issuecomment-2564842804) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#4841](https://github.com/MDAnalysis/mdanalysis/pull/4841#issuecomment-2564736231) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#587](https://github.com/oemof/tespy/pull/587#issuecomment-2564714324) in [oemof/tespy](https://github.com/oemof/tespy) -9. 🗣 Commented on [#75](https://github.com/CartoonFan/pcsx2/pull/75#issuecomment-2564577842) in [CartoonFan/pcsx2](https://github.com/CartoonFan/pcsx2) -10. 🗣 Commented on [#3099](https://github.com/metabrainz/listenbrainz-server/pull/3099#issuecomment-2564328288) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#518](https://github.com/Spoken-tutorial/spoken-website/pull/518#issuecomment-2566357406) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +2. 🗣 Commented on [#34](https://github.com/Open-CAS/test-framework/pull/34#issuecomment-2566328331) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) +3. 🗣 Commented on [#116](https://github.com/bicobus/qModManager/pull/116#issuecomment-2566090798) in [bicobus/qModManager](https://github.com/bicobus/qModManager) +4. 🗣 Commented on [#23381](https://github.com/spyder-ide/spyder/pull/23381#issuecomment-2566013759) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#23376](https://github.com/spyder-ide/spyder/pull/23376#issuecomment-2565738500) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#4875](https://github.com/MDAnalysis/mdanalysis/pull/4875#issuecomment-2564861861) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +7. 🗣 Commented on [#4874](https://github.com/MDAnalysis/mdanalysis/pull/4874#issuecomment-2564861014) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +8. 🗣 Commented on [#3](https://github.com/DavianYang/paper2synthesis/pull/3#issuecomment-2564843188) in [DavianYang/paper2synthesis](https://github.com/DavianYang/paper2synthesis) +9. 🗣 Commented on [#4873](https://github.com/MDAnalysis/mdanalysis/pull/4873#issuecomment-2564842804) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#4841](https://github.com/MDAnalysis/mdanalysis/pull/4841#issuecomment-2564736231) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From e039919dbe7995d3b186fd90fb0f3de1709e1188 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 2 Jan 2025 00:50:41 +0000 Subject: [PATCH 2146/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b6cb2297..0906325c 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#518](https://github.com/Spoken-tutorial/spoken-website/pull/518#issuecomment-2566357406) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -2. 🗣 Commented on [#34](https://github.com/Open-CAS/test-framework/pull/34#issuecomment-2566328331) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) -3. 🗣 Commented on [#116](https://github.com/bicobus/qModManager/pull/116#issuecomment-2566090798) in [bicobus/qModManager](https://github.com/bicobus/qModManager) -4. 🗣 Commented on [#23381](https://github.com/spyder-ide/spyder/pull/23381#issuecomment-2566013759) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#23376](https://github.com/spyder-ide/spyder/pull/23376#issuecomment-2565738500) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#4875](https://github.com/MDAnalysis/mdanalysis/pull/4875#issuecomment-2564861861) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -7. 🗣 Commented on [#4874](https://github.com/MDAnalysis/mdanalysis/pull/4874#issuecomment-2564861014) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -8. 🗣 Commented on [#3](https://github.com/DavianYang/paper2synthesis/pull/3#issuecomment-2564843188) in [DavianYang/paper2synthesis](https://github.com/DavianYang/paper2synthesis) -9. 🗣 Commented on [#4873](https://github.com/MDAnalysis/mdanalysis/pull/4873#issuecomment-2564842804) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#4841](https://github.com/MDAnalysis/mdanalysis/pull/4841#issuecomment-2564736231) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#29](https://github.com/my8100/logparser/pull/29#issuecomment-2566948355) in [my8100/logparser](https://github.com/my8100/logparser) +2. 🗣 Commented on [#28](https://github.com/my8100/logparser/pull/28#issuecomment-2566853970) in [my8100/logparser](https://github.com/my8100/logparser) +3. 🗣 Commented on [#3105](https://github.com/metabrainz/listenbrainz-server/pull/3105#issuecomment-2566832025) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#518](https://github.com/Spoken-tutorial/spoken-website/pull/518#issuecomment-2566357406) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +5. 🗣 Commented on [#34](https://github.com/Open-CAS/test-framework/pull/34#issuecomment-2566328331) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) +6. 🗣 Commented on [#116](https://github.com/bicobus/qModManager/pull/116#issuecomment-2566090798) in [bicobus/qModManager](https://github.com/bicobus/qModManager) +7. 🗣 Commented on [#23381](https://github.com/spyder-ide/spyder/pull/23381#issuecomment-2566013759) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#23376](https://github.com/spyder-ide/spyder/pull/23376#issuecomment-2565738500) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +9. 🗣 Commented on [#4875](https://github.com/MDAnalysis/mdanalysis/pull/4875#issuecomment-2564861861) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#4874](https://github.com/MDAnalysis/mdanalysis/pull/4874#issuecomment-2564861014) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) From fc98918689e7d9ee0a1ef0020a175cb2d86f4c71 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Jan 2025 00:51:08 +0000 Subject: [PATCH 2147/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 0906325c..44b9e433 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#29](https://github.com/my8100/logparser/pull/29#issuecomment-2566948355) in [my8100/logparser](https://github.com/my8100/logparser) -2. 🗣 Commented on [#28](https://github.com/my8100/logparser/pull/28#issuecomment-2566853970) in [my8100/logparser](https://github.com/my8100/logparser) -3. 🗣 Commented on [#3105](https://github.com/metabrainz/listenbrainz-server/pull/3105#issuecomment-2566832025) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#518](https://github.com/Spoken-tutorial/spoken-website/pull/518#issuecomment-2566357406) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -5. 🗣 Commented on [#34](https://github.com/Open-CAS/test-framework/pull/34#issuecomment-2566328331) in [Open-CAS/test-framework](https://github.com/Open-CAS/test-framework) -6. 🗣 Commented on [#116](https://github.com/bicobus/qModManager/pull/116#issuecomment-2566090798) in [bicobus/qModManager](https://github.com/bicobus/qModManager) -7. 🗣 Commented on [#23381](https://github.com/spyder-ide/spyder/pull/23381#issuecomment-2566013759) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#23376](https://github.com/spyder-ide/spyder/pull/23376#issuecomment-2565738500) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -9. 🗣 Commented on [#4875](https://github.com/MDAnalysis/mdanalysis/pull/4875#issuecomment-2564861861) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#4874](https://github.com/MDAnalysis/mdanalysis/pull/4874#issuecomment-2564861014) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +1. 🗣 Commented on [#16](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook/pull/16#issuecomment-2568022603) in [eastgenomics/eggd_generate_rd_wgs_workbook](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook) +2. 🗣 Commented on [#45](https://github.com/MBrede/generative_ai/pull/45#issuecomment-2567901768) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) +3. 🗣 Commented on [#1054](https://github.com/PyThaiNLP/pythainlp/pull/1054#issuecomment-2567809929) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +4. 🗣 Commented on [#182](https://github.com/MDAnalysis/distopia/pull/182#issuecomment-2567530650) in [MDAnalysis/distopia](https://github.com/MDAnalysis/distopia) +5. 🗣 Commented on [#519](https://github.com/Spoken-tutorial/spoken-website/pull/519#issuecomment-2567410647) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +6. 🗣 Commented on [#381](https://github.com/dicompyler/dicompyler-core/pull/381#issuecomment-2567290854) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) +7. 🗣 Commented on [#29](https://github.com/my8100/logparser/pull/29#issuecomment-2566948355) in [my8100/logparser](https://github.com/my8100/logparser) +8. 🗣 Commented on [#28](https://github.com/my8100/logparser/pull/28#issuecomment-2566853970) in [my8100/logparser](https://github.com/my8100/logparser) +9. 🗣 Commented on [#3105](https://github.com/metabrainz/listenbrainz-server/pull/3105#issuecomment-2566832025) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#518](https://github.com/Spoken-tutorial/spoken-website/pull/518#issuecomment-2566357406) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) From e939971de7e9e1c115f9995fd27fa650a5f1645d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 4 Jan 2025 00:49:49 +0000 Subject: [PATCH 2148/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 44b9e433..1a5a16cf 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#16](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook/pull/16#issuecomment-2568022603) in [eastgenomics/eggd_generate_rd_wgs_workbook](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook) -2. 🗣 Commented on [#45](https://github.com/MBrede/generative_ai/pull/45#issuecomment-2567901768) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) -3. 🗣 Commented on [#1054](https://github.com/PyThaiNLP/pythainlp/pull/1054#issuecomment-2567809929) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -4. 🗣 Commented on [#182](https://github.com/MDAnalysis/distopia/pull/182#issuecomment-2567530650) in [MDAnalysis/distopia](https://github.com/MDAnalysis/distopia) -5. 🗣 Commented on [#519](https://github.com/Spoken-tutorial/spoken-website/pull/519#issuecomment-2567410647) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -6. 🗣 Commented on [#381](https://github.com/dicompyler/dicompyler-core/pull/381#issuecomment-2567290854) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) -7. 🗣 Commented on [#29](https://github.com/my8100/logparser/pull/29#issuecomment-2566948355) in [my8100/logparser](https://github.com/my8100/logparser) -8. 🗣 Commented on [#28](https://github.com/my8100/logparser/pull/28#issuecomment-2566853970) in [my8100/logparser](https://github.com/my8100/logparser) -9. 🗣 Commented on [#3105](https://github.com/metabrainz/listenbrainz-server/pull/3105#issuecomment-2566832025) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#518](https://github.com/Spoken-tutorial/spoken-website/pull/518#issuecomment-2566357406) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +1. 🗣 Commented on [#696](https://github.com/deuteronomy-works/pyffmpeg/pull/696#issuecomment-2568885375) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +2. 🗣 Commented on [#695](https://github.com/deuteronomy-works/pyffmpeg/pull/695#issuecomment-2568885206) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +3. 🗣 Commented on [#694](https://github.com/deuteronomy-works/pyffmpeg/pull/694#issuecomment-2568885041) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +4. 🗣 Commented on [#16](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook/pull/16#issuecomment-2568022603) in [eastgenomics/eggd_generate_rd_wgs_workbook](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook) +5. 🗣 Commented on [#45](https://github.com/MBrede/generative_ai/pull/45#issuecomment-2567901768) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) +6. 🗣 Commented on [#1054](https://github.com/PyThaiNLP/pythainlp/pull/1054#issuecomment-2567809929) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +7. 🗣 Commented on [#182](https://github.com/MDAnalysis/distopia/pull/182#issuecomment-2567530650) in [MDAnalysis/distopia](https://github.com/MDAnalysis/distopia) +8. 🗣 Commented on [#519](https://github.com/Spoken-tutorial/spoken-website/pull/519#issuecomment-2567410647) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +9. 🗣 Commented on [#381](https://github.com/dicompyler/dicompyler-core/pull/381#issuecomment-2567290854) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) +10. 🗣 Commented on [#29](https://github.com/my8100/logparser/pull/29#issuecomment-2566948355) in [my8100/logparser](https://github.com/my8100/logparser) From 2b88ad02caecca21ee6845e5826963f80bae6f7d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 5 Jan 2025 00:55:29 +0000 Subject: [PATCH 2149/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1a5a16cf..f790cd0b 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#696](https://github.com/deuteronomy-works/pyffmpeg/pull/696#issuecomment-2568885375) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -2. 🗣 Commented on [#695](https://github.com/deuteronomy-works/pyffmpeg/pull/695#issuecomment-2568885206) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -3. 🗣 Commented on [#694](https://github.com/deuteronomy-works/pyffmpeg/pull/694#issuecomment-2568885041) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -4. 🗣 Commented on [#16](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook/pull/16#issuecomment-2568022603) in [eastgenomics/eggd_generate_rd_wgs_workbook](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook) -5. 🗣 Commented on [#45](https://github.com/MBrede/generative_ai/pull/45#issuecomment-2567901768) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) -6. 🗣 Commented on [#1054](https://github.com/PyThaiNLP/pythainlp/pull/1054#issuecomment-2567809929) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -7. 🗣 Commented on [#182](https://github.com/MDAnalysis/distopia/pull/182#issuecomment-2567530650) in [MDAnalysis/distopia](https://github.com/MDAnalysis/distopia) -8. 🗣 Commented on [#519](https://github.com/Spoken-tutorial/spoken-website/pull/519#issuecomment-2567410647) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -9. 🗣 Commented on [#381](https://github.com/dicompyler/dicompyler-core/pull/381#issuecomment-2567290854) in [dicompyler/dicompyler-core](https://github.com/dicompyler/dicompyler-core) -10. 🗣 Commented on [#29](https://github.com/my8100/logparser/pull/29#issuecomment-2566948355) in [my8100/logparser](https://github.com/my8100/logparser) +1. 🗣 Commented on [#342](https://github.com/Moonlark-Dev/Moonlark/pull/342#issuecomment-2571324000) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +2. 🗣 Commented on [#712](https://github.com/deuteronomy-works/pyffmpeg/pull/712#issuecomment-2571122989) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +3. 🗣 Commented on [#711](https://github.com/deuteronomy-works/pyffmpeg/pull/711#issuecomment-2571122741) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +4. 🗣 Commented on [#710](https://github.com/deuteronomy-works/pyffmpeg/pull/710#issuecomment-2571122466) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +5. 🗣 Commented on [#339](https://github.com/Moonlark-Dev/Moonlark/pull/339#issuecomment-2570726182) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +6. 🗣 Commented on [#696](https://github.com/deuteronomy-works/pyffmpeg/pull/696#issuecomment-2568885375) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +7. 🗣 Commented on [#695](https://github.com/deuteronomy-works/pyffmpeg/pull/695#issuecomment-2568885206) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +8. 🗣 Commented on [#694](https://github.com/deuteronomy-works/pyffmpeg/pull/694#issuecomment-2568885041) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +9. 🗣 Commented on [#16](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook/pull/16#issuecomment-2568022603) in [eastgenomics/eggd_generate_rd_wgs_workbook](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook) +10. 🗣 Commented on [#45](https://github.com/MBrede/generative_ai/pull/45#issuecomment-2567901768) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) From 1b18b96ad83ad7ec106df1c7081608086c30fa67 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 00:53:38 +0000 Subject: [PATCH 2150/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f790cd0b..7fc447fd 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#342](https://github.com/Moonlark-Dev/Moonlark/pull/342#issuecomment-2571324000) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -2. 🗣 Commented on [#712](https://github.com/deuteronomy-works/pyffmpeg/pull/712#issuecomment-2571122989) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -3. 🗣 Commented on [#711](https://github.com/deuteronomy-works/pyffmpeg/pull/711#issuecomment-2571122741) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -4. 🗣 Commented on [#710](https://github.com/deuteronomy-works/pyffmpeg/pull/710#issuecomment-2571122466) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -5. 🗣 Commented on [#339](https://github.com/Moonlark-Dev/Moonlark/pull/339#issuecomment-2570726182) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -6. 🗣 Commented on [#696](https://github.com/deuteronomy-works/pyffmpeg/pull/696#issuecomment-2568885375) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -7. 🗣 Commented on [#695](https://github.com/deuteronomy-works/pyffmpeg/pull/695#issuecomment-2568885206) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -8. 🗣 Commented on [#694](https://github.com/deuteronomy-works/pyffmpeg/pull/694#issuecomment-2568885041) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -9. 🗣 Commented on [#16](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook/pull/16#issuecomment-2568022603) in [eastgenomics/eggd_generate_rd_wgs_workbook](https://github.com/eastgenomics/eggd_generate_rd_wgs_workbook) -10. 🗣 Commented on [#45](https://github.com/MBrede/generative_ai/pull/45#issuecomment-2567901768) in [MBrede/generative_ai](https://github.com/MBrede/generative_ai) +1. 🗣 Commented on [#592](https://github.com/oemof/tespy/pull/592#issuecomment-2571756953) in [oemof/tespy](https://github.com/oemof/tespy) +2. 🗣 Commented on [#9468](https://github.com/statsmodels/statsmodels/pull/9468#issuecomment-2571756073) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#3114](https://github.com/metabrainz/listenbrainz-server/pull/3114#issuecomment-2571715256) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#3113](https://github.com/metabrainz/listenbrainz-server/pull/3113#issuecomment-2571713751) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#1056](https://github.com/PyThaiNLP/pythainlp/pull/1056#issuecomment-2571624713) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +6. 🗣 Commented on [#85](https://github.com/CartoonFan/pcsx2/pull/85#issuecomment-2571462999) in [CartoonFan/pcsx2](https://github.com/CartoonFan/pcsx2) +7. 🗣 Commented on [#342](https://github.com/Moonlark-Dev/Moonlark/pull/342#issuecomment-2571324000) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +8. 🗣 Commented on [#712](https://github.com/deuteronomy-works/pyffmpeg/pull/712#issuecomment-2571122989) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +9. 🗣 Commented on [#711](https://github.com/deuteronomy-works/pyffmpeg/pull/711#issuecomment-2571122741) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +10. 🗣 Commented on [#710](https://github.com/deuteronomy-works/pyffmpeg/pull/710#issuecomment-2571122466) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) From 9b26d9e4788aa4e94d41a5bd46c88a373c8c6c6d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Jan 2025 00:51:32 +0000 Subject: [PATCH 2151/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7fc447fd..61296e1d 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#592](https://github.com/oemof/tespy/pull/592#issuecomment-2571756953) in [oemof/tespy](https://github.com/oemof/tespy) -2. 🗣 Commented on [#9468](https://github.com/statsmodels/statsmodels/pull/9468#issuecomment-2571756073) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#3114](https://github.com/metabrainz/listenbrainz-server/pull/3114#issuecomment-2571715256) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#3113](https://github.com/metabrainz/listenbrainz-server/pull/3113#issuecomment-2571713751) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#1056](https://github.com/PyThaiNLP/pythainlp/pull/1056#issuecomment-2571624713) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -6. 🗣 Commented on [#85](https://github.com/CartoonFan/pcsx2/pull/85#issuecomment-2571462999) in [CartoonFan/pcsx2](https://github.com/CartoonFan/pcsx2) -7. 🗣 Commented on [#342](https://github.com/Moonlark-Dev/Moonlark/pull/342#issuecomment-2571324000) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -8. 🗣 Commented on [#712](https://github.com/deuteronomy-works/pyffmpeg/pull/712#issuecomment-2571122989) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -9. 🗣 Commented on [#711](https://github.com/deuteronomy-works/pyffmpeg/pull/711#issuecomment-2571122741) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) -10. 🗣 Commented on [#710](https://github.com/deuteronomy-works/pyffmpeg/pull/710#issuecomment-2571122466) in [deuteronomy-works/pyffmpeg](https://github.com/deuteronomy-works/pyffmpeg) +1. 🗣 Commented on [#16](https://github.com/ERPGulf/zatca_erpgulf/pull/16#issuecomment-2573534403) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) +2. 🗣 Commented on [#522](https://github.com/Spoken-tutorial/spoken-website/pull/522#issuecomment-2573352846) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +3. 🗣 Commented on [#1685](https://github.com/openSUSE/osc/pull/1685#issuecomment-2572560843) in [openSUSE/osc](https://github.com/openSUSE/osc) +4. 🗣 Commented on [#23377](https://github.com/spyder-ide/spyder/pull/23377#issuecomment-2572293194) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#592](https://github.com/oemof/tespy/pull/592#issuecomment-2571756953) in [oemof/tespy](https://github.com/oemof/tespy) +6. 🗣 Commented on [#9468](https://github.com/statsmodels/statsmodels/pull/9468#issuecomment-2571756073) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +7. 🗣 Commented on [#3114](https://github.com/metabrainz/listenbrainz-server/pull/3114#issuecomment-2571715256) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#3113](https://github.com/metabrainz/listenbrainz-server/pull/3113#issuecomment-2571713751) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#1056](https://github.com/PyThaiNLP/pythainlp/pull/1056#issuecomment-2571624713) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +10. 🗣 Commented on [#85](https://github.com/CartoonFan/pcsx2/pull/85#issuecomment-2571462999) in [CartoonFan/pcsx2](https://github.com/CartoonFan/pcsx2) From bce32acc92868040f22798e81e79d2300a2e8c8e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Jan 2025 00:51:31 +0000 Subject: [PATCH 2152/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 61296e1d..3453cb7c 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#16](https://github.com/ERPGulf/zatca_erpgulf/pull/16#issuecomment-2573534403) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) -2. 🗣 Commented on [#522](https://github.com/Spoken-tutorial/spoken-website/pull/522#issuecomment-2573352846) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -3. 🗣 Commented on [#1685](https://github.com/openSUSE/osc/pull/1685#issuecomment-2572560843) in [openSUSE/osc](https://github.com/openSUSE/osc) -4. 🗣 Commented on [#23377](https://github.com/spyder-ide/spyder/pull/23377#issuecomment-2572293194) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#592](https://github.com/oemof/tespy/pull/592#issuecomment-2571756953) in [oemof/tespy](https://github.com/oemof/tespy) -6. 🗣 Commented on [#9468](https://github.com/statsmodels/statsmodels/pull/9468#issuecomment-2571756073) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -7. 🗣 Commented on [#3114](https://github.com/metabrainz/listenbrainz-server/pull/3114#issuecomment-2571715256) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#3113](https://github.com/metabrainz/listenbrainz-server/pull/3113#issuecomment-2571713751) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#1056](https://github.com/PyThaiNLP/pythainlp/pull/1056#issuecomment-2571624713) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -10. 🗣 Commented on [#85](https://github.com/CartoonFan/pcsx2/pull/85#issuecomment-2571462999) in [CartoonFan/pcsx2](https://github.com/CartoonFan/pcsx2) +1. 🗣 Commented on [#3116](https://github.com/metabrainz/listenbrainz-server/pull/3116#issuecomment-2575881854) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#3115](https://github.com/metabrainz/listenbrainz-server/pull/3115#issuecomment-2575881202) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#2192](https://github.com/OpenSCAP/openscap/pull/2192#issuecomment-2575674191) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) +4. 🗣 Commented on [#1060](https://github.com/avaframe/AvaFrame/pull/1060#issuecomment-2575406389) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +5. 🗣 Commented on [#524](https://github.com/Spoken-tutorial/spoken-website/pull/524#issuecomment-2574950773) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +6. 🗣 Commented on [#2](https://github.com/eastgenomics/NGS_Tar_deletion/pull/2#issuecomment-2574885364) in [eastgenomics/NGS_Tar_deletion](https://github.com/eastgenomics/NGS_Tar_deletion) +7. 🗣 Commented on [#523](https://github.com/Spoken-tutorial/spoken-website/pull/523#issuecomment-2574499534) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +8. 🗣 Commented on [#16](https://github.com/ERPGulf/zatca_erpgulf/pull/16#issuecomment-2573534403) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) +9. 🗣 Commented on [#522](https://github.com/Spoken-tutorial/spoken-website/pull/522#issuecomment-2573352846) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +10. 🗣 Commented on [#1685](https://github.com/openSUSE/osc/pull/1685#issuecomment-2572560843) in [openSUSE/osc](https://github.com/openSUSE/osc) From 6723f189a4d06a4db90462f8909b1c5e123b14e5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Jan 2025 00:51:07 +0000 Subject: [PATCH 2153/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3453cb7c..b4b5bbc6 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3116](https://github.com/metabrainz/listenbrainz-server/pull/3116#issuecomment-2575881854) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#3115](https://github.com/metabrainz/listenbrainz-server/pull/3115#issuecomment-2575881202) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#2192](https://github.com/OpenSCAP/openscap/pull/2192#issuecomment-2575674191) in [OpenSCAP/openscap](https://github.com/OpenSCAP/openscap) -4. 🗣 Commented on [#1060](https://github.com/avaframe/AvaFrame/pull/1060#issuecomment-2575406389) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -5. 🗣 Commented on [#524](https://github.com/Spoken-tutorial/spoken-website/pull/524#issuecomment-2574950773) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -6. 🗣 Commented on [#2](https://github.com/eastgenomics/NGS_Tar_deletion/pull/2#issuecomment-2574885364) in [eastgenomics/NGS_Tar_deletion](https://github.com/eastgenomics/NGS_Tar_deletion) -7. 🗣 Commented on [#523](https://github.com/Spoken-tutorial/spoken-website/pull/523#issuecomment-2574499534) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -8. 🗣 Commented on [#16](https://github.com/ERPGulf/zatca_erpgulf/pull/16#issuecomment-2573534403) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) -9. 🗣 Commented on [#522](https://github.com/Spoken-tutorial/spoken-website/pull/522#issuecomment-2573352846) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) -10. 🗣 Commented on [#1685](https://github.com/openSUSE/osc/pull/1685#issuecomment-2572560843) in [openSUSE/osc](https://github.com/openSUSE/osc) +1. 🗣 Commented on [#1058](https://github.com/PyThaiNLP/pythainlp/pull/1058#issuecomment-2577675959) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +2. 🗣 Commented on [#21](https://github.com/ERPGulf/zatca_erpgulf/pull/21#issuecomment-2576861194) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) +3. 🗣 Commented on [#1151](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1151#issuecomment-2576407208) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +4. 🗣 Commented on [#1150](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1150#issuecomment-2576401817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +5. 🗣 Commented on [#1149](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1149#issuecomment-2576394034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +6. 🗣 Commented on [#1527](https://github.com/rpm-software-management/mock/pull/1527#issuecomment-2576199209) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) +7. 🗣 Commented on [#6019](https://github.com/rhinstaller/anaconda/pull/6019#issuecomment-2576160301) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +8. 🗣 Commented on [#57](https://github.com/NASA-Planetary-Science/AmesCAP/pull/57#issuecomment-2576133550) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +9. 🗣 Commented on [#4884](https://github.com/MDAnalysis/mdanalysis/pull/4884#issuecomment-2576100692) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#3116](https://github.com/metabrainz/listenbrainz-server/pull/3116#issuecomment-2575881854) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) From 4f84915f45f5a589b7fc098defea8eea1f04c74e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Jan 2025 00:52:42 +0000 Subject: [PATCH 2154/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b4b5bbc6..1a440d7c 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1058](https://github.com/PyThaiNLP/pythainlp/pull/1058#issuecomment-2577675959) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -2. 🗣 Commented on [#21](https://github.com/ERPGulf/zatca_erpgulf/pull/21#issuecomment-2576861194) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) -3. 🗣 Commented on [#1151](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1151#issuecomment-2576407208) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -4. 🗣 Commented on [#1150](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1150#issuecomment-2576401817) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -5. 🗣 Commented on [#1149](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1149#issuecomment-2576394034) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -6. 🗣 Commented on [#1527](https://github.com/rpm-software-management/mock/pull/1527#issuecomment-2576199209) in [rpm-software-management/mock](https://github.com/rpm-software-management/mock) -7. 🗣 Commented on [#6019](https://github.com/rhinstaller/anaconda/pull/6019#issuecomment-2576160301) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -8. 🗣 Commented on [#57](https://github.com/NASA-Planetary-Science/AmesCAP/pull/57#issuecomment-2576133550) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -9. 🗣 Commented on [#4884](https://github.com/MDAnalysis/mdanalysis/pull/4884#issuecomment-2576100692) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#3116](https://github.com/metabrainz/listenbrainz-server/pull/3116#issuecomment-2575881854) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +1. 🗣 Commented on [#1478](https://github.com/deepfakes/faceswap/pull/1478#issuecomment-2579115091) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) +2. 🗣 Commented on [#1477](https://github.com/deepfakes/faceswap/pull/1477#issuecomment-2579113297) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) +3. 🗣 Commented on [#1476](https://github.com/deepfakes/faceswap/pull/1476#issuecomment-2579112239) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) +4. 🗣 Commented on [#1475](https://github.com/deepfakes/faceswap/pull/1475#issuecomment-2579110837) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) +5. 🗣 Commented on [#1115](https://github.com/scilus/scilpy/pull/1115#issuecomment-2579101623) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#1152](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1152#issuecomment-2578503453) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#1773](https://github.com/HEXRD/hexrdgui/pull/1773#issuecomment-2578248680) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) +8. 🗣 Commented on [#3078](https://github.com/metabrainz/listenbrainz-server/pull/3078#issuecomment-2578171588) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#764](https://github.com/bashtage/arch/pull/764#issuecomment-2577988600) in [bashtage/arch](https://github.com/bashtage/arch) +10. 🗣 Commented on [#1058](https://github.com/PyThaiNLP/pythainlp/pull/1058#issuecomment-2577675959) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) From fd55cb3d08061ce5eefc57e8e3d25c16b80a3257 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 11 Jan 2025 00:51:33 +0000 Subject: [PATCH 2155/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 1a440d7c..f2e96827 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1478](https://github.com/deepfakes/faceswap/pull/1478#issuecomment-2579115091) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) -2. 🗣 Commented on [#1477](https://github.com/deepfakes/faceswap/pull/1477#issuecomment-2579113297) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) -3. 🗣 Commented on [#1476](https://github.com/deepfakes/faceswap/pull/1476#issuecomment-2579112239) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) -4. 🗣 Commented on [#1475](https://github.com/deepfakes/faceswap/pull/1475#issuecomment-2579110837) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) -5. 🗣 Commented on [#1115](https://github.com/scilus/scilpy/pull/1115#issuecomment-2579101623) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#1152](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1152#issuecomment-2578503453) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#1773](https://github.com/HEXRD/hexrdgui/pull/1773#issuecomment-2578248680) in [HEXRD/hexrdgui](https://github.com/HEXRD/hexrdgui) -8. 🗣 Commented on [#3078](https://github.com/metabrainz/listenbrainz-server/pull/3078#issuecomment-2578171588) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#764](https://github.com/bashtage/arch/pull/764#issuecomment-2577988600) in [bashtage/arch](https://github.com/bashtage/arch) -10. 🗣 Commented on [#1058](https://github.com/PyThaiNLP/pythainlp/pull/1058#issuecomment-2577675959) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +1. 🗣 Commented on [#741](https://github.com/HEXRD/hexrd/pull/741#issuecomment-2581533698) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +2. 🗣 Commented on [#742](https://github.com/HEXRD/hexrd/pull/742#issuecomment-2581437015) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +3. 🗣 Commented on [#3118](https://github.com/metabrainz/listenbrainz-server/pull/3118#issuecomment-2580954086) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#158](https://github.com/eastgenomics/eggd_conductor/pull/158#issuecomment-2580396172) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +5. 🗣 Commented on [#156](https://github.com/eastgenomics/eggd_conductor/pull/156#issuecomment-2580332672) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +6. 🗣 Commented on [#96](https://github.com/eastgenomics/athena/pull/96#issuecomment-2580331541) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +7. 🗣 Commented on [#9](https://github.com/2lambda123/Clustering/pull/9#issuecomment-2580199889) in [2lambda123/Clustering](https://github.com/2lambda123/Clustering) +8. 🗣 Commented on [#1478](https://github.com/deepfakes/faceswap/pull/1478#issuecomment-2579115091) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) +9. 🗣 Commented on [#1477](https://github.com/deepfakes/faceswap/pull/1477#issuecomment-2579113297) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) +10. 🗣 Commented on [#1476](https://github.com/deepfakes/faceswap/pull/1476#issuecomment-2579112239) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) From 56c2832cd6f5c7c48ba19d6f1fd5077e4195b0e1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 12 Jan 2025 00:56:11 +0000 Subject: [PATCH 2156/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f2e96827..f0b9a2de 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#741](https://github.com/HEXRD/hexrd/pull/741#issuecomment-2581533698) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -2. 🗣 Commented on [#742](https://github.com/HEXRD/hexrd/pull/742#issuecomment-2581437015) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -3. 🗣 Commented on [#3118](https://github.com/metabrainz/listenbrainz-server/pull/3118#issuecomment-2580954086) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#158](https://github.com/eastgenomics/eggd_conductor/pull/158#issuecomment-2580396172) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -5. 🗣 Commented on [#156](https://github.com/eastgenomics/eggd_conductor/pull/156#issuecomment-2580332672) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) -6. 🗣 Commented on [#96](https://github.com/eastgenomics/athena/pull/96#issuecomment-2580331541) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -7. 🗣 Commented on [#9](https://github.com/2lambda123/Clustering/pull/9#issuecomment-2580199889) in [2lambda123/Clustering](https://github.com/2lambda123/Clustering) -8. 🗣 Commented on [#1478](https://github.com/deepfakes/faceswap/pull/1478#issuecomment-2579115091) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) -9. 🗣 Commented on [#1477](https://github.com/deepfakes/faceswap/pull/1477#issuecomment-2579113297) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) -10. 🗣 Commented on [#1476](https://github.com/deepfakes/faceswap/pull/1476#issuecomment-2579112239) in [deepfakes/faceswap](https://github.com/deepfakes/faceswap) +1. 🗣 Commented on [#4536](https://github.com/pyload/pyload/pull/4536#issuecomment-2585294430) in [pyload/pyload](https://github.com/pyload/pyload) +2. 🗣 Commented on [#1064](https://github.com/PyThaiNLP/pythainlp/pull/1064#issuecomment-2585140952) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +3. 🗣 Commented on [#20](https://github.com/linum-uqam/linumpy/pull/20#issuecomment-2584993098) in [linum-uqam/linumpy](https://github.com/linum-uqam/linumpy) +4. 🗣 Commented on [#743](https://github.com/HEXRD/hexrd/pull/743#issuecomment-2583299366) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +5. 🗣 Commented on [#344](https://github.com/Moonlark-Dev/Moonlark/pull/344#issuecomment-2583110248) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +6. 🗣 Commented on [#167](https://github.com/adobe/ops-cli/pull/167#issuecomment-2582088164) in [adobe/ops-cli](https://github.com/adobe/ops-cli) +7. 🗣 Commented on [#741](https://github.com/HEXRD/hexrd/pull/741#issuecomment-2581533698) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +8. 🗣 Commented on [#742](https://github.com/HEXRD/hexrd/pull/742#issuecomment-2581437015) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +9. 🗣 Commented on [#3118](https://github.com/metabrainz/listenbrainz-server/pull/3118#issuecomment-2580954086) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +10. 🗣 Commented on [#158](https://github.com/eastgenomics/eggd_conductor/pull/158#issuecomment-2580396172) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) From e412dbaa2f3daac438f4fc4e6ad64498eb01c968 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 00:54:27 +0000 Subject: [PATCH 2157/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f0b9a2de..82f6bbbd 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#4536](https://github.com/pyload/pyload/pull/4536#issuecomment-2585294430) in [pyload/pyload](https://github.com/pyload/pyload) -2. 🗣 Commented on [#1064](https://github.com/PyThaiNLP/pythainlp/pull/1064#issuecomment-2585140952) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -3. 🗣 Commented on [#20](https://github.com/linum-uqam/linumpy/pull/20#issuecomment-2584993098) in [linum-uqam/linumpy](https://github.com/linum-uqam/linumpy) -4. 🗣 Commented on [#743](https://github.com/HEXRD/hexrd/pull/743#issuecomment-2583299366) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -5. 🗣 Commented on [#344](https://github.com/Moonlark-Dev/Moonlark/pull/344#issuecomment-2583110248) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -6. 🗣 Commented on [#167](https://github.com/adobe/ops-cli/pull/167#issuecomment-2582088164) in [adobe/ops-cli](https://github.com/adobe/ops-cli) -7. 🗣 Commented on [#741](https://github.com/HEXRD/hexrd/pull/741#issuecomment-2581533698) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -8. 🗣 Commented on [#742](https://github.com/HEXRD/hexrd/pull/742#issuecomment-2581437015) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -9. 🗣 Commented on [#3118](https://github.com/metabrainz/listenbrainz-server/pull/3118#issuecomment-2580954086) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -10. 🗣 Commented on [#158](https://github.com/eastgenomics/eggd_conductor/pull/158#issuecomment-2580396172) in [eastgenomics/eggd_conductor](https://github.com/eastgenomics/eggd_conductor) +1. 🗣 Commented on [#1004](https://github.com/ToFuProject/tofu/pull/1004#issuecomment-2585845284) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +2. 🗣 Commented on [#3173](https://github.com/astropy/astroquery/pull/3173#issuecomment-2585762507) in [astropy/astroquery](https://github.com/astropy/astroquery) +3. 🗣 Commented on [#3](https://github.com/2lambda123/googlecolab-colabtools/pull/3#issuecomment-2585752695) in [2lambda123/googlecolab-colabtools](https://github.com/2lambda123/googlecolab-colabtools) +4. 🗣 Commented on [#2](https://github.com/2lambda123/googlecolab-colabtools/pull/2#issuecomment-2585751474) in [2lambda123/googlecolab-colabtools](https://github.com/2lambda123/googlecolab-colabtools) +5. 🗣 Commented on [#252](https://github.com/my8100/scrapydweb/pull/252#issuecomment-2585694996) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +6. 🗣 Commented on [#23444](https://github.com/spyder-ide/spyder/pull/23444#issuecomment-2585678473) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#250](https://github.com/my8100/scrapydweb/pull/250#issuecomment-2585639783) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) +8. 🗣 Commented on [#4536](https://github.com/pyload/pyload/pull/4536#issuecomment-2585294430) in [pyload/pyload](https://github.com/pyload/pyload) +9. 🗣 Commented on [#1064](https://github.com/PyThaiNLP/pythainlp/pull/1064#issuecomment-2585140952) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) +10. 🗣 Commented on [#20](https://github.com/linum-uqam/linumpy/pull/20#issuecomment-2584993098) in [linum-uqam/linumpy](https://github.com/linum-uqam/linumpy) From 9e06825fa7def9ade54e3ccb2ff7cacddf61b80a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 00:48:31 +0000 Subject: [PATCH 2158/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 82f6bbbd..8f4ac979 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1004](https://github.com/ToFuProject/tofu/pull/1004#issuecomment-2585845284) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -2. 🗣 Commented on [#3173](https://github.com/astropy/astroquery/pull/3173#issuecomment-2585762507) in [astropy/astroquery](https://github.com/astropy/astroquery) -3. 🗣 Commented on [#3](https://github.com/2lambda123/googlecolab-colabtools/pull/3#issuecomment-2585752695) in [2lambda123/googlecolab-colabtools](https://github.com/2lambda123/googlecolab-colabtools) -4. 🗣 Commented on [#2](https://github.com/2lambda123/googlecolab-colabtools/pull/2#issuecomment-2585751474) in [2lambda123/googlecolab-colabtools](https://github.com/2lambda123/googlecolab-colabtools) -5. 🗣 Commented on [#252](https://github.com/my8100/scrapydweb/pull/252#issuecomment-2585694996) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) -6. 🗣 Commented on [#23444](https://github.com/spyder-ide/spyder/pull/23444#issuecomment-2585678473) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#250](https://github.com/my8100/scrapydweb/pull/250#issuecomment-2585639783) in [my8100/scrapydweb](https://github.com/my8100/scrapydweb) -8. 🗣 Commented on [#4536](https://github.com/pyload/pyload/pull/4536#issuecomment-2585294430) in [pyload/pyload](https://github.com/pyload/pyload) -9. 🗣 Commented on [#1064](https://github.com/PyThaiNLP/pythainlp/pull/1064#issuecomment-2585140952) in [PyThaiNLP/pythainlp](https://github.com/PyThaiNLP/pythainlp) -10. 🗣 Commented on [#20](https://github.com/linum-uqam/linumpy/pull/20#issuecomment-2584993098) in [linum-uqam/linumpy](https://github.com/linum-uqam/linumpy) +1. 🗣 Commented on [#170](https://github.com/adobe/ops-cli/pull/170#issuecomment-2587508493) in [adobe/ops-cli](https://github.com/adobe/ops-cli) +2. 🗣 Commented on [#6090](https://github.com/rhinstaller/anaconda/pull/6090#issuecomment-2587033316) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +3. 🗣 Commented on [#4206](https://github.com/privacyidea/privacyidea/pull/4206#issuecomment-2586928589) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +4. 🗣 Commented on [#4203](https://github.com/privacyidea/privacyidea/pull/4203#issuecomment-2586812820) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) +5. 🗣 Commented on [#1756](https://github.com/OGGM/oggm/pull/1756#issuecomment-2586637142) in [OGGM/oggm](https://github.com/OGGM/oggm) +6. 🗣 Commented on [#157](https://github.com/DeMarcoLab/autolamella/pull/157#issuecomment-2586147538) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) +7. 🗣 Commented on [#93](https://github.com/CartoonFan/pcsx2/pull/93#issuecomment-2586025140) in [CartoonFan/pcsx2](https://github.com/CartoonFan/pcsx2) +8. 🗣 Commented on [#1004](https://github.com/ToFuProject/tofu/pull/1004#issuecomment-2585845284) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#3173](https://github.com/astropy/astroquery/pull/3173#issuecomment-2585762507) in [astropy/astroquery](https://github.com/astropy/astroquery) +10. 🗣 Commented on [#3](https://github.com/2lambda123/googlecolab-colabtools/pull/3#issuecomment-2585752695) in [2lambda123/googlecolab-colabtools](https://github.com/2lambda123/googlecolab-colabtools) From 2f1b0295292be3168d2e623c43acd8abbb10fa78 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Jan 2025 00:50:28 +0000 Subject: [PATCH 2159/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8f4ac979..b5a2b827 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#170](https://github.com/adobe/ops-cli/pull/170#issuecomment-2587508493) in [adobe/ops-cli](https://github.com/adobe/ops-cli) -2. 🗣 Commented on [#6090](https://github.com/rhinstaller/anaconda/pull/6090#issuecomment-2587033316) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -3. 🗣 Commented on [#4206](https://github.com/privacyidea/privacyidea/pull/4206#issuecomment-2586928589) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -4. 🗣 Commented on [#4203](https://github.com/privacyidea/privacyidea/pull/4203#issuecomment-2586812820) in [privacyidea/privacyidea](https://github.com/privacyidea/privacyidea) -5. 🗣 Commented on [#1756](https://github.com/OGGM/oggm/pull/1756#issuecomment-2586637142) in [OGGM/oggm](https://github.com/OGGM/oggm) -6. 🗣 Commented on [#157](https://github.com/DeMarcoLab/autolamella/pull/157#issuecomment-2586147538) in [DeMarcoLab/autolamella](https://github.com/DeMarcoLab/autolamella) -7. 🗣 Commented on [#93](https://github.com/CartoonFan/pcsx2/pull/93#issuecomment-2586025140) in [CartoonFan/pcsx2](https://github.com/CartoonFan/pcsx2) -8. 🗣 Commented on [#1004](https://github.com/ToFuProject/tofu/pull/1004#issuecomment-2585845284) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#3173](https://github.com/astropy/astroquery/pull/3173#issuecomment-2585762507) in [astropy/astroquery](https://github.com/astropy/astroquery) -10. 🗣 Commented on [#3](https://github.com/2lambda123/googlecolab-colabtools/pull/3#issuecomment-2585752695) in [2lambda123/googlecolab-colabtools](https://github.com/2lambda123/googlecolab-colabtools) +1. 🗣 Commented on [#3054](https://github.com/metabrainz/listenbrainz-server/pull/3054#issuecomment-2590220154) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +2. 🗣 Commented on [#1694](https://github.com/openSUSE/osc/pull/1694#issuecomment-2590214679) in [openSUSE/osc](https://github.com/openSUSE/osc) +3. 🗣 Commented on [#105](https://github.com/INT-NIT/DigLabTools/pull/105#issuecomment-2590081258) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +4. 🗣 Commented on [#6094](https://github.com/rhinstaller/anaconda/pull/6094#issuecomment-2590022070) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +5. 🗣 Commented on [#1066](https://github.com/avaframe/AvaFrame/pull/1066#issuecomment-2589678909) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#6093](https://github.com/rhinstaller/anaconda/pull/6093#issuecomment-2589662319) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +7. 🗣 Commented on [#1757](https://github.com/OGGM/oggm/pull/1757#issuecomment-2589634207) in [OGGM/oggm](https://github.com/OGGM/oggm) +8. 🗣 Commented on [#4892](https://github.com/MDAnalysis/mdanalysis/pull/4892#issuecomment-2588913019) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +9. 🗣 Commented on [#1666](https://github.com/spacetelescope/jwql/pull/1666#issuecomment-2588281612) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) +10. 🗣 Commented on [#1150](https://github.com/oemof/oemof-solph/pull/1150#issuecomment-2588133501) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) From 66a9808c0e2d33d2741268469a16a42a4d167441 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 16 Jan 2025 00:49:32 +0000 Subject: [PATCH 2160/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b5a2b827..f07b9a2b 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3054](https://github.com/metabrainz/listenbrainz-server/pull/3054#issuecomment-2590220154) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -2. 🗣 Commented on [#1694](https://github.com/openSUSE/osc/pull/1694#issuecomment-2590214679) in [openSUSE/osc](https://github.com/openSUSE/osc) -3. 🗣 Commented on [#105](https://github.com/INT-NIT/DigLabTools/pull/105#issuecomment-2590081258) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) -4. 🗣 Commented on [#6094](https://github.com/rhinstaller/anaconda/pull/6094#issuecomment-2590022070) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -5. 🗣 Commented on [#1066](https://github.com/avaframe/AvaFrame/pull/1066#issuecomment-2589678909) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#6093](https://github.com/rhinstaller/anaconda/pull/6093#issuecomment-2589662319) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -7. 🗣 Commented on [#1757](https://github.com/OGGM/oggm/pull/1757#issuecomment-2589634207) in [OGGM/oggm](https://github.com/OGGM/oggm) -8. 🗣 Commented on [#4892](https://github.com/MDAnalysis/mdanalysis/pull/4892#issuecomment-2588913019) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -9. 🗣 Commented on [#1666](https://github.com/spacetelescope/jwql/pull/1666#issuecomment-2588281612) in [spacetelescope/jwql](https://github.com/spacetelescope/jwql) -10. 🗣 Commented on [#1150](https://github.com/oemof/oemof-solph/pull/1150#issuecomment-2588133501) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +1. 🗣 Commented on [#309](https://github.com/boutproject/xBOUT/pull/309#issuecomment-2592285939) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) +2. 🗣 Commented on [#24](https://github.com/ERPGulf/zatca_erpgulf/pull/24#issuecomment-2591879140) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) +3. 🗣 Commented on [#58](https://github.com/NASA-Planetary-Science/AmesCAP/pull/58#issuecomment-2591342800) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +4. 🗣 Commented on [#23463](https://github.com/spyder-ide/spyder/pull/23463#issuecomment-2591131549) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#1118](https://github.com/scilus/scilpy/pull/1118#issuecomment-2590902240) in [scilus/scilpy](https://github.com/scilus/scilpy) +6. 🗣 Commented on [#1153](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1153#issuecomment-2590880358) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) +7. 🗣 Commented on [#76](https://github.com/cirKITers/qml-essentials/pull/76#issuecomment-2590752082) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +8. 🗣 Commented on [#3054](https://github.com/metabrainz/listenbrainz-server/pull/3054#issuecomment-2590220154) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#1694](https://github.com/openSUSE/osc/pull/1694#issuecomment-2590214679) in [openSUSE/osc](https://github.com/openSUSE/osc) +10. 🗣 Commented on [#105](https://github.com/INT-NIT/DigLabTools/pull/105#issuecomment-2590081258) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) From 6375303bcf53a17a240eaa045969b9a6e62bf264 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 17 Jan 2025 00:49:11 +0000 Subject: [PATCH 2161/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f07b9a2b..b5db9d6e 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#309](https://github.com/boutproject/xBOUT/pull/309#issuecomment-2592285939) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) -2. 🗣 Commented on [#24](https://github.com/ERPGulf/zatca_erpgulf/pull/24#issuecomment-2591879140) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) -3. 🗣 Commented on [#58](https://github.com/NASA-Planetary-Science/AmesCAP/pull/58#issuecomment-2591342800) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -4. 🗣 Commented on [#23463](https://github.com/spyder-ide/spyder/pull/23463#issuecomment-2591131549) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#1118](https://github.com/scilus/scilpy/pull/1118#issuecomment-2590902240) in [scilus/scilpy](https://github.com/scilus/scilpy) -6. 🗣 Commented on [#1153](https://github.com/Sage-Bionetworks/synapsePythonClient/pull/1153#issuecomment-2590880358) in [Sage-Bionetworks/synapsePythonClient](https://github.com/Sage-Bionetworks/synapsePythonClient) -7. 🗣 Commented on [#76](https://github.com/cirKITers/qml-essentials/pull/76#issuecomment-2590752082) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -8. 🗣 Commented on [#3054](https://github.com/metabrainz/listenbrainz-server/pull/3054#issuecomment-2590220154) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#1694](https://github.com/openSUSE/osc/pull/1694#issuecomment-2590214679) in [openSUSE/osc](https://github.com/openSUSE/osc) -10. 🗣 Commented on [#105](https://github.com/INT-NIT/DigLabTools/pull/105#issuecomment-2590081258) in [INT-NIT/DigLabTools](https://github.com/INT-NIT/DigLabTools) +1. 🗣 Commented on [#1119](https://github.com/scilus/scilpy/pull/1119#issuecomment-2594297718) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#61](https://github.com/NASA-Planetary-Science/AmesCAP/pull/61#issuecomment-2594054389) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +3. 🗣 Commented on [#60](https://github.com/NASA-Planetary-Science/AmesCAP/pull/60#issuecomment-2594031490) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) +4. 🗣 Commented on [#23471](https://github.com/spyder-ide/spyder/pull/23471#issuecomment-2593776558) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#17](https://github.com/llgneuroresearch/avnirpy/pull/17#issuecomment-2593665098) in [llgneuroresearch/avnirpy](https://github.com/llgneuroresearch/avnirpy) +6. 🗣 Commented on [#23470](https://github.com/spyder-ide/spyder/pull/23470#issuecomment-2593502198) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +7. 🗣 Commented on [#53](https://github.com/cirKITers/mind-the-qapp/pull/53#issuecomment-2593280965) in [cirKITers/mind-the-qapp](https://github.com/cirKITers/mind-the-qapp) +8. 🗣 Commented on [#172](https://github.com/adobe/ops-cli/pull/172#issuecomment-2592872465) in [adobe/ops-cli](https://github.com/adobe/ops-cli) +9. 🗣 Commented on [#309](https://github.com/boutproject/xBOUT/pull/309#issuecomment-2592285939) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) +10. 🗣 Commented on [#24](https://github.com/ERPGulf/zatca_erpgulf/pull/24#issuecomment-2591879140) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) From 84b6a293a3f18e3ffa4d344a252a22bf34da6f7f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Jan 2025 00:47:11 +0000 Subject: [PATCH 2162/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b5db9d6e..8131eccd 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1119](https://github.com/scilus/scilpy/pull/1119#issuecomment-2594297718) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#61](https://github.com/NASA-Planetary-Science/AmesCAP/pull/61#issuecomment-2594054389) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -3. 🗣 Commented on [#60](https://github.com/NASA-Planetary-Science/AmesCAP/pull/60#issuecomment-2594031490) in [NASA-Planetary-Science/AmesCAP](https://github.com/NASA-Planetary-Science/AmesCAP) -4. 🗣 Commented on [#23471](https://github.com/spyder-ide/spyder/pull/23471#issuecomment-2593776558) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#17](https://github.com/llgneuroresearch/avnirpy/pull/17#issuecomment-2593665098) in [llgneuroresearch/avnirpy](https://github.com/llgneuroresearch/avnirpy) -6. 🗣 Commented on [#23470](https://github.com/spyder-ide/spyder/pull/23470#issuecomment-2593502198) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -7. 🗣 Commented on [#53](https://github.com/cirKITers/mind-the-qapp/pull/53#issuecomment-2593280965) in [cirKITers/mind-the-qapp](https://github.com/cirKITers/mind-the-qapp) -8. 🗣 Commented on [#172](https://github.com/adobe/ops-cli/pull/172#issuecomment-2592872465) in [adobe/ops-cli](https://github.com/adobe/ops-cli) -9. 🗣 Commented on [#309](https://github.com/boutproject/xBOUT/pull/309#issuecomment-2592285939) in [boutproject/xBOUT](https://github.com/boutproject/xBOUT) -10. 🗣 Commented on [#24](https://github.com/ERPGulf/zatca_erpgulf/pull/24#issuecomment-2591879140) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) +1. 🗣 Commented on [#1067](https://github.com/avaframe/AvaFrame/pull/1067#issuecomment-2599007007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#3131](https://github.com/metabrainz/listenbrainz-server/pull/3131#issuecomment-2598248753) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#8](https://github.com/ERPGulf/myinvois/pull/8#issuecomment-2598195677) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) +4. 🗣 Commented on [#23498](https://github.com/spyder-ide/spyder/pull/23498#issuecomment-2598194285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +5. 🗣 Commented on [#7](https://github.com/ERPGulf/myinvois/pull/7#issuecomment-2598173341) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) +6. 🗣 Commented on [#6](https://github.com/ERPGulf/myinvois/pull/6#issuecomment-2598015380) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) +7. 🗣 Commented on [#3](https://github.com/ERPGulf/myinvois/pull/3#issuecomment-2597922377) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) +8. 🗣 Commented on [#97](https://github.com/CartoonFan/pcsx2/pull/97#issuecomment-2597601497) in [CartoonFan/pcsx2](https://github.com/CartoonFan/pcsx2) +9. 🗣 Commented on [#582](https://github.com/askap-vast/vast-tools/pull/582#issuecomment-2597436948) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +10. 🗣 Commented on [#1119](https://github.com/scilus/scilpy/pull/1119#issuecomment-2594297718) in [scilus/scilpy](https://github.com/scilus/scilpy) From ed0f9235adeb09c867c3ccffe7a994120ae9f723 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 19 Jan 2025 00:53:40 +0000 Subject: [PATCH 2163/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 8131eccd..647266ca 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1067](https://github.com/avaframe/AvaFrame/pull/1067#issuecomment-2599007007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#3131](https://github.com/metabrainz/listenbrainz-server/pull/3131#issuecomment-2598248753) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#8](https://github.com/ERPGulf/myinvois/pull/8#issuecomment-2598195677) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) -4. 🗣 Commented on [#23498](https://github.com/spyder-ide/spyder/pull/23498#issuecomment-2598194285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -5. 🗣 Commented on [#7](https://github.com/ERPGulf/myinvois/pull/7#issuecomment-2598173341) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) -6. 🗣 Commented on [#6](https://github.com/ERPGulf/myinvois/pull/6#issuecomment-2598015380) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) -7. 🗣 Commented on [#3](https://github.com/ERPGulf/myinvois/pull/3#issuecomment-2597922377) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) -8. 🗣 Commented on [#97](https://github.com/CartoonFan/pcsx2/pull/97#issuecomment-2597601497) in [CartoonFan/pcsx2](https://github.com/CartoonFan/pcsx2) -9. 🗣 Commented on [#582](https://github.com/askap-vast/vast-tools/pull/582#issuecomment-2597436948) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) -10. 🗣 Commented on [#1119](https://github.com/scilus/scilpy/pull/1119#issuecomment-2594297718) in [scilus/scilpy](https://github.com/scilus/scilpy) +1. 🗣 Commented on [#1153](https://github.com/oemof/oemof-solph/pull/1153#issuecomment-2599805420) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +2. 🗣 Commented on [#1067](https://github.com/avaframe/AvaFrame/pull/1067#issuecomment-2599007007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +3. 🗣 Commented on [#3131](https://github.com/metabrainz/listenbrainz-server/pull/3131#issuecomment-2598248753) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +4. 🗣 Commented on [#8](https://github.com/ERPGulf/myinvois/pull/8#issuecomment-2598195677) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) +5. 🗣 Commented on [#23498](https://github.com/spyder-ide/spyder/pull/23498#issuecomment-2598194285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +6. 🗣 Commented on [#7](https://github.com/ERPGulf/myinvois/pull/7#issuecomment-2598173341) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) +7. 🗣 Commented on [#6](https://github.com/ERPGulf/myinvois/pull/6#issuecomment-2598015380) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) +8. 🗣 Commented on [#3](https://github.com/ERPGulf/myinvois/pull/3#issuecomment-2597922377) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) +9. 🗣 Commented on [#97](https://github.com/CartoonFan/pcsx2/pull/97#issuecomment-2597601497) in [CartoonFan/pcsx2](https://github.com/CartoonFan/pcsx2) +10. 🗣 Commented on [#582](https://github.com/askap-vast/vast-tools/pull/582#issuecomment-2597436948) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) From 976b02daef2e85ab670ef9a23cf3f7433bcf32c8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 20 Jan 2025 00:50:57 +0000 Subject: [PATCH 2164/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 647266ca..b5175a70 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1153](https://github.com/oemof/oemof-solph/pull/1153#issuecomment-2599805420) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -2. 🗣 Commented on [#1067](https://github.com/avaframe/AvaFrame/pull/1067#issuecomment-2599007007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -3. 🗣 Commented on [#3131](https://github.com/metabrainz/listenbrainz-server/pull/3131#issuecomment-2598248753) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -4. 🗣 Commented on [#8](https://github.com/ERPGulf/myinvois/pull/8#issuecomment-2598195677) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) -5. 🗣 Commented on [#23498](https://github.com/spyder-ide/spyder/pull/23498#issuecomment-2598194285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -6. 🗣 Commented on [#7](https://github.com/ERPGulf/myinvois/pull/7#issuecomment-2598173341) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) -7. 🗣 Commented on [#6](https://github.com/ERPGulf/myinvois/pull/6#issuecomment-2598015380) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) -8. 🗣 Commented on [#3](https://github.com/ERPGulf/myinvois/pull/3#issuecomment-2597922377) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) -9. 🗣 Commented on [#97](https://github.com/CartoonFan/pcsx2/pull/97#issuecomment-2597601497) in [CartoonFan/pcsx2](https://github.com/CartoonFan/pcsx2) -10. 🗣 Commented on [#582](https://github.com/askap-vast/vast-tools/pull/582#issuecomment-2597436948) in [askap-vast/vast-tools](https://github.com/askap-vast/vast-tools) +1. 🗣 Commented on [#5773](https://github.com/rhinstaller/anaconda/pull/5773#issuecomment-2601049542) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +2. 🗣 Commented on [#6](https://github.com/DavianYang/paper2synthesis/pull/6#issuecomment-2600930652) in [DavianYang/paper2synthesis](https://github.com/DavianYang/paper2synthesis) +3. 🗣 Commented on [#102](https://github.com/njzjz/nodejs-wheel/pull/102#issuecomment-2600870073) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +4. 🗣 Commented on [#348](https://github.com/Moonlark-Dev/Moonlark/pull/348#issuecomment-2600743211) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +5. 🗣 Commented on [#105](https://github.com/njzjz/nodejs-wheel/pull/105#issuecomment-2600742591) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) +6. 🗣 Commented on [#1153](https://github.com/oemof/oemof-solph/pull/1153#issuecomment-2599805420) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +7. 🗣 Commented on [#1067](https://github.com/avaframe/AvaFrame/pull/1067#issuecomment-2599007007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +8. 🗣 Commented on [#3131](https://github.com/metabrainz/listenbrainz-server/pull/3131#issuecomment-2598248753) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +9. 🗣 Commented on [#8](https://github.com/ERPGulf/myinvois/pull/8#issuecomment-2598195677) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) +10. 🗣 Commented on [#23498](https://github.com/spyder-ide/spyder/pull/23498#issuecomment-2598194285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) From 62916e6a363a55a621e3b5e70c62dfad16c8f921 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Jan 2025 00:49:22 +0000 Subject: [PATCH 2165/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b5175a70..31e39043 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#5773](https://github.com/rhinstaller/anaconda/pull/5773#issuecomment-2601049542) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -2. 🗣 Commented on [#6](https://github.com/DavianYang/paper2synthesis/pull/6#issuecomment-2600930652) in [DavianYang/paper2synthesis](https://github.com/DavianYang/paper2synthesis) -3. 🗣 Commented on [#102](https://github.com/njzjz/nodejs-wheel/pull/102#issuecomment-2600870073) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -4. 🗣 Commented on [#348](https://github.com/Moonlark-Dev/Moonlark/pull/348#issuecomment-2600743211) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -5. 🗣 Commented on [#105](https://github.com/njzjz/nodejs-wheel/pull/105#issuecomment-2600742591) in [njzjz/nodejs-wheel](https://github.com/njzjz/nodejs-wheel) -6. 🗣 Commented on [#1153](https://github.com/oemof/oemof-solph/pull/1153#issuecomment-2599805420) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -7. 🗣 Commented on [#1067](https://github.com/avaframe/AvaFrame/pull/1067#issuecomment-2599007007) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -8. 🗣 Commented on [#3131](https://github.com/metabrainz/listenbrainz-server/pull/3131#issuecomment-2598248753) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -9. 🗣 Commented on [#8](https://github.com/ERPGulf/myinvois/pull/8#issuecomment-2598195677) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) -10. 🗣 Commented on [#23498](https://github.com/spyder-ide/spyder/pull/23498#issuecomment-2598194285) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +1. 🗣 Commented on [#3186](https://github.com/astropy/astroquery/pull/3186#issuecomment-2602839127) in [astropy/astroquery](https://github.com/astropy/astroquery) +2. 🗣 Commented on [#209](https://github.com/AtelierSoude/OpenRepairPlatform/pull/209#issuecomment-2602714254) in [AtelierSoude/OpenRepairPlatform](https://github.com/AtelierSoude/OpenRepairPlatform) +3. 🗣 Commented on [#105](https://github.com/eastgenomics/athena/pull/105#issuecomment-2602575491) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +4. 🗣 Commented on [#26](https://github.com/ERPGulf/zatca_erpgulf/pull/26#issuecomment-2602202487) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) +5. 🗣 Commented on [#1070](https://github.com/avaframe/AvaFrame/pull/1070#issuecomment-2602057776) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#729](https://github.com/quark-engine/quark-engine/pull/729#issuecomment-2601816315) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) +7. 🗣 Commented on [#550](https://github.com/payu-org/payu/pull/550#issuecomment-2601353911) in [payu-org/payu](https://github.com/payu-org/payu) +8. 🗣 Commented on [#1011](https://github.com/ToFuProject/tofu/pull/1011#issuecomment-2601263251) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +9. 🗣 Commented on [#5773](https://github.com/rhinstaller/anaconda/pull/5773#issuecomment-2601049542) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +10. 🗣 Commented on [#6](https://github.com/DavianYang/paper2synthesis/pull/6#issuecomment-2600930652) in [DavianYang/paper2synthesis](https://github.com/DavianYang/paper2synthesis) From dd8ec28f3ae6a5c2c56234b71dd22d9a8b31419d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Jan 2025 00:51:05 +0000 Subject: [PATCH 2166/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 31e39043..a9020c8d 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#3186](https://github.com/astropy/astroquery/pull/3186#issuecomment-2602839127) in [astropy/astroquery](https://github.com/astropy/astroquery) -2. 🗣 Commented on [#209](https://github.com/AtelierSoude/OpenRepairPlatform/pull/209#issuecomment-2602714254) in [AtelierSoude/OpenRepairPlatform](https://github.com/AtelierSoude/OpenRepairPlatform) -3. 🗣 Commented on [#105](https://github.com/eastgenomics/athena/pull/105#issuecomment-2602575491) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -4. 🗣 Commented on [#26](https://github.com/ERPGulf/zatca_erpgulf/pull/26#issuecomment-2602202487) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) -5. 🗣 Commented on [#1070](https://github.com/avaframe/AvaFrame/pull/1070#issuecomment-2602057776) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#729](https://github.com/quark-engine/quark-engine/pull/729#issuecomment-2601816315) in [quark-engine/quark-engine](https://github.com/quark-engine/quark-engine) -7. 🗣 Commented on [#550](https://github.com/payu-org/payu/pull/550#issuecomment-2601353911) in [payu-org/payu](https://github.com/payu-org/payu) -8. 🗣 Commented on [#1011](https://github.com/ToFuProject/tofu/pull/1011#issuecomment-2601263251) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -9. 🗣 Commented on [#5773](https://github.com/rhinstaller/anaconda/pull/5773#issuecomment-2601049542) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -10. 🗣 Commented on [#6](https://github.com/DavianYang/paper2synthesis/pull/6#issuecomment-2600930652) in [DavianYang/paper2synthesis](https://github.com/DavianYang/paper2synthesis) +1. 🗣 Commented on [#108](https://github.com/eastgenomics/athena/pull/108#issuecomment-2605085242) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +2. 🗣 Commented on [#1015](https://github.com/ToFuProject/tofu/pull/1015#issuecomment-2605045998) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +3. 🗣 Commented on [#1071](https://github.com/avaframe/AvaFrame/pull/1071#issuecomment-2604992518) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +4. 🗣 Commented on [#2](https://github.com/eastgenomics/ici_reports_export/pull/2#issuecomment-2604908659) in [eastgenomics/ici_reports_export](https://github.com/eastgenomics/ici_reports_export) +5. 🗣 Commented on [#6102](https://github.com/rhinstaller/anaconda/pull/6102#issuecomment-2604863545) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) +6. 🗣 Commented on [#106](https://github.com/eastgenomics/athena/pull/106#issuecomment-2604534387) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +7. 🗣 Commented on [#3136](https://github.com/metabrainz/listenbrainz-server/pull/3136#issuecomment-2604421326) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#3116](https://github.com/foreign-sub/home-assistant-core/pull/3116#issuecomment-2603357624) in [foreign-sub/home-assistant-core](https://github.com/foreign-sub/home-assistant-core) +9. 🗣 Commented on [#4896](https://github.com/MDAnalysis/mdanalysis/pull/4896#issuecomment-2603215796) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) +10. 🗣 Commented on [#3186](https://github.com/astropy/astroquery/pull/3186#issuecomment-2602839127) in [astropy/astroquery](https://github.com/astropy/astroquery) From 63f12379f6e199cfb412c8f27c2ada35026de7ab Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Jan 2025 00:49:56 +0000 Subject: [PATCH 2167/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a9020c8d..ce38321f 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#108](https://github.com/eastgenomics/athena/pull/108#issuecomment-2605085242) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -2. 🗣 Commented on [#1015](https://github.com/ToFuProject/tofu/pull/1015#issuecomment-2605045998) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -3. 🗣 Commented on [#1071](https://github.com/avaframe/AvaFrame/pull/1071#issuecomment-2604992518) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -4. 🗣 Commented on [#2](https://github.com/eastgenomics/ici_reports_export/pull/2#issuecomment-2604908659) in [eastgenomics/ici_reports_export](https://github.com/eastgenomics/ici_reports_export) -5. 🗣 Commented on [#6102](https://github.com/rhinstaller/anaconda/pull/6102#issuecomment-2604863545) in [rhinstaller/anaconda](https://github.com/rhinstaller/anaconda) -6. 🗣 Commented on [#106](https://github.com/eastgenomics/athena/pull/106#issuecomment-2604534387) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -7. 🗣 Commented on [#3136](https://github.com/metabrainz/listenbrainz-server/pull/3136#issuecomment-2604421326) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#3116](https://github.com/foreign-sub/home-assistant-core/pull/3116#issuecomment-2603357624) in [foreign-sub/home-assistant-core](https://github.com/foreign-sub/home-assistant-core) -9. 🗣 Commented on [#4896](https://github.com/MDAnalysis/mdanalysis/pull/4896#issuecomment-2603215796) in [MDAnalysis/mdanalysis](https://github.com/MDAnalysis/mdanalysis) -10. 🗣 Commented on [#3186](https://github.com/astropy/astroquery/pull/3186#issuecomment-2602839127) in [astropy/astroquery](https://github.com/astropy/astroquery) +1. 🗣 Commented on [#109](https://github.com/eastgenomics/athena/pull/109#issuecomment-2607436612) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +2. 🗣 Commented on [#355](https://github.com/Moonlark-Dev/Moonlark/pull/355#issuecomment-2607319976) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +3. 🗣 Commented on [#64](https://github.com/cdfxscrq/PyroGramUserBot/pull/64#issuecomment-2606529335) in [cdfxscrq/PyroGramUserBot](https://github.com/cdfxscrq/PyroGramUserBot) +4. 🗣 Commented on [#1](https://github.com/Kiraprint/ITMO_ICT_WebDevelopment_2024-2025/pull/1#issuecomment-2606513660) in [Kiraprint/ITMO_ICT_WebDevelopment_2024-2025](https://github.com/Kiraprint/ITMO_ICT_WebDevelopment_2024-2025) +5. 🗣 Commented on [#3139](https://github.com/metabrainz/listenbrainz-server/pull/3139#issuecomment-2606108004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#18](https://github.com/arfc/2025-dotson-dissertation/pull/18#issuecomment-2605728048) in [arfc/2025-dotson-dissertation](https://github.com/arfc/2025-dotson-dissertation) +7. 🗣 Commented on [#23524](https://github.com/spyder-ide/spyder/pull/23524#issuecomment-2605590400) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) +8. 🗣 Commented on [#1125](https://github.com/scilus/scilpy/pull/1125#issuecomment-2605487682) in [scilus/scilpy](https://github.com/scilus/scilpy) +9. 🗣 Commented on [#108](https://github.com/eastgenomics/athena/pull/108#issuecomment-2605085242) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +10. 🗣 Commented on [#1015](https://github.com/ToFuProject/tofu/pull/1015#issuecomment-2605045998) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) From 25398728d3c143b82a0f42c5bde5e0785a5b6bbc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 24 Jan 2025 00:49:49 +0000 Subject: [PATCH 2168/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ce38321f..fb2426da 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#109](https://github.com/eastgenomics/athena/pull/109#issuecomment-2607436612) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -2. 🗣 Commented on [#355](https://github.com/Moonlark-Dev/Moonlark/pull/355#issuecomment-2607319976) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -3. 🗣 Commented on [#64](https://github.com/cdfxscrq/PyroGramUserBot/pull/64#issuecomment-2606529335) in [cdfxscrq/PyroGramUserBot](https://github.com/cdfxscrq/PyroGramUserBot) -4. 🗣 Commented on [#1](https://github.com/Kiraprint/ITMO_ICT_WebDevelopment_2024-2025/pull/1#issuecomment-2606513660) in [Kiraprint/ITMO_ICT_WebDevelopment_2024-2025](https://github.com/Kiraprint/ITMO_ICT_WebDevelopment_2024-2025) -5. 🗣 Commented on [#3139](https://github.com/metabrainz/listenbrainz-server/pull/3139#issuecomment-2606108004) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#18](https://github.com/arfc/2025-dotson-dissertation/pull/18#issuecomment-2605728048) in [arfc/2025-dotson-dissertation](https://github.com/arfc/2025-dotson-dissertation) -7. 🗣 Commented on [#23524](https://github.com/spyder-ide/spyder/pull/23524#issuecomment-2605590400) in [spyder-ide/spyder](https://github.com/spyder-ide/spyder) -8. 🗣 Commented on [#1125](https://github.com/scilus/scilpy/pull/1125#issuecomment-2605487682) in [scilus/scilpy](https://github.com/scilus/scilpy) -9. 🗣 Commented on [#108](https://github.com/eastgenomics/athena/pull/108#issuecomment-2605085242) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -10. 🗣 Commented on [#1015](https://github.com/ToFuProject/tofu/pull/1015#issuecomment-2605045998) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +1. 🗣 Commented on [#1074](https://github.com/avaframe/AvaFrame/pull/1074#issuecomment-2609754573) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +2. 🗣 Commented on [#173](https://github.com/eastgenomics/trendyQC/pull/173#issuecomment-2609681710) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +3. 🗣 Commented on [#171](https://github.com/eastgenomics/trendyQC/pull/171#issuecomment-2609423146) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +4. 🗣 Commented on [#1](https://github.com/Code-Institute-Solutions/flask-sqlalchemy-task-manager/pull/1#issuecomment-2609404285) in [Code-Institute-Solutions/flask-sqlalchemy-task-manager](https://github.com/Code-Institute-Solutions/flask-sqlalchemy-task-manager) +5. 🗣 Commented on [#28](https://github.com/ERPGulf/zatca_erpgulf/pull/28#issuecomment-2609177420) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) +6. 🗣 Commented on [#1696](https://github.com/openSUSE/osc/pull/1696#issuecomment-2609133830) in [openSUSE/osc](https://github.com/openSUSE/osc) +7. 🗣 Commented on [#1154](https://github.com/oemof/oemof-solph/pull/1154#issuecomment-2608886824) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) +8. 🗣 Commented on [#752](https://github.com/HEXRD/hexrd/pull/752#issuecomment-2608657048) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) +9. 🗣 Commented on [#109](https://github.com/eastgenomics/athena/pull/109#issuecomment-2607436612) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +10. 🗣 Commented on [#355](https://github.com/Moonlark-Dev/Moonlark/pull/355#issuecomment-2607319976) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) From 3801ed5ce4c44e82cfc293a2ac0a75350bff9e3f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 25 Jan 2025 00:46:32 +0000 Subject: [PATCH 2169/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fb2426da..863d9024 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1074](https://github.com/avaframe/AvaFrame/pull/1074#issuecomment-2609754573) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -2. 🗣 Commented on [#173](https://github.com/eastgenomics/trendyQC/pull/173#issuecomment-2609681710) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -3. 🗣 Commented on [#171](https://github.com/eastgenomics/trendyQC/pull/171#issuecomment-2609423146) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -4. 🗣 Commented on [#1](https://github.com/Code-Institute-Solutions/flask-sqlalchemy-task-manager/pull/1#issuecomment-2609404285) in [Code-Institute-Solutions/flask-sqlalchemy-task-manager](https://github.com/Code-Institute-Solutions/flask-sqlalchemy-task-manager) -5. 🗣 Commented on [#28](https://github.com/ERPGulf/zatca_erpgulf/pull/28#issuecomment-2609177420) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) -6. 🗣 Commented on [#1696](https://github.com/openSUSE/osc/pull/1696#issuecomment-2609133830) in [openSUSE/osc](https://github.com/openSUSE/osc) -7. 🗣 Commented on [#1154](https://github.com/oemof/oemof-solph/pull/1154#issuecomment-2608886824) in [oemof/oemof-solph](https://github.com/oemof/oemof-solph) -8. 🗣 Commented on [#752](https://github.com/HEXRD/hexrd/pull/752#issuecomment-2608657048) in [HEXRD/hexrd](https://github.com/HEXRD/hexrd) -9. 🗣 Commented on [#109](https://github.com/eastgenomics/athena/pull/109#issuecomment-2607436612) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -10. 🗣 Commented on [#355](https://github.com/Moonlark-Dev/Moonlark/pull/355#issuecomment-2607319976) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +1. 🗣 Commented on [#29](https://github.com/ERPGulf/zatca_erpgulf/pull/29#issuecomment-2612037140) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) +2. 🗣 Commented on [#78](https://github.com/cirKITers/qml-essentials/pull/78#issuecomment-2611889491) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +3. 🗣 Commented on [#357](https://github.com/Moonlark-Dev/Moonlark/pull/357#issuecomment-2611678739) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +4. 🗣 Commented on [#3143](https://github.com/metabrainz/listenbrainz-server/pull/3143#issuecomment-2610320603) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#1075](https://github.com/avaframe/AvaFrame/pull/1075#issuecomment-2610071820) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +6. 🗣 Commented on [#1359](https://github.com/aimclub/FEDOT/pull/1359#issuecomment-2610014325) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) +7. 🗣 Commented on [#111](https://github.com/eastgenomics/athena/pull/111#issuecomment-2609991074) in [eastgenomics/athena](https://github.com/eastgenomics/athena) +8. 🗣 Commented on [#1074](https://github.com/avaframe/AvaFrame/pull/1074#issuecomment-2609754573) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#173](https://github.com/eastgenomics/trendyQC/pull/173#issuecomment-2609681710) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +10. 🗣 Commented on [#171](https://github.com/eastgenomics/trendyQC/pull/171#issuecomment-2609423146) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) From fa634c9e1168c22825e030aff409b230519861b6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 26 Jan 2025 00:51:28 +0000 Subject: [PATCH 2170/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 863d9024..e5d1cb54 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#29](https://github.com/ERPGulf/zatca_erpgulf/pull/29#issuecomment-2612037140) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) -2. 🗣 Commented on [#78](https://github.com/cirKITers/qml-essentials/pull/78#issuecomment-2611889491) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -3. 🗣 Commented on [#357](https://github.com/Moonlark-Dev/Moonlark/pull/357#issuecomment-2611678739) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -4. 🗣 Commented on [#3143](https://github.com/metabrainz/listenbrainz-server/pull/3143#issuecomment-2610320603) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#1075](https://github.com/avaframe/AvaFrame/pull/1075#issuecomment-2610071820) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -6. 🗣 Commented on [#1359](https://github.com/aimclub/FEDOT/pull/1359#issuecomment-2610014325) in [aimclub/FEDOT](https://github.com/aimclub/FEDOT) -7. 🗣 Commented on [#111](https://github.com/eastgenomics/athena/pull/111#issuecomment-2609991074) in [eastgenomics/athena](https://github.com/eastgenomics/athena) -8. 🗣 Commented on [#1074](https://github.com/avaframe/AvaFrame/pull/1074#issuecomment-2609754573) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#173](https://github.com/eastgenomics/trendyQC/pull/173#issuecomment-2609681710) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) -10. 🗣 Commented on [#171](https://github.com/eastgenomics/trendyQC/pull/171#issuecomment-2609423146) in [eastgenomics/trendyQC](https://github.com/eastgenomics/trendyQC) +1. 🗣 Commented on [#362](https://github.com/Moonlark-Dev/Moonlark/pull/362#issuecomment-2613839663) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +2. 🗣 Commented on [#361](https://github.com/Moonlark-Dev/Moonlark/pull/361#issuecomment-2613765513) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +3. 🗣 Commented on [#602](https://github.com/oemof/tespy/pull/602#issuecomment-2613392046) in [oemof/tespy](https://github.com/oemof/tespy) +4. 🗣 Commented on [#3148](https://github.com/metabrainz/listenbrainz-server/pull/3148#issuecomment-2613290630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#3147](https://github.com/metabrainz/listenbrainz-server/pull/3147#issuecomment-2612941697) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +6. 🗣 Commented on [#27](https://github.com/ITMO-NSS-team/Open-Source-Advisor/pull/27#issuecomment-2612344220) in [ITMO-NSS-team/Open-Source-Advisor](https://github.com/ITMO-NSS-team/Open-Source-Advisor) +7. 🗣 Commented on [#30](https://github.com/ERPGulf/zatca_erpgulf/pull/30#issuecomment-2612296288) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) +8. 🗣 Commented on [#29](https://github.com/ERPGulf/zatca_erpgulf/pull/29#issuecomment-2612037140) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) +9. 🗣 Commented on [#78](https://github.com/cirKITers/qml-essentials/pull/78#issuecomment-2611889491) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) +10. 🗣 Commented on [#357](https://github.com/Moonlark-Dev/Moonlark/pull/357#issuecomment-2611678739) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) From 935c318956c5bcbc863727fbd5217f9e6753cdf0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Jan 2025 00:51:16 +0000 Subject: [PATCH 2171/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e5d1cb54..62a26902 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#362](https://github.com/Moonlark-Dev/Moonlark/pull/362#issuecomment-2613839663) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -2. 🗣 Commented on [#361](https://github.com/Moonlark-Dev/Moonlark/pull/361#issuecomment-2613765513) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -3. 🗣 Commented on [#602](https://github.com/oemof/tespy/pull/602#issuecomment-2613392046) in [oemof/tespy](https://github.com/oemof/tespy) -4. 🗣 Commented on [#3148](https://github.com/metabrainz/listenbrainz-server/pull/3148#issuecomment-2613290630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#3147](https://github.com/metabrainz/listenbrainz-server/pull/3147#issuecomment-2612941697) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -6. 🗣 Commented on [#27](https://github.com/ITMO-NSS-team/Open-Source-Advisor/pull/27#issuecomment-2612344220) in [ITMO-NSS-team/Open-Source-Advisor](https://github.com/ITMO-NSS-team/Open-Source-Advisor) -7. 🗣 Commented on [#30](https://github.com/ERPGulf/zatca_erpgulf/pull/30#issuecomment-2612296288) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) -8. 🗣 Commented on [#29](https://github.com/ERPGulf/zatca_erpgulf/pull/29#issuecomment-2612037140) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) -9. 🗣 Commented on [#78](https://github.com/cirKITers/qml-essentials/pull/78#issuecomment-2611889491) in [cirKITers/qml-essentials](https://github.com/cirKITers/qml-essentials) -10. 🗣 Commented on [#357](https://github.com/Moonlark-Dev/Moonlark/pull/357#issuecomment-2611678739) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +1. 🗣 Commented on [#1](https://github.com/2lambda123/eclipse-syson-syson/pull/1#issuecomment-2614490897) in [2lambda123/eclipse-syson-syson](https://github.com/2lambda123/eclipse-syson-syson) +2. 🗣 Commented on [#3149](https://github.com/metabrainz/listenbrainz-server/pull/3149#issuecomment-2614262275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +3. 🗣 Commented on [#362](https://github.com/Moonlark-Dev/Moonlark/pull/362#issuecomment-2613839663) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +4. 🗣 Commented on [#361](https://github.com/Moonlark-Dev/Moonlark/pull/361#issuecomment-2613765513) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +5. 🗣 Commented on [#602](https://github.com/oemof/tespy/pull/602#issuecomment-2613392046) in [oemof/tespy](https://github.com/oemof/tespy) +6. 🗣 Commented on [#3148](https://github.com/metabrainz/listenbrainz-server/pull/3148#issuecomment-2613290630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#3147](https://github.com/metabrainz/listenbrainz-server/pull/3147#issuecomment-2612941697) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +8. 🗣 Commented on [#27](https://github.com/ITMO-NSS-team/Open-Source-Advisor/pull/27#issuecomment-2612344220) in [ITMO-NSS-team/Open-Source-Advisor](https://github.com/ITMO-NSS-team/Open-Source-Advisor) +9. 🗣 Commented on [#30](https://github.com/ERPGulf/zatca_erpgulf/pull/30#issuecomment-2612296288) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) +10. 🗣 Commented on [#29](https://github.com/ERPGulf/zatca_erpgulf/pull/29#issuecomment-2612037140) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) From 9c18f43d2706cbda135ac5cce7cec6853363a8e6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Jan 2025 00:50:04 +0000 Subject: [PATCH 2172/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 62a26902..53176c5c 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1](https://github.com/2lambda123/eclipse-syson-syson/pull/1#issuecomment-2614490897) in [2lambda123/eclipse-syson-syson](https://github.com/2lambda123/eclipse-syson-syson) -2. 🗣 Commented on [#3149](https://github.com/metabrainz/listenbrainz-server/pull/3149#issuecomment-2614262275) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -3. 🗣 Commented on [#362](https://github.com/Moonlark-Dev/Moonlark/pull/362#issuecomment-2613839663) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -4. 🗣 Commented on [#361](https://github.com/Moonlark-Dev/Moonlark/pull/361#issuecomment-2613765513) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -5. 🗣 Commented on [#602](https://github.com/oemof/tespy/pull/602#issuecomment-2613392046) in [oemof/tespy](https://github.com/oemof/tespy) -6. 🗣 Commented on [#3148](https://github.com/metabrainz/listenbrainz-server/pull/3148#issuecomment-2613290630) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -7. 🗣 Commented on [#3147](https://github.com/metabrainz/listenbrainz-server/pull/3147#issuecomment-2612941697) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -8. 🗣 Commented on [#27](https://github.com/ITMO-NSS-team/Open-Source-Advisor/pull/27#issuecomment-2612344220) in [ITMO-NSS-team/Open-Source-Advisor](https://github.com/ITMO-NSS-team/Open-Source-Advisor) -9. 🗣 Commented on [#30](https://github.com/ERPGulf/zatca_erpgulf/pull/30#issuecomment-2612296288) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) -10. 🗣 Commented on [#29](https://github.com/ERPGulf/zatca_erpgulf/pull/29#issuecomment-2612037140) in [ERPGulf/zatca_erpgulf](https://github.com/ERPGulf/zatca_erpgulf) +1. 🗣 Commented on [#1132](https://github.com/scilus/scilpy/pull/1132#issuecomment-2616654081) in [scilus/scilpy](https://github.com/scilus/scilpy) +2. 🗣 Commented on [#9493](https://github.com/statsmodels/statsmodels/pull/9493#issuecomment-2616645465) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +3. 🗣 Commented on [#1018](https://github.com/ToFuProject/tofu/pull/1018#issuecomment-2616523281) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +4. 🗣 Commented on [#3152](https://github.com/metabrainz/listenbrainz-server/pull/3152#issuecomment-2616347427) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +5. 🗣 Commented on [#8](https://github.com/This-is-XiaoDeng/nonebot-plugin-maimai-qrhelper/pull/8#issuecomment-2616092074) in [This-is-XiaoDeng/nonebot-plugin-maimai-qrhelper](https://github.com/This-is-XiaoDeng/nonebot-plugin-maimai-qrhelper) +6. 🗣 Commented on [#10](https://github.com/ERPGulf/myinvois/pull/10#issuecomment-2615479217) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) +7. 🗣 Commented on [#1](https://github.com/Code-Institute-Solutions/streamlit-lesson/pull/1#issuecomment-2615385069) in [Code-Institute-Solutions/streamlit-lesson](https://github.com/Code-Institute-Solutions/streamlit-lesson) +8. 🗣 Commented on [#1077](https://github.com/avaframe/AvaFrame/pull/1077#issuecomment-2615376308) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) +9. 🗣 Commented on [#364](https://github.com/Moonlark-Dev/Moonlark/pull/364#issuecomment-2615136785) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) +10. 🗣 Commented on [#528](https://github.com/Spoken-tutorial/spoken-website/pull/528#issuecomment-2615065989) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) From 02175f345cb4e9656398ddc9e475b75328fc143d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Jan 2025 00:50:01 +0000 Subject: [PATCH 2173/2173] :zap: Update README with the recent activity --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 53176c5c..4cbb3375 100644 --- a/README.md +++ b/README.md @@ -240,14 +240,14 @@ If you use this project and you like it, [please let me know](https://saythanks. -1. 🗣 Commented on [#1132](https://github.com/scilus/scilpy/pull/1132#issuecomment-2616654081) in [scilus/scilpy](https://github.com/scilus/scilpy) -2. 🗣 Commented on [#9493](https://github.com/statsmodels/statsmodels/pull/9493#issuecomment-2616645465) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) -3. 🗣 Commented on [#1018](https://github.com/ToFuProject/tofu/pull/1018#issuecomment-2616523281) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) -4. 🗣 Commented on [#3152](https://github.com/metabrainz/listenbrainz-server/pull/3152#issuecomment-2616347427) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) -5. 🗣 Commented on [#8](https://github.com/This-is-XiaoDeng/nonebot-plugin-maimai-qrhelper/pull/8#issuecomment-2616092074) in [This-is-XiaoDeng/nonebot-plugin-maimai-qrhelper](https://github.com/This-is-XiaoDeng/nonebot-plugin-maimai-qrhelper) -6. 🗣 Commented on [#10](https://github.com/ERPGulf/myinvois/pull/10#issuecomment-2615479217) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) -7. 🗣 Commented on [#1](https://github.com/Code-Institute-Solutions/streamlit-lesson/pull/1#issuecomment-2615385069) in [Code-Institute-Solutions/streamlit-lesson](https://github.com/Code-Institute-Solutions/streamlit-lesson) -8. 🗣 Commented on [#1077](https://github.com/avaframe/AvaFrame/pull/1077#issuecomment-2615376308) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame) -9. 🗣 Commented on [#364](https://github.com/Moonlark-Dev/Moonlark/pull/364#issuecomment-2615136785) in [Moonlark-Dev/Moonlark](https://github.com/Moonlark-Dev/Moonlark) -10. 🗣 Commented on [#528](https://github.com/Spoken-tutorial/spoken-website/pull/528#issuecomment-2615065989) in [Spoken-tutorial/spoken-website](https://github.com/Spoken-tutorial/spoken-website) +1. 🗣 Commented on [#553](https://github.com/payu-org/payu/pull/553#issuecomment-2617224952) in [payu-org/payu](https://github.com/payu-org/payu) +2. 🗣 Commented on [#2200](https://github.com/rpm-software-management/dnf/pull/2200#issuecomment-2617011647) in [rpm-software-management/dnf](https://github.com/rpm-software-management/dnf) +3. 🗣 Commented on [#1132](https://github.com/scilus/scilpy/pull/1132#issuecomment-2616654081) in [scilus/scilpy](https://github.com/scilus/scilpy) +4. 🗣 Commented on [#9493](https://github.com/statsmodels/statsmodels/pull/9493#issuecomment-2616645465) in [statsmodels/statsmodels](https://github.com/statsmodels/statsmodels) +5. 🗣 Commented on [#1018](https://github.com/ToFuProject/tofu/pull/1018#issuecomment-2616523281) in [ToFuProject/tofu](https://github.com/ToFuProject/tofu) +6. 🗣 Commented on [#3152](https://github.com/metabrainz/listenbrainz-server/pull/3152#issuecomment-2616347427) in [metabrainz/listenbrainz-server](https://github.com/metabrainz/listenbrainz-server) +7. 🗣 Commented on [#8](https://github.com/This-is-XiaoDeng/nonebot-plugin-maimai-qrhelper/pull/8#issuecomment-2616092074) in [This-is-XiaoDeng/nonebot-plugin-maimai-qrhelper](https://github.com/This-is-XiaoDeng/nonebot-plugin-maimai-qrhelper) +8. 🗣 Commented on [#10](https://github.com/ERPGulf/myinvois/pull/10#issuecomment-2615479217) in [ERPGulf/myinvois](https://github.com/ERPGulf/myinvois) +9. 🗣 Commented on [#1](https://github.com/Code-Institute-Solutions/streamlit-lesson/pull/1#issuecomment-2615385069) in [Code-Institute-Solutions/streamlit-lesson](https://github.com/Code-Institute-Solutions/streamlit-lesson) +10. 🗣 Commented on [#1077](https://github.com/avaframe/AvaFrame/pull/1077#issuecomment-2615376308) in [avaframe/AvaFrame](https://github.com/avaframe/AvaFrame)