README update
This commit is contained in:
parent
678f0d0712
commit
04823640eb
2 changed files with 6 additions and 2 deletions
|
@ -1,9 +1,9 @@
|
|||
# fasttyper
|
||||
[![](https://github.com/ickyicky/fasttyper/blob/main/doc/example.png?raw=true)](https://github.com/ickyicky/fasttyper)
|
||||
[![](https://github.com/ickyicky/fasttyper/blob/main/doc/example.gif?raw=true)](https://github.com/ickyicky/fasttyper)
|
||||
|
||||
# About
|
||||
|
||||
_Fasttyper_ is minimalistic typing test based on user provided exercising text. It supports both reading from text files and stdin supporting wide range of usecases.
|
||||
_Fasttyper_ is minimalistic typing test based on user provided exercising text. It supports both reading from text files and stdin supporting wide range of usecases. The goal was to create it as simple as it can be, without any additional bloatware functionalities. That means that _Fasttyper_ doesn't come with build in test generator and you have to provide your own scripts generating tests. Some examples of such scrips are providen in [Usage section](#usage).
|
||||
|
||||
# Usage
|
||||
|
||||
|
@ -23,6 +23,10 @@ or if you want to randomize words from given file with shuf, and then keep them
|
|||
|
||||
`shuf -n5 /usr/share/dict/* | awk 1 ORS=' ' | python -m fasttyper`
|
||||
|
||||
You can use another similar projects set of words as well, for example to create test with 20 random words from [Monkeytype's](https://github.com/Miodec/monkeytype) english 100 dictionary use:
|
||||
|
||||
`curl -s https://raw.githubusercontent.com/Miodec/monkeytype/master/static/languages/english.json | python3 -c "import sys, json; print('\n'.join(json.load(sys.stdin)['words']))" | shuf -n20 | awk 1 ORS=' ' | python3 -m fasttyper`
|
||||
|
||||
# Known issues
|
||||
|
||||
Too large text brakes the app.
|
||||
|
|
BIN
doc/example.gif
Normal file
BIN
doc/example.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 MiB |
Loading…
Reference in a new issue