What is this?
This is a simple website designed to train user shortcut key skills by editing text/code with the fewest keystrokes possible. The user is presented with a challenge of a corresponding difficulty to replicate a target text by editing an initial editable text.
How to Contribute
You can help by adding more challenges in challenges.json
!
Visit the GitHub repository and submit a pull request:
Example Challenge Format
{
"difficulty": "medium",
"instruction": "Fix the indentation",
"editable": " let a = 1; \n let b = 2; \n let c = 3; \n let d = 4; \nconsole.log(a+b+c+d);",
"target": "let a = 1;\nlet b = 2;\nlet c = 3;\nlet d = 4;\nconsole.log(a+b+c+d);",
"keystrokes": 6
}