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 4afd303 commit a6c08cc
Showing 1 changed file with 6 additions and 18 deletions.
24 changes: 6 additions & 18 deletions pages/educate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</template>
<template v-slot:content>
How many tricky algorithms or query's you will have to write.
<p class="mt-3">
<div 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>
Expand All @@ -30,7 +30,7 @@
<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>
</div>
</template>
</Article>

Expand All @@ -44,15 +44,15 @@
>
</template>
<template v-slot:content>
<p class="mt-3">
<div 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>
</div>
</template>
</Article>

Expand All @@ -66,7 +66,7 @@
>
</template>
<template v-slot:content>
<p class="mt-3">
<div 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>
Expand All @@ -76,20 +76,8 @@
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>
</div>
</template>
</Article>

<div>
<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>
</div>
</Container>
</template>

0 comments on commit a6c08cc

Please sign in to comment.