Randy Barlow

Results 52 comments of Randy Barlow

@lebedov I'm not sure that is a correct assessment. rpdb is licensed under the 2-clause BSD[0] and ipdb is licensed under the GPL[1]. According to gnu.org, the GPL is compatible...

@lebedov oh I see, you were discussing the prospect of merging your project with this project, not with importing ipdb in this project and doing something similar to what you...

Hello @jeromeetienne! What I mean is to tag a commit that you think is stable, so that it shows up here: https://github.com/jeromeetienne/jquery-qrcode/releases Thanks!

To solve the problem of Python 3 being used, it may be possible to have the requested feature live in its own module and have the Python 2 version avoid...

``` import typing class CoolThingIWant(typing.NamedTuple): class User(CoolThingIWant): name: str email: str _required: ['name', 'email'] class Comment(CoolThingIWant): text: str user: User _required: ['text', 'user'] _schema_description: str = 'A comment'

Or maybe I could do this in the https://python-jsonschema.readthedocs.io/en/latest/ project? Not sure if I would want to be able to mix with fedora-messaging features or not. I guess there are...

Hmm, I was able to reproduce this again with fedora-messaging-1.7.0: ``` -- Logs begin at Wed 2018-10-31 23:49:56 UTC, end at Wed 2019-05-22 21:23:39 UTC. -- 2019-05-22 21:17:49,912 ERROR [bodhi][f29-updates]...

It's not immediately obvious to me by looking at the tracebacks whether this is due to my publishing code, or whether this is due to my consuming code. Since this...

I just did a test with Bodhi: 0) I added a log statement in Bodhi's publish function to log every message before it tries to send. 1) I ran a...

@segler-alex The Readme file indicates that this is a fork of another project. What was the license of that code? It is likely that you need to use the same...