├── .github ├── FUNDING.yml ├── stale.yml └── workflows │ └── codeql-analysis.yml ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── SECURITY.md ├── app.json ├── config.js ├── docker-compose.yml ├── hisoka.js ├── index.js ├── lib ├── binary.js ├── cloudDBAdapter.js ├── converter.js ├── database.js ├── exif.js ├── hisoka.jpg ├── lowdb │ ├── CAF │ ├── Low.d.ts │ ├── Low.js │ ├── LowSync.d.ts │ ├── LowSync.js │ ├── MissingAdapterError.d.ts │ ├── MissingAdapterError.js │ ├── adapters │ │ ├── CAF │ │ ├── JSONFile.d.ts │ │ ├── JSONFile.js │ │ ├── JSONFileSync.d.ts │ │ ├── JSONFileSync.js │ │ ├── LocalStorage.d.ts │ │ ├── LocalStorage.js │ │ ├── Memory.d.ts │ │ ├── Memory.js │ │ ├── MemorySync.d.ts │ │ ├── MemorySync.js │ │ ├── TextFile.d.ts │ │ ├── TextFile.js │ │ ├── TextFileSync.d.ts │ │ └── TextFileSync.js │ ├── index.d.ts │ └── index.js ├── mongoDB.js ├── myfunc.js ├── scraper.js ├── tictactoe.d.ts ├── tictactoe.js ├── uploader.js └── y2mate.js ├── package.json ├── speed.py └── src ├── database.json └── math.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/app.json -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/config.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /hisoka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/hisoka.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/index.js -------------------------------------------------------------------------------- /lib/binary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/binary.js -------------------------------------------------------------------------------- /lib/cloudDBAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/cloudDBAdapter.js -------------------------------------------------------------------------------- /lib/converter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/converter.js -------------------------------------------------------------------------------- /lib/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/database.js -------------------------------------------------------------------------------- /lib/exif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/exif.js -------------------------------------------------------------------------------- /lib/hisoka.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/hisoka.jpg -------------------------------------------------------------------------------- /lib/lowdb/CAF: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/lowdb/Low.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/Low.d.ts -------------------------------------------------------------------------------- /lib/lowdb/Low.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/Low.js -------------------------------------------------------------------------------- /lib/lowdb/LowSync.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/LowSync.d.ts -------------------------------------------------------------------------------- /lib/lowdb/LowSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/LowSync.js -------------------------------------------------------------------------------- /lib/lowdb/MissingAdapterError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/MissingAdapterError.d.ts -------------------------------------------------------------------------------- /lib/lowdb/MissingAdapterError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/MissingAdapterError.js -------------------------------------------------------------------------------- /lib/lowdb/adapters/CAF: -------------------------------------------------------------------------------- 1 | >\\\< 2 | -------------------------------------------------------------------------------- /lib/lowdb/adapters/JSONFile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/adapters/JSONFile.d.ts -------------------------------------------------------------------------------- /lib/lowdb/adapters/JSONFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/adapters/JSONFile.js -------------------------------------------------------------------------------- /lib/lowdb/adapters/JSONFileSync.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/adapters/JSONFileSync.d.ts -------------------------------------------------------------------------------- /lib/lowdb/adapters/JSONFileSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/adapters/JSONFileSync.js -------------------------------------------------------------------------------- /lib/lowdb/adapters/LocalStorage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/adapters/LocalStorage.d.ts -------------------------------------------------------------------------------- /lib/lowdb/adapters/LocalStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/adapters/LocalStorage.js -------------------------------------------------------------------------------- /lib/lowdb/adapters/Memory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/adapters/Memory.d.ts -------------------------------------------------------------------------------- /lib/lowdb/adapters/Memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/adapters/Memory.js -------------------------------------------------------------------------------- /lib/lowdb/adapters/MemorySync.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/adapters/MemorySync.d.ts -------------------------------------------------------------------------------- /lib/lowdb/adapters/MemorySync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/adapters/MemorySync.js -------------------------------------------------------------------------------- /lib/lowdb/adapters/TextFile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/adapters/TextFile.d.ts -------------------------------------------------------------------------------- /lib/lowdb/adapters/TextFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/adapters/TextFile.js -------------------------------------------------------------------------------- /lib/lowdb/adapters/TextFileSync.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/adapters/TextFileSync.d.ts -------------------------------------------------------------------------------- /lib/lowdb/adapters/TextFileSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/adapters/TextFileSync.js -------------------------------------------------------------------------------- /lib/lowdb/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/index.d.ts -------------------------------------------------------------------------------- /lib/lowdb/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/lowdb/index.js -------------------------------------------------------------------------------- /lib/mongoDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/mongoDB.js -------------------------------------------------------------------------------- /lib/myfunc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/myfunc.js -------------------------------------------------------------------------------- /lib/scraper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/scraper.js -------------------------------------------------------------------------------- /lib/tictactoe.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/tictactoe.d.ts -------------------------------------------------------------------------------- /lib/tictactoe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/tictactoe.js -------------------------------------------------------------------------------- /lib/uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/uploader.js -------------------------------------------------------------------------------- /lib/y2mate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/lib/y2mate.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/package.json -------------------------------------------------------------------------------- /speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/speed.py -------------------------------------------------------------------------------- /src/database.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MateoCollective/Hisoka/HEAD/src/math.js --------------------------------------------------------------------------------