Brian Chavez
Brian Chavez
Hi @levipage, Thinking about this a bit more. Would you consider this a viable solution? ``` public class DerivedFaker : Faker { public DerivedFaker() { this.RuleFor(o => o.Code, f =>...
The issue came up again on Twitter. https://twitter.com/hackmum/status/1080206253073354752 Still need to mentally chew on this problem a little bit more.
With the introduction of C# 8 features; specifically, [Indicies and Ranges](https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-8#indices-and-ranges), there might finally be an elegant way to "set the first element" after generating a collection with some API...
I don't have any idea, but you might find *Page 31* in `BugTrap.pdf` manual helpful. Specifically, **4.2 Redistributing BugTrap for .NET**. You'll need to make sure the VC++ dependency runtime...
I think you have the right picture @colindavidfoster . The CI server scripted build takes precedence over a straight shot F5 build from Visual Studio. If you'd like to make...
Yeah, this is an interesting issue ... I don't know if this helps any: http://stackoverflow.com/questions/9817160/getversionex-under-windows-8 http://stackoverflow.com/questions/27246562/how-to-get-the-os-version-in-win8-1-as-getversion-getversionex-are-deprecated Perhaps, `GetProductInfo` to help find if server or client OS.
@gvanem could you clarify the licence for `win_ver.c`?
Hi Charles, You'll have to find out why. To do that: [1]:https://github.com/bchavez/Coinbase/blob/4e5a0c5a2d0bd962617718893a32c50433e0abc4/Source/Coinbase/CoinbaseClient.cs#L91-L105 * Start Fiddler. * Call the [`EnableFiddlerDebugProxy`][1] method to setup Fiddler debugging in your `CoinbaseClient`. * Run the...
Hey Charles, I think this is a bug in the Coinbase REST API on Coinbase's Servers. Here's the currently tracked issue: https://github.com/coinbase/coinbase-ios-sdk/issues/54 Thanks, Brian
Does Coinbase give back an error if the number of decimal places is off? I prefer not to have any (or very little) validation in the client and have all...