about summary refs log tree commit diff
path: root/scratch/brilliant/README.md
AgeCommit message (Collapse)AuthorFilesLines
2020-08-12 Prefer snake-shift instead of a row-by-row shiftWilliam Carroll1-9/+9
Per the assignment's instructions, the `Shift n` operation should treat the *entire keyboard* like a cycle and shift that. I was erroneously treating *each row* like a cycle and shifting those one-by-one. This change fixes that. In addition, it also: - Updates README.md with expected inputs and outputs - Updates test suite - Adds `split` dependency to {default,shell}.nix
2020-08-12 Provide more useful instructions for building this projectWilliam Carroll1-17/+37
TL;DR: - include a default.nix to allow users to build an named executable - emphasize in the README that the user needs Nix to build this project - pin nixpkgs to a specific commit and fetch it from GitHub
2020-08-06 Re-type type using the altered keyboardWilliam Carroll1-6/+37
Remember: always read the instructions; that's the most important part.
2020-08-05 Apply a series of transformation to a QWERTY keyboardWilliam Carroll1-0/+31
TL;DR: - Accept input from the CLI - Add a project README.md