Dolf Andringa

Results 27 comments of Dolf Andringa
trafficstars

> IMHO the _simplest thing_ that can be implemented to overcome the usability problem are these 2 small features: > > * Allow _multiple select_ when selecting the file(s) for...

@jose-elias-alvarez I have been running into this too. The local resolver does work for me mostly, but there is something to say for also letting npx deal with it. Especially...

Ah, I have a work around to run prettier through npx ``` local null_ls = require("null-ls") local null_ls_h = require("null-ls.helpers") null_ls.setup({ sources = { null_ls.builtins.formatting.prettier.with({ command = "npx", args =...

Unfortunately for me showing a specific monitor turns the video black. So the input works correctly at that point, but I have no video on my tablet, making it really...

I saw the comment: Unfortunately https://github.com/meeshkan/openapi-typed is archived so I don't think it should be used. https://github.com/openapi-generators/openapi-python-client has a complete pydantic schema which is great, but isn't just a types...

> For the time being, do you have similar workarounds for other platforms as well? Thanks No sorry, this is very specific of Gnome on linux using X11. If you...

For me this is actually an issue. There is no way to guarantee the order of keys in a dictionary/json object. So `match_content=json.dumps(my_test_data).encode('utf-8')` won't work since python doesn't give any...

Debugging here. Python's struct.(un)pack can handle the value correctly: ``` >> struct.unpack('e', bytearray([0x00, 0x78])) (32768.0,) ``` ``` >>> struct.pack('e', 32768.0).hex() '0078' ``` It is definitely an issue with the c...

Just commenting for future me (or anyone else interested in debugging): I started the debugger to figure out where its going wrong, and I'll try to find time to continue...