├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── quantum-ugly-duckling.iml └── vcs.xml ├── LICENSE ├── Project_pitch.md ├── README.md ├── images ├── discord_duck.png ├── discord_test.gif ├── duck_image.png └── project_main.png ├── main.py └── quantum-ugly-duckling-main ├── .cfignore ├── .dockerignore ├── .gitignore ├── CloudDB.py ├── Dockerfile ├── LICENSE ├── Procfile ├── README-kubernetes.md ├── README.md ├── config.json ├── discord_bot.py ├── hello.py ├── kubernetes └── deployment.yaml ├── manifest.yml ├── notebooks ├── NQRNS on real backend.ipynb ├── Testing our model.ipynb └── pulse_method.ipynb ├── nqrng.py ├── requirements.txt ├── runtime.txt ├── setup.py ├── static ├── antixss.js └── index.html └── vcap-local.template.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Default ignored files 3 | /workspace.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/quantum-ugly-duckling.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/.idea/quantum-ugly-duckling.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/LICENSE -------------------------------------------------------------------------------- /Project_pitch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/Project_pitch.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/README.md -------------------------------------------------------------------------------- /images/discord_duck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/images/discord_duck.png -------------------------------------------------------------------------------- /images/discord_test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/images/discord_test.gif -------------------------------------------------------------------------------- /images/duck_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/images/duck_image.png -------------------------------------------------------------------------------- /images/project_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/images/project_main.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/.cfignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | LICENSE 3 | README.md 4 | vcap-local.json 5 | -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/.dockerignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | LICENSE 3 | README.md 4 | vcap-local.json 5 | -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/.gitignore -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/CloudDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/CloudDB.py -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/Dockerfile -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/LICENSE -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/Procfile -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/README-kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/README-kubernetes.md -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/README.md -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/config.json -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/discord_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/discord_bot.py -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/hello.py -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/kubernetes/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/kubernetes/deployment.yaml -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/manifest.yml -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/notebooks/NQRNS on real backend.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/notebooks/NQRNS on real backend.ipynb -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/notebooks/Testing our model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/notebooks/Testing our model.ipynb -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/notebooks/pulse_method.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/notebooks/pulse_method.ipynb -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/nqrng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/nqrng.py -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/requirements.txt -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.5 2 | -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/setup.py -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/static/antixss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/static/antixss.js -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/static/index.html -------------------------------------------------------------------------------- /quantum-ugly-duckling-main/vcap-local.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rochisha0/quantum-ugly-duckling/HEAD/quantum-ugly-duckling-main/vcap-local.template.json --------------------------------------------------------------------------------