First Commit
This commit is contained in:
96
7 People/Claudio Fritsche.md
Normal file
96
7 People/Claudio Fritsche.md
Normal file
@@ -0,0 +1,96 @@
|
||||
---
|
||||
title: Claudio Fritsche
|
||||
created_date: 2023-11-14
|
||||
updated_date: 2023-11-14
|
||||
aliases:
|
||||
- Ich
|
||||
- I
|
||||
- Me
|
||||
- Mir
|
||||
- Claudio
|
||||
tags: person
|
||||
person:
|
||||
first_name: Claudio
|
||||
last_name: Fritsche
|
||||
birthday: 1994-02-25
|
||||
type: privat
|
||||
hobbies:
|
||||
- berge
|
||||
- kite
|
||||
- tanzen
|
||||
- squash
|
||||
- wandern
|
||||
- skitour
|
||||
- programmieren
|
||||
- diy
|
||||
ref: person/claudio_fritsche
|
||||
---
|
||||
# Claudio Fritsche
|
||||
- **🏷️Tags** : #11-2023 #person
|
||||
## 📝 Notes
|
||||
-
|
||||
## 🔗 Links
|
||||
-
|
||||
## Touchpoints
|
||||
```dataviewjs
|
||||
const pagesWithQuotes = await Promise.all(
|
||||
dv
|
||||
.pages("#person/claudio_fritsche")
|
||||
.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/claudio_fritsche'))
|
||||
|
||||
// Remove the "#person/firstname_lastname" tag from each quote string
|
||||
.map(content => content.replace('#person/claudio_fritsche', ''))
|
||||
}));
|
||||
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
|
||||
|
||||
## Sammlung
|
||||
### Zitate
|
||||
### Erinnerungen
|
||||
### Vergangene Themen
|
||||
|
||||
## Mentions
|
||||
|
||||
|
||||
Reference in New Issue
Block a user