From 453b26cfcc48a0bd2a2164e96603496ad8bef575 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sat, 30 Dec 2023 17:08:44 -0500 Subject: [PATCH] initial commit --- .gitignore | 6 +++++ Databases/SurrealDB/SurrealDB Local Setup.md | 25 +++++++++++++++++++ Databases/SurrealDB/SurrealDB Server Setup.md | 1 + Personal/Christmas List.md | 13 ++++++++++ Projects/RecipeFolioServer/general.md | 1 + Test.md | 0 6 files changed, 46 insertions(+) create mode 100644 .gitignore create mode 100644 Databases/SurrealDB/SurrealDB Local Setup.md create mode 100644 Databases/SurrealDB/SurrealDB Server Setup.md create mode 100644 Personal/Christmas List.md create mode 100644 Projects/RecipeFolioServer/general.md create mode 100644 Test.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8120bd0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +.obsidian/ +.obsidian/plugins +.obsidian/workspace.json +.obsidian/workspace-mobile.json +.trash/ +.DS_STORE diff --git a/Databases/SurrealDB/SurrealDB Local Setup.md b/Databases/SurrealDB/SurrealDB Local Setup.md new file mode 100644 index 0000000..6ca9892 --- /dev/null +++ b/Databases/SurrealDB/SurrealDB Local Setup.md @@ -0,0 +1,25 @@ +1. Pull down and run Docker image with the following command on your local computer (this example is running Linux): +```shell +docker run --rm --pull always -p 8000:8000 surrealdb/surrealdb:latest start + --user root --pass root + ``` + - Note that this stores SurrealDB's data in memory so that when the container is shutdown, your data is gone! Run this Docker command to persist your data: +```shell +docker run --rm --pull always -p 8000:8000 -v /home/wyatt/Source/TriviaDb/:/mydata surrealdb/surrealdb:latest start + --user root --pass root file:/mydata/database.db +``` +2. Note the following down: + 1. Namespace: test + 2. Database: test + 3. User: root + 4. Password: root +3. Enter Surrealist (SurrealDB manager) and add new session +4. Enter the following in the "Create Session" modal: + 1. Name of your session (could be literally anything) + 2. `http://localhost:8000` as your Endpoint URL + 3. Authentication Method should be "Root Authentication" + 4. Namespace given + 5. Database given + 6. User given + 7. Password given +5. Clicking on "Save details" should get you connected! \ No newline at end of file diff --git a/Databases/SurrealDB/SurrealDB Server Setup.md b/Databases/SurrealDB/SurrealDB Server Setup.md new file mode 100644 index 0000000..d5ebe9d --- /dev/null +++ b/Databases/SurrealDB/SurrealDB Server Setup.md @@ -0,0 +1 @@ +1. Login to VPS of choice \ No newline at end of file diff --git a/Personal/Christmas List.md b/Personal/Christmas List.md new file mode 100644 index 0000000..7461852 --- /dev/null +++ b/Personal/Christmas List.md @@ -0,0 +1,13 @@ +- Salomon tennis shoes - https://www.salomon.com/en-us/shop/product/sense-ride-4-gore-tex-li3170.html +- ZSA Moonlander - https://www.zsa.io/moonlander/buy - clicky switches +- Launch Lite - https://system76.com/accessories/launch - clicky switches +- Cat tree (small) +- Coffee table +- Audio interface and microphone - https://www.sweetwater.com/store/detail/ScarSo2020PkBn--focusrite-scarlett-solo-4th-gen-usb-audio-interface-and-audio-technica-at2020pk-streaming-podcasting-kit +- Quarter zip sweatshirts (for work) +- Business casual dress shirts (for work) +- Flannel shirts +- Sweatpants +- Hoodies +- Wall decor (for apartment) +- Bookshelf (for apartment) \ No newline at end of file diff --git a/Projects/RecipeFolioServer/general.md b/Projects/RecipeFolioServer/general.md new file mode 100644 index 0000000..551bbad --- /dev/null +++ b/Projects/RecipeFolioServer/general.md @@ -0,0 +1 @@ +stuff and things \ No newline at end of file diff --git a/Test.md b/Test.md new file mode 100644 index 0000000..e69de29