From fbffd83083d29051bebfc1175e72b73d5cc7557b Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Fri, 20 Nov 2020 23:30:20 +0000 Subject: [PATCH] --- Cookbook.md | 41 ++++++++++++++++++++--------------------- 1 file changed, 20 insertions(+), 21 deletions(-) diff --git a/Cookbook.md b/Cookbook.md index 4123176..f52b5d0 100644 --- a/Cookbook.md +++ b/Cookbook.md @@ -1,13 +1,3 @@ - -* Get repo working on completely fresh install: first, make sure that git.semicolin.games has the right ssh public key for the machine. Then: -```shell -sudo apt install git-lfs -git lfs install -git clone git@git.semicolin.games:semicolin/sneak-private.git sneak -git submodule init -git submodule update -``` - * encode ogg files so that they're not above 48khz (the max monogame can handle): `oggenc --resample=48000 sword_swing_*.wav` * find monogame content builder errors: @@ -63,20 +53,13 @@ Then `cp import.txt` into the appropriate output directory. * Access modifiers in C#: -* Matt Thorson's Monocle engine: +* Maddy Thorson's Monocle engine: * Here's the source code for the C# List class (for example): * Boot up SNES30 controller to talk with Windows via XInput: hold Start for a few seconds to turn it off if needed, then hold down Start+X to power on the controller in XInput mode. [Manual here.](https://download.8bitdo.com/Manual/Controller/SN30+SF30/SN30+SF30_Manual_V4.pdf) My controller's been updated to firmware version 4.20. -* Add git remotes for both gitlab and github: - -``` -git remote add origin git@github.com:mcmillen/sneak-private.git -git remote add gitlab git@gitlab.com:SemiColinGames/sneak-private.git -``` - Then you can `git push origin` or `git push gitlab`. * Remove a remote: @@ -91,8 +74,6 @@ git remote remove github git push && git push github ``` -(previously: `git push origin && git push gitlab && tools/copybara/copybara.sh`) - * Find all TODOs: ``` @@ -103,4 +84,22 @@ grep TODO $(git ls-tree -r master --name-only) ``` git ls-tree -r master --name-only | grep ".cs$" | xargs dos2unix -``` \ No newline at end of file +``` + +## deprecated stuff + +* Get repo working on completely fresh install: first, make sure that git.semicolin.games has the right ssh public key for the machine. Then: +```shell +sudo apt install git-lfs +git lfs install +git clone git@git.semicolin.games:semicolin/sneak-private.git sneak +git submodule init +git submodule update +``` + +* Add git remotes for both gitlab and github: + +``` +git remote add origin git@github.com:mcmillen/sneak-private.git +git remote add gitlab git@gitlab.com:SemiColinGames/sneak-private.git +```