Artyom V. Gorchakov
Artyom V. Gorchakov
[ReactiveCommand abstract base class has been deprecated and removed](https://reactiveui.net/blog/2018/11/reactive-command-abstract) in latest ReactiveUI releases, so need to change all occurrences of `ReactiveCommand` to `ReactiveCommand` during the upgrade.
Regarding the implementation details of the new generator, I guess it is worth introducing a new class similar to [`AvaloniaNameGenerator`](https://github.com/AvaloniaUI/Avalonia.NameGenerator/blob/main/src/Avalonia.NameGenerator/Generator/AvaloniaNameGenerator.cs) named e.g. `TemplatePartGenerator`, then adding a new option to [`GeneratorOptions`](https://github.com/AvaloniaUI/Avalonia.NameGenerator/blob/b16a6ba80b90833de88a1f8c4dc97eceb24e05ff/src/Avalonia.NameGenerator/GeneratorOptions.cs#L28)...
A temporary solution is going to `Settings > Developer settings > Personal access tokens > Generate new token` and using that token instead of password. To fix that, we need...
Speaking of local storage, personally I would advise either of these packages: Realm, LiteDB. Perhaps, OS-specific key storage would be more secure (not sure about this), but anyway we need...
Guessing we chould create a `DistinctBy` builder similar to https://github.com/linq2db/linq2db/blob/11406a329f3904e15671348ce52f1a098c927949/Source/LinqToDB/Linq/Builder/DistinctBuilder.cs and then register it inside the `ExpressionBuilder`: https://github.com/linq2db/linq2db/blob/f6ae79d6138b295f29b37f6696264ca8793a9bc6/Source/LinqToDB/Linq/Builder/ExpressionBuilder.cs#L28-L32 Worth noting that folks usually implement workarounds for `DistinctBy` queries like [this...
Just stumbled upon this issue and can confirm that altering the names of options in [antlr_python_paths.yaml](https://github.com/JetBrains-Research/astminer/pull/210/commits/bdf5acb8554fd85371399dd95c8a540039cdaf70#diff-4094af860001cd4d22b088191369c99d32f69741bab453ae7fc72833cbe64bcb) helps.
> they should be ported This is a brilliant idea! We'd really love to receive a contribution from someone who can implement and test those `IViewFor` controls on a Mac...
Here is an excellent blog post explaining Xamarin.Forms & ReactiveUI routing https://jamilgeor.com/viewmodel-routing-with-reactiveui-and-xamarin-forms/ Might be worth referencing it. Jamil GeorViewModel Routing with ReactiveUI and Xamarin.FormsIntroduction In this article we will cover...
Attempted to bring XAML (and C#) hot reload support to Avalonia desktop applications by relying on `dotnet watch build` tooling. https://github.com/AvaloniaUI/Live.Avalonia