Results 191 comments of Stefan M.

Wow, that is super sad to see 😞 As a friend of free services I tried something and wanted to share with you here how to use `bore server` on...

I just found [this discussion](https://github.com/vercel/vercel/discussions/6316) that provides a workaround. In a nutshell: Instead of adding the `go:embed` statement in your `api/` code, you add it somewhere in another module. Like...

Hi @adam-enko, I also just ran into this problem. I agree that it is super confusing for developers to have `dokkaGeneratePublicationHtml` and `dokkaGenerateModuleHtml` but no `dokkaGenerateHtml`. Actually you don't know...

What's wrong with having the pkl binary as a dependency? 🤔 Sure not the most elegant solution, but if someone wants to use that 🤷‍♂️. If you are against it,...

Hey @knadh, I haven't followed up on this. But since they only provide a binary, I thought it doesn't make sense to move forward (for now). In meantime, they created...

I found this: https://github.com/apple/pkl-go/pull/149 Haven't looked into the code yet, but might be interesting 🙃

Isn't this already possible? Looking at the docs here https://docs.gradle.org/8.10/userguide/toolchains.html#sec:vendors you can specify the vendor in that case. If there isn't a matching one, the build will fail. Is this...

It's only a test, but I would recommend to use the new lazy methods 'tasks.register' and 'tasks.named' instead of the "old" 'tasks.create' and 'tasks.getByName' methods... See https://docs.gradle.org/5.0/userguide/task_configuration_avoidance.html

Hey guys, what is the progress on that? 😇 @Doc94 still interested in fixing the stuff? I would love to use shields for snapshot releases.

If I go with `abstract hidden name: String`, it works perfectly fine. Even wihtout overriding it in the child-class. Seems also wrong to me 👀 ```pkl abstract class Bird {...