2021-11-23 14:58:10 +01:00
|
|
|
<template>
|
|
|
|
<LayoutMinimal title="Tools">
|
|
|
|
<BaseTitle>
|
2022-02-11 21:16:15 +01:00
|
|
|
Graph Day Distribution
|
|
|
|
<br />
|
2021-11-23 14:58:10 +01:00
|
|
|
<small>by Linus Kämmerer</small>
|
|
|
|
</BaseTitle>
|
2022-02-11 21:16:15 +01:00
|
|
|
<BaseSection>
|
|
|
|
<BaseTitle size="tiny">
|
|
|
|
<b-link
|
|
|
|
href="https://gist.github.com/linuskmr/f89ac638da036e25d67e147ece67577c"
|
|
|
|
>
|
|
|
|
<b-icon-github></b-icon-github>
|
|
|
|
GitHub
|
|
|
|
</b-link>
|
|
|
|
</BaseTitle>
|
|
|
|
<p class="monospace">
|
|
|
|
Python script to generate a time distribution graph from the exported
|
|
|
|
Juggl data. It accumulates the tracked record and shows the total
|
|
|
|
working hours for different times for each weekday.
|
|
|
|
</p>
|
|
|
|
</BaseSection>
|
|
|
|
|
|
|
|
<BaseSection>
|
|
|
|
<BaseTitle>
|
|
|
|
JSON to CSV
|
|
|
|
<br />
|
|
|
|
<small>by Linus Kämmerer</small>
|
|
|
|
</BaseTitle>
|
|
|
|
<BaseTitle size="tiny">
|
|
|
|
<b-link
|
|
|
|
href="https://gist.github.com/linuskmr/856459cdf6c7ea460503b92e00b2aa26"
|
|
|
|
>
|
|
|
|
<b-icon-github></b-icon-github>
|
|
|
|
GitHub
|
|
|
|
</b-link>
|
|
|
|
</BaseTitle>
|
|
|
|
<p class="monospace">
|
|
|
|
Python script to convert exported Juggl data from a JSON to a CSV file.
|
|
|
|
</p>
|
|
|
|
</BaseSection>
|
2021-11-23 14:58:10 +01:00
|
|
|
</LayoutMinimal>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
// @ is an alias to /src
|
|
|
|
import LayoutMinimal from "@/components/layout/LayoutMinimal";
|
|
|
|
import BaseTitle from "@/components/base/BaseTitle";
|
2022-02-11 21:16:15 +01:00
|
|
|
import BaseSection from "../components/base/BaseSection.vue";
|
2021-11-23 14:58:10 +01:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "ToolsDocumentation",
|
|
|
|
components: {
|
|
|
|
LayoutMinimal,
|
2022-02-11 21:16:15 +01:00
|
|
|
BaseTitle,
|
|
|
|
BaseSection
|
2021-11-23 14:58:10 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
2022-02-11 21:16:15 +01:00
|
|
|
<style lang="sass" scoped></style>
|