Quartz sync: Sep 22, 2023, 11:20 AM

This commit is contained in:
bfahrenfort 2023-09-22 11:20:05 -05:00
parent e61f62d555
commit 64316b2b5b
11 changed files with 22 additions and 23 deletions

View File

@ -1,5 +1,5 @@
---
title: Essays
title: Essays - Home
tags:
- toc
date: 9-08-23

View File

@ -1,5 +1,5 @@
---
title: Miscellaneous Articles
title: Misc - Home
tags:
- toc
- misc

View File

@ -1,5 +1,5 @@
---
title: Programs I Like
title: Programs I Like - Home
tags:
- toc
date: 9-08-23

View File

@ -1,5 +1,5 @@
---
title: "Obsidian: Digital Gardening with Quartz"
title: Digital Gardening with Quartz
tags:
- meta
- webdev

View File

@ -1,5 +1,5 @@
---
title: "Obsidian: Editor"
title: Editor
tags:
- editor
- notes

View File

@ -1,5 +1,5 @@
---
title: "Projects: Obsidian"
title: Project Obsidian - Home
tags:
- project
- productivity

View File

@ -1,8 +1,15 @@
---
title: "Obsidian: LiveSync"
title: LiveSync
tags:
- cloud
- difficulty-advanced
- incomplete
date: 9-08-23
---
Setting up LiveSync was pretty tumultuous. Obsidian has a paid feature called [Obsidian Sync](https://obsidian.md/sync), which accomplishes the same thing, but I have a webserver and determination!
Repo is [here](https://github.com/vrtmrz/obsidian-livesync) for those interested.
Once I had the database the guide specified up and running (simple because docker), I routed it through nginx and tried to set up the editor plugin. However, the docs fail to mention that **you have to create an empty table inside CouchDB** and point the plugin to that, so I was causing all sorts of issues and getting errors I didn't know how to fix until I tried that on a whim. Now it works perfectly and will handle my documents without issue!
I also recommend setting up a keyboard shortcut for the `Replicate Now` command in Obsidian, I use `ctrl+shift+S`.

View File

@ -1,5 +1,5 @@
---
title: Projects
title: Projects - Home
tags:
- toc
- project

View File

@ -13,30 +13,21 @@ This site changes often. Check [[Updates]] for a monthly list of changes.
# What can I see here?
I [[about-me|(me, myself)]] write about:
- [[Projects/home|Projects]] I've undertaken
- Technical mishaps I've experienced
- [[Programs I Like/home|Programs that rock]], even if I haven't personally used them
- The intersection of social issues and technology
- Projects I've undertaken and programs that I've used
- The intersection of social issues and technology, often with a privacy-first spin
- Anything else that you can find in the [Explorer](https://quartz.jzhao.xyz/features/explorer) on this page
# What the hell is that spiderweb thing?
That's the [Graph View](https://help.obsidian.md/Plugins/Graph+view). It's an [[Programs I Like/obsidian|Obsidian]] feature which acts as a map of the entire site and how it interconnects. It doesn't use Obsidian's implementation directly, but since the site generator I use is heavily inspired by Obsidian and [Obsidian Publish]( https://obsidian.md/publish ), it remains.
That's the [Graph View](https://help.obsidian.md/Plugins/Graph+view). It's an [[Programs I Like/obsidian|Obsidian]] feature which acts as a map of what pages link to each other. Click on it for a map of the entire site and how it interconnects. It doesn't use Obsidian's implementation directly, but since the site generator I use is heavily inspired by Obsidian and [Obsidian Publish]( https://obsidian.md/publish ), it remains.
# Whats a Backlink?
The Backlinks pane is a list of all pages that link to this site in content. Because youre on the homepage, its empty. On content pages, itll be more substantial and serve as a convenient navigation tool.
# What else do I need to know?
### Rough sitemap
This should be a mostly complete textual site listing in case, like me, you find the aforementioned [[#What the hell is that spiderweb thing?|Graph View]] a bit too un-navigable for practical use.
- [[Projects/home|Projects I've worked on]]
- [[Programs I Like/home|Programs that I like]]
- [[Essays/home|Long-form, source-citing articles]]
- [[Misc/home|Miscellaneous writings]]
### Epistemological disclosure
Please accept that I reserve the right to be wrong on this website. I dont claim to be an expert on any of the subject matter within. As this site reflects a learning process, Im also liable to change my mind if I research an issue further. Ill document if this happens.
If you dont like how Ive done something, feel free to write a piece in your own garden for it. Id love to read it! Its no secret that a lot of this garden comprises my gripes with various things.
### Disclaimer
It goes without saying that anything herein constitutes my own opinion and not the opinion of any affiliated person or entity. Nothing on this website is legal advice either.

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@jackyzha0/quartz",
"version": "4.0.11",
"version": "4.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@jackyzha0/quartz",
"version": "4.0.11",
"version": "4.1.0",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.6.3",

View File

@ -28,6 +28,7 @@ export const defaultContentPageLayout: PageLayout = {
right: [
Component.Graph(),
Component.DesktopOnly(Component.TableOfContents()),
Component.MobileOnly(Component.Explorer()),
Component.Backlinks(),
],
}