Skip to content

Instantly share code, notes, and snippets.

@MilkyEngineer
MilkyEngineer / Minimal-5.2.uproject
Last active November 16, 2025 11:53
Minimal project descriptor that "Disables Engine Plugins by Default" for Unreal Engine
{
"FileVersion": 3,
"EngineAssociation": "5.2",
"Description": "Minimum viable plugin dependencies for a usable Unreal Engine project",
"DisableEnginePluginsByDefault": true,
"Plugins": [
{
"Name": "PluginBrowser",
"Enabled": true
},
@dejw
dejw / client.py
Created April 3, 2012 18:58
API for remote procedure library done right
# -*- coding: utf-8 -*-
# client.py
from common import FooClient, LockedError, UnauthorizedError
from jsonrpclib import Server, ProtocolError as JsonProtocolError
if __name__ == "__main__":
# using remote
client = FooClient() # in fact FooClient can be also an instance of