✨ (arcile)
This commit is contained in:
24
src/modules/article/FlowHypothesis.vue
Normal file
24
src/modules/article/FlowHypothesis.vue
Normal file
@@ -0,0 +1,24 @@
|
||||
<script setup lang="ts"></script>
|
||||
|
||||
<template>
|
||||
<div class="flow-hypothesis">
|
||||
<p>Hypothesis:</p>
|
||||
<ol>
|
||||
<li>it takes the same amount of time for each team to complete a task</li>
|
||||
<li>
|
||||
teams know exactly what they need to produce their part, they will tag
|
||||
any defects they found when verifying the feature is good.
|
||||
</li>
|
||||
<li>the team where the defect appears must rework the feature.</li>
|
||||
<li>release team never fails</li>
|
||||
</ol>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped lang="scss">
|
||||
ol {
|
||||
li {
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
11
src/modules/article/FlowIntro.vue
Normal file
11
src/modules/article/FlowIntro.vue
Normal file
@@ -0,0 +1,11 @@
|
||||
<template>
|
||||
<div class="flow-intro">
|
||||
This article is here to plan ahead ourselves to what can be misconceptions
|
||||
on how to be effective. Teams will overproduce. They will do everything
|
||||
piece they can as they are autonomous. They will then struggle to get these
|
||||
pieces to the very end when they will transfer them to the others teams.
|
||||
Multitasking will drastically drop the productivity. So the fear of having
|
||||
nothing to give to the next team pushes us to produce just in case. Bugs
|
||||
lead to more bugs that lead to more bugs.
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user