Working in Corbin, Kentucky tomorrow

It was a wild day at work. Full moon? I don't know. I'm going to work in Corbin on Monday. A new counselor is starting, and I'm going to observe/assist CR in onboarding her. I think we'll take her out to lunch as well. Then, she can watch me doing my 14:30 EST group, after which I'll hit the road and be home before running my 5:30 group.

It's been a hard day for S, as it's the anniversary of J's death. We stayed home from church.

I'm doing some reading on the .NET MAUI Development Stack. It looks as if this new tech may really advance my years-long wish to be able to do multi-platform development using .NET.

.NET MAUI abstracts the implementation of a UI element from its logical description. You can describe the UI using XAML, a platform-neutral language based on XML. For example, the XAML fragment below shows the description of a button control:

<Button Text="Click me"
    SemanticProperties.Hint="Counts the number of times you click"
    Clicked="OnCounterClicked"
    HorizontalOptions="Center" />