suugbut

Results 11 comments of suugbut

I have the same issue with Polyglot Notebook: https://github.com/dotnet/interactive/issues/3478

I am teaching basic programming with C++, C#, Python, JavaScript and TypeScript. I want to show algorithm implemented in various languages in one file rather than using different files. So...

Thank you very much. I am still learning CA and wondering why your entity models looks so smart and complicated. Someone told me that entity models should be made dumb...

Dear @amantinband, I think I understood now why you need to add non-default parameterless constructor. It is actually unnecessary if we make our entity classes as dumb as possible (explained...

> Hello @suugbut, > > Please correct me if I'm mistaken, but according to the Clean Architecture principles, the presentation layer should only reference the application layer. The API project...

You can use [TikZ](https://tikz.dev/). _It can do anything. The only limit is our imagination._ 😄

In addition, a `CollectionView` in a `Grid` with **a LONG enough array** must use `*` rather than `Auto`. ```xml Item 1 Item 30 ```

Reattaching the image. ![Image](https://github.com/user-attachments/assets/bcd1a6ea-446c-406a-905b-7fb885b01225) Use Dependency Injection: ```cs public partial class YourPage : ContentPage { public YourPage(YourViewModel model) { InitializeComponent(); BindingContext = model; } // an example how to retrieve...