Resurrected Entertainment

Archive for August, 2023

Epic Games Launcher Stuck

August 19, 2023

While downloading the update to Unreal Engine 5.2.1, the launcher appear to be stuck at 29%. Following these steps cleared that up.

Networking in DOS

August 16, 2023

Here is a great description / overview of networking in a DOS environment. It’s definitely worth a read if you cannot quite remember all of the details: https://dosdays.co.uk/topics/networking_in_dos.php

MatterControl 2.19 on Linux

August 8, 2023

If you are trying to run MatterControl 2.19 (I believe this impacts multiple versions) on Linux and the application crashes with an error about not being able to find Visual Basic, then it may be due to color, depth, or FSAA settings.

For example, this error:

exception inside UnhandledException handler: (null) assembly:/usr/lib/mono/4.5/mscorlib.dll type:FileNotFoundException member:(null)

[ERROR] FATAL UNHANDLED EXCEPTION: System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies.

Change the lines in this file (/usr/lib/mattercontrol/appsettings.json )to use 4 FSAA samples or 0 (zero). It could also be related to color depth, but unless you are running on an old machine with an old version of Linux, then it is probably going to be the anti-aliasing option.

{
  "Agg": {
    "GraphicsMode": {
      "Color": 32,
      "Depth": 24,
      "FSAASamples": 4
    },
    "ProviderTypes": {
      "DialogProvider": "MatterHackers.Agg.Platform.GtkFileDialogProvider, agg_platform_gtk"
    }
  },
  "MatterControl": {
    "Slicer": {
      "Debug": false
    }
  }
}