vault backup: 2025-02-03 07:04:13
This commit is contained in:
@@ -1,83 +0,0 @@
|
||||
---
|
||||
title: William Hurrell
|
||||
created_date: 2024-10-23
|
||||
updated_date: 2024-10-23
|
||||
aliases:
|
||||
tags: person
|
||||
person:
|
||||
first_name: William
|
||||
last_name: Hurrell
|
||||
birthday:
|
||||
type: professional
|
||||
hobbies:
|
||||
ref: person/william_hurrell
|
||||
---
|
||||
# William Hurrell
|
||||
- **🏷️Tags** : #10-2024 #person
|
||||
## 📝 Notes
|
||||
- Ich habe ihm gesagt, dass ich 115k-140k Lohn erwarte
|
||||
- Eher Software, offen für robotik oder pur software so lange Firma und Produkt mir entsprechen
|
||||
-
|
||||
## 🔗 Links
|
||||
-
|
||||
## Touchpoints
|
||||
```dataviewjs
|
||||
const pagesWithQuotes = await Promise.all(
|
||||
dv
|
||||
.pages("#person/william_hurrell")
|
||||
.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/william_hurrell'))
|
||||
|
||||
// Remove the "#person/firstname_lastname" tag from each quote string
|
||||
.map(content => content.replace('#person/william_hurrell', ''))
|
||||
}));
|
||||
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