├── .flaskenv ├── .github └── FUNDING.yml ├── .gitignore ├── .idea ├── DataSciComp.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── .vscode ├── settings.json └── tags ├── DataSciComp.code-workspace ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── README_old.md ├── __pycache__ └── run.cpython-36.pyc ├── _data ├── _effective_EvalAI.yaml ├── _effective_FUTURELAB_AI.yaml ├── _effective_FlyAI.yaml ├── _effective_GECCO.yaml ├── _effective_ICDAR.yaml ├── _effective_ICME.yaml ├── _effective_MagicMirror.yaml ├── _effective_NeurIPS.yaml ├── _effective_aicrowd.yaml ├── _effective_analyticsvidhya.yaml ├── _effective_baiduAIstudio.yaml ├── _effective_biendata.yaml ├── _effective_challengedata.yaml ├── _effective_codalab.yaml ├── _effective_crowdai.yaml ├── _effective_crowdanalytix.yaml ├── _effective_datafountain.yaml ├── _effective_dcjingsai.yaml ├── _effective_drivendata.yaml ├── _effective_grand_challenge.yaml ├── _effective_herox.yaml ├── _effective_iQIYI.yaml ├── _effective_kaggle.yaml ├── _effective_kelvins.yaml ├── _effective_kesci.yaml ├── _effective_others.yaml ├── _effective_signate.yaml ├── _effective_tinymind.yaml ├── _effective_unearthed.yaml ├── _effective_天池.yaml ├── _effective_点石.yaml ├── _hosts.yaml ├── _timezone └── readme ├── docs ├── CNAME ├── favicon.ico ├── hostby.html ├── index.html ├── static │ ├── bootstrap-4.2.1-dist │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ ├── deadlines_css │ │ └── deadlines.css │ ├── img │ │ ├── apple-touch-icon.png │ │ ├── calendar.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── mstile-144x144.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest │ └── js │ │ ├── jquery.countdown.min.js │ │ ├── jquery.min.js │ │ ├── moment-timezone-with-data.min.js │ │ ├── moment.min.js │ │ ├── ouical.min.js │ │ └── store.min.js └── update_log.xml ├── environment.yml ├── favicon.ico ├── run.py ├── static ├── .DS_Store ├── bootstrap-4.2.1-dist │ ├── .DS_Store │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map ├── deadlines_css │ └── deadlines.css ├── img │ ├── apple-touch-icon.png │ ├── calendar.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── mstile-144x144.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest └── js │ ├── jquery.countdown.min.js │ ├── jquery.min.js │ ├── moment-timezone-with-data.min.js │ ├── moment.min.js │ ├── ouical.min.js │ └── store.min.js └── templates ├── .DS_Store ├── base.html ├── hostby.html └── index.html /.flaskenv: -------------------------------------------------------------------------------- 1 | # FLASK 2 | 3 | FLASK_ENV=development 4 | # FLASK_DEBUG=0 5 | FLASK_APP=run -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | custom: ['https://sm.ms/image/6gfQYtARmqPyUFI'] 14 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # DIY 2 | *.pyc 3 | .DS_Store 4 | *.db 5 | 6 | 7 | # Byte-compiled / optimized / DLL files 8 | __pycache__/ 9 | *.py[cod] 10 | *$py.class 11 | 12 | # C extensions 13 | *.so 14 | 15 | # Distribution / packaging 16 | .Python 17 | # build/ 18 | develop-eggs/ 19 | dist/ 20 | downloads/ 21 | eggs/ 22 | .eggs/ 23 | lib/ 24 | lib64/ 25 | parts/ 26 | sdist/ 27 | var/ 28 | wheels/ 29 | *.egg-info/ 30 | .installed.cfg 31 | *.egg 32 | MANIFEST 33 | 34 | # PyInstaller 35 | # Usually these files are written by a python script from a template 36 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 37 | *.manifest 38 | *.spec 39 | 40 | # Installer logs 41 | pip-log.txt 42 | pip-delete-this-directory.txt 43 | 44 | # Unit test / coverage reports 45 | htmlcov/ 46 | .tox/ 47 | .coverage 48 | .coverage.* 49 | .cache 50 | nosetests.xml 51 | coverage.xml 52 | *.cover 53 | .hypothesis/ 54 | .pytest_cache/ 55 | 56 | # Translations 57 | *.mo 58 | *.pot 59 | 60 | # Django stuff: 61 | *.log 62 | local_settings.py 63 | db.sqlite3 64 | 65 | # Flask stuff: 66 | instance/ 67 | .webassets-cache 68 | 69 | # Scrapy stuff: 70 | .scrapy 71 | 72 | # Sphinx documentation 73 | docs/_build/ 74 | 75 | # PyBuilder 76 | target/ 77 | 78 | # Jupyter Notebook 79 | .ipynb_checkpoints 80 | 81 | # pyenv 82 | .python-version 83 | 84 | # celery beat schedule file 85 | celerybeat-schedule 86 | 87 | # SageMath parsed files 88 | *.sage.py 89 | 90 | # Environments 91 | .env 92 | .venv 93 | env/ 94 | venv/ 95 | ENV/ 96 | env.bak/ 97 | venv.bak/ 98 | 99 | # Spyder project settings 100 | .spyderproject 101 | .spyproject 102 | 103 | # Rope project settings 104 | .ropeproject 105 | 106 | # mkdocs documentation 107 | /site 108 | 109 | # mypy 110 | .mypy_cache/ 111 | -------------------------------------------------------------------------------- /.idea/DataSciComp.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 18 | 19 | 20 | 22 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 10 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | DataSci 54 | 55 | 56 | 57 | 59 | 60 | 65 | 66 | 67 | 68 | 69 | true 70 | DEFINITION_ORDER 71 | 72 | 73 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 48 | {{ id_checkbox.name }} 49 | 50 | 51 | 52 | {% endfor %} 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | {% for host in hosts %} 61 |
62 |
63 |
64 | {{ host.title }} 65 |
66 | {% if host.descri %} 67 |
{{ host.descri | safe }} 68 |
69 | {% endif %} 70 |
71 |
72 | {{ host.title }} 73 |
74 |
75 |
76 |
77 | {% endfor %} 78 | 79 | 87 |
88 | 89 | {% endblock %} 90 | 91 | 92 | {% block script_js %} 93 | {{ super() }} 94 | 169 | {% endblock %} --------------------------------------------------------------------------------