I have another website at dev.kielthecoder.com that isn't used for much. But I was curious who might be visiting it and where they come from. I'm not doing any cookies or session tracking, so I only have the server log files to go off of. I want to demonstrate some UNIX commands that can be … Continue reading Analyzing Web Traffic
Tag: c#
.NET and Raspberry Pi
In the previous post, I looked at getting VS Code setup so we could build and run programs in C#. In this one, we'll look at deploying to a Raspberry Pi after we've tested them. I have a spare Raspberry Pi 3B+ that I want to try running .NET code on. I used the Raspberry … Continue reading .NET and Raspberry Pi
C# in VS Code
While I've been using Visual Studio 2008 / 2015 / 2017 / 2019 to do most of my C# programming, it is also possible to use VS Code. There's a workflow I'm building up to where I'd like to deploy to a Raspberry Pi, and it looks like in VS Code it may be possible … Continue reading C# in VS Code
Delegates vs Events
Trying to glean some notes from https://docs.microsoft.com/en-us/dotnet/csharp/distinguish-delegates-events. All text is from that page (emphasis is mine). The most important consideration in determining which language feature to use is whether or not there must be an attached subscriber. If your code must call the code supplied by the subscriber, you should use a design based on … Continue reading Delegates vs Events