├── .github ├── .DS_Store ├── .htaccess ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── documentation-update.yml │ └── enhancement-request.yml ├── code_of_conduct.md ├── package-lock.json ├── package.json ├── scripts │ └── update_structure.py └── workflows │ ├── auto-label.yml │ ├── greetings.yml │ └── update-readme.yml ├── .vscode └── settings.json ├── 404.html ├── Documentation ├── CONTRIBUTION.md ├── PROJECT_STRUCTURE.md ├── images │ └── netlify.svg └── repo_structure.txt ├── LICENSE.md ├── README.md ├── images ├── Nomenclature.png ├── coedit.png ├── complexity.png ├── flowChart.png ├── license.png ├── moon.png ├── naming.png ├── obfuscation.png ├── sun.png ├── top.png └── working.png ├── index.html ├── pages ├── contributorsSection.html ├── obfuscation.html ├── refine.html └── timeComplexity.html ├── resources ├── algo.py ├── scripts │ ├── analyser.js │ ├── common_functions.js │ ├── contributorsSection.js │ ├── error404.js │ ├── homeScript.js │ ├── navbar.js │ ├── obfuscate-script.js │ └── refine.js └── styles │ ├── analyser-style.css │ ├── bfuscate-style.css │ ├── contributorsSection.css │ ├── error404.css │ ├── home-style.css │ ├── obfuscate-style.css │ └── style.css ├── robots.txt └── sitemap.xml /.github/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/.github/.DS_Store -------------------------------------------------------------------------------- /.github/.htaccess: -------------------------------------------------------------------------------- 1 | ErrorDocument 404 .github/404.html -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/.github/ISSUE_TEMPLATE/documentation-update.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/.github/ISSUE_TEMPLATE/enhancement-request.yml -------------------------------------------------------------------------------- /.github/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/.github/code_of_conduct.md -------------------------------------------------------------------------------- /.github/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/.github/package-lock.json -------------------------------------------------------------------------------- /.github/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/.github/package.json -------------------------------------------------------------------------------- /.github/scripts/update_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/.github/scripts/update_structure.py -------------------------------------------------------------------------------- /.github/workflows/auto-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/.github/workflows/auto-label.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/update-readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/.github/workflows/update-readme.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5000 3 | } -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/404.html -------------------------------------------------------------------------------- /Documentation/CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/Documentation/CONTRIBUTION.md -------------------------------------------------------------------------------- /Documentation/PROJECT_STRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/Documentation/PROJECT_STRUCTURE.md -------------------------------------------------------------------------------- /Documentation/images/netlify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/Documentation/images/netlify.svg -------------------------------------------------------------------------------- /Documentation/repo_structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/Documentation/repo_structure.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/README.md -------------------------------------------------------------------------------- /images/Nomenclature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/images/Nomenclature.png -------------------------------------------------------------------------------- /images/coedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/images/coedit.png -------------------------------------------------------------------------------- /images/complexity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/images/complexity.png -------------------------------------------------------------------------------- /images/flowChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/images/flowChart.png -------------------------------------------------------------------------------- /images/license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/images/license.png -------------------------------------------------------------------------------- /images/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/images/moon.png -------------------------------------------------------------------------------- /images/naming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/images/naming.png -------------------------------------------------------------------------------- /images/obfuscation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/images/obfuscation.png -------------------------------------------------------------------------------- /images/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/images/sun.png -------------------------------------------------------------------------------- /images/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/images/top.png -------------------------------------------------------------------------------- /images/working.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/images/working.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/index.html -------------------------------------------------------------------------------- /pages/contributorsSection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/pages/contributorsSection.html -------------------------------------------------------------------------------- /pages/obfuscation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/pages/obfuscation.html -------------------------------------------------------------------------------- /pages/refine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/pages/refine.html -------------------------------------------------------------------------------- /pages/timeComplexity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/pages/timeComplexity.html -------------------------------------------------------------------------------- /resources/algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/resources/algo.py -------------------------------------------------------------------------------- /resources/scripts/analyser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/resources/scripts/analyser.js -------------------------------------------------------------------------------- /resources/scripts/common_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/resources/scripts/common_functions.js -------------------------------------------------------------------------------- /resources/scripts/contributorsSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/resources/scripts/contributorsSection.js -------------------------------------------------------------------------------- /resources/scripts/error404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/resources/scripts/error404.js -------------------------------------------------------------------------------- /resources/scripts/homeScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/resources/scripts/homeScript.js -------------------------------------------------------------------------------- /resources/scripts/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/resources/scripts/navbar.js -------------------------------------------------------------------------------- /resources/scripts/obfuscate-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/resources/scripts/obfuscate-script.js -------------------------------------------------------------------------------- /resources/scripts/refine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/resources/scripts/refine.js -------------------------------------------------------------------------------- /resources/styles/analyser-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/resources/styles/analyser-style.css -------------------------------------------------------------------------------- /resources/styles/bfuscate-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/resources/styles/bfuscate-style.css -------------------------------------------------------------------------------- /resources/styles/contributorsSection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/resources/styles/contributorsSection.css -------------------------------------------------------------------------------- /resources/styles/error404.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/resources/styles/error404.css -------------------------------------------------------------------------------- /resources/styles/home-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/resources/styles/home-style.css -------------------------------------------------------------------------------- /resources/styles/obfuscate-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/resources/styles/obfuscate-style.css -------------------------------------------------------------------------------- /resources/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/resources/styles/style.css -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/robots.txt -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/multiverseweb/CodeIt/HEAD/sitemap.xml --------------------------------------------------------------------------------