Posts

Saas autogenerators and Business plan

 https://www.youtube.com/watch?v=-BhLgYu-N8M

Async aspx page

 Imports System.Net.Http Imports System.Threading.Tasks Imports ClassLibrary1 Imports ClassLibrary1.libfuncs Public Class LandAndPropertyReport     Inherits System.Web.UI.Page     Property getLandregistryPolygonsByLandregistryTitleNumberResponse As New getLandregistryPolygonsByLandregistryTitleNumberResponse     Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)         'Lets stop on here.  Build the report back end (using classlib funcs) sync first. Then async the funcs, then try it from here aspx async.         Dim stopWatch As New Stopwatch()         stopWatch.Start()         RegisterAsyncTask(New PageAsyncTask(Function() GetPWGsrvAsync(Context.Request("title_no"))))         stopWatch.Stop()         ElapsedTimeLabel.Text = String.Format("Elapsed time: {0}", stopWatch.Elapsed.Milliseconds / 1000.0)   ...

Tutorials on Unity Probuilder and Progrids

 https://www.youtube.com/@PixelMystique/videos   PixelMystique has good vids Creating Basic Shapes https://www.youtube.com/watch?v=yqL_9eEDm2E&t=7s Extrude https://youtu.be/md2OR4EualE?si=7n5XSoa48f19y_K-&t=462 Cut holes: 2 Methods there.  Experimental and normal  https://www.youtube.com/watch?v=Of1yrS_CsiI https://www.youtube.com/watch?v=_gDLA_0V2Bs  brit guy with 38 subs. https://forum.unity.com/threads/does-probuilder-offer-a-way-to-measure-distance-between-two-verts.895658/ For doors; using game mode  https://www.youtube.com/watch?v=dgLF-37SBDk

Thought I'd try MAUI for my double screen video attempt

.NET MAUI Data Binding with MVVM & XAML Damn this declarative stuff is confusing.  No DB access their either. https://www.youtube.com/watch?v=5Qga2pniN78&list=PLdo4fOcmZ0oUBAdL2NwBpDs32zwGqb9DY

difference between field and property in c#

In C#, a field is a variable (that can be of any type) that is defined inside a class. It can be used to define the characteristics of an object or a class. On the other hand, a property is a member of the class that provides an abstraction to set (write) and get (read) the value of a private field. https://www.educative.io/answers/what-is-the-difference-between-fields-and-properties-in-c-sharp Generally fields are private, as the point of a property is you have getter and setter code-handled capabilities.

Microsoft's own course

  https://www.youtube.com/playlist?list=PLdo4fOcmZ0oULFjxrOagaERVAMbmG20Xe https://youtu.be/ZXCMBOxry8A?si=k5F0Ool7fKHUshh7 checked keyword was new to me [pt8] integers: integer, long and bigint... int a = (int)42.1      float is 32 bit,  double is 64 bit. However this is all BS:  So as usual go for decimal... But instead of D we use M [pt12]  var keyword to avoid repetition when right-side strongly typed. [pt13] ^ operator and [2..4]  oh, that's start at 2 and up to but not included 4 names = [..names."Damian"]  is a new c# feature.    <why?>

LINQ

 Seems I done a lot of these, but there might be some gems in this list https://www.youtube.com/watch?v=7-P6Mxl5elg&t=208s