Robin Munn

Results 288 comments of Robin Munn

Here's the relevant code for understanding the `JsonResult` type that I'm using: ```fsharp ```fsharp // ***** Shared code in Shared.fs, imported by both client and server type JsonSuccess | Failure...

* Yes, `FetchAs` is actually using Thoth.Json. [Here's the source](https://github.com/thoth-org/Thoth.Fetch/blob/master/src/Fetch.fs): it opens the `Thoth.Json` namespace and then calls `Decode.unsafeFromString` on the HTTP response body. As far as I can tell...

Also note that I've seen the same thing with lists, e.g. if you add a `List` field to the `ProjectDetails` type it should exhibit similar decoding problems to `Map`, decoding...

### The problem I'm running into the same problem: I have `dbMain` and `dbAlt` databases in MySQL with the same "shape" (same tables, same columns, etc. -- trying to avoid...

In theory, SQLProvider could read the table schemas, compare them, and say "Hey, dbMain.Users has the same column definitions as dbAlt.Users, we can make them the same type". In practice...

In other words, I'd like my queries to still be built against `dataContext.dbMain.Users`, which is not what I wrote in my first comment. (I was writing in haste at the...

As for the workaround of running dbAlt on a separate instance, I considered that, but the devops guys are saying "One instance is already pushing our Amazon instance's memory limits...

Still occurs with Docker 20.10.8, running on Ubuntu 21.10. Output of docker version on my Ubuntu 21.10 test VM: ``` Client: Docker Engine - Community Version: 20.10.8 API version: 1.41...

BTW, in Unix convention, a double-dash (`--`) argument means "stop parsing arguments now, and pass everything after the `--` literally to the program". So for example, if you want to...

Worth noting that there's an OpenSSH Authentication Agent service included in Windows 10, though it is disabled by default. But it's simple to enable and start it in the Services...