├── .gitignore ├── .jshintrc ├── LICENSE ├── README.md ├── curveship.js ├── doc ├── concepts.html ├── publications.html ├── reference.html └── start.html ├── examples ├── hour │ ├── prim.html │ ├── prim.js │ └── story.js ├── index.html ├── prodigal │ ├── fabular.html │ ├── fabular.js │ └── story.js ├── robbery │ ├── detached.html │ ├── detached.js │ ├── obsessive.html │ ├── obsessive.js │ ├── story.js │ ├── witness.html │ └── witness.js └── waiting │ ├── casual.html │ ├── casual.js │ └── story.js ├── noun.js ├── referring ├── folktale.html ├── folktale.js ├── harry.html ├── harry.js ├── idiolect.html ├── idiolect.js ├── initials.html ├── initials.js ├── manners.html ├── manners.js ├── parable.html ├── parable.js ├── patrick.html ├── patrick.js ├── simplicity.html ├── simplicity.js └── story.js ├── small_logotype.png ├── style.css ├── test ├── brandnames │ ├── mundane.html │ ├── mundane.js │ ├── psychotic.html │ ├── psychotic.js │ └── story.js ├── grouping │ ├── index.html │ ├── narrator.js │ └── story.js ├── nameless │ ├── index.html │ ├── narrator.js │ └── story.js ├── possessives │ ├── index.html │ ├── narrator.js │ └── story.js └── spin │ ├── ellipsis.html │ ├── ellipsis.js │ ├── personal.html │ ├── personal.js │ ├── random.html │ ├── random.js │ ├── retrograde.html │ ├── retrograde.js │ ├── speakingNumber.html │ ├── speakingNumber.js │ └── story.js ├── verb.js └── work └── hour ├── new_prim.html ├── new_prim.js └── new_story.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion": 6 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/README.md -------------------------------------------------------------------------------- /curveship.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/curveship.js -------------------------------------------------------------------------------- /doc/concepts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/doc/concepts.html -------------------------------------------------------------------------------- /doc/publications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/doc/publications.html -------------------------------------------------------------------------------- /doc/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/doc/reference.html -------------------------------------------------------------------------------- /doc/start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/doc/start.html -------------------------------------------------------------------------------- /examples/hour/prim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/examples/hour/prim.html -------------------------------------------------------------------------------- /examples/hour/prim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/examples/hour/prim.js -------------------------------------------------------------------------------- /examples/hour/story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/examples/hour/story.js -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/prodigal/fabular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/examples/prodigal/fabular.html -------------------------------------------------------------------------------- /examples/prodigal/fabular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/examples/prodigal/fabular.js -------------------------------------------------------------------------------- /examples/prodigal/story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/examples/prodigal/story.js -------------------------------------------------------------------------------- /examples/robbery/detached.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/examples/robbery/detached.html -------------------------------------------------------------------------------- /examples/robbery/detached.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/examples/robbery/detached.js -------------------------------------------------------------------------------- /examples/robbery/obsessive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/examples/robbery/obsessive.html -------------------------------------------------------------------------------- /examples/robbery/obsessive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/examples/robbery/obsessive.js -------------------------------------------------------------------------------- /examples/robbery/story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/examples/robbery/story.js -------------------------------------------------------------------------------- /examples/robbery/witness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/examples/robbery/witness.html -------------------------------------------------------------------------------- /examples/robbery/witness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/examples/robbery/witness.js -------------------------------------------------------------------------------- /examples/waiting/casual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/examples/waiting/casual.html -------------------------------------------------------------------------------- /examples/waiting/casual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/examples/waiting/casual.js -------------------------------------------------------------------------------- /examples/waiting/story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/examples/waiting/story.js -------------------------------------------------------------------------------- /noun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/noun.js -------------------------------------------------------------------------------- /referring/folktale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/referring/folktale.html -------------------------------------------------------------------------------- /referring/folktale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/referring/folktale.js -------------------------------------------------------------------------------- /referring/harry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/referring/harry.html -------------------------------------------------------------------------------- /referring/harry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/referring/harry.js -------------------------------------------------------------------------------- /referring/idiolect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/referring/idiolect.html -------------------------------------------------------------------------------- /referring/idiolect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/referring/idiolect.js -------------------------------------------------------------------------------- /referring/initials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/referring/initials.html -------------------------------------------------------------------------------- /referring/initials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/referring/initials.js -------------------------------------------------------------------------------- /referring/manners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/referring/manners.html -------------------------------------------------------------------------------- /referring/manners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/referring/manners.js -------------------------------------------------------------------------------- /referring/parable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/referring/parable.html -------------------------------------------------------------------------------- /referring/parable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/referring/parable.js -------------------------------------------------------------------------------- /referring/patrick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/referring/patrick.html -------------------------------------------------------------------------------- /referring/patrick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/referring/patrick.js -------------------------------------------------------------------------------- /referring/simplicity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/referring/simplicity.html -------------------------------------------------------------------------------- /referring/simplicity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/referring/simplicity.js -------------------------------------------------------------------------------- /referring/story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/referring/story.js -------------------------------------------------------------------------------- /small_logotype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/small_logotype.png -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/style.css -------------------------------------------------------------------------------- /test/brandnames/mundane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/brandnames/mundane.html -------------------------------------------------------------------------------- /test/brandnames/mundane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/brandnames/mundane.js -------------------------------------------------------------------------------- /test/brandnames/psychotic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/brandnames/psychotic.html -------------------------------------------------------------------------------- /test/brandnames/psychotic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/brandnames/psychotic.js -------------------------------------------------------------------------------- /test/brandnames/story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/brandnames/story.js -------------------------------------------------------------------------------- /test/grouping/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/grouping/index.html -------------------------------------------------------------------------------- /test/grouping/narrator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/grouping/narrator.js -------------------------------------------------------------------------------- /test/grouping/story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/grouping/story.js -------------------------------------------------------------------------------- /test/nameless/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/nameless/index.html -------------------------------------------------------------------------------- /test/nameless/narrator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/nameless/narrator.js -------------------------------------------------------------------------------- /test/nameless/story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/nameless/story.js -------------------------------------------------------------------------------- /test/possessives/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/possessives/index.html -------------------------------------------------------------------------------- /test/possessives/narrator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/possessives/narrator.js -------------------------------------------------------------------------------- /test/possessives/story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/possessives/story.js -------------------------------------------------------------------------------- /test/spin/ellipsis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/spin/ellipsis.html -------------------------------------------------------------------------------- /test/spin/ellipsis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/spin/ellipsis.js -------------------------------------------------------------------------------- /test/spin/personal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/spin/personal.html -------------------------------------------------------------------------------- /test/spin/personal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/spin/personal.js -------------------------------------------------------------------------------- /test/spin/random.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/spin/random.html -------------------------------------------------------------------------------- /test/spin/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/spin/random.js -------------------------------------------------------------------------------- /test/spin/retrograde.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/spin/retrograde.html -------------------------------------------------------------------------------- /test/spin/retrograde.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/spin/retrograde.js -------------------------------------------------------------------------------- /test/spin/speakingNumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/spin/speakingNumber.html -------------------------------------------------------------------------------- /test/spin/speakingNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/spin/speakingNumber.js -------------------------------------------------------------------------------- /test/spin/story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/test/spin/story.js -------------------------------------------------------------------------------- /verb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/verb.js -------------------------------------------------------------------------------- /work/hour/new_prim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/work/hour/new_prim.html -------------------------------------------------------------------------------- /work/hour/new_prim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/work/hour/new_prim.js -------------------------------------------------------------------------------- /work/hour/new_story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickmontfort/curveship-js/HEAD/work/hour/new_story.js --------------------------------------------------------------------------------