Compare commits
25 Commits
d0fe9e15aa
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 25bda8f491 | |||
| f6c8ad71f4 | |||
| 7ffe4f0ca7 | |||
| a898474282 | |||
| da37f0d337 | |||
| d6576db1b3 | |||
| 5f72a1222b | |||
| 34209ff034 | |||
| 8866801570 | |||
| 91d92cbf4a | |||
| 2577fc70c4 | |||
| 5be0d002a9 | |||
| f46f4ac4c3 | |||
| ca758c9aa3 | |||
| 9b432ce8ae | |||
| 9293fbc827 | |||
| fa0abc95d4 | |||
| 8ef993cfa4 | |||
| d987f442d0 | |||
| 9529d259fc | |||
| 23c3dcf98c | |||
| 07fa833514 | |||
| 4eddfd5861 | |||
| e009d938f8 | |||
| 36bf746c3a |
Vendored
-4
@@ -3,7 +3,6 @@
|
||||
"dataview",
|
||||
"obsidian-tasks-plugin",
|
||||
"obsidian-sortable",
|
||||
"auto-note-mover",
|
||||
"tag-wrangler",
|
||||
"obsidian-plugin-toc",
|
||||
"obsidian-charts",
|
||||
@@ -21,9 +20,6 @@
|
||||
"obsidian-style-settings",
|
||||
"callout-manager",
|
||||
"find-unlinked-files",
|
||||
"contribution-graph",
|
||||
"datacore",
|
||||
"desk",
|
||||
"external-file-embed-and-link",
|
||||
"obsidian-kanban",
|
||||
"task-list-kanban",
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian-tasks-plugin",
|
||||
"name": "Tasks",
|
||||
"version": "8.2.1",
|
||||
"version": "8.2.2",
|
||||
"minAppVersion": "1.8.7",
|
||||
"description": "Track tasks across your vault. Supports due dates, recurring tasks, done dates, sub-set of checklist items, and filtering.",
|
||||
"helpUrl": "https://publish.obsidian.md/tasks/",
|
||||
|
||||
+6523
-2656
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "task-list-kanban",
|
||||
"name": "Task List Kanban",
|
||||
"version": "2.3.1",
|
||||
"version": "2.7.3",
|
||||
"minAppVersion": "1.5.3",
|
||||
"description": "Organizes all of the tasks within your files into a kanban view. Reduce duplication of effort when managing and prioritising tasks by simply using the task format in your files to automatically appear in your Task List Kanban.",
|
||||
"author": "Chris Kerr, Erika Rice Scherpelz",
|
||||
|
||||
+98
-65
@@ -227,13 +227,6 @@ If your plugin does not need CSS, delete this file.
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.column-editor-intro-actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.column-editor-intro-actions button,
|
||||
.column-editor-controls button {
|
||||
height: 30px;
|
||||
padding: 4px 10px;
|
||||
@@ -250,7 +243,7 @@ If your plugin does not need CSS, delete this file.
|
||||
.column-editor-row {
|
||||
display: flex;
|
||||
position: relative;
|
||||
align-items: flex-start;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 8px;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
@@ -261,7 +254,6 @@ If your plugin does not need CSS, delete this file.
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.column-editor-row.is-collapsed,
|
||||
.column-editor-row.is-bookend {
|
||||
align-items: center;
|
||||
}
|
||||
@@ -361,7 +353,7 @@ If your plugin does not need CSS, delete this file.
|
||||
|
||||
.column-editor-summary {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(180px, 1fr) minmax(150px, auto) 24px auto;
|
||||
grid-template-columns: minmax(180px, 1fr) 24px minmax(150px, auto);
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
min-width: 0;
|
||||
@@ -372,21 +364,6 @@ If your plugin does not need CSS, delete this file.
|
||||
grid-template-columns: minmax(180px, 1fr) minmax(150px, auto);
|
||||
}
|
||||
|
||||
.column-editor-details {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: 10px 14px;
|
||||
margin-top: 10px;
|
||||
padding: 10px;
|
||||
border-radius: var(--radius-s);
|
||||
background: var(--background-secondary);
|
||||
}
|
||||
|
||||
.column-editor-row.is-collapsed .column-editor-details {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.column-editor-pill {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
@@ -404,6 +381,63 @@ If your plugin does not need CSS, delete this file.
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.column-editor-popover-anchor {
|
||||
position: relative;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.column-editor-match-anchor {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.column-editor-popover {
|
||||
position: absolute;
|
||||
top: calc(100% + 8px);
|
||||
z-index: 20;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
padding: 10px;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: var(--radius-s);
|
||||
background: var(--background-primary);
|
||||
box-shadow: var(--shadow-s);
|
||||
}
|
||||
|
||||
.column-editor-color-popover {
|
||||
left: 50%;
|
||||
width: 230px;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.column-editor-match-popover {
|
||||
right: 0;
|
||||
width: min(360px, calc(100vw - 64px));
|
||||
}
|
||||
|
||||
.column-editor-popover-field {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.column-editor-summary-button {
|
||||
appearance: none;
|
||||
-webkit-appearance: none;
|
||||
cursor: pointer;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.column-editor-summary-button:hover,
|
||||
.column-editor-summary-button:focus-visible {
|
||||
color: var(--text-normal);
|
||||
background: var(--background-modifier-hover);
|
||||
}
|
||||
|
||||
.column-editor-fields.column-editor-fields-inline {
|
||||
align-items: center;
|
||||
flex: 1 1 auto;
|
||||
@@ -464,7 +498,8 @@ If your plugin does not need CSS, delete this file.
|
||||
}
|
||||
|
||||
.column-editor-field-match,
|
||||
.column-editor-field-visibility {
|
||||
.column-editor-field-visibility,
|
||||
.column-editor-field-status {
|
||||
flex: 0 1 auto;
|
||||
}
|
||||
|
||||
@@ -479,6 +514,18 @@ If your plugin does not need CSS, delete this file.
|
||||
min-width: 150px;
|
||||
}
|
||||
|
||||
.column-editor-field-status select {
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.column-editor-field-status .setting-input {
|
||||
width: 84px;
|
||||
}
|
||||
|
||||
.column-editor-field-status .setting-input:not(.is-visible) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.column-editor-inline-label {
|
||||
flex: 0 0 auto;
|
||||
color: var(--text-muted);
|
||||
@@ -516,37 +563,6 @@ If your plugin does not need CSS, delete this file.
|
||||
justify-self: center;
|
||||
}
|
||||
|
||||
.column-editor-expand-button {
|
||||
width: auto;
|
||||
min-width: 0;
|
||||
height: 28px;
|
||||
padding: 0 8px;
|
||||
border-radius: var(--radius-s);
|
||||
color: var(--text-muted);
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 4px;
|
||||
font-size: var(--font-ui-smaller);
|
||||
font-weight: 600;
|
||||
white-space: nowrap;
|
||||
background: transparent;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.column-editor-expand-button:hover {
|
||||
color: var(--text-normal);
|
||||
background: var(--background-modifier-hover);
|
||||
}
|
||||
|
||||
.column-editor-expand-icon {
|
||||
display: inline-flex;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.column-editor-color-swatch.has-color {
|
||||
border-color: color-mix(in srgb, var(--background-modifier-border) 40%, var(--text-normal));
|
||||
background-image: none;
|
||||
@@ -570,22 +586,25 @@ If your plugin does not need CSS, delete this file.
|
||||
font-size: var(--font-ui-smaller);
|
||||
white-space: nowrap;
|
||||
flex: 0 0 auto;
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
padding: 2px 0;
|
||||
}
|
||||
|
||||
.column-editor-rename-option input,
|
||||
.column-editor-rename-option label {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.column-editor-remove-rail {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-left: auto;
|
||||
flex: 0 0 20px;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
.column-editor-row.is-collapsed .column-editor-remove-rail,
|
||||
.column-editor-row.is-bookend .column-editor-remove-rail {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.column-editor-remove-rail > button {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
@@ -642,7 +661,7 @@ If your plugin does not need CSS, delete this file.
|
||||
}
|
||||
|
||||
.column-editor-summary {
|
||||
grid-template-columns: minmax(160px, 1fr) auto auto auto;
|
||||
grid-template-columns: minmax(160px, 1fr) auto auto;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -653,7 +672,6 @@ If your plugin does not need CSS, delete this file.
|
||||
|
||||
.column-editor-intro,
|
||||
.column-editor-summary,
|
||||
.column-editor-details,
|
||||
.column-editor-fields.column-editor-fields-inline,
|
||||
.column-editor-field {
|
||||
flex-direction: column;
|
||||
@@ -680,6 +698,7 @@ If your plugin does not need CSS, delete this file.
|
||||
.column-editor-field-tag,
|
||||
.column-editor-field-match,
|
||||
.column-editor-field-visibility,
|
||||
.column-editor-field-status,
|
||||
.column-editor-field-color {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
@@ -689,8 +708,22 @@ If your plugin does not need CSS, delete this file.
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.column-editor-popover-anchor,
|
||||
.column-editor-popover,
|
||||
.column-editor-popover-field {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.column-editor-popover {
|
||||
position: static;
|
||||
transform: none;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.column-editor-field-match select,
|
||||
.column-editor-field-visibility select,
|
||||
.column-editor-field-status select,
|
||||
.column-editor-field-status .setting-input,
|
||||
.column-editor-field-color .setting-input {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
+16
-16
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "templater-obsidian",
|
||||
"name": "Templater",
|
||||
"version": "2.20.5",
|
||||
"version": "2.20.6",
|
||||
"description": "Advanced templating and automation using handlebars-like syntax.",
|
||||
"minAppVersion": "1.12.2",
|
||||
"author": "SilentVoid",
|
||||
|
||||
+5
-5
@@ -5,14 +5,14 @@
|
||||
"UidProcessor": true,
|
||||
"SyncUnknownProcessor": true
|
||||
},
|
||||
"syncSelected": "None",
|
||||
"syncEnabled": false,
|
||||
"syncSelected": "CardDAV",
|
||||
"syncEnabled": true,
|
||||
"groupInsights": true,
|
||||
"CardDAV": {
|
||||
"addressBookUrl": "",
|
||||
"addressBookUrl": "https://cal.thpeetz.de/tpeetz/77b1c975-45b5-3e60-fda2-7a396513c6f7/",
|
||||
"syncInterval": 900,
|
||||
"authKey": "",
|
||||
"authType": "apikey"
|
||||
"authKey": "dHBlZXR6OmlrYW1rdWJtMjA=",
|
||||
"authType": "basic"
|
||||
},
|
||||
"createFieldsKeys": [
|
||||
"N.PREFIX",
|
||||
|
||||
Vendored
+1
-42
@@ -3,26 +3,6 @@
|
||||
"aliases": "aliases",
|
||||
"cssclasses": "multitext",
|
||||
"tags": "tags",
|
||||
"meditation": "checkbox",
|
||||
"date": "date",
|
||||
"last_chat": "date",
|
||||
"total": "number",
|
||||
"current": "number",
|
||||
"anteil": "number",
|
||||
"birthday": "date",
|
||||
"friends": "text",
|
||||
"Steuerbescheid": "date",
|
||||
"Aufbewahrung": "date",
|
||||
"Entsorgung": "date",
|
||||
"Erstausstrahlung_DE": "date",
|
||||
"Erstausstrahlung_UK": "date",
|
||||
"created": "date",
|
||||
"family": "text",
|
||||
"heizung": "number",
|
||||
"warmwasser": "number",
|
||||
"former_company": "multitext",
|
||||
"weight": "number",
|
||||
"plank": "number",
|
||||
"TQ_explain": "checkbox",
|
||||
"TQ_extra_instructions": "text",
|
||||
"TQ_short_mode": "checkbox",
|
||||
@@ -42,31 +22,10 @@
|
||||
"TQ_show_start_date": "checkbox",
|
||||
"TQ_show_tags": "checkbox",
|
||||
"TQ_show_task_count": "checkbox",
|
||||
"TQ_show_toolbar": "checkbox",
|
||||
"TQ_show_tree": "checkbox",
|
||||
"TQ_show_urgency": "checkbox",
|
||||
"leseliste": "multitext",
|
||||
"rework": "checkbox",
|
||||
"work_hours": "number",
|
||||
"imported": "checkbox",
|
||||
"work_home": "checkbox",
|
||||
"work_office": "checkbox",
|
||||
"lecture_date": "date",
|
||||
"gilde": "multitext",
|
||||
"gekauft": "checkbox",
|
||||
"Erstaustrahlung_USA": "date",
|
||||
"Folge": "number",
|
||||
"deciders": "multitext",
|
||||
"consulted": "multitext",
|
||||
"informed": "multitext",
|
||||
"shareholder": "multitext",
|
||||
"former_project": "multitext",
|
||||
"TQ_show_toolbar": "checkbox",
|
||||
"reference": "multitext",
|
||||
"wikipedia": "text",
|
||||
"children": "multitext",
|
||||
"parents": "multitext",
|
||||
"X-LAST-CHAT": "date",
|
||||
"X-FORMER-ORG": "multitext",
|
||||
"BDAY": "date"
|
||||
}
|
||||
}
|
||||
@@ -1,29 +0,0 @@
|
||||
---
|
||||
name: David Bursch
|
||||
phone: +49 3379 314741
|
||||
mobile:
|
||||
phone_work: +49 511 101-2911
|
||||
email: david.bursch@vvv-net.de
|
||||
email_work: extern-david.bursch@iuk.lst.niedersachsen.de
|
||||
telegram:
|
||||
linkedin:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: projekt
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
tags:
|
||||
- process/contact
|
||||
---
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
@@ -1,31 +0,0 @@
|
||||
---
|
||||
name: Frank Wolter
|
||||
phone: +49 30 382 43 91
|
||||
address:
|
||||
street: Wernerwerkdamm 36
|
||||
city: Berlin
|
||||
code: 13629
|
||||
country: Deutschland
|
||||
telegram:
|
||||
linkedin:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
married: "[[Petra Wolter]]"
|
||||
type: contact
|
||||
relationship: freund
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
tags:
|
||||
- process/contact
|
||||
---
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
@@ -1,32 +0,0 @@
|
||||
---
|
||||
name: Harald Göttlicher
|
||||
phone: +49 179 2017600
|
||||
email: Harald.Goettlicher@de.bosch.com
|
||||
telegram: "+491792017600"
|
||||
signal: "+491792017600"
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Harald_Goettlicher
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: projekt
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
company: "[[Robert Bosch GmbH]]"
|
||||
location: Plochingen
|
||||
tags:
|
||||
- process/contact
|
||||
former_project:
|
||||
- "[[Buildteam]]"
|
||||
---
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
@@ -1,32 +0,0 @@
|
||||
---
|
||||
name: Katharina Smuda
|
||||
phone:
|
||||
address:
|
||||
street: Mühlenstrasse 13
|
||||
city: Langen
|
||||
code:
|
||||
state: Brandenburg
|
||||
country: Deutschland
|
||||
telegram:
|
||||
linkedin:
|
||||
birthday: 1971-06-28
|
||||
last_chat:
|
||||
friends:
|
||||
married: "[[Uwe Reinhardt]]"
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
tags:
|
||||
- process/contact
|
||||
---
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
@@ -13,5 +13,5 @@ tags:
|
||||
|
||||
## Unteraufgaben
|
||||
|
||||
- [ ] Hoyer Installation Talend Data Fabric
|
||||
- [ ] Email an Viktor Becker bezüglich Verwendung von Ansible
|
||||
- [x] Hoyer Installation Talend Data Fabric [completion:: 2026-06-22]
|
||||
- [x] Email an Viktor Becker bezüglich Verwendung von Ansible [completion:: 2026-06-22]
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
tags:
|
||||
- process/meeting
|
||||
---
|
||||
Attendees:: [[Frank Füllbier]], [[Marcel Kuszak]], [[Bastian Liesigk]], [[Christian Kiltz]], [[Marcus Lipski]]
|
||||
Attendees:: [[Frank Füllbier]], [[Marcel Kuszak]], [[Bastian Liesigk]], [[Christian Kiltz]],
|
||||
Related Projects:: [[Managed Services Team]]
|
||||
|
||||
## Termine
|
||||
|
||||
@@ -27,6 +27,7 @@ X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Frankfurt
|
||||
UID: urn:uuid:019ed0842277a-4cd7-bd8d-274b3b382853
|
||||
X-MANAGER: "[[Oliver Schuhmacher]]"
|
||||
---
|
||||
|
||||
#### Notes
|
||||
@@ -48,9 +49,6 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Oliver Schuhmacher]]
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
|
||||
@@ -6,10 +6,10 @@ N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: "Abderrahman.Aloui@cimt-ag.de"
|
||||
TEL[CELL]: "+49 171 716 32 00"
|
||||
EMAIL[WORK]: Abderrahman.Aloui@cimt-ag.de
|
||||
TEL[CELL]: +49 171 716 32 00
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: "+49 40 533 02-0"
|
||||
TEL[WORK]: +49 40 533 02-0
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt objects AG
|
||||
@@ -28,6 +28,7 @@ X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
SOCIALPROFILE[XING]: https://www.xing.com/profile/Abderrahman_Aloui/cv
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: "[[Sven Landmann]]"
|
||||
---
|
||||
|
||||
#### Notes
|
||||
@@ -51,9 +52,6 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Sven Landmann]]
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
|
||||
@@ -6,7 +6,7 @@ N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: "albin.cekaj@cimt-ag.de"
|
||||
EMAIL[WORK]: albin.cekaj@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
@@ -22,11 +22,12 @@ ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: "Kollege"
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
UID: urn:uuid:019ed09b06071-4054-a9d8-bbda0b4fe6ea
|
||||
X-MANAGER: "[[Oliver Fromm]]"
|
||||
---
|
||||
|
||||
#### Notes
|
||||
@@ -50,9 +51,6 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Oliver Fromm]]
|
||||
|
||||
## Mitarbeiter
|
||||
|
||||
```dataview
|
||||
|
||||
@@ -28,6 +28,7 @@ SOCIALPROFILE[LINKEDIN]: ""
|
||||
SOCIALPROFILE[XING]: https://www.xing.com/profile/Alexander_Buesken
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
UID: urn:uuid:019ed09f99ad4-4428-a201-e740917ccf94
|
||||
X-MANAGER: "[[Tina Lentz]]"
|
||||
---
|
||||
|
||||
#### Notes
|
||||
@@ -53,9 +54,6 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Tina Lentz]]
|
||||
|
||||
## Mitarbeiter
|
||||
|
||||
```dataview
|
||||
|
||||
@@ -6,11 +6,11 @@ N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: "alexander.klein@cimt-ag.de"
|
||||
EMAIL[WORK]: alexander.klein@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: "+49 69 247 56 76 81"
|
||||
BDAY: "1980-01-13"
|
||||
TEL[WORK]: +49 69 247 56 76 81
|
||||
BDAY: 1980-01-13
|
||||
URL[WORK]: ""
|
||||
ORG: cimt objects AG
|
||||
ROLE: ""
|
||||
@@ -22,11 +22,12 @@ ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: "Kollege"
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Frankfurt
|
||||
UID: urn:uuid:019ed0cd60718-477b-9b10-9d01431fe7b1
|
||||
X-MANAGER: "[[Marc Herber]]"
|
||||
---
|
||||
|
||||
#### Notes
|
||||
@@ -50,9 +51,6 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Marc Herber]]
|
||||
|
||||
## Mitarbeiter
|
||||
|
||||
```dataview
|
||||
|
||||
@@ -27,6 +27,7 @@ X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
UID: urn:uuid:019ed0d688321-4dd9-a1dd-736404536648
|
||||
X-MANAGER: "[[Maria König]]"
|
||||
---
|
||||
|
||||
#### Notes
|
||||
@@ -53,9 +54,6 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Maria König]]
|
||||
|
||||
## Mitarbeiter
|
||||
|
||||
```dataview
|
||||
|
||||
@@ -6,7 +6,7 @@ N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: "alexander.sinkovic@f-i-sp.de"
|
||||
EMAIL[WORK]: alexander.sinkovic@f-i-sp.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
@@ -22,7 +22,7 @@ ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: "Projekt"
|
||||
X-RELATIONSHIP: Projekt
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
|
||||
@@ -1,29 +1,46 @@
|
||||
---
|
||||
name: Ali El Cheikh
|
||||
phone: +49 40 53302 0
|
||||
email: ali.elcheikh@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt consulting AG]]"
|
||||
location: Hamburg
|
||||
manager: "[[Natalie Ladwein]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Ali El Cheikh
|
||||
N.GN: "Ali"
|
||||
N.FN: "El Cheikh"
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: "ali.elcheikh@cimt-ag.de"
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: "+49 40 53302 0"
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt consulting AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: "[[Natalie Ladwein]]"
|
||||
UID: urn:uuid:019ed576d07d1-4986-bebd-39c1c7f8f24e
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt consulting AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
## Referenzen
|
||||
```dataview
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
---
|
||||
FN: Almomani
|
||||
N.GN: ""
|
||||
N.FN: Almomani
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: +49 176 21 45 26 31
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
UID: urn:uuid:019f3670a618f-4947-9f3f-8108f93cf43d
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Taxi
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
NOTE: Taxi Pepitahöfe Hakenfelde
|
||||
---
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
Taxi Pepitahöfe Hakenfelde
|
||||
@@ -1,37 +1,66 @@
|
||||
---
|
||||
name: Alvaro Zorn
|
||||
phone: +49 40 53302 333
|
||||
email: alvaro.zorn@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Hamburg
|
||||
manager: "[[Tina Lentz]]"
|
||||
gilde:
|
||||
- "[[GCP Gilde]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Alvaro Zorn
|
||||
N.GN: Alvaro
|
||||
N.FN: Zorn
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: alvaro.zorn@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 333
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt objects AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: "[[Tina Lentz]]"
|
||||
UID: urn:uuid:019edbb4575a6-41c4-b19d-b9d23cd0a857
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Gilde
|
||||
[[GCP Gilde]]
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
---
|
||||
FN: Amelie Somogyi
|
||||
N.GN: Amelie
|
||||
N.FN: Somogyi
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]:
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY:
|
||||
URL[WORK]: ""
|
||||
ORG:
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP:
|
||||
X-LAST-CHAT:
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY:
|
||||
X-MARRIED: "[[Philipp Somogyi]]"
|
||||
X-MARRIAGE: 2026-05-29
|
||||
UID: urn:uuid:019f35cf245a8-439f-a0f7-d4815d2b66c3
|
||||
---
|
||||
@@ -1,23 +1,42 @@
|
||||
---
|
||||
name: Amir Baghery
|
||||
phone:
|
||||
email:
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Amir_Baghery/cv
|
||||
birthday: 1981-12-28
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
company: "[[bonprix Handelsgesellschaft mbH]]"
|
||||
location: Hamburg
|
||||
manager:
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
tags:
|
||||
- process/contact
|
||||
- process/contact-review
|
||||
FN: Amir Baghery
|
||||
N.GN: Amir
|
||||
N.FN: Baghery
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: 1981-12-28
|
||||
URL[WORK]: ""
|
||||
ORG: bonprix Handelsgesellschaft mbH
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: ""
|
||||
X-LAST-CHAT: "null"
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
SOCIALPROFILE[XING]: "https://www.xing.com/profile/Amir_Baghery/cv"
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
UID: urn:uuid:019edca25ffab-4e58-98a9-b5261b739643
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
#process/contact-review
|
||||
|
||||
[[bonprix Handelsgesellschaft mbH]]
|
||||
|
||||
## Rollen
|
||||
[[SAP Entwickler]]
|
||||
|
||||
@@ -26,11 +45,8 @@ tags:
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
@@ -1,32 +1,47 @@
|
||||
---
|
||||
name: Andrea Bahrenfuss
|
||||
title: Diplom Informatikerin
|
||||
phone: +49 174 3777999
|
||||
phone_work: +49 4123 8098705
|
||||
fax_work: +49 4123 8098703
|
||||
email: andrea.bahrenfuss@ab-it-coaching.de
|
||||
organization: Andrea Bahrenfuss IT-Coaching
|
||||
url: http://www.ab-it-coaching.de
|
||||
address:
|
||||
street: Mühlenstraße 89
|
||||
city: Barmstedt
|
||||
code: 25355
|
||||
country: Deutschland
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Andrea_Bahrenfuss/cv
|
||||
yahoo_im: abahrenfuss
|
||||
birthday: 1980-10-13
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: projekt
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
company: "[[Andrea Bahrenfuss IT-Coaching]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Andrea Bahrenfuss
|
||||
N.GN: Andrea
|
||||
N.FN: Bahrenfuss
|
||||
TITLE: Diplom Informatikerin
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: andrea.bahrenfuss@ab-it-coaching.de
|
||||
TEL[CELL]: "+49 174 3777999"
|
||||
TEL[HOME]: ""
|
||||
TEL[FAX]: "+49 4123 8098703"
|
||||
TEL[WORK]: "+49 4123 8098705"
|
||||
BDAY: 1980-10-13
|
||||
URL[WORK]: http://www.ab-it-coaching.de
|
||||
ORG: Andrea Bahrenfuss IT-Coaching
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
ADR[WORK].STREET: Mühlenstraße 89
|
||||
ADR[WORK].LOCALITY: Barmstedt
|
||||
ADR[WORK].POSTAL: 25355
|
||||
ADR[WORK].COUNTRY: Deutschland
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Projekt
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
UID: urn:uuid:019edbe21dd8a-46ed-865f-05179604228f
|
||||
SOCIALPROFILE[XING]: https://www.xing.com/profile/Andrea_Bahrenfuss/cv
|
||||
SOCIALPROFILE[YAHOO]: abahrenfuss
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[Andrea Bahrenfuss IT-Coaching]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
|
||||
@@ -27,6 +27,7 @@ X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
UID: urn:uuid:019ed1044e9d9-49a5-bf23-f1483ad00585
|
||||
X-MANAGER: "[[Tina Lentz]]"
|
||||
---
|
||||
|
||||
#### Notes
|
||||
@@ -46,8 +47,6 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
## Manager
|
||||
[[Tina Lentz]]
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
|
||||
@@ -1,24 +1,40 @@
|
||||
---
|
||||
name: Andreas Viertel
|
||||
phone:
|
||||
email:
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship:
|
||||
created: 2024-04-18 09:10
|
||||
updated: 2024-04-18
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
company:
|
||||
location:
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Andreas Viertel
|
||||
N.GN: Andreas
|
||||
N.FN: Viertel
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Projekt
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
UID: urn:uuid:019ede843d7ec-4488-9d48-0c7d02b6436b
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
@@ -29,4 +45,3 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
---
|
||||
FN: Andreas Wilck
|
||||
N.GN: Andreas
|
||||
N.FN: Wilck
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: +49 176 98 54 00 75
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
UID: urn:uuid:019f365f3869e-46a0-ad27-02dd2bd9caa0
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: ""
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
---
|
||||
#### Notes
|
||||
|
||||
|
||||
|
||||
#process/contact
|
||||
@@ -1,24 +1,67 @@
|
||||
---
|
||||
name: Angelika Schmidt
|
||||
phone: +49 40 53302 163
|
||||
mobile: +49 151 16353552
|
||||
email: angelika.schmidt@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt erpteam GmbH]]"
|
||||
location: Hamburg
|
||||
manager: "[[Frank Schröder]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Angelika Schmidt
|
||||
N.GN: Angelika
|
||||
N.FN: Schmidt
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: angelika.schmidt@cimt-ag.de
|
||||
TEL[CELL]: +49 151 16353552
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 163
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt erpteam GmbH
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: "[[Frank Schröder]]"
|
||||
UID: urn:uuid:019edbb45748a-4ef6-ade2-0968e946bb59
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt erpteam GmbH]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
|
||||
@@ -1,32 +1,52 @@
|
||||
---
|
||||
name: Anja Allen
|
||||
phone:
|
||||
email: Anja.Allen@gartner.com
|
||||
email_home: allen_ra@speakeasy.net
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Anja_Allen/cv
|
||||
birthday: 1970-03-20
|
||||
last_chat:
|
||||
friends:
|
||||
- "[[Katja Börkey]]"
|
||||
- "[[Cordan Börkey]]"
|
||||
type: contact
|
||||
relationship: kommilitone
|
||||
title: Anja Allen
|
||||
company: "[[Gartner Inc.]]"
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Anja Allen
|
||||
N.GN: Anja
|
||||
N.FN: Allen
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: allen_ra@speakeasy.net
|
||||
EMAIL[WORK]: Anja.Allen@gartner.com
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: 1970-03-20
|
||||
URL[WORK]: ""
|
||||
ORG: Gartner Inc.
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kommilitone
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
SOCIALPROFILE[XING]: https://www.xing.com/profile/Anja_Allen/cv
|
||||
ADR[WORK].LOCALITY: ""
|
||||
UID: urn:uuid:019ede843d8f8-4b06-955b-4cd1b881bcd9
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[Gartner Inc.]]
|
||||
|
||||
## Freunde
|
||||
- [[Katja Börkey]]
|
||||
- [[Cordan Börkey]]
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
|
||||
@@ -1,36 +1,50 @@
|
||||
---
|
||||
name: Ann-Kristin Hantzsch-Kühnlenz
|
||||
phone:
|
||||
email: ann-kristin.hantzsch@cimt-ag.de
|
||||
telegram:
|
||||
linkedin: https://www.linkedin.com/in/ann-kristin-hantzsch-k%C3%BChnlenz/
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
relationship: kollege
|
||||
type: contact
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Hamburg
|
||||
manager: "[[Rouven Homann]]"
|
||||
interactions:
|
||||
- date: 2026-02-20
|
||||
text: Feedback zum Text erhalten. Ablage in Sharepoint und weitere Bearbeitung angekündigt.
|
||||
- date: 2026-02-17
|
||||
text: |-
|
||||
Teams-Gespräch bezüglich Blogeintrag:
|
||||
- Gibt es Bilder zum Text
|
||||
- ChatGPT zum Review des Textes
|
||||
- Zusenden des Eintrags inklusiver der Anmerkungen von Stefanie Pelster
|
||||
- date: 2026-02-16
|
||||
text: Teams-Nachricht erhalten mit Bitte um Termineinladung mit Grund für Gespräch
|
||||
- date: 2025-12-04
|
||||
text: Vorstellungsmail erhalten
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Ann-Kristin Hantzsch-Kühnlenz
|
||||
N.GN: ""
|
||||
N.FN: ""
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ann-kristin.hantzsch@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt objects AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: https://www.linkedin.com/in/ann-kristin-hantzsch-k%C3%BChnlenz/
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: "[[Rouven Homann]]"
|
||||
UID: urn:uuid:019edc66ddbac-40a2-a910-25ea92bcf637
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Interaction Log
|
||||
- **2026-02-20**: Feedback zum Text erhalten. Ablage in Sharepoint und weitere Bearbeitung angekündigt.
|
||||
- **2026-02-17**: Teams-Gespräch bezüglich Blogeintrag:
|
||||
- Gibt es Bilder zum Text
|
||||
- ChatGPT zum Review des Textes
|
||||
- Zusenden des Eintrags inklusiver der Anmerkungen von Stefanie Pelster
|
||||
- **2026-02-16**: Teams-Nachricht erhalten mit Bitte um Termineinladung mit Grund für Gespräch
|
||||
- **2025-12-04**: Vorstellungsmail erhalten
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
@@ -38,10 +52,12 @@ tags:
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
@@ -67,3 +83,5 @@ list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
>Viele Grüße
|
||||
>Ann-Kristin
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -0,0 +1,73 @@
|
||||
---
|
||||
FN: Anna Feldbarg
|
||||
N.GN: Anna
|
||||
N.FN: Feldbarg
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: Anna.Feldbarg@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY:
|
||||
URL[WORK]: https://www.cimt-ag.de/
|
||||
ORG: cimt consulting AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
UID: urn:uuid:019f2395510fe-451e-b079-dbcf54b6bac0
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: 2026-07-02
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: "null"
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt consulting AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>Hallo zusammen,
|
||||
>
|
||||
>auch ich melde mich neu an Bord. Ich bin Anna aus dem Hamburger Team. Ich bin derzeit 28 Jahre alt. Ursprünglich komme ich aus Hannover, wo ich auch aufgewachsen bin. Dort habe ich meinen Bachelor in Informationsmanagement mit den Schwerpunkten Informationsdidaktik und Content-Management absolviert. Durch das Masterstudium Digitale Transformation, das ich momentan absolviere, bin ich im Oktober 2025 nach Hamburg gezogen. Ich genieße es sehr, die Alster gleich vor der Nase zu haben, da ich ein waschechter Wassermensch bin. Privat findet man mich auf dem SUP oder beim Bahnen ziehen im Wasser. Auch zu Hause mache ich es mir gemütlich. Ich trinke gerne Tee und male dabei. Wenn ich die Zeit finde, koche ich sehr gerne und probiere neue Gerichte aus.
|
||||
>
|
||||
>Meine bisherigen Arbeitserfahrungen stammen aus dem Personalbereich. Ich war unter anderem im Personalservice tätig und habe dort unter anderem Personalstammdatenprozesse erfasst und bearbeitet. Aus der Endnutzerperspektive habe ich Erfahrung als Anforderungsermittlerin, Anforderungsübermittlerin und Testerin neuer ESS-Prozesse gesammelt. Durch diese Einblicke möchte ich meine neue Tätigkeit als Werkstudent im Bereich SAP HCM/SuccessFactors stärken und neue Impulse sammeln. Ich freue mich darauf, meine bisherigen und neuen Erkenntnisse umzusetzen und weiterzuentwickeln. Insbesondere freue ich mich darauf als Berater zu fungieren und mein Motto „Wo Ideen, Systeme und Menschen zusammentreffen - dort schaffe ich Wirkung“ zu leben.
|
||||
>
|
||||
>Falls ihr Tipps für mich als Berater habt, nur her damit!
|
||||
>
|
||||
>Ich freue mich sehr darauf, euch nach und nach kennenzulernen und spannende Projekte mit euch zu gestalten.
|
||||
>
|
||||
>Habt einen schönen Feierabend und genießt den Tag!
|
||||
>
|
||||
>Beste Grüße,
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
@@ -1,23 +1,41 @@
|
||||
---
|
||||
name: Anna Zobel
|
||||
phone: +49 40 53302 214
|
||||
email: anna.zobel@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Hamburg
|
||||
manager: "[[Peter-Christian Quint]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Anna Zobel
|
||||
N.GN: Anna
|
||||
N.FN: Zobel
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: anna.zobel@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 214
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt objects AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
UID: urn:uuid:019edc5db609a-49e5-8afb-8865b2ffd635
|
||||
X-MANAGER: "[[Peter-Christian Quint]]"
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
@@ -25,15 +43,18 @@ tags:
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>Moin zusammen,
|
||||
>
|
||||
@@ -47,3 +68,5 @@ list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
>
|
||||
>Anna
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
---
|
||||
FN: Annalena Rohwer
|
||||
N.GN: Annalena
|
||||
N.FN: Rohwer
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: annalena@thomasipunkt.de
|
||||
TEL[CELL]: +49 176 70 80 17 12
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 30 37 60 51
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: Thomas-i-Punkt Modelle Handelsgesellschaft m.b.H.
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
UID: urn:uuid:019f1eb869653-4d09-a7b0-a65e00446e6d
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: ""
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
---
|
||||
#### Notes
|
||||
|
||||
|
||||
|
||||
#process/contact
|
||||
@@ -1,24 +1,41 @@
|
||||
---
|
||||
name: Anne Gaarz
|
||||
phone: +49 40 53302 167
|
||||
mobile: +49 175 4369167
|
||||
email: anne.gaarz@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt consulting AG]]"
|
||||
location: Hamburg
|
||||
manager: ""
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Anne Gaarz
|
||||
N.GN: Anne
|
||||
N.FN: Gaarz
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: anne.gaarz@cimt-ag.de
|
||||
TEL[CELL]: +49 175 4369167
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 167
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt consulting AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: ""
|
||||
UID: urn:uuid:019edc8b7ca7c-451a-8b50-938b6de515d1
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt consulting AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
@@ -26,12 +43,19 @@ tags:
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -1,24 +1,43 @@
|
||||
---
|
||||
name: Anneke Maline Neelsen
|
||||
birthname: Harder
|
||||
phone: +49 40 53302 114
|
||||
email: anneke.neelsen@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/AnnekeMaline_Neelsen/cv
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company: "[[cimt consulting AG]]"
|
||||
location: Hamburg
|
||||
manager: ""
|
||||
template: "[[contact-colleague]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Anneke Maline Neelsen
|
||||
N.GN: Anneke
|
||||
N.FN: Neelsen
|
||||
N.PREFIX: ""
|
||||
N.MN: Maline
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: anneke.neelsen@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 114
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt consulting AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
SOCIALPROFILE[XING]: https://www.xing.com/profile/AnnekeMaline_Neelsen/cv
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: ""
|
||||
X-BIRTHNAME: Harder
|
||||
UID: urn:uuid:019ede7fa99a9-437e-9286-e010f95ea5b0
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt consulting AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
@@ -26,11 +45,19 @@ tags:
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -1,25 +1,40 @@
|
||||
---
|
||||
name: Anton Goldin
|
||||
phone: +49 211 545907 30
|
||||
email: anton.goldin@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company:
|
||||
location: Düsseldorf
|
||||
manager: "[[Daniel Koch]]"
|
||||
former_company:
|
||||
- "[[cimt technology GmbH]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Anton Goldin
|
||||
N.GN: Anton
|
||||
N.FN: Goldin
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: anton.goldin@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY:
|
||||
URL[WORK]: ""
|
||||
ORG:
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT:
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Düsseldorf
|
||||
X-FORMER-ORG: "[[cimt technology GmbH]]"
|
||||
UID: urn:uuid:019edcb01bb33-4a5d-917c-61eb53eae33b
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
|
||||
@@ -1,23 +1,41 @@
|
||||
---
|
||||
name: Anton Pullem
|
||||
phone:
|
||||
email: anton.pullem@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt services AG]]"
|
||||
location: Köln
|
||||
manager: "[[Matthias Vohl]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Anton Pullem
|
||||
N.GN: Anton
|
||||
N.FN: Pullem
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: anton.pullem@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: "cimt services AG"
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: "null"
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Köln
|
||||
X-MANAGER: "[[Matthias Vohl]]"
|
||||
UID: urn:uuid:019ede7b15c0f-4575-8e07-03abc4fbf5b3
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt services AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
@@ -25,12 +43,19 @@ tags:
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -1,27 +1,68 @@
|
||||
---
|
||||
name: Antonio Drewitz
|
||||
phone:
|
||||
mobile:
|
||||
email: antonio.drewitz@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat: 2026-01-15
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Berlin
|
||||
manager: "[[Frank Füllbier]]"
|
||||
interactions:
|
||||
- date: 2026-01-15
|
||||
text: Kickoff Meeting TiBuCi
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Antonio Drewitz
|
||||
N.GN: ""
|
||||
N.FN: ""
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: antonio.drewitz@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt objects AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: 2026-01-15
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
X-MANAGER: "[[Frank Füllbier]]"
|
||||
UID: urn:uuid:019edc6b718fa-4884-88e1-58774999da92
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Interaction Log
|
||||
- **15.01.2026**: Kickoff Meeting TiBuCi
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
## Rollen
|
||||
[[Werkstudent]]
|
||||
|
||||
|
||||
@@ -1,25 +1,69 @@
|
||||
---
|
||||
name: Armin Rabet
|
||||
phone:
|
||||
email: ""
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Armin_Rabet/cv
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
company: "[[Deloitte GmbH Wirtschaftsprüfungsgesellschaft]]"
|
||||
location: ""
|
||||
manager: ""
|
||||
former_company:
|
||||
FN: Armin Rabet
|
||||
N.GN: Armin
|
||||
N.FN: Rabet
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: Deloitte GmbH Wirtschaftsprüfungsgesellschaft
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-FORMER-ORG:
|
||||
- "[[cimt objects AG]]"
|
||||
tags:
|
||||
- process/contact
|
||||
SOCIALPROFILE[XING]: https://www.xing.com/profile/Armin_Rabet/cv
|
||||
UID: urn:uuid:019ed664d90d8-4996-95d5-dd43dcc345be
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[Deloitte GmbH Wirtschaftsprüfungsgesellschaft]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
|
||||
@@ -1,24 +1,41 @@
|
||||
---
|
||||
name: Arnt Zimmermann
|
||||
phone: +49 221 367 986-0
|
||||
mobile: +49 163 / 367 98 00
|
||||
email: arnt.zimmermann@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat: 2025-09-27
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt services AG]]"
|
||||
location: Köln
|
||||
manager: ""
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Arnt Zimmermann
|
||||
N.GN: Arnt
|
||||
N.FN: Zimmermann
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: arnt.zimmermann@cimt-ag.de
|
||||
TEL[CELL]: +49 163 367 98 00
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 221 367 986-0
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: "cimt services AG"
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: 2025-09-27
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Köln
|
||||
X-MANAGER: ""
|
||||
UID: urn:uuid:019ede88d153e-4b77-b783-b76a3bd674e3
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt services AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
@@ -26,17 +43,19 @@ tags:
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
|
||||
>
|
||||
|
||||
@@ -1,24 +1,41 @@
|
||||
---
|
||||
name: Astrid Jessen
|
||||
phone: +49 40 53302 206
|
||||
email: astrid.jessen@cimt-ag.de
|
||||
mobile: +49 15116353551
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt erpteam GmbH]]"
|
||||
location: Hamburg
|
||||
manager: "[[Frank Schröder]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Astrid Jessen
|
||||
N.GN: Astrid
|
||||
N.FN: Jessen
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: astrid.jessen@cimt-ag.de
|
||||
TEL[CELL]: +49 15116353551
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 206
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt erpteam GmbH
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: "[[Frank Schröder]]"
|
||||
UID: urn:uuid:019edbbd7f009-451e-8865-75129325d0e3
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt erpteam GmbH]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
@@ -26,14 +43,17 @@ tags:
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
> [!info]- Vorstellung
|
||||
> Hallo zusammen,
|
||||
>
|
||||
@@ -49,3 +69,5 @@ list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
>
|
||||
>Astrid
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -1,23 +1,41 @@
|
||||
---
|
||||
name: Ayyüce Malkoc Akcura
|
||||
phone: +31 73 30304-58
|
||||
email: ayyuce.malkocakcura@cimt.nl
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt BV]]"
|
||||
location: Vught
|
||||
manager: ""
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Ayyüce Malkoc Akcura
|
||||
N.GN: Ayyüce
|
||||
N.FN: Malkoc Akcura
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ayyuce.malkocakcura@cimt.nl
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +31 73 30304-58
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt BV
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Vught
|
||||
X-MANAGER: ""
|
||||
UID: urn:uuid:019ede8d6539d-4233-86e2-4cd7dfde66ae
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt BV]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
@@ -25,10 +43,12 @@ tags:
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
@@ -46,3 +66,6 @@ list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
>
|
||||
>Best Regards,
|
||||
>Ayyuce.
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
---
|
||||
FN: BVG
|
||||
N.GN: ""
|
||||
N.FN: ""
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: info@bvg.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 30 19 449
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: org
|
||||
VERSION: "4.0"
|
||||
UID: urn:uuid:019f365d324a9-4c1f-a065-8a777e59721b
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: ""
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
---
|
||||
#### Notes
|
||||
|
||||
|
||||
|
||||
#process/contact
|
||||
@@ -1,25 +1,43 @@
|
||||
---
|
||||
name: Barbara Horstmann
|
||||
phone:
|
||||
email:
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: projekt
|
||||
created: 2025-06-28 12:48
|
||||
updated: 2025-06-28
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
company: "[[ivv – Informationsverarbeitung für Versicherungen GmbH]]"
|
||||
tags:
|
||||
- process/contact
|
||||
former_project:
|
||||
- "[[DC-G Softwareentwicklungsumgebung]]"
|
||||
FN: Barbara Horstmann
|
||||
N.GN: Barbara
|
||||
N.FN: Horstmann
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: ivv – Informationsverarbeitung für Versicherungen GmbH
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Projekt
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hannover
|
||||
UID: urn:uuid:019ede91f934b-42e8-94eb-d25e3951b893
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[ivv – Informationsverarbeitung für Versicherungen GmbH]]
|
||||
|
||||
## Frühere Projekte
|
||||
- [[DC-G Softwareentwicklungsumgebung]]
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
@@ -30,4 +48,3 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
|
||||
@@ -7,11 +7,11 @@ N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: bastian.liesigk@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[CELL]: +49 170 1234567
|
||||
TEL[MANAGEDSERVICE]: +49 160 96067408
|
||||
TEL[WORK]: +49 30 834098 10
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
URL[WORK]: https://cimt-ag.de
|
||||
ORG: cimt objects AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
@@ -27,6 +27,10 @@ X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
UID: urn:uuid:019ed22a22ed5-45c4-b55a-3e3a90d81403
|
||||
X-MANAGER: "[[Oliver Fromm]]"
|
||||
ADR[WORK].STREET: Bundesallee 39-40a
|
||||
ADR[WORK].POSTAL: "10717"
|
||||
ADR[WORK].COUNTRY: Deutschland
|
||||
---
|
||||
|
||||
#### Notes
|
||||
@@ -49,8 +53,6 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
## Manager
|
||||
[[Oliver Fromm]]
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
|
||||
@@ -1,23 +1,42 @@
|
||||
---
|
||||
name: Beatrice Schumacher
|
||||
phone:
|
||||
email: beatrice.schumacher@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Berlin
|
||||
manager: "[[Sylvia Rettkowitz]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Beatrice Schumacher
|
||||
N.GN: Beatrice
|
||||
N.FN: Schumacher
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: beatrice.schumacher@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: https://cimt-ag.de
|
||||
ORG: cimt objects AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
UID: urn:uuid:019ed4b1fa764-4309-8f80-e1ab0e2fc458
|
||||
X-MANAGER: "[[Sylvia Rettkowitz]]"
|
||||
NICKNAME: Trixi
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
[[Management-Assistenz]]
|
||||
|
||||
@@ -26,10 +45,12 @@ tags:
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
|
||||
@@ -1,23 +1,42 @@
|
||||
---
|
||||
name: Benedikt Edelmann
|
||||
phone: +49 40 53302 171
|
||||
email: benedikt.edelmann@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Benedikt_Edelmann
|
||||
birthday: 1989-10-17
|
||||
last_chat: 2025-09-27
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Hamburg
|
||||
manager: "[[Rouven Homann]]"
|
||||
template: "[[contact-colleague]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Benedikt Edelmann
|
||||
N.GN: Benedikt
|
||||
N.FN: Edelmann
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: benedikt.edelmann@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 171
|
||||
BDAY: 1989-10-17
|
||||
URL[WORK]: ""
|
||||
ORG: cimt objects AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: 2025-09-27
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
SOCIALPROFILE[XING]: https://www.xing.com/profile/Benedikt_Edelmann
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: "[[Rouven Homann]]"
|
||||
UID: urn:uuid:019edc86e8ba4-451a-9e9a-68e9fdd0cd66
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Gilden
|
||||
@@ -39,3 +58,8 @@ list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -1,23 +1,41 @@
|
||||
---
|
||||
name: Benjamin Fürnrohr
|
||||
phone:
|
||||
email: benjamin.fuernrohr@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Frankfurt
|
||||
manager: "[[Marc Herber]]"
|
||||
template: "[[contact-colleague]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Benjamin Fürnrohr
|
||||
N.GN: Benjamin
|
||||
N.FN: Fürnrohr
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: benjamin.fuernrohr@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt objects AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT:
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Frankfurt
|
||||
X-MANAGER: "[[Marc Herber]]"
|
||||
UID: urn:uuid:019edc792d26b-4977-9681-ef265ae82d40
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
@@ -52,3 +70,5 @@ list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
>Beste Grüße,
|
||||
>Ben Fürnrohr
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -1,28 +1,47 @@
|
||||
---
|
||||
name: Bernard Bedynski
|
||||
phone:
|
||||
email: ""
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Berlin
|
||||
manager: "[[Oliver Fromm]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Bernard Bedynski
|
||||
N.GN: Bernard
|
||||
N.FN: Bedynski
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt objects AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: "null"
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
X-MANAGER: "[[Oliver Fromm]]"
|
||||
UID: urn:uuid:019edc7005794-4952-9e4c-2b0a09cf41af
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
@@ -42,3 +61,5 @@ list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
>
|
||||
>Bis gleich!
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -1,28 +1,47 @@
|
||||
---
|
||||
name: Bettina Hoff
|
||||
phone: +49 30 372 24 13
|
||||
email:
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
married:
|
||||
last_chat: 2023-06-14
|
||||
friends:
|
||||
type: contact
|
||||
relationship: family
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Bettina Hötger
|
||||
N.GN: Bettina
|
||||
N.FN: Hötger
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: " +49 151 22 44 78 50"
|
||||
TEL[HOME]: +49 30 372 24 13
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Familie
|
||||
X-LAST-CHAT: 2023-06-14
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
UID: urn:uuid:019ede91f91b6-4ba1-9a98-0a6827b8d000
|
||||
X-BIRTHNAME: Hoff
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
|
||||
@@ -1,25 +1,43 @@
|
||||
---
|
||||
name: Birger Dittmann
|
||||
phone:
|
||||
email: birger.dittmann@gmail.com
|
||||
telegram:
|
||||
linkedin: https://www.linkedin.com/in/birger-dittmann-170577142/
|
||||
xing: https://www.xing.com/profile/Birger_Dittmann/cv
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company:
|
||||
former_company:
|
||||
- "[[cimt objects AG]]"
|
||||
location: Hamburg
|
||||
manager: ""
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Birger Dittmann
|
||||
N.GN: Birger
|
||||
N.FN: Dittmann
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: birger.dittmann@gmail.com
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG:
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: https://www.linkedin.com/in/birger-dittmann-170577142/
|
||||
SOCIALPROFILE[XING]: https://www.xing.com/profile/Birger_Dittmann/cv
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: ""
|
||||
X-FORMER-ORG: "[[cimt objects AG]]"
|
||||
UID: urn:uuid:019ede968cf02-44ce-b865-196ad645b177
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
|
||||
@@ -1,26 +1,43 @@
|
||||
---
|
||||
name: Björn Hetterle
|
||||
birthname: Schimpke
|
||||
phone: +49 40 53302 152
|
||||
email: bjoern.hetterle@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company:
|
||||
location: Hamburg
|
||||
manager:
|
||||
template: "[[contact-colleague]]"
|
||||
former_company:
|
||||
- "[[cimt objects AG]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Björn Hetterle
|
||||
N.GN: Björn
|
||||
N.FN: Hetterle
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: bjoern.hetterle@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: ""
|
||||
X-FORMER-ORG: "[[cimt objects AG]]"
|
||||
UID: urn:uuid:019ede9b20ce3-4227-b0f1-f9619f7a0054
|
||||
X-BIRTHNAME: Schimpke
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
|
||||
@@ -1,28 +1,47 @@
|
||||
---
|
||||
name: Büsra Fidan
|
||||
phone:
|
||||
email: ""
|
||||
telegram:
|
||||
linkedin: https://www.linkedin.com/in/b%C3%BCsra-f-3b275a268/
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Berlin
|
||||
manager: "[[Rouven Homann]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Büsra Fidan
|
||||
N.GN: Büsra
|
||||
N.FN: Fidan
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt objects AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: "null"
|
||||
SOCIALPROFILE[LINKEDIN]: https://www.linkedin.com/in/b%C3%BCsra-f-3b275a268/
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
X-MANAGER: "[[Rouven Homann]]"
|
||||
UID: urn:uuid:019edc8254fb0-4132-84a5-6944414fb3b2
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
@@ -46,3 +65,23 @@ list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
>
|
||||
>Auf eine erfolgreiche Zusammenarbeit!
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
|
||||
@@ -1,25 +1,42 @@
|
||||
---
|
||||
name: Carina Heitmann
|
||||
phone:
|
||||
email: ""
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company:
|
||||
location: ""
|
||||
manager: ""
|
||||
former_company:
|
||||
- "[[cimt consulting AG]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Carina Heitmann
|
||||
N.GN: Carina
|
||||
N.FN: Heitmann
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: ""
|
||||
X-MANAGER: ""
|
||||
X-FORMER-ORG: "[[cimt consulting AG]]"
|
||||
UID: urn:uuid:019ede9fb4b3a-45fb-83fa-885a2757f6c6
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
|
||||
## Rollen
|
||||
[[SAP Consultant]]
|
||||
|
||||
|
||||
@@ -1,28 +1,47 @@
|
||||
---
|
||||
name: Carolin Sörgel
|
||||
phone: +49 40 53302 144
|
||||
email: carolin.soergel@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat: 2025-09-27
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company: "[[cimt consulting AG]]"
|
||||
location: Hamburg
|
||||
manager: ""
|
||||
template: "[[contact-colleague]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Carolin Sörgel
|
||||
N.GN: Carolin
|
||||
N.FN: Sörgel
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: carolin.soergel@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 144
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt consulting AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: 2025-09-27
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: ""
|
||||
UID: urn:uuid:019edc8b7c959-4402-998b-9017caedc2f1
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt consulting AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
@@ -34,3 +53,9 @@ list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -1,25 +1,46 @@
|
||||
---
|
||||
name: Christa Stelter
|
||||
phone: +49 30 3827569
|
||||
mobile: +49 163 4892667
|
||||
email: christa@cstelter.de
|
||||
telegram:
|
||||
linkedin:
|
||||
birthday: 1970-12-27
|
||||
last_chat: 2024-02-25
|
||||
friends: "[[Dietrich Firneisen]]"
|
||||
type: contact
|
||||
relationship: familie
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Christa Stelter
|
||||
N.GN: Christa
|
||||
N.FN: Stelter
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: christa@cstelter.de
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: +49 163 4892667
|
||||
TEL[HOME]: +49 30 3827569
|
||||
TEL[NOTFALL]: +49 177 71 94 774
|
||||
BDAY: 1940-12-27
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: Halemweg 41
|
||||
ADR[HOME].LOCALITY: Berlin
|
||||
ADR[HOME].POSTAL: "13629"
|
||||
ADR[HOME].COUNTRY: Deutschland
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Familie
|
||||
X-LAST-CHAT: 2024-02-25
|
||||
UID: urn:uuid:019edea8dc733-4b6d-a407-c592bbe071f8
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
## Freunde
|
||||
- [[Dietrich Firneisen]]
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
|
||||
@@ -1,30 +1,47 @@
|
||||
---
|
||||
name: Christian Bendlin
|
||||
phone: +49 163 2536951
|
||||
phone_home: +49 30 201817160
|
||||
email: christian@bendlin.net
|
||||
url: https://www.bendlin.net
|
||||
telegram:
|
||||
linkedin:
|
||||
google: http://www.google.com/profiles/110951325193887809990
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: familie
|
||||
title: Christian Bendlin
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Christian Bendlin
|
||||
N.GN: Christian
|
||||
N.FN: Bendlin
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: christian@bendlin.net
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: +49 163 2536951
|
||||
TEL[HOME]: +49 30 201817160
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[HOME]: https://www.bendlin.net
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Familie
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
SOCIALPROFILE[GOOGLE]: http://www.google.com/profiles/110951325193887809 990
|
||||
UID: urn:uuid:019edeb69cf83-4144-b0d1-5dad423831f1
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
|
||||
@@ -1,34 +1,51 @@
|
||||
---
|
||||
name: Christian Heese
|
||||
phone: +49 173 63 92 933
|
||||
email: christian.heese@s-kreditpartner.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat: 2024-09-13
|
||||
friends:
|
||||
type: contact
|
||||
relationship: projekt
|
||||
created: 2024-04-08 11:04
|
||||
updated: 2024-04-08
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
company: "[[S-Kreditpartner GmbH]]"
|
||||
location: Berlin
|
||||
manager: "[[Olaf Hein]]"
|
||||
tags:
|
||||
- process/contact
|
||||
former_project:
|
||||
- "[[DataOps]]"
|
||||
FN: Christian Heese
|
||||
N.GN: Christian
|
||||
N.FN: Heese
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: christian.heese@s-kreditpartner.de
|
||||
TEL[CELL]: "+49 173 63 92 933"
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: "S-Kreditpartner GmbH"
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Projekt
|
||||
X-LAST-CHAT: 2024-09-13
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
UID: urn:uuid:019edeb69ce73-4835-baa6-00d9631be03f
|
||||
X-MANAGER: "[[Olaf Hein]]"
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[S-Kreditpartner GmbH]]
|
||||
|
||||
## Frühere Projekte
|
||||
- [[DataOps]]
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
|
||||
@@ -1,28 +1,47 @@
|
||||
---
|
||||
name: Christian Hirselandt
|
||||
phone: +49 30 834098 0
|
||||
email: christian.hirselandt@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat: 2025-09-27
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Berlin
|
||||
manager: "[[Oliver Fromm]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Christian Hirselandt
|
||||
N.GN: Christian
|
||||
N.FN: Hirselandt
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: christian.hirselandt@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 30 834098 0
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt objects AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
UID: urn:uuid:019ed4c449d85-4c9d-a916-e65e53592e94
|
||||
X-MANAGER: "[[Oliver Fromm]]"
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
@@ -35,3 +54,8 @@ list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -7,11 +7,11 @@ N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: christian.kiltz@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[CELL]: +49 170 1234567
|
||||
TEL[MANAGEDSERVICE]: +49 160 96058527
|
||||
TEL[WORK]: +49 30 834098 10
|
||||
BDAY: 1970-07-19
|
||||
URL[WORK]: ""
|
||||
URL[WORK]: https://cimt-ag.de
|
||||
ORG: cimt objects AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
@@ -28,6 +28,10 @@ SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
UID: urn:uuid:019ed2258f0d7-4308-bc55-29ccc2674449
|
||||
SOCIALPROFILE[XING]: https://www.xing.com/profile/Christian_Kiltz/cv
|
||||
X-MANAGER: "[[Oliver Fromm]]"
|
||||
ADR[WORK].STREET: Bundesallee 39-40a
|
||||
ADR[WORK].POSTAL: "10717"
|
||||
ADR[WORK].COUNTRY: Deutschland
|
||||
---
|
||||
|
||||
#### Notes
|
||||
@@ -50,9 +54,6 @@ LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Oliver Fromm]]
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
|
||||
@@ -1,31 +1,51 @@
|
||||
---
|
||||
name: Christian Klein
|
||||
phone: +49 69 9150 687 12
|
||||
mobile: +49 1515 7905959
|
||||
email: christian.klein@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Christian_Klein55/cv
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Frankfurt
|
||||
manager: "[[Marc Herber]]"
|
||||
template: "[[contact-colleague]]"
|
||||
gilde:
|
||||
- "[[GCP Gilde]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Christian Klein
|
||||
N.GN: Christian
|
||||
N.FN: Klein
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: christian.klein@cimt-ag.de
|
||||
TEL[CELL]: +49 1515 7905959
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 69 9150 687 12
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt objects AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
SOCIALPROFILE[XING]: https://www.xing.com/profile/Christian_Klein55/cv
|
||||
ADR[WORK].LOCALITY: Frankfurt
|
||||
X-MANAGER: "[[Marc Herber]]"
|
||||
UID: urn:uuid:019ede7b15b24-4375-bc40-c618e96d65b7
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Gilde
|
||||
- [[GCP Gilde]]
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
@@ -38,3 +58,8 @@ list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -1,29 +1,48 @@
|
||||
---
|
||||
name: Christian Kulitza
|
||||
phone: +49 211 545907 12
|
||||
email: christian.kulitza@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt technology GmbH]]"
|
||||
location: Düsseldorf
|
||||
manager: "[[Daniel Koch]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Christian Kulitza
|
||||
N.GN: Christian
|
||||
N.FN: Kulitza
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: christian.kulitza@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 211 545907 12
|
||||
BDAY: "null"
|
||||
URL[WORK]: ""
|
||||
ORG: cimt technology GmbH
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Düsseldorf
|
||||
X-MANAGER: "[[Daniel Koch]]"
|
||||
UID: urn:uuid:019eded2140a8-4a92-af24-d2dee6380227
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt technology GmbH]]
|
||||
|
||||
## Rollen
|
||||
[[Lightning Talks Orga]]
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
@@ -36,3 +55,8 @@ list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -1,29 +1,47 @@
|
||||
---
|
||||
name: Christian Michels
|
||||
phone:
|
||||
email:
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Christian_Michels2
|
||||
birthday:
|
||||
last_chat: 2023-03-21
|
||||
friends:
|
||||
type: contact
|
||||
relationship: projekt
|
||||
company: "[[mobile.de GmbH]]"
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
tags:
|
||||
- process/contact
|
||||
former_project:
|
||||
FN: Christian Michels
|
||||
N.GN: Christian
|
||||
N.FN: Michels
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: "null"
|
||||
URL[WORK]: ""
|
||||
ORG: "mobile.de GmbH"
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Projekt
|
||||
X-LAST-CHAT: 2023-03-21
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
SOCIALPROFILE[XING]: https://www.xing.com/profile/Christian_Michels2
|
||||
UID: urn:uuid:019edf6db739e-4823-93dd-b0cb4c4e329a
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[mobile.de GmbH]]
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
|
||||
@@ -1,32 +1,47 @@
|
||||
---
|
||||
name: Christian Stelter
|
||||
phone: +49 170 8322889
|
||||
email: mail@christianstelter.de
|
||||
address:
|
||||
street: Finkenweg 77
|
||||
city: Friedrichshafen
|
||||
code: 88048
|
||||
state:
|
||||
country: Deutschland
|
||||
telegram:
|
||||
linkedin:
|
||||
birthday: 1964-11-11
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: familie
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Christian Stelter
|
||||
N.GN: Christian
|
||||
N.FN: Stelter
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: mail@christianstelter.de
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: +49 170 8322889
|
||||
TEL[HOME]: +49 7541 3864870
|
||||
TEL[WORK]: ""
|
||||
BDAY: 1964-11-11
|
||||
URL[WORK]: ""
|
||||
ORG: undefined
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: Finkenweg 77
|
||||
ADR[HOME].LOCALITY: Friedrichshafen
|
||||
ADR[HOME].POSTAL: "88048"
|
||||
ADR[HOME].COUNTRY: Deuts chland
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Familie
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
UID: urn:uuid:019edf724b349-49e9-ae51-6e84516c2d98
|
||||
ADR[HOME].REGION: Baden-Württemberg
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
|
||||
@@ -1,29 +1,48 @@
|
||||
---
|
||||
name: Christina Grzybowski
|
||||
phone: +49 40 53302 414
|
||||
email: christina.grzybowski@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Hamburg
|
||||
manager: "[[Sina Breskas]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Christina Grzybowski
|
||||
N.GN: Christina
|
||||
N.FN: Grzybowski
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: christina.grzybowski@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 414
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: "cimt objects AG"
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: "null"
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: "[[Sina Breskas]]"
|
||||
UID: urn:uuid:019edc8254e56-46ad-9cfa-367a1def91a0
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
[[Personal-Referentin]]
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
@@ -53,3 +72,5 @@ list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
>
|
||||
>LG Christina
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -1,21 +1,47 @@
|
||||
---
|
||||
name: Christoph Glagauer
|
||||
phone: +49 157 7353 5352
|
||||
telegram:
|
||||
linkedin:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends: "[[Eva Glaubitz]]"
|
||||
type: contact
|
||||
relationship: taxi
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Christoph Glagauer
|
||||
N.GN: Christoph
|
||||
N.FN: Glagauer
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: +49 157 7353 5352
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY:
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Taxi
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
UID: urn:uuid:019edf724b253-4e76-ad5f-8f8788e34fab
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[Taxi|Taxi]]
|
||||
|
||||
## Freunde
|
||||
- [[Eva Glaubitz]]
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
@@ -23,5 +49,3 @@ LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
[[Taxi|Taxi]]
|
||||
|
||||
|
||||
@@ -1,28 +1,47 @@
|
||||
---
|
||||
name: Christoph Lentze
|
||||
phone: +49 40 53302 22
|
||||
email: christoph.lentze@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt consulting AG]]"
|
||||
location: Hamburg
|
||||
manager: ""
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Christoph Lentze
|
||||
N.GN: Christoph
|
||||
N.FN: Lentze
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: christoph.lentze@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 22
|
||||
BDAY:
|
||||
URL[WORK]: ""
|
||||
ORG: cimt consulting AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT:
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: ""
|
||||
UID: urn:uuid:019edf7b72da1-4caa-b966-73a23542fca3
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt consulting AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
@@ -49,3 +68,5 @@ list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
>Viele Grüße
|
||||
>Christoph
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
---
|
||||
FN: Claudia Peetz
|
||||
N.GN: Claudia
|
||||
N.FN: Peetz
|
||||
N.PREFIX: ""
|
||||
N.MN: Sabine
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: cl.peetz@thpeetz.de
|
||||
EMAIL[WORK]: ""
|
||||
TEL[cell]: +49 170 68 61 210
|
||||
TEL[1:cell]: +49 157 730 92 999
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: 1968-11-26
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
UID: urn:uuid:019f366139754-474f-9a74-9f703d814345
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: ""
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
X-BIRTHNAME: Stelter
|
||||
ANNIVERSARY: 2012-02-01
|
||||
EMAIL: cs.peetz@gmail.com
|
||||
---
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
@@ -1,26 +1,69 @@
|
||||
---
|
||||
name: Claudia Stahl
|
||||
birthname: Döring
|
||||
phone: +49 30 834098 0
|
||||
email: claudia.stahl@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company:
|
||||
location:
|
||||
manager:
|
||||
template: "[[contact-colleague]]"
|
||||
former_company:
|
||||
FN: Claudia Stahl
|
||||
N.GN: Claudia
|
||||
N.FN: Stahl
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG:
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
UID: urn:uuid:019ed49fab10e-481a-827d-a4157965587f
|
||||
X-BIRTHNAME: Döring
|
||||
X-FORMER-ORG:
|
||||
- "[[cimt objects AG]]"
|
||||
tags:
|
||||
- process/contact
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
## Rollen
|
||||
[[Management-Assistenz]]
|
||||
|
||||
|
||||
@@ -1,28 +1,47 @@
|
||||
---
|
||||
name: Claudia Willgeroth-Flemmig
|
||||
phone: +49 40 53302 546
|
||||
email: claudia.willgeroth-flemmig@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt consulting AG]]"
|
||||
location: Hamburg
|
||||
manager: ""
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Claudia Willgeroth-Flemmig
|
||||
N.GN: Claudia
|
||||
N.FN: Willgeroth-Flemmig
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: claudia.willgeroth-flemmig@cimt-ag.de
|
||||
TEL[CELL]: undefined
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 546
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt consulting AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: ""
|
||||
UID: urn:uuid:019edf96e9fd3-4e6b-9ece-ea52f2368aec
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt consulting AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
@@ -35,3 +54,8 @@ list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -1,25 +1,42 @@
|
||||
---
|
||||
name: Clemens Carlstedt
|
||||
phone: +49 30 834098 0
|
||||
email: mail@carlstedt.de
|
||||
telegram:
|
||||
linkedin: https://www.linkedin.com/in/clemens-carlstedt
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company: "[[Lufthansa CityLine GmbH]]"
|
||||
location: Berlin
|
||||
manager:
|
||||
template: "[[contact-colleague]]"
|
||||
former_company:
|
||||
FN: Clemens Carlstedt
|
||||
N.GN: Clemens
|
||||
N.FN: Carlstedt
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: mail@carlstedt.de
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: Lufthansa CityLine GmbH
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: https://www.linkedin.com/in/clemens-carlstedt
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
X-FORMER-ORG:
|
||||
- "[[cimt objects AG]]"
|
||||
tags:
|
||||
- process/contact
|
||||
UID: urn:uuid:019ed4d2091c0-4379-94e3-79e4f9255587
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[Lufthansa CityLine GmbH]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
|
||||
@@ -1,28 +1,48 @@
|
||||
---
|
||||
name: Constantin Gerdts-Johanshon
|
||||
phone: +49 40 53302 128
|
||||
email: constantin.gerdts@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Constantin_GerdtsJohanshon/cv
|
||||
birthday: 1987-09-09
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Hamburg
|
||||
manager: "[[Christian Kreutzmann]]"
|
||||
template: "[[contact-colleague]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Constantin Gerdts-Johanshon
|
||||
N.GN: Constantin
|
||||
N.FN: Gerdts-Johanshon
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: constantin.gerdts@cimt-ag.de
|
||||
TEL[CELL]: undefined
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 128
|
||||
BDAY: 1987-09-09
|
||||
URL[WORK]: ""
|
||||
ORG: cimt objects AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
SOCIALPROFILE[XING]: https://www.xing.com/profile/Constantin_GerdtsJohanshon/cv
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: "[[Christian Kreutzmann]]"
|
||||
UID: urn:uuid:019edfa011b1e-4eda-a3dc-1dbf2ec808d9
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
@@ -30,3 +50,13 @@ LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -1,31 +1,54 @@
|
||||
---
|
||||
name: Cordan Börkey
|
||||
phone: +49 176 54541804
|
||||
email: corma70@googlemail.com
|
||||
address:
|
||||
street: Spessartstrasse 12
|
||||
city: Berlin
|
||||
code: 14197
|
||||
country: Deutschland
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Cordan_Boerkey/cv
|
||||
skype: rakumeisterfinn
|
||||
birthday: 1970-05-02
|
||||
last_chat:
|
||||
friends:
|
||||
- "[[Anja Allen]]"
|
||||
type: contact
|
||||
relationship: freund
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
married: "[[Katja Börkey]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Cordan Börkey
|
||||
N.GN: Cordan
|
||||
N.FN: Börkey
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: corma70@googlemail.com
|
||||
EMAIL[WORK]: cordan@boerkey-keramik.de
|
||||
TEL[CELL]: +49 176 54541804
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: 1970-05-02
|
||||
URL[WORK]: https://www.keratech.de/
|
||||
ORG: Börkey Keratech GmbH
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: Spessartstrasse 12
|
||||
ADR[HOME].LOCALITY: Berlin
|
||||
ADR[HOME].POSTAL: "14197"
|
||||
ADR[HOME].COUNTRY: Deutschland
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Freund
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
SOCIALPROFILE[XING]: https://www.xing.com/profile/Cordan_Boerkey/cv
|
||||
SOCIALPROFILE[SKYPE]: rakumeisterfinn
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
X-MARRIED: "[[Katja Börkey]]"
|
||||
UID: urn:uuid:019edfa4a57e8-4901-8ab5-9f543bd7935e
|
||||
TITLE: Selbstständige Fachkraft im Bereich Glas\, Keramik & Zement
|
||||
ADR[WORK].STREET: Paulsborner Strasse 10
|
||||
ADR[WORK].POSTAL: "10709"
|
||||
ADR[WORK].COUNTRY: Detuschland
|
||||
NOTE: "Skype: rakumeisterfinn"
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
## Freunde
|
||||
- [[Anja Allen]]
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
|
||||
@@ -1,26 +1,42 @@
|
||||
---
|
||||
name: Corinna Bschor
|
||||
phone: +49 40 53302 199
|
||||
mobile: +49 163 6081316
|
||||
email: corinna.bschor@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company:
|
||||
location: Hamburg
|
||||
manager: ""
|
||||
former_company:
|
||||
- "[[cimt consulting AG]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Corinna Bschor
|
||||
N.GN: Corinna
|
||||
N.FN: Bschor
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: corinna.bschor@cimt-ag.de
|
||||
TEL[CELL]: +49 163 6081316
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 199
|
||||
BDAY:
|
||||
URL[WORK]: ""
|
||||
ORG:
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT:
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: ""
|
||||
UID: urn:uuid:019edfc01caff-4c74-8682-ffd7738050cc
|
||||
X-FORMER-ORG: "[[cimt consulting AG]]"
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
|
||||
## Rollen
|
||||
- [[SAP Consultant]]
|
||||
|
||||
|
||||
@@ -1,29 +1,48 @@
|
||||
---
|
||||
name: Daniel Koch
|
||||
phone: +49 211 545907 89
|
||||
mobile: +49 172 6999313
|
||||
email: daniel.koch@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Daniel_Koch385
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company: "[[cimt technology GmbH]]"
|
||||
location: Düsseldorf
|
||||
manager: "[[Mehrdad Abdipour]]"
|
||||
template: "[[contact-colleague]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Daniel Koch
|
||||
N.GN: Daniel
|
||||
N.FN: Koch
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: daniel.koch@cimt-ag.de
|
||||
TEL[CELL]: +49 172 6999313
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 211 545907 89
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: "cimt technology GmbH"
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
SOCIALPROFILE[XING]: "https://www.xing.com/profile/Daniel_Koch385"
|
||||
ADR[WORK].LOCALITY: Düsseldorf
|
||||
X-MANAGER: "[[Mehrdad Abdipour]]"
|
||||
UID: urn:uuid:019edfc4b0867-4b47-b755-cc14da8aeab7
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt technology GmbH]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
@@ -36,3 +55,8 @@ list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -1,23 +1,41 @@
|
||||
---
|
||||
name: Daniel Lau
|
||||
phone: +49 40 53302 207
|
||||
email: Daniel.Lau@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt consulting AG]]"
|
||||
location: Hamburg
|
||||
manager: ""
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Daniel Lau
|
||||
N.GN: Daniel
|
||||
N.FN: Lau
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: Daniel.Lau@cimt-ag.de
|
||||
TEL[CELL]:
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 207
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt consulting AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: ""
|
||||
UID: urn:uuid:019edfc9445ee-441f-baa3-0fb84f88f30b
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt consulting AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
|
||||
@@ -1,25 +1,41 @@
|
||||
---
|
||||
name: Daniel Mechau
|
||||
phone: +49 40 53302 532
|
||||
email: daniel.mechau@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company:
|
||||
location: Hamburg
|
||||
manager:
|
||||
template: "[[contact-colleague]]"
|
||||
former_company:
|
||||
- "[[cimt objects AG]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Daniel Mechau
|
||||
N.GN: Daniel
|
||||
N.FN: Mechau
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: daniel.mechau@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 532
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: ""
|
||||
X-FORMER-ORG: "[[cimt objects AG]]"
|
||||
UID: urn:uuid:019edfe4bbbde-4735-a1b9-62f34e1f08b9
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
|
||||
@@ -1,19 +1,37 @@
|
||||
---
|
||||
id: Daniel Rickert
|
||||
tags:
|
||||
- process/contact
|
||||
birthday: 1971-06-10
|
||||
company: "[[TBWA Switzerland AG]]"
|
||||
email: daniel.rickert@tbwa.ch
|
||||
email_home: danielrickert@web.de
|
||||
name: Daniel Rickert
|
||||
phone: +41 076 225 71 36
|
||||
relationship: schule
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
title: Strategic Planning Director
|
||||
type: contact
|
||||
FN: Daniel Rickert
|
||||
N.GN: Daniel
|
||||
N.FN: Rickert
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: danielrickert@web.de
|
||||
EMAIL[WORK]: daniel.rickert@tbwa.ch
|
||||
TEL[CELL]: +41 076 225 71 36
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: 1971-06-10
|
||||
URL[WORK]: ""
|
||||
ORG: TBWA Switzerland AG
|
||||
ROLE: Strategic Planning Director
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: Seefeldstrasse 19
|
||||
ADR[HOME].LOCALITY: Zürich
|
||||
ADR[HOME].POSTAL: "8008"
|
||||
ADR[HOME].COUNTRY: Schweiz
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Schule
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
UID: urn:uuid:019ed4bb22252-4145-9eba-ea19c7676757
|
||||
---
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[TBWA Switzerland AG]]
|
||||
## Termine
|
||||
|
||||
```dataview
|
||||
|
||||
@@ -1,26 +1,41 @@
|
||||
---
|
||||
name: Danny Smaka
|
||||
phone:
|
||||
email: danny.smaka@cimt-ag.de
|
||||
telegram:
|
||||
linkedin: https://www.linkedin.com/in/danny-smaka-0868071b7/
|
||||
xing:
|
||||
birthday: 1984-10-12
|
||||
last_chat: 2025-11-14
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company:
|
||||
former_company:
|
||||
- "[[cimt objects AG]]"
|
||||
location: Berlin
|
||||
manager:
|
||||
birthday_check: true
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Danny Smaka
|
||||
N.GN: Danny
|
||||
N.FN: Smaka
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: danny.smaka@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: 1984-10-12
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: 2025-11-14
|
||||
SOCIALPROFILE[LINKEDIN]: https://www.linkedin.com/in/danny-smaka-0868071b7/
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
X-MANAGER: ""
|
||||
UID: urn:uuid:019edcb4af732-4dfb-bf95-7b7af5d3e938
|
||||
X-FORMER-ORG: "[[cimt objects AG]]"
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
## Rollen
|
||||
[[Scrum Master]]
|
||||
|
||||
@@ -54,7 +69,6 @@ list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
>
|
||||
>Ich freue mich darauf, spannende Projekt mit euch zu bestreiten und habe dabei immer ein offenes Ohr für euch!
|
||||
|
||||
|
||||
>[!info]- Abschied
|
||||
>Liebe Cimties,
|
||||
>
|
||||
|
||||
@@ -0,0 +1,46 @@
|
||||
---
|
||||
FN: David Bursch
|
||||
N.GN: David
|
||||
N.FN: Bursch
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: david.bursch@vvv-net.de
|
||||
EMAIL[WORK]: extern-david.bursch@iuk.lst.niedersachsen.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: +49 3379 314741
|
||||
TEL[WORK]: +49 511 101-2911
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Projekt
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
UID: urn:uuid:019f241d1a2f5-4a29-a52a-5c98d5dd553c
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
@@ -1,29 +1,47 @@
|
||||
---
|
||||
name: David Elvers
|
||||
phone: +49 40 533 02-0
|
||||
mobile: +49 1705319625
|
||||
email: david.elvers@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Hamburg
|
||||
manager: "[[Rouven Homann]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: David Elvers
|
||||
N.GN: David
|
||||
N.FN: Elvers
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: +49 170 5319625
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt objects AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: "[[Rouven Homann]]"
|
||||
UID: urn:uuid:019ed5fb90534-49e0-94f8-ef9933f857fd
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
@@ -31,8 +49,15 @@ LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -1,25 +1,43 @@
|
||||
---
|
||||
name: David Fosu
|
||||
phone: +49 211 545907 13
|
||||
email: david.fosu@cimt-ag.de
|
||||
telegram:
|
||||
linkedin: http://www.linkedin.com/in/david-fosu-06833b234
|
||||
xing: https://www.xing.com/profile/David_Fosu/web_profiles
|
||||
birthday:
|
||||
last_chat: 2023-07-21
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company:
|
||||
location: Düsseldorf
|
||||
manager:
|
||||
template: "[[contact-colleague]]"
|
||||
former_company:
|
||||
- "[[cimt technology GmbH]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: David Fosu
|
||||
N.GN: David
|
||||
N.FN: Fosu
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: david.fosu@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 211 545907 13
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: 2023-07-21
|
||||
SOCIALPROFILE[LINKEDIN]: "http://www.linkedin.com/in/david-fosu-06833b234"
|
||||
SOCIALPROFILE[XING]: "https://www.xing.com/profile/David_Fosu/web_profiles"
|
||||
ADR[WORK].LOCALITY: Düsseldorf
|
||||
X-MANAGER: ""
|
||||
UID: urn:uuid:019edfe4bb990-478c-8dda-5e51a18b424c
|
||||
X-FORMER-ORG: "[[cimt technology GmbH]]"
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
|
||||
@@ -1,23 +1,41 @@
|
||||
---
|
||||
name: Delvin Sönmezer
|
||||
phone:
|
||||
email: Delvin.Soenmezer@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Berlin
|
||||
manager: ""
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Delvin Sönmezer
|
||||
N.GN: Delvin
|
||||
N.FN: Sönmezer
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: Delvin.Soenmezer@cimt-ag.de
|
||||
TEL[CELL]:
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt objects AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
X-MANAGER: ""
|
||||
UID: urn:uuid:019edfe94f732-4294-81a9-bc38ee9dc407
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
|
||||
@@ -1,30 +1,49 @@
|
||||
---
|
||||
name: Denis Bieberneit
|
||||
phone: +49 40 53302 302
|
||||
email: denis.bieberneit@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
marriage: 2025-05-09
|
||||
married: "[[Pauline Bieberneit]]"
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Hamburg
|
||||
manager: "[[Sven Landmann]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Denis Bieberneit
|
||||
N.GN: Denis
|
||||
N.FN: Bieberneit
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: denis.bieberneit@cimt-ag.de
|
||||
TEL[CELL]:
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 302
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt objects AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: "[[Sven Landmann]]"
|
||||
X-MARRIED: "[[Pauline Bieberneit]]"
|
||||
X-MARRIAGE: 2025-05-09
|
||||
UID: urn:uuid:019edfede35ee-4d6e-8174-be846bd7ce12
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
@@ -52,3 +71,5 @@ list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
>
|
||||
>Denis
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -1,26 +1,42 @@
|
||||
---
|
||||
name: Denis Urdin
|
||||
phone: +49 40 53302 145
|
||||
email: Denis.Urdin@cimt-ag.de
|
||||
mobile: +49 151 233 71 936
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company:
|
||||
location: Hamburg
|
||||
manager: ""
|
||||
former_company:
|
||||
- "[[cimt consulting AG]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Denis Urdin
|
||||
N.GN: Denis
|
||||
N.FN: Urdin
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: Denis.Urdin@cimt-ag.de
|
||||
TEL[CELL]: +49 151 233 71 936
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 145
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: ""
|
||||
X-FORMER-OR: "[[cimt consulting AG]]"
|
||||
UID: urn:uuid:019edff277369-421f-a10c-fcf5c47e1849
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
|
||||
## Rollen
|
||||
[[SAP Consultant]]
|
||||
|
||||
|
||||
@@ -1,37 +1,51 @@
|
||||
---
|
||||
name: Desiree Gützmann
|
||||
birthname: Königs
|
||||
phone: +49 163 8157145
|
||||
phone_home: +49 33439 180818
|
||||
email:
|
||||
address:
|
||||
street: Ahornstrasse 67
|
||||
city: Fredersdorf
|
||||
code: 15370
|
||||
country: Deutschland
|
||||
telegram:
|
||||
linkedin:
|
||||
birthday: 1973-06-13
|
||||
marriage: 2022-09-10
|
||||
last_chat:
|
||||
friends:
|
||||
married: "[[Jens Grützmann]]"
|
||||
type: contact
|
||||
relationship: freund
|
||||
company:
|
||||
location: Berlin
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Desiree Grützmann
|
||||
N.GN: Desiree
|
||||
N.FN: Grützmann
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: +49 163 8157145
|
||||
TEL[HOME]: +49 33439 180818
|
||||
TEL[WORK]: ""
|
||||
BDAY: 1973-06-13
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: Ahornstrasse 67
|
||||
ADR[HOME].LOCALITY: Fredersdorf
|
||||
ADR[HOME].POSTAL: "15370"
|
||||
ADR[HOME].COUNTRY: Deutschland
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Freund
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
X-MARRIED: "[[Jens Grützmann]]"
|
||||
X-MARRIAGE: 2022-09-10
|
||||
X-BIRTHNAME: Königs
|
||||
UID: urn:uuid:019edff2773c4-4b73-a1f2-f5ed7de2d7d0
|
||||
ADR[HOME].REGION: Brandenburg
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
---
|
||||
FN: Dieter Buchholz
|
||||
N.GN: Dieter
|
||||
N.FN: Buchholz
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: " +49 178 81 20 693"
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: Schwendyweg 6
|
||||
ADR[HOME].LOCALITY: Berlin
|
||||
ADR[HOME].POSTAL: "13587"
|
||||
ADR[HOME].COUNTRY: Deutschland
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
UID: urn:uuid:019f24495a1fe-4a77-8ae1-d273e2abe1f2
|
||||
CATEGORIES:
|
||||
X-RELATIONSHIP: Nachbar
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
---
|
||||
#### Notes
|
||||
|
||||
|
||||
|
||||
#process/contact
|
||||
@@ -1,27 +1,48 @@
|
||||
---
|
||||
name: Dietmar Zabel
|
||||
phone:
|
||||
email:
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Dietmar_Zabel/web_profiles
|
||||
url: http://www.dietmarzabel.de/
|
||||
birthday:
|
||||
last_chat: 2015-10-27
|
||||
friends:
|
||||
type: contact
|
||||
relationship: projekt
|
||||
company: "[[Ethalon]]"
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
tags:
|
||||
- process/contact
|
||||
former_project:
|
||||
- "[[Globe]]"
|
||||
FN: Dietmar Zabel
|
||||
N.GN: Dietmar
|
||||
N.FN: Zabel
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[HOME]: http://www.dietmarzabel.de/
|
||||
ORG: Ethalon
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Projekt
|
||||
X-LAST-CHAT: 2015-10-27
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
SOCIALPROFILE[XING]: https://www.xing.com/profile/Dietmar_Zabel/web_profiles
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
UID: urn:uuid:019ee00032c55-43ce-8626-d14af410faba
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[Ethalon]]
|
||||
|
||||
## Frühere Projekte
|
||||
- [[Globe]]
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
@@ -29,5 +50,5 @@ LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
gemeinsam im Projekt Globe bei Hamburg Süd???
|
||||
|
||||
gemeinsam im Projekt Globe bei Hamburg Süd???
|
||||
|
||||
@@ -1,29 +1,49 @@
|
||||
---
|
||||
name: Dietrich Firneisen
|
||||
phone:
|
||||
mobile: +49 152 5276 2548
|
||||
email:
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat: 2025-09-13
|
||||
friends: "[[Christa Stelter]]"
|
||||
type: contact
|
||||
created: 2025-09-15 16:58
|
||||
updated: 2025-09-15
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Dietrich Firneisen
|
||||
N.GN: Dietrich
|
||||
N.FN: Firneisen
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: +49 152 5276 2548
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Familie
|
||||
X-LAST-CHAT: 2025-09-13
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
UID: urn:uuid:019ee00032b73-406c-bc87-a64fbc3f76cc
|
||||
NICKNAME: Dieter
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
## Freunde
|
||||
- [[Christa Stelter]]
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
|
||||
@@ -1,30 +1,50 @@
|
||||
---
|
||||
name: Dirk Buschek
|
||||
phone: +49 179-1412464
|
||||
email: dirk.buschek@its-people.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Dirk_Buschek/cv
|
||||
birthday: 1970-12-06
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company: "[[Deutsche Bahn AG]]"
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
former_company:
|
||||
- "[[DB Netz AG]]"
|
||||
former_shareholder:
|
||||
- "[[its-people GmbH]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Dirk Buschek
|
||||
N.GN: Dirk
|
||||
N.FN: Buschek
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: dirk.buschek@its-people.de
|
||||
TEL[CELL]: +49 179-1412464
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: 1970-12-06
|
||||
URL[WORK]: ""
|
||||
ORG: Deutsche Bahn AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
SOCIALPROFILE[XING]: https://www.xing.com/profile/Dirk_Buschek/cv
|
||||
X-FORMER-ORG: "[[DB Netz AG]]"
|
||||
UID: urn:uuid:019ee0923b048-4f2c-a434-ac25e0315b91
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[Deutsche Bahn AG]]
|
||||
|
||||
## Früherer Gesellschafter
|
||||
- [[its-people GmbH]]
|
||||
-
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
|
||||
@@ -1,29 +1,47 @@
|
||||
---
|
||||
name: Dominik Sobolewski
|
||||
phone: +49 221 / 367 986 -0
|
||||
email: dominik.sobolewski@cimt-ag.de
|
||||
mobile: +49 151 18006683
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt services AG]]"
|
||||
location: Köln
|
||||
manager: ""
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Dominik Sobolewski
|
||||
N.GN: Dominik
|
||||
N.FN: Sobolewski
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: dominik.sobolewski@cimt-ag.de
|
||||
TEL[CELL]: +49 151 18006683
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 221 / 367 986 -0
|
||||
BDAY:
|
||||
URL[WORK]: ""
|
||||
ORG: cimt services AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT:
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Köln
|
||||
X-MANAGER: ""
|
||||
UID: urn:uuid:019ee096cee4b-4df7-b8ad-8dd394b41edc
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt services AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
@@ -36,3 +54,8 @@ list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -1,28 +1,47 @@
|
||||
---
|
||||
name: Dominik Zuchelkowski
|
||||
phone: +49 40 53302 233
|
||||
email: dominik.zuchelkowski@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt consulting AG]]"
|
||||
location: Hamburg
|
||||
manager: ""
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Dominik Zuchelkowski
|
||||
N.GN: Dominik
|
||||
N.FN: Zuchelkowski
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: dominik.zuchelkowski@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 233
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: cimt consulting AG
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-MANAGER: ""
|
||||
UID: urn:uuid:019ee0572bfe0-4b00-8c9c-f12b71ff0d82
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt consulting AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
@@ -56,3 +75,5 @@ list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
>
|
||||
>Dominik
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
@@ -1,28 +1,47 @@
|
||||
---
|
||||
name: Juliane Bodo
|
||||
salutation: Dr.
|
||||
phone:
|
||||
telegram:
|
||||
linkedin:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relatinoship: arzt
|
||||
company: "[[Plastethics GmbH]]"
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Dr Juliane Bodo
|
||||
N.GN: Juliane
|
||||
N.FN: Bodo
|
||||
N.PREFIX: Dr.
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY:
|
||||
URL[WORK]: ""
|
||||
ORG: Plastethics GmbH
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Arzt
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
UID: urn:uuid:019eff45243d4-4a9a-a396-9d208d27e589
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[Plastethics GmbH]]
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
|
||||
|
||||
@@ -1,29 +1,46 @@
|
||||
---
|
||||
name: Andres de Roux
|
||||
salutation: Dr. med.
|
||||
phone:
|
||||
email:
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
created: 2024-04-05 14:25
|
||||
updated: 2024-04-05
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
company: "[[Pneumologische Praxis am Schloss Charlottenburg]]"
|
||||
location: Berlin
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Dr. med. Andrés de Roux
|
||||
N.GN: Andrés
|
||||
N.FN: de Roux
|
||||
N.PREFIX: Dr. med.
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: "null"
|
||||
URL[WORK]: ""
|
||||
ORG: Pneumologische Praxis am Schloss Charlottenburg
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Arzt
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
UID: urn:uuid:019ee044dc8e2-4e4b-8579-472bcafb5540
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[Pneumologische Praxis am Schloss Charlottenburg]]
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
|
||||
@@ -1,25 +1,47 @@
|
||||
---
|
||||
name: Edgar Riegger
|
||||
phone:
|
||||
email: Edgar.Riegger@exasol.com
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: projekt
|
||||
created: 2024-03-27 08:49
|
||||
updated: 2024-03-27
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Edgar Riegger
|
||||
N.GN: Edgar
|
||||
N.FN: Riegger
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: Edgar.Riegger@exasol.com
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Projekt
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: ""
|
||||
X-MANAGER: ""
|
||||
UID: urn:uuid:019eff45242c3-4153-87df-2700523f18e2
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
@@ -27,3 +49,8 @@ LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
>[!info]- Vorstellung
|
||||
>
|
||||
|
||||
>[!info]- Abschied
|
||||
>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user