Learning Python for Numeric and Scientific Applications

My purpose in learning Python is mainly for numeric and scientific applications, such as AI deep learning.  So my notes will focus mainly on using Python for these types of applications. The code below demonstrates a little about Python such as some variables and types; lists; subsetting and slicing lists; adding, removing and copying lists; …

Continue reading Learning Python for Numeric and Scientific Applications

.NET Code Documentation And Testing: They Are There, Why Not Use It?

Remember the "///"?  They are the C# XML documentation comments and they are pretty useful when you are building your APIs and frameworks so other developers who use your code can at least see some useful information on your classes and methods through the intellisense provided by the Visual Studio IDE. Take the following sample …

Continue reading .NET Code Documentation And Testing: They Are There, Why Not Use It?

I’m familiar with .NET Framework, so what is .NET Standard and .NET Core?

Basically .NET Framework is an implementation of .NET, much like Mono if you know Mono.  .NET Core is a newer implementation of .NET that is dubbed as cross-platform and designed for cloud.  Now .NET Standard is what is common among these .NET implementations and if your .NET app targets .NET Standard, it would mean that …

Continue reading I’m familiar with .NET Framework, so what is .NET Standard and .NET Core?