title stringlengths 2 169 | diff stringlengths 235 19.5k | body stringlengths 0 30.5k | url stringlengths 48 84 | created_at stringlengths 20 20 | closed_at stringlengths 20 20 | merged_at stringlengths 20 20 | updated_at stringlengths 20 20 | diff_len float64 101 3.99k | repo_name stringclasses 83
values | __index_level_0__ int64 15 52.7k |
|---|---|---|---|---|---|---|---|---|---|---|
Enable ruff N999 rule | diff --git a/DIRECTORY.md b/DIRECTORY.md
index 01667c9feee8..f6d6cb463faa 100644
--- a/DIRECTORY.md
+++ b/DIRECTORY.md
@@ -351,7 +351,7 @@
* [Longest Common Subsequence](dynamic_programming/longest_common_subsequence.py)
* [Longest Common Substring](dynamic_programming/longest_common_substring.py)
* [Longest I... | ### Describe your change:
Enable ruff `N999` rule
* [ ] Add an algorithm?
* [x] Fix a bug or typo in an existing algorithm?
* [ ] Add or change doctests? -- Note: Please avoid changing both code and tests in a single pull request.
* [ ] Documentation change?
### Checklist:
* [x] I have read [CONTRIBUTING.m... | https://api.github.com/repos/TheAlgorithms/Python/pulls/11331 | 2024-03-25T21:20:10Z | 2024-03-28T17:26:41Z | 2024-03-28T17:26:41Z | 2024-03-28T17:27:39Z | 1,042 | TheAlgorithms/Python | 30,216 |
fix state value extract for issues/1067 | diff --git a/metagpt/utils/repair_llm_raw_output.py b/metagpt/utils/repair_llm_raw_output.py
index b8756e8c6..17e095c5f 100644
--- a/metagpt/utils/repair_llm_raw_output.py
+++ b/metagpt/utils/repair_llm_raw_output.py
@@ -340,7 +340,9 @@ def extract_state_value_from_output(content: str) -> str:
content (str): l... |
**Features**
<!-- Clear and direct description of the submit features. -->
<!-- If it's a bug fix, please also paste the issue link. -->
- fix state value extract for issues/1067
**Feature Docs**
<!-- The RFC, tutorial, or use cases about the feature if it's a pretty big update. If not, there is no need ... | https://api.github.com/repos/geekan/MetaGPT/pulls/1069 | 2024-03-21T13:59:09Z | 2024-03-21T14:01:30Z | 2024-03-21T14:01:29Z | 2024-03-21T14:01:30Z | 250 | geekan/MetaGPT | 16,996 |
Add `tensorrt>=7.0.0` checks | diff --git a/export.py b/export.py
index 6cf1db2c45b..a0cb5fdc567 100644
--- a/export.py
+++ b/export.py
@@ -61,8 +61,8 @@
from models.yolo import Detect
from utils.activations import SiLU
from utils.datasets import LoadImages
-from utils.general import (LOGGER, check_dataset, check_img_size, check_requirements, col... |
## 🛠️ PR Summary
<sub>Made with ❤️ by [Ultralytics Actions](https://github.com/ultralytics/actions)<sub>
### 🌟 Summary
Upgraded TensorRT version compatibility and cleaned up export conditions.
### 📊 Key Changes
- Introduced a new utility function `check_version` to enforce version requirements.
- Simplified ONN... | https://api.github.com/repos/ultralytics/yolov5/pulls/6193 | 2022-01-04T21:22:36Z | 2022-01-04T21:39:13Z | 2022-01-04T21:39:13Z | 2024-01-19T13:39:50Z | 749 | ultralytics/yolov5 | 25,352 |
Option to make images generated from a given manual seed consistent across CUDA and MPS devices | diff --git a/modules/devices.py b/modules/devices.py
index 52c3e7cd773..3bc86a6a9d1 100644
--- a/modules/devices.py
+++ b/modules/devices.py
@@ -92,14 +92,18 @@ def cond_cast_float(input):
def randn(seed, shape):
+ from modules.shared import opts
+
torch.manual_seed(seed)
- if device.type == 'mps':
+ ... | **Describe what this pull request is trying to achieve.**
Implements an option that, when enabled, causes a given manual seed to generate identical or very similar images across both CUDA and MPS devices.
Fixes https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/9613
**Additional notes and descripti... | https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/9734 | 2023-04-19T05:48:02Z | 2023-04-29T08:16:06Z | 2023-04-29T08:16:06Z | 2023-04-29T08:16:06Z | 777 | AUTOMATIC1111/stable-diffusion-webui | 39,810 |
modules/api/api.py: add api endpoint to refresh embeddings list | diff --git a/modules/api/api.py b/modules/api/api.py
index b3d74e513a3..b6bb9d06ab1 100644
--- a/modules/api/api.py
+++ b/modules/api/api.py
@@ -230,6 +230,7 @@ def __init__(self, app: FastAPI, queue_lock: Lock):
self.add_api_route("/sdapi/v1/realesrgan-models", self.get_realesrgan_models, methods=["GET"], res... | ## Description
This PR adds a simple API endpoint to refresh/reload the loaded embeddings.
Its useful when using automatic1111 without wanting to disrupt it when adding new files via the filesystem.
Resolves #13994
## Checklist:
- [X] I have read [contributing wiki page](https://github.com/AUTOMATIC1111/s... | https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/14715 | 2024-01-21T13:13:12Z | 2024-01-23T19:35:41Z | 2024-01-23T19:35:41Z | 2024-01-23T19:37:38Z | 364 | AUTOMATIC1111/stable-diffusion-webui | 39,696 |
is should not be used for comparing numbers | diff --git a/requests/models.py b/requests/models.py
index 6ed2b59946..2850950e86 100644
--- a/requests/models.py
+++ b/requests/models.py
@@ -575,7 +575,7 @@ def content(self):
raise RuntimeError(
'The content for this response was already consumed')
- if ... | https://api.github.com/repos/psf/requests/pulls/1276 | 2013-04-01T06:20:50Z | 2013-04-02T03:42:23Z | 2013-04-02T03:42:23Z | 2023-05-23T23:14:22Z | 126 | psf/requests | 32,811 | |
[mypy] Fix web_programming directory | diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index f544c02b1c35..76c6357fe0ca 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -23,7 +23,7 @@ jobs:
python -m pip install mypy pytest-cov -r requirements.txt
# FIXME: #4052 fix mypy errors in the exc... | A subtask of #4052
### **Describe your change:**
* [ ] Add an algorithm?
* [x] Fix a bug or typo in an existing algorithm?
* [ ] Documentation change?
### **Checklist:**
* [x] I have read [CONTRIBUTING.md](https://github.com/TheAlgorithms/Python/blob/master/CONTRIBUTING.md).
* [x] This pull request is ... | https://api.github.com/repos/TheAlgorithms/Python/pulls/4297 | 2021-03-28T01:58:51Z | 2021-03-31T03:18:07Z | 2021-03-31T03:18:07Z | 2021-03-31T05:21:08Z | 957 | TheAlgorithms/Python | 29,593 |
add custom tool example | diff --git a/examples/di/custom_tool.py b/examples/di/custom_tool.py
new file mode 100644
index 000000000..cbe7380c7
--- /dev/null
+++ b/examples/di/custom_tool.py
@@ -0,0 +1,36 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+"""
+@Time : 2024/3/22 10:54
+@Author : alexanderwu
+@File : custom_tool.py
+"""
+
... | **Features**
<!-- Clear and direct description of the submit features. -->
<!-- If it's a bug fix, please also paste the issue link. -->
- add a example of DataInterpreter for using custom tool.
**Feature Docs**
<!-- The RFC, tutorial, or use cases about the feature if it's a pretty big update. If not, the... | https://api.github.com/repos/geekan/MetaGPT/pulls/1071 | 2024-03-22T03:01:16Z | 2024-03-22T03:20:04Z | 2024-03-22T03:20:04Z | 2024-03-22T03:20:04Z | 307 | geekan/MetaGPT | 16,778 |
ui: Always display Wi-Fi list when navigating to Network panel | diff --git a/selfdrive/ui/qt/network/networking.cc b/selfdrive/ui/qt/network/networking.cc
index 98ecc90fe33466..090b9b578c4a9d 100644
--- a/selfdrive/ui/qt/network/networking.cc
+++ b/selfdrive/ui/qt/network/networking.cc
@@ -105,6 +105,7 @@ void Networking::showEvent(QShowEvent *event) {
}
void Networking::hideEv... | Currently, the "Advanced" panel remains displayed in the `Network` panel when we navigate back from it after exiting the settings or navigating to another panel.
We reset the `Network` panel to the Wi-Fi list when the "Advanced" panel under `Network` is opened and:
- Exiting the settings menu
- Navigating to anoth... | https://api.github.com/repos/commaai/openpilot/pulls/30333 | 2023-10-26T02:46:58Z | 2023-10-29T17:06:35Z | 2023-10-29T17:06:35Z | 2023-10-29T17:12:05Z | 122 | commaai/openpilot | 9,603 |
add warnings and clarity to config documentation | diff --git a/docs/using.rst b/docs/using.rst
index aae8efbf2fb..87d56df608d 100644
--- a/docs/using.rst
+++ b/docs/using.rst
@@ -538,8 +538,15 @@ commands into your individual environment.
Modifying the Renewal Configuration File
----------------------------------------
+When a certificate is issued, by default Cer... | In progress PR for #4152 | https://api.github.com/repos/certbot/certbot/pulls/4991 | 2017-08-03T23:13:24Z | 2017-08-21T19:30:04Z | 2017-08-21T19:30:04Z | 2017-08-21T19:30:07Z | 591 | certbot/certbot | 1,885 |
hitbtc v3: add safeTrade | diff --git a/js/hitbtc3.js b/js/hitbtc3.js
index dc00ac229371..706fbb153856 100644
--- a/js/hitbtc3.js
+++ b/js/hitbtc3.js
@@ -738,52 +738,61 @@ module.exports = class hitbtc3 extends Exchange {
}
parseTrade (trade, market = undefined) {
- // createMarketOrder
//
- // { fee: "0... | https://api.github.com/repos/ccxt/ccxt/pulls/11657 | 2022-01-25T20:30:41Z | 2022-01-25T21:18:48Z | 2022-01-25T21:18:48Z | 2022-04-22T13:54:18Z | 1,261 | ccxt/ccxt | 13,597 | |
[Bot] Synchronize Submodule References | diff --git a/examples b/examples
index 3d902cbb8440..10ddf8a1767c 160000
--- a/examples
+++ b/examples
@@ -1 +1 @@
-Subproject commit 3d902cbb8440c7fd733672503d7a62caab707ebc
+Subproject commit 10ddf8a1767c54515f01672b53a78a276415c7d5
diff --git a/inference b/inference
index 1ee7074afa97..fa363d3c567a 160000
--- a/infe... | Automated PR to update submodule commits | https://api.github.com/repos/hpcaitech/ColossalAI/pulls/1159 | 2022-06-23T00:01:32Z | 2022-06-29T07:11:36Z | 2022-06-29T07:11:36Z | 2022-06-29T07:11:36Z | 203 | hpcaitech/ColossalAI | 11,513 |
Fix print_json indent type | diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6a0e3e518..eb6b62623 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix syntax lexer guessing.
- Fixed Pretty measure not respecting expand_all https://github.com/Textualiz... | ## Type of changes
Closes #2028
- [x] Bug fix
- [ ] New feature
- [ ] Documentation / docstrings
- [ ] Tests
- [ ] Other
## Checklist
- [x] I've run the latest [black](https://github.com/psf/black) with default args on new code.
- [x] I've updated CHANGELOG.md and CONTRIBUTORS.md where appropriate.
- ... | https://api.github.com/repos/Textualize/rich/pulls/2029 | 2022-03-07T00:56:32Z | 2022-03-07T11:19:50Z | 2022-03-07T11:19:49Z | 2022-03-08T00:30:37Z | 530 | Textualize/rich | 48,588 |
fix(grouping): Shorten tag keys | diff --git a/src/sentry/eventstore/models.py b/src/sentry/eventstore/models.py
index e63fa74008a55..a9ffeab94d2c5 100644
--- a/src/sentry/eventstore/models.py
+++ b/src/sentry/eventstore/models.py
@@ -373,11 +373,9 @@ def get_hashes(self, force_config=None) -> CalculatedHashes:
)
if flat_hashes:
- ... | Those keys are currently getting truncated as our maximum character
count is 32 | https://api.github.com/repos/getsentry/sentry/pulls/29878 | 2021-11-09T16:00:54Z | 2021-11-10T09:37:41Z | 2021-11-10T09:37:41Z | 2021-11-25T12:00:59Z | 226 | getsentry/sentry | 44,412 |
Stops the generation immediately when using the "Maximum number of tokens/second" setting | diff --git a/modules/text_generation.py b/modules/text_generation.py
index a3755c10a7..db897e66b4 100644
--- a/modules/text_generation.py
+++ b/modules/text_generation.py
@@ -96,7 +96,7 @@ def _generate_reply(question, state, stopping_strings=None, is_chat=False, escap
last_update = cur_time
... | Hello,
When using the "Maximum number of tokens/second" setting, if you start to generate and then press the "Stop" button, it doesn't really stop immediately, it's due to the fact that it's waiting for the whole generation (the one with the full speed) to display all its tokens.
This simple code fixes that and m... | https://api.github.com/repos/oobabooga/text-generation-webui/pulls/3952 | 2023-09-16T07:32:05Z | 2023-09-18T17:27:07Z | 2023-09-18T17:27:07Z | 2023-09-18T17:27:07Z | 124 | oobabooga/text-generation-webui | 26,748 |
adds Mastodon instances and pr0gramm.com | diff --git a/data.json b/data.json
index 30094af9e..d44ede84c 100644
--- a/data.json
+++ b/data.json
@@ -327,6 +327,14 @@
"urlMain": "https://www.championat.com/",
"username_claimed": "blue",
"username_unclaimed": "noonewouldeverusethis7"
+ },
+ "chaos.social": {
+ "errorType": "status_code",... | Adds some popular mastodon instances (chaos.social, mastodon.social, mastodon.xyz, pawoo.net, social.tchncs.de) and changes the existing 'Mastodon' instance to its own name 'mstdn.io", because mstdn.io is not the whole mastodon fediverse. Also adds imageboard pr0gramm.com | https://api.github.com/repos/sherlock-project/sherlock/pulls/521 | 2020-01-14T08:08:55Z | 2020-01-16T14:14:58Z | 2020-01-16T14:14:58Z | 2020-01-16T14:14:59Z | 1,032 | sherlock-project/sherlock | 36,654 |
Add install docs for openSUSE | diff --git a/docs/install.rst b/docs/install.rst
index cf93cc58ea..b37d9c9153 100644
--- a/docs/install.rst
+++ b/docs/install.rst
@@ -110,6 +110,20 @@ libraries. This was tested on a fully patched installation of Fedora 24.
Make sure to have an up-to-date version of pip by running ``pip3 install -U pip``.
+.. _in... | My main VM happily runs on Tumbleweed for a while now, so I can maintain this. | https://api.github.com/repos/mitmproxy/mitmproxy/pulls/2124 | 2017-03-08T16:43:03Z | 2017-03-08T19:06:35Z | 2017-03-08T19:06:35Z | 2017-03-08T19:06:38Z | 244 | mitmproxy/mitmproxy | 28,211 |
Add Pearson dictionary API | diff --git a/README.md b/README.md
index 32fe32960f..899c36e9ef 100644
--- a/README.md
+++ b/README.md
@@ -173,6 +173,7 @@ For information on contributing to this project, please see the [contributing gu
| Open Government, USA | United States Government Open Data | No |[Go!](https://www.data.gov/) |
| Open Government... | [Pearson | Dictionary Data API](http://developer.pearson.com/apis/dictionaries)
| https://api.github.com/repos/public-apis/public-apis/pulls/261 | 2017-01-06T06:14:14Z | 2017-01-06T09:28:42Z | 2017-01-06T09:28:42Z | 2017-01-06T09:28:42Z | 254 | public-apis/public-apis | 36,059 |
[Doctests] Make TFRoberta-like meaningfull | diff --git a/src/transformers/models/roberta/modeling_tf_roberta.py b/src/transformers/models/roberta/modeling_tf_roberta.py
index 4ae381451c5fb..bbdf7ebf33011 100644
--- a/src/transformers/models/roberta/modeling_tf_roberta.py
+++ b/src/transformers/models/roberta/modeling_tf_roberta.py
@@ -1076,6 +1076,9 @@ def get_p... | # What does this PR do?
Similar to #16363, but for TF
I made sure the doctests run without failure, but 2 models currently use `from_pt=True` --> need to convert and upload the TF ckpts.
@patrickvonplaten | https://api.github.com/repos/huggingface/transformers/pulls/16370 | 2022-03-23T19:20:37Z | 2022-03-24T09:26:28Z | 2022-03-24T09:26:28Z | 2022-05-05T10:30:09Z | 2,176 | huggingface/transformers | 12,498 |
MAINT adding Yao Xiao in the core contributor | diff --git a/doc/authors.rst b/doc/authors.rst
index ddad9803ee8ab..0ba69d8afa60d 100644
--- a/doc/authors.rst
+++ b/doc/authors.rst
@@ -98,6 +98,10 @@
<p>Nelle Varoquaux</p>
</div>
<div>
+ <a href='https://github.com/Charlie-XIAO'><img src='https://avatars.githubusercontent.com/u/108576690?v=4' class... | Follow-up of the announcement of adding @Charlie-XIAO as a core contributor.
@Charlie-XIAO I added you the maintainer team and as well to the documentation one to acknowledge the work to redesign of the webpage with the switch to pydata-sphinx-theme.
I checked the rendering and everything looked OK locally. | https://api.github.com/repos/scikit-learn/scikit-learn/pulls/28463 | 2024-02-19T07:51:28Z | 2024-02-19T09:20:31Z | 2024-02-19T09:20:31Z | 2024-02-19T09:26:38Z | 545 | scikit-learn/scikit-learn | 46,620 |
2021 Camry fw | diff --git a/selfdrive/car/toyota/values.py b/selfdrive/car/toyota/values.py
index d989b750cd9476..211b61133d8d1d 100644
--- a/selfdrive/car/toyota/values.py
+++ b/selfdrive/car/toyota/values.py
@@ -471,10 +471,12 @@ class CAR:
b'8965B33630\x00\x00\x00\x00\x00\x00',
],
(Ecu.esp, 0x7b0, None): [
+ ... | https://api.github.com/repos/commaai/openpilot/pulls/20110 | 2021-02-18T19:56:31Z | 2021-02-18T20:11:51Z | 2021-02-18T20:11:51Z | 2021-02-18T20:11:52Z | 258 | commaai/openpilot | 9,572 | |
Update dataset_traversal.py | diff --git a/ppocr/data/rec/dataset_traversal.py b/ppocr/data/rec/dataset_traversal.py
index 5efba512c0..ebee624ab7 100755
--- a/ppocr/data/rec/dataset_traversal.py
+++ b/ppocr/data/rec/dataset_traversal.py
@@ -237,7 +237,7 @@ def __call__(self, process_id):
def get_device_num():
if self.use_gpu... | CUDA_VISIBLE_DEVICES 默认值必须为str, 否则split会报错 | https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/557 | 2020-08-18T07:09:58Z | 2020-08-19T05:52:24Z | 2020-08-19T05:52:24Z | 2020-08-19T05:52:24Z | 149 | PaddlePaddle/PaddleOCR | 41,780 |
Added json.dumps parameters | diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5c8f4baa1..7e0012015 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,11 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic... | Closes https://github.com/willmcgugan/rich/issues/1638 | https://api.github.com/repos/Textualize/rich/pulls/1644 | 2021-11-05T10:55:40Z | 2021-11-05T11:13:51Z | 2021-11-05T11:13:51Z | 2021-11-05T11:13:54Z | 2,812 | Textualize/rich | 48,397 |
Rename --renew-by-default to --force-renewal | diff --git a/docs/using.rst b/docs/using.rst
index ebc3ef6acb4..9ee16dffd22 100644
--- a/docs/using.rst
+++ b/docs/using.rst
@@ -167,18 +167,19 @@ interested, you can also :ref:`write your own plugin <dev-plugin>`.
Renewal
=======
-.. note:: Let's Encrypt CA issues short lived certificates (90
+.. note:: Let's Encr... | https://api.github.com/repos/certbot/certbot/pulls/2278 | 2016-01-26T01:18:07Z | 2016-02-10T00:37:12Z | 2016-02-10T00:37:12Z | 2016-05-06T19:22:16Z | 833 | certbot/certbot | 2,580 | |
Correct purpose of "When is this MAC address used" | diff --git a/README.md b/README.md
index af63d356a..85dca4ce0 100644
--- a/README.md
+++ b/README.md
@@ -116,7 +116,7 @@ Packets that are sent on the ethernet are always coming from a MAC address and s
<details>
<summary>When is this MAC address used?: ff:ff:ff:ff:ff:ff</summary><br><b>
-When a device sends a packe... | Second sentence was a tautology in fact, without disclosing the purpose of use. | https://api.github.com/repos/bregman-arie/devops-exercises/pulls/179 | 2021-11-16T10:14:20Z | 2021-11-16T13:42:01Z | 2021-11-16T13:42:01Z | 2021-11-16T13:42:01Z | 226 | bregman-arie/devops-exercises | 17,434 |
Minor filename correction in graphs folder | diff --git a/graphs/graph.py b/graphs/graph.py
deleted file mode 100644
index 0c981c39d320..000000000000
--- a/graphs/graph.py
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/usr/bin/python
-# encoding=utf8
-
-from __future__ import print_function
-# Author: OMKAR PATHAK
-
-# We can use Python's dictionary for constructing the grap... | Removed the (incorrectly named) redundant file graph_list.py and renamed graph.py to graph_list.py | https://api.github.com/repos/TheAlgorithms/Python/pulls/820 | 2019-05-18T15:14:54Z | 2019-05-21T06:06:06Z | 2019-05-21T06:06:06Z | 2019-05-21T06:06:06Z | 1,043 | TheAlgorithms/Python | 29,942 |
Updated RijksMuseum Doc Link | diff --git a/README.md b/README.md
index b2fcab633e..f07a0a8940 100644
--- a/README.md
+++ b/README.md
@@ -193,7 +193,7 @@ API | Description | Auth | HTTPS | CORS |
| [Noun Project](http://api.thenounproject.com/index.html) | Icons | `OAuth` | No | Unknown |
| [PHP-Noise](https://php-noise.com/) | Noise Background Im... | The previous link was redirected to the website of the museum. Which had no documentation or reference to the APIs.
<!-- Thank you for taking the time to work on a Pull Request for this project! -->
<!-- To ensure your PR is dealt with swiftly please check the following: -->
- [x] My submission is formatted accord... | https://api.github.com/repos/public-apis/public-apis/pulls/2782 | 2021-10-29T08:48:08Z | 2021-10-30T00:20:32Z | 2021-10-30T00:20:32Z | 2021-10-30T00:20:32Z | 249 | public-apis/public-apis | 35,283 |
Improve package import compatibility | diff --git a/paddleocr.py b/paddleocr.py
index af0145b48b..ba707d6651 100644
--- a/paddleocr.py
+++ b/paddleocr.py
@@ -27,9 +27,17 @@
import numpy as np
from pathlib import Path
-tools = importlib.import_module('.', 'tools')
-ppocr = importlib.import_module('.', 'ppocr')
-ppstructure = importlib.import_module('.', ... | This update is to fix PaddleOCR package import compatibility issue.
For instance, at moment, user cannot import both paddleocr & detectron2 at same time due to conflicting importing issues.
With this enhancement, paddleocr can be successfully imported along side with detectron2. | https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/10052 | 2023-05-29T09:02:41Z | 2023-05-29T10:34:48Z | 2023-05-29T10:34:48Z | 2023-05-31T04:23:52Z | 258 | PaddlePaddle/PaddleOCR | 42,531 |
Removes duplicate code block | diff --git a/docs/helm-chart/manage-dags-files.rst b/docs/helm-chart/manage-dags-files.rst
index a30d79ec8a04a..eab9c2eac3346 100644
--- a/docs/helm-chart/manage-dags-files.rst
+++ b/docs/helm-chart/manage-dags-files.rst
@@ -88,15 +88,6 @@ seconds. The other pods will read the synced DAGs. Not all volume plugins have s... | There's are two code blocks with identical text in the helm-chart docs. This commit removes one of them.
<!--
Thank you for contributing! Please make sure that your code changes
are covered with tests. And in case of new features or big changes
remember to adjust the documentation.
Feel free to ping committers... | https://api.github.com/repos/apache/airflow/pulls/23952 | 2022-05-26T23:53:46Z | 2022-05-27T01:56:32Z | 2022-05-27T01:56:32Z | 2022-08-05T23:22:37Z | 244 | apache/airflow | 14,484 |
example for binance margin sell | diff --git a/examples/js/margin-borrow-buy-sell-repay-example.js b/examples/js/margin-borrow-buy-sell-repay-example.js
new file mode 100644
index 000000000000..6644c93c0542
--- /dev/null
+++ b/examples/js/margin-borrow-buy-sell-repay-example.js
@@ -0,0 +1,53 @@
+'use strict';
+const ccxt = require ('../../ccxt.js');
+
... | fix #14825
(ideally, if another PR, which transpiles examples, will be merged, then this example will be transpiled into multiple langs) | https://api.github.com/repos/ccxt/ccxt/pulls/14843 | 2022-09-01T13:50:32Z | 2022-09-02T18:17:24Z | 2022-09-02T18:17:24Z | 2022-09-02T21:29:31Z | 846 | ccxt/ccxt | 13,850 |
Added random task and moved other tasks to /tasks/all | diff --git a/website/src/components/Dashboard/TaskOption.tsx b/website/src/components/Dashboard/TaskOption.tsx
index 1c070e1708..43bcabeaab 100644
--- a/website/src/components/Dashboard/TaskOption.tsx
+++ b/website/src/components/Dashboard/TaskOption.tsx
@@ -1,11 +1,9 @@
import { Box, Flex, GridItem, Heading, SimpleGr... | https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/621 | 2023-01-11T09:32:37Z | 2023-01-11T09:41:54Z | 2023-01-11T09:41:54Z | 2023-01-11T15:23:07Z | 1,433 | LAION-AI/Open-Assistant | 37,701 | |
commands: verify command function signatures before call | diff --git a/mitmproxy/command.py b/mitmproxy/command.py
index c9776bc325..eae3d80cb2 100644
--- a/mitmproxy/command.py
+++ b/mitmproxy/command.py
@@ -190,10 +190,19 @@ def parsearg(manager: CommandManager, spec: str, argtype: type) -> typing.Any:
raise exceptions.CommandError("Unsupported argument type: %s" %... | Fixes #2652, and many other possible crashes on user input. | https://api.github.com/repos/mitmproxy/mitmproxy/pulls/2659 | 2017-12-10T20:13:45Z | 2017-12-11T09:03:08Z | 2017-12-11T09:03:08Z | 2018-05-15T21:49:18Z | 412 | mitmproxy/mitmproxy | 27,931 |
Add hasOwnProperty | diff --git a/blns.base64.json b/blns.base64.json
index 5a58673..b37058b 100644
--- a/blns.base64.json
+++ b/blns.base64.json
@@ -12,6 +12,7 @@
"VHJ1ZQo=",
"RmFsc2UK",
"Tm9uZQo=",
+ "aGFzT3duUHJvcGVydHkK",
"XFw=",
"MAo=",
"XFxcXAo=",
diff --git a/blns.base64.txt b/blns.base64.txt
... | It’s common in JavaScript to use input as a key in an object and check for the existence of keys using `obj.hasOwnProperty(key)` instead of `Object.prototype.hasOwnProperty.call(obj, key)`.
| https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/pulls/92 | 2016-02-10T04:58:07Z | 2016-02-10T05:19:59Z | 2016-02-10T05:19:59Z | 2016-02-10T05:19:59Z | 392 | minimaxir/big-list-of-naughty-strings | 4,794 |
Refactored github action | diff --git a/.github/workflows/PR_CI.yml b/.github/workflows/PR_CI.yml
deleted file mode 100644
index 7dccfbecdc57..000000000000
--- a/.github/workflows/PR_CI.yml
+++ /dev/null
@@ -1,90 +0,0 @@
-name: Pull Request CI and Build
-
-on: pull_request
-
-jobs:
- cancel_previous_workflow:
- runs-on: ubuntu-latest
- if... | I have refactored the github action for better DevOps experience
1. assign reviewers when the PR is opened (this can only apply to users who have write permission to this repository and does not work for PR from a forked repository due to security reasons)
2. build and unit testing are only run when the label 'Run Bu... | https://api.github.com/repos/hpcaitech/ColossalAI/pulls/303 | 2022-03-03T08:07:53Z | 2022-03-03T09:45:09Z | 2022-03-03T09:45:09Z | 2022-03-17T01:51:29Z | 3,120 | hpcaitech/ColossalAI | 11,438 |
bpo-36370: Check for PyErr_Occurred() after PyImport_GetModule(). (GH-12504) | diff --git a/Python/ceval.c b/Python/ceval.c
index 40320bf3570304..28e923219d389c 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -4948,7 +4948,7 @@ import_from(PyObject *v, PyObject *name)
}
x = PyImport_GetModule(fullmodname);
Py_DECREF(fullmodname);
- if (x == NULL) {
+ if (x == NULL && !PyE... |
<!-- issue-number: [bpo-36370](https://bugs.python.org/issue36370) -->
https://bugs.python.org/issue36370
<!-- /issue-number -->
| https://api.github.com/repos/python/cpython/pulls/12504 | 2019-03-22T23:42:42Z | 2019-03-25T20:50:59Z | 2019-03-25T20:50:59Z | 2019-03-26T18:23:19Z | 1,142 | python/cpython | 4,394 |
Allow = symbols in variable values in host inventory | diff --git a/lib/ansible/inventory/ini.py b/lib/ansible/inventory/ini.py
index 9398a591b7ba49..0a6a8f5ea97d7d 100644
--- a/lib/ansible/inventory/ini.py
+++ b/lib/ansible/inventory/ini.py
@@ -168,7 +168,7 @@ def _parse_group_variables(self):
if line.find("=") == -1:
raise errors.Ans... | Setting a variable in the host inventory file to an ssh authorized key causes this error:
```
.../ansible/lib/ansible/inventory/ini.py", line 171, in _parse_group_variables
(k,v) = line.split("=")
ValueError: too many values to unpack
```
Resolved by using `split("=",1)`.
| https://api.github.com/repos/ansible/ansible/pulls/743 | 2012-08-01T03:40:05Z | 2012-08-01T03:41:31Z | 2012-08-01T03:41:31Z | 2019-04-24T17:34:20Z | 153 | ansible/ansible | 48,943 |
Change save_format from jpg top png, because jpg is a loss format. | diff --git a/keras/preprocessing/image.py b/keras/preprocessing/image.py
index 889827cb4b2..76b550d24ef 100644
--- a/keras/preprocessing/image.py
+++ b/keras/preprocessing/image.py
@@ -443,7 +443,7 @@ def __init__(self,
'Received arg: ', zoom_range)
def flow(self, x, y=None, batch_s... | https://api.github.com/repos/keras-team/keras/pulls/6638 | 2017-05-15T14:06:04Z | 2017-05-16T14:57:51Z | 2017-05-16T14:57:51Z | 2017-05-16T14:57:51Z | 444 | keras-team/keras | 47,406 | |
Fixed all the false positives | diff --git a/removed_sites.json b/removed_sites.json
index 68fa162ec..3e3b6f644 100644
--- a/removed_sites.json
+++ b/removed_sites.json
@@ -791,5 +791,31 @@
"urlMain": "https://mastodon.xyz/",
"username_claimed": "ashfurrow",
"username_unclaimed": "noonewouldeverusethis7"
+ },
+ "Arduino": {
+ "err... | Sherlock should not return any false positives now :+1: | https://api.github.com/repos/sherlock-project/sherlock/pulls/1675 | 2023-02-04T17:14:22Z | 2023-02-04T17:16:43Z | 2023-02-04T17:16:43Z | 2023-02-04T18:20:03Z | 2,470 | sherlock-project/sherlock | 36,494 |
add faq 2021-05-24 | diff --git a/README_ch.md b/README_ch.md
index b3ecd6fdf3..0cdbb53a6f 100755
--- a/README_ch.md
+++ b/README_ch.md
@@ -4,11 +4,11 @@
PaddleOCR旨在打造一套丰富、领先、且实用的OCR工具库,助力使用者训练出更好的模型,并应用落地。
## 注意
PaddleOCR同时支持动态图与静态图两种编程范式
-- 动态图版本:release/2.1(默认分支,开发分支为dygraph分支),需将paddle版本升级至2.0.0([快速安装](./doc/doc_ch/installation.md))... | att. | https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/2882 | 2021-05-24T05:51:29Z | 2021-05-24T08:24:31Z | 2021-05-24T08:24:31Z | 2021-11-13T03:30:35Z | 3,985 | PaddlePaddle/PaddleOCR | 42,560 |
Use SQS parameter message group id for sqs targets in events rule. | diff --git a/localstack/services/events/events_listener.py b/localstack/services/events/events_listener.py
index c1bf4cb00d453..8076d20bcc904 100644
--- a/localstack/services/events/events_listener.py
+++ b/localstack/services/events/events_listener.py
@@ -60,7 +60,8 @@ def func(*args):
for target in targets:
... | - addresses https://github.com/localstack/localstack/issues/3402
| https://api.github.com/repos/localstack/localstack/pulls/3454 | 2021-01-10T15:34:46Z | 2021-01-11T22:02:29Z | 2021-01-11T22:02:28Z | 2021-01-11T22:02:29Z | 1,447 | localstack/localstack | 28,769 |
Fixed a grammatical mistake in the docs | diff --git a/docs/guides/primer/usage_pattern.md b/docs/guides/primer/usage_pattern.md
index c92bc502db91e..eb13874eba3bb 100644
--- a/docs/guides/primer/usage_pattern.md
+++ b/docs/guides/primer/usage_pattern.md
@@ -29,7 +29,7 @@ text_list = [text1, text2, ...]
documents = [Document(t) for t in text_list]
```
-A D... | https://api.github.com/repos/run-llama/llama_index/pulls/1201 | 2023-04-15T12:13:30Z | 2023-04-15T15:52:59Z | 2023-04-15T15:52:59Z | 2023-04-15T15:53:00Z | 189 | run-llama/llama_index | 6,415 | |
PEP8 Love: E126 Fix for #945 | diff --git a/letsencrypt/renewer.py b/letsencrypt/renewer.py
index b62e31bcead..8d8540e6f77 100644
--- a/letsencrypt/renewer.py
+++ b/letsencrypt/renewer.py
@@ -169,8 +169,8 @@ def main(config=None, cli_args=sys.argv[1:]):
# take precedence over this one.
config.merge(configobj.ConfigObj(cli_config.renewer_co... | Addresses #959
| https://api.github.com/repos/certbot/certbot/pulls/961 | 2015-10-12T20:44:56Z | 2015-10-12T20:51:59Z | 2015-10-12T20:51:59Z | 2016-05-06T19:22:10Z | 190 | certbot/certbot | 3,391 |
Fix chunk handling when partial chunks are returned | diff --git a/fastchat/serve/openai_api_server.py b/fastchat/serve/openai_api_server.py
index d692af967d..036642cd3a 100644
--- a/fastchat/serve/openai_api_server.py
+++ b/fastchat/serve/openai_api_server.py
@@ -599,12 +599,14 @@ async def generate_completion_stream(payload: Dict[str, Any], worker_addr: str):
... | ## Why are these changes needed?
The openai api implementation assumes aiter_raw returns complete chunks. This is not the case once the response exceeds the size of network buffers causing an issue with the json decode. This change accumulates content till a full chunk is received.
## Checks
- [x] I've run `fo... | https://api.github.com/repos/lm-sys/FastChat/pulls/2485 | 2023-09-27T23:06:23Z | 2023-09-29T02:56:13Z | 2023-09-29T02:56:13Z | 2023-09-29T02:56:13Z | 232 | lm-sys/FastChat | 41,264 |
Make ACMEv1 deprecation warnings scarier | diff --git a/acme/acme/client.py b/acme/acme/client.py
index e13b272c702..7ab1eb6575b 100644
--- a/acme/acme/client.py
+++ b/acme/acme/client.py
@@ -1,4 +1,7 @@
"""ACME client API."""
+# pylint: disable=too-many-lines
+# This pylint disable can be deleted once the deprecated ACMEv1 code is
+# removed.
import base64
... | Fixes https://github.com/certbot/certbot/issues/6844.
This PR does two things:
1. Changes ACMEv1 deprecation warnings from `PendingDeprecationWarning` to `DeprecationWarning`.
2. Changes the ACMEv1 deprecation warnings to be on references to the class themselves. This is the approach taken in https://github.com/... | https://api.github.com/repos/certbot/certbot/pulls/9015 | 2021-08-30T22:15:10Z | 2021-08-30T22:38:12Z | 2021-08-30T22:38:12Z | 2021-08-30T22:38:13Z | 3,924 | certbot/certbot | 3,026 |
[test] Make test object store more accurate. | diff --git a/release/benchmarks/object_store/test_object_store.py b/release/benchmarks/object_store/test_object_store.py
index 2403be078a079..ef8fb55340808 100644
--- a/release/benchmarks/object_store/test_object_store.py
+++ b/release/benchmarks/object_store/test_object_store.py
@@ -28,8 +28,8 @@ class Actor:
... | <!-- Thank you for your contribution! Please review https://github.com/ray-project/ray/blob/master/CONTRIBUTING.rst before opening a pull request. -->
<!-- Please add a reviewer to the assignee section when you create a PR. If you don't have the access to it, we will shortly find a reviewer and assign them to your P... | https://api.github.com/repos/ray-project/ray/pulls/34885 | 2023-04-29T04:27:12Z | 2023-05-01T18:31:02Z | 2023-05-01T18:31:02Z | 2023-05-01T18:31:02Z | 479 | ray-project/ray | 19,695 |
Bump sphinx from 4.1.1 to 4.1.2 | diff --git a/docs/requirements.txt b/docs/requirements.txt
index ca85e46e8..67cbc0079 100644
--- a/docs/requirements.txt
+++ b/docs/requirements.txt
@@ -1,4 +1,4 @@
alabaster==0.7.12
-Sphinx==4.1.1
+Sphinx==4.1.2
sphinx-rtd-theme==0.5.2
sphinx-copybutton==0.4.0
| Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 4.1.1 to 4.1.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/sphinx-doc/sphinx/blob/4.x/CHANGES">sphinx's changelog</a>.</em></p>
<blockquote>
<h1>Release 4.1.2 (released Jul 27, 2021)</h1>
<h2>Incompatible changes</h2>
... | https://api.github.com/repos/Textualize/rich/pulls/1367 | 2021-07-27T13:03:17Z | 2021-07-27T18:46:08Z | 2021-07-27T18:46:08Z | 2021-07-27T18:46:13Z | 106 | Textualize/rich | 48,279 |
Add the content interface to Certbot | diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml
index 3b5d98f2de6..07910bf0d89 100644
--- a/snap/snapcraft.yaml
+++ b/snap/snapcraft.yaml
@@ -85,3 +85,9 @@ parts:
# After certbot-apache to not rebuild duplicates (essentially sharing what was already staged,
# like zope)
after: [certbot-apache]
+
+... | This PR moves the setup of the content interface which we plan to use to support external plugins from the [snap-plugin branch](https://github.com/certbot/certbot/tree/snap-plugin) to `master`. This being in `master` might make it easier to make progress on issues like https://github.com/certbot/certbot/issues/7667.
... | https://api.github.com/repos/certbot/certbot/pulls/8009 | 2020-05-21T17:53:12Z | 2020-05-27T20:59:09Z | 2020-05-27T20:59:09Z | 2020-05-27T20:59:13Z | 142 | certbot/certbot | 1,449 |
[youtube] Add support for multifeed videos | diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index 4023a6e50ba..8a5ef2e7028 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -33,9 +33,11 @@
int_or_none,
orderedSet,
parse_duration,
+ smuggle_url,
str_to_int,
unescapeHTML... | Adds support for downloading multifeed videos (from multiple cameras) as playlist (e.g. https://www.youtube.com/watch?v=jqWvoWXjCVs)
| https://api.github.com/repos/ytdl-org/youtube-dl/pulls/6360 | 2015-07-25T15:37:49Z | 2015-07-29T19:57:05Z | 2015-07-29T19:57:05Z | 2015-07-29T19:57:32Z | 1,880 | ytdl-org/youtube-dl | 50,500 |
[dplay] Migrate DiscoveryPlusItaly to DiscoveryPlus | diff --git a/yt_dlp/extractor/dplay.py b/yt_dlp/extractor/dplay.py
index e1f5e9dc86a..6a245c1f0d8 100644
--- a/yt_dlp/extractor/dplay.py
+++ b/yt_dlp/extractor/dplay.py
@@ -575,16 +575,19 @@ def _real_extract(self, url):
return self.playlist_result(self._entries(show_name), playlist_id=show_name)
-class Di... | ### Before submitting a *pull request* make sure you have:
- [x] At least skimmed through [contributing guidelines](https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#developer-instructions) including [yt-dlp coding conventions](https://github.com/yt-dlp/yt-dlp/blob/master/CONTRIBUTING.md#yt-dlp-coding-conve... | https://api.github.com/repos/yt-dlp/yt-dlp/pulls/2315 | 2022-01-12T18:07:46Z | 2022-01-13T17:11:27Z | 2022-01-13T17:11:27Z | 2022-01-13T17:11:27Z | 341 | yt-dlp/yt-dlp | 7,530 |
[hotfix] Improve tester precision by removing ZeRO on vanilla lamb | diff --git a/colossalai/shardformer/modeling/gpt2.py b/colossalai/shardformer/modeling/gpt2.py
index 407338b162df..e3bf4b782f29 100644
--- a/colossalai/shardformer/modeling/gpt2.py
+++ b/colossalai/shardformer/modeling/gpt2.py
@@ -1084,7 +1084,6 @@ def forward(
shift_logits, shift_labels, process_group... | ## 📌 Checklist before creating the PR
- [ ] I have created an issue for this PR for traceability
- [ ] The title follows the standard format: `[doc/gemini/tensor/...]: A concise description`
- [ ] I have added relevant tags if possible for us to better distinguish different PRs
- [ ] I have installed pre-commit:... | https://api.github.com/repos/hpcaitech/ColossalAI/pulls/5576 | 2024-04-09T10:34:45Z | 2024-04-10T03:37:24Z | 2024-04-10T03:37:24Z | 2024-04-10T03:37:30Z | 3,023 | hpcaitech/ColossalAI | 11,235 |
Update withdrawal fees and API link | diff --git a/js/bitfinex2.js b/js/bitfinex2.js
index 314ef6c15249..785d1a8958a0 100644
--- a/js/bitfinex2.js
+++ b/js/bitfinex2.js
@@ -54,7 +54,7 @@ module.exports = class bitfinex2 extends bitfinex {
'api': 'https://api.bitfinex.com',
'www': 'https://www.bitfinex.com',
... | Also, 182 string can have typo, but i don't now maybe it's not typo and i can broke something:
from:
`'EXCHANGE IOC': 'limit ico',`
to:
` 'EXCHANGE IOC': 'limit ioc',` | https://api.github.com/repos/ccxt/ccxt/pulls/4783 | 2019-03-04T14:58:04Z | 2019-03-04T15:53:58Z | 2019-03-04T15:53:58Z | 2019-03-04T16:14:24Z | 776 | ccxt/ccxt | 13,145 |
Bump numpy from 1.23.5 to 1.24.0 | diff --git a/Hand-Motion-Detection/requirements.txt b/Hand-Motion-Detection/requirements.txt
index d57a0682f9..ba4ba8692a 100644
--- a/Hand-Motion-Detection/requirements.txt
+++ b/Hand-Motion-Detection/requirements.txt
@@ -1,3 +1,3 @@
-numpy==1.23.5
+numpy==1.24.0
opencv_python==4.6.0.66
mediapipe==0.9.0.1
| Bumps [numpy](https://github.com/numpy/numpy) from 1.23.5 to 1.24.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/numpy/numpy/releases">numpy's releases</a>.</em></p>
<blockquote>
<h2>v1.24.0</h2>
<h1>NumPy 1.24 Release Notes</h1>
<p>The NumPy 1.24.0 release continues the o... | https://api.github.com/repos/geekcomputers/Python/pulls/1808 | 2022-12-19T18:14:57Z | 2022-12-23T19:15:07Z | 2022-12-23T19:15:07Z | 2022-12-23T19:15:15Z | 120 | geekcomputers/Python | 31,187 |
add chatgpt-discord-bot to related project | diff --git a/README.md b/README.md
index 9f99a2e4dc..555c86ea74 100644
--- a/README.md
+++ b/README.md
@@ -363,6 +363,13 @@ set G4F_PROXY=http://host:port
<td><a href="https://github.com/mishalhossin/Discord-Chatbot-Gpt4Free/network/members"><img alt="Forks" src="https://img.shields.io/github/forks/mishalhossin/... | add [chatgpt-discord-bot](https://github.com/Zero6992/chatGPT-discord-bot) to related project | https://api.github.com/repos/xtekky/gpt4free/pulls/1680 | 2024-03-12T04:57:54Z | 2024-03-12T08:08:19Z | 2024-03-12T08:08:19Z | 2024-03-12T08:10:55Z | 726 | xtekky/gpt4free | 38,146 |
Fixed URL for wordlist.tgz in image_ocr.py | diff --git a/examples/image_ocr.py b/examples/image_ocr.py
index 15d20112894..04d13ee1437 100644
--- a/examples/image_ocr.py
+++ b/examples/image_ocr.py
@@ -416,7 +416,7 @@ def train(run_name, start_epoch, stop_epoch, img_w):
input_shape = (img_w, img_h, 1)
fdir = os.path.dirname(get_file('wordlists.tgz... | https://api.github.com/repos/keras-team/keras/pulls/6136 | 2017-04-04T05:08:25Z | 2017-04-04T06:55:19Z | 2017-04-04T06:55:19Z | 2017-04-04T06:55:19Z | 193 | keras-team/keras | 47,415 | |
Potenial improvements to password generator and battleship | diff --git a/.gitignore b/.gitignore
index 9753953afa..412d32f9c1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,6 +16,7 @@ build/
.env
.env.sh
venv/
+.venv/
ENV/
# IDE-specific files
diff --git a/gpt_engineer/API/api.py b/gpt_engineer/API/api.py
index b2a1d41af0..be6b5ba0a0 100644
--- a/gpt_engineer/API/api.py... | https://api.github.com/repos/gpt-engineer-org/gpt-engineer/pulls/799 | 2023-10-15T13:34:01Z | 2023-10-16T12:56:18Z | 2023-10-16T12:56:18Z | 2023-10-16T12:56:19Z | 3,018 | gpt-engineer-org/gpt-engineer | 33,170 | |
Update link to the Server forum category | diff --git a/CHANGELOG.md b/CHANGELOG.md
index fbe7e070685..de2fdfb033e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,7 +10,9 @@ Certbot adheres to [Semantic Versioning](https://semver.org/).
### Changed
-*
+* If Certbot fails to rollback your server configuration, the error message
+ links to the Let's Enc... | Let's Encrypt [closed it](https://community.letsencrypt.org/t/closing-the-server-category/93016) in favor of the Help category.
## Pull Request Checklist
- [x] Edit the `master` section of `CHANGELOG.md` to include a description of
the change being made.
- [x] Add [mypy type
annotations](https://certbot.ef... | https://api.github.com/repos/certbot/certbot/pulls/7309 | 2019-08-07T16:23:42Z | 2019-08-08T18:44:22Z | 2019-08-08T18:44:22Z | 2019-08-08T18:44:29Z | 282 | certbot/certbot | 1,912 |
Added credit card validator script | diff --git a/Credit_Card_Validator.py b/Credit_Card_Validator.py
new file mode 100644
index 0000000000..82906ac65a
--- /dev/null
+++ b/Credit_Card_Validator.py
@@ -0,0 +1,93 @@
+#luhn algorithm
+
+class CreditCard:
+ def __init__(self,card_no):
+ self.card_no = card_no
+
+
+ @property
+ def comp... | https://api.github.com/repos/geekcomputers/Python/pulls/340 | 2018-06-02T08:24:59Z | 2018-06-03T21:03:28Z | 2018-06-03T21:03:28Z | 2018-06-03T21:03:28Z | 689 | geekcomputers/Python | 31,840 | |
Add larger app ex | diff --git a/docs/patterns/packages.rst b/docs/patterns/packages.rst
index 1cd7797420..1bb84f8cca 100644
--- a/docs/patterns/packages.rst
+++ b/docs/patterns/packages.rst
@@ -17,6 +17,10 @@ this::
login.html
...
+If you find yourself stuck on something, feel free
+to take a look at the sourc... | I chose the wrong base: https://github.com/pallets/flask/pull/2130
Original PR message:
> Addresses: #1902 (comment)
>
> Confirms that the larger application as outlined in the docs, works as expected. For the sake of less confusion, for those working through this example, having src might be helpful. Not ever... | https://api.github.com/repos/pallets/flask/pulls/2131 | 2016-12-30T18:48:08Z | 2017-01-15T04:56:13Z | 2017-01-15T04:56:13Z | 2020-11-14T04:23:14Z | 1,027 | pallets/flask | 20,717 |
Create logs dir if missing when saving history | diff --git a/modules/chat.py b/modules/chat.py
index 5e4eb2450e..8e562b9832 100644
--- a/modules/chat.py
+++ b/modules/chat.py
@@ -394,6 +394,8 @@ def redraw_html(history, name1, name2, mode, style, reset_cache=False):
def save_history(history, path=None):
p = path or Path('logs/exported_history.json')
+ if ... | ## Checklist:
- [x] I have read the [Contributing guidelines](https://github.com/oobabooga/text-generation-webui/wiki/Contributing-guidelines).
---
When using chat mode with a character, a `FileNotFoundError` exception is raised when the `logs` directory is missing.
This results in the command-line window being... | https://api.github.com/repos/oobabooga/text-generation-webui/pulls/3462 | 2023-08-05T09:31:08Z | 2023-08-05T16:47:17Z | 2023-08-05T16:47:17Z | 2023-08-05T16:47:17Z | 143 | oobabooga/text-generation-webui | 26,006 |
fix typo for attention | diff --git a/configs/rec/rec_mv3_tps_bilstm_att.yml b/configs/rec/rec_mv3_tps_bilstm_att.yml
index c64b2ccc26..0ce067343c 100644
--- a/configs/rec/rec_mv3_tps_bilstm_att.yml
+++ b/configs/rec/rec_mv3_tps_bilstm_att.yml
@@ -1,5 +1,5 @@
Global:
- use_gpu: true
+ use_gpu: True
epoch_num: 72
log_smooth_window: 20
... | https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/1919 | 2021-02-02T11:32:25Z | 2021-02-02T11:32:35Z | 2021-02-02T11:32:35Z | 2021-02-02T11:32:35Z | 625 | PaddlePaddle/PaddleOCR | 42,215 | |
Fixup changelog with missing breaking change. | diff --git a/HISTORY.rst b/HISTORY.rst
index 601ba580d2..f27ce332ee 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -7,6 +7,7 @@ Release History
++++++++++++++++++
- Updated CA Bundle, of course.
+- Cookies set on individual Requests through a ``Session`` (e.g. via ``Session.get()``) are no longer persisted to the ``... | https://api.github.com/repos/psf/requests/pulls/1792 | 2013-12-12T16:21:35Z | 2013-12-12T16:21:38Z | 2013-12-12T16:21:38Z | 2021-09-08T23:05:26Z | 152 | psf/requests | 32,122 | |
Don't special case Path hashing | diff --git a/lib/streamlit/hashing.py b/lib/streamlit/hashing.py
index 8e53145000cc..b808197aea04 100644
--- a/lib/streamlit/hashing.py
+++ b/lib/streamlit/hashing.py
@@ -28,9 +28,11 @@
import os
import sys
import textwrap
+import tempfile
import threading
import streamlit as st
+from streamlit import compatibil... | Issue #857
We were incorrectly treating `Path`s like `File`s.
Remove special case hashing for `Path`s and let it be hashed by `__reduce__` | https://api.github.com/repos/streamlit/streamlit/pulls/1014 | 2020-01-24T20:25:27Z | 2020-01-28T21:15:03Z | 2020-01-28T21:15:03Z | 2020-01-28T21:15:04Z | 256 | streamlit/streamlit | 21,569 |
Fix various small spelling errors. | diff --git a/docs/appcontext.rst b/docs/appcontext.rst
index 63006ad490..5f41535a67 100644
--- a/docs/appcontext.rst
+++ b/docs/appcontext.rst
@@ -49,7 +49,7 @@ Typically, an application context will have the same lifetime as a
request.
See :doc:`/reqcontext` for more information about how the contexts work
-and th... | This patch fixes a few small spelling errors throughout the documentation.
I didn't change common programming or Python jargon. For example, I didn't change virtualenv (to "virtual environment"), "runtime", or "auto escaping".
I turned ReST to REST because the latter spelling seems to have taken over. | https://api.github.com/repos/pallets/flask/pulls/3199 | 2019-05-14T20:16:56Z | 2019-05-16T18:54:34Z | 2019-05-16T18:54:34Z | 2020-11-14T02:21:35Z | 1,840 | pallets/flask | 20,241 |
Use `client.id` as connection id where possible | diff --git a/mitmproxy/addons/proxyserver.py b/mitmproxy/addons/proxyserver.py
index 58e44acde3..820a30cc71 100644
--- a/mitmproxy/addons/proxyserver.py
+++ b/mitmproxy/addons/proxyserver.py
@@ -108,7 +108,7 @@ class Proxyserver(ServerManager):
This addon runs the actual proxy server.
"""
- connections: ... | This fixes compatibilit with the new macOS transparent mode, where the client's peername is unspecified (which otherwise leads to duplicates). | https://api.github.com/repos/mitmproxy/mitmproxy/pulls/6372 | 2023-09-18T21:04:14Z | 2023-09-18T23:17:47Z | 2023-09-18T23:17:47Z | 2023-09-18T23:17:47Z | 1,410 | mitmproxy/mitmproxy | 27,589 |
Exchange: parse json once | diff --git a/js/base/Exchange.js b/js/base/Exchange.js
index 531b15f8089e..4c3c7d773927 100644
--- a/js/base/Exchange.js
+++ b/js/base/Exchange.js
@@ -262,13 +262,12 @@ module.exports = class Exchange {
this.executeRestRequest = function (url, method = 'GET', headers = undefined, body = undefined) {
... | Actually, this consists of two commits.
The first one is just variable/args renaming without functionality change. It fixes ambiguities that inhibit code comprehension, such as:
https://github.com/ccxt/ccxt/blob/0cc2191190748c57d460c0c49f617d197ea29bcc/js/base/Exchange.js#L271-L272
(first `response` is response ob... | https://api.github.com/repos/ccxt/ccxt/pulls/1551 | 2018-01-28T17:26:03Z | 2018-01-29T03:20:08Z | 2018-01-29T03:20:08Z | 2018-01-29T19:01:57Z | 1,633 | ccxt/ccxt | 13,025 |
Added new Algorithm to find middle element of Linked List | diff --git a/data_structures/linked_list/middle_element_of_linked_list.py b/data_structures/linked_list/middle_element_of_linked_list.py
new file mode 100644
index 000000000000..2903fe604dfa
--- /dev/null
+++ b/data_structures/linked_list/middle_element_of_linked_list.py
@@ -0,0 +1,64 @@
+class Node:
+ def __init__(... | Please read CONTRIBUTING.md
> 1 files contain uppercase characters:
> data_structures/linked_list/MiddleElementOfLinkedList.py | https://api.github.com/repos/TheAlgorithms/Python/pulls/1822 | 2020-03-31T13:44:47Z | 2020-04-12T14:45:07Z | 2020-04-12T14:45:07Z | 2020-04-12T14:45:07Z | 505 | TheAlgorithms/Python | 29,912 |
build(webpack): Fix webpack chunk names | diff --git a/src/sentry/static/sentry/app/components/avatar/gravatar.jsx b/src/sentry/static/sentry/app/components/avatar/gravatar.jsx
index c3d096606fa4f..a2d021b34334d 100644
--- a/src/sentry/static/sentry/app/components/avatar/gravatar.jsx
+++ b/src/sentry/static/sentry/app/components/avatar/gravatar.jsx
@@ -30,7 +3... | I think these get evaluated as javascript so the chunk names need to be
a string. | https://api.github.com/repos/getsentry/sentry/pulls/10047 | 2018-10-08T23:58:30Z | 2018-10-09T18:24:00Z | 2018-10-09T18:24:00Z | 2020-12-21T08:54:56Z | 2,066 | getsentry/sentry | 44,620 |
Correct small typo in internal link | diff --git a/docs/advanced_foreword.rst b/docs/advanced_foreword.rst
index f7e70a7102..53df8175a2 100644
--- a/docs/advanced_foreword.rst
+++ b/docs/advanced_foreword.rst
@@ -64,6 +64,6 @@ compatible Python code
<http://lucumr.pocoo.org/2011/1/22/forwards-compatible-python/>`_.
If you do want to dive into Python 3 ... | https://api.github.com/repos/pallets/flask/pulls/768 | 2013-06-14T13:35:56Z | 2013-06-16T10:40:57Z | 2013-06-16T10:40:57Z | 2020-11-14T07:18:51Z | 154 | pallets/flask | 20,910 | |
Make argparse dependency unconditional. | diff --git a/acme/setup.py b/acme/setup.py
index f169f59a70b..48210108a87 100644
--- a/acme/setup.py
+++ b/acme/setup.py
@@ -8,6 +8,7 @@
# Please update tox.ini when modifying dependency version requirements
install_requires = [
+ 'argparse',
# load_pem_private/public_key (>=0.6)
# rsa_recover_prime_fa... | The primary motivation is to avoid a branch, giving bugs one fewer place to hide. But, as a bonus, more people get a more bugfixed version of argparse. (To use the example from the argparse docs, people stuck on Python 3.2.3 can get bugfixes that made it into the stdlib only in 3.2.4.)
| https://api.github.com/repos/certbot/certbot/pulls/2249 | 2016-01-20T22:03:59Z | 2017-03-09T01:10:13Z | 2017-03-09T01:10:13Z | 2017-04-19T23:29:20Z | 432 | certbot/certbot | 2,589 |
Score_columns method added | diff --git a/scalg.py b/scalg.py
index a5d073d5e8..d95ceb2611 100644
--- a/scalg.py
+++ b/scalg.py
@@ -1,13 +1,12 @@
-'''
+"""
developed by: markmelnic
original repo: https://github.com/markmelnic/Scoring-Algorithm
-
+ pypi: https://pypi.org/project/scalg/
Analyse data using a range based percentual proximit... | https://api.github.com/repos/geekcomputers/Python/pulls/1123 | 2020-10-13T11:42:21Z | 2020-10-23T07:39:40Z | 2020-10-23T07:39:40Z | 2020-10-23T07:39:40Z | 1,493 | geekcomputers/Python | 31,243 | |
[stable-2.14] Update update-sanity-requirements.py script (#81424) | diff --git a/hacking/update-sanity-requirements.py b/hacking/update-sanity-requirements.py
index 5861590beaf786..997d6dbf87adfd 100755
--- a/hacking/update-sanity-requirements.py
+++ b/hacking/update-sanity-requirements.py
@@ -15,6 +15,7 @@
import packaging.version
import packaging.specifiers
+import packaging.requ... | ##### SUMMARY
Backport of https://github.com/ansible/ansible/pull/81424
Frozen requirements can now preserve any explicitly installed package that would normally be omitted, not just setuptools.
(cherry picked from commit dbb3feddaf663aa5901b0254a7b259e99c0eae72)
##### ISSUE TYPE
Test Pull Request
| https://api.github.com/repos/ansible/ansible/pulls/81432 | 2023-08-03T20:21:26Z | 2023-08-03T20:31:14Z | 2023-08-03T20:31:14Z | 2023-08-31T13:00:32Z | 378 | ansible/ansible | 49,308 |
Backport PR #45641 on branch 1.4.x (Switch deps to Conda) | diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 5232b76a6388d..3ffcf29f47688 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -43,7 +43,7 @@ repos:
- flake8==4.0.1
- flake8-comprehensions==3.7.0
- flake8-bugbear==21.3.2
- - pandas-dev-flaker==0... | Backport PR #45641: Switch deps to Conda | https://api.github.com/repos/pandas-dev/pandas/pulls/45851 | 2022-02-06T22:38:40Z | 2022-02-07T13:07:17Z | 2022-02-07T13:07:17Z | 2022-02-07T13:07:17Z | 1,796 | pandas-dev/pandas | 45,136 |
refactor and restructuring of sampler code to give custom nodes more access | diff --git a/comfy/sample.py b/comfy/sample.py
new file mode 100644
index 0000000000..09ab20cd20
--- /dev/null
+++ b/comfy/sample.py
@@ -0,0 +1,57 @@
+import torch
+import comfy.model_management
+
+
+def prepare_noise(latent_image, seed, skip=0):
+ """
+ creates random noise given a latent image and a seed.
+ ... | This PR makes the following changes:
- refactors the code in [common_ksampler](https://github.com/comfyanonymous/ComfyUI/blob/master/nodes.py#L743) to a set of functions that are easier to reuse.
- makes it possible for other code to calculate sigmas without creating a Ksampler to call [_calculate_sigmas](https://g... | https://api.github.com/repos/comfyanonymous/ComfyUI/pulls/559 | 2023-04-23T20:27:09Z | 2023-04-25T03:54:08Z | 2023-04-25T03:54:07Z | 2023-04-25T03:55:34Z | 2,733 | comfyanonymous/ComfyUI | 18,025 |
Enable ansible-galaxy to specify client id override with Keycloak Token | diff --git a/changelogs/fragments/75593-ansible-galaxy-keycloak-clientid.yml b/changelogs/fragments/75593-ansible-galaxy-keycloak-clientid.yml
new file mode 100644
index 00000000000000..bf8ae157283bd6
--- /dev/null
+++ b/changelogs/fragments/75593-ansible-galaxy-keycloak-clientid.yml
@@ -0,0 +1,2 @@
+minor_changes:
+ ... | * Specify ability to provide override of client_id
##### SUMMARY
GalaxyNG just added the capability to use Keycloak for user integration/authentication, instead of using DRF tokens it would be great to be able to use Keycloak tokens with ansible-galaxy CLI. ansible-galaxy CLI has the ability to use Keycloak tokens ... | https://api.github.com/repos/ansible/ansible/pulls/75601 | 2021-08-30T14:30:48Z | 2021-09-17T19:10:11Z | 2021-09-17T19:10:11Z | 2021-10-15T13:00:07Z | 1,981 | ansible/ansible | 49,158 |
Add the code_search_net datasets tag to CodeBERTa model cards | diff --git a/model_cards/huggingface/CodeBERTa-language-id/README.md b/model_cards/huggingface/CodeBERTa-language-id/README.md
index 63c0eeb162dc3..c9234f2cf861c 100644
--- a/model_cards/huggingface/CodeBERTa-language-id/README.md
+++ b/model_cards/huggingface/CodeBERTa-language-id/README.md
@@ -1,6 +1,8 @@
---
langu... | # What does this PR do?
TL;DR
Related to this PR on `huggingface/datasets`: https://github.com/huggingface/datasets/pull/1288
## Who can review?
@julien-c
| https://api.github.com/repos/huggingface/transformers/pulls/9005 | 2020-12-09T12:12:41Z | 2020-12-09T14:43:19Z | 2020-12-09T14:43:19Z | 2020-12-09T14:43:20Z | 299 | huggingface/transformers | 12,046 |
acme/setup.py: comment refers to "PyOpenSSL" not "mock" | diff --git a/acme/setup.py b/acme/setup.py
index 6d3dcdf84e3..fcca333f943 100644
--- a/acme/setup.py
+++ b/acme/setup.py
@@ -14,8 +14,8 @@
# 1.1.0+ is required to avoid the warnings described at
# https://github.com/certbot/josepy/issues/13.
'josepy>=1.1.0',
- # Connection.set_tlsext_host_name (>=0.13... | just what the title says and entirely trivial but the ordering confused me for a bit. | https://api.github.com/repos/certbot/certbot/pulls/7619 | 2019-12-02T23:06:42Z | 2019-12-03T00:16:41Z | 2019-12-03T00:16:41Z | 2019-12-03T00:16:42Z | 166 | certbot/certbot | 3,084 |
Made Field.error_messages a cached property. | diff --git a/django/db/models/fields/__init__.py b/django/db/models/fields/__init__.py
index 0afc2a0c92a08..4d17c25f0fcca 100644
--- a/django/db/models/fields/__init__.py
+++ b/django/db/models/fields/__init__.py
@@ -217,12 +217,7 @@ def __init__(
self._validators = list(validators) # Store for deconstructi... | This speeds up field creation and reduces memory usage.
Refs https://github.com/django/django/pull/15410
Tested speed using this code:
```
import time
from django.db import models
times = []
for x in range(1000):
start = time.time()
for x in range(1000):
models.CharField(max_length=100)
... | https://api.github.com/repos/django/django/pulls/15415 | 2022-02-09T15:13:09Z | 2022-02-16T19:30:04Z | 2022-02-16T19:30:04Z | 2022-02-16T20:36:27Z | 283 | django/django | 51,272 |
Fix --debug | diff --git a/certbot/main.py b/certbot/main.py
index 471dcd83880..931697cc36c 100644
--- a/certbot/main.py
+++ b/certbot/main.py
@@ -676,10 +676,8 @@ def _handle_exception(exc_type, exc_value, trace, config):
to the user. sys.exit is always called with a nonzero status.
"""
- logger.debug(
- "Exit... | Currently `--debug` doesn't work to print tracebacks for crashes before there is a `config` object. This PR fixes that. | https://api.github.com/repos/certbot/certbot/pulls/3877 | 2016-12-08T18:43:33Z | 2016-12-09T22:56:14Z | 2016-12-09T22:56:14Z | 2016-12-09T22:56:22Z | 404 | certbot/certbot | 3,289 |
[ghostnet] Fix in_features for linear layer in reset_classifier. | diff --git a/timm/models/ghostnet.py b/timm/models/ghostnet.py
index b7c0f5ddcc..d34b548521 100644
--- a/timm/models/ghostnet.py
+++ b/timm/models/ghostnet.py
@@ -276,7 +276,7 @@ def reset_classifier(self, num_classes, global_pool='avg'):
# cannot meaningfully change pooling of efficient head after creation
... | Resetting the classifier for the ghostnet model results in a mismatch:
>
RuntimeError: mat1 and mat2 shapes cannot be multiplied (80x1280 and 960x6)
| https://api.github.com/repos/huggingface/pytorch-image-models/pulls/1951 | 2023-09-13T08:42:18Z | 2023-09-13T16:29:39Z | 2023-09-13T16:29:39Z | 2023-09-13T16:29:39Z | 205 | huggingface/pytorch-image-models | 16,356 |
Fix body parsing | diff --git a/fastapi/dependencies/utils.py b/fastapi/dependencies/utils.py
index a1cc0b9808d4c..33130a90ef339 100644
--- a/fastapi/dependencies/utils.py
+++ b/fastapi/dependencies/utils.py
@@ -634,7 +634,11 @@ async def request_body_to_args(
) and isinstance(received_body, FormData):
... | Closes #914
I believe this is the "correct" way to fix this issue, as the provided body could be invalid in a number of ways, and this should handle anything that json could get parsed into. (The error message also seems appropriate to me even for malformed bodies.)
There was actually already a test for this, bu... | https://api.github.com/repos/tiangolo/fastapi/pulls/918 | 2020-01-25T06:59:01Z | 2020-02-04T04:01:59Z | 2020-02-04T04:01:59Z | 2020-02-04T04:02:37Z | 739 | tiangolo/fastapi | 22,709 |
[ie/twitter:broadcast] Support `--wait-for-video` | diff --git a/yt_dlp/extractor/periscope.py b/yt_dlp/extractor/periscope.py
index dcd02192669..3d1375b6450 100644
--- a/yt_dlp/extractor/periscope.py
+++ b/yt_dlp/extractor/periscope.py
@@ -4,6 +4,7 @@
parse_iso8601,
unescapeHTML,
)
+from ..utils.traversal import traverse_obj
class PeriscopeBaseIE(InfoEx... | Closes #8473
<details open><summary>Template</summary> <!-- OPEN is intentional -->
<!--
# PLEASE FOLLOW THE GUIDE BELOW
- You will be asked some questions, please read them **carefully** and answer honestly
- Put an `x` into all the boxes `[ ]` relevant to your *pull request* (like [x])
- Use *Preview*... | https://api.github.com/repos/yt-dlp/yt-dlp/pulls/8475 | 2023-10-30T04:11:21Z | 2023-11-11T20:05:07Z | 2023-11-11T20:05:07Z | 2023-11-11T20:05:08Z | 650 | yt-dlp/yt-dlp | 8,173 |
fix: Typo in the Indonesian readme doc | diff --git a/README.id.md b/README.id.md
index 4bb8faabd..786c163f3 100644
--- a/README.id.md
+++ b/README.id.md
@@ -27,7 +27,7 @@
Rich adalah library Python yang membantu _memperindah_ tampilan output suatu program di terminal.
-[Rich API](https://rich.readthedocs.io/en/latest/) dapat digunakan untuk mempermudah ... | ## Type of changes
- [ ] Bug fix
- [ ] New feature
- [x] Documentation / docstrings
- [ ] Tests
- [ ] Other
## Checklist
- [ ] I've run the latest [black](https://github.com/psf/black) with default args on new code.
- [ ] I've updated CHANGELOG.md and CONTRIBUTORS.md where appropriate.
- [ ] I've added t... | https://api.github.com/repos/Textualize/rich/pulls/2808 | 2023-02-14T05:53:46Z | 2023-03-04T09:05:07Z | 2023-03-04T09:05:07Z | 2023-03-04T09:05:07Z | 249 | Textualize/rich | 47,960 |
Support the elliptical arc command for SVGMobject | diff --git a/manimlib/mobject/svg/svg_mobject.py b/manimlib/mobject/svg/svg_mobject.py
index deb902a607..5af3367938 100644
--- a/manimlib/mobject/svg/svg_mobject.py
+++ b/manimlib/mobject/svg/svg_mobject.py
@@ -11,6 +11,7 @@
from manimlib.constants import ORIGIN, UP, DOWN, LEFT, RIGHT
from manimlib.constants import B... | <!-- Thanks for contributing to manim!
Please ensure that your pull request works with the latest version of manim.
-->
## Motivation
<!-- Outline your motivation: In what way do your changes improve the library? -->
Support the elliptical arc command for SVGMobject. Now all the commands of svg path can be i... | https://api.github.com/repos/3b1b/manim/pulls/1598 | 2021-08-08T13:34:28Z | 2021-08-09T23:19:15Z | 2021-08-09T23:19:15Z | 2021-08-09T23:19:15Z | 2,422 | 3b1b/manim | 18,220 |
Command Injection space alternatives | diff --git a/Command Injection/README.md b/Command Injection/README.md
index a4e0d0b36d..9df048adfc 100644
--- a/Command Injection/README.md
+++ b/Command Injection/README.md
@@ -96,6 +96,16 @@ Commands execution without spaces, $ or { } - Linux (Bash only)
IFS=,;`cat<<<uname,-a`
```
+Tabs work as separators in w... | This PR adds two use cases where spaces (`0x20`) and braces (`{ }`) are removed from a payload. | https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/475 | 2022-01-15T00:42:52Z | 2022-01-15T11:15:26Z | 2022-01-15T11:15:26Z | 2022-01-15T21:51:05Z | 327 | swisskyrepo/PayloadsAllTheThings | 8,689 |
Simplify empty line tracker | diff --git a/src/black/lines.py b/src/black/lines.py
index ea8fe52075..016a489310 100644
--- a/src/black/lines.py
+++ b/src/black/lines.py
@@ -49,7 +49,7 @@
class Line:
"""Holds leaves and comments. Can be printed with `str(line)`."""
- mode: Mode
+ mode: Mode = field(repr=False)
depth: int = 0
... | https://api.github.com/repos/psf/black/pulls/3797 | 2023-07-17T07:41:27Z | 2023-07-22T15:49:51Z | 2023-07-22T15:49:51Z | 2023-07-22T17:28:47Z | 522 | psf/black | 23,881 | |
feat: add troubleshooting guide to bug report template again | diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
index 483e0de14..5b9cded68 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.yml
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -21,6 +21,7 @@ body:
5. Try a fresh installation of Fooocus in a different directory - see if ... | A few issues were popping up lately, which could have been solved by following steps in the troubleshooting guide.
This PR adds the link as checkbox to the bug report template again with the goal of better guiding users to fix their issues themselves. | https://api.github.com/repos/lllyasviel/Fooocus/pulls/2489 | 2024-03-09T13:12:02Z | 2024-03-09T13:13:16Z | 2024-03-09T13:13:16Z | 2024-03-09T13:13:16Z | 212 | lllyasviel/Fooocus | 7,000 |
Fix typos in README.md | diff --git a/README.md b/README.md
index 45c51dbf7..1c8fe3890 100644
--- a/README.md
+++ b/README.md
@@ -228,7 +228,7 @@ following rules are enabled by default:
* `git_rm_recursive` – adds `-r` when you try to `rm` a directory;
* `git_rm_staged` – adds `-f` or `--cached` when you try to `rm` a file with ... | This PR fixes small typos found in the README. | https://api.github.com/repos/nvbn/thefuck/pulls/997 | 2019-10-28T17:50:32Z | 2019-11-02T18:07:33Z | 2019-11-02T18:07:33Z | 2019-11-02T18:07:42Z | 715 | nvbn/thefuck | 30,630 |
bugfix: Crash fix for intermittent crashes that occur when opening MaskEditor. | diff --git a/web/extensions/core/maskeditor.js b/web/extensions/core/maskeditor.js
index 4b0c12747f..6cb3a53850 100644
--- a/web/extensions/core/maskeditor.js
+++ b/web/extensions/core/maskeditor.js
@@ -314,11 +314,11 @@ class MaskEditorDialog extends ComfyDialog {
imgCtx.drawImage(orig_image, 0, 0, drawWidth, draw... | This commit addresses a bug where a crash occurs when copying the backup canvas to the mask canvas if the size is 0 before setting it. | https://api.github.com/repos/comfyanonymous/ComfyUI/pulls/732 | 2023-06-03T09:40:41Z | 2023-06-03T16:25:49Z | 2023-06-03T16:25:49Z | 2023-06-05T12:10:15Z | 263 | comfyanonymous/ComfyUI | 17,978 |
Move progress info to beginning of site title | diff --git a/javascript/progressbar.js b/javascript/progressbar.js
index 671fde34047..43d1d1ce091 100644
--- a/javascript/progressbar.js
+++ b/javascript/progressbar.js
@@ -23,7 +23,7 @@ function check_progressbar(id_part, id_progressbar, id_progressbar_span, id_skip
if(opts.show_progress_in_title && progres... | Very small UI change, because who has so few tabs open that they can see to the end of a tab name? | https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/4894 | 2022-11-20T14:59:28Z | 2022-11-27T15:48:29Z | 2022-11-27T15:48:29Z | 2022-11-27T18:47:22Z | 155 | AUTOMATIC1111/stable-diffusion-webui | 39,881 |
pyauto | diff --git a/pyauto.py b/pyauto.py
new file mode 100644
index 0000000000..866b46a743
--- /dev/null
+++ b/pyauto.py
@@ -0,0 +1,25 @@
+#Author-Slayking1965
+#email-kingslayer8509@gmail.com
+import random
+import pyautogui
+import string
+
+
+chars = "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+
+char... | Hi,it is a sample program made out of a module named 'pyautogui'. Hope you liked it 👍 . Please accept my pull request sir/ma'am. | https://api.github.com/repos/geekcomputers/Python/pulls/995 | 2020-10-04T10:57:26Z | 2020-10-10T16:58:02Z | 2020-10-10T16:58:02Z | 2020-10-10T16:58:02Z | 201 | geekcomputers/Python | 31,487 |
🚨🚨 Fix group beam search | diff --git a/src/transformers/generation/beam_search.py b/src/transformers/generation/beam_search.py
index 792b2a17f5d6b..71a459c06852b 100644
--- a/src/transformers/generation/beam_search.py
+++ b/src/transformers/generation/beam_search.py
@@ -43,6 +43,10 @@
The id of the *padding* token.
eos_tok... | # What does this PR do?
Diverse beam search is a method that generates `num_beams//num_beam_groups` sentences for each group independently. However, the current code uses one BeamHypotheses shared by all groups. Therefore, group A will generate two sentences before group B outputs a sentence. So, I created BeamHypot... | https://api.github.com/repos/huggingface/transformers/pulls/24407 | 2023-06-21T16:41:22Z | 2023-06-27T09:43:11Z | 2023-06-27T09:43:11Z | 2023-07-06T03:32:58Z | 1,842 | huggingface/transformers | 12,513 |
Update set_module_args in unit test docs (#55244) | diff --git a/docs/docsite/rst/dev_guide/testing_units_modules.rst b/docs/docsite/rst/dev_guide/testing_units_modules.rst
index 07d5d51ed16be5..dd1e77cc6f20ce 100644
--- a/docs/docsite/rst/dev_guide/testing_units_modules.rst
+++ b/docs/docsite/rst/dev_guide/testing_units_modules.rst
@@ -288,20 +288,15 @@ Passing Argumen... | ##### SUMMARY
Backports #55244
* Update docs/docsite/rst/dev_guide/testing_units_modules.rst
`set_unit_args()` should be imported and used in the unit test documentation.
Co-Authored-By: kbreit <kevin.breit@kevinbreit.net>
(cherry picked from commit 521e62aa3873e562c31df0c5aabc9e01bb6643f0)
##### ISSUE ... | https://api.github.com/repos/ansible/ansible/pulls/55604 | 2019-04-22T14:21:34Z | 2019-04-22T14:59:40Z | 2019-04-22T14:59:39Z | 2019-07-25T17:32:10Z | 402 | ansible/ansible | 48,841 |
Bump asyncsleepiq to v1.4.1 | diff --git a/homeassistant/components/sleepiq/manifest.json b/homeassistant/components/sleepiq/manifest.json
index d58c20b14b8f..62bd3930c774 100644
--- a/homeassistant/components/sleepiq/manifest.json
+++ b/homeassistant/components/sleepiq/manifest.json
@@ -11,5 +11,5 @@
"documentation": "https://www.home-assistant... | <!--
You are amazing! Thanks for contributing to our project!
Please, DO NOT DELETE ANY TEXT from this template! (unless instructed).
-->
## Proposed change
<!--
Describe the big picture of your changes here to communicate to the
maintainers why we should accept this pull request. If it fixes a bug
... | https://api.github.com/repos/home-assistant/core/pulls/106682 | 2023-12-29T21:50:35Z | 2023-12-30T00:45:04Z | 2023-12-30T00:45:04Z | 2024-01-02T17:09:24Z | 414 | home-assistant/core | 38,872 |
update test cookie handling for Werkzeug 2.3 | diff --git a/src/flask/testing.py b/src/flask/testing.py
index 8cb2d1bd94..a972a3f5e9 100644
--- a/src/flask/testing.py
+++ b/src/flask/testing.py
@@ -11,7 +11,6 @@
from werkzeug.wrappers import Request as BaseRequest
from .cli import ScriptInfo
-from .globals import _cv_request
from .sessions import SessionMixin
... | https://api.github.com/repos/pallets/flask/pulls/5053 | 2023-04-12T17:35:33Z | 2023-04-12T17:57:14Z | 2023-04-12T17:57:14Z | 2023-04-27T00:05:33Z | 1,773 | pallets/flask | 20,066 | |
I: Grammar, spacing and typo fixes | diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md
index 8df991e15..d0c4ca172 100644
--- a/CppCoreGuidelines.md
+++ b/CppCoreGuidelines.md
@@ -1037,7 +1037,7 @@ Interface rule summary:
* [I.7: State postconditions](#Ri-post)
* [I.8: Prefer `Ensures()` for expressing postconditions](#Ri-ensures)
* [I.9: If an i... | https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/824 | 2017-01-01T01:01:25Z | 2017-01-02T20:51:19Z | 2017-01-02T20:51:19Z | 2017-01-02T22:44:08Z | 1,420 | isocpp/CppCoreGuidelines | 16,026 | |
Single letter permission changes (chmod +x) | diff --git a/share/adapters/chmod.sh b/share/adapters/chmod.sh
index 0ddfb897..9c20eddf 100755
--- a/share/adapters/chmod.sh
+++ b/share/adapters/chmod.sh
@@ -54,39 +54,93 @@ chmod_calc(){
fi
done
# If permission string is given -> calc number
- elif [[ ${#1} -eq 9 && $1 =~ ^[r,s,S,t,T,w,x,-]+$ ]]
+ el... | Previously chmod.sh only accepted strings of length 9 to convert to an equivalent permission number.
Now shorter strings are accepted for use cases such as:
- ```chmod +x```
- ```chmod +sx```
- etc ... | https://api.github.com/repos/chubin/cheat.sh/pulls/217 | 2020-07-03T13:01:40Z | 2020-07-06T19:40:55Z | 2020-07-06T19:40:55Z | 2020-07-06T20:16:30Z | 1,765 | chubin/cheat.sh | 15,250 |
Update quickstart.rst doc for awareness of Flask extensions | diff --git a/docs/quickstart.rst b/docs/quickstart.rst
index 39957d7749..4906d02536 100644
--- a/docs/quickstart.rst
+++ b/docs/quickstart.rst
@@ -873,6 +873,15 @@ can do it like this::
from werkzeug.contrib.fixers import LighttpdCGIRootFix
app.wsgi_app = LighttpdCGIRootFix(app.wsgi_app)
+Using Flask Extens... | Addresses concerns in issue #532 regarding not knowing about flask extensions as it is not mentioned the quick start guide. Maybe this can help increase the awareness of flask extensions to new users?
| https://api.github.com/repos/pallets/flask/pulls/1376 | 2015-03-12T04:14:56Z | 2015-03-12T08:36:07Z | 2015-03-12T08:36:07Z | 2020-11-14T04:53:04Z | 178 | pallets/flask | 20,781 |
add Awesome Core ML Models | diff --git a/README.md b/README.md
index 0893f1f1..4c619f87 100644
--- a/README.md
+++ b/README.md
@@ -1298,6 +1298,7 @@ be
* [Swift Brain](https://github.com/vlall/Swift-Brain) - The first neural network / machine learning library written in Swift. This is a project for AI algorithms in Swift for iOS and OS X develop... | https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/422 | 2017-09-11T07:57:22Z | 2017-09-11T15:42:10Z | 2017-09-11T15:42:10Z | 2017-09-11T15:42:14Z | 240 | josephmisiti/awesome-machine-learning | 52,209 | |
fix typo | diff --git a/tools/program.py b/tools/program.py
index cbca715a8e..fb9e3802a0 100755
--- a/tools/program.py
+++ b/tools/program.py
@@ -212,7 +212,7 @@ def train(config,
stats['lr'] = lr
train_stats.update(stats)
- if cal_metric_during_train: # onlt rec and cls need
+ i... | https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/1831 | 2021-01-26T07:16:51Z | 2021-01-26T07:44:12Z | 2021-01-26T07:44:12Z | 2021-01-26T07:44:12Z | 837 | PaddlePaddle/PaddleOCR | 42,197 | |
Add xeno-canto API to Animals | diff --git a/README.md b/README.md
index 584836d8f2..cdddef3970 100644
--- a/README.md
+++ b/README.md
@@ -182,6 +182,7 @@ API | Description | Auth | HTTPS | CORS |
| [RescueGroups](https://userguide.rescuegroups.org/display/APIDG/API+Developers+Guide+Home) | Adoption | No | Yes | Unknown |
| [Shibe.Online](http://sh... | <!-- Thank you for taking the time to work on a Pull Request for this project! -->
<!-- To ensure your PR is dealt with swiftly please check the following: -->
- [x] My submission is formatted according to the guidelines in the [contributing guide](/CONTRIBUTING.md)
- [x] My addition is ordered alphabetically
- [x]... | https://api.github.com/repos/public-apis/public-apis/pulls/3059 | 2022-02-16T00:24:57Z | 2022-03-02T04:37:20Z | 2022-03-02T04:37:20Z | 2022-03-02T04:37:50Z | 246 | public-apis/public-apis | 35,310 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.