Posts

Showing posts with the label Debug

My Wife's Cognitive Challenge

Image
 My wife is a professional dog trainer and behaviorist. Being the tech geek that I am I coded and maintain her website  https://dogsden.ca . She recently developed a training system called  Barbara Lloyd's Canine Cognitive Challenges , a framework that focuses on cognitive skill building for dogs rather than traditional command based training. It uses structured problem solving tasks to reveal how a dog processes information, forms strategies, and adapts to new situations. In other words, it trains the thinking system, not just the response pattern. Key outcomes of this cognitive approach include: • Stronger resilience and confidence in puppies and young dogs • Improved focus and decision making in adult dogs • Greater curiosity, autonomy, and emotional stability The program had great success in real world training, so she wanted to turn it into a scalable online course. I dutifully coded one up as a subsite under her https://dogsden.ca site. Got it all working...

The program has exited with code 4294967295

 I had gotten a new laptop at work and had gotten everything transferred and working except when I tried to debug a web application in Visual Studio it would immediately stop and in the output window I could see the message "The program has exited with code 4294967295". I searched the internet and most of the solutions involved Docker issues but I wasn't running Docker. I discovered that I could run it in release mode and then attach a debugger to the process. It was clunky but at least I could debug again. A couple of weeks later my laptop got a Windows update and then I couldn't launch a browser when clicking on URLs in e-mails or in Teams. Searching for a solution on the web for that suggested looking at my default browser settings. Turns out my default browser was set to Internet Explorer 🤯. I use Edge and Chrome from links on my Windows Taskbar.  I changed the default browser to Edge and I could launch a browser from URL links again and finally debug a web appli...