├── LICENSE ├── README.md ├── app ├── .babelrc ├── .electron-vue │ ├── build.js │ ├── dev-client.js │ ├── dev-runner.js │ ├── webpack.main.config.js │ ├── webpack.renderer.config.js │ └── webpack.web.config.js ├── .gitignore ├── .travis.yml ├── README.md ├── appveyor.yml ├── build │ └── icons │ │ ├── 256x256.png │ │ ├── icon.icns │ │ └── icon.ico ├── dist │ ├── electron │ │ └── .gitkeep │ └── web │ │ └── .gitkeep ├── package.json ├── src │ ├── index.ejs │ ├── main │ │ ├── index.dev.js │ │ └── index.js │ ├── renderer │ │ ├── App.vue │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── logo.svg │ │ │ └── model.json │ │ ├── components │ │ │ ├── Block.vue │ │ │ ├── Formula.vue │ │ │ ├── Hint.vue │ │ │ ├── Recomend.vue │ │ │ └── Terminal.vue │ │ ├── main.js │ │ └── router │ │ │ └── index.js │ └── xterm.css ├── static │ └── .gitkeep └── yarn.lock ├── demo └── log.csv ├── docs ├── CNAME ├── assets │ ├── favicon.png │ ├── logo.svg │ └── screen.png ├── index.html └── style.css ├── model ├── .gitignore ├── README.md ├── cmd_data.txt ├── getModel.js ├── model.ipynb └── model │ ├── cat.json │ ├── cd.json │ ├── clear.json │ ├── cp.json │ ├── find.json │ ├── git.json │ ├── ls.json │ ├── mkdir.json │ ├── npm.json │ ├── pwd.json │ ├── rm.json │ ├── touch.json │ └── yarn.json └── thumb.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/README.md -------------------------------------------------------------------------------- /app/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/.babelrc -------------------------------------------------------------------------------- /app/.electron-vue/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/.electron-vue/build.js -------------------------------------------------------------------------------- /app/.electron-vue/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/.electron-vue/dev-client.js -------------------------------------------------------------------------------- /app/.electron-vue/dev-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/.electron-vue/dev-runner.js -------------------------------------------------------------------------------- /app/.electron-vue/webpack.main.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/.electron-vue/webpack.main.config.js -------------------------------------------------------------------------------- /app/.electron-vue/webpack.renderer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/.electron-vue/webpack.renderer.config.js -------------------------------------------------------------------------------- /app/.electron-vue/webpack.web.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/.electron-vue/webpack.web.config.js -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/.travis.yml -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/README.md -------------------------------------------------------------------------------- /app/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/appveyor.yml -------------------------------------------------------------------------------- /app/build/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/build/icons/256x256.png -------------------------------------------------------------------------------- /app/build/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/build/icons/icon.icns -------------------------------------------------------------------------------- /app/build/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/build/icons/icon.ico -------------------------------------------------------------------------------- /app/dist/electron/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/dist/web/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/package.json -------------------------------------------------------------------------------- /app/src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/src/index.ejs -------------------------------------------------------------------------------- /app/src/main/index.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/src/main/index.dev.js -------------------------------------------------------------------------------- /app/src/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/src/main/index.js -------------------------------------------------------------------------------- /app/src/renderer/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/src/renderer/App.vue -------------------------------------------------------------------------------- /app/src/renderer/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/renderer/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/src/renderer/assets/logo.svg -------------------------------------------------------------------------------- /app/src/renderer/assets/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/src/renderer/assets/model.json -------------------------------------------------------------------------------- /app/src/renderer/components/Block.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/src/renderer/components/Block.vue -------------------------------------------------------------------------------- /app/src/renderer/components/Formula.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/src/renderer/components/Formula.vue -------------------------------------------------------------------------------- /app/src/renderer/components/Hint.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/src/renderer/components/Hint.vue -------------------------------------------------------------------------------- /app/src/renderer/components/Recomend.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/src/renderer/components/Recomend.vue -------------------------------------------------------------------------------- /app/src/renderer/components/Terminal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/src/renderer/components/Terminal.vue -------------------------------------------------------------------------------- /app/src/renderer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/src/renderer/main.js -------------------------------------------------------------------------------- /app/src/renderer/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/src/renderer/router/index.js -------------------------------------------------------------------------------- /app/src/xterm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/src/xterm.css -------------------------------------------------------------------------------- /app/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/app/yarn.lock -------------------------------------------------------------------------------- /demo/log.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/demo/log.csv -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | eterm.tokyo -------------------------------------------------------------------------------- /docs/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/docs/assets/favicon.png -------------------------------------------------------------------------------- /docs/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/docs/assets/logo.svg -------------------------------------------------------------------------------- /docs/assets/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/docs/assets/screen.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/docs/style.css -------------------------------------------------------------------------------- /model/.gitignore: -------------------------------------------------------------------------------- 1 | # jupyter labの設定ファイル 2 | .ipynb_checkpoints 3 | # モデルの追加 4 | .cmd_data.txt 5 | -------------------------------------------------------------------------------- /model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/model/README.md -------------------------------------------------------------------------------- /model/cmd_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/model/cmd_data.txt -------------------------------------------------------------------------------- /model/getModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/model/getModel.js -------------------------------------------------------------------------------- /model/model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/model/model.ipynb -------------------------------------------------------------------------------- /model/model/cat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/model/model/cat.json -------------------------------------------------------------------------------- /model/model/cd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/model/model/cd.json -------------------------------------------------------------------------------- /model/model/clear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/model/model/clear.json -------------------------------------------------------------------------------- /model/model/cp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/model/model/cp.json -------------------------------------------------------------------------------- /model/model/find.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/model/model/find.json -------------------------------------------------------------------------------- /model/model/git.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/model/model/git.json -------------------------------------------------------------------------------- /model/model/ls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/model/model/ls.json -------------------------------------------------------------------------------- /model/model/mkdir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/model/model/mkdir.json -------------------------------------------------------------------------------- /model/model/npm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/model/model/npm.json -------------------------------------------------------------------------------- /model/model/pwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/model/model/pwd.json -------------------------------------------------------------------------------- /model/model/rm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/model/model/rm.json -------------------------------------------------------------------------------- /model/model/touch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/model/model/touch.json -------------------------------------------------------------------------------- /model/model/yarn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/model/model/yarn.json -------------------------------------------------------------------------------- /thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jphacks/NG_1811/HEAD/thumb.png --------------------------------------------------------------------------------