-
Don’t Downgrade to windows 11!
My 8 year old desktop destroys any laptop at building projects. My M3 Macbook Pro takes 15 minutes to build my project. My old desktop takes about 15 seconds!! I can’t downgrade to windows 11 because the mobo doesn’t support TPM 2.0. I’ll just stay on 10. No copilot, no login requirements, no taking screenshots…
-
An Overview Of How I Used AI to Level Up in an Open Source, Online Game
About a year ago, I started playing this online game, Mana World. It was pretty relaxing, and it even brought back memories of playing WOW or FFXI. The only thing is it has no real end game. The players fight in one zone from level 100-140 and it’s quite tedious. However, there are some quests…
-
A Quicky: DocOpt.Net – Console Applications
Recently, I discovered this Github page here and was pretty floored by the idea. Simply put, the writer documents the console application’s actions in comments and this library will parse them and return a list of key-value pairs containing the options that the user has selected. Here’s some code from their example: Notice how the…
-
Sorting in Entity Framework Core
Continuing from my last post. Let’s add a few endpoints that support sorting. If you’d like the source code, it can be found here. First, I will add a PagingViewModel.cs file to the Database project: This contains the Start index and the Count (which is used for pagination). Also, it has an OrderBy string as…