Added tool
This commit is contained in:
parent
3544f44a74
commit
e82a083c86
1 changed files with 40 additions and 14 deletions
|
@ -1,19 +1,44 @@
|
||||||
<template>
|
<template>
|
||||||
<LayoutMinimal title="Tools">
|
<LayoutMinimal title="Tools">
|
||||||
<BaseTitle>
|
<BaseTitle>
|
||||||
JSON to CSV
|
Graph Day Distribution
|
||||||
<br/>
|
<br />
|
||||||
<small>by Linus Kämmerer</small>
|
<small>by Linus Kämmerer</small>
|
||||||
</BaseTitle>
|
</BaseTitle>
|
||||||
<BaseTitle size="tiny">
|
<BaseSection>
|
||||||
<b-link href="https://gist.github.com/linuskmr/856459cdf6c7ea460503b92e00b2aa26">
|
<BaseTitle size="tiny">
|
||||||
<b-icon-github></b-icon-github>
|
<b-link
|
||||||
GitHub
|
href="https://gist.github.com/linuskmr/f89ac638da036e25d67e147ece67577c"
|
||||||
</b-link>
|
>
|
||||||
</BaseTitle>
|
<b-icon-github></b-icon-github>
|
||||||
<p class="monospace">
|
GitHub
|
||||||
Python script to convert exported Juggl data from a JSON to a CSV file.
|
</b-link>
|
||||||
</p>
|
</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>
|
||||||
</LayoutMinimal>
|
</LayoutMinimal>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -21,15 +46,16 @@
|
||||||
// @ is an alias to /src
|
// @ is an alias to /src
|
||||||
import LayoutMinimal from "@/components/layout/LayoutMinimal";
|
import LayoutMinimal from "@/components/layout/LayoutMinimal";
|
||||||
import BaseTitle from "@/components/base/BaseTitle";
|
import BaseTitle from "@/components/base/BaseTitle";
|
||||||
|
import BaseSection from "../components/base/BaseSection.vue";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "ToolsDocumentation",
|
name: "ToolsDocumentation",
|
||||||
components: {
|
components: {
|
||||||
LayoutMinimal,
|
LayoutMinimal,
|
||||||
BaseTitle
|
BaseTitle,
|
||||||
|
BaseSection
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="sass" scoped>
|
<style lang="sass" scoped></style>
|
||||||
</style>
|
|
||||||
|
|
Loading…
Reference in a new issue