Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
RincewindWizzard committed Feb 17, 2024
1 parent b1eed71 commit c8d677d
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# T-Shirt calculator

This is a straightforward calculator designed to help you estimate the amount of work you can accomplish
within a specific timeframe.
Each work task is categorized based on its size,
often referred to as a "t-shirt size", which is determined by the following criteria:

| Name | Minimum | Maximum |
|------|---------|---------|
| 3XS | 1 PT | 5 PT |
| XXS | 6 PT | 10 PT |
| XS | 11 PT | 25 PT |
| S | 26 PT | 50 PT |
| M | 51 PT | 100 PT |
| L | 101 PT | 200 PT |
| XL | 201 PT | 400 PT |

All values between the minimum and maximum are equally likely.

The term "Capacity" represents the total capability of all your workers.

We create a histogram of all probable outcomes.

"Min Capacity" is the minimum required capacity to archive the desired confidence level.

The "confidence level" is the percentage of the success probability that we aim to achieve,
with a default value of 95%.


You can see it in action at [rincewindwizzard.github.io/tshirt-calculator/](https://rincewindwizzard.github.io/tshirt-calculator/?3XS=0&L=0&M=0&S=0&XL=0&XS=0&XXS=0&capacity=0&confidenceLevel=95).
9 changes: 9 additions & 0 deletions src/templates/body.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,12 @@
</div>
</div>
</section>


<footer class="footer">
<div class="content has-text-centered">
<p>
Feel free to star and fork me on <a href="https://github.com/RincewindWizzard/tshirt-calculator">Github</a>.
</p>
</div>
</footer>

0 comments on commit c8d677d

Please sign in to comment.