chore: move posts to qmd

This commit is contained in:
2026-01-10 04:54:45 +02:00
parent 97659578d9
commit ef6a991a4c
16 changed files with 156 additions and 215 deletions

View File

@@ -3,12 +3,12 @@ title: "TILs - Today I Learned"
page-layout: full
listing:
contents: "*.qmd"
type: table
type: default
sort: "date desc"
fields: [date, title, categories]
date-format: "YYYY-MM-DD"
table-striped: true
filter-ui: true
# table-striped: true
# filter-ui: true
---
Quick tips, discoveries, and learnings. Short-form content about interesting things I've discovered.

View File

@@ -6,7 +6,7 @@ draft: false
Серія блогів
https://jamierubin.net/blog-series/practically-paperless-with-obsidian/
[https://jamierubin.net/blog-series/practically-paperless-with-obsidian/](https://jamierubin.net/blog-series/practically-paperless-with-obsidian/ )
Obsidian для воркфлоу наукових досліджень: https://medium.com/@alexandraphelan/an-updated-academic-workflow-zotero-obsidian-cffef080addd
Obsidian для воркфлоу наукових досліджень: [https://medium.com/@alexandraphelan/an-updated-academic-workflow-zotero-obsidian-cffef080addd](https://medium.com/@alexandraphelan/an-updated-academic-workflow-zotero-obsidian-cffef080addd)

28
til/ojs-in-quarto.qmd Normal file
View File

@@ -0,0 +1,28 @@
---
title: ObservableJS in Quarto
date: 2025-01-10
draft: false
---
```{ojs}
vegalite = require("@observablehq/vega-lite")
vegalite({
"$schema": "https://vega.github.io/schema/vega-lite/v6.json",
"description": "A simple bar chart with embedded data.",
"data": {
"values": [
{"a": "A", "b": 28}, {"a": "B", "b": 55}, {"a": "C", "b": 43},
{"a": "D", "b": 91}, {"a": "E", "b": 81}, {"a": "F", "b": 53},
{"a": "G", "b": 19}, {"a": "H", "b": 87}, {"a": "I", "b": 52}
]
},
"mark": "bar",
"encoding": {
"x": {"field": "a", "type": "nominal", "axis": {"labelAngle": 0}},
"y": {"field": "b", "type": "quantitative"}
}
})
```