Skip to content

Instantly share code, notes, and snippets.

@Dinsmoor
Dinsmoor / se-ds-linux-wine.md
Created June 6, 2026 03:30
Running a Space Engineers Dedicated Server on Linux via Wine (with the Segoe UI font crash fix)

Running a Space Engineers Dedicated Server on Linux via Wine

A working setup for running the Space Engineers Dedicated Server (SEDS) on Linux under Wine. The main gotcha is that the server's configurator GUI requires the Segoe UI font, which doesn't exist in a stock Wine prefix — so it crashes on launch with a misleading error. This guide includes the fix.

Tested on Linux with Wine (default ~/.wine prefix), App Version 01_209_024.

Prerequisites

@Dinsmoor
Dinsmoor / orderman.py
Created December 11, 2017 21:09
Super simple tool to manage orders for custom coasters
# text-based order management system
DEBUG = True
import pickle
import sys
import random
import datetime
from dateutil import parser as dateparser
try:
import readline
except Exception as e: