Silvano Cirujano Cuesta

Results 128 comments of Silvano Cirujano Cuesta

I've found [another extension facing the same issue](https://github.com/poehlerj/no-title-bar/issues/35#issuecomment-975859063). In this extension ( oneDrive) the function `GLib.spawn_command_line_sync` is being called on other places of the extension without issues, but with other...

I got [an explanation why the system is freezing](https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/384), because it's a `sync` call. Just call `GLib.spawn_command_line_async` (notice the 'a' almost in the end) and the system won't freeze anymore....

For example, [this alternative Python URI validator](https://gist.github.com/mnot/138549/8391a25b73e4eab3d6fb8cc7a94075be4827e651) also rejects `':'` as a valid relative URI.

This other alternative online validator is also rejecting it: https://0mg.github.io/tools/uri/

> and should therefore better be encoded if used in path components What I read in the [RFC 3986](https://www.rfc-editor.org/rfc/rfc3986.html#page-12) (end of the page) is "the conflicting data **MUST** be percent-encoded...

I haven't been able to dig deep enough to get to the root-cause. Here what I've found out: 1. the [code reporting the error](https://github.com/moby/buildkit/blame/6c0b576ff334443369ad1b675fe59bba5f905d72/frontend/dockerfile/dockerfile2llb/convert.go#L1203) is 2 years old and the...

> I cant find any docs about not being able to do git refs in COPY, but in guides re: how to add git repo they say to use ADD...

> So perhaps bumping the minimum prefixmaps might get around the issues here? That's what I originally thought and why I started working on it. Unfortunately it is much more...

Thanks to @cmungall PR linkml/prefixmaps#54 I've been able to resolve the issues I had on PR linkml/prefixmaps#53. Merging my PR, releasing a new prefixmaps version with the fix and upgrading...

> looks like still getting that pesky greenlet error... I haven't been following this topic for some time. I'll give make sure to rebase all the PRs I've done WRT...