Results 31 comments of Bennie Copeland

@bzuu The order of the fields doesn't matter, but it can be made consistent. It is the change from `TodoList : string list` to `TodoList : Todo list` that breaks...

What you are suggesting is what I originally started with. The problem arises because of the shared `urlSegments` function. It needs to be aware of the base path in order...

> Why isn't it possible to make the two functions take an extra parameter and only execute the DOM side-effect at the very edge of the call site? It _is_...

I will update the existing API with the base href handling as requested.

I've be playing around with it now, and I think I've found an issue, or I'm not using it right. My code looks like the following: ``` csharp return Result.Combine(name,...

I've found that if I change the first `OnSuccess` to `OnSuccess` it works.

What I've done to get this working so far: 1. I generated a certificate using Pluralsights [Self Signed Cert tool](https://www.pluralsight.com/blog/software-development/selfcert-create-a-self-signed-certificate-interactively-gui-or-programmatically-in-net) and saved it as a PFX 2. Used [Leader SSL](https://www.leaderssl.us/tools/ssl_converter)...

@amirrajan For my own testing needs, I added a method: ``` c# public Action expectCheck(Action action) where T : Exception { var expect = expect(); return () => { expect();...

So I just learned this while trying to get my tests into TFS. There is [xUnit](https://en.wikipedia.org/wiki/XUnit) which is a collective name for test frameworks patterned after Smalltalk's SUnit. The [xUnit...

Started working on an XUnit.net formatter a few days ago. I'll continue when I get out of the hospital. Sent from my iPhone > On Apr 1, 2017, at 17:24,...