vault backup: 2026-06-16 18:30:31
This commit is contained in:
Vendored
+2
-2
@@ -23,9 +23,9 @@
|
||||
"find-unlinked-files",
|
||||
"contribution-graph",
|
||||
"datacore",
|
||||
"friend-tracker",
|
||||
"desk",
|
||||
"external-file-embed-and-link",
|
||||
"obsidian-kanban",
|
||||
"task-list-kanban"
|
||||
"task-list-kanban",
|
||||
"vcf-contacts"
|
||||
]
|
||||
-20
@@ -1,20 +0,0 @@
|
||||
{
|
||||
"contactsFolder": "Infos/Kontakte",
|
||||
"defaultSortColumn": "daysUntilBirthday",
|
||||
"defaultSortDirection": "asc",
|
||||
"relationshipTypes": [
|
||||
"familie",
|
||||
"freund",
|
||||
"kollege",
|
||||
"kommilitone",
|
||||
"projekt",
|
||||
"recruiter",
|
||||
"schule",
|
||||
"bewerbung",
|
||||
"thw",
|
||||
"arzt",
|
||||
"kol",
|
||||
"nachbar"
|
||||
],
|
||||
"defaultActiveTab": "interactions"
|
||||
}
|
||||
-11
File diff suppressed because one or more lines are too long
-10
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"id": "friend-tracker",
|
||||
"name": "Friend Tracker",
|
||||
"version": "1.3.3",
|
||||
"minAppVersion": "1.4.14",
|
||||
"description": "Keep track of friends, birthdays, reminders, and interactions in Obsidian. Build a personal CRM, log connections, and stay organized inside your vault.",
|
||||
"author": "Dan Au",
|
||||
"authorUrl": "https://dausign.com",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
-1135
File diff suppressed because it is too large
Load Diff
+147
-147
File diff suppressed because one or more lines are too long
+1
-1
@@ -6,5 +6,5 @@
|
||||
"description": "Integrate Git version control with automatic backup and other advanced features.",
|
||||
"isDesktopOnly": false,
|
||||
"fundingUrl": "https://ko-fi.com/vinzent",
|
||||
"version": "2.38.3"
|
||||
"version": "2.38.5"
|
||||
}
|
||||
|
||||
+81
-72
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.0.0",
|
||||
"version": "8.2.1",
|
||||
"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/",
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+3
-2
@@ -698,7 +698,7 @@
|
||||
"devMode": false,
|
||||
"templateFolderPath": "Resources/Templates",
|
||||
"announceUpdates": "all",
|
||||
"version": "2.12.2",
|
||||
"version": "2.12.3",
|
||||
"globalVariables": {},
|
||||
"onePageInputEnabled": false,
|
||||
"disableOnlineFeatures": true,
|
||||
@@ -773,7 +773,8 @@
|
||||
"setProviderModelDiscoveryMode": true,
|
||||
"backfillFileOpeningDefaults": true,
|
||||
"migrateProviderApiKeysToSecretStorage": true,
|
||||
"consolidateFileExistsBehavior": true
|
||||
"consolidateFileExistsBehavior": true,
|
||||
"repairTemplateFileExistsBehavior": true
|
||||
},
|
||||
"macros": []
|
||||
}
|
||||
Vendored
+43
-43
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "quickadd",
|
||||
"name": "QuickAdd",
|
||||
"version": "2.12.2",
|
||||
"version": "2.12.3",
|
||||
"minAppVersion": "1.11.4",
|
||||
"description": "Quickly add new pages or content to your vault.",
|
||||
"author": "Christian B. B. Houmann",
|
||||
|
||||
+9398
-5279
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "task-list-kanban",
|
||||
"name": "Task List Kanban",
|
||||
"version": "1.11.0",
|
||||
"version": "2.3.1",
|
||||
"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",
|
||||
|
||||
+285
-34
@@ -25,8 +25,8 @@ If your plugin does not need CSS, delete this file.
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
width: min(860px, calc(100vw - 48px));
|
||||
max-width: 860px;
|
||||
width: min(1120px, calc(100vw - 48px));
|
||||
max-width: 1120px;
|
||||
}
|
||||
|
||||
.task-list-kanban-settings-modal {
|
||||
@@ -38,11 +38,10 @@ If your plugin does not need CSS, delete this file.
|
||||
|
||||
.settings-scroll-wrapper {
|
||||
flex: 1;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
min-height: 0;
|
||||
padding-bottom: 8px;
|
||||
padding-right: 2px;
|
||||
}
|
||||
|
||||
/* Settings header */
|
||||
@@ -50,7 +49,9 @@ If your plugin does not need CSS, delete this file.
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
margin-bottom: 18px;
|
||||
padding-bottom: 14px;
|
||||
margin-bottom: 0;
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.settings-header h1 {
|
||||
@@ -112,21 +113,113 @@ If your plugin does not need CSS, delete this file.
|
||||
border-top: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.task-list-kanban-confirm-modal {
|
||||
min-width: min(420px, calc(100vw - 64px));
|
||||
}
|
||||
|
||||
.task-list-kanban-confirm-modal h2 {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.confirm-modal-actions {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
gap: 8px;
|
||||
margin-top: 18px;
|
||||
}
|
||||
|
||||
.settings-body {
|
||||
display: grid;
|
||||
grid-template-columns: 180px minmax(0, 1fr);
|
||||
gap: 24px;
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
padding-top: 18px;
|
||||
}
|
||||
|
||||
.settings-nav {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
padding: 2px 0 12px;
|
||||
overflow-y: auto;
|
||||
min-height: 0;
|
||||
border-right: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.settings-nav button {
|
||||
justify-content: flex-start;
|
||||
width: calc(100% - 14px);
|
||||
height: auto;
|
||||
min-height: 32px;
|
||||
padding: 6px 10px;
|
||||
border-radius: var(--radius-s);
|
||||
color: var(--text-muted);
|
||||
background: transparent;
|
||||
box-shadow: none;
|
||||
font-size: var(--font-ui-small);
|
||||
font-weight: 600;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.settings-nav button:hover,
|
||||
.settings-nav button:focus-visible {
|
||||
color: var(--text-normal);
|
||||
background: var(--background-modifier-hover);
|
||||
}
|
||||
|
||||
.settings-content {
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
min-height: 0;
|
||||
padding: 0 2px 12px 0;
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
.settings-section {
|
||||
padding-bottom: 22px;
|
||||
scroll-margin-top: 10px;
|
||||
}
|
||||
|
||||
.settings-section + .settings-section {
|
||||
padding-top: 20px;
|
||||
border-top: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.settings-section-header {
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
|
||||
.settings-section-header h2 {
|
||||
margin: 0 0 4px;
|
||||
font-size: 1.35em;
|
||||
}
|
||||
|
||||
.settings-section-header .setting-item-description {
|
||||
margin: 0;
|
||||
max-width: 760px;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.settings-section-body > .setting-item:first-child {
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
.settings-subsection {
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
/* Column editor layout */
|
||||
.column-editor-section {
|
||||
margin-bottom: 20px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.column-editor-intro {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 2;
|
||||
padding: 0 0 10px;
|
||||
background: linear-gradient(to bottom, var(--background-primary) 0%, var(--background-primary) 82%, transparent 100%);
|
||||
}
|
||||
|
||||
.column-editor-intro h2 {
|
||||
margin-bottom: 4px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.column-editor-intro .setting-item-description {
|
||||
@@ -134,39 +227,58 @@ 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;
|
||||
font-size: var(--font-ui-smaller);
|
||||
}
|
||||
|
||||
.column-editor-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-top: 12px;
|
||||
border-top: 1px solid var(--background-modifier-border);
|
||||
gap: 6px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.column-editor-row {
|
||||
display: flex;
|
||||
position: relative;
|
||||
align-items: center;
|
||||
align-items: flex-start;
|
||||
gap: 8px;
|
||||
padding: 10px 8px;
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
background: transparent;
|
||||
transition: background-color 140ms ease, box-shadow 140ms ease;
|
||||
padding: 8px;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: var(--radius-s);
|
||||
background: var(--background-primary);
|
||||
transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
|
||||
overflow: visible;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.column-editor-row.is-collapsed,
|
||||
.column-editor-row.is-bookend {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.column-editor-row-content {
|
||||
flex: 1 1 auto;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.column-editor-row:hover {
|
||||
background: color-mix(in srgb, var(--background-primary) 86%, var(--background-modifier-hover));
|
||||
border-color: color-mix(in srgb, var(--background-modifier-border) 55%, var(--text-muted));
|
||||
background: color-mix(in srgb, var(--background-primary) 92%, var(--background-modifier-hover));
|
||||
}
|
||||
|
||||
.column-editor-row:focus-within {
|
||||
background: color-mix(in srgb, var(--background-primary) 82%, var(--background-modifier-hover));
|
||||
box-shadow: inset 0 1px 0 color-mix(in srgb, var(--background-modifier-border-focus) 55%, transparent),
|
||||
inset 0 -1px 0 color-mix(in srgb, var(--background-modifier-border-focus) 55%, transparent);
|
||||
border-color: var(--background-modifier-border-focus);
|
||||
box-shadow: 0 0 0 1px color-mix(in srgb, var(--background-modifier-border-focus) 45%, transparent);
|
||||
}
|
||||
|
||||
.column-editor-row.is-drop-target {
|
||||
@@ -234,6 +346,7 @@ If your plugin does not need CSS, delete this file.
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.column-editor-handle:active {
|
||||
@@ -246,6 +359,51 @@ If your plugin does not need CSS, delete this file.
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.column-editor-summary {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(180px, 1fr) minmax(150px, auto) 24px auto;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
min-width: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.column-editor-row.is-bookend .column-editor-summary {
|
||||
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;
|
||||
min-height: 24px;
|
||||
max-width: 180px;
|
||||
padding: 2px 8px;
|
||||
border-radius: var(--radius-s);
|
||||
color: var(--text-muted);
|
||||
background: var(--background-secondary);
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
font-size: var(--font-ui-smaller);
|
||||
font-weight: 600;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.column-editor-fields.column-editor-fields-inline {
|
||||
align-items: center;
|
||||
flex: 1 1 auto;
|
||||
@@ -291,7 +449,7 @@ If your plugin does not need CSS, delete this file.
|
||||
}
|
||||
|
||||
.column-editor-field-tag {
|
||||
flex: 1 1 180px;
|
||||
flex: 1 1 260px;
|
||||
min-width: 0;
|
||||
position: relative;
|
||||
overflow: visible;
|
||||
@@ -335,8 +493,8 @@ If your plugin does not need CSS, delete this file.
|
||||
}
|
||||
|
||||
.column-editor-color-swatch {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
border-radius: 999px;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
appearance: none;
|
||||
@@ -348,12 +506,47 @@ If your plugin does not need CSS, delete this file.
|
||||
var(--background-secondary) 90deg 180deg
|
||||
);
|
||||
background-blend-mode: overlay;
|
||||
flex: 0 0 14px;
|
||||
flex: 0 0 18px;
|
||||
padding: 0;
|
||||
cursor: pointer;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.column-editor-summary-swatch {
|
||||
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;
|
||||
@@ -381,13 +574,18 @@ If your plugin does not need CSS, delete this file.
|
||||
|
||||
.column-editor-remove-rail {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
align-items: flex-start;
|
||||
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;
|
||||
@@ -410,21 +608,70 @@ If your plugin does not need CSS, delete this file.
|
||||
.column-editor-controls {
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
margin-top: 10px;
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
/* Responsive layout */
|
||||
@media (max-width: 900px) {
|
||||
.task-list-kanban-settings-modal-container {
|
||||
width: min(920px, calc(100vw - 24px));
|
||||
}
|
||||
|
||||
.settings-body {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.settings-nav {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 4;
|
||||
flex-direction: row;
|
||||
gap: 6px;
|
||||
overflow-x: auto;
|
||||
padding: 0 0 10px;
|
||||
border-right: 0;
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
background: var(--background-primary);
|
||||
}
|
||||
|
||||
.settings-nav button {
|
||||
width: auto;
|
||||
flex: 0 0 auto;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.column-editor-summary {
|
||||
grid-template-columns: minmax(160px, 1fr) auto auto auto;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 720px) {
|
||||
.column-editor-row {
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.column-editor-intro,
|
||||
.column-editor-summary,
|
||||
.column-editor-details,
|
||||
.column-editor-fields.column-editor-fields-inline,
|
||||
.column-editor-field {
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.column-editor-intro {
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.column-editor-summary {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.column-editor-row.is-bookend .column-editor-summary {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.column-editor-fields.column-editor-fields-inline {
|
||||
gap: 12px;
|
||||
}
|
||||
@@ -447,4 +694,8 @@ If your plugin does not need CSS, delete this file.
|
||||
.column-editor-field-color .setting-input {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.column-editor-pill {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"contactsFolder": "Infos/Kontakte",
|
||||
"defaultHashtag": "#process/contact",
|
||||
"processors": {
|
||||
"UidProcessor": true,
|
||||
"SyncUnknownProcessor": true
|
||||
},
|
||||
"syncSelected": "None",
|
||||
"syncEnabled": false,
|
||||
"groupInsights": true,
|
||||
"CardDAV": {
|
||||
"addressBookUrl": "",
|
||||
"syncInterval": 900,
|
||||
"authKey": "",
|
||||
"authType": "apikey"
|
||||
},
|
||||
"createFieldsKeys": [
|
||||
"N.PREFIX",
|
||||
"N.GN",
|
||||
"N.MN",
|
||||
"N.FN",
|
||||
"N.SUFFIX",
|
||||
"TEL[CELL]",
|
||||
"TEL[HOME]",
|
||||
"TEL[WORK]",
|
||||
"EMAIL[HOME]",
|
||||
"EMAIL[WORK]",
|
||||
"BDAY",
|
||||
"PHOTO",
|
||||
"ADR[HOME].STREET",
|
||||
"ADR[HOME].LOCALITY",
|
||||
"ADR[HOME].POSTAL",
|
||||
"ADR[HOME].COUNTRY",
|
||||
"URL[WORK]",
|
||||
"ORG",
|
||||
"ROLE",
|
||||
"CATEGORIES",
|
||||
"X-RELATIONSHIP",
|
||||
"X-LAST-CHAT",
|
||||
"SOCIALPROFILE[LINKEDIN]"
|
||||
]
|
||||
}
|
||||
+100
File diff suppressed because one or more lines are too long
+11
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "vcf-contacts",
|
||||
"name": "VCF Contacts",
|
||||
"version": "2.4.2",
|
||||
"minAppVersion": "1.4.10",
|
||||
"description": "Effortlessly manage, organize, and interact with your contacts. Import, export, and structure vCard (VCF) files seamlessly while keeping all contact details accessible in your knowledge base. Includes click-to-call, right-click copy, structured metadata, and more!",
|
||||
"author": "Roland Broekema",
|
||||
"authorUrl": "https://github.com/broekema41/",
|
||||
"isDesktopOnly": false,
|
||||
"forkedFrom": "https://github.com/vbeskrovnov/obsidian-contacts/"
|
||||
}
|
||||
+440
@@ -0,0 +1,440 @@
|
||||
.menu-vert {
|
||||
border: 1px solid var(--titlebar-background-focused);
|
||||
margin-left: 2px;
|
||||
margin-right: 2px;
|
||||
}
|
||||
|
||||
.contacts-sidebar {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.contacts-menu {
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
.contacts-view {
|
||||
overflow-y: auto;
|
||||
scrollbar-gutter: stable;
|
||||
}
|
||||
|
||||
|
||||
.insights-results {
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
margin-bottom: 8px;
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
|
||||
.insights-results-header {
|
||||
color: var(--text-muted);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.insights-result-count {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.insights-results-settings {
|
||||
flex-basis: 100%;
|
||||
margin: var(--size-4-4) var(--size-4-4) 0 0;
|
||||
}
|
||||
|
||||
.insights-results-settings .setting-item-name {
|
||||
font-size: var(--font-ui-small);
|
||||
}
|
||||
|
||||
.contacts-view-close {
|
||||
position: relative;
|
||||
width: 34px;
|
||||
padding-top: 34px;
|
||||
}
|
||||
|
||||
.contact-card {
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
.contact-modal-buttons {
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
.contact-modal-buttons button {
|
||||
font-weight: "bold";
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
.contact-modal-label {
|
||||
display: block;
|
||||
font-weight: bold;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.contact-modal-input {
|
||||
margin-bottom: 12px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.inner-card-container {
|
||||
container-name: bizzy-card;
|
||||
container-type: inline-size;
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.bizzy-card-container {
|
||||
position: relative;
|
||||
display: flex;
|
||||
border: 2px solid var(--divider-color);
|
||||
min-width: 200px;
|
||||
max-width: 450px;
|
||||
flex-basis: auto;
|
||||
flex-wrap: wrap;
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
|
||||
}
|
||||
|
||||
.bizzy-card-container:hover {
|
||||
.biz-shape {
|
||||
background: var(--tag-background-hover);
|
||||
border: 2px solid var(--tag-border-color-hover);
|
||||
}
|
||||
}
|
||||
|
||||
.bizzy-card-container .biz-contact-actions {
|
||||
position: absolute;
|
||||
right: 4px;
|
||||
top: 4px;
|
||||
display: flex;
|
||||
}
|
||||
.bizzy-card-container .biz-contact-actions .clickable-icon {
|
||||
padding: var(--size-2-2);
|
||||
}
|
||||
|
||||
/*=============================
|
||||
Left Content
|
||||
===============================*/
|
||||
.biz-card-a {
|
||||
position: relative;
|
||||
width: 160px;
|
||||
height: 220px;
|
||||
padding: 10px;
|
||||
transition: 0.2s ease;
|
||||
color: var(--text-normal);
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.bizzy-card-organization {
|
||||
position: absolute;
|
||||
width: 196px;
|
||||
padding: 2px;
|
||||
padding-left: 14px;
|
||||
padding-right: 14px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
font-weight: bold;
|
||||
text-align: right;
|
||||
color: var(--nav-item-color);
|
||||
border-bottom: 2px solid var(--divider-color);
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.biz-headshot {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding-top: 12px;
|
||||
}
|
||||
|
||||
.bizzy-card-organization + .biz-card-a .biz-headshot {
|
||||
padding-top: 27px;
|
||||
}
|
||||
|
||||
.avatar-initials {
|
||||
display: block;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
box-shadow: 0 0 0 2px var(--tag-border-color);
|
||||
background-color: var(--tag-background);
|
||||
border-radius: 50%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.avatar-initials img,
|
||||
.avatar-initials svg {
|
||||
display: block; /* removes extra white space under inline elements */
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.avatar-initials svg text {
|
||||
fill: var(--tag-color);
|
||||
}
|
||||
|
||||
|
||||
.biz-words-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-top: 6px;
|
||||
margin-bottom: 6px;
|
||||
justify-content: center;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.biz-name {
|
||||
text-align: center;
|
||||
font-family: 'Anton', sans-serif;
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.biz-title {
|
||||
text-align: center;
|
||||
font-family: 'Nunito', sans-serif;
|
||||
font-size: 0.8em;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
|
||||
/*=============================
|
||||
Right Content
|
||||
===============================*/
|
||||
.biz-card-b {
|
||||
position: relative;
|
||||
width: 230px;
|
||||
height: 220px;
|
||||
padding: 10px;
|
||||
transition: 0.2s ease;
|
||||
}
|
||||
|
||||
.biz-shape {
|
||||
position: absolute;
|
||||
background: var(--tag-background);
|
||||
transform: scaleX(1) rotate(16deg);
|
||||
top: -60px;
|
||||
left: 20px;
|
||||
height: 308px;
|
||||
border-radius: 50px;
|
||||
width: 300px;
|
||||
color: var(--tag-color);
|
||||
border: 2px solid var(--tag-border-color);
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
.biz-contact-box {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
padding: 10px 10px 16px 0px;
|
||||
width: 215px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: flex-end;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.biz-item {
|
||||
font-size: 12px;
|
||||
letter-spacing: 0.15rem;
|
||||
margin-left: 0px;
|
||||
cursor: pointer;
|
||||
padding-top: 5px;
|
||||
font-family: 'Nunito', sans-serif;
|
||||
font-weight: 300;
|
||||
color:var(--tag-color);
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
.biz-item a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.action-card {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
padding: 12px;
|
||||
border-radius: 12px;
|
||||
border: 2px solid var(--divider-color);
|
||||
margin: 8px 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: normal;
|
||||
}
|
||||
|
||||
.action-card-actions {
|
||||
display: flex;
|
||||
gap: var(--size-4-2);
|
||||
flex-wrap: wrap;
|
||||
font-size: var(--font-ui-medium);
|
||||
}
|
||||
|
||||
.action-card-content {
|
||||
flex: 1 1 auto;
|
||||
color: var(--metadata-label-text-color);
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.action-card-content.action-card-content--no-height {
|
||||
min-height: 0;
|
||||
}
|
||||
|
||||
.action-card-button {
|
||||
align-self: start;
|
||||
}
|
||||
|
||||
.action-card-content :first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.action-card:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.view-content:has(.contacts-sidebar) {
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.nav-actionable-container {
|
||||
container-name: actionable-card;
|
||||
container-type: inline-size;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
/*=============================
|
||||
Business Card Mobile
|
||||
===============================*/
|
||||
@Container bizzy-card (max-width: 410px) {
|
||||
.bizzy-card-container {
|
||||
width: 240px;
|
||||
}
|
||||
|
||||
.avatar-initials {
|
||||
width: 85px;
|
||||
height: 85px;
|
||||
}
|
||||
|
||||
|
||||
.bizzy-card-organization {
|
||||
width: 240px;
|
||||
padding: 6px 65px 6px 14px;
|
||||
text-align: left;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
|
||||
.biz-card-a {
|
||||
width: 240px;
|
||||
height: 185px;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.biz-headshot {
|
||||
position: relative;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.biz-card-b {
|
||||
width: 240px;
|
||||
height: 180px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.biz-shape {
|
||||
transform: scaleX(1) rotate(85deg);
|
||||
top: -2px;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.biz-contact-box {
|
||||
position: absolute;
|
||||
margin-top: 150px;
|
||||
width: 100%;
|
||||
padding: 0 10px 10px 0;
|
||||
}
|
||||
}
|
||||
|
||||
.progress-bar.progress-bar--contacts,
|
||||
.progress-bar.progress-bar--contacts .progress-bar-indicator {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.setting-item-spacer {
|
||||
margin-top: 0.75em;
|
||||
}
|
||||
|
||||
.settings-tag-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.settings-tag-list a {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-right: 4px;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.menu .menu-item[data-section="vcf-sync-danger"] {
|
||||
color: var(--text-error);
|
||||
}
|
||||
|
||||
.menu .menu-item[data-section="vcf-sync-danger"] .menu-item-icon {
|
||||
color: var(--text-error);
|
||||
}
|
||||
|
||||
.badge-wrapper {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.badge-count {
|
||||
position: absolute;
|
||||
top: -4px;
|
||||
right: -4px;
|
||||
color: var(--icon-color-active);
|
||||
background-color: var(--background-modifier-active-hover);
|
||||
/*background-color: var(--interactive-accent);*/
|
||||
/*color: var(--titlebar-background-focused);*/
|
||||
font-size: 0.85rem;
|
||||
line-height: 1;
|
||||
padding: 1px 4px;
|
||||
border-radius: 999px;
|
||||
min-width: 16px;
|
||||
text-align: center;
|
||||
box-shadow: 0 0 2px rgba(0,0,0,0.3);
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.clickable-icon.is-pulsing {
|
||||
opacity: var(--icon-opacity-hover);
|
||||
color: var(--icon-color-active);
|
||||
background-color: var(--background-modifier-active-hover);
|
||||
animation: pulse-color-bg 1.8s infinite ease-in-out;
|
||||
}
|
||||
|
||||
@keyframes pulse-color-bg {
|
||||
0%, 100% {
|
||||
color: var(--icon-color-active);
|
||||
background-color: var(--background-modifier-active-hover);
|
||||
}
|
||||
50% {
|
||||
color: var(--icon-color-hover, #fff);
|
||||
background-color: var(--background-modifier-active);
|
||||
}
|
||||
}
|
||||
Vendored
+3
-1
@@ -64,6 +64,8 @@
|
||||
"reference": "multitext",
|
||||
"wikipedia": "text",
|
||||
"children": "multitext",
|
||||
"parents": "multitext"
|
||||
"parents": "multitext",
|
||||
"X-LAST-CHAT": "date",
|
||||
"X-FORMER-ORG": "multitext"
|
||||
}
|
||||
}
|
||||
@@ -1,29 +1,40 @@
|
||||
---
|
||||
name: Aaron Eisermann
|
||||
phone:
|
||||
email: aaron.eisermann@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat: 2026-01-05
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
created: 2026-01-06
|
||||
updated: 2026-01-06
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt consulting AG]]"
|
||||
location: Hamburg
|
||||
manager: "[[Marius Richter]]"
|
||||
interactions:
|
||||
- date: 2026-01-05
|
||||
text: Vorstellungsmail
|
||||
FN: Aaron Eisermann
|
||||
N.GN: Aaron
|
||||
N.FN: Eisermann
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: "aaron.eisermann@cimt-ag.de"
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: "cimt consulting AG"
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
UID: urn:uuid:019ecfeae705e-4aed-81a4-02cee2b56f72
|
||||
CATEGORIES: ""
|
||||
X-LAST-CHAT: 2026-01-05
|
||||
X-MANAGER: "[[Marius Richter]]"
|
||||
tags:
|
||||
- process/contact
|
||||
---
|
||||
|
||||
## Rollen
|
||||
## Firma
|
||||
[[cimt consulting AG]]
|
||||
|
||||
## Interaction Log
|
||||
- **2026-02-05**: Vorstellungsmail
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
@@ -53,4 +64,3 @@ list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
>Ich freue mich darauf euch Kennenzulernen und wünsche euch noch einen schönen Abend!
|
||||
>
|
||||
>Aaron
|
||||
|
||||
|
||||
@@ -1,25 +1,37 @@
|
||||
---
|
||||
name: Abbas Mahmood
|
||||
phone: +49 40 53302 456
|
||||
email: abbas.mahmood@cimt-ag.de
|
||||
mobile: +49 175 2030672
|
||||
telegram:
|
||||
linkedin: http://www.linkedin.com/in/abbas-mahmood-086684a4
|
||||
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: Abbas Mahmood
|
||||
N.GN: Abbas
|
||||
N.FN: Mahmood
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: abbas.mahmood@cimt-ag.de
|
||||
TEL[CELL]: +49 175 2030672
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 456
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
UID: urn:uuid:019ed06d3f4d0-40a5-8473-eb796e3fd5b2
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Kollege
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: http://www.linkedin.com/in/abbas-mahmood-086684a4
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-FORMER-ORG: "[[cimt consulting AG]]"
|
||||
---
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
## Rollen
|
||||
|
||||
|
||||
@@ -1,22 +1,40 @@
|
||||
---
|
||||
name: Abdelkader Boutsoudine
|
||||
phone: +49 69 9150 687 17
|
||||
email: abdelkader.boutsoudine@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Frankfurt
|
||||
manager: "[[Oliver Schuhmacher]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Abdelkader Boutsoudine
|
||||
N.GN: Abdelkader
|
||||
N.FN: Boutsoudine
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: abdelkader.boutsoudine@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 69 9150 687 17
|
||||
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
|
||||
UID: urn:uuid:019ed0842277a-4cd7-bd8d-274b3b382853
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
[[Lightning Talks Orga]]
|
||||
|
||||
@@ -29,6 +47,10 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Oliver Schuhmacher]]
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
|
||||
@@ -1,23 +1,42 @@
|
||||
---
|
||||
name: Abderrahman Aloui
|
||||
phone:
|
||||
email:
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Abderrahman_Aloui/cv
|
||||
birthday:
|
||||
last_chat: 2025-09-27
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
location: Hamburg
|
||||
manager: "[[Christian Kreutzmann]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
template: "[[contact-colleague]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Abderrahman Aloui
|
||||
N.GN: Abderrahman
|
||||
N.FN: Aloui
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: "Abderrahman.Aloui@cimt-ag.de"
|
||||
TEL[CELL]: "+49 171 716 32 00"
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: "+49 40 533 02-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"
|
||||
UID: urn:uuid:019ed088b6902-414a-a1a1-c8b01e88aa3f
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: ""
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
SOCIALPROFILE[XING]: https://www.xing.com/profile/Abderrahman_Aloui/cv
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
|
||||
## Rollen
|
||||
[[Lightning Talks Orga]]
|
||||
|
||||
@@ -26,10 +45,15 @@ tags:
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Sven Landmann]]
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
|
||||
@@ -1,24 +1,43 @@
|
||||
---
|
||||
name: Adil Simsek
|
||||
phone:
|
||||
email: ""
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Adil_Simsek3/web_profiles
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[codeble]]"
|
||||
location: Hamburg
|
||||
manager: ""
|
||||
former_company:
|
||||
FN: Adil Simsek
|
||||
N.GN: Adil
|
||||
N.FN: Simsek
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: codeble
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
UID: urn:uuid:019ed088b6805-42f9-8275-0d9e55afe525
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: ""
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
SOCIALPROFILE[XING]: "https://www.xing.com/profile/Adil_Simsek3/web_profiles"
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
X-FORMER-ORG:
|
||||
- "[[cimt objects AG]]"
|
||||
tags:
|
||||
- process/contact
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[codeble]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
|
||||
@@ -1,24 +1,41 @@
|
||||
---
|
||||
name: Ahmad El Khalil
|
||||
phone: +49 221 367 986-0
|
||||
mobile: +49 151 18028281
|
||||
email: ahmad.elkhalil@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: "[[Arnt Zimmermann]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Ahmad El Khalil
|
||||
N.GN: Ahmad
|
||||
N.FN: "El Khalil"
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: "ahmad.elkhalil@cimt-ag.de"
|
||||
TEL[CELL]: "+49 151 18028281"
|
||||
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"
|
||||
UID: urn:uuid:019ed088b66c1-4d4b-9669-027e820c1e1b
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: "Kollege"
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Köln
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt services AG]]
|
||||
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
@@ -34,6 +51,9 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Arnt Zimmermann]]
|
||||
|
||||
## Mitarbeiter
|
||||
|
||||
```dataview
|
||||
|
||||
@@ -1,23 +1,40 @@
|
||||
---
|
||||
name: Aikaterini Fotiadou
|
||||
phone:
|
||||
email: aikaterini.fotiadou@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt consulting AG]]"
|
||||
location: Hamburg
|
||||
manager: "[[Marius Richter]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Aikaterini Fotiadou
|
||||
N.GN: Aikaterini
|
||||
N.FN: Fotiadou
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: aikaterini.fotiadou@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
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
|
||||
UID: urn:uuid:019ed08d4a869-43a3-b7b6-ec04bb589a3b
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt consulting AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
@@ -33,6 +50,9 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Marius Richter]]
|
||||
|
||||
## Mitarbeiter
|
||||
|
||||
```dataview
|
||||
|
||||
@@ -1,23 +1,43 @@
|
||||
---
|
||||
name: Akomedi Tadjou Arouna
|
||||
phone: +49 40 53302 0
|
||||
email: akomedi.arouna@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt consulting AG]]"
|
||||
location: Hamburg
|
||||
manager: "[[Tobias Eggers]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Akomedi Tadjou Arouna
|
||||
N.GN: Akomedi
|
||||
N.FN: Arouna
|
||||
N.PREFIX: ""
|
||||
N.MN: Tadjou
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: "akomedi.arouna@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].STREET: "An der Alster 64"
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
ADR[WORK].POSTAL: "20099"
|
||||
ADR[WORK].COUNTRY: "Deutschland"
|
||||
UID: urn:uuid:019ed09b06175-401d-acae-b4fe11375565
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt consulting AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
@@ -33,6 +53,9 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## manager
|
||||
[[Tobias Eggers]]
|
||||
|
||||
## Mitarbeiter
|
||||
|
||||
```dataview
|
||||
|
||||
@@ -1,23 +1,40 @@
|
||||
---
|
||||
name: Albin Cekaj
|
||||
phone:
|
||||
email: albin.cekaj@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Berlin
|
||||
manager: ""
|
||||
template: "[[contact-colleague]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Albin Cekaj
|
||||
N.GN: Albin
|
||||
N.FN: Cekaj
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: "albin.cekaj@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
|
||||
UID: urn:uuid:019ed09b06071-4054-a9d8-bbda0b4fe6ea
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
@@ -33,6 +50,9 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Oliver Fromm]]
|
||||
|
||||
## Mitarbeiter
|
||||
|
||||
```dataview
|
||||
|
||||
@@ -1,23 +1,40 @@
|
||||
---
|
||||
name: Alex Marton
|
||||
phone: +31 73 30304-58
|
||||
email: alex.marton@cimt.nl
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company: "[[cimt BV]]"
|
||||
location: Vught
|
||||
manager: "[[Taco van het Reve]]"
|
||||
template: "[[contact-colleague]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Alex Marton
|
||||
N.GN: Alex
|
||||
N.FN: Marton
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: "alex.marton@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: ""
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Vught
|
||||
ADR[WORK].COUNTRY: Netherlands
|
||||
UID: urn:uuid:019ed09b05e95-4f54-a935-daf4007446a1
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt BV]]
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
@@ -33,6 +50,9 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Taco van het Reve]]
|
||||
|
||||
## Mitarbeiter
|
||||
|
||||
```dataview
|
||||
|
||||
@@ -1,23 +1,42 @@
|
||||
---
|
||||
name: Alexander Büsken
|
||||
phone: +49 40 53302 201
|
||||
email: alexander.buesken@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Alexander_Buesken
|
||||
birthday: 1995-04-25
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Hamburg
|
||||
manager: "[[Tina Lentz]]"
|
||||
template: "[[contact-colleague]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Alexander Büsken
|
||||
N.GN: Alexander
|
||||
N.FN: Büsken
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: alexander.buesken@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 201
|
||||
BDAY: 1995-04-25
|
||||
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/Alexander_Buesken
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
UID: urn:uuid:019ed09f99ad4-4428-a201-e740917ccf94
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
|
||||
## Rollen
|
||||
[[Lightning Talks Orga]]
|
||||
|
||||
@@ -34,6 +53,9 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Tina Lentz]]
|
||||
|
||||
## Mitarbeiter
|
||||
|
||||
```dataview
|
||||
|
||||
@@ -1,23 +1,40 @@
|
||||
---
|
||||
name: Alexander Klein
|
||||
phone: +49 69 247 56 76 81
|
||||
email: alexander.klein@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday: 1980-01-13
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Frankfurt
|
||||
manager: "[[Marc Herber]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Alexander Klein
|
||||
N.GN: Alexander
|
||||
N.FN: Klein
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: "alexander.klein@cimt-ag.de"
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: "+49 69 247 56 76 81"
|
||||
BDAY: "1980-01-13"
|
||||
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
|
||||
UID: urn:uuid:019ed0cd60718-477b-9b10-9d01431fe7b1
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
@@ -33,6 +50,9 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Marc Herber]]
|
||||
|
||||
## Mitarbeiter
|
||||
|
||||
```dataview
|
||||
|
||||
@@ -1,28 +1,45 @@
|
||||
---
|
||||
name: Alexander Liepold
|
||||
phone: +49 30 834098 0
|
||||
mobile: +49 160 99176539
|
||||
email: alexander.liepold@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Berlin
|
||||
manager: "[[Maria König]]"
|
||||
gilde:
|
||||
- "[[GCP Gilde]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Alexander Liepold
|
||||
N.GN: Alexander
|
||||
N.FN: Liepold
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: alexander.liepold@cimt-ag.de
|
||||
TEL[CELL]: +49 160 99176539
|
||||
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: ""
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
UID: urn:uuid:019ed0d688321-4dd9-a1dd-736404536648
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Gilde
|
||||
[[GCP Gilde]]
|
||||
|
||||
## Termine
|
||||
|
||||
```dataview
|
||||
@@ -36,6 +53,9 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Maria König]]
|
||||
|
||||
## Mitarbeiter
|
||||
|
||||
```dataview
|
||||
|
||||
@@ -1,25 +1,41 @@
|
||||
---
|
||||
name: Alexander Sinkovic
|
||||
phone:
|
||||
email: alexander.sinkovic@f-i-sp.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: projekt
|
||||
created: 2024-04-03 18:33
|
||||
updated: 2024-04-03
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
company: "[[Finanz Informatik Solution Plus GmbH & Co. KG]]"
|
||||
tags:
|
||||
- process/contact
|
||||
former_project:
|
||||
- "[[DataOps]]"
|
||||
FN: Alexander Sinkovic
|
||||
N.GN: Alexander
|
||||
N.FN: Sinkovic
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: "alexander.sinkovic@f-i-sp.de"
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: Finanz Informatik Solution Plus GmbH & Co. KG
|
||||
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:019ed0d688273-4a97-b672-8ad95ed3ef6e
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[Finanz Informatik Solution Plus GmbH & Co. KG]]
|
||||
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
@@ -30,3 +46,5 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Project
|
||||
[[DataOps]]
|
||||
|
||||
@@ -1,26 +1,43 @@
|
||||
---
|
||||
name: Alexandra Friese
|
||||
phone:
|
||||
email:
|
||||
telegram:
|
||||
linkedin:
|
||||
birthday:
|
||||
last_chat: 2023-11-28
|
||||
friends:
|
||||
type: contact
|
||||
relationship:
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
company: "[[Thomas-i-Punkt Modelle Handelsgesellschaft m.b.H.]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Alexandra Friese
|
||||
N.GN: Alexandra
|
||||
N.FN: Friese
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
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"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: ""
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
UID: urn:uuid:019ed0dfafe59-44f3-96f3-0b42dfcdf4b0
|
||||
---
|
||||
|
||||
## Rollen
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[Thomas-i-Punkt Modelle Handelsgesellschaft m.b.H.]]
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
|
||||
@@ -1,23 +1,40 @@
|
||||
---
|
||||
name: Andreas Koschinek
|
||||
phone: +49 40 533 02-0
|
||||
email: andreas.koschinek@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]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Andreas Koschinek
|
||||
N.GN: Andreas
|
||||
N.FN: Koschinek
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: andreas.koschinek@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 533 02-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: Hamburg
|
||||
UID: urn:uuid:019ed1044e9d9-49a5-bf23-f1483ad00585
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
@@ -29,6 +46,9 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
## Manager
|
||||
[[Tina Lentz]]
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
|
||||
@@ -1,22 +1,40 @@
|
||||
---
|
||||
name: Barbara Peetz
|
||||
birthday: 1947-12-04
|
||||
phone: +49 30 334 93 94
|
||||
relationship: familie
|
||||
married: "[[Klaus-Dieter Peetz]]"
|
||||
friends:
|
||||
created: 2026-01-24 19:45
|
||||
updated: 2026-01-24
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
type: contact
|
||||
interactions:
|
||||
- date: 2026-02-21
|
||||
text: Besuch im Krankenhaus
|
||||
- date: 2026-02-19
|
||||
text: Besuch im Krankenhaus
|
||||
- date: 2026-01-24
|
||||
text: Kaffee und Kuchen bei Eltern
|
||||
tags:
|
||||
- process/contact
|
||||
marriage: 1970-06-24
|
||||
FN: Barbara Peetz
|
||||
N.GN: Barbara
|
||||
N.FN: Peetz
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: +49 30 334 93 94
|
||||
TEL[WORK]: ""
|
||||
BDAY: 1947-12-04
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
UID: urn:uuid:019ed02dfc42d-479c-a9cc-5f8a395a8af4
|
||||
CATEGORIES: Familie
|
||||
X-RELATIONSHIP: ""
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
---
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
## Interaction Log
|
||||
- **2026-02-21**: Besuch im Krankenhaus
|
||||
- **2026-02-19**: Besuch im Krankenhaus
|
||||
- **2026-01-24**: Kaffee und Kuchen bei Eltern
|
||||
|
||||
## Hochzeit
|
||||
- **1970-06-24**: [[Klaus-Dieter Peetz]]
|
||||
|
||||
@@ -1,25 +1,39 @@
|
||||
---
|
||||
name: Christian Kreutzmann
|
||||
phone: +49 40 53302 121
|
||||
email: christian.kreutzmann@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat: 2025-09-27
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Hamburg
|
||||
manager:
|
||||
template: "[[contact-colleague]]"
|
||||
tags:
|
||||
- process/contact
|
||||
interactions:
|
||||
- date: 2026-04-30
|
||||
text: Abschiedsmail gesendet
|
||||
FN: Christian Kreutzmann
|
||||
N.GN: Christian
|
||||
N.FN: Kreutzmann
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: christian.kreutzmann@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 121
|
||||
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"
|
||||
UID: urn:uuid:019ed01a9f039-44ff-a373-a19b143b9beb
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: ""
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
---
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
#process/contact/check
|
||||
|
||||
## Interaction Log
|
||||
- **2026-04-30**: Abschiedsmail gesendet
|
||||
|
||||
## Rollen
|
||||
|
||||
|
||||
@@ -1,23 +1,43 @@
|
||||
---
|
||||
name: Frank Füllbier
|
||||
phone: +49 176 57 88 27 01
|
||||
email: frank.fuellbier@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
birthday: 1973-09-20
|
||||
last_chat: 2025-09-27
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Berlin
|
||||
manager: "[[Stefan Mann]]"
|
||||
gilde:
|
||||
- "[[GCP Gilde]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Frank Füllbier
|
||||
N.GN: Frank
|
||||
N.FN: Füllbier
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: frank.fuellbier@cimt-ag.de
|
||||
TEL[CELL]: +49 176 57 88 27 01
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: 1973-09-20
|
||||
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:019ed0fb26f47-4648-9881-a5c00b7fd738
|
||||
---
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Interaction Log
|
||||
|
||||
## Gilde
|
||||
[[GCP Gilde]]
|
||||
|
||||
## Rollen
|
||||
[[Managed Services Team]]
|
||||
|
||||
@@ -1,24 +1,38 @@
|
||||
---
|
||||
name: Frederik Demuth
|
||||
phone: +49 40 53302 104
|
||||
email: frederik.demuth@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: Hamburg
|
||||
manager: "[[Christian Kreutzmann]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: "Frederik Demuth"
|
||||
N.GN: Frederik
|
||||
N.FN: Demuth
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: frederik.demuth@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 104
|
||||
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"
|
||||
UID: urn:uuid:019ed016c438a-41a6-8c71-815924efc2a4
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: ""
|
||||
X-LAST-CHAT: 2026-06-16
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
---
|
||||
#### Notes
|
||||
|
||||
## Rollen
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Gilden
|
||||
- [[Talend Gilde]]
|
||||
@@ -33,6 +47,9 @@ LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Christian Kreutzmann]]
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
|
||||
@@ -1,28 +1,46 @@
|
||||
---
|
||||
name: Geraldine Bauer
|
||||
phone:
|
||||
email:
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday: 1992-10-07
|
||||
last_chat: 2025-10-08
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Frankfurt
|
||||
manager:
|
||||
template: "[[contact-colleague]]"
|
||||
interactions:
|
||||
- date: 2025-12-04
|
||||
text: Vorsschlag Mitarbeit PURR Ablösung als Product Owner
|
||||
- date: 2025-12-04
|
||||
text: Besuch Spandauer Weihnachtsmarkt
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Geraldine
|
||||
N.GN: Geraldine
|
||||
N.FN: Bauer
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: Geraldine.Bauer@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 69 9150 687-0
|
||||
BDAY: 1992-10-07
|
||||
URL[WORK]: ""
|
||||
ORG: cimt objects AG
|
||||
ROLE: Scrum Master
|
||||
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].STREET: Hanauer Landstrasse 121
|
||||
ADR[WORK].LOCALITY: Frankfurt
|
||||
ADR[WORK].POSTAL: 60314
|
||||
UID: urn:uuid:019ed0f693241-44d6-8dba-f602c8d6a4f9
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Interaction Log
|
||||
- **2025-12-04**: Vorschlag Mitarbeit PURR Ablösung als Product Owner
|
||||
- **2025-12-04**: Besuch Spandauer Weihnachtsmarkt
|
||||
|
||||
## Rollen
|
||||
[[Scrum Master]]
|
||||
|
||||
@@ -35,6 +53,9 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
|
||||
@@ -1,25 +1,42 @@
|
||||
---
|
||||
name: Golo Lentz
|
||||
phone: +49 40 53302 413
|
||||
email: golo.lentz@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Golo_Lentz/cv
|
||||
birthday: 1980-04-02
|
||||
last_chat: 2025-09-27
|
||||
married: "[[Tina Lentz]]"
|
||||
friends:
|
||||
type: contact
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Hamburg
|
||||
manager: "[[Christian Kreutzmann]]"
|
||||
mobile: +49 151 20424603
|
||||
template: "[[contact-colleague]]"
|
||||
birthday_check: true
|
||||
relationship: kollege
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Golo Lentz
|
||||
N.GN: Golo
|
||||
N.FN: Lentz
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: "golo.lentz@cimt-ag.de"
|
||||
TEL[CELL]: "+49 151 20424603"
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: "+49 40 53302 413"
|
||||
BDAY: "1980-04-02"
|
||||
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"
|
||||
X-MARRIED: "[[Tina Lentz]]"
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
SOCIALPROFILE[XING]: https://www.xing.com/profile/Golo_Lentz/cv
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
UID: urn:uuid:019ed11b31ed1-4a85-818d-4fd02454f3c5
|
||||
---
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
#process/contact/check
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
|
||||
## Rollen
|
||||
|
||||
@@ -32,6 +49,10 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Christian Kreutzmann]]
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
|
||||
@@ -1,22 +1,38 @@
|
||||
---
|
||||
name: Kai Swenson
|
||||
phone: +49 40 53302 138
|
||||
email: kai.swenson@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Hamburg
|
||||
manager: "[[Golo Lentz]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: "Kai Swenson"
|
||||
N.GN: Kai
|
||||
N.FN: Swenson
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: kai.swenson@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 40 53302 138
|
||||
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"
|
||||
UID: urn:uuid:019ed016c438a-41a6-8c71-815924efc2a4
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: ""
|
||||
X-LAST-CHAT: 2026-06-16
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
---
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
[[Data Engineer]]
|
||||
@@ -34,6 +50,9 @@ LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Golo Lentz]]
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
@@ -53,4 +72,3 @@ list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
>Viele Grüße
|
||||
>
|
||||
>Kai
|
||||
|
||||
|
||||
@@ -1,27 +1,41 @@
|
||||
---
|
||||
name: Klaus-Dieter Peetz
|
||||
phone: +49 30 334 93 94
|
||||
mobile:
|
||||
mail:
|
||||
relationship: familie
|
||||
married: "[[Barbara Peetz]]"
|
||||
marriage: 1970-06-24
|
||||
birthday: 1950-01-27
|
||||
last_chat: 2026-02-09
|
||||
friends:
|
||||
created: 2026-01-24 19:43
|
||||
updated: 2026-01-24
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
type: contact
|
||||
interactions:
|
||||
- date: 2026-02-09
|
||||
text: Update Zustand von ihm und Barbara Peetz
|
||||
- date: 2026-02-08
|
||||
text: Übernachtung bei Eltern zur Unterstützung
|
||||
- date: 2026-02-07
|
||||
text: mit Feuerwehr ins Krankenhaus (hoher Blutdruck)
|
||||
- date: 2026-01-24
|
||||
text: Kaffee und Kuchen bei Eltern
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Klaus-Dieter Peetz
|
||||
N.GN: Klaus-Dieter
|
||||
N.FN: Peetz
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: +49 30 334 93 94
|
||||
TEL[WORK]: ""
|
||||
BDAY: 1950-01-27
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
UID: urn:uuid:019ed01fd885f-4b2a-8da2-dbb0ac1fe095
|
||||
CATEGORIES: Familie
|
||||
X-RELATIONSHIP: ""
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
---
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
## Interaction Log
|
||||
- **2026-02-09**: Update Zustand von ihm und Barbara Peetz
|
||||
- **2026-02-08**: Übernachtung bei Eltern zur Unterstützung
|
||||
- **2026-02-07**: mit Feuerwehr ins Krankenhaus (hoher Blutdruck)
|
||||
- **2026-01-24**: Kaffee und Kuchen bei Eltern
|
||||
|
||||
## Hochzeit
|
||||
- **1970-06-24**: [[Barbara Peetz]]
|
||||
|
||||
@@ -1,26 +1,38 @@
|
||||
---
|
||||
name: Konstantin Giakas
|
||||
phone: +49 30 883 54 47
|
||||
email:
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: arzt
|
||||
created: 2025-10-29 19:58
|
||||
updated: 2025-10-29
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Konstantin Giakas
|
||||
N.GN: Konstantin
|
||||
N.FN: Giakas
|
||||
N.PREFIX: Dr. med.
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: "+49 30 883 54 47"
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: Facharzt für Innere Medizin
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
UID: urn:uuid:019ed03637b9b-4c41-9969-4957393c273b
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: Arzt
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].STREET: "Giesebrechtstraße 1"
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
ADR[WORK].POSTAL: "10629"
|
||||
---
|
||||
#### Notes
|
||||
|
||||
Dr. med. Konstantin Giakas
|
||||
Facharzt für Innere Medizin
|
||||
Giesebrechtstraße 1
|
||||
10629 Berlin
|
||||
#process/contact
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
|
||||
@@ -1,22 +1,41 @@
|
||||
---
|
||||
name: Sylvia Rettkowitz
|
||||
phone: +49 30 834098 0
|
||||
email: sylvia.rettkowitz@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
birthday:
|
||||
last_chat: 2025-09-27
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
template: "[[contact-colleague]]"
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Berlin
|
||||
manager: "[[Christian Kreutzmann]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Sylvia Rettkowitz
|
||||
N.GN: Sylvia
|
||||
N.FN: Rettkowitz
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: "sylvia.rettkowitz@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"
|
||||
UID: urn:uuid:019ed064178cd-448a-ad4f-3dc43e64e96b
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: ""
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Berlin
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
#process/contact/check
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
[[Management-Assistenz]]
|
||||
|
||||
@@ -29,6 +48,10 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Christian Kreutzmann]]
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
|
||||
@@ -1,24 +1,44 @@
|
||||
---
|
||||
name: Tina Lentz
|
||||
phone:
|
||||
email:
|
||||
telegram:
|
||||
linkedin:
|
||||
xing: https://www.xing.com/profile/Tina_Lentz/cv
|
||||
birthday: 1980-04-24
|
||||
last_chat: 2025-09-27
|
||||
married: "[[Golo Lentz]]"
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company: "[[cimt objects AG]]"
|
||||
location: Hamburg
|
||||
manager: "[[Christian Kreutzmann]]"
|
||||
template: "[[contact-colleague]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Tina Lentz
|
||||
N.GN: Tina
|
||||
N.FN: Lentz
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: tina.lentz@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: 1980-04-24
|
||||
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: ""
|
||||
X-MARRIED: "[[Golo Lentz]]"
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
SOCIALPROFILE[XING]: https://www.xing.com/profile/Tina_Lentz/cv
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
UID: urn:uuid:019ed108e27d4-4dde-8785-a27e722149ec
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
#process/contact/check
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
|
||||
## Rollen
|
||||
|
||||
|
||||
@@ -32,6 +52,9 @@ LIST FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
[[Christian Kreutzmann]]
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
|
||||
@@ -1,30 +1,51 @@
|
||||
---
|
||||
name: Wolfgang Günther
|
||||
email: w.a.guenther@t-online.de
|
||||
phone: +49 30 335 94 19
|
||||
mobile: +49 175 511 51 13
|
||||
relationship: nachbar
|
||||
created: 2026-02-16 07:26
|
||||
updated: 2026-02-16
|
||||
template: "[[Resources/Templates/contact]]"
|
||||
type: contact
|
||||
tags:
|
||||
- process/contact
|
||||
interactions:
|
||||
- date: 2026-05-28
|
||||
text: Hallo Herr Peetz, bin wieder da. Danke und Gruß W. Günther
|
||||
- date: 2026-05-10
|
||||
text: Guten Tag, Hr. Peetz, am 11.5. bin ich schon wieder weg (Kroatien) bis zum 21.5. Wenn Sie wieder so freundlich wären... Herzlichen Dank und frdl. Gruß W. Günther
|
||||
- date: 2026-04-16
|
||||
text: Hallo Herr Peetz, heute Abend werde ich bis zum 28.04. nach Korfu reisen. Wenn Sie wieder meinen Briefkasten im Auge hätten, würde mich das freuen. Best Grüße W.Günther
|
||||
- date: 2026-03-06
|
||||
text: |-
|
||||
Hallo, Hr. Peetz,
|
||||
wie immer herzlichen Dank
|
||||
W. Günther
|
||||
- date: 2026-02-10
|
||||
text: |-
|
||||
Guten Tag, Herr Peetz,
|
||||
es ist wieder einmal soweit: Ich flüchte in die Wärme Thailands. Geplante Rückkehr am 05.03. Ich wäre Ihnen wieder sehr dankbar, wenn Sie meinen Briefkasten im Auge hätten. Vielen Dank im Voraus
|
||||
W. Günther
|
||||
FN: Wolfgang Günther
|
||||
N.GN: Wolfgang
|
||||
N.FN: Günther
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: w.a.guenther@t-online.de
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: +49 175 511 51 13
|
||||
TEL[HOME]: +49 30 335 94 19
|
||||
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: Nachbar
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
UID: urn:uuid:019ed05f83a97-4f49-b9d9-3e8a73209bde
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
## Interaction Log
|
||||
- **2026-05-28**: Hallo Herr Peetz, bin wieder da. Danke und Gruß W. Günther
|
||||
- **2026-05-10**: Guten Tag, Hr. Peetz, am 11.5. bin ich schon wieder weg (Kroatien) bis zum 21.5. Wenn Sie wieder so freundlich wären... Herzlichen Dank und frdl. Gruß W. Günther
|
||||
- **2026-04-16**: Hallo Herr Peetz, heute Abend werde ich bis zum 28.04. nach Korfu reisen. Wenn Sie wieder meinen Briefkasten im Auge hätten, würde mich das freuen. Best Grüße W.Günther
|
||||
- **2026-03-06**: Hallo, Hr. Peetz, wie immer herzlichen Dank W. Günther
|
||||
- **2026-02-10**: Guten Tag, Herr Peetz, es ist wieder einmal soweit: Ich flüchte in die Wärme Thailands. Geplante Rückkehr am 05.03. Ich wäre Ihnen wieder sehr dankbar, wenn Sie meinen Briefkasten im Auge hätten. Vielen Dank im Voraus W. Günther
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
@@ -1,24 +1,40 @@
|
||||
---
|
||||
name: Zeno Graue
|
||||
phone: +49 211 545907 37
|
||||
email: zeno.graue@cimt-ag.de
|
||||
telegram:
|
||||
linkedin:
|
||||
xing:
|
||||
birthday:
|
||||
last_chat:
|
||||
friends:
|
||||
type: contact
|
||||
relationship: kollege
|
||||
company: "[[cimt technology GmbH]]"
|
||||
location: Düsseldorf
|
||||
manager: "[[Marcel Billen]]"
|
||||
template: "[[contact-colleague]]"
|
||||
tags:
|
||||
- process/contact
|
||||
FN: Zeno Graue
|
||||
N.GN: Zeno
|
||||
N.FN: Graue
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: zeno.graue@cimt-ag.de
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: +49 211 545907 37
|
||||
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"
|
||||
UID: urn:uuid:019ed00e5d9d2-40ca-beef-deb59be692f2
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: ""
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Düsseldorf
|
||||
X-MANAGER: "[[Marcel Billen]]"
|
||||
---
|
||||
#### Notes
|
||||
|
||||
## Rollen
|
||||
#process/contact
|
||||
|
||||
## Firma
|
||||
[[cimt technology GmbH]]
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
|
||||
@@ -22,7 +22,7 @@ SORT location, manager
|
||||
```dataview
|
||||
TABLE company AS Firma, location AS Standort
|
||||
FROM [[]] AND !outgoing([[]]) AND #process/contact
|
||||
WHERE contains(former_company, [[cimt consulting AG]])
|
||||
WHERE contains(X-FORMER-ORG, [[cimt consulting AG]])
|
||||
SORT location, manager, name
|
||||
```
|
||||
|
||||
|
||||
@@ -6,15 +6,15 @@ parent_company: "[[cimt AG]]"
|
||||
|
||||
## Kontakte
|
||||
```dataview
|
||||
TABLE location AS Standort, manager AS Vorgesetzter, birthday
|
||||
FROM [[]] AND !outgoing([[]]) AND #process/contact
|
||||
TABLE FN AS "Full Name", name, location AS Standort, manager AS Vorgesetzter, BDAY
|
||||
FROM [[]] AND !outgoing([[]]) AND #process/contact AND "Infos/Kontakte"
|
||||
WHERE !contains(former_company, [[cimt objects AG]])
|
||||
SORT location, manager, name
|
||||
```
|
||||
|
||||
## Ehemalige Kollegen
|
||||
```dataview
|
||||
TABLE company AS Firma, location AS Standort
|
||||
TABLE FN AS "Full Name", name, company AS Firma, location AS Standort
|
||||
FROM [[]] AND !outgoing([[]]) AND #process/contact
|
||||
WHERE contains(former_company, [[cimt objects AG]])
|
||||
SORT location, manager, name
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
---
|
||||
weight:
|
||||
meditation:
|
||||
pushUps: 0
|
||||
plank: 0
|
||||
journal: Privat daily
|
||||
journal-date: 2026-06-15
|
||||
journal-start-date: 2026-06-15
|
||||
journal-end-date: 2026-06-15
|
||||
---
|
||||
```calendar-timeline
|
||||
```
|
||||
|
||||
## Journal
|
||||
|
||||
## Ziele
|
||||
|
||||
##### [[2026-W25#^25i|Woche]] | [[2026-06#^06i|Monat]] | [[2026-Q2#^q2i|Quartal]] | [[2026## Jahresziele|Jahr]]
|
||||
|
||||
## Aufgaben
|
||||
|
||||
> [!hint]- Aktuelle Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens on 2026-06-15
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!todo]- Aktive Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens before 2026-06-15
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!warning]- Heute fällig
|
||||
>```tasks
|
||||
>not done
|
||||
>has due date
|
||||
>due on 2026-06-15
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!error]- Überfällig
|
||||
>```tasks
|
||||
>not done
|
||||
>has due date
|
||||
>due before 2026-06-15
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!done]- Erledigte Aufgaben
|
||||
>```dataview
|
||||
>TASK
|
||||
>FROM !"Resources/Templates"
|
||||
>WHERE completed AND completion = date(2026-06-15)
|
||||
>```
|
||||
|
||||
## Geburtstage
|
||||
```dataview
|
||||
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
|
||||
FROM "Infos/Kontakte"
|
||||
WHERE birthday.month = 06 AND birthday.day = 15
|
||||
```
|
||||
@@ -0,0 +1,99 @@
|
||||
---
|
||||
journal: Privat weekly
|
||||
journal-date: 2026-06-15
|
||||
journal-start-date: 2026-06-15
|
||||
journal-end-date: 2026-06-21
|
||||
---
|
||||
```calendar-timeline
|
||||
```
|
||||
|
||||
## Routinen der Woche
|
||||
|
||||
```dataview
|
||||
TABLE WITHOUT ID
|
||||
file.link as Datum,
|
||||
choice(meditation = true, "✅", "❌") as Meditation,
|
||||
choice(pushUps >= 10, "✅", "❌") as Liegestütz,
|
||||
choice(plank >= 60, "✅", "❌") as Plank
|
||||
FROM "Journal/Privat"
|
||||
WHERE file.day >= date(2026-06-15) AND file.day <= date(2026-06-21)
|
||||
SORT file.day ASC
|
||||
```
|
||||
|
||||
> ### Woche [[2026-W25|25]] Ziele
|
||||
> - Persönliche Ziele
|
||||
> ---
|
||||
> - Berufliche Ziele
|
||||
> ---
|
||||
> - Erledigtes
|
||||
> ---
|
||||
^25i
|
||||
|
||||
#### [[2026-06#^06i|Monat]] |[[2026-Q2#^q2i|Quartal]] | [[2026## Jahresziele|Jahr]]
|
||||
|
||||
## Leseliste
|
||||
![[Leseliste Thomas#Leseliste]]
|
||||
|
||||
## Aufgaben
|
||||
> [!todo]- Aktive Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>(happens on or before 2026-06-21) AND NOT (scheduled 2026-06-15 2026-06-21)
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!hint]- Geplante Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>scheduled 2026-06-15 2026-06-21
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!done]- Erledigte Aufgaben
|
||||
>```dataview
|
||||
>TASK
|
||||
>WHERE completed AND completion >= date(2026-06-15) AND completion < date(2026-06-22)
|
||||
>```
|
||||
|
||||
## History
|
||||
|
||||
### 2026-06-15
|
||||
![[Journal/Privat/2026/06/2026-06-15#Journal]]
|
||||
|
||||
### 2026-06-16
|
||||
![[Journal/Privat/2026/06/2026-06-16#Journal]]
|
||||
|
||||
### 2026-06-17
|
||||
![[Journal/Privat/2026/06/2026-06-17#Journal]]
|
||||
|
||||
### 2026-06-18
|
||||
![[Journal/Privat/2026/06/2026-06-18#Journal]]
|
||||
|
||||
### 2026-06-19
|
||||
![[Journal/Privat/2026/06/2026-06-19#Journal]]
|
||||
|
||||
### 2026-06-20
|
||||
![[Journal/Privat/2026/06/2026-06-20#Journal]]
|
||||
|
||||
### 2026-06-21
|
||||
![[Journal/Privat/2026/06/2026-06-21#Journal]]
|
||||
|
||||
|
||||
|
||||
## Geburtstage
|
||||
```dataview
|
||||
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
|
||||
FROM "Infos/Kontakte"
|
||||
WHERE birthday.month >= 06 AND birthday.day >= 15
|
||||
WHERE birthday.month <= 06 AND birthday.day < 22
|
||||
SORT birthday.day
|
||||
```
|
||||
|
||||
> [!note]- Erzeugte Notizen
|
||||
> ```dataview
|
||||
> LIST
|
||||
> WHERE file.cday >= date(2026-06-15) AND file.cday < date(2026-06-21)
|
||||
>```
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
---
|
||||
work_home: true
|
||||
work_office: false
|
||||
journal: cimt daily
|
||||
journal-date: 2026-06-15
|
||||
journal-start-date: 2026-06-15
|
||||
journal-end-date: 2026-06-15
|
||||
---
|
||||
|
||||
```calendar-timeline
|
||||
```
|
||||
|
||||
## Journal
|
||||
- [x] 09:15 - 09:30 [[Managed Services Team Daily]] [completion:: 2026-06-16]
|
||||
|
||||
## Ziele
|
||||
|
||||
##### [[Journal/cimt AG/2026/2026-W25#^25i|Woche]] | [[Journal/cimt AG/2026/2026-06#^06i|Monat]] | [[Journal/cimt AG/2026/2026-Q2#^q2i|Quartal]] | [[Journal/cimt AG/2026## Jahresziele|Jahr]]
|
||||
|
||||
## Aufgaben
|
||||
|
||||
> [!hint]- Aktuelle Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens on 2026-06-15
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!todo]- Aktive Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens before 2026-06-15
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!warning]- Heute fällig
|
||||
>```tasks
|
||||
>not done
|
||||
>has due date
|
||||
>due on 2026-06-15
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!error]- Überfällig
|
||||
>```tasks
|
||||
>not done
|
||||
>has due date
|
||||
>due before 2026-06-15
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!done]- Erledigte Aufgaben
|
||||
>```dataview
|
||||
>TASK
|
||||
>FROM !"Resources/Templates"
|
||||
>WHERE completed AND completion = date(2026-06-15)
|
||||
>```
|
||||
|
||||
## Geburtstage
|
||||
```dataview
|
||||
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
|
||||
FROM "Infos/Kontakte"
|
||||
WHERE birthday.month = 06 AND birthday.day = 15
|
||||
```
|
||||
@@ -0,0 +1,69 @@
|
||||
---
|
||||
work_home: false
|
||||
work_office: true
|
||||
journal: cimt daily
|
||||
journal-date: 2026-06-16
|
||||
journal-start-date: 2026-06-16
|
||||
journal-end-date: 2026-06-16
|
||||
---
|
||||
|
||||
```calendar-timeline
|
||||
```
|
||||
|
||||
## Journal
|
||||
- [x] 09:15 - 09:30 [[Managed Services Team Daily]] [completion:: 2026-06-16]
|
||||
- [x] 16:00 - 16:30 cimt AI Pulse 01 - Status quo: KI in unseren Beratungsschwerpunkten [completion:: 2026-06-16]
|
||||
|
||||
## Ziele
|
||||
|
||||
##### [[Journal/cimt AG/2026/2026-W25#^25i|Woche]] | [[Journal/cimt AG/2026/2026-06#^06i|Monat]] | [[Journal/cimt AG/2026/2026-Q2#^q2i|Quartal]] | [[Journal/cimt AG/2026## Jahresziele|Jahr]]
|
||||
|
||||
## Aufgaben
|
||||
|
||||
> [!hint]- Aktuelle Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens on 2026-06-16
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!todo]- Aktive Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens before 2026-06-16
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!warning]- Heute fällig
|
||||
>```tasks
|
||||
>not done
|
||||
>has due date
|
||||
>due on 2026-06-16
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!error]- Überfällig
|
||||
>```tasks
|
||||
>not done
|
||||
>has due date
|
||||
>due before 2026-06-16
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!done]- Erledigte Aufgaben
|
||||
>```dataview
|
||||
>TASK
|
||||
>FROM !"Resources/Templates"
|
||||
>WHERE completed AND completion = date(2026-06-16)
|
||||
>```
|
||||
|
||||
## Geburtstage
|
||||
```dataview
|
||||
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
|
||||
FROM "Infos/Kontakte"
|
||||
WHERE birthday.month = 06 AND birthday.day = 16
|
||||
```
|
||||
@@ -0,0 +1,79 @@
|
||||
---
|
||||
journal: cimt weekly
|
||||
journal-date: 2026-06-15
|
||||
journal-start-date: 2026-06-15
|
||||
journal-end-date: 2026-06-21
|
||||
---
|
||||
```calendar-timeline
|
||||
```
|
||||
> ### Woche [[2026-W25|25]] Ziele
|
||||
> - Berufliche Ziele
|
||||
> ---
|
||||
> - Erledigtes
|
||||
> ---
|
||||
^25i
|
||||
|
||||
#### [[2026-06#^06i|Monat]] |[[2026-Q2#^q2i|Quartal]] | [[2026## Jahresziele|Jahr]]
|
||||
|
||||
## Aufgaben
|
||||
> [!todo]- Aktive Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>(happens on or before 2026-06-21) AND NOT (scheduled 2026-06-15 2026-06-21)
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!hint]- Geplante Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>scheduled 2026-06-15 2026-06-21
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!done]- Erledigte Aufgaben
|
||||
>```dataview
|
||||
>TASK
|
||||
>WHERE completed AND completion >= date(2026-06-15) AND completion < date(2026-06-22)
|
||||
>```
|
||||
|
||||
## History
|
||||
|
||||
### 2026-06-15
|
||||
![[Journal/cimt AG/2026/06/2026-06-15#Journal]]
|
||||
|
||||
### 2026-06-16
|
||||
![[Journal/cimt AG/2026/06/2026-06-16#Journal]]
|
||||
|
||||
### 2026-06-17
|
||||
![[Journal/cimt AG/2026/06/2026-06-17#Journal]]
|
||||
|
||||
### 2026-06-18
|
||||
![[Journal/cimt AG/2026/06/2026-06-18#Journal]]
|
||||
|
||||
### 2026-06-19
|
||||
![[Journal/cimt AG/2026/06/2026-06-19#Journal]]
|
||||
|
||||
### 2026-06-20
|
||||
![[Journal/cimt AG/2026/06/2026-06-20#Journal]]
|
||||
|
||||
### 2026-06-21
|
||||
![[Journal/cimt AG/2026/06/2026-06-21#Journal]]
|
||||
|
||||
|
||||
|
||||
## Geburtstage
|
||||
```dataview
|
||||
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
|
||||
FROM "Infos/Kontakte"
|
||||
WHERE birthday.month >= 06 AND birthday.day >= 15
|
||||
WHERE birthday.month <= 06 AND birthday.day < 22
|
||||
SORT birthday.day
|
||||
```
|
||||
|
||||
> [!note]- Erzeugte Notizen
|
||||
> ```dataview
|
||||
> LIST
|
||||
> WHERE file.cday >= date(2026-06-15) AND file.cday < date(2026-06-21)
|
||||
>```
|
||||
@@ -1,24 +1,39 @@
|
||||
---
|
||||
name: <% tp.file.title %>
|
||||
created: <% tp.file.creation_date("dddd, MMMM Do YYYY") %>
|
||||
modified: <% tp.file.last_modified_date("dddd, MMMM Do YYYY") %>
|
||||
phone = ""
|
||||
email = ""
|
||||
relationship: ""
|
||||
telegram = ""
|
||||
signal = ""
|
||||
linkedin = ""
|
||||
xing = ""
|
||||
birthday = ""
|
||||
last_chat = ""
|
||||
friends = []
|
||||
type = contact
|
||||
template = "[[contact-colleague]]"
|
||||
company = ""
|
||||
location = ""
|
||||
manager = ""
|
||||
FN: "<% tp.file.title %>"
|
||||
N.GN: ""
|
||||
N.FN: ""
|
||||
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: ""
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
ADR[WORK].LOCALITY: Hamburg
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
[[cimt objects AG]]
|
||||
|
||||
## Rollen
|
||||
|
||||
## Termine
|
||||
@@ -32,6 +47,8 @@ FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
```
|
||||
|
||||
## Manager
|
||||
|
||||
## Mitarbeiter
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND "Infos/Kontakte"
|
||||
|
||||
@@ -1,27 +1,42 @@
|
||||
<%*
|
||||
const phone = tp.frontmatter.phone
|
||||
const email = tp.frontmatter.email
|
||||
const telegram = tp.frontmatter.telegram
|
||||
const linkedin =tp.frontmatter.linkedin
|
||||
const xing = tp.frontmatter.xing
|
||||
const birthday = tp.frontmatter.birthday
|
||||
const last_chat = tp.frontmatter.last_chat
|
||||
const friends = tp.frontmatter.friends
|
||||
const created = tp.file.creation_date()
|
||||
const updated = tp.date.now()
|
||||
app.fileManager.processFrontMatter(tp.config.target_file, (frontmatter) => {
|
||||
frontmatter.created = created
|
||||
frontmatter.updated = updated
|
||||
frontmatter.template = "[[Resources/Templates/contact]]"
|
||||
frontmatter.type = "contact"
|
||||
})
|
||||
-%>
|
||||
---
|
||||
FN: "<% tp.file.title %>"
|
||||
N.GN: ""
|
||||
N.FN: ""
|
||||
N.PREFIX: ""
|
||||
N.MN: ""
|
||||
N.SUFFIX: ""
|
||||
EMAIL[HOME]: ""
|
||||
EMAIL[WORK]: ""
|
||||
TEL[CELL]: ""
|
||||
TEL[HOME]: ""
|
||||
TEL[WORK]: ""
|
||||
BDAY: ""
|
||||
URL[WORK]: ""
|
||||
ORG: ""
|
||||
ROLE: ""
|
||||
PHOTO: ""
|
||||
ADR[HOME].STREET: ""
|
||||
ADR[HOME].LOCALITY: ""
|
||||
ADR[HOME].POSTAL: ""
|
||||
ADR[HOME].COUNTRY: ""
|
||||
KIND: individual
|
||||
VERSION: "4.0"
|
||||
CATEGORIES: ""
|
||||
X-RELATIONSHIP: ""
|
||||
X-LAST-CHAT: ""
|
||||
SOCIALPROFILE[LINKEDIN]: ""
|
||||
---
|
||||
|
||||
#### Notes
|
||||
|
||||
#process/contact
|
||||
|
||||
## Termine
|
||||
```dataview
|
||||
LIST
|
||||
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
||||
```
|
||||
|
||||
## Referenzen
|
||||
```dataview
|
||||
list from [[]] and !outgoing([[]]) AND !"Journal" AND !"Infos/Kontakte"
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
filters:
|
||||
and:
|
||||
- file.folder == "Infos/Kontakte"
|
||||
- FN.isEmpty()
|
||||
views:
|
||||
- type: table
|
||||
name: Alle Kontakte
|
||||
@@ -37,3 +38,10 @@ views:
|
||||
direction: ASC
|
||||
columnSize:
|
||||
note.company: 166
|
||||
- type: table
|
||||
name: Portierung Kontakte
|
||||
order:
|
||||
- file.name
|
||||
- name
|
||||
- FN
|
||||
- BDAY
|
||||
|
||||
Reference in New Issue
Block a user