Category Archives: Miscellaneous

I Play Four Interesting Chess Games in a Tournament

When I was in high school (Servite High School in Anaheim, California), I was on the school chess team. Our team — Bob Smith, Tom Law, Tom Quackenbush, Dan Musser, Ed Hernandez, Dan Musser, Dennis Michel, and Mike Ventriglia — … Continue reading

Posted in Miscellaneous | Leave a comment

My Top Ten Favorite Jonny Quest Episode Title Screens

The Jonny Quest animated TV series ran just one season of 26 episodes, in 1964-65. Even though the animation was a bit crude, the stories and music and background art were nicely done. The series developed a cult following that … Continue reading

Posted in Miscellaneous | Leave a comment

“The Ethics of Ethical AI” on the Pure AI Web Site

I contributed some technical content and opinions to an article titled “The Ethics of Ethical AI” on March 2026 edition of the Pure AI web site. See https://pureai.com/articles/2026/03/19/the-ethics-of-ethical-ai.aspx. * Decisions about what constitutes ethical AI are made by fewer than … Continue reading

Posted in Miscellaneous | Leave a comment

The Ladybug on the Clock Question

I was sitting in an airport, waiting to board a flight. I figured I’d use the time to write a computer simulation to solve the Ladybug on the Clock question. Imagine a standard clock. A ladybug flies in and lands … Continue reading

Posted in Miscellaneous | Leave a comment

Gradient Boosting Regression from Scratch Using C# with List-Storage, No-Pointers, No-Recursion, MSE-Split Decision Trees

It’s not easy to explain the topic of this blog post. Bear with me. The goal of a machine learning regression problem is to predict a single numeric value. For example, predicting the bank account balance of a person based … Continue reading

Posted in Miscellaneous | Leave a comment

Myths About Visual Studio Code vs. Visual Studio

I write code almost every day. When I write .NET / C# code, I use both the Visual Studio program as well as the Visual Studio Code program. My young colleagues tend to prefer Visual Studio Code (first general usage … Continue reading

Posted in Miscellaneous | 1 Comment

A First Look At Visual Studio 2026 – No Big News is Good News

I decided to install Visual Studio 2026. This was a big deal for me because it’s not an exaggeration to say that I spend the majority of each working day using Visual Studio. I have been using the previous version, … Continue reading

Posted in Miscellaneous | Leave a comment

“WAG (Web-Augmented Generation) for Not Quite Dummies” on the Pure AI Web Site

I contributed some technical content and opinions to an article titled “WAG (Web-Augmented Generation) for Not Quite Dummies” on the Pure AI web site. See https://pureai.com/articles/2025/11/03/wag-web-augmented-generation-for-not-quite-dummies.aspx. WAG (web-augmented generation) is quickly becoming an essential part of modern AI systems. WAG … Continue reading

Posted in Miscellaneous | Leave a comment

How to Paste Source Code from Visual Studio into Word without Getting the White Background

Problem: If you copy source code from Visual Studio 2022 and paste it into a Word table, you get an ugly white background behind the text. Solution: There is absolutely no way to fix this directly because by default, when … Continue reading

Posted in Miscellaneous | Leave a comment

Python Abstract Base Class Example

When I program using Python, I almost never implement class inheritance. I decided to put together a demo just to refresh my memory. I did two demos. The first demo illustrates basic inheritance syntax where the goal is to encourage … Continue reading

Posted in Machine Learning, Miscellaneous | Leave a comment