David Bottiau

Results 74 comments of David Bottiau

I managed to do it this way: ```ts setCookie(COOKIE_KEY, "", { days: 0 }); ``` I don't know if it's the fastest/best way but that could be easy to create...

Very intrigued on how this feature would look like. For our use case, not having Password Managers working on native Capacitor apps is a bit of a PITA.

@visionarylab In order to make it clear, I created another issue for your problem. I will look into it asap. @zanybaka It seems like a nice feedback you made. I...

Hi @arolson101 Well, it's a weird error. Have you tried to install the `Microsoft.Toolkit.Uwp.Helpers` package? I don't know why it's required now. About the requirement of the version 18362 of...

Hi Marius! Well, this is a curious use case you showed me there. Before we dig in, can you explain me why you need to do "inner" observable this way?...

The `UntilDestroyed` operator is simply built on top of a `TakeUntil`. So, you can use directly a `TakeUntil` with an Observable as parameter which is directly linked to the dispose...

Well, I believe your problem is that your selector crashes because `Thing` is nullable. Would you not opt-in for non-nullable reference type features and return a `ThingDetail?` instead? Then you...

Oh yes. The ref count internally keep the number of subscribers curently using this Observable source. So it can be 0 to N. When the number of subscribers hits 0,...

Well, that may be a good idea, if anyone has the same problem as you in the future. But integrating it in ReduxSimple, that's another topic. I still struggle to...

Oh, well. I think I start to understand what you try to achieve. So may I suggest this code? ```csharp store .Select(state => state.Thingies) .SelectMany(list => list) .GroupBy(thing => thing.Id)...