First Commit
This commit is contained in:
103
7 People/Alena Spielmann.md
Normal file
103
7 People/Alena Spielmann.md
Normal file
@@ -0,0 +1,103 @@
|
||||
---
|
||||
title: Alena Spielmann
|
||||
created_date: 2023-10-31
|
||||
updated_date: 2023-10-31
|
||||
aliases:
|
||||
- Alena
|
||||
tags: person
|
||||
person:
|
||||
first_name: Alena
|
||||
last_name: Spielmann
|
||||
birthday: 1993-11-06
|
||||
type: privat
|
||||
hobbies:
|
||||
- berge
|
||||
- kite
|
||||
- tanzen
|
||||
- tauchen
|
||||
- wandern
|
||||
- skitour
|
||||
- singen
|
||||
- musik
|
||||
- yoga
|
||||
ref: person/alena_spielmann
|
||||
---
|
||||
# Alena Spielmann
|
||||
- **🏷️Tags** : #10-2023 #person
|
||||
## 📝 Notes
|
||||
-
|
||||
## 🔗 Links
|
||||
-
|
||||
## Touchpoints
|
||||
```dataviewjs
|
||||
const pagesWithQuotes = await Promise.all(
|
||||
dv
|
||||
.pages("#person/alena_spielmann")
|
||||
.map(pageWithQuote => new Promise(async (resolve, reject) => {
|
||||
const content = await dv.io.load(pageWithQuote.file.path);
|
||||
resolve({
|
||||
link: pageWithQuote.file.link,
|
||||
content
|
||||
});
|
||||
}))
|
||||
);
|
||||
|
||||
// Create an array of pages containing quotes,
|
||||
// where each page is:
|
||||
// {
|
||||
// quotes: [], // array of quotes
|
||||
// link: { path: '' } // Link
|
||||
// }
|
||||
|
||||
const quotesByPage = pagesWithQuotes.map(({
|
||||
link,
|
||||
content
|
||||
}) => ({
|
||||
link,
|
||||
quotes: content
|
||||
// Split into paragraphs
|
||||
.split('- ')
|
||||
|
||||
// Get only paragraphs that have the #person/firstname_lastname tag
|
||||
.filter(content => content.includes('#person/alena_spielmann'))
|
||||
|
||||
// Remove the "#person/firstname_lastname" tag from each quote string
|
||||
.map(content => content.replace('#person/alena_spielmann', ''))
|
||||
}));
|
||||
quotesByPage.forEach(
|
||||
page =>
|
||||
page.quotes.forEach(
|
||||
quote => dv.paragraph(`${quote} (${page.link})`)
|
||||
)
|
||||
);
|
||||
```
|
||||
## Merken
|
||||
### Mag
|
||||
### Mag nicht
|
||||
### Aktuell Wichtige Themen
|
||||
### Familie und Freunde
|
||||
|
||||
## Skills
|
||||
|
||||
## Netzwerk
|
||||
|
||||
## Geschenkideen
|
||||
- mein kissen und ich nähe selber den anzug mit tanzania stoff
|
||||
- Massagekurs / kochkurs
|
||||
- Trinkbladder: [camelbak crux 3l](https://www.brack.ch/fr/camelbak-gourde-souple-crux-reservoir-3-l-867770)
|
||||
- 4 Elemente
|
||||
- feuer: massagekurs / kerzen
|
||||
- luft: kite gadget
|
||||
- wasser: trink bladder
|
||||
- erde: kissen für bauchschläferinnen, blumentöpfe selber machen mit 3D-Drucker
|
||||
- Garmin Uhr --> weihnachten
|
||||
|
||||
### Offene Geschenke
|
||||
- tanzania kleid
|
||||
- Kalender (mit sauna)
|
||||
## Sammlung
|
||||
### Zitate
|
||||
### Erinnerungen
|
||||
### Vergangene Themen
|
||||
|
||||
## Mentions
|
||||
Reference in New Issue
Block a user