Victor Blomqvist

Results 96 comments of Victor Blomqvist

Yes, I should have mentioned that is exactly the workaround I used. Now my packages.config in the DataFormats example looks like this: ```

After some coding I managed to make AvroExtractor not copy the whole input stream. Instead I created a new wrapper around the UnstructuredReader provided by the USQL SDK that keeps...

Thanks for the find. I have made a branch myself with your proposed fix. Note that Im away from work on a long holiday, so it will take a very...

Ah, I see. For me I prefer the performance profile of pyglet/opengl compared to pygame so that make absolute sense.

I just installed Bazelisk, and then tried to build "mediapipe" project, which gives me 404. It seems like the branch renaming is the reason: > INFO: Repository rules_cc instantiated at:...

Seems like they fixed it now: https://github.com/google/mediapipe/commit/374f5e2e7e818bde5289fb3cffa616705cec6f73

@jeevatkm Im currently working on other things but will take a look at this and fix my PR next time I work with revel related functionality.

I did some small debugging myself, and the reason why 0.22.0.dev0 reports 404 is because https://github.com/pyodide/pyodide/releases/download/0.22.0.dev0/xbuildenv-0.22.0.dev0.tar.bz2 does not exists. It seems like dev-builds are not released on github.

And some more debugging: the permission error is because pyodide build doesnt support Windows (or at least I think it doesnt). The error comes because it uses a NamedTemporaryFile, but...

How about using struct tags to divide the range into two parts? You could for example use `",lower"` and `",upper"` in this way: ``` type MyRanges struct{ Id `pg:"myrangeid"` AgeLower...