Results 254 comments of Daenney

Instances are responsible for validating the profiles of their users, and may add some markup or metadata to mark them as such. However, this validation isn't a standard property that...

Being able to have a profile as public seems fine by me, but I don't think we should be removing auth from those endpoints. If I'm not logged in, and...

If it's possible to get the module name somehow, then at least in theory it should be safe to trim that as a prefix. If you then end up with...

Fair point about the post-processing of the report, I hadn't actually thought of that. I'll give that a go. Should be fairly easy to define some transformations to apply to...

> My request is simply that it would be simpler and easier for all involved if it had a github.com/ path. That seems a little presumptuous, as evidenced by everyone...

Hiya! I'm the person maintaining the Flatpak bundle, so let me chime in here. In flathub/net.blockbench.Blockbench#50 this same issue came to light and is generally a permission issue. By nature...

Removing that line and restarting usbguard doesn't affect the output. So I guess that rule doesn't apply in the first place. But that still leaves me somewhat confused about the...

Here's a basic case: ```go package main import ( "encoding/json" "fmt" "github.com/google/go-cmp/cmp" ) func main() { val1 := []byte(`{ "object": { "to": [ "string" ] }, "to": "string" }`) var...

For now I've gone the way of making an internal type that is a `map[string]any` and correcting the fields when it runs into them during a `json.Unmarshal`. It's hideous but...

I wonder how big of a problem that is in practice? There's plenty of third party packages that clash with package names in stdlib too. Many libraries have their own...