You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+8-10
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,14 @@ This is a work in progress and not all functionalities may function correctly (o
4
4
5
5
# practicestuff
6
6
7
-
**practicestuff** is a CLI app designed to help you practice skills by asking questions and checking your answers. At the end, you'll see a number of correct answers, as well as some statistics. You can stop early by pressing `Ctrl+C`.
7
+
**practicestuff** is a CLI app designed to help you practise skills by asking questions and checking your answers. At the end, you'll see a number of correct answers, as well as some statistics. You can stop early by pressing `Ctrl+C`.
@@ -26,11 +26,15 @@ The application is somewhat configurable. Following options are available:
26
26
27
27
### Powers
28
28
29
-
Allows to practice powers. Configurable parameters include:
29
+
Allows to practise powers. Configurable parameters include:
30
30
31
31
- base (default: 2)
32
32
- exponent range (default: 1-16)
33
33
34
+
### Times table
35
+
36
+
Allows to practise multiplications. Factors' range is configurable (default: 1-10 (regular times table)).
37
+
34
38
# Development
35
39
36
40
## Initial assumptions
@@ -57,12 +61,6 @@ Allows to practice powers. Configurable parameters include:
57
61
- question generation w/ options
58
62
- tests
59
63
60
-
### Multiplication table
61
-
62
-
- help & usage prompts
63
-
- question generation w/ options
64
-
- tests
65
-
66
64
### Improvements
67
65
68
66
- coloured output (termcolor?) with --no-color option
@@ -72,6 +70,6 @@ Allows to practice powers. Configurable parameters include:
72
70
73
71
## What's next & bug reports
74
72
75
-
The application in its current state suits my needs, but I'm open for proposals, either for new skills to practice or more configurability. If you feel that the app lacks something, feel free to open an issue or a PR! I'd be more than happy.
73
+
The application in its current state suits my needs, but I'm open for proposals, either for new skills to practise or more configurability. If you feel that the app lacks something, feel free to open an issue or a PR! I'd be more than happy.
76
74
77
75
As for the bugs, there are some for sure. If you see one, report it!
Copy file name to clipboardexpand all lines: src/skill/powers.rs
+1-1
Original file line number
Diff line number
Diff line change
@@ -96,7 +96,7 @@ impl Powers {
96
96
.default_value()
97
97
.to_string();
98
98
99
-
format!("Practice powers with a customizable base and exponent range. By default, the base is {default_base}, with exponents ranging from {default_lower_boundary} to {default_upper_boundary}.")
99
+
format!("Practise powers with a customisable base and exponent range. By default, the base is {default_base}, with exponents ranging from {default_lower_boundary} to {default_upper_boundary}.")
format!("Practice multiplication table with a customisable factor range. By default, the factor range mimics the normal times table ({default_lower_boundary}-{default_upper_boundary}).")
118
+
format!("Practise multiplication with a customisable factors' range. By default, the range of factors mimics the normal times table ({default_lower_boundary}-{default_upper_boundary}).")
0 commit comments