Sam Mueller
Sam Mueller
Today I was watching this talk by Jorge Silva on data modeling in rethinkdb, and he goes through a number of different approaches for storing related data. The first technique...
We've built our Android app with Jetpack Compose, and are considering Multiplatform for extending to Windows. With the release of Windows 11, there's now the opportunity to create more modern...
Our api server gives a 422 response when validating request params: ``` json { "errors": [{ "detail": "Missing field: anon_id" }] } ``` However, `Get` only supplies the error code:...
In have some postgres json fields in our tables with null values: ``` json { "theme": null, "url": "https://blah.com/etc.png" } ``` This crashes CreateAPI decode because `AnyJSON` isn't able to...
We have the requirement that all of our entities and enums implement `Hashable`. For the entities this is mostly achievable by setting our `config.yaml`: ``` yaml entities: protocols: [Hashable, Codable]...
When trying the example on https://canvastify.delitefully.com it appears to spin indefinitely, with no result. Does this repo still work?
After upgrading to elixir `1.16.0`, we now get compile time errors everywhere `shorter_maps` is used: ``` elixir ** (ArgumentError) interpolation is not supported with the ~M sigil (shorter_maps 2.2.5) expanding...
Building for target `aarch64-pc-windows-msvc` on Windows 11 ARM fails with: ``` error: failed to run custom build command for `ring v0.16.20` ``` Ring version `0.17` [fixes this problem](https://github.com/briansmith/ring/issues/1167), which is...