├── .gitignore ├── README.txt ├── commentary ├── before-you-embark.txt ├── hardware-considerations.txt ├── journey-notes.txt └── why-even-bother.txt ├── daily-notes ├── 2022-08-29.txt ├── 2022-08-30.txt ├── 2022-08-31.txt ├── 2022-09-01.txt └── 2022-09-03.txt ├── introduction.txt ├── network-map.drawio └── tldr.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverTheFirst/server-the-first/HEAD/.gitignore -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverTheFirst/server-the-first/HEAD/README.txt -------------------------------------------------------------------------------- /commentary/before-you-embark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverTheFirst/server-the-first/HEAD/commentary/before-you-embark.txt -------------------------------------------------------------------------------- /commentary/hardware-considerations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverTheFirst/server-the-first/HEAD/commentary/hardware-considerations.txt -------------------------------------------------------------------------------- /commentary/journey-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverTheFirst/server-the-first/HEAD/commentary/journey-notes.txt -------------------------------------------------------------------------------- /commentary/why-even-bother.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverTheFirst/server-the-first/HEAD/commentary/why-even-bother.txt -------------------------------------------------------------------------------- /daily-notes/2022-08-29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverTheFirst/server-the-first/HEAD/daily-notes/2022-08-29.txt -------------------------------------------------------------------------------- /daily-notes/2022-08-30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverTheFirst/server-the-first/HEAD/daily-notes/2022-08-30.txt -------------------------------------------------------------------------------- /daily-notes/2022-08-31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverTheFirst/server-the-first/HEAD/daily-notes/2022-08-31.txt -------------------------------------------------------------------------------- /daily-notes/2022-09-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverTheFirst/server-the-first/HEAD/daily-notes/2022-09-01.txt -------------------------------------------------------------------------------- /daily-notes/2022-09-03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverTheFirst/server-the-first/HEAD/daily-notes/2022-09-03.txt -------------------------------------------------------------------------------- /introduction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverTheFirst/server-the-first/HEAD/introduction.txt -------------------------------------------------------------------------------- /network-map.drawio: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tldr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serverTheFirst/server-the-first/HEAD/tldr.txt --------------------------------------------------------------------------------