├── README.md └── static └── issue_help.png /README.md: -------------------------------------------------------------------------------- 1 | # 2020 Post-Event Overview 2 | 3 | iQuHACK 2020, MIT's first quantum hackathon, had 13 submissions this year! 4 | 5 | * [QUasiCoders](https://github.com/iQuHACK/QUasiCoders) was the overall winner. 6 | * [GoodAibling](https://github.com/iQuHACK/GoodAibling) won the academia choice award. 7 | * [Group 2](https://github.com/iQuHACK/2020_group2) won the industry choice award. 8 | * [Quantum-waddle](https://github.com/iQuHACK/Quantum-waddle) won the communication award. 9 | * [QuhacMan](https://github.com/iQuHACK/QuhacMan) won the creativity award. 10 | * [Group 8](https://github.com/iQuHACK/2020_group8) won the technical merit award. 11 | * [Group 10](https://github.com/iQuHACK/2020_group10) won the utility award. 12 | * [warmboosh](https://github.com/iQuHACK/warmboosh) 13 | * [Qryptos](https://github.com/iQuHACK/Qryptos) 14 | * [Duckfebugging](https://github.com/iQuHACK/Duckfebugging) 15 | * [QAOA-Benchmarking](https://github.com/iQuHACK/QAOA-Benchmarking) 16 | * [iQuack](https://github.com/iQuHACK/iQuack) 17 | * [Group 9](https://github.com/iQuHACK/2020_group9) 18 | 19 | We would like to thank IBM, Zapata Computing, HRL Laboratories and MIT's Center for Quantum Engineering for sponsoring iQuHACK 2020. We also appreciate the support of the Research Laboratory of Electronics and the Department of Electrical Engineering & Computer Science at MIT. iQuHACK 2020 was presented by the Interdisciplinary Quantum Information Science and Engineering program (iQuISE, [iquise.mit.edu](https://www.iquise.mit.edu)); more information about the hackathon can be found at [iquhack.mit.edu](https://iquhack.mit.edu). 20 | 21 | --- 22 | 23 | # 2020 Instructions 24 | ## Submit a new idea by opening a [new issue](https://github.com/iQuHACK/2020-Ideas/issues/new "go to New Issue") 25 | 26 | [![Issue Help](static/issue_help.png)](https://github.com/iQuHACK/2020-Ideas/issues "go to Issues") 27 | 28 | Keep in mind these ideas are open to the public and not regulated. 29 | 30 | ## Submitting projects 31 | Once finished, simply send iquhack@mit.edu a zip file of your project. We will upload to iQuHACK's GitHub organization. If you would like to continue development on the project later, we ask that you fork the version we create. 32 | 33 | ## Resources 34 | ### Getting started 35 | We have seen some issues using python 3.8, so we recommend using **Python 3.7**. 36 | For example, if you want your environment named `iQuHACK`: 37 | ``` 38 | conda create -n iQuHACK python=3.7 39 | pip install qiskit 40 | ``` 41 | To load this environment: `conda activate iQuHACK`. 42 | 43 | If `conda` cannot be found (and you are on a unix-like system), you most likely have *not* initialized it during installing. 44 | You can do this by running the init script in the installation directory: 45 | ``` 46 | source /bin/activate 47 | conda init zsh 48 | ``` 49 | Then you should be good to go. MacOS Catalina now uses `zsh` shell instead of `bash`, but put your appropriate shell name there. 50 | 51 | #### iQuHACK 52 | - [iquhack.slack.com](https://iquhack.slack.com/) (check your email for invite link, or email iquhack@mit.edu) 53 | - [iQuHACK site](https://www.iquise.mit.edu/iQuHACK) 54 | 55 | #### Qiskit 56 | - [qiskit.slack.com](https://qiskit.slack.com/) 57 | - [github.com/Qiskit](https://github.com/Qiskit) 58 | - [Qiskit Examples](https://qiskit.org/experiments/) 59 | -------------------------------------------------------------------------------- /static/issue_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iQuHACK/2020/e6ab4e652fe6c98866441512e152b30c34618cd7/static/issue_help.png --------------------------------------------------------------------------------