From f7e739a4cd4687af4e5174d049332cb65f8fd6f0 Mon Sep 17 00:00:00 2001 From: Dylan Lloyd Date: Tue, 7 Feb 2023 15:02:25 -0500 Subject: [PATCH] Add project submodules --- .gitmodules | 9 +++++++++ _data/personal-projects.yml | 9 +++++++++ cellular-automata | 1 + mud | 1 + tictactoe | 1 + 5 files changed, 21 insertions(+) create mode 100644 .gitmodules create mode 160000 cellular-automata create mode 160000 mud create mode 160000 tictactoe diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..142dde6 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,9 @@ +[submodule "cellular-automata"] + path = cellular-automata + url = git@github.com:majuscule/cellular-automaton.git +[submodule "mud"] + path = mud + url = git@github.com:majuscule/mudd.git +[submodule "tictactoe"] + path = tictactoe + url = git@github.com:majuscule/minimax.git diff --git a/_data/personal-projects.yml b/_data/personal-projects.yml index 251ceb5..c98c4f1 100644 --- a/_data/personal-projects.yml +++ b/_data/personal-projects.yml @@ -2,6 +2,12 @@ description: | 64 and 32 bit Netwide Assembly demonstration, in the form of a needlessly complicated hello world featuring a branch, macro and function. +#- name: mud +# description: | +# Multiuser dungeon demonstration. +#

+# Check it out here + - name: minimax description: | Unbeatable tictactoe. @@ -11,6 +17,7 @@ - name: dylansserver description: | The initial instance of this server, which once ran it's namesake virtual domain on a custom MVC framework (it had a few more features then). It also ran my mailserver, DNS server, git server, and automated deployments and backups. + - name: simpletimingattack description: | This program implements a simple timing attack. It measures the execution time of a target program over a number of iterations, rotating through a character set and appending the fastest (or slowest) character to the result. @@ -18,6 +25,8 @@ - name: cellular-automaton description: | One and two dimensional cellular automata animated on an HTML canvas. Two dimensional automaton seeds can be drawn on the screen and animated. +

+ Check it out here - name: i_like_pandora description: | diff --git a/cellular-automata b/cellular-automata new file mode 160000 index 0000000..26a8f8d --- /dev/null +++ b/cellular-automata @@ -0,0 +1 @@ +Subproject commit 26a8f8ddaa0becf3b923ace41a976c04598d00bd diff --git a/mud b/mud new file mode 160000 index 0000000..19bbaf5 --- /dev/null +++ b/mud @@ -0,0 +1 @@ +Subproject commit 19bbaf5a8dee8338c686751ddfe9abb9a12148c3 diff --git a/tictactoe b/tictactoe new file mode 160000 index 0000000..16eecb6 --- /dev/null +++ b/tictactoe @@ -0,0 +1 @@ +Subproject commit 16eecb6b3a655e4b8f01c113c953ede47dd6c4b7 -- 2.30.2