[obsidian] vault backup: 2023-08-21 23:14:26[

This commit is contained in:
Tomoya Matsuura(MacBookPro) 2023-08-21 23:14:27 +09:00
parent ef8d098916
commit ae35a32ace
15 changed files with 36 additions and 57 deletions

View File

@ -1,8 +1,4 @@
---
title: Hannah Perner-Wilson
tags:
- person
---
#person
MIT Media Labの[[High-low-tech Lab]]で活動していた

View File

@ -1,8 +1,4 @@
---
title: High-low-tech Lab
tags:
- group
---
#group
MIT Media Labの中で2008-2014に[[Leah Buechley]]が主催していたラボ

View File

@ -1,10 +1,4 @@
---
title: Homemade Thin-Film Transistor Experiments
tags:
- translated
- survey
- semiconductor
---
#translated #semiconductor #survey
And a Quarter gets You Coffee(本名不明、2009年ごろ)

View File

@ -1,9 +1,4 @@
---
title: Hugo
tags:
- tools
- software
---
#tools #software
MarkdownのコンテンツをWebサイトにするStatic Site Generator

2
content/Leah Buechley.md Normal file
View File

@ -0,0 +1,2 @@
#person

View File

@ -1,10 +1,4 @@
---
title: Mastodon
tags:
- software
- server
- self-hosted
---
#software #server #self-hosted
分散型SNS。

View File

@ -33,11 +33,21 @@ https://quartz.jzhao.xyz/migrating-from-Quartz-3
### v4以降の難点
- SPAでの読み込みが若干怪しく、youtubeの埋め込みがある記事は一回リロードしないときちんと読まれない
- SPAでの読み込みが若干怪しく、youtubeの埋め込みがある記事は一回リロードしないときちんと読まれない時がある?
- グラフのオプション指定がなぜかデフォルトパラメーターで上書きされるバグがあったので修正している。
- https://github.com/jackyzha0/quartz/pull/384
- GitHub Pagesのデプロイ用アクションはリポジトリから消えてたので別途作成。
- [PR立てた](https://github.com/tomoyanonymous/quartz-research-note/commit/5f58eaba035038faafcdbbf3c51de410c021c579)
- ビルドも早いし快調。
- 作成されてないWikilinkのリンクが有効なリンクとして表示されてる。グラフには反映されてないところ見るとレンダリング側でのミスなのかな
- Graphにタグが反映されない。これはインラインでタグ使うようにしてフロントマッターから消去したらできるのか
- サイト外に飛ぶリンクにはObsidianみたく矢印マークつけてほしい。
- Graphにタグが反映されない。これはインラインでタグ使うようにしてフロントマッターから消去したらできるのか
- そんなこともないみたい
- タグをインラインで先頭に書いておくスタイルだと、タグ一覧の下にまた手動で書いたタグ一覧が並んでちょっと座りが悪い
- →`quartz.layout.ts`の部分をこんな感じでコメントアウト
```ts
beforeBody: [Component.ArticleTitle(), Component.ContentMeta(),/*Component.TagList()*/],
```
このレイアウトの仕組みよくできてんなー

1
content/Roger Baker.md Normal file
View File

@ -0,0 +1 @@
#person

View File

@ -22,8 +22,8 @@ https://matsuuratomoya.com
よく使いそうなタグ
- [person](/tags/person)
- [group](/tags/group)
- [paper](/tags/paper)
- [tools](/tags/tools)
- [art](/tags/art)
- #person
- #group
- #paper
- #tools
- #art

View File

@ -1,9 +1,5 @@
---
title: otopoiesis
tags:
- programming-languge
- sound
---
#programming-language #sound
https://github.com/tomoyanonymous/otopoiesis

View File

@ -1,8 +1,4 @@
---
title: 多段階計算
tags:
- programming-language
---
#programming-language
メタプログラミングの技法の一種。[[MetaOCaml]]などが有名

View File

@ -87,4 +87,7 @@ http://www.sciencemadness.org/smwiki/index.php/Zinc_acetate
炭酸ナトリウム多めに入れると一部は水酸化亜鉛として沈殿して、こっちは125°で分解してZnOになる。そもそも全部水酸化亜鉛ではダメなのか
なんか黒いとけ残りがいっぱい発生する。おそらく銅が不純物として含まれてるっぽい?
もっとちゃんとした原料を用意した方がよさそうではある・・・
もっとちゃんとした原料を用意した方がよさそうではある・・・
[[Homemade Thin-Film Transistor Experiments#混合前駆体溶液]]を読むと酸化亜鉛を直でIPAで溶かして酢酸を加えればそれで良いっぽい既に無駄な努力を重ねた気がしてきた

View File

@ -1,10 +1,6 @@
---
title: 音楽プログラミング言語
tags:
- research
- programming-language
---
#research #programming-language #sound
やっているプロジェクト
- [[mimium]]
- [[otopoiesis]]

View File

@ -51,7 +51,7 @@ const config: QuartzConfig = {
Plugin.SyntaxHighlighting(),
Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }),
Plugin.GitHubFlavoredMarkdown(),
Plugin.CrawlLinks({ markdownLinkResolution: "shortest", "prettyLinks": true }),
Plugin.CrawlLinks({ markdownLinkResolution: "shortest" }),
Plugin.Latex({ renderEngine: "katex" }),
Plugin.Description(),
],

View File

@ -17,7 +17,7 @@ export const sharedPageComponents: SharedLayout = {
// components for pages that display a single page (e.g. a single note)
export const defaultContentPageLayout: PageLayout = {
beforeBody: [Component.ArticleTitle(), Component.ContentMeta(), Component.TagList()],
beforeBody: [Component.ArticleTitle(), Component.ContentMeta(), /*Component.TagList()*/],
left: [
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),