Last active
August 29, 2015 14:06
-
-
Save markalfred/aeae4ead9c05af7a5583 to your computer and use it in GitHub Desktop.
Revisions
-
Mark Battersby revised this gist
Sep 16, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ # Find the longest words you can type, alternating hands at each character. Y and B excluded. egrep "^[$right]?([$left][$right]){6,}[$left]?\$" /usr/share/dict/words # Qwerty left=qwertasdfgzxcv -
Mark Battersby renamed this gist
Sep 15, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Mark Battersby renamed this gist
Sep 15, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Mark Battersby revised this gist
Sep 15, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,11 @@ # Find the longest words you can type, alternating hands at each character. Y and B excluded. egrep "^([$left][$right]){6,}\$" /usr/share/dict/words # Qwerty left=qwertasdfgzxcv right=uiophjklnm # Colemak left=qwfpgarstdzxcv right=luhneiokm -
Mark Battersby revised this gist
Sep 15, 2014 . 2 changed files with 15 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +0,0 @@ This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ # Find the longest words you can type, alternating hands at each character. Y and B excluded. # Qwerty left=qwertasdfgzxcv right=uiophjklnm egrep "^([$left][$right]){6,}\$" /usr/share/dict/words # Colemak left=qwfpgarstdzxcv right=luhneiokm # Dvorak left=pyaoeuiqjk right=gcrldhtnsbmwvz -
Mark Battersby created this gist
Sep 15, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ # Find the longest words you can type, alternating hands at each character. Y and B excluded. set left qwertasdfgzxcv set right uiophjklnm egrep "^([$left][$right]){6,}\$" /usr/share/dict/words