vault backup: 2026-02-19 15:42:13# This is a combination of 2 commits.
This commit is contained in:
Vendored
+2
-1
@@ -3,7 +3,8 @@
|
||||
"baseFontSize": 12,
|
||||
"translucency": true,
|
||||
"enabledCssSnippets": [
|
||||
"numbered-lists"
|
||||
"numbered-lists",
|
||||
"tableStyles"
|
||||
],
|
||||
"nativeMenus": true,
|
||||
"theme": "obsidian",
|
||||
|
||||
+20047
File diff suppressed because one or more lines are too long
+11
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "code-styler",
|
||||
"name": "Code Styler",
|
||||
"version": "1.1.7",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Style and customize codeblocks and inline code in both editing mode and reading mode.",
|
||||
"author": "Mayuran Visakan",
|
||||
"authorUrl": "https://github.com/mayurankv",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/mayurankv2",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
+1348
File diff suppressed because it is too large
Load Diff
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "obsidian-tracker",
|
||||
"name": "Tracker",
|
||||
"version": "1.17.0",
|
||||
"version": "1.18.0",
|
||||
"minAppVersion": "0.9.12",
|
||||
"description": "A plugin tracks occurrences and numbers in your notes",
|
||||
"author": "pyrochlore",
|
||||
|
||||
+1376
-987
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.4.0",
|
||||
"version": "1.5.0",
|
||||
"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",
|
||||
|
||||
Vendored
+383
@@ -0,0 +1,383 @@
|
||||
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/* Custom fonts. Comment or change as required */
|
||||
@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,300,700);
|
||||
/* -------------------------------------------- */
|
||||
|
||||
|
||||
/* Obsidian default theme uses centered headers? */
|
||||
/* I rather not */
|
||||
table thead tr th {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/*
|
||||
=========================
|
||||
=======Customizers=======
|
||||
=========================
|
||||
These are custom "hacks" that can be applied to any
|
||||
table (with/without custom table visual css).
|
||||
If you're already using other classes in your note,
|
||||
remember you can stack these in the cssclass
|
||||
parameter, like:
|
||||
|
||||
cssclass: tableClass1, hackClass2, userClass3, etc
|
||||
|
||||
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/* Make tables width same as default note width */
|
||||
/* -------------------------------------------- */
|
||||
.wideTable table {
|
||||
min-width: 100%;
|
||||
}
|
||||
/* -------------------------------------------- */
|
||||
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/* Left align mandatory */
|
||||
/* -------------------------------------------- */
|
||||
.leftAlign th,
|
||||
.leftAlign td {
|
||||
text-align: left !important;
|
||||
}
|
||||
/* -------------------------------------------- */
|
||||
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/* 1st cell short text, 2nd th bigger text */
|
||||
/* -------------------------------------------- */
|
||||
.fixedFc thead tr th:first-child,
|
||||
.fixedFc tbody tr td:first-child {
|
||||
width: 8em;
|
||||
min-width: 8em;
|
||||
max-width: 8em;
|
||||
word-break: break-all;
|
||||
}
|
||||
.fixedFc th:nth-child(2) {
|
||||
padding: 9px 20px;
|
||||
font-size: 21px;
|
||||
}
|
||||
.fixedFc td:nth-child(2),
|
||||
.fixedFc tr > td:last-of-type {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 17em;
|
||||
}
|
||||
/* -------------------------------------------- */
|
||||
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/* 1st cell big text, 2nd small. */
|
||||
/* -------------------------------------------- */
|
||||
.wideFc td:nth-child(1),
|
||||
.wideFc tr > td:last-of-type {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 36em;
|
||||
}
|
||||
/* -------------------------------------------- */
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/* If you wanna change table margin, do it here */
|
||||
/* -------------------------------------------- */
|
||||
.customMargin table {
|
||||
margin: 25px 0;
|
||||
}
|
||||
/* -------------------------------------------- */
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*
|
||||
=========================
|
||||
======Table styles=======
|
||||
=========================
|
||||
Almost all table themes here are either
|
||||
frankenstein monsters of their originals
|
||||
or related to it. These were found
|
||||
on the www inside codepens, stackoverflow
|
||||
threads and forums. Any credit belongs to
|
||||
the creators and this is a free/open tribute
|
||||
for these contributions.
|
||||
|
||||
Usage:
|
||||
Select any table style to use in your cssclass.
|
||||
|
||||
Eg. cssclass: purpleRed
|
||||
|
||||
Remember that you can stack hacks!
|
||||
|
||||
Eg. cssclass: purpleRed, wideTable
|
||||
|
||||
*/
|
||||
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/* Big purple red table with rounded edges */
|
||||
/* -------------------------------------------- */
|
||||
.purpleRed table {
|
||||
background-color: #3d3b63;
|
||||
border-collapse: collapse;
|
||||
border-radius: 10px;
|
||||
font-size: 1em;
|
||||
color: white;
|
||||
overflow: hidden;
|
||||
width: auto;
|
||||
/*max-width: 100%;*/
|
||||
}
|
||||
.purpleRed thead {
|
||||
background-color: #f3646c;
|
||||
}
|
||||
.purpleRed th {
|
||||
letter-spacing: 0.3px;
|
||||
text-shadow: 0 1px 1px #2b2a466b;
|
||||
}
|
||||
.purpleRed table > thead > tr > th {
|
||||
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.purpleRed td {
|
||||
background-color: #3d3b63;
|
||||
color: white;
|
||||
}
|
||||
.purpleRed td strong {
|
||||
color: white;
|
||||
}
|
||||
.purpleRed td,
|
||||
.purpleRed th {
|
||||
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||
padding: 11px;
|
||||
}
|
||||
.purpleRed thead th:hover,
|
||||
.purpleRed thead tr:hover,
|
||||
.purpleRed th:hover {
|
||||
background-color: #f3646c;
|
||||
}
|
||||
.purpleRed tbody tr:hover td,
|
||||
.purpleRed tbody tr:hover td a {
|
||||
background-color: #a32959;
|
||||
color: white;
|
||||
}
|
||||
/* -------------------------------------------- */
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/* Flat blue boring corporate table */
|
||||
/* -------------------------------------------- */
|
||||
.flatBlue table {
|
||||
border-collapse: collapse;
|
||||
font-size: 0.81em;
|
||||
font-family: sans-serif;
|
||||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
.flatBlue thead {
|
||||
background-color: #0278ae;
|
||||
border: 2px solid #0278ae;
|
||||
color: #f6f5f5;
|
||||
}
|
||||
.flatBlue thead tr th {
|
||||
/*border-right: 1px solid #0278ae;*/
|
||||
border-right: 1px solid #0a7fc2;
|
||||
padding: 9px 20px 9px 10px;
|
||||
font-weight: 400;
|
||||
font-size: 1.1em;
|
||||
text-shadow: 0 1px 0 rgba(25.5, 25.5, 25.5, 0.4);
|
||||
}
|
||||
.flatBlue table > thead > tr > th {
|
||||
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.flatBlue td {
|
||||
padding: 2px 15px 1px 10px;
|
||||
border-color: #b3b3b3;
|
||||
}
|
||||
.flatBlue tbody td:first-of-type {
|
||||
border-left: 2px solid #b3b3b3bb;
|
||||
}
|
||||
.flatBlue tbody tr:nth-of-type(even) {
|
||||
background-color: #f3f3f3;
|
||||
}
|
||||
.flatBlue tbody tr:last-of-type {
|
||||
border-bottom: 3px solid #51adcf;
|
||||
}
|
||||
.flatBlue tbody tr:first-of-type {
|
||||
border-top: 3px solid #51adcf;
|
||||
}
|
||||
.flatBlue tbody tr:hover td {
|
||||
background-color: #f8bd7f;
|
||||
}
|
||||
/* -------------------------------------------- */
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/* Latex table-layout: */
|
||||
/* -------------------------------------------- */
|
||||
.academia table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
width: auto;
|
||||
/*max-width: 100%;*/
|
||||
border-top: 2.27px solid black;
|
||||
border-bottom: 2.27px solid black;
|
||||
overflow-x: auto;
|
||||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
.academia th,
|
||||
.academia td {
|
||||
border: 0 none;
|
||||
padding: 0.51rem;
|
||||
line-height: 1.1;
|
||||
}
|
||||
.academia table > tbody > tr:first-child > td,
|
||||
.academia table > tbody > tr:first-child > th {
|
||||
border-top: 1.36px solid black;
|
||||
}
|
||||
.academia table > tbody > tr:last-child > td,
|
||||
.academia table > tbody > tr:last-child > th {
|
||||
border-bottom: 1.36px solid black;
|
||||
}
|
||||
.academia thead th {
|
||||
background-color: white !important;
|
||||
font-weight: 700;
|
||||
padding: 8px 9px 5px 9px;
|
||||
}
|
||||
.academia tr:nth-child(even) {
|
||||
background-color: #ebecf1 ;
|
||||
}
|
||||
.academia tbody tr:hover td {
|
||||
background-color: #f5f1da;
|
||||
}
|
||||
/* -------------------------------------------- */
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/* White red table. */
|
||||
/* -------------------------------------------- */
|
||||
.whiteRed table {
|
||||
box-shadow:0 0 20px 0 rgba(0,0,0,.15);
|
||||
}
|
||||
.whiteRed th,
|
||||
.whiteRed td {
|
||||
border: 0 none;
|
||||
}
|
||||
.whiteRed th {
|
||||
font-family:Lato-Bold;
|
||||
font-size:15px;
|
||||
color:#fa4251;
|
||||
background-color: white !important;
|
||||
border-bottom:1px solid #cccccc;
|
||||
padding: 14px 15px;
|
||||
}
|
||||
.whiteRed td {
|
||||
font-family:Lato-Regular;
|
||||
font-size:15px;
|
||||
color:gray;
|
||||
line-height:1.5;
|
||||
padding: 5px 15px;
|
||||
}
|
||||
.whiteRed table > tbody > tr {
|
||||
border-bottom: 1px solid #cccccc;
|
||||
}
|
||||
.whiteRed table > tbody > tr:last-child > td {
|
||||
border-bottom: 2px solid #b3b3b3;
|
||||
}
|
||||
.whiteRed tbody tr:hover td {
|
||||
background-color: #ffcccc;
|
||||
color: #4d4d4d;
|
||||
}
|
||||
/* -------------------------------------------- */
|
||||
.whiteRed-rounded table {
|
||||
border-collapse: separate;
|
||||
border: solid #b3b3b3 1px;
|
||||
border-radius: 6px;
|
||||
border-spacing: 0px;
|
||||
}
|
||||
.whiteRed-rounded table > tbody > tr > td {
|
||||
border-bottom: 1px solid #ccccccbb;
|
||||
}
|
||||
.whiteRed-rounded table > tbody > tr:last-child > td {
|
||||
border-bottom: thin #ccccccbb;
|
||||
}
|
||||
.whiteRed-rounded table th:first-of-type{
|
||||
border-top-left-radius: 6px;
|
||||
}
|
||||
.whiteRed-rounded table th:last-of-type{
|
||||
border-top-right-radius: 6px;
|
||||
}
|
||||
.whiteRed-rounded table tr:last-child td:first-child {
|
||||
border-bottom-left-radius: 5px;
|
||||
}
|
||||
.whiteRed-rounded table tr:last-child td:last-child {
|
||||
border-bottom-right-radius: 5px;
|
||||
}
|
||||
/* -------------------------------------------- */
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* -------------------------------------------- */
|
||||
/* Yellow cab table */
|
||||
/* -------------------------------------------- */
|
||||
.yellowCab table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
.yellowCab table th {
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
}
|
||||
.yellowCab table thead th {
|
||||
padding: 15px 20px;
|
||||
background: #ffba00;
|
||||
}
|
||||
.yellowCab td,
|
||||
.yellowCab th {
|
||||
border: 1px solid #ffffff;
|
||||
padding: 10px 20px;
|
||||
}
|
||||
.yellowCab table td {
|
||||
background: #f1f1f1;
|
||||
font-family: 'Lato', sans-serif;
|
||||
font-size: 13px;
|
||||
color: #666666;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
.yellowCab thead th:hover {
|
||||
background-color: #ffba00 !important;
|
||||
}
|
||||
.yellowCab tbody tr:hover td,
|
||||
.yellowCab tbody tr:hover td strong,
|
||||
.yellowCab tbody tr:hover td a {
|
||||
background-color: #c24f0a !important;
|
||||
color: white;
|
||||
}
|
||||
/* -------------------------------------------- */
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
status: In Arbeit
|
||||
status: Archiv
|
||||
tags:
|
||||
- process/task
|
||||
|
||||
@@ -53,4 +53,4 @@ Zur Vorstellung des Ticketsystems:
|
||||
|
||||
## Unteraufgaben
|
||||
|
||||
- [ ] Zammad Admin Schulung
|
||||
- [x] Zammad Admin Schulung [completion:: 2026-02-19]
|
||||
|
||||
@@ -42,7 +42,7 @@ CouchDB Testumgebung
|
||||
|
||||
## Aufgaben
|
||||
- [x] Ersetzen von Docker mit podman auf bervl1prr #process/task [start:: 2026-02-02] [scheduled:: 2026-02-16] [completion:: 2026-02-16]
|
||||
- [ ] Anwesenheitsbericht Dokumentation erstellen #process/task [scheduled:: 2026-02-17]
|
||||
- [ ] Anwesenheitsbericht Dokumentation erstellen #process/task [scheduled:: 2026-02-20]
|
||||
|
||||
|
||||
## Offene Aufgaben
|
||||
|
||||
@@ -57,6 +57,6 @@ Zusammenfassend lässt sich sagen, dass KI zwar viele Prozesse in der Softwareen
|
||||
|
||||
|
||||
## Aufgaben
|
||||
- [ ] Zusendung des Blogeintrags an [[Ann-Kristin Hantzsch-Kühnlenz]] inklusive der Anmerkungen von [[Stefanie Pelster]] #process/task [start:: 2026-02-17] [scheduled:: 2026-02-18] [due:: 2026-03-30]
|
||||
- [ ] Zusendung des Blogeintrags an [[Ann-Kristin Hantzsch-Kühnlenz]] inklusive der Anmerkungen von [[Stefanie Pelster]] #process/task [start:: 2026-02-17] [scheduled:: 2026-02-20] [due:: 2026-03-30]
|
||||
- [ ] Review des Eintrags mit KI #process/task [start:: 2026-02-17] [due:: 2026-02-24]
|
||||
- [ ] Einbindung von Bildern in den Beitrag #process/task [start:: 2026-02-17] [due:: 2026-02-24]
|
||||
- [ ] Einbindung von Bildern in den Beitrag #process/task [start:: 2026-02-17] [scheduled:: 2026-02-20] [due:: 2026-02-24]
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
---
|
||||
tags:
|
||||
- IT/Tools/Obsidian
|
||||
---
|
||||
## Links
|
||||
- https://forum.obsidian.md/t/custom-css-for-tables-5-new-styles-ready-to-use-in-your-notes/17084/3
|
||||
@@ -0,0 +1,68 @@
|
||||
---
|
||||
weight:
|
||||
meditation: true
|
||||
pushUps: 20
|
||||
plank: 75
|
||||
journal: Privat daily
|
||||
journal-date: 2026-02-19
|
||||
journal-start-date: 2026-02-19
|
||||
journal-end-date: 2026-02-19
|
||||
---
|
||||
```calendar-timeline
|
||||
```
|
||||
|
||||
## Journal
|
||||
|
||||
## Ziele
|
||||
|
||||
##### [[2026-W08#^08i|Woche]] | [[2026-02#^02i|Monat]] | [[2026-Q1#^q1i|Quartal]] | [[2026## Jahresziele|Jahr]]
|
||||
|
||||
## Aufgaben
|
||||
|
||||
> [!hint]- Aktuelle Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens on 2026-02-19
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!todo]- Aktive Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens before 2026-02-19
|
||||
>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-02-19
|
||||
>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-02-19
|
||||
>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-02-19)
|
||||
>```
|
||||
|
||||
## Geburtstage
|
||||
```dataview
|
||||
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
|
||||
FROM "Infos/Kontakte"
|
||||
WHERE birthday.month = 02 AND birthday.day = 19
|
||||
```
|
||||
@@ -11,9 +11,9 @@ journal-end-date: 2026-02-19
|
||||
```
|
||||
|
||||
## Journal
|
||||
- [ ] 09:15 - 09:30 [[Managed Services Team Daily]]
|
||||
- [ ] 09:30 - 11:30 [[Zammad Admin Schulung]]
|
||||
- [ ] 11:45 - 12:00 [[TiBuCi]] Stand-Up
|
||||
- [x] 09:15 - 09:30 [[Managed Services Team Daily]] [completion:: 2026-02-19]
|
||||
- [x] 09:30 - 11:30 [[Zammad Admin Schulung]] [completion:: 2026-02-19]
|
||||
- [x] 11:45 - 12:00 [[TiBuCi]] Stand-Up [completion:: 2026-02-19]
|
||||
|
||||
## Ziele
|
||||
|
||||
|
||||
@@ -0,0 +1,71 @@
|
||||
---
|
||||
work_home: false
|
||||
work_office: false
|
||||
journal: cimt daily
|
||||
journal-date: 2026-02-24
|
||||
journal-start-date: 2026-02-24
|
||||
journal-end-date: 2026-02-24
|
||||
---
|
||||
|
||||
```calendar-timeline
|
||||
```
|
||||
|
||||
## Journal
|
||||
- [ ] 09:15 - 09:30 [[Managed Services Team Daily]]
|
||||
- [ ] 09:30 - 11:30 ITIL Schulung Grundlagen
|
||||
- [ ] 11:45 - 12:00 [[TiBuCi]] Stand-Up
|
||||
- [ ] 13:30 - 15:30 ITIL Problem Management
|
||||
|
||||
## Ziele
|
||||
|
||||
##### [[Journal/cimt AG/2026/2026-02#^02i|Monat]] | [[Journal/cimt AG/2026/2026-Q1#^q1i|Quartal]] | [[Journal/cimt AG/2026## Jahresziele|Jahr]]
|
||||
|
||||
## Aufgaben
|
||||
|
||||
> [!hint]- Aktuelle Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens on 2026-02-24
|
||||
>path regex does not match /^Resources\/Templates\/.*/
|
||||
>path regex does not match /^Übersicht\/.*/
|
||||
>```
|
||||
|
||||
> [!todo]- Aktive Aufgaben
|
||||
>```tasks
|
||||
>not done
|
||||
>happens before 2026-02-24
|
||||
>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-02-24
|
||||
>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-02-24
|
||||
>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-02-24)
|
||||
>```
|
||||
|
||||
## Geburtstage
|
||||
```dataview
|
||||
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
|
||||
FROM "Infos/Kontakte"
|
||||
WHERE birthday.month = 02 AND birthday.day = 24
|
||||
```
|
||||
@@ -6,19 +6,18 @@ kanban-plugin: board
|
||||
|
||||
## Backlog
|
||||
|
||||
|
||||
|
||||
- [ ] [[Erste Komponenten auf neues SDK umgestellt]]
|
||||
- [ ] [[Umfang klären und Developmentplan aufstellen]]
|
||||
|
||||
|
||||
## In Arbeit
|
||||
|
||||
- [ ] [[Zammad Admin Schulung]]
|
||||
- [ ] [[Github Repository für nvim-config erstellen]]
|
||||
|
||||
|
||||
## Review
|
||||
|
||||
- [ ] [[Ausschreibung Wissensdatenbank]]
|
||||
- [x] [[Ausschreibung Wissensdatenbank]] [completion:: 2026-02-19]
|
||||
|
||||
|
||||
## Geschlossen
|
||||
@@ -34,6 +33,7 @@ kanban-plugin: board
|
||||
- [x] [[Anfrage bezüglich KI-Richtlinie]] [completion:: 2026-01-15]
|
||||
- [x] [[Upgrade OS auf Debian 12]] [completion:: 2026-02-05]
|
||||
- [x] [[Anfrage Deutsche Bahn]] [completion:: 2026-02-18]
|
||||
- [x] [[Zammad Admin Schulung]] [completion:: 2026-02-19]
|
||||
|
||||
%% kanban:settings
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user