2020-08-06 00:30:25 +02:00
|
|
|
# Transform QWERTY
|
|
|
|
|
2020-08-06 01:18:44 +02:00
|
|
|
Apply a series of transforms to a QWERTY keyboard then use the new keyboard to
|
|
|
|
re-type a passage of text.
|
2020-08-06 00:30:25 +02:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2020-08-06 01:18:44 +02:00
|
|
|
Here are some `--help` and usage examples:
|
2020-08-06 00:30:25 +02:00
|
|
|
|
|
|
|
```shell
|
|
|
|
$ runhaskell Main.hs --help
|
2020-08-06 01:18:44 +02:00
|
|
|
Usage: Main.hs (-t|--transforms ARG) (-p|--passage ARG)
|
2020-08-06 00:30:25 +02:00
|
|
|
Transform a QWERTY keyboard using a string of commands
|
|
|
|
|
|
|
|
Available options:
|
|
|
|
-t,--transforms ARG String of transforms where (e.g. "HHVS12VHVHS3")
|
2020-08-06 01:18:44 +02:00
|
|
|
-p,--passage ARG Input text to re-type
|
2020-08-06 00:30:25 +02:00
|
|
|
-h,--help Show this help text
|
|
|
|
```
|
|
|
|
|
2020-08-06 01:18:44 +02:00
|
|
|
Now a working example:
|
2020-08-06 00:30:25 +02:00
|
|
|
|
|
|
|
```shell
|
2020-08-06 01:18:44 +02:00
|
|
|
$ runhaskell Main.hs --transforms=HHVS12VHVHS3 --passage='Hello,Brilliant.'
|
|
|
|
Typing: "Hello,Brilliant."
|
|
|
|
On this keyboard:
|
2020-08-06 00:30:25 +02:00
|
|
|
[N][M][,][.][/][Z][X][C][V][B]
|
|
|
|
[H][J][K][L][;][A][S][D][F][G]
|
|
|
|
[Y][U][I][O][P][Q][W][E][R][T]
|
|
|
|
[6][7][8][9][0][1][2][3][4][5]
|
2020-08-06 01:18:44 +02:00
|
|
|
Result: QKRRF30LDRRDY1;4
|
|
|
|
```
|
|
|
|
|
|
|
|
...and an example with an erroneous input (i.e. `!`):
|
|
|
|
|
|
|
|
```shell
|
|
|
|
$ runhaskell Main.hs --transforms=HHVS12VHVHS3 --passage='Hello,Brilliant!'
|
|
|
|
Typing: "Hello,Brilliant!"
|
|
|
|
On this keyboard:
|
|
|
|
[N][M][,][.][/][Z][X][C][V][B]
|
|
|
|
[H][J][K][L][;][A][S][D][F][G]
|
|
|
|
[Y][U][I][O][P][Q][W][E][R][T]
|
|
|
|
[6][7][8][9][0][1][2][3][4][5]
|
|
|
|
Looks like at least one of the characters in your input passage doesn't fit on our QWERTY keyboard:
|
|
|
|
[1][2][3][4][5][6][7][8][9][0]
|
|
|
|
[Q][W][E][R][T][Y][U][I][O][P]
|
|
|
|
[A][S][D][F][G][H][J][K][L][;]
|
|
|
|
[Z][X][C][V][B][N][M][,][.][/]
|
2020-08-06 00:30:25 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## Environment
|
|
|
|
|
2020-08-06 01:18:44 +02:00
|
|
|
You'll need `runhaskell` and a few other Haskell libraries, so call `nix-shell`
|
|
|
|
from this project's root directory.
|
|
|
|
|
|
|
|
## Testing
|
|
|
|
|
|
|
|
To run the test suite:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
$ runhaskell Spec.hs
|
|
|
|
```
|