Skip to content

Instantly share code, notes, and snippets.

From b80b1832ea6fa92402e79697ade7853241a9f2d5 Mon Sep 17 00:00:00 2001
From: Tad Hardesty <[email protected]>
Date: Sat, 28 Jul 2018 17:24:36 -0700
Subject: [PATCH] Add dm2doxy doxygen filter
Works by parsing the whole environment and creating dummy files
corresponding to each real file, which are then served instead of
parsing the real files one-by-one.
Not recommended for use, as Doxygen takes upwards of 6.5 hours to
@SpaceManiac
SpaceManiac / _Emscripten Coroutines.md
Last active July 19, 2019 05:20
Simple Emscripten coroutine scheduler
  • Replace void SceneLoop() with TASK(void) SceneLoop()
  • Replace AnotherSceneLoop() with AWAIT AnotherSceneLoop()
  • Replace flip_screen() with AWAIT flip_screen()
  • Replace return with CO_RETURN
  • At the end of flip_screen() impl, AWAIT next_frame()
@SpaceManiac
SpaceManiac / .travis.yml
Created October 5, 2019 21:04
Travis YML file to run dmdoc and upload its output to GitHub pages
language: generic
dist: xenial
sudo: false
branches:
except:
- ___TGS3TempBranch
- ___TGSTempBranch
matrix:
/proc/get_connection()
var/options = list(
"host" = "127.0.0.1",
"port" = 3306,
"user" = "some_username",
"pass" = "some_password",
"db_name" = "some_dbname",
"min_threads" = 1,
"max_threads" = 5,
)
@SpaceManiac
SpaceManiac / _Nebula Kth Factor.md
Last active May 20, 2025 04:02
Smaller version of zkEngine's kth_factor example