brain genuinely not working with me so instead of thinking of a design, im just gonna write the links down for now:
+
+ForgeJo
+
+Ouroboros.Gay - Fediverse
+
+Ouroboros.Gay - Fediverse (Akkoma Version)
+
+Uptime Kuma
+
+limepot.xyz - Personal Website
+
diff --git a/mybulma/node_modules/.bin/color-support b/mybulma/node_modules/.bin/color-support
old mode 100644
new mode 100755
diff --git a/mybulma/node_modules/.bin/mkdirp b/mybulma/node_modules/.bin/mkdirp
old mode 100644
new mode 100755
diff --git a/mybulma/node_modules/.bin/node-gyp b/mybulma/node_modules/.bin/node-gyp
old mode 100644
new mode 100755
diff --git a/mybulma/node_modules/.bin/node-sass b/mybulma/node_modules/.bin/node-sass
old mode 100644
new mode 100755
diff --git a/mybulma/node_modules/.bin/node-which b/mybulma/node_modules/.bin/node-which
old mode 100644
new mode 100755
diff --git a/mybulma/node_modules/.bin/nopt b/mybulma/node_modules/.bin/nopt
old mode 100644
new mode 100755
diff --git a/mybulma/node_modules/.bin/resolve b/mybulma/node_modules/.bin/resolve
old mode 100644
new mode 100755
diff --git a/mybulma/node_modules/.bin/rimraf b/mybulma/node_modules/.bin/rimraf
old mode 100644
new mode 100755
diff --git a/mybulma/node_modules/.bin/sassgraph b/mybulma/node_modules/.bin/sassgraph
old mode 100644
new mode 100755
diff --git a/mybulma/node_modules/.bin/semver b/mybulma/node_modules/.bin/semver
old mode 100644
new mode 100755
diff --git a/mybulma/node_modules/@types/minimist/LICENSE b/mybulma/node_modules/@types/minimist/LICENSE
old mode 100644
new mode 100755
diff --git a/mybulma/node_modules/@types/minimist/README.md b/mybulma/node_modules/@types/minimist/README.md
old mode 100644
new mode 100755
diff --git a/mybulma/node_modules/@types/minimist/index.d.ts b/mybulma/node_modules/@types/minimist/index.d.ts
old mode 100644
new mode 100755
diff --git a/mybulma/node_modules/@types/minimist/package.json b/mybulma/node_modules/@types/minimist/package.json
old mode 100644
new mode 100755
diff --git a/mybulma/node_modules/@types/normalize-package-data/LICENSE b/mybulma/node_modules/@types/normalize-package-data/LICENSE
old mode 100644
new mode 100755
diff --git a/mybulma/node_modules/@types/normalize-package-data/README.md b/mybulma/node_modules/@types/normalize-package-data/README.md
old mode 100644
new mode 100755
diff --git a/mybulma/node_modules/@types/normalize-package-data/index.d.ts b/mybulma/node_modules/@types/normalize-package-data/index.d.ts
old mode 100644
new mode 100755
diff --git a/mybulma/node_modules/@types/normalize-package-data/package.json b/mybulma/node_modules/@types/normalize-package-data/package.json
old mode 100644
new mode 100755
diff --git a/mybulma/node_modules/aggregate-error/index.d.ts b/mybulma/node_modules/aggregate-error/index.d.ts
new file mode 100644
index 0000000..502bf7a
--- /dev/null
+++ b/mybulma/node_modules/aggregate-error/index.d.ts
@@ -0,0 +1,51 @@
+/**
+Create an error from multiple errors.
+*/
+declare class AggregateError extends Error implements Iterable {
+ readonly name: 'AggregateError';
+
+ /**
+ @param errors - If a string, a new `Error` is created with the string as the error message. If a non-Error object, a new `Error` is created with all properties from the object copied over.
+ @returns An Error that is also an [`Iterable`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Iterators_and_Generators#Iterables) for the individual errors.
+
+ @example
+ ```
+ import AggregateError = require('aggregate-error');
+
+ const error = new AggregateError([new Error('foo'), 'bar', {message: 'baz'}]);
+
+ throw error;
+
+ // AggregateError:
+ // Error: foo
+ // at Object. (/Users/sindresorhus/dev/aggregate-error/example.js:3:33)
+ // Error: bar
+ // at Object. (/Users/sindresorhus/dev/aggregate-error/example.js:3:13)
+ // Error: baz
+ // at Object. (/Users/sindresorhus/dev/aggregate-error/example.js:3:13)
+ // at AggregateError (/Users/sindresorhus/dev/aggregate-error/index.js:19:3)
+ // at Object. (/Users/sindresorhus/dev/aggregate-error/example.js:3:13)
+ // at Module._compile (module.js:556:32)
+ // at Object.Module._extensions..js (module.js:565:10)
+ // at Module.load (module.js:473:32)
+ // at tryModuleLoad (module.js:432:12)
+ // at Function.Module._load (module.js:424:3)
+ // at Module.runMain (module.js:590:10)
+ // at run (bootstrap_node.js:394:7)
+ // at startup (bootstrap_node.js:149:9)
+
+
+ for (const individualError of error) {
+ console.log(individualError);
+ }
+ //=> [Error: foo]
+ //=> [Error: bar]
+ //=> [Error: baz]
+ ```
+ */
+ constructor(errors: ReadonlyArray);
+
+ [Symbol.iterator](): IterableIterator;
+}
+
+export = AggregateError;
diff --git a/mybulma/node_modules/aggregate-error/index.js b/mybulma/node_modules/aggregate-error/index.js
new file mode 100644
index 0000000..ba5bf02
--- /dev/null
+++ b/mybulma/node_modules/aggregate-error/index.js
@@ -0,0 +1,47 @@
+'use strict';
+const indentString = require('indent-string');
+const cleanStack = require('clean-stack');
+
+const cleanInternalStack = stack => stack.replace(/\s+at .*aggregate-error\/index.js:\d+:\d+\)?/g, '');
+
+class AggregateError extends Error {
+ constructor(errors) {
+ if (!Array.isArray(errors)) {
+ throw new TypeError(`Expected input to be an Array, got ${typeof errors}`);
+ }
+
+ errors = [...errors].map(error => {
+ if (error instanceof Error) {
+ return error;
+ }
+
+ if (error !== null && typeof error === 'object') {
+ // Handle plain error objects with message property and/or possibly other metadata
+ return Object.assign(new Error(error.message), error);
+ }
+
+ return new Error(error);
+ });
+
+ let message = errors
+ .map(error => {
+ // The `stack` property is not standardized, so we can't assume it exists
+ return typeof error.stack === 'string' ? cleanInternalStack(cleanStack(error.stack)) : String(error);
+ })
+ .join('\n');
+ message = '\n' + indentString(message, 4);
+ super(message);
+
+ this.name = 'AggregateError';
+
+ Object.defineProperty(this, '_errors', {value: errors});
+ }
+
+ * [Symbol.iterator]() {
+ for (const error of this._errors) {
+ yield error;
+ }
+ }
+}
+
+module.exports = AggregateError;
diff --git a/mybulma/node_modules/aggregate-error/license b/mybulma/node_modules/aggregate-error/license
new file mode 100644
index 0000000..e7af2f7
--- /dev/null
+++ b/mybulma/node_modules/aggregate-error/license
@@ -0,0 +1,9 @@
+MIT License
+
+Copyright (c) Sindre Sorhus (sindresorhus.com)
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/mybulma/node_modules/aggregate-error/package.json b/mybulma/node_modules/aggregate-error/package.json
new file mode 100644
index 0000000..74fcc37
--- /dev/null
+++ b/mybulma/node_modules/aggregate-error/package.json
@@ -0,0 +1,41 @@
+{
+ "name": "aggregate-error",
+ "version": "3.1.0",
+ "description": "Create an error from multiple errors",
+ "license": "MIT",
+ "repository": "sindresorhus/aggregate-error",
+ "author": {
+ "name": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
+ "url": "sindresorhus.com"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "scripts": {
+ "test": "xo && ava && tsd"
+ },
+ "files": [
+ "index.js",
+ "index.d.ts"
+ ],
+ "keywords": [
+ "aggregate",
+ "error",
+ "combine",
+ "multiple",
+ "many",
+ "collection",
+ "iterable",
+ "iterator"
+ ],
+ "dependencies": {
+ "clean-stack": "^2.0.0",
+ "indent-string": "^4.0.0"
+ },
+ "devDependencies": {
+ "ava": "^2.4.0",
+ "tsd": "^0.7.1",
+ "xo": "^0.25.3"
+ }
+}
diff --git a/mybulma/node_modules/aggregate-error/readme.md b/mybulma/node_modules/aggregate-error/readme.md
new file mode 100644
index 0000000..850de98
--- /dev/null
+++ b/mybulma/node_modules/aggregate-error/readme.md
@@ -0,0 +1,61 @@
+# aggregate-error [![Build Status](https://travis-ci.org/sindresorhus/aggregate-error.svg?branch=master)](https://travis-ci.org/sindresorhus/aggregate-error)
+
+> Create an error from multiple errors
+
+
+## Install
+
+```
+$ npm install aggregate-error
+```
+
+
+## Usage
+
+```js
+const AggregateError = require('aggregate-error');
+
+const error = new AggregateError([new Error('foo'), 'bar', {message: 'baz'}]);
+
+throw error;
+/*
+AggregateError:
+ Error: foo
+ at Object. (/Users/sindresorhus/dev/aggregate-error/example.js:3:33)
+ Error: bar
+ at Object. (/Users/sindresorhus/dev/aggregate-error/example.js:3:13)
+ Error: baz
+ at Object. (/Users/sindresorhus/dev/aggregate-error/example.js:3:13)
+ at AggregateError (/Users/sindresorhus/dev/aggregate-error/index.js:19:3)
+ at Object. (/Users/sindresorhus/dev/aggregate-error/example.js:3:13)
+ at Module._compile (module.js:556:32)
+ at Object.Module._extensions..js (module.js:565:10)
+ at Module.load (module.js:473:32)
+ at tryModuleLoad (module.js:432:12)
+ at Function.Module._load (module.js:424:3)
+ at Module.runMain (module.js:590:10)
+ at run (bootstrap_node.js:394:7)
+ at startup (bootstrap_node.js:149:9)
+*/
+
+for (const individualError of error) {
+ console.log(individualError);
+}
+//=> [Error: foo]
+//=> [Error: bar]
+//=> [Error: baz]
+```
+
+
+## API
+
+### AggregateError(errors)
+
+Returns an `Error` that is also an [`Iterable`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Iterators_and_Generators#Iterables) for the individual errors.
+
+#### errors
+
+Type: `Array`
+
+If a string, a new `Error` is created with the string as the error message.
+If a non-Error object, a new `Error` is created with all properties from the object copied over.
diff --git a/mybulma/node_modules/aproba/CHANGELOG.md b/mybulma/node_modules/aproba/CHANGELOG.md
new file mode 100644
index 0000000..bab30ec
--- /dev/null
+++ b/mybulma/node_modules/aproba/CHANGELOG.md
@@ -0,0 +1,4 @@
+2.0.0
+ * Drop support for 0.10 and 0.12. They haven't been in travis but still,
+ since we _know_ we'll break with them now it's only polite to do a
+ major bump.
diff --git a/mybulma/node_modules/aproba/LICENSE b/mybulma/node_modules/aproba/LICENSE
new file mode 100644
index 0000000..f4be44d
--- /dev/null
+++ b/mybulma/node_modules/aproba/LICENSE
@@ -0,0 +1,14 @@
+Copyright (c) 2015, Rebecca Turner
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
diff --git a/mybulma/node_modules/aproba/README.md b/mybulma/node_modules/aproba/README.md
new file mode 100644
index 0000000..0bfc594
--- /dev/null
+++ b/mybulma/node_modules/aproba/README.md
@@ -0,0 +1,94 @@
+aproba
+======
+
+A ridiculously light-weight function argument validator
+
+```
+var validate = require("aproba")
+
+function myfunc(a, b, c) {
+ // `a` must be a string, `b` a number, `c` a function
+ validate('SNF', arguments) // [a,b,c] is also valid
+}
+
+myfunc('test', 23, function () {}) // ok
+myfunc(123, 23, function () {}) // type error
+myfunc('test', 23) // missing arg error
+myfunc('test', 23, function () {}, true) // too many args error
+
+```
+
+Valid types are:
+
+| type | description
+| :--: | :----------
+| * | matches any type
+| A | `Array.isArray` OR an `arguments` object
+| S | typeof == string
+| N | typeof == number
+| F | typeof == function
+| O | typeof == object and not type A and not type E
+| B | typeof == boolean
+| E | `instanceof Error` OR `null` **(special: see below)**
+| Z | == `null`
+
+Validation failures throw one of three exception types, distinguished by a
+`code` property of `EMISSINGARG`, `EINVALIDTYPE` or `ETOOMANYARGS`.
+
+If you pass in an invalid type then it will throw with a code of
+`EUNKNOWNTYPE`.
+
+If an **error** argument is found and is not null then the remaining
+arguments are optional. That is, if you say `ESO` then that's like using a
+non-magical `E` in: `E|ESO|ZSO`.
+
+### But I have optional arguments?!
+
+You can provide more than one signature by separating them with pipes `|`.
+If any signature matches the arguments then they'll be considered valid.
+
+So for example, say you wanted to write a signature for
+`fs.createWriteStream`. The docs for it describe it thusly:
+
+```
+fs.createWriteStream(path[, options])
+```
+
+This would be a signature of `SO|S`. That is, a string and and object, or
+just a string.
+
+Now, if you read the full `fs` docs, you'll see that actually path can ALSO
+be a buffer. And options can be a string, that is:
+```
+path |
+options |