Results 27 issues of gmabey

Hello! I've used `fpm` to package this python project https://github.com/Geontech/vrtgen to a `.deb`. Notice the `install_requires` line that read `Jinja2 ~= 2.8` here: https://github.com/Geontech/vrtgen/blob/18409e662213b75b2fd8d5d78ef86a39361c4a43/setup.cfg#L19 From what I gather from SO...

I'm using `qtprotobuf` not only over the wire, but also as internally-used data structures in my application. I often find the appearance of `QSharedPointer` to be awkward, such as when...

protobuf
feature

I'm attempting to build my application (and QtProtobuf) for CentOS 8.3 -- there's other platforms I've tried that have ended up with this same error, but I'm just focusing on...

question

I imagine the answer to this question might be obvious if I knew more about protobuf, but -- today I'm working to compile qtprotobuf using emscripten, towards targeting my application...

question

I have a `qtprotobuf`-generated class instance that I'm passing up to QML land. One of its members is a `QtProtobuf::uint32List` and I want to test whether that list contains a...

question

I have a situation where I'm producing message data much earlier than I want to start packing it into a protobuf message. In order to minimize the amount of code...

protobuf
feature

Hello, I've been *extracting* data from a `google::protobuf::Any` field for several versions, and it works great thank you. Now, I need to *populate* a Any field with `qtprotobuf`. I understand...

question

The docs would be *much* more useful to me if this introductory sample ``` with audioread.audio_open(filename) as f: print(f.channels, f.samplerate, f.duration) for buf in f: do_something(buf) ``` included some notion...

I've now added another class that allows for accessing data without un-tar-ing an archive. The intent is to address the case where an archive is so large that it is...

enhancement

Hello, I'm reading the spec, in the section "Rules for SigMF Archive files:" where it reads: ``` 3. The Archive MUST contain the following files: for each contained Recording with...

bug
question