Skip to content

Commit

Permalink
fix: article
Browse files Browse the repository at this point in the history
  • Loading branch information
karolis krusinskas committed Jan 24, 2023
1 parent 6759e33 commit 24ef8df
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 34 deletions.
4 changes: 1 addition & 3 deletions components/Article.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
{{ title }}
</h2>
</div>
<div>
<slot />
</div>
<slot name="content" />
</article>
</template>

Expand Down
68 changes: 37 additions & 31 deletions pages/educate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,19 @@
src="~assets/complexity.svg"
>
</template>
How many tricky algorithms or query's you will have to write.
<p class="mt-3">
<b>Example:</b>
<ul class="list-disc pl-5 mt-3">
<li>Task requires to write tricky algorithms of queries (high complexity).</li>
<li>Task requires to print different word depending on date (low complexity).</li>
</ul>
<br>
First task is very hard and will require a lot of brain cells to do.
Second task is easy and don't require knowledge structure.
</p>
<template v-slot:content>
How many tricky algorithms or query's you will have to write.
<p class="mt-3">
<b>Example:</b>
<ul class="list-disc pl-5 mt-3">
<li>Task requires to write tricky algorithms of queries (high complexity).</li>
<li>Task requires to print different word depending on date (low complexity).</li>
</ul>
<br>
First task is very hard and will require a lot of brain cells to do.
Second task is easy and don't require knowledge structure.
</p>
</template>
</Article>

<Article title="Effort">
Expand All @@ -41,15 +43,17 @@
src="~assets/hammer.svg"
>
</template>
<p class="mt-3">
<b>Example:</b>
<ul class="list-disc pl-5 mt-3">
<li>Task requires to update service in controller (low effort).</li>
<li>Task requires to update same service in 4 different repositories (high effort).</li>
</ul>
<br>
Both of these tasks have same Complexity, but requires different Effort.
</p>
<template v-slot:content>
<p class="mt-3">
<b>Example:</b>
<ul class="list-disc pl-5 mt-3">
<li>Task requires to update service in controller (low effort).</li>
<li>Task requires to update same service in 4 different repositories (high effort).</li>
</ul>
<br>
Both of these tasks have same Complexity, but requires different Effort.
</p>
</template>
</Article>

<Article title="Uncertainty">
Expand All @@ -61,17 +65,19 @@
src="~assets/question.svg"
>
</template>
<p class="mt-3">
<b>Example:</b>
<ul class="list-disc pl-5 mt-3">
<li>Task requires to update service in project that you created (low uncertainty).</li>
<li>Task requires to update service in project that you are hearing for the first time and it is written in Fortran (hight uncertainty).</li>
</ul>
<br>
These tasks are similar in sense that they require to update service,
but in first example it is more clear what to do, because you are familiar with project.
In second example you are not sure what how/where changes needs to be done so Uncertainty is high.
</p>
<template v-slot:content>
<p class="mt-3">
<b>Example:</b>
<ul class="list-disc pl-5 mt-3">
<li>Task requires to update service in project that you created (low uncertainty).</li>
<li>Task requires to update service in project that you are hearing for the first time and it is written in Fortran (hight uncertainty).</li>
</ul>
<br>
These tasks are similar in sense that they require to update service,
but in first example it is more clear what to do, because you are familiar with project.
In second example you are not sure what how/where changes needs to be done so Uncertainty is high.
</p>
</template>
</Article>
</Container>
</template>

0 comments on commit 24ef8df

Please sign in to comment.