- Replace
void SceneLoop()
withTASK(void) SceneLoop()
- Replace
AnotherSceneLoop()
withAWAIT AnotherSceneLoop()
- Replace
flip_screen()
withAWAIT flip_screen()
- Replace
return
withCO_RETURN
- At the end of
flip_screen()
impl,AWAIT next_frame()
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/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, | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: generic | |
dist: xenial | |
sudo: false | |
branches: | |
except: | |
- ___TGS3TempBranch | |
- ___TGSTempBranch | |
matrix: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define JOB_MODIFICATION_MAP_NAME "NSS Frenzy" | |
// Command | |
/datum/job/New() | |
..() | |
MAP_JOB_CHECK | |
supervisors = "the captain and the head of personnel" | |
/datum/job/captain/New() | |
..() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <thread> | |
#include <memory> | |
#include <atomic> | |
using namespace std; | |
using namespace std::chrono_literals; | |
atomic<bool> should_quit; | |
struct wrapper { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script language="JavaScript" type="text/javascript"> | |
// Copyright (C) 2017 Comcast Cable Communications, LLC | |
// Contact Us: http://customer.xfinity.com/contact-us/ | |
// Intended use of this message is to display critical and time sensitive notifications to customers. | |
/* | |
This program is free software; you can redistribute it and/or | |
modify it under the terms of the GNU General Public License | |
as published by the Free Software Foundation; either version 2 | |
of the License, or (at your option) any later version. |
cd
to yourtgstation
directorymkdir data/planetstation
- Place
planetstation.py
intools/mapmerge2/
set PYTHONPATH=tools/mapmerge2
python3 -m planetstation _maps/map_files/*/*Station.dmm
- Observe output in
data/planetstation
If that doesn't work ping me on IRC or figure it out.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import sys, shutil | |
from PIL import Image | |
from PIL.PngImagePlugin import PngInfo | |
def split(fname): | |
image = Image.open(f"{fname}.dmi") | |
if 'Description' not in image.info: | |
return |
NewerOlder