├── .gitignore ├── README.md ├── footer.html ├── header.html ├── images ├── array-access.png ├── array-lookup.png ├── array-push-length.png ├── awesome.jpg ├── bash-sleep.png ├── cat.gif ├── console-replace.gif ├── console-replace.png ├── console-strings.gif ├── console-strings.png ├── console-variables.gif ├── console-variables.png ├── console.gif ├── console.png ├── custom-function-call-variable.gif ├── custom-function-call-variable.png ├── custom-function-call.gif ├── custom-function-call.png ├── custom-function-console-log.gif ├── custom-function-console-log.png ├── custom-function-manually.gif ├── custom-function-manually.png ├── custom-function-no-return.gif ├── custom-function-no-return.png ├── customers1.png ├── customers2.png ├── customers3.png ├── customers4.png ├── customers5.jpg ├── dealwithit.gif ├── jsforcats.icns ├── jsforcats.ico ├── jsforcats.png ├── object-lookup.png ├── substack-cats.png ├── times-loop.png ├── underscore-first.png ├── underscore-source.png ├── underscore.gif └── yarnify.png ├── index.html ├── javascripts ├── generic.js ├── javascript.js └── rainbow.js ├── jsforcats.md ├── main.js ├── package.json ├── render.js └── stylesheets ├── rainbow.github.css └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | out 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/README.md -------------------------------------------------------------------------------- /footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/footer.html -------------------------------------------------------------------------------- /header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/header.html -------------------------------------------------------------------------------- /images/array-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/array-access.png -------------------------------------------------------------------------------- /images/array-lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/array-lookup.png -------------------------------------------------------------------------------- /images/array-push-length.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/array-push-length.png -------------------------------------------------------------------------------- /images/awesome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/awesome.jpg -------------------------------------------------------------------------------- /images/bash-sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/bash-sleep.png -------------------------------------------------------------------------------- /images/cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/cat.gif -------------------------------------------------------------------------------- /images/console-replace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/console-replace.gif -------------------------------------------------------------------------------- /images/console-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/console-replace.png -------------------------------------------------------------------------------- /images/console-strings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/console-strings.gif -------------------------------------------------------------------------------- /images/console-strings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/console-strings.png -------------------------------------------------------------------------------- /images/console-variables.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/console-variables.gif -------------------------------------------------------------------------------- /images/console-variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/console-variables.png -------------------------------------------------------------------------------- /images/console.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/console.gif -------------------------------------------------------------------------------- /images/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/console.png -------------------------------------------------------------------------------- /images/custom-function-call-variable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/custom-function-call-variable.gif -------------------------------------------------------------------------------- /images/custom-function-call-variable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/custom-function-call-variable.png -------------------------------------------------------------------------------- /images/custom-function-call.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/custom-function-call.gif -------------------------------------------------------------------------------- /images/custom-function-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/custom-function-call.png -------------------------------------------------------------------------------- /images/custom-function-console-log.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/custom-function-console-log.gif -------------------------------------------------------------------------------- /images/custom-function-console-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/custom-function-console-log.png -------------------------------------------------------------------------------- /images/custom-function-manually.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/custom-function-manually.gif -------------------------------------------------------------------------------- /images/custom-function-manually.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/custom-function-manually.png -------------------------------------------------------------------------------- /images/custom-function-no-return.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/custom-function-no-return.gif -------------------------------------------------------------------------------- /images/custom-function-no-return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/custom-function-no-return.png -------------------------------------------------------------------------------- /images/customers1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/customers1.png -------------------------------------------------------------------------------- /images/customers2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/customers2.png -------------------------------------------------------------------------------- /images/customers3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/customers3.png -------------------------------------------------------------------------------- /images/customers4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/customers4.png -------------------------------------------------------------------------------- /images/customers5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/customers5.jpg -------------------------------------------------------------------------------- /images/dealwithit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/dealwithit.gif -------------------------------------------------------------------------------- /images/jsforcats.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/jsforcats.icns -------------------------------------------------------------------------------- /images/jsforcats.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/jsforcats.ico -------------------------------------------------------------------------------- /images/jsforcats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/jsforcats.png -------------------------------------------------------------------------------- /images/object-lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/object-lookup.png -------------------------------------------------------------------------------- /images/substack-cats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/substack-cats.png -------------------------------------------------------------------------------- /images/times-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/times-loop.png -------------------------------------------------------------------------------- /images/underscore-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/underscore-first.png -------------------------------------------------------------------------------- /images/underscore-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/underscore-source.png -------------------------------------------------------------------------------- /images/underscore.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/underscore.gif -------------------------------------------------------------------------------- /images/yarnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/images/yarnify.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/index.html -------------------------------------------------------------------------------- /javascripts/generic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/javascripts/generic.js -------------------------------------------------------------------------------- /javascripts/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/javascripts/javascript.js -------------------------------------------------------------------------------- /javascripts/rainbow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/javascripts/rainbow.js -------------------------------------------------------------------------------- /jsforcats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/jsforcats.md -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/package.json -------------------------------------------------------------------------------- /render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/render.js -------------------------------------------------------------------------------- /stylesheets/rainbow.github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/stylesheets/rainbow.github.css -------------------------------------------------------------------------------- /stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlord/javascript-for-cats-electron/HEAD/stylesheets/style.css --------------------------------------------------------------------------------