├── .gitignore ├── Makefile ├── README.md ├── Typing4 ├── Typing4.1 └── main.c ├── accessories.c ├── accessories.h ├── cjalgorithm.c ├── cjalgorithm.h ├── data ├── allChars.txt └── allDigraphs.txt ├── doc ├── Alternative Layouts ├── Conceptual ├── Fitness.md ├── Fitness.txt ├── LICENSE ├── Saved Full Keyboards ├── Saved Keyboards ├── TODO.org ├── Timing Data ├── allChars.txt ├── allDigraphs.txt ├── allLayouts.txt ├── fullLayoutStore.txt ├── kinesisLayoutStore.txt └── layoutStore.txt ├── extconf.rb ├── fitness.c ├── freq_types ├── chars_00allProse.txt ├── chars_01allCasual.txt ├── chars_02allC.txt ├── chars_02allJava.txt ├── chars_02allPerl.txt ├── chars_02allRuby.txt ├── chars_03allFormal.txt ├── chars_04allNews.txt ├── digraphs_00allProse.txt ├── digraphs_01allCasual.txt ├── digraphs_02allC.txt ├── digraphs_02allJava.txt ├── digraphs_02allPerl.txt ├── digraphs_02allRuby.txt ├── digraphs_03allFormal.txt └── digraphs_04allNews.txt ├── keyboard.c ├── keyboard.h ├── optimizer.c ├── rb_wrapper.c ├── tools.c ├── tools.h ├── trikeys.c ├── unit.c ├── values.c └── values.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/README.md -------------------------------------------------------------------------------- /Typing4/Typing4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/Typing4/Typing4.1 -------------------------------------------------------------------------------- /Typing4/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/Typing4/main.c -------------------------------------------------------------------------------- /accessories.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/accessories.c -------------------------------------------------------------------------------- /accessories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/accessories.h -------------------------------------------------------------------------------- /cjalgorithm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/cjalgorithm.c -------------------------------------------------------------------------------- /cjalgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/cjalgorithm.h -------------------------------------------------------------------------------- /data/allChars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/data/allChars.txt -------------------------------------------------------------------------------- /data/allDigraphs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/data/allDigraphs.txt -------------------------------------------------------------------------------- /doc/Alternative Layouts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/doc/Alternative Layouts -------------------------------------------------------------------------------- /doc/Conceptual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/doc/Conceptual -------------------------------------------------------------------------------- /doc/Fitness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/doc/Fitness.md -------------------------------------------------------------------------------- /doc/Fitness.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/doc/Fitness.txt -------------------------------------------------------------------------------- /doc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/doc/LICENSE -------------------------------------------------------------------------------- /doc/Saved Full Keyboards: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/doc/Saved Full Keyboards -------------------------------------------------------------------------------- /doc/Saved Keyboards: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/doc/Saved Keyboards -------------------------------------------------------------------------------- /doc/TODO.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/doc/TODO.org -------------------------------------------------------------------------------- /doc/Timing Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/doc/Timing Data -------------------------------------------------------------------------------- /doc/allChars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/doc/allChars.txt -------------------------------------------------------------------------------- /doc/allDigraphs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/doc/allDigraphs.txt -------------------------------------------------------------------------------- /doc/allLayouts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/doc/allLayouts.txt -------------------------------------------------------------------------------- /doc/fullLayoutStore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/doc/fullLayoutStore.txt -------------------------------------------------------------------------------- /doc/kinesisLayoutStore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/doc/kinesisLayoutStore.txt -------------------------------------------------------------------------------- /doc/layoutStore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/doc/layoutStore.txt -------------------------------------------------------------------------------- /extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | create_makefile("rb_wrapper") -------------------------------------------------------------------------------- /fitness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/fitness.c -------------------------------------------------------------------------------- /freq_types/chars_00allProse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/freq_types/chars_00allProse.txt -------------------------------------------------------------------------------- /freq_types/chars_01allCasual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/freq_types/chars_01allCasual.txt -------------------------------------------------------------------------------- /freq_types/chars_02allC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/freq_types/chars_02allC.txt -------------------------------------------------------------------------------- /freq_types/chars_02allJava.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/freq_types/chars_02allJava.txt -------------------------------------------------------------------------------- /freq_types/chars_02allPerl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/freq_types/chars_02allPerl.txt -------------------------------------------------------------------------------- /freq_types/chars_02allRuby.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/freq_types/chars_02allRuby.txt -------------------------------------------------------------------------------- /freq_types/chars_03allFormal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/freq_types/chars_03allFormal.txt -------------------------------------------------------------------------------- /freq_types/chars_04allNews.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/freq_types/chars_04allNews.txt -------------------------------------------------------------------------------- /freq_types/digraphs_00allProse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/freq_types/digraphs_00allProse.txt -------------------------------------------------------------------------------- /freq_types/digraphs_01allCasual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/freq_types/digraphs_01allCasual.txt -------------------------------------------------------------------------------- /freq_types/digraphs_02allC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/freq_types/digraphs_02allC.txt -------------------------------------------------------------------------------- /freq_types/digraphs_02allJava.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/freq_types/digraphs_02allJava.txt -------------------------------------------------------------------------------- /freq_types/digraphs_02allPerl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/freq_types/digraphs_02allPerl.txt -------------------------------------------------------------------------------- /freq_types/digraphs_02allRuby.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/freq_types/digraphs_02allRuby.txt -------------------------------------------------------------------------------- /freq_types/digraphs_03allFormal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/freq_types/digraphs_03allFormal.txt -------------------------------------------------------------------------------- /freq_types/digraphs_04allNews.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/freq_types/digraphs_04allNews.txt -------------------------------------------------------------------------------- /keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/keyboard.c -------------------------------------------------------------------------------- /keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/keyboard.h -------------------------------------------------------------------------------- /optimizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/optimizer.c -------------------------------------------------------------------------------- /rb_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/rb_wrapper.c -------------------------------------------------------------------------------- /tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/tools.c -------------------------------------------------------------------------------- /tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/tools.h -------------------------------------------------------------------------------- /trikeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/trikeys.c -------------------------------------------------------------------------------- /unit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/unit.c -------------------------------------------------------------------------------- /values.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/values.c -------------------------------------------------------------------------------- /values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeldickens/Typing/HEAD/values.h --------------------------------------------------------------------------------