Compare commits
26 Commits
369830744f
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
| f6c8ad71f4 | |||
| 7ffe4f0ca7 | |||
| a898474282 | |||
| da37f0d337 | |||
| d6576db1b3 | |||
| 5f72a1222b | |||
| 34209ff034 | |||
| 8866801570 | |||
| 91d92cbf4a | |||
| 2577fc70c4 | |||
| 5be0d002a9 | |||
| f46f4ac4c3 | |||
| ca758c9aa3 | |||
| 9b432ce8ae | |||
| 9293fbc827 | |||
| fa0abc95d4 | |||
| 8ef993cfa4 | |||
| d987f442d0 | |||
| 9529d259fc | |||
| 23c3dcf98c | |||
| 07fa833514 | |||
| 4eddfd5861 | |||
| e009d938f8 | |||
| 36bf746c3a | |||
| d0fe9e15aa | |||
| 7f2fb0d1e0 |
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
+2
-2
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"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",
|
||||
"authorUrl": "https://github.com/erikars",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
}
|
||||
+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
+2
-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,30 +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"
|
||||
```
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
---
|
||||
status: Backlog
|
||||
tags:
|
||||
- process/task
|
||||
|
||||
---
|
||||
|
||||
> [!task]+
|
||||
> Project::
|
||||
> Bar:: `$= dv.view('total-progress-bar', {file: "Installation Booklore"})`
|
||||
|
||||
## Aufgabenbeschreibung
|
||||
|
||||
## Überlegungen
|
||||
|
||||
## Unteraufgaben
|
||||
|
||||
- [ ] Installation Booklore [start:: 2026-02-23] [scheduled:: 2026-05-05]
|
||||
@@ -1,21 +0,0 @@
|
||||
---
|
||||
tags:
|
||||
- process/task
|
||||
subtitle: Confluence
|
||||
---
|
||||
## Project Info
|
||||
|
||||
## Thoughts
|
||||
|
||||
## Resources
|
||||
|
||||
|
||||
## Review questions
|
||||
|
||||
|
||||
## Aufgaben
|
||||
- [ ] Confluence Seiten überprpüft [scheduled:: 2026-06-05]
|
||||
- [ ] Apache Servicemix Confluence Seite erstellen [scheduled:: 2026-06-05]
|
||||
- [ ] Apache Camel Karavan Confluence Seite erstellen [scheduled:: 2026-06-05]
|
||||
- [ ] Spring Boot mit Camel Confluence Seite erstellen [scheduled:: 2026-06-05]
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
---
|
||||
status: Archiv
|
||||
tags:
|
||||
- process/task
|
||||
|
||||
---
|
||||
|
||||
> [!task]+
|
||||
> Project:: [[Tibuci]]
|
||||
> Bar:: `$= dv.view('total-progress-bar', {file: "Dokumentation auf Stand bringen"})`
|
||||
|
||||
## Aufgabenbeschreibung
|
||||
|
||||
Übertragung des PDF in Confluence
|
||||
|
||||
## Überlegungen
|
||||
|
||||
## Unteraufgaben
|
||||
|
||||
- [x] Dokumentation auf Stand bringen [start:: 2026-01-15] [due:: 2026-01-16] [completion:: 2026-01-15]
|
||||
@@ -1,19 +0,0 @@
|
||||
---
|
||||
status: Backlog
|
||||
tags:
|
||||
- process/task
|
||||
|
||||
---
|
||||
|
||||
> [!task]+
|
||||
> Project:: [[Maintenance der cimt-Talend-Komponenten übernehmen]]
|
||||
> Bar:: `$= dv.view('total-progress-bar', {file: "Erste Komponenten auf neues SDK umgestellt"})`
|
||||
|
||||
## Aufgabenbeschreibung
|
||||
|
||||
## Überlegungen
|
||||
|
||||
## Unteraufgaben
|
||||
|
||||
- [ ] Erste Komponenten auf neues SDK umgestellt [start:: 2026-06-08] [due:: 2026-09-30]
|
||||
- [ ] Umgestellte Komponenten laufen beim Kunden [start:: 2026-06-08]
|
||||
@@ -1,23 +0,0 @@
|
||||
---
|
||||
status: In Arbeit
|
||||
tags:
|
||||
- process/task
|
||||
|
||||
---
|
||||
|
||||
> [!task]+
|
||||
> Project:: [[Tibuci]]
|
||||
> Bar:: `$= dv.view('total-progress-bar', {file: "Google Cloud Projekt für Tibuci aufsetzen"})`
|
||||
|
||||
## Aufgabenbeschreibung
|
||||
|
||||
## Überlegungen
|
||||
|
||||
## Unteraufgaben
|
||||
|
||||
- [x] Google Cloud Projekt für Tibuci aufsetzen #process/task [start:: 2026-02-26] [scheduled:: 2026-03-05] [completion:: 2026-03-05]
|
||||
- [x] [[Frank Füllbier]] um Erzeugung des Projektes gebeten [start:: 2026-02-27] [scheduled:: 2026-03-05] [completion:: 2026-03-05]
|
||||
- [x] GCP Container Registry für Tibuci aktivieren #process/task [start:: 2026-02-26] [scheduled:: 2026-03-09] [completion:: 2026-03-09]
|
||||
- [x] Bestehendes Image roars-report:0.0.1 in Container Registry ablegen #process/task [start:: 2026-02-26] [scheduled:: 2026-03-09] [completion:: 2026-03-09]
|
||||
- [ ] Laden des Image roars-report aus Container Registry #process/task [start:: 2026-02-26] [scheduled:: 2026-06-04]
|
||||
- [x] Erstellen von Service-Accounts für Zugriff auf Google Artifact Registry [start:: 2026-02-26] [scheduled:: 2026-04-02] [completion:: 2026-04-02]
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
tags:
|
||||
- process/task
|
||||
---
|
||||
|
||||
> [!task]+
|
||||
> Project:: [[Tibuci]]
|
||||
> Bar:: `$= dv.view('total-progress-bar', {file: "Kleines Übergabe-Planning"})`
|
||||
|
||||
## Aufgabenbeschreibung
|
||||
|
||||
## Überlegungen
|
||||
|
||||
## Unteraufgaben
|
||||
|
||||
- [ ] Kleines Übergabe-Planning
|
||||
@@ -1,17 +0,0 @@
|
||||
---
|
||||
status: Backlog
|
||||
tags:
|
||||
- process/task
|
||||
|
||||
---
|
||||
> [!task]+
|
||||
> Project:: [[Maintenance der cimt-Talend-Komponenten übernehmen]]
|
||||
> Bar:: `$= dv.view('total-progress-bar', {file: "Umfang klären und Developmentplan aufstellen"})`
|
||||
|
||||
## Aufgabenbeschreibung
|
||||
|
||||
## Überlegungen
|
||||
|
||||
## Unteraufgaben
|
||||
|
||||
- [ ] Umfang klären und Developmentplan aufstellen [start:: 2026-06-08] [due:: 2026-06-30]
|
||||
@@ -4,7 +4,7 @@ tags:
|
||||
---
|
||||
## Team
|
||||
```dataview
|
||||
TABLE location AS Standort
|
||||
TABLE ADR[WORK].LOCALITY AS Standort
|
||||
FROM [[]] AND !outgoing([[]]) AND "Infos/Kontakte"
|
||||
SORT file.name DESC
|
||||
LIMIT 20
|
||||
|
||||
@@ -1,41 +0,0 @@
|
||||
---
|
||||
tags:
|
||||
- process/task
|
||||
reference:
|
||||
- "[[Back Shop TK GmbH]]"
|
||||
---
|
||||
## Aufgabenbeschreibung
|
||||
|
||||
## Überlegungen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
SORT file.name DESC
|
||||
LIMIT 20
|
||||
```
|
||||
## Unteraufgaben
|
||||
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [start:: 2026-03-16] [scheduled:: 2026-03-16] [completion:: 2026-03-16]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [start:: 2026-03-19] [scheduled:: 2026-03-19] [completion:: 2026-03-19]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [start:: 2026-03-23] [scheduled:: 2026-03-23] [completion:: 2026-03-23]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [start:: 2026-03-30] [scheduled:: 2026-03-30] [completion:: 2026-03-31]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [created:: 2026-03-31] [start:: 2026-04-02] [scheduled:: 2026-04-02] [completion:: 2026-04-02]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [created:: 2026-04-02] [start:: 2026-04-06] [scheduled:: 2026-04-07] [completion:: 2026-04-07]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [created:: 2026-04-07] [start:: 2026-04-09] [scheduled:: 2026-04-09] [completion:: 2026-04-09]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [created:: 2026-04-09] [start:: 2026-04-13] [scheduled:: 2026-04-13] [completion:: 2026-04-27]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [created:: 2026-04-27] [start:: 2026-04-16] [scheduled:: 2026-04-16] [completion:: 2026-04-27]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [created:: 2026-04-27] [start:: 2026-04-20] [scheduled:: 2026-04-20] [completion:: 2026-04-27]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [created:: 2026-04-27] [start:: 2026-04-23] [scheduled:: 2026-04-23] [completion:: 2026-04-27]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [created:: 2026-04-27] [start:: 2026-04-27] [scheduled:: 2026-04-27] [completion:: 2026-04-27]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [created:: 2026-04-27] [start:: 2026-04-30] [scheduled:: 2026-05-04] [completion:: 2026-05-04]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [created:: 2026-05-04] [start:: 2026-05-03] [scheduled:: 2026-05-07] [completion:: 2026-05-07]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [created:: 2026-05-07] [start:: 2026-05-07] [scheduled:: 2026-05-11] [completion:: 2026-05-11]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [created:: 2026-05-11] [start:: 2026-05-10] [scheduled:: 2026-05-14] [completion:: 2026-05-21]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [created:: 2026-05-21] [start:: 2026-05-14] [scheduled:: 2026-05-18] [completion:: 2026-05-21]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [created:: 2026-05-21] [start:: 2026-05-17] [scheduled:: 2026-05-21] [completion:: 2026-05-21]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [created:: 2026-05-21] [start:: 2026-05-21] [scheduled:: 2026-05-25] [completion:: 2026-05-21]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [created:: 2026-05-21] [start:: 2026-05-24] [scheduled:: 2026-05-28] [completion:: 2026-05-26]
|
||||
- [x] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [created:: 2026-05-26] [start:: 2026-05-28] [scheduled:: 2026-06-01] [completion:: 2026-06-01]
|
||||
- [ ] Backshop Outtasking SOBS Oracle Datenbank [repeat:: every week on Monday, Thursday] [created:: 2026-06-01] [start:: 2026-05-31] [scheduled:: 2026-06-04]
|
||||
@@ -1,42 +0,0 @@
|
||||
---
|
||||
tags:
|
||||
- process/task
|
||||
reference:
|
||||
- "[[Harry Brot GmbH]]"
|
||||
---
|
||||
## Aufgabenbeschreibung
|
||||
|
||||
## Überlegungen
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
SORT file.name DESC
|
||||
LIMIT 20
|
||||
```
|
||||
|
||||
## Unteraufgaben
|
||||
|
||||
- [x] Harry Brot Outtasking Datenbanken [start:: 2026-03-16] [scheduled:: 2026-03-16] [completion:: 2026-03-16]
|
||||
- [x] Harry Brot Outtasking Datenbanken [start:: 2026-03-19] [scheduled:: 2026-03-19] [completion:: 2026-03-19]
|
||||
- [x] Harry Brot Outtasking Datenbanken [start:: 2026-03-23] [scheduled:: 2026-03-23] [completion:: 2026-03-23]
|
||||
- [x] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [start:: 2026-03-30] [scheduled:: 2026-03-30] [completion:: 2026-03-31]
|
||||
- [x] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [created:: 2026-03-31] [start:: 2026-04-02] [scheduled:: 2026-04-02] [completion:: 2026-04-02]
|
||||
- [x] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [created:: 2026-04-02] [start:: 2026-04-06] [scheduled:: 2026-04-07] [completion:: 2026-04-07]
|
||||
- [x] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [created:: 2026-04-02] [start:: 2026-04-09] [scheduled:: 2026-04-09] [completion:: 2026-04-09]
|
||||
- [x] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [created:: 2026-04-09] [start:: 2026-04-13] [scheduled:: 2026-04-13] [completion:: 2026-04-27]
|
||||
- [x] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [created:: 2026-04-27] [start:: 2026-04-16] [scheduled:: 2026-04-16] [completion:: 2026-04-27]
|
||||
- [x] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [created:: 2026-04-27] [start:: 2026-04-20] [scheduled:: 2026-04-20] [completion:: 2026-04-27]
|
||||
- [x] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [created:: 2026-04-27] [start:: 2026-04-23] [scheduled:: 2026-04-23] [completion:: 2026-04-27]
|
||||
- [x] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [created:: 2026-04-27] [start:: 2026-04-27] [scheduled:: 2026-04-27] [completion:: 2026-04-27]
|
||||
- [x] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [created:: 2026-04-27] [start:: 2026-04-30] [scheduled:: 2026-05-04] [completion:: 2026-05-04]
|
||||
- [x] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [created:: 2026-05-04] [start:: 2026-05-03] [scheduled:: 2026-05-07] [completion:: 2026-05-07]
|
||||
- [x] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [created:: 2026-05-07] [start:: 2026-05-07] [scheduled:: 2026-05-11] [completion:: 2026-05-11]
|
||||
- [x] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [created:: 2026-05-11] [start:: 2026-05-10] [scheduled:: 2026-05-14] [completion:: 2026-05-21]
|
||||
- [x] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [created:: 2026-05-21] [start:: 2026-05-14] [scheduled:: 2026-05-18] [completion:: 2026-05-21]
|
||||
- [x] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [created:: 2026-05-21] [start:: 2026-05-17] [scheduled:: 2026-05-21] [completion:: 2026-05-21]
|
||||
- [x] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [created:: 2026-05-21] [start:: 2026-05-21] [scheduled:: 2026-05-25] [completion:: 2026-05-21]
|
||||
- [x] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [created:: 2026-05-21] [start:: 2026-05-24] [scheduled:: 2026-05-28] [completion:: 2026-05-26]
|
||||
- [x] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [created:: 2026-05-26] [start:: 2026-05-28] [scheduled:: 2026-06-01] [completion:: 2026-06-01]
|
||||
- [ ] Harry Brot Outtasking Datenbanken [repeat:: every week on Monday, Thursday] [created:: 2026-06-01] [start:: 2026-05-31] [scheduled:: 2026-06-04]
|
||||
@@ -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]
|
||||
|
||||
@@ -1,19 +0,0 @@
|
||||
---
|
||||
tags:
|
||||
- process/task
|
||||
---
|
||||
|
||||
> [!task]+
|
||||
> Project:: [[Managed Services Team]], [[Einarbeitung Managed Services Team]], [[Cosnova]]
|
||||
> Bar:: `$= dv.view('total-progress-bar', {file: "Persönlicher Cosnova Account eingerichtet"})`
|
||||
|
||||
## Aufgabenbeschreibung
|
||||
|
||||
## Überlegungen
|
||||
|
||||
## Unteraufgaben
|
||||
|
||||
- [x] Persönlicher Cosnova Account eingerichtet [start:: 2026-02-19] [due:: 2026-03-02] [completion:: 2026-02-27]
|
||||
- [x] [[Marcus Lipski]] hat Account angefragt [start:: 2026-02-26] [due:: 2026-03-03] [completion:: 2026-02-27]
|
||||
- [x] Cosnova Account eingerichtet #process/task [start:: 2026-02-19] [scheduled:: 2026-03-03] [completion:: 2026-03-03]
|
||||
- [x] MFA für Cosnova eingerichtet #process/task [start:: 2026-02-19] [completion:: 2026-03-03]
|
||||
-14
@@ -1,14 +0,0 @@
|
||||
---
|
||||
tags:
|
||||
- process/task
|
||||
reference:
|
||||
- "[[BIG KAISER Präzisionswerkzeuge AG]]"
|
||||
---
|
||||
## Aufgabenbeschreibung
|
||||
|
||||
## Überlegungen
|
||||
|
||||
## Unteraufgaben
|
||||
|
||||
- [x] Ubuntu Kong API GW - Erneuerung des SSL Zertifikats [start:: 2026-03-13] [scheduled:: 2026-03-13] [completion:: 2026-03-13]
|
||||
- [ ] Erneuerung des SSL Zertifikats [due:: 2026-06-11] [start:: 2026-06-04] [scheduled:: 2026-06-04]
|
||||
@@ -1,25 +0,0 @@
|
||||
---
|
||||
tags:
|
||||
- process/task
|
||||
---
|
||||
|
||||
> [!task]+
|
||||
> Project:: [[Managed Services Team]], [[Einarbeitung Managed Services Team]], [[TDK Electronics Group]]
|
||||
> Bar:: `$= dv.view('total-progress-bar', {file: "Zugang TDK eingerichtet"})`
|
||||
|
||||
## Aufgabenbeschreibung
|
||||
Zugang zum Kunden TDK eingerichtet
|
||||
|
||||
### Infos
|
||||
- [Ticket#20260219770200](https://cimt-objects.zammad.com/#ticket/zoom/107587): Verstärkung im Team Managed Service der cimt
|
||||
- https://cimtag.atlassian.net/wiki/spaces/CO/pages/1628667905/TDK+Outtasking+Tableau-Server#Systemzugang
|
||||
|
||||
|
||||
## Überlegungen
|
||||
|
||||
## Unteraufgaben
|
||||
|
||||
- [x] Zugang TDK eingerichtet [start:: 2026-02-23] [due:: 2026-02-27] [completion:: 2026-02-24]
|
||||
- [x] Rückruf TDK Servicedesk [start:: 2026-02-23] [due:: 2026-02-27] [completion:: 2026-02-24]
|
||||
- [x] Problem mit Login dem TDK Servicedesk gemeldet [start:: 2026-02-24] [scheduled:: 2026-02-25] [completion:: 2026-02-25] #process/task
|
||||
- [x] Berechtigungen für Citrix Workspace erhalten #process/task [start:: 2026-02-25] [scheduled:: 2026-03-06] [due:: 2026-02-27] [completion:: 2026-03-06]
|
||||
@@ -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
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
---
|
||||
status: Backlog
|
||||
tags:
|
||||
- process/task
|
||||
---
|
||||
%%
|
||||
Project::
|
||||
Bar:: `$= dv.view('total-progress-bar', {file: "Artikel über Software Resilizenz schreiben"})`
|
||||
%%
|
||||
## Aufgabenbeschreibung
|
||||
|
||||
Der Artikel beschäftigt sich mit der Frage, wie Software geschrieben werden kann, die resilient gegenüber Fehlern und Problemen ist. Probleme können unter anderem Netzwerkprobleme beim Ausruf eines Webservice sein.
|
||||
|
||||
Als Beispiel können die Fehlerbereinigungs-Routen beim Kunden Hagebau dienen.
|
||||
|
||||
## Überlegungen
|
||||
|
||||
## Unteraufgaben
|
||||
|
||||
- [ ] Artikel über Software Resilizenz schreiben [start:: 2026-06-08]
|
||||
@@ -1,58 +0,0 @@
|
||||
---
|
||||
status: Aktiv
|
||||
tags:
|
||||
- process/project
|
||||
subtitle: Maintenance der cimt-Talend-Komponenten übernehmen
|
||||
|
||||
---
|
||||
> [!abstract]- Project
|
||||
> Goal:: [[Journal/cimt AG/2026|2026]]
|
||||
> Progress:: `$= dv.view('project-progress', {file: 'Maintenance der cimt-Talend-Komponenten übernehmen'})`
|
||||
> Target:: `$= dv.view('project-target', {file: 'Maintenance der cimt-Talend-Komponenten übernehmen'})`
|
||||
> Bar:: `$= dv.view('project-progress-bar', {file: 'Maintenance der cimt-Talend-Komponenten übernehmen'})`
|
||||
> Tasks:: `$= const aufgaben = dv.page('Maintenance der cimt-Talend-Komponenten übernehmen').file.inlinks.where(t => { const mt = dv.page(t.path); return mt.tags?.includes('process/task') && mt.status === 'In Arbeit'}); if (aufgaben.length > 0) { dv.header(4, aufgaben.length > 1 ? "Aufgaben" : "Aufgabe"); dv.list(aufgaben) }`
|
||||
|
||||
## Project Info
|
||||
|
||||
## Thoughts
|
||||
|
||||
## Resources
|
||||
|
||||
|
||||
## Review questions
|
||||
|
||||
|
||||
## Aufgaben
|
||||
|
||||
|
||||
## Offene Aufgaben
|
||||
```dataviewjs
|
||||
const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/task')).where(p => dv.page(p.path).file.tasks.length != dv.page(p.path).file.tasks.where(t => t.fullyCompleted === true).length);
|
||||
|
||||
dv.table(["Project", "Status", "Completed", "Tasks"], pages.map(p => {
|
||||
const page = dv.page(p.path);
|
||||
const tasks = page.file.tasks;
|
||||
return [
|
||||
page.file.link,
|
||||
page.status,
|
||||
tasks.where(t => t.fullyCompleted === true).length,
|
||||
tasks.length
|
||||
]
|
||||
}));
|
||||
```
|
||||
|
||||
## Aufgaben
|
||||
```dataviewjs
|
||||
const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/task'));
|
||||
|
||||
dv.table(["Project", "Status", "Completed", "Tasks"], pages.map(p => {
|
||||
const page = dv.page(p.path);
|
||||
const tasks = page.file.tasks;
|
||||
return [
|
||||
page.file.link,
|
||||
page.status,
|
||||
tasks.where(t => t.fullyCompleted === true).length,
|
||||
tasks.length
|
||||
]
|
||||
}));
|
||||
```
|
||||
@@ -39,8 +39,6 @@ CouchDB Testumgebung
|
||||
|
||||
|
||||
## Aufgaben
|
||||
- [x] Ersetzen von Docker mit podman auf bervl1prr #process/task [start:: 2026-02-02] [scheduled:: 2026-02-16] [completion:: 2026-02-16]
|
||||
- [ ] Anwesenheitsbericht Dokumentation erstellen #process/task [scheduled:: 2026-06-08]
|
||||
|
||||
## Offene Aufgaben
|
||||
```dataviewjs
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
>
|
||||
|
||||
@@ -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"
|
||||
```
|
||||
|
||||
|
||||
@@ -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
|
||||
>
|
||||
|
||||
@@ -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"
|
||||
```
|
||||
|
||||
|
||||
@@ -1,23 +1,45 @@
|
||||
---
|
||||
name: Bastian Liesigk
|
||||
phone: +49 30 834098 10
|
||||
email: bastian.liesigk@cimt-ag.de
|
||||
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: Bastian Liesigk
|
||||
N.GN: Bastian
|
||||
N.FN: Liesigk
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: bastian.liesigk@cimt-ag.de
|
||||
TEL[CELL]: +49 170 1234567
|
||||
TEL[MANAGEDSERVICE]: +49 160 96067408
|
||||
TEL[WORK]: +49 30 834098 10
|
||||
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:019ed22a22ed5-45c4-b55a-3e3a90d81403
|
||||
X-MANAGER: "[[Oliver Fromm]]"
|
||||
ADR[WORK].STREET: Bundesallee 39-40a
|
||||
ADR[WORK].POSTAL: "10717"
|
||||
ADR[WORK].COUNTRY: Deutschland
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
#process/contact/check
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
[[Managed Services Team]]
|
||||
|
||||
|
||||
@@ -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
|
||||
>
|
||||
|
||||
@@ -1,23 +1,46 @@
|
||||
---
|
||||
name: Christian Kiltz
|
||||
phone: +49 30 834098 10
|
||||
email: christian.kiltz@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Christian_Kiltz/cv
|
||||
birthday: 1970-07-19
|
||||
last_chat: 2025-09-27
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Berlin
|
||||
manager: "[[Oliver Fromm]]"
|
||||
template: "[[contact-colleague]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Christian Kiltz
|
||||
N.GN: Christian
|
||||
N.FN: Kiltz
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: christian.kiltz@cimt-ag.de
|
||||
TEL[CELL]: +49 170 1234567
|
||||
TEL[MANAGEDSERVICE]: +49 160 96058527
|
||||
TEL[WORK]: +49 30 834098 10
|
||||
BDAY: 1970-07-19
|
||||
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: ""
|
||||
X-LAST-CHAT: ""
|
||||
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
|
||||
|
||||
#process/contact
|
||||
#process/contact/check
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
[[Managed Services Team]]
|
||||
|
||||
|
||||
@@ -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
|
||||
>
|
||||
|
||||
@@ -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
|
||||
>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user