75 lines
2.5 KiB
Markdown
75 lines
2.5 KiB
Markdown
---
|
|
id: Vortrag JaKo 2023
|
|
aliases: []
|
|
tags:
|
|
- process/project
|
|
status: Archiv
|
|
subtitle: Vortrag JaKo 2023
|
|
type: Archiv
|
|
---
|
|
> [!info]- Projekt
|
|
>Goal:: [[Journal/cimt AG/2023|2023]]
|
|
>Progress:: `$= dv.view('project-progress', {file: 'Vortrag JaKo 2023'})`
|
|
>Target:: `$= dv.view('project-target', {file: 'Vortrag JaKo 2023'})`
|
|
>Bar:: `$= dv.view('project-progress-bar', {file: 'Vortrag JaKo 2023'})`
|
|
>Tasks:: `$= const aufgaben = dv.page('Vortrag JaKo 2023').file.inlinks.where(t => { const mt = dv.page(t.path); return mt.tags?.includes('process/task') && mt.status === 'In Arbeit'}); if (aufgaben.length > 0) { dv.header(4, aufgaben.length > 1 ? "Aufgaben" : "Aufgabe"); dv.list(aufgaben) }`
|
|
|
|
## Project Info
|
|
|
|
[[cimt objects AG]]
|
|
[[JaKo 2023]]
|
|
|
|
## Thoughts
|
|
|
|
## Resources
|
|
|
|
### Gradle Links
|
|
- [Sharing build logic in a multi-repo setup Sample](https://docs.gradle.org/current/samples/sample_publishing_convention_plugins.html)
|
|
- [Sharing convention plugins with build logic build Sample](https://docs.gradle.org/current/samples/sample_sharing_convention_plugins_with_build_logic.html)
|
|
- [Gradle Goodness: Shared Configuration With Conventions Plugin](https://blog.jdriven.com/2021/02/gradle-goodness-shared-configuration-with-conventions-plugin/)
|
|
- [Migrate your build to version catalogs](https://developer.android.com/build/migrate-to-catalogs#kts)
|
|
- [# Sharing build logic between subprojects Sample](https://docs.gradle.org/current/samples/sample_convention_plugins.html#organizing_build_logic)
|
|
|
|
### Repository
|
|
[[convention-plugins]]
|
|
|
|
## Review questions
|
|
|
|
|
|
## Aufgaben
|
|
|
|
- [x] Vortragsthema eingereicht [completion:: 2024-01-11]
|
|
- [x] Vortrag gehalten [completion:: 2024-01-11]
|
|
|
|
## Offene Aufgaben
|
|
```dataviewjs
|
|
const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/task')).where(p => dv.page(p.path).file.tasks.length != dv.page(p.path).file.tasks.where(t => t.fullyCompleted === true).length);
|
|
|
|
dv.table(["Project", "Status", "Completed", "Tasks"], pages.map(p => {
|
|
const page = dv.page(p.path);
|
|
const tasks = page.file.tasks;
|
|
return [
|
|
page.file.link,
|
|
page.status,
|
|
tasks.where(t => t.fullyCompleted === true).length,
|
|
tasks.length
|
|
]
|
|
}));
|
|
```
|
|
|
|
## Aufgaben
|
|
```dataviewjs
|
|
const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/task'));
|
|
|
|
dv.table(["Project", "Status", "Completed", "Tasks"], pages.map(p => {
|
|
const page = dv.page(p.path);
|
|
const tasks = page.file.tasks;
|
|
return [
|
|
page.file.link,
|
|
page.status,
|
|
tasks.where(t => t.fullyCompleted === true).length,
|
|
tasks.length
|
|
]
|
|
}));
|
|
```
|