Nathaniel Knight

Results 18 comments of Nathaniel Knight

According to [this StackOverflow question](https://stackoverflow.com/questions/9112460/mono-develop-assembly-system-deployment-not-found), the referenced module (System.Deployment) isn't supported in Mono; it's a .NET module for building deployable apps. It doesn't look like it's implemented in .NET core...

I also ran into this; it looks like it's a quirk/problem with mobile Safari; by default, you have to long-press an element to trigger `hover`. I was able to work...

I also hit this. The repro is: ```roc # Repro.roc interface Repro exposes [] imports [] T a b = (a, b) ``` I'm on `roc version` ``` roc nightly...

I don't know of a good way to support runtime plugins in Rust apps, but I could certainly add: * A trait that defines a storage backend, and * an...

So far I've implemented auth in the reverse proxy that I put in front of this service (I use Caddy and Authelia). There's an open issue for auth (#6 )...

#960 Adds support for Chapel; mentioning here so it can be ticked of if that PR gets merged.

Things to test: - `Tiddler` serialization and de-serialization - `Tiddlers` (round trip and ops on a `:memory:` database)

Next steps are: - [x] Better optimize the Dockerfile (following, for example, [this guide](https://depot.dev/blog/rust-dockerfile-best-practices)). - [x] Publish the image to dockerhub (or similar) - [ ] Write a `docker-compose.yml` file...

Instructions for publishing a docker image to ghcr.io: https://docs.github.com/en/actions/use-cases-and-examples/publishing-packages/publishing-docker-images#publishing-images-to-github-packages

With the above changes, releases now trigger a Docker image to be published to ghcr.io. All that remains is: - [x] Instructions for running in Docker (prominently displayed in the...