diff --git a/.obsidian/graph.json b/.obsidian/graph.json index 8ee39db..ee66c3c 100644 --- a/.obsidian/graph.json +++ b/.obsidian/graph.json @@ -9,14 +9,14 @@ "colorGroups": [], "collapse-display": false, "showArrow": true, - "textFadeMultiplier": 0.9, - "nodeSizeMultiplier": 0.7890625, - "lineSizeMultiplier": 0.610416666666667, + "textFadeMultiplier": 2, + "nodeSizeMultiplier": 2.31353352864583, + "lineSizeMultiplier": 3.24045817057292, "collapse-forces": false, - "centerStrength": 0.427083333333333, - "repelStrength": 9.47916666666667, - "linkStrength": 0.5, - "linkDistance": 94, - "scale": 0.09750907142805516, - "close": true + "centerStrength": 0.356282552083333, + "repelStrength": 17.61474609375, + "linkStrength": 0.2745361328125, + "linkDistance": 213, + "scale": 0.1300373067926375, + "close": false } \ No newline at end of file diff --git a/.obsidian/plugins/extended-graph/data.json b/.obsidian/plugins/extended-graph/data.json index 986171e..cb4d57c 100644 --- a/.obsidian/plugins/extended-graph/data.json +++ b/.obsidian/plugins/extended-graph/data.json @@ -97,7 +97,7 @@ "repelStrength": 9.47916666666667, "linkStrength": 0.5, "linkDistance": 94, - "scale": 0.09750907142805516, + "scale": 0.1079115263561959, "close": true }, "openInNewTab": true, diff --git a/Dailys/2025/Veranstaltungen - 2025.md b/Dailys/2025/Veranstaltungen - 2025.md index 01e4e53..adca644 100644 --- a/Dailys/2025/Veranstaltungen - 2025.md +++ b/Dailys/2025/Veranstaltungen - 2025.md @@ -1,5 +1,5 @@ --- -title: Konzerte - Map +title: Konzerte 2025 - Map timestamp: 08.04.2025 - 14:25 tags: - Map diff --git a/Dailys/2026/01 Januar/10.01.2026.md b/Dailys/2026/01 Januar/10.01.2026.md new file mode 100644 index 0000000..bd73b11 --- /dev/null +++ b/Dailys/2026/01 Januar/10.01.2026.md @@ -0,0 +1,19 @@ +--- +title: 10.01.2026 - Calendar +timestamp: 10.01.2026 - 12:51 +reason: +tags: + - Calendar + - Termin +--- +![logo](logo.png) +# 10.01.2026 +>[!info] Termin +>**Ort**: Braunschweig, MEC +> +>**Begin**: 11-22h + +# Tasks +- [ ] Task1 + +--- diff --git a/Dailys/2026/03 März/20.03.2026.md b/Dailys/2026/03 März/20.03.2026.md index bc9b40e..ea70010 100644 --- a/Dailys/2026/03 März/20.03.2026.md +++ b/Dailys/2026/03 März/20.03.2026.md @@ -1,7 +1,7 @@ --- title: 20.03.2026 - Calendar timestamp: 20.03.2026 - 20:15 -reason: +reason: 6euroneunzig tags: - Calendar - Termin diff --git a/Dailys/2026/Veranstaltungen - 2026.md b/Dailys/2026/Veranstaltungen - 2026.md new file mode 100644 index 0000000..f613dc8 --- /dev/null +++ b/Dailys/2026/Veranstaltungen - 2026.md @@ -0,0 +1,30 @@ +--- +title: Konzerte 2026 - Map +timestamp: 08.04.2025 - 14:25 +tags: + - Map + - Konzert + - Termin +--- +# Location - Veranstaltungen +```leaflet +id: leaflet-map +height: 500px +lat: 52.83995733000069 +long: 9.075963655907822 +//lat: 51.165691 +//long: 10.451526 +minZoom: 1 +maxZoom: 18 +defaultZoom: 7 +unit: meters +scale: 1 +darkMode: true + +marker: Vorlesung, 52.273438016792106, 10.526113295806729, [[Time Table|Vorlesung 1-13]] + +marker: Veranstaltung, 52.258862152478194, 10.48270366530914, [[09.01.2026|Tattoo Convention]] + +marker: Konzert, 53.556498523196574, 9.970009790796112, [[20.03.2026|6€90]] + +``` diff --git a/Equal Pay Day: Frauen verdienen weniger als Männer [p9luTX7xkTA].mp4 b/Equal Pay Day: Frauen verdienen weniger als Männer [p9luTX7xkTA].mp4 new file mode 100644 index 0000000..a53932e Binary files /dev/null and b/Equal Pay Day: Frauen verdienen weniger als Männer [p9luTX7xkTA].mp4 differ diff --git a/HomePage.md b/HomePage.md index a4672e6..d7731b7 100644 --- a/HomePage.md +++ b/HomePage.md @@ -312,7 +312,7 @@ dv.paragraph(md); ``` --- -![[Veranstaltungen - 2025]] +![[Veranstaltungen - 2026]] --- @@ -484,10 +484,10 @@ if (tagEntries.length === 0) { window.renderChart(chartData, wrapper); } ``` + ```dataviewjs // === Config === const splitOnSlash = false; // true -> merge hierarchical tags (#project/obsidian -> project) -const topN = 20; // show top N tags (null for all) // === Catppuccin Mocha Palette === const catppuccin = { @@ -527,6 +527,9 @@ const catppuccinColors = [ catppuccin.mauve ]; +// Set topN to match the number of available colors +const topN = catppuccinColors.length; + // === Helpers === function flattenTags(input, out = []) { if (!input) return out; @@ -576,11 +579,9 @@ const tagEntries = Object.entries(counts); if (tagEntries.length === 0) { dv.el("p", "⚠️ No tags found in your vault."); } else { - // === Sort + limit === + // === Sort + limit to color array length === tagEntries.sort((a, b) => b[1] - a[1]); - const limited = (topN && tagEntries.length > topN) - ? tagEntries.slice(0, topN) - : tagEntries; + const limited = tagEntries.slice(0, topN); const labels = limited.map(e => toTitleCase(e[0].replace(/[-_]/g, ' '))); const dataValues = limited.map(e => e[1]); @@ -589,7 +590,7 @@ if (tagEntries.length === 0) { // === Colors === const bgColors = [], borderColors = []; for (let i = 0; i < labels.length; i++) { - const color = catppuccinColors[i % catppuccinColors.length]; + const color = catppuccinColors[i]; bgColors.push(color + "aa"); borderColors.push(color); } @@ -603,18 +604,19 @@ if (tagEntries.length === 0) { wrapper.style.padding = '8px'; wrapper.style.overflow = 'auto'; - // === Center label === - const centerLabel = document.createElement('div'); - centerLabel.style.position = 'absolute'; - centerLabel.style.top = '50%'; - centerLabel.style.left = '44%'; - centerLabel.style.transform = 'translate(-50%, -50%)'; - centerLabel.style.color = catppuccin.text; - centerLabel.style.fontSize = '14px'; - centerLabel.style.fontWeight = '600'; - centerLabel.style.textAlign = 'center'; - centerLabel.innerText = 'Tag Usage'; - wrapper.appendChild(centerLabel); + // === Center label === + const centerLabel = document.createElement('div'); + centerLabel.style.position = 'absolute'; + centerLabel.style.top = '55%'; + centerLabel.style.left = '45%'; + centerLabel.style.transform = 'translate(-50%, -50%)'; + centerLabel.style.color = catppuccin.text; + centerLabel.style.fontSize = '14px'; + centerLabel.style.fontWeight = '600'; + centerLabel.style.textAlign = 'center'; + centerLabel.style.pointerEvents = 'none'; + centerLabel.innerText = 'Tag Usage'; + wrapper.appendChild(centerLabel); // === Chart.js config === const chartData = {