Skip to content

Commit

Permalink
chore: update notes to remove graph
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron Pham <contact@aarnphm.xyz>
  • Loading branch information
aarnphm committed Jan 25, 2025
1 parent 5dff09b commit 1ff3d24
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 31 deletions.
31 changes: 2 additions & 29 deletions content/notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ tags:
- seed
date: "2024-12-08"
description: contact[at]aarnphm[dot]xyz
modified: 2025-01-12 11:38:21 GMT-05:00
modified: 2025-01-25 02:22:03 GMT-05:00
noindex: true
title: procedural notes.
---
Expand All @@ -14,7 +14,7 @@ You have stumbled upon my working notes, as do to all paths of this [[thoughts/D
Much of these notes/writings are written for my own consumption, a sort of [[tags/evergreen]] notes.
If any of these doesn't make sense for you, it is probably because I didn't write it for you.

My only ask for https://notes.aarnphm.xyz is to treat the sites as it. Most of other functionalities can be found on the [main site](https://aarnphm.xyz)
My only ask for https://notes.aarnphm.xyz is to treat the sites as it. Most of other functionalities can be found on the <a href="https://aarnphm.xyz" target="_blank">main site</a>

You can start from some related [[/thoughts|topics]] that has been on my mind these days,
or check out some [[thoughts/work|crafts]] I've been working on for the past while.
Expand All @@ -25,30 +25,3 @@ or high performance [[thoughts/vllm|inference]] [[thoughts/LLMs|LLM engine]], or
There are also some [[/tags/philosophy|philosophical notes]] that I think about on a daily [[thoughts/Philosophy and Nietzsche|basis]].

:wave: you can reach out to me on [twitter](https://twitter.com/aarnphm_)

```mermaid
graph TD
A[Atomic note] --> B[Connected note]
B --> C[Insight]
C --> D[Questions]
D --> F[Refined note]
F --> B
F --> G[Branch Insight]
G --> H[Alternative path]
H --> I[Parallel note]
I --> B
C --> J[Deeper exploration]
J --> K[Related concept]
K --> A
style A fill:#e1f5fe
style B fill:#b3e5fc
style C fill:#81d4fa
style D fill:#4fc3f7
style F fill:#03a9f4
style G fill:#039be5
style H fill:#0288d1
style I fill:#0277bd
style J fill:#01579b
style K fill:#014377
```
4 changes: 2 additions & 2 deletions quartz/components/scripts/spa.inline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ async function navigate(url: URL, isBack: boolean = false) {
startLoading()

p = p || new DOMParser()
const contents = await fetchCanonical(`${url}`)
const contents = await fetchCanonical(new URL(`${url}`))
.then((res) => {
const contentType = res.headers.get("content-type")
if (contentType?.startsWith("text/html")) {
Expand Down Expand Up @@ -794,7 +794,7 @@ function pruneNotesElement() {
}

createRouter()
notifyNav(getFullSlug(window))
if (getFullSlug(window) !== "notes") notifyNav(getFullSlug(window))

if (!customElements.get("route-announcer")) {
const attrs = {
Expand Down

0 comments on commit 1ff3d24

Please sign in to comment.