vault backup: 2025-02-03 08:29:48
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
16
7 People/0 Public Figure/Noah Yuval Harari.md
Normal file
16
7 People/0 Public Figure/Noah Yuval Harari.md
Normal file
@@ -0,0 +1,16 @@
|
||||
Meditation —> learn to focus on one thing
|
||||
|
||||
Think about your diet (food) since it will transform your body
|
||||
|
||||
|
||||
But information diet is important as well! What do you feed your mind?
|
||||
|
||||
|
||||
Lesrning and adapting is the most important skill gor the future because the future is constantly changing and changing fast
|
||||
|
||||
|
||||
You cannot do anything alone. You need people and cooperation for everything.
|
||||
|
||||
understanding suffering is the key of life.
|
||||
|
||||
feeling things and wanting more of good and less of bad is also the meaning of life
|
||||
91
7 People/Emanuel Perrig.md
Normal file
91
7 People/Emanuel Perrig.md
Normal file
@@ -0,0 +1,91 @@
|
||||
---
|
||||
title: Emanuel Perrig
|
||||
created_date: 2024-10-04
|
||||
updated_date: 2024-10-04
|
||||
aliases:
|
||||
- Emanuel
|
||||
tags: person
|
||||
person:
|
||||
first_name: Emanuel
|
||||
last_name: Perrig
|
||||
birthday: 1992-05-21
|
||||
type: privat
|
||||
hobbies:
|
||||
- tauchen
|
||||
- wein
|
||||
ref: person/emanuel_perrig
|
||||
person_type:
|
||||
person_hobbies:
|
||||
- tauchen
|
||||
- wein
|
||||
---
|
||||
# Emanuel Perrig
|
||||
- **🏷️Tags** : #10-2024 #person
|
||||
[ ](#anki-card)
|
||||
## 📝 Notes
|
||||
-
|
||||
## 🔗 Links
|
||||
|
||||
## Touchpoints
|
||||
|
||||
```dataviewjs
|
||||
const pagesWithQuotes = await Promise.all(
|
||||
dv
|
||||
.pages("#person/emanuel_perrig")
|
||||
.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/emanuel_perrig'))
|
||||
|
||||
// Remove the "#person/firstname_lastname" tag from each quote string
|
||||
.map(content => content.replace('#person/emanuel_perrig', ''))
|
||||
}));
|
||||
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
|
||||
86
7 People/Jannik Zgraggen.md
Normal file
86
7 People/Jannik Zgraggen.md
Normal file
@@ -0,0 +1,86 @@
|
||||
---
|
||||
title: Jannik Zgraggen
|
||||
created_date: 2024-09-30
|
||||
updated_date: 2024-09-30
|
||||
aliases:
|
||||
- Jannik
|
||||
tags: person
|
||||
person:
|
||||
first_name: Jannik
|
||||
last_name: Zgraggen
|
||||
birthday:
|
||||
type: privat
|
||||
hobbies:
|
||||
- berge
|
||||
- wandern
|
||||
- AI
|
||||
- tanzen
|
||||
ref: person/jannik_zgraggen
|
||||
---
|
||||
# Jannik Zgraggen
|
||||
- **🏷️Tags** : #09-2024 #person
|
||||
## 📝 Notes
|
||||
-
|
||||
## 🔗 Links
|
||||
-
|
||||
## Touchpoints
|
||||
```dataviewjs
|
||||
const pagesWithQuotes = await Promise.all(
|
||||
dv
|
||||
.pages("#person/jannik_zgraggen")
|
||||
.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/jannik_zgraggen'))
|
||||
|
||||
// Remove the "#person/firstname_lastname" tag from each quote string
|
||||
.map(content => content.replace('#person/jannik_zgraggen', ''))
|
||||
}));
|
||||
quotesByPage.forEach(
|
||||
page =>
|
||||
page.quotes.forEach(
|
||||
quote => dv.paragraph(`${quote} (${page.link})`)
|
||||
)
|
||||
);
|
||||
```
|
||||
## Merken
|
||||
### Mag
|
||||
### Mag nicht
|
||||
### Aktuell Wichtige Themen
|
||||
### Familie und Freunde
|
||||
|
||||
## Skills
|
||||
|
||||
## Netzwerk
|
||||
- Knows an ex-employee at [[Daedalean]]
|
||||
## Geschenkideen
|
||||
|
||||
## Sammlung
|
||||
### Zitate
|
||||
### Erinnerungen
|
||||
### Vergangene Themen
|
||||
|
||||
## Mentions
|
||||
86
7 People/Manuel Stathis.md
Normal file
86
7 People/Manuel Stathis.md
Normal file
@@ -0,0 +1,86 @@
|
||||
---
|
||||
title: Manuel Stathis
|
||||
created_date: 2024-10-04
|
||||
updated_date: 2024-10-04
|
||||
aliases:
|
||||
- mänu
|
||||
tags: person
|
||||
person:
|
||||
first_name: Manuel
|
||||
last_name: Stathis
|
||||
birthday:
|
||||
type: privat
|
||||
hobbies:
|
||||
- musik
|
||||
- party
|
||||
- berge
|
||||
ref: person/manuel_stathis
|
||||
---
|
||||
# Manuel Stathis
|
||||
- **🏷️Tags** : #10-2024 #person
|
||||
[ ](#anki-card)
|
||||
## 📝 Notes
|
||||
-
|
||||
## 🔗 Links
|
||||
-
|
||||
## Touchpoints
|
||||
```dataviewjs
|
||||
const pagesWithQuotes = await Promise.all(
|
||||
dv
|
||||
.pages("#person/manuel_stathis")
|
||||
.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/manuel_stathis'))
|
||||
|
||||
// Remove the "#person/firstname_lastname" tag from each quote string
|
||||
.map(content => content.replace('#person/manuel_stathis', ''))
|
||||
}));
|
||||
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
|
||||
86
7 People/Martin Albrecht.md
Normal file
86
7 People/Martin Albrecht.md
Normal file
@@ -0,0 +1,86 @@
|
||||
---
|
||||
title: Martin Albrecht
|
||||
created_date: 2024-01-31
|
||||
updated_date: 2024-01-31
|
||||
aliases:
|
||||
- martin
|
||||
tags: person
|
||||
person:
|
||||
first_name: Martin
|
||||
last_name: Albrecht
|
||||
birthday:
|
||||
type: privat
|
||||
hobbies:
|
||||
- berge
|
||||
- wandern
|
||||
- finanzen
|
||||
ref: person/martin_albrecht
|
||||
|
||||
---
|
||||
# Martin Albrecht
|
||||
- **🏷️Tags** : #01-2024 #person
|
||||
## 📝 Notes
|
||||
-
|
||||
## 🔗 Links
|
||||
-
|
||||
## Touchpoints
|
||||
```dataviewjs
|
||||
const pagesWithQuotes = await Promise.all(
|
||||
dv
|
||||
.pages("#person/martin_albrecht")
|
||||
.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/martin_albrecht'))
|
||||
|
||||
// Remove the "#person/firstname_lastname" tag from each quote string
|
||||
.map(content => content.replace('#person/martin_albrecht', ''))
|
||||
}));
|
||||
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
|
||||
83
7 People/William Hurrell.md
Normal file
83
7 People/William Hurrell.md
Normal file
@@ -0,0 +1,83 @@
|
||||
---
|
||||
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