-
Trying My Hand at Game Development (2D Mobile)
So, I started a 2D mobile game in Godot. And, being a newer framework, there’s quite a bit learning reuquired. Just google whatever you need and it’s there. For general questions about specific things (sounds odd, I know) AI is pretty good. I wanted to create the program in GDScript because I wanted to learn…
-
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…
-
My Experience Switching To K-Ubuntu Linux (from Windows 11)
So, I recently switched my desktop to Kubuntu Linux and here’s a quick overview: Initially, I installed Ubuntu latest and it starts up with Gnome and X11 which is a problem because I have high refresh monitors and X11 doesn’t support this. So, I switched to KDE and Wayland which worked pretty well, but there…
-
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…
-
Uploading Large files with Angular 14 and ASP.NET Core 6
It’s been a bit since my last post, and it was mostly me trying to figure out what to talk about next. I thought this would be an interesting post. NOTE: the code for this blog can be found here. So, uploading large files directly from a web site can be a burden. If the…
-
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…
-
ASP.NET 6 JWT Unauthorized Issue With Multiple Servers
Not long ago, my company upgraded to .NET Core and had some random authorization issues. Our general architecture is a load balancer that feeds a few API’s. After a user got logged in, he would immediately get logged out… Randomly. This caused us to look at our login process. So, the user would login which…
-
ASP.NET 6 and Dependency Injection
From the beginning of the .NET Core era, Dependency Injection is to be used thoroughly. Controllers, Business Logic, and just about any other dependency can use Dependency Injection. So, what is it and how is it set up? (The source code for this project can be found on Github here.) What is Dependency Injection Dependency…
-
Using RabbitMQ in ASP.NET Core 6.0
Continuing from my last post, here, let’s add the ability for an ASP.NET endpoint to queue a message to RabbitMQ. The source code can be found on Github here, please use that as a reference. First thing to do is to add an ASP.NET Core project to the solution. Right-click on the solution and select…
-
Using RabbitMQ in C#
Often, when dealing with software, there are tasks which take long to compute. As such, you wouldn’t want to compute this directly in an API, but use other methods to calculate it and return it to the user at a later time. (Think generating a report, or dealing with large amounts of data.) Simply put,…
