Max Battcher
Max Battcher
I took a first stab at it as extension methods to explore the idea, especially with respect to EF Core: ```c# public static class UlidExtensions { public static SqlGuid ToSqlGuid(this...
This seems to be a regression between 0.5.0 and 0.5.3, if that helps narrow down the cause.
I see it is mentioned in the TODO section of the Readme as well.
@stritti I believe I recall that was some old fashioned `console.log` debugging. I think I started with a `return true` in that callback, with a `console.log(packageName)` and started at the...
Isn't this just asking to add an optional `IObservable cancelOn = null` parameter to `CreateFromTask` with `CancellationToken` to optionally add that `TakeWhile` operator? `CancellationToken` overloads are still useful in cases...
For what it is worth, I started searching many of my repositories and pull requests for my own custom definitions over the years and dumping them into repos in a...
That's part of the joke in the name, or so I attempted. As DefinitelyTyped grew it became too focused being the _definitive_ source typing, and that became part of the...
Another place where this shows up is Cordova/PhoneGap plugins, most of which extend `window` or `navigator` with a global.
Today I discovered `HTMLElementTagNameMap`, which maybe proves the infrastructure I was looking for was available the whole time and under-utilized in the current ecosystem. A first pass with trying to...
Yeah, I wanted a template language for [Cycle](http://cycle.js.org), which uses `virtual-dom`, and already had a node app that was using Jade server-side... I'll take a look and see if I...