id stringlengths 4 10 | text stringlengths 4 2.14M | source stringclasses 2
values | created timestamp[s]date 2001-05-16 21:05:09 2025-01-01 03:38:30 | added stringdate 2025-04-01 04:05:38 2025-04-01 07:14:06 | metadata dict |
|---|---|---|---|---|---|
350971348 | [Runtime] Rename swift_unknown* functions to swift_unknownObject*.
These functions don't accept local variable heap memory, although the names make it sound like they work on anything. When you try, they mistakenly identify such things as ObjC objects, call through to the equivalent objc_* function, and crash confusi... | gharchive/pull-request | 2018-08-15T21:19:26 | 2025-04-01T04:56:02.181497 | {
"authors": [
"mikeash",
"swift-ci"
],
"repo": "apple/swift",
"url": "https://github.com/apple/swift/pull/18737",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
389908964 | [5.0] Don't duplicate basic blocks ending in dynamic_method_br
IRGen does not support objc methods thunks.
No ABI impact
Fixes a compiler crash
rdar://46531828
@swift-ci Please test
| gharchive/pull-request | 2018-12-11T19:04:10 | 2025-04-01T04:56:02.183011 | {
"authors": [
"aschwaighofer"
],
"repo": "apple/swift",
"url": "https://github.com/apple/swift/pull/21215",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
611575755 | [AutoDiff] NFC: prettify commutative diagrams.
Make commutative diagrams pretty using Unicode box characters.
Use lowercase letters for arrow names.
Rationale: if we're going to draw a diagram, we might as well make it as pretty as possible. Maintenance shouldn't be an issue.
Unicode resource: https://antofthy.gitla... | gharchive/pull-request | 2020-05-04T03:02:49 | 2025-04-01T04:56:02.185849 | {
"authors": [
"dan-zheng"
],
"repo": "apple/swift",
"url": "https://github.com/apple/swift/pull/31525",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
644863224 | [CodeCompletion] Assume non-'isSimpleDidSet' in code completion
Code completion always want to see implicit oldValue with the correct type. Return false from SimpleDidSetRequest in code completion mode.
rdar://problem/64699286
@theblixguy Do you think this workaround is safe?
@swift-ci Please smoke test
Hmm, I ... | gharchive/pull-request | 2020-06-24T19:19:07 | 2025-04-01T04:56:02.189399 | {
"authors": [
"rintaro",
"theblixguy"
],
"repo": "apple/swift",
"url": "https://github.com/apple/swift/pull/32528",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1205918434 | [5.7] Integrate string processing API changes into release/5.7
Friend PR: apple/swift-experimental-string-processing#298.
apple/swift-experimental-string-processing#291
@swift-ci please test
https://github.com/apple/swift-experimental-string-processing/pull/298
@swift-ci please test
https://github.com/apple/swi... | gharchive/pull-request | 2022-04-15T22:11:25 | 2025-04-01T04:56:02.192930 | {
"authors": [
"Azoy",
"rxwei"
],
"repo": "apple/swift",
"url": "https://github.com/apple/swift/pull/42398",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
174865300 | WIP Error out when things fail to load (proof of concept)
Turns deserialization into a failable operation, in case a module's dependency has changed. This is a very very basic implementation that just threads the 'Expected' type through everything; it probably still results in just as much crashing as before when thi... | gharchive/pull-request | 2016-09-02T23:33:49 | 2025-04-01T04:56:02.195633 | {
"authors": [
"jrose-apple",
"slavapestov",
"swift-ci"
],
"repo": "apple/swift",
"url": "https://github.com/apple/swift/pull/4608",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
196475480 | [3.1] Emit delayed conformance diagnostics in multi-file scenarios
The protocol conformance checker tries to delay the emission of
diagnostics related to the failure of a type to conform to a protocol
until the source file that contains the conformance is encountered, to
provide redundant diagnostics. However, if a f... | gharchive/pull-request | 2016-12-19T17:34:30 | 2025-04-01T04:56:02.202717 | {
"authors": [
"DougGregor",
"shahmishal",
"swift-ci"
],
"repo": "apple/swift",
"url": "https://github.com/apple/swift/pull/6391",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1728364676 | Implement checking for misuse of self in discard-ing contexts.
As part of SE-390, you're required to write either:
consume self
pass self as a consuming parameter to a function
discard self
before the function ends in a context that contains a
discard self somewhere. This prevents people from accidentally
invoking ... | gharchive/pull-request | 2023-05-27T00:16:20 | 2025-04-01T04:56:02.205485 | {
"authors": [
"kavon"
],
"repo": "apple/swift",
"url": "https://github.com/apple/swift/pull/66190",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1738543563 | AST: Requestify lookup of protocol referenced by ImplementsAttr
Direct lookup relied in primary file checking to have filled in the protocol type stored in the ImplementsAttr. This was already wrong with multi-file test cases in non-WMO mode, and crashed in the ASTPrinter if printing a declaration in a non-primary fi... | gharchive/pull-request | 2023-06-02T17:18:49 | 2025-04-01T04:56:02.207199 | {
"authors": [
"slavapestov"
],
"repo": "apple/swift",
"url": "https://github.com/apple/swift/pull/66301",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1768455561 | [Observable] Test macro through the plugin server
As a non-trivial macro, Observable is a good stress-test for the plugin server. Make sure to run it as part of regression testing.
@swift-ci please smoke test
| gharchive/pull-request | 2023-06-21T20:46:17 | 2025-04-01T04:56:02.208149 | {
"authors": [
"DougGregor"
],
"repo": "apple/swift",
"url": "https://github.com/apple/swift/pull/66827",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2216779521 | [Concurrency] Fix signature mismatch of _task_serialExecutor_checkIsolated
_task_serialExecutor_checkIsolated is defined as returning nothing in Executor.swift, but it was used as returning a boolean in C++ side.
@swift-ci smoke test
Lgtm thanks
Would you mind making a pr to release/6.0 as well?
Sure~
Opene... | gharchive/pull-request | 2024-03-31T04:52:06 | 2025-04-01T04:56:02.210749 | {
"authors": [
"kateinoigakukun",
"ktoso"
],
"repo": "apple/swift",
"url": "https://github.com/apple/swift/pull/72734",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
422007349 | Drawing classifier pretrained_model_url=None API change request
Drawing classifier uses pretrained_model_url as
We should consider renaming the option to warm_start:
'auto' as the default
None as the disabled one
string i.e a name of the model (e.g. quick-draw-1000) to refer to specific versions
URLs should be reser... | gharchive/issue | 2019-03-18T02:05:46 | 2025-04-01T04:56:02.213202 | {
"authors": [
"shantanuchhabra",
"srikris"
],
"repo": "apple/turicreate",
"url": "https://github.com/apple/turicreate/issues/1614",
"license": "BSD-3-Clause",
"license_type": "permissive",
"license_source": "github-api"
} |
170513463 | ModelSelect2Mixin - avoid queryset evaluation
ref #285
Coverage remained the same at 99.107% when pulling e3503c98d661e69d1478fb50fd02779eb369b93a on thejoeejoee:master into 99aed19308446389447d39ff54b3468c97fb7c7b on applegrew:master.
Released in 5.8.7
| gharchive/pull-request | 2016-08-10T20:40:27 | 2025-04-01T04:56:02.221241 | {
"authors": [
"codingjoe",
"coveralls",
"thejoeejoee"
],
"repo": "applegrew/django-select2",
"url": "https://github.com/applegrew/django-select2/pull/287",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
520552586 | Improvements to MacOS packaging
ported over changes from appleseed-maya packaging
package script optionally builds a Application
package script builds dmg file instead of zip
@dictoon how is this for the drive icon instead? I rendered it with appleseed.
I rendered it with appleseed.
Ah, lovely touch :)
The l... | gharchive/pull-request | 2019-11-10T04:34:03 | 2025-04-01T04:56:02.229850 | {
"authors": [
"dictoon",
"markreidvfx",
"oktomus"
],
"repo": "appleseedhq/appleseed",
"url": "https://github.com/appleseedhq/appleseed/pull/2733",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
189235967 | Set --apiserver-count flag on API servers
When standing up an HA cluster, we need to set the --apiserver-count flag on the API servers.
See https://github.com/kubernetes/kubernetes/issues/24327
We actually do set this flag. Closing.
| gharchive/issue | 2016-11-14T21:48:58 | 2025-04-01T04:56:02.235994 | {
"authors": [
"alexbrand"
],
"repo": "apprenda/kismatic",
"url": "https://github.com/apprenda/kismatic/issues/79",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
1855088630 | fix: typo on datasource
Checklist
I have:
[ ] run the content through Grammarly
[ ] linked to sample apps when relevant
[ ] added the meta description for each page in the PR
[ ] minimized the callouts and added only when necessary
[ ] added the queryString parameter to the Tabs (if used)
[ ] masked PII in images. F... | gharchive/pull-request | 2023-08-17T14:09:43 | 2025-04-01T04:56:02.256118 | {
"authors": [
"danciaclara",
"jenting"
],
"repo": "appsmithorg/appsmith-docs",
"url": "https://github.com/appsmithorg/appsmith-docs/pull/1634",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1276768017 | [Bug]: Phone & currency Input widget Popup breaks on wrong search text in popup filter
Is there an existing issue for this?
[X] I have searched the existing issues
Description
When we do quick search on popup that appears to change country code/currency, the popup breaks when we do wrong search instead of showing '... | gharchive/issue | 2022-06-20T11:14:27 | 2025-04-01T04:56:02.259462 | {
"authors": [
"Sripriya93",
"chandannkumar"
],
"repo": "appsmithorg/appsmith",
"url": "https://github.com/appsmithorg/appsmith/issues/14678",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1418792645 | [Docs]: #11982 [Feature] HubSpot CRM API Saas Integration
Is there an existing issue for this?
[X] I have searched the existing issues
Documentation Link
No response
Describe the problem
TODO
[ ] Evaluate if this task is needed. If not add the "Skip Docs" label on the parent ticket
[ ] Fill these fields
[ ] Pre... | gharchive/issue | 2022-10-21T19:53:54 | 2025-04-01T04:56:02.271869 | {
"authors": [
"danciaclara",
"felix-appsmith"
],
"repo": "appsmithorg/appsmith",
"url": "https://github.com/appsmithorg/appsmith/issues/17818",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1730348500 | [Bug]: Evaluations returns the exepected value later in the cycles
Is there an existing issue for this?
[X] I have searched the existing issues
Description
It is observed that for the JSONForm widget whenever we have a field that recieves the data as Array of objects or nested object structure then the defaultValue... | gharchive/issue | 2023-05-29T08:47:13 | 2025-04-01T04:56:02.279834 | {
"authors": [
"bharath31",
"keyurparalkar"
],
"repo": "appsmithorg/appsmith",
"url": "https://github.com/appsmithorg/appsmith/issues/23825",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1807076878 | [Bug]:This value does not evaluate to type Video URL
Is there an existing issue for this?
[X] I have searched the existing issues
Description
When I try to give a static Ip address to the video widget, it returns: "This value does not evaluate to type Video URL."
The strange thing is when I bind the I.P. address to... | gharchive/issue | 2023-07-17T06:28:52 | 2025-04-01T04:56:02.285830 | {
"authors": [
"Dorian6005",
"HyMike",
"Nikhil-Nandagopal",
"Nirupam-Naragund",
"alzerwv",
"becmorrell",
"dilippitchika",
"narhzih",
"sbalaji1192"
],
"repo": "appsmithorg/appsmith",
"url": "https://github.com/appsmithorg/appsmith/issues/25386",
"license": "Apache-2.0",
"l... |
1377726700 | feat: Support row virtualization using react-window in table widget
Introducing the virtual row functionality to improve the performance of the table when there are a lot of rows to render.
React-window library is used to implement the virtual row functionality. This functionality will only be enabled if the cell wra... | gharchive/pull-request | 2022-09-19T10:18:54 | 2025-04-01T04:56:02.291808 | {
"authors": [
"laveena-en",
"sbalaji1192"
],
"repo": "appsmithorg/appsmith",
"url": "https://github.com/appsmithorg/appsmith/pull/16872",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1380684607 | fix: auto height text widget hide overflow
Hiding the Overflow options in the Text widget if Auto Height is enabled.
@ankurrsinghal @Sripriya93 Adding a note regarding the feature missing from this:
The value of overflow property should become no-overflow when dynamic height is enabled, this is so that the dynamic ... | gharchive/pull-request | 2022-09-21T10:17:12 | 2025-04-01T04:56:02.293365 | {
"authors": [
"ankurrsinghal",
"riodeuno"
],
"repo": "appsmithorg/appsmith",
"url": "https://github.com/appsmithorg/appsmith/pull/16949",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1648680433 | chore: Move error from saga to action creator
Description
Improve error reporting for missing page id
Fixes # (issue)
if no issue exists, please create an issue and ask the maintainers about this first
Media
A video or a GIF is preferred. when using Loom, don’t embed because it looks like it’s a GIF. instead, just... | gharchive/pull-request | 2023-03-31T05:10:26 | 2025-04-01T04:56:02.301156 | {
"authors": [
"hetunandu"
],
"repo": "appsmithorg/appsmith",
"url": "https://github.com/appsmithorg/appsmith/pull/21944",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2134252842 | fix: Debugger shows up with no tab selected
Pull Request Template
Use this template to quickly create a well written pull request. Delete all quotes before creating the pull request.
Description
Add a TL;DR when description is extra long (helps content team)
Please include a summary of the changes and which issue ... | gharchive/pull-request | 2024-02-14T12:31:10 | 2025-04-01T04:56:02.312068 | {
"authors": [
"hetunandu"
],
"repo": "appsmithorg/appsmith",
"url": "https://github.com/appsmithorg/appsmith/pull/31126",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
537290264 | nodejs(all): npm install runs as root in the container, so can't write to disk
Describe the bug
A clear and concise description of what the bug is.
The npm install runs as root in the container, and since npm runs package-defined scripts, it has a protective mechanism to avoid running them as root, it drops its privi... | gharchive/issue | 2019-12-13T00:49:16 | 2025-04-01T04:56:02.318959 | {
"authors": [
"sam-github"
],
"repo": "appsody/stacks",
"url": "https://github.com/appsody/stacks/issues/566",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
421583787 | Can't scan long CODE 39 barcodes
I am using code 39 barcode. (Like in the img below)
This does not scan on my Nexus 5x with Android 8.1.0
On Pixel scan is wrong 9/10 times.
Works fine on Samsung s8 and Pixel 3.
This is fixed - only had to upgrade to newer version
| gharchive/issue | 2019-03-15T15:45:58 | 2025-04-01T04:56:02.322106 | {
"authors": [
"SaltumDis"
],
"repo": "apptreesoftware/flutter_barcode_reader",
"url": "https://github.com/apptreesoftware/flutter_barcode_reader/issues/96",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2447715449 | fix(an-2688): update puppeteer, launch parameters, and async functions
Description:
Bump puppeteer version to 22
Change headless from new to shell as stated in the breaking changes.
Updated launch args and disable unnecessary functions.
Joined async tasks and await together using Promise.all
:tada: This PR is inclu... | gharchive/pull-request | 2024-08-05T06:27:30 | 2025-04-01T04:56:02.324682 | {
"authors": [
"apvsystem",
"deguzman-carlo"
],
"repo": "appvantageasia/html2pdf-service",
"url": "https://github.com/appvantageasia/html2pdf-service/pull/210",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
130809049 | Add support for aptible domain:create
To create custom VHOSTs for a given app
aptible domain:create --service [web, worker] --type [internal, external] \
--app [APP_HANDLE] --cert [PATH_TO_CRT_FILE] #omit --cert to use existing certificate
Could help with automation.
:+1:
:+1:
:+1:
For anyone following this ... | gharchive/issue | 2016-02-02T20:33:49 | 2025-04-01T04:56:02.356755 | {
"authors": [
"fancyremarker",
"gabehamilton",
"scottynomad",
"syawaralaycare",
"wcpines"
],
"repo": "aptible/aptible-cli",
"url": "https://github.com/aptible/aptible-cli/issues/140",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
2375093311 | [Feature Request]: About Section Not Working on Myntra Clone
Is there an existing issue for this?
[X] I have searched the existing issues
Feature Description
The "About" section on the Myntra clone is not functioning as expected. Users are unable to view the information intended to be displayed in this section.
Use... | gharchive/issue | 2024-06-26T11:34:59 | 2025-04-01T04:56:02.380778 | {
"authors": [
"anuragverma108",
"payalsinha12"
],
"repo": "apu52/METAVERSE",
"url": "https://github.com/apu52/METAVERSE/issues/866",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2298487267 | fix(631): load style and index.js correctly in food website
Title and Issue number
Title : Food Website styles and items are not loading
Issue No. : #631
Code Stack : html changes only
Close #631
Video (mandatory)
Checklist:
[X] I have mentioned the issue number in my Pull Request.
[X] I have commented my code, p... | gharchive/pull-request | 2024-05-15T17:47:00 | 2025-04-01T04:56:02.385989 | {
"authors": [
"Hassaan68"
],
"repo": "apu52/METAVERSE",
"url": "https://github.com/apu52/METAVERSE/pull/636",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2660078966 | Will the mod be on Forge?
Ik fabric is good for performance and a lot of things, just curious since i'm working on a modpack for Forge :p
I currently have a special version on GitHub that is compatible with Sinytra Connector. I might make a Forge port in the future, but it's not really a priority right now, unfortu... | gharchive/issue | 2024-11-14T21:17:55 | 2025-04-01T04:56:02.402020 | {
"authors": [
"aqariio",
"dsniav",
"santacapra"
],
"repo": "aqariio/Fowl-Play",
"url": "https://github.com/aqariio/Fowl-Play/issues/15",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2289312130 | Failed to install aqua v2.27.4
https://github.com/aquaproj/aqua-registry/pull/22727
https://github.com/aquaproj/aqua-registry/actions/runs/9029687702/job/24812502432?pr=22727
FAILED: SLSA verification failed: error searching rekor entries: no matching rekor entries
time="2024-05-10T08:43:57Z" level=info msg="Verifi... | gharchive/issue | 2024-05-10T08:59:00 | 2025-04-01T04:56:02.411920 | {
"authors": [
"suzuki-shunsuke"
],
"repo": "aquaproj/aqua-installer",
"url": "https://github.com/aquaproj/aqua-installer/issues/636",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1821571200 | When installing snaplet/cli, it doesn't include the default version from snaplet/cli/pkg.yaml
package name
snaplet/cli
aqua version
aqua version 2.10.1 (fbf3b157b21897fa2f315fbc30474acafded108d)
Environment
MacOS
arm64
Overview
How to reproduce
aqua init
aqua g -i snaplet/cli
Expected Behavior
I would expect th... | gharchive/issue | 2023-07-26T04:22:11 | 2025-04-01T04:56:02.420206 | {
"authors": [
"Gowiem",
"suzuki-shunsuke"
],
"repo": "aquaproj/aqua-registry",
"url": "https://github.com/aquaproj/aqua-registry/issues/14082",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
242414163 | Show how manifesto affects repository
I think it would be worthwhile including a screen shot and some details about what users should expect in Hub when they add a manifest.
For example, seeing the _manifesto_lumogon and _manifesto images wasn't unexpected but could be for some users. And setting expectations is usef... | gharchive/issue | 2017-07-12T15:07:21 | 2025-04-01T04:56:02.441828 | {
"authors": [
"garethr",
"lizrice",
"viccab"
],
"repo": "aquasecurity/manifesto",
"url": "https://github.com/aquasecurity/manifesto/issues/2",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
834071048 | Add check for tfvars files and warn if not being used.
Closes #641, provide a warning when a tfvars is available but not being used by tfsec
Hi @owenrumney, I'm 6 months into Terraform and based on what I've read, it seems the correct parameter to check would be -var-file, not --tf-vars. I tried to make TF work usi... | gharchive/pull-request | 2021-03-17T18:35:56 | 2025-04-01T04:56:02.443727 | {
"authors": [
"diogomaul",
"owenrumney"
],
"repo": "aquasecurity/tfsec",
"url": "https://github.com/aquasecurity/tfsec/pull/651",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
935123597 | Keep the check for rule AWS021 consistent with the error message
The error message for AWS021 says -
"You should not use outdated/insecure TLS versions for
encryption. You should be using TLS v1.2+."
The rule is now consistent with this version and will not
complain if you afix a version higher than what tfsec prescr... | gharchive/pull-request | 2021-07-01T18:50:17 | 2025-04-01T04:56:02.445591 | {
"authors": [
"bitsapien",
"liamg"
],
"repo": "aquasecurity/tfsec",
"url": "https://github.com/aquasecurity/tfsec/pull/813",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2031042604 | Update Plugin Artifacts Links for v0.151.14
Automated changes by create-pull-request GitHub action
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.You have signed the CLA already bu... | gharchive/pull-request | 2023-12-07T15:48:46 | 2025-04-01T04:56:02.448279 | {
"authors": [
"CLAassistant",
"naortalmor1"
],
"repo": "aquasecurity/trivy-plugin-aqua",
"url": "https://github.com/aquasecurity/trivy-plugin-aqua/pull/722",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2070884753 | Macro names and parameters should not be visible
Description
Macro name and parameters are not visible in the rendered PDF file, but only in the HTML version.
This problem seems to arise for all paper using the standard class for the TheoretiCS journal (https://theoretics.episciences.org/)
If this can not be changed... | gharchive/issue | 2024-01-08T17:05:02 | 2025-04-01T04:56:02.476989 | {
"authors": [
"dginev",
"rasmus-pagh"
],
"repo": "arXiv/html_feedback",
"url": "https://github.com/arXiv/html_feedback/issues/253",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1209098373 | addWebpackExternals: react is not defined
Problem:
when i use addWebpackExternals(deps):
addWebpackExternals({
react: "React",
"react-dom": "ReactDom"
});
browser occur following error:
external "react":1 Uncaught ReferenceError: react is not defined
at Object.react (external "react":1:1)
at __webpack_re... | gharchive/issue | 2022-04-20T02:56:54 | 2025-04-01T04:56:02.494646 | {
"authors": [
"davidbejarcaceres",
"promiseLC",
"xsf0105"
],
"repo": "arackaf/customize-cra",
"url": "https://github.com/arackaf/customize-cra/issues/322",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
415929198 | member_add機能実装完了
memberをviewからdbへ登録するまでの処理を実装しました。
OK
OK
| gharchive/pull-request | 2019-03-01T03:48:46 | 2025-04-01T04:56:02.497885 | {
"authors": [
"arai18"
],
"repo": "arai18/problem07",
"url": "https://github.com/arai18/problem07/pull/2",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
331793764 | how do i use my own domain like seed1.exmaple.com
how do i use my own domain like seed1.exmaple.com
adding it in the ruweb.cnf doesn't seems to work.
nevermind forgot the /rutorrent.
| gharchive/issue | 2018-06-12T23:55:02 | 2025-04-01T04:56:02.499336 | {
"authors": [
"theaoneone"
],
"repo": "arakasi72/rtinst",
"url": "https://github.com/arakasi72/rtinst/issues/339",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
974490916 | Improve extract pipeline
Improve CLI by dividing the command line with different modes to split the options.
Pass the extracted_features option from train to extract to save it in the preprocessing json to avoid confusion when loading data on the fly.
Re use Nipype to allow parallel processing.
This issue is partia... | gharchive/issue | 2021-08-19T10:01:46 | 2025-04-01T04:56:02.502141 | {
"authors": [
"mdiazmel",
"ravih18"
],
"repo": "aramis-lab/clinicadl",
"url": "https://github.com/aramis-lab/clinicadl/issues/186",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
186681816 | supervisor dies instead of respawning child
my environment running ArangoDB
I'm using the latest ArangoDB of the respective release series:
[x] 3.0
On this operating system:
[x] Linux Ubuntu .deb
my problem is
supervisor dies after a child is sent a SIGSEGV.
The issue can be reproduced by running the following:
F... | gharchive/issue | 2016-11-02T00:12:01 | 2025-04-01T04:56:02.513262 | {
"authors": [
"arges",
"dothebart",
"jsteemann",
"jwinters7",
"leroux",
"tsh56"
],
"repo": "arangodb/arangodb",
"url": "https://github.com/arangodb/arangodb/issues/2140",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
863803093 | Bug fix/testing cluster startup wait for foxx
Scope & Purpose
it seems we should do this to make sure foxx is actually up and running properly?
[x] :hankey: Bugfix
added to other PR.
| gharchive/pull-request | 2021-04-21T12:15:14 | 2025-04-01T04:56:02.515164 | {
"authors": [
"dothebart"
],
"repo": "arangodb/arangodb",
"url": "https://github.com/arangodb/arangodb/pull/14043",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
1262296068 | correction for drop graph, collection handling
The wording of comment indicated supplying true results in the collections being preserved but the opposite is true. It might make more sense to update the comment but wasn't sure certain on the intent of the example.
This is indeed confusing. I think the point was to ... | gharchive/pull-request | 2022-06-06T19:31:34 | 2025-04-01T04:56:02.517687 | {
"authors": [
"Simran-B",
"cw00dw0rd"
],
"repo": "arangodb/docs",
"url": "https://github.com/arangodb/docs/pull/1012",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
545709915 | Java driver update for 3.6.0
To be backported to 3.5 version of docs.
Please also update AqlQueryOptions with maxRuntime in java-reference-database-queries.md
| gharchive/pull-request | 2020-01-06T12:48:38 | 2025-04-01T04:56:02.519366 | {
"authors": [
"Simran-B",
"rashtao"
],
"repo": "arangodb/docs",
"url": "https://github.com/arangodb/docs/pull/282",
"license": "apache-2.0",
"license_type": "permissive",
"license_source": "bigquery"
} |
544281455 | ACM Events Page
Fixes #104
Ready to merge
| gharchive/pull-request | 2019-12-31T22:28:51 | 2025-04-01T04:56:02.545371 | {
"authors": [
"VinayakTekade"
],
"repo": "aravindvnair99/FACE-Amrita-Bengaluru",
"url": "https://github.com/aravindvnair99/FACE-Amrita-Bengaluru/pull/109",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1480838238 | 🛑 ARCaptcha API is down
In 08c7e83, ARCaptcha API (https://api.arcaptcha.ir/arcaptcha/api/heartbeat) was down:
HTTP code: 0
Response time: 0 ms
Resolved: ARCaptcha API is back up in 216aa46.
| gharchive/issue | 2022-12-07T03:41:56 | 2025-04-01T04:56:02.551789 | {
"authors": [
"amirrezawh"
],
"repo": "arcaptcha/ARCaptcha-monitoring",
"url": "https://github.com/arcaptcha/ARCaptcha-monitoring/issues/148",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1563374681 | 🛑 ARCaptcha S3 is down
In 2d41762, ARCaptcha S3 (https://api.arcaptcha.ir/arcaptcha/api/s3) was down:
HTTP code: 400
Response time: 333 ms
Resolved: ARCaptcha S3 is back up in 096be5a.
| gharchive/issue | 2023-01-30T23:34:06 | 2025-04-01T04:56:02.554103 | {
"authors": [
"haji4ref"
],
"repo": "arcaptcha/ARCaptcha-monitoring",
"url": "https://github.com/arcaptcha/ARCaptcha-monitoring/issues/244",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
427958265 | [Bug] java.lang.NullPointerException thrown when loading a model
Hello! I've been using Archi pretty extensively, and even decided to set up a machine to automate some Archi activities. However, I do have this problem:
Version of Archi, Operating System
Archi version: 4.3.3 32 bit
I am on xubuntu that self-identi... | gharchive/issue | 2019-04-01T23:38:18 | 2025-04-01T04:56:02.596679 | {
"authors": [
"Phillipus",
"VladislavEkimtcov",
"jbsarrodie"
],
"repo": "archimatetool/archi",
"url": "https://github.com/archimatetool/archi/issues/461",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
140986845 | Decouple building uses from code (ADMIN, SR, etc.)
Currently, we use GlobalVariables.list_uses to define the list of valid uses for the program. These uses are linked with the schedules and with the attributes in buildings.shp. While we try to make sure (e.g. in properties.py) that we don't reference this list explic... | gharchive/issue | 2016-03-15T14:19:20 | 2025-04-01T04:56:02.676763 | {
"authors": [
"JIMENOFONSECA",
"daren-thomas"
],
"repo": "architecture-building-systems/CEAforArcGIS",
"url": "https://github.com/architecture-building-systems/CEAforArcGIS/issues/73",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
1649584439 | benchbase: default to one or two workloads instead of all
Too many tables for the demo. enable all for batch testing. but give options in case we do want to demo all
defaulting to TPCC as it has deletes
| gharchive/issue | 2023-03-31T15:29:21 | 2025-04-01T04:56:02.715240 | {
"authors": [
"robert-s-lee"
],
"repo": "arcionlabs/arcion-demo",
"url": "https://github.com/arcionlabs/arcion-demo/issues/98",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1278333411 | arco init hello-arco-pro 出现 “请提交你的 Git 修改后继续操作”
[ ] I'm sure this does not appear in the issue list of the repository
Basic Info
Package Name And Version: arco-design-pro-vue@2.5.5
Browser: chrome101.0.0.0
@swurtheone 这个是arco-cli的报错。要求初始化的文件夹是全新的未进行git初始化的。
@sHow8e
是不是v1.27.1这个版本的问题,我更换了多个新文件夹和新环境都是如此
@sHo... | gharchive/issue | 2022-06-21T11:50:55 | 2025-04-01T04:56:02.718709 | {
"authors": [
"sHow8e",
"swurtheone"
],
"repo": "arco-design/arco-design-pro-vue",
"url": "https://github.com/arco-design/arco-design-pro-vue/issues/126",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1271547371 | 表格在展示树形数据并开启超出省略时缩进异常
[ ] I'm sure this does not appear in the issue list of the repository
Basic Info
Package Name And Version: @arco-design/web-vue@2.29.1
Framework version: vue3
Browser: chrome102.0.0.0
Steps to reproduce
表格展示树形数据
设置行属性 :ellipsis="true" :tooltip="true"
孙子节点数据缩进丢失
@skytot 这个问题在 2.30.x 版本修复了,... | gharchive/issue | 2022-06-15T01:29:59 | 2025-04-01T04:56:02.722096 | {
"authors": [
"flsion",
"skytot"
],
"repo": "arco-design/arco-design-vue",
"url": "https://github.com/arco-design/arco-design-vue/issues/1289",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1062609909 | Table组件的 stripe 样式不正确
[x] I'm sure this does not appear in the issue list of the repository
基本信息
依赖包名 及 版本: @arco-design/web-vue: 2.6.1
系统版本: MacOS 12.0.1
浏览器版本: Edge 95
复现地址: https://arco.design
预期结果
拥有背景色
复现步骤
Table 组件设置 stripe = true 时样式不正确,拥有斑马纹的行没有背景色。
@Kigoal 这个我们看了下,目前没有合适的变量用来替代这个颜色,需要和设计讨论下,增加一个新的变量颜色... | gharchive/issue | 2021-11-24T16:06:24 | 2025-04-01T04:56:02.726294 | {
"authors": [
"Flsion",
"Kigoal"
],
"repo": "arco-design/arco-design-vue",
"url": "https://github.com/arco-design/arco-design-vue/issues/250",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1359976801 | docs(split): fix typo
Types of changes
[ ] New feature
[ ] Bug fix
[ ] Enhancement
[ ] Component style change
[ ] Typescript definition change
[x] Documentation change
[ ] Coding style change
[ ] Refactoring
[ ] Test cases
[ ] Continuous integration
[ ] Breaking change
[ ] Others
Background and context
Soluti... | gharchive/pull-request | 2022-09-02T10:02:24 | 2025-04-01T04:56:02.732996 | {
"authors": [
"hehehai",
"ppeyliang"
],
"repo": "arco-design/arco-design-vue",
"url": "https://github.com/arco-design/arco-design-vue/pull/1597",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1290939681 | 样式警告
autoprefixer: end value has mixed support, consider using flex-end instead
应该在 #1062 里修复了,你更新下版本试试看呢
已经修复 , 谢谢
| gharchive/issue | 2022-07-01T05:46:03 | 2025-04-01T04:56:02.734514 | {
"authors": [
"chengluliu",
"jiahao-c"
],
"repo": "arco-design/arco-design",
"url": "https://github.com/arco-design/arco-design/issues/1069",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1646382121 | PE-3352: Adds the owners field to the GQL queries
--- Releases ---
Android release: https://appdistribution.firebase.google.com/testerapps/1:305132849030:android:6cf0cd5ec064fad3ffce07/releases/7rjmkv7vbrpa0
iOS release: https://appdistribution.firebase.google.com/testerapps/1:305132849030:ios:06ea33a95a2e0d42ffce07/... | gharchive/pull-request | 2023-03-29T19:21:24 | 2025-04-01T04:56:02.742601 | {
"authors": [
"matibat"
],
"repo": "ardriveapp/ardrive-web",
"url": "https://github.com/ardriveapp/ardrive-web/pull/987",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1279948613 | Free underlying Dynamic Seq Scan structures after processing of each partition
The tables with high count of partitions can drain high amount of executor
memory for processing. This can be especially critical for column-oriented
tables, because we allocating a buffer (which is triple of block size) for each
column. F... | gharchive/pull-request | 2022-06-22T10:51:31 | 2025-04-01T04:56:02.784329 | {
"authors": [
"InnerLife0",
"andr-sokolov"
],
"repo": "arenadata/gpdb",
"url": "https://github.com/arenadata/gpdb/pull/350",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1970389945 | Add license
Add license for the repository
I would like to work on this, Please assign me
To do this, we'd need all of the contributors to sign off on this, so I really doubt that's gonna happen.
With the absolute most work coming from 5 people (@shivshank, @dxenonb, @madsmtm, @dhardy and @pythoneer according t... | gharchive/issue | 2023-10-31T12:44:29 | 2025-04-01T04:56:02.888613 | {
"authors": [
"Kaushik080",
"ccoenen",
"dhardy",
"dxenonb",
"madsmtm",
"pythoneer"
],
"repo": "areweguiyet/areweguiyet",
"url": "https://github.com/areweguiyet/areweguiyet/issues/133",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
304332503 | @multi_cached decorator should use different prefixes by default
With the @cached decorator, there's no problem in using it with different methods since it will create different prefixes based on the method signature.
@cached(alias='default')
async def foo1(self):
return 1
@cached(alias='default')
async def foo2... | gharchive/issue | 2018-03-12T11:22:47 | 2025-04-01T04:56:02.907189 | {
"authors": [
"argaen",
"jcugat"
],
"repo": "argaen/aiocache",
"url": "https://github.com/argaen/aiocache/issues/388",
"license": "bsd-3-clause",
"license_type": "permissive",
"license_source": "bigquery"
} |
248309920 | Add support for retrieving ttl of a key in redis
I've seen the source code of this awesome project, it is great. But I didn't find a way to get ttl of a key directly. So I consider it necessary to add a function to retrieve ttl of a key.
Codecov Report
Merging #320 into master will decrease coverage by 0.77%.
The ... | gharchive/pull-request | 2017-08-07T05:19:32 | 2025-04-01T04:56:02.914468 | {
"authors": [
"Jerevia",
"codecov-io"
],
"repo": "argaen/aiocache",
"url": "https://github.com/argaen/aiocache/pull/320",
"license": "bsd-3-clause",
"license_type": "permissive",
"license_source": "bigquery"
} |
1341064247 | How create workflow when the argo server don't need token?
I tried create a workflow with token in None but the get_global_token function crash me.
My code.
from hera import Task, Workflow, WorkflowService
from config import HOST
with Workflow("container", service=WorkflowService(host=HOST, token=None, verify_ssl=F... | gharchive/issue | 2022-08-17T01:51:56 | 2025-04-01T04:56:02.918750 | {
"authors": [
"MichaelLan"
],
"repo": "argoproj-labs/hera-workflows",
"url": "https://github.com/argoproj-labs/hera-workflows/issues/239",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1303361244 | Resubmit PR for workflow of workflows
#88
Merging as part of #255!
| gharchive/pull-request | 2022-07-13T12:24:06 | 2025-04-01T04:56:02.919588 | {
"authors": [
"flaviuvadan",
"michaelvay"
],
"repo": "argoproj-labs/hera-workflows",
"url": "https://github.com/argoproj-labs/hera-workflows/pull/214",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2550053293 | Add Linkerd example
work on l5d example
add files for example and work on the readme.md
add ns as well
@kostis-codefresh Done
Thank you!
| gharchive/pull-request | 2024-09-26T09:34:08 | 2025-04-01T04:56:02.921473 | {
"authors": [
"AlonGluz",
"kostis-codefresh"
],
"repo": "argoproj-labs/rollouts-plugin-trafficrouter-gatewayapi",
"url": "https://github.com/argoproj-labs/rollouts-plugin-trafficrouter-gatewayapi/pull/81",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
529506057 | Restart failed DAG step
Suppose we have a complex DAG, and one step fails.
Is there a way to manually retry the failed step only and let it to continue execution?
I tried to resubmit with memoize, but it fails with: volume 'work' not found in workflow spec,
and automatic retry fails because of messed arguments.
Sor... | gharchive/issue | 2019-11-27T18:16:43 | 2025-04-01T04:56:03.006578 | {
"authors": [
"lueenavarro",
"mckjhd",
"simster7"
],
"repo": "argoproj/argo",
"url": "https://github.com/argoproj/argo/issues/1803",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
405127198 | Fix argo logs empty content when workflow run in virtual kubelet env
VirtualKubelet is here.
When argo run workflow in virtual kubelet env, the virtual kubelet return not standard log entry. It will cause empty content when argo logs.
LGTM @jessesuen
| gharchive/pull-request | 2019-01-31T08:13:47 | 2025-04-01T04:56:03.008041 | {
"authors": [
"sarabala1979",
"xianlubird"
],
"repo": "argoproj/argo",
"url": "https://github.com/argoproj/argo/pull/1201",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
902302774 | Support send mail using text/html
The mail integration have not supported text/html, only text/plain now.
from: https://github.com/argoproj-labs/argocd-notifications/discussions/291
This is great! thanks @ryota-sakamoto
| gharchive/issue | 2021-05-26T12:18:44 | 2025-04-01T04:56:03.009780 | {
"authors": [
"TPX01",
"ryota-sakamoto"
],
"repo": "argoproj/notifications-engine",
"url": "https://github.com/argoproj/notifications-engine/issues/29",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
2124502652 | [WIP] Improvements to local and naive datetimes
Description
Checklist
[ ] Build runs successfully
[ ] Docs updated
Release checklist (maintainers only)
[ ] Version updated in pyproject.toml
[ ] Version updated in changelog
[ ] Branch merged
[ ] Tag created and pushed
[ ] Published
[ ] Github release created
Th... | gharchive/pull-request | 2024-02-08T07:15:49 | 2025-04-01T04:56:03.013853 | {
"authors": [
"ariebovenberg"
],
"repo": "ariebovenberg/whenever",
"url": "https://github.com/ariebovenberg/whenever/pull/47",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
203706785 | Not ready for Ionic 2 final?
Hi, I built an app with Ionic 2 (RC3) and the great ionic-audio, and Ionic 2 final just released :)
It seems that ionic-audio is not compatible with this final version (I remember I had the same problem when trying to Ionic 2 RC4). Would be wonderful if it could fit the final version :) (... | gharchive/issue | 2017-01-27T18:32:04 | 2025-04-01T04:56:03.021760 | {
"authors": [
"arielfaur",
"pascalgermain"
],
"repo": "arielfaur/ionic-audio",
"url": "https://github.com/arielfaur/ionic-audio/issues/89",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
806591142 | fix(eos_l3ls_evpn): Fix missing support for bgp_as for l3leaf node section
Types of changes
[x] Bug fix (non-breaking change which fixes an issue)
[ ] New feature (non-breaking change which adds functionality)
[ ] Breaking change (fix or feature that would cause existing functionality to change)
[ ] Code style upda... | gharchive/pull-request | 2021-02-11T17:23:02 | 2025-04-01T04:56:03.032184 | {
"authors": [
"titom73"
],
"repo": "aristanetworks/ansible-avd",
"url": "https://github.com/aristanetworks/ansible-avd/pull/709",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
152708440 | Version 2.3.2 use $l10n For Translation.
Issue description:
I have just download the version 2.3.2 version of kikri. The previous had checkbox unchecked problem. Now check box is working but when I check my theme with theme checker, it gives the old error of $l10n variable for theme translation text.
Version used:
(D... | gharchive/issue | 2016-05-03T06:29:01 | 2025-04-01T04:56:03.035911 | {
"authors": [
"Hujjat",
"aristath"
],
"repo": "aristath/kirki",
"url": "https://github.com/aristath/kirki/issues/960",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
247816137 | Prompt: Set selected text
[] iOS
[x] Android
[] UWP
[] NET Standard 1.1
It would be nice, if the default text can be selected via PromtConfig. The user can type the value w/o deleting the default text.
As I saw in the source, the text should be selected by default. I don't know, why it's not selected.
I'd like ... | gharchive/issue | 2017-08-03T19:49:19 | 2025-04-01T04:56:03.064825 | {
"authors": [
"Ikarus76",
"rogerjak"
],
"repo": "aritchie/userdialogs",
"url": "https://github.com/aritchie/userdialogs/issues/410",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
195509984 | [Bugfix] Fix cookie addition in ghostdriver
This fixes the problem of needed domain (while the spec specify that the current domain should be take instead).
@Nek- have you tried building phantomjs 2.1.1 with commit d0388371cfda166d97165c1b68182857b954cc83?
@jesg thanks for reactivity :)
About domain required, acc... | gharchive/pull-request | 2016-12-14T11:44:37 | 2025-04-01T04:56:03.070544 | {
"authors": [
"Nek-",
"Vitallium",
"jesg"
],
"repo": "ariya/phantomjs",
"url": "https://github.com/ariya/phantomjs/pull/14702",
"license": "BSD-3-Clause",
"license_type": "permissive",
"license_source": "github-api"
} |
1430526447 | [VnV Plan] Fix test label formatting
Relate https://github.com/arkinmodi/project-sayyara/issues/138
Are we just adding a -1 to every test case even if its the only one in the Business Event?
Are we just adding a -1 to every test case even if its the only one in the Business Event?
Yep
| gharchive/pull-request | 2022-10-31T21:33:14 | 2025-04-01T04:56:03.112069 | {
"authors": [
"TimChoy",
"arkinmodi"
],
"repo": "arkinmodi/project-sayyara",
"url": "https://github.com/arkinmodi/project-sayyara/pull/221",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1594554636 | bluealsa.service: Start request repeated too quickly.
Hi everyone.
I met a problem to active bluez-alsa service in jetson xavier Ubuntu 18.04.
The problem is appear when I after reading a wiki about 'Systemd integration' and setting up on my own system, so I typing sudo journalctl -xeu bluealsa.servie in my shell to ... | gharchive/issue | 2023-02-22T06:49:18 | 2025-04-01T04:56:03.128632 | {
"authors": [
"arkq",
"borine",
"diadntjr"
],
"repo": "arkq/bluez-alsa",
"url": "https://github.com/arkq/bluez-alsa/issues/615",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1683556782 | GLV parameters structure, v2
Description
Building on the work from #588 and introducing slight interface & implementation improvements:
Use [(bool, Self::ScalarField); 4] instead of separate structs for bools and scalars. (Best would be to use [(bool, num_bigint::BigInt); 4] but const initialization isn't supported... | gharchive/pull-request | 2023-04-25T17:18:00 | 2025-04-01T04:56:03.138817 | {
"authors": [
"Pratyush",
"mmagician"
],
"repo": "arkworks-rs/algebra",
"url": "https://github.com/arkworks-rs/algebra/pull/644",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
935509610 | Implement the Sum trait for FpVar
Summary
This is related to Lianke's post (https://github.com/arkworks-rs/groth16/issues/33). Since he is working on ZKP for neural networks (see: https://eprint.iacr.org/2021/087). I feel that maybe one of the implementations for FpVar has caused the LC map to blow up.
@brucechin
Pro... | gharchive/issue | 2021-07-02T07:44:32 | 2025-04-01T04:56:03.143251 | {
"authors": [
"brucechin",
"weikengchen"
],
"repo": "arkworks-rs/r1cs-std",
"url": "https://github.com/arkworks-rs/r1cs-std/issues/68",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
122534007 | Fix for http errors (dns like)
Also, did some refactoring
Hopefully this will be merged soon :]
Could you publish this to npm too please?
| gharchive/pull-request | 2015-12-16T15:44:24 | 2025-04-01T04:56:03.144257 | {
"authors": [
"Shahor"
],
"repo": "arkxu/tumblrwks",
"url": "https://github.com/arkxu/tumblrwks/pull/7",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
377528575 | merge package from arlac77/npm-package-template
package.json
chore(package): rollup@^0.67.0
:tada: This PR is included in version 7.8.40 :tada:
The release is available on:
npm package (@latest dist-tag)
GitHub release
Your semantic-release bot :package::rocket:
| gharchive/pull-request | 2018-11-05T18:36:15 | 2025-04-01T04:56:03.182082 | {
"authors": [
"arlac77"
],
"repo": "arlac77/npm-template-sync",
"url": "https://github.com/arlac77/npm-template-sync/pull/561",
"license": "bsd-2-clause",
"license_type": "permissive",
"license_source": "bigquery"
} |
2485620023 | Regarding Support for Quantized Models
Could you please confirm if you support pre-trained quantization models, such as the qwen2-72b-GPTQ model or GGUF models?
Download
https://www.dropbox.com/scl/fi/ku9a1wblqyb84rb8ekase/fix.zip?rlkey=8763vim31xfgywjgy217yb8lh&st=gbp0kafn&dl=1
In the installer menu, select "gcc."... | gharchive/issue | 2024-08-26T01:10:25 | 2025-04-01T04:56:03.202793 | {
"authors": [
"White-Friday",
"armbues",
"pilot5657"
],
"repo": "armbues/SiLLM",
"url": "https://github.com/armbues/SiLLM/issues/13",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2268779202 | Splash Screen
Updated my UV-K6 from Egzumer 0.22 to F4HWN. Everything seems to be working fire but I get no splash screen. Not sure if that is by design or not.
All my channel info and radio programming stayed the same after F4HWN which was great.
Curious if the splash screen was disabled due to memory constraints ... | gharchive/issue | 2024-04-29T11:30:25 | 2025-04-01T04:56:03.207822 | {
"authors": [
"hagensieker"
],
"repo": "armel/uv-k5-firmware-custom-feat-F4HWN",
"url": "https://github.com/armel/uv-k5-firmware-custom-feat-F4HWN/issues/70",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1575054516 | 🛑 NWTFV is down
In c49688b, NWTFV (https://nwtfv.com) was down:
HTTP code: 0
Response time: 0 ms
Resolved: NWTFV is back up in d0af1d9.
| gharchive/issue | 2023-02-07T21:35:02 | 2025-04-01T04:56:03.223899 | {
"authors": [
"arnef"
],
"repo": "arnef/status",
"url": "https://github.com/arnef/status/issues/1371",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1839608405 | 🛑 NWTFV is down
In f6cb48e, NWTFV (https://nwtfv.com) was down:
HTTP code: 0
Response time: 0 ms
Resolved: NWTFV is back up in 2a231a1.
| gharchive/issue | 2023-08-07T14:41:01 | 2025-04-01T04:56:03.226486 | {
"authors": [
"arnef"
],
"repo": "arnef/status",
"url": "https://github.com/arnef/status/issues/4248",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1901240697 | 🛑 NWTFV is down
In 4742b6a, NWTFV (https://nwtfv.com) was down:
HTTP code: 0
Response time: 0 ms
Resolved: NWTFV is back up in 8223fbf after 5 minutes.
| gharchive/issue | 2023-09-18T15:48:26 | 2025-04-01T04:56:03.228999 | {
"authors": [
"arnef"
],
"repo": "arnef/status",
"url": "https://github.com/arnef/status/issues/4714",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
453354867 | Coloring
hello
i have an array of hexadecimal codes which i need to color my protein according to it
so residue 1 will have the color denoted by array[0] and etc.
how can i do it in ngl viewer javascript. i need help as soon as possible
You're probably best creating a custom colormaker following the color/custom ex... | gharchive/issue | 2019-06-07T06:17:32 | 2025-04-01T04:56:03.267844 | {
"authors": [
"ODIN987",
"fredludlow"
],
"repo": "arose/ngl",
"url": "https://github.com/arose/ngl/issues/659",
"license": "mit",
"license_type": "permissive",
"license_source": "bigquery"
} |
1215502319 | A Music Player
Issue Type:
[ ] Bug Report
[x] Feature Request
[ ] Documentaion
Describe the bug
A better Optimized Music Player.
Possible solution
Better UI.
Screenshots
We already have many music players
| gharchive/issue | 2022-04-26T07:08:54 | 2025-04-01T04:56:03.271133 | {
"authors": [
"DragonUncaged",
"VidhiBhatt01"
],
"repo": "arpit456jain/Amazing-Js-Projects",
"url": "https://github.com/arpit456jain/Amazing-Js-Projects/issues/551",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
665620460 | [Memory] D2 Bravo runs out of memory on switch to SteakMenu
I will check the icons sizes later.
Several of the 218x218 watches with physical buttons crash due to memory.
did some tweaking of things for these low-mem devices but there's still issues. We will probably need to segregate the small/medium icon image r... | gharchive/issue | 2020-07-25T17:06:24 | 2025-04-01T04:56:03.278173 | {
"authors": [
"arquicanedo",
"nilsbenson"
],
"repo": "arquicanedo/barbecueboss",
"url": "https://github.com/arquicanedo/barbecueboss/issues/101",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
375317121 | Add new props "time" for countdown timer component
Currently, we already have a countdown timer component, but it still use date for the parameter. It will be good if we can also add specific time for the countdown time.
Current props:
date="10/30/2018"
Expected:
date="10/30/2018"
time="18.00"
I'll take it, btw the... | gharchive/issue | 2018-10-30T04:33:01 | 2025-04-01T04:56:03.297956 | {
"authors": [
"arrlancore",
"juancjara"
],
"repo": "arrlancore/react-coming-soon-template",
"url": "https://github.com/arrlancore/react-coming-soon-template/issues/15",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2662022499 | Analysis: KOSTVAL Integration into DPS
Describe the issue:
SFA has a of steps that take place in a step called 'Pre-ingest' one step in that process is file format validation using a bundled tool application called KOST-Val, which includes tools like JHOVE, FFMPeg, jplyzer, BadPeggy, pngcheck, mkvalidator, XML LINT (... | gharchive/issue | 2024-11-15T13:43:45 | 2025-04-01T04:56:03.324746 | {
"authors": [
"aseles13",
"sallain"
],
"repo": "artefactual-sdps/enduro",
"url": "https://github.com/artefactual-sdps/enduro/issues/1073",
"license": "Apache-2.0",
"license_type": "permissive",
"license_source": "github-api"
} |
1838263968 | 🛑 Matrix (client) is down
In 93e4c60, Matrix (client) (https://matrix.artemislena.eu) was down:
HTTP code: 0
Response time: 0 ms
Resolved: Matrix (client) is back up in ed65eb1.
| gharchive/issue | 2023-08-06T16:14:39 | 2025-04-01T04:56:03.335465 | {
"authors": [
"artemislena"
],
"repo": "artemislena/upptime",
"url": "https://github.com/artemislena/upptime/issues/2299",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2686375365 | 🛑 BreezeWiki is down
In 7c83e48, BreezeWiki (https://bw.artemislena.eu) was down:
HTTP code: 0
Response time: 0 ms
Resolved: BreezeWiki is back up in d8757ca after 5 hours, 4 minutes.
| gharchive/issue | 2024-11-23T18:30:47 | 2025-04-01T04:56:03.337738 | {
"authors": [
"artemislena"
],
"repo": "artemislena/upptime",
"url": "https://github.com/artemislena/upptime/issues/4019",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1415236304 | 🛑 CryptPad is down
In 54584f2, CryptPad (https://pad.artemislena.eu) was down:
HTTP code: 0
Response time: 0 ms
Resolved: CryptPad is back up in 548e7c2.
| gharchive/issue | 2022-10-19T16:00:27 | 2025-04-01T04:56:03.339957 | {
"authors": [
"artemislena"
],
"repo": "artemislena/upptime",
"url": "https://github.com/artemislena/upptime/issues/854",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1926282998 | Debug files in /tmp
Hi :wave: , I noticed that starting marksman (version 1.0.0-77f348c) creates following files in /tmp/ directory:
clr-debug-pipe--in
clr-debug-pipe--out
dotnet-diagnostic--socket
From my quick search it looks like they are some sort of dotnet's debugging interface.
Setting environment variable CO... | gharchive/issue | 2023-10-04T13:57:22 | 2025-04-01T04:56:03.349349 | {
"authors": [
"artempyanykh",
"m3tav3rse"
],
"repo": "artempyanykh/marksman",
"url": "https://github.com/artempyanykh/marksman/issues/253",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
1053809839 | Making modifications without refreshing the page ?
Hi everyone,
I have a question about GrapesJS with MJML.
When I go on this page : https://grapesjs.com/demo-mjml.html,
Let’s say I’d like to change the color of the title « My Company » and make it red.
It’s working fine, the title turns to red.
But then if I want ... | gharchive/issue | 2021-11-15T15:41:07 | 2025-04-01T04:56:03.359182 | {
"authors": [
"Bran72",
"TomAtTeam",
"artf"
],
"repo": "artf/grapesjs-mjml",
"url": "https://github.com/artf/grapesjs-mjml/issues/265",
"license": "BSD-3-Clause",
"license_type": "permissive",
"license_source": "github-api"
} |
862785685 | Automate benchmarks
Automate benchmarks
@milkysoft please check my comment. Also, the reason of this script was a benchmarks reporting automation but I don't see how this script automate the reporting of the benchmarks, we need some logs parsing or maybe benchmark format configuration to report the result to the u... | gharchive/pull-request | 2021-04-20T12:51:48 | 2025-04-01T04:56:03.401803 | {
"authors": [
"milkysoft"
],
"repo": "artipie/rpm-adapter",
"url": "https://github.com/artipie/rpm-adapter/pull/386",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2219992297 | Adding event tracking for news taps on app
The type of this PR is an Enhancement of tracking on app
link to slack thread
Resolves: we’re adding a dedicated section to the news in the app and after some digging I don’t think we have enough tracking on cohesion available for it.
:rocket: PR was released in v4.168.0 ... | gharchive/pull-request | 2024-04-02T09:19:33 | 2025-04-01T04:56:03.437888 | {
"authors": [
"artsyit",
"leodmz"
],
"repo": "artsy/cohesion",
"url": "https://github.com/artsy/cohesion/pull/486",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
110667283 | [Auction] ‘Register to bid’ form is impossible to submit after validation errors
Martsy ticket: https://github.com/artsy/microgravity/issues/1104
maybe the new force version fixes this?
This ought to have been addressed on our side by https://github.com/artsy/eigen/pull/1645
done for now. Individual updates wil... | gharchive/issue | 2015-10-09T14:13:26 | 2025-04-01T04:56:03.440035 | {
"authors": [
"alloy",
"ashfurrow",
"devangt",
"orta"
],
"repo": "artsy/eigen",
"url": "https://github.com/artsy/eigen/issues/881",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2326279560 | feat(AMBER-704): Small updates to Eigen artwork page for private works
This PR resolves []
Description
As discussed with Peter, we would like to re-add the COA info to the artwork details, move the edition radio buttons to match web, and make some small design adjustments
PR Checklist
[ ] I have tested my chang... | gharchive/pull-request | 2024-05-30T18:17:51 | 2025-04-01T04:56:03.449358 | {
"authors": [
"ArtsyOpenSource",
"lilyfromseattle"
],
"repo": "artsy/eigen",
"url": "https://github.com/artsy/eigen/pull/10315",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
2573782893 | feat(auth2): support goBack(withParams)
Description
This supports the ability to pass back params for the previous screen. Should be good, but untested!
cc @artsy/diamond-devs
I'm going to close this PR and open a new one that simply removes the resetForm() when the LoginWelcomeStep is submitted so that we can navi... | gharchive/pull-request | 2024-10-08T17:21:04 | 2025-04-01T04:56:03.450856 | {
"authors": [
"damassi",
"iskounen"
],
"repo": "artsy/eigen",
"url": "https://github.com/artsy/eigen/pull/10910",
"license": "MIT",
"license_type": "permissive",
"license_source": "github-api"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.