├── .editorconfig ├── .gitignore ├── .nvmrc ├── .prettierrc ├── README.md ├── SECURITY.md ├── jilu.txt ├── package.json ├── question.html ├── question.md ├── smile.jpg ├── splash.html ├── src ├── answers │ ├── api.ts │ ├── day.ts │ ├── special.ts │ ├── types.ts │ └── weekly.ts ├── browser-window.ts ├── channels.ts ├── config.ts ├── elementObserver.ts ├── ipc-main-register.ts ├── ipc-main-service.ts ├── login.ts ├── main.ts ├── renderer │ ├── articles.ts │ ├── preload.ts │ ├── videos-fast.ts │ └── videos.ts ├── score.d.ts ├── score.ts ├── splash.ts ├── store.ts ├── task.ts ├── urls.ts └── utils.ts ├── tasking.gif ├── tsconfig.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | 4 | dist 5 | build 6 | 7 | yarn-error.log 8 | .history 9 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 10.16.3 -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/SECURITY.md -------------------------------------------------------------------------------- /jilu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/jilu.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/package.json -------------------------------------------------------------------------------- /question.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/question.html -------------------------------------------------------------------------------- /question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/question.md -------------------------------------------------------------------------------- /smile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/smile.jpg -------------------------------------------------------------------------------- /splash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/splash.html -------------------------------------------------------------------------------- /src/answers/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/answers/api.ts -------------------------------------------------------------------------------- /src/answers/day.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/answers/day.ts -------------------------------------------------------------------------------- /src/answers/special.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/answers/special.ts -------------------------------------------------------------------------------- /src/answers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/answers/types.ts -------------------------------------------------------------------------------- /src/answers/weekly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/answers/weekly.ts -------------------------------------------------------------------------------- /src/browser-window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/browser-window.ts -------------------------------------------------------------------------------- /src/channels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/channels.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/elementObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/elementObserver.ts -------------------------------------------------------------------------------- /src/ipc-main-register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/ipc-main-register.ts -------------------------------------------------------------------------------- /src/ipc-main-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/ipc-main-service.ts -------------------------------------------------------------------------------- /src/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/login.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | import './ipc-main-register'; 2 | -------------------------------------------------------------------------------- /src/renderer/articles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/renderer/articles.ts -------------------------------------------------------------------------------- /src/renderer/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/renderer/preload.ts -------------------------------------------------------------------------------- /src/renderer/videos-fast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/renderer/videos-fast.ts -------------------------------------------------------------------------------- /src/renderer/videos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/renderer/videos.ts -------------------------------------------------------------------------------- /src/score.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/score.d.ts -------------------------------------------------------------------------------- /src/score.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/score.ts -------------------------------------------------------------------------------- /src/splash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/splash.ts -------------------------------------------------------------------------------- /src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/store.ts -------------------------------------------------------------------------------- /src/task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/task.ts -------------------------------------------------------------------------------- /src/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/urls.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tasking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/tasking.gif -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v2018z/studyxixi/HEAD/yarn.lock --------------------------------------------------------------------------------