Hacktoberfest
Hacktoberfest is a month-long celebration of open source software. Each October, open source maintainers give new contributors extra attention as they guide developers through their first pull requests on GitHub.
Here are 12,965 public repositories matching this topic...
What does this PR do?
-
Updated
Jul 8, 2022 - Python
-
Updated
Jul 8, 2022 - Python
-
Updated
Jul 7, 2022 - Python
-
Updated
Jul 9, 2022 - Python
Description
I'm trying to add options like log-opt max-size 5 and I can't.
Use case/motivation
I'm working in Hummingbot and I would like to offer the community a system to manage multiple bots, rebalance portfolio, etc. Our system needs a terminal to execute commands so currently I'm not able to use airflow to accomplish this task.
Related issues
No response
Are you willi
-
Updated
Jul 9, 2022 - Python
Dependency Audit
We should audit Poetry's dependencies to ensure they are rock solid.
Some of the dependencies could do with a refresh-
| Dependency | maintained?/last updated | notes |
|---|---|---|
| cachy | 7/8/19 | some tidying required. No type annotations. Deps out of date |
| ~~this dep should be replaced wit |
-
Updated
Jul 8, 2022 - Python
-
Updated
Jul 8, 2022 - Python
Currently when a job fails on GHA we upload all 109 MB across ~7k files which takes a surprisingly long time. What we really want is just the images that failed and the computed difference.
This is labeled as "good first issue" because there are no API designs here (it is all configuring CI).
Steps:
- sort out how to identify the failed test images (there is a systematic naming conventi
-
Updated
Jun 28, 2022 - Python
The warnings at
https://ipython.readthedocs.io/en/stable/config/extensions/autoreload.html
do not mention the issues with reloading modules with enums:
EnumandFlagare compared by identity (is, even if==is used (similarly toNone))- reloading a module, or importing the same module by a different name, creates new enums (look the same, but are not the same)
Is your feature request related to a problem?
While setting the target interface's ip should work in most cases, it's possible that multiple devices have the same ip.
Also i'm having trouble using a wireguard vpn when i set Table=off. Table=off disables setting up the routes for the vpn and it justs shows up as a regular device. The connection is fine as pycurl can access it when i set
Wagtail's Page model has a get_static_site_paths method that was originally added because Wagtail had a contrib module for static site generation.
That contrib module was removed years ago so I think we should remove this unused method and its tests
-
Updated
Jul 8, 2022 - Python
Add T9 decoder
Hey Hackers of this spoopy month!
Welcome to the Ciphey repo(s)!
This issue requires you to add a decoder.
This wiki section walks you through EVERYTHING you need to know, and we've added some more links at the bottom of this issue to detail more about the decoder.
https://github.com/Ciphey/Ciphey/wiki#adding-your-own-crackers--decoders
dvc metrics represent scalar numbers
This is nice for finding the difference in a metric between two models, however a couple metrics I'm interested in would benefit from being made more human readable by adding units. Specifically:
- model file size (kilobytes, megabytes, and gigabytes)
- inference latency (milliseconds, seconds)
There are
These need to remain on any existing events so that hashes and signatures etc remain valid. But there is no reason for them hang around. As Rich wrote on MSC2176:
The following event keys are to be removed from the list of those to be
preserved by a redaction:
membershipprev_state(Note this refers to the event-level
membershipproperty, rather than the
ordered_partitions is significantly faster than the multiset-outputting partitions function but no mention is made of it in partitions. It should be mentioned in partitions that this alternate function exists if the user desires the flat partition. The API is not the same, however, and I'm not sure if ordered_partitions could be non-destructively modified to permit the same input paramet
-
Updated
Jul 8, 2022 - Python
-
Updated
Jul 8, 2022 - Python
-
Updated
Jul 8, 2022 - Python
-
Updated
Jul 9, 2022 - Python
-
Updated
Jul 6, 2022 - Python
We have a lot of
is_prime(or similar) functions: https://github.com/TheAlgorithms/Python/search?p=4&q=is_prime, https://github.com/TheAlgorithms/Python/search?q=isPrime, data_structures/hashing/number_theory/prime_numbers, etc. Shall we use one common function for that exactly identical