Southern Oregon University Hackathon 2023 is organized and run by the Southern Oregon University Computer Science Club.
This year's theme is Shakespeare.
For information about sponsors and prizes go to the SOU Hackathon 2023 Website.
Group projects are allowed as long as your group fulfills these requirements:
- Everyone in the group needs to be registered for the event.
- Only one person should submit the repository.
- You must specify in the README.md file that your project is a group project.
- Group projects will be judged with more scrutiny than individual projects.
Judging will be done by representatives from our sponsors. Projects will be judged according to this rubric.
Tuesday March 28th, 2023
9:30am - 5:30pm (PST)
Computing Services 206, 480 University Way, Ashland, Oregon, 97520
Zoom (link will be emailed to registered participants on March 27th)
If you do not yet have a GitHub account you can register for one here.
- Southern Oregon University
- College of the Siskiyous
- Klamath Community College
- Rogue Community College
- Southwestern Oregon Community College
- Umpqua Community College
- C
- C++
- CSS
- HTML
- Java
- JavaScript
- Python
- You cannot start coding before the start of Hackathon.
- Edits or additions after the deadline will not be considered.
- Code must be in your
main
branch in order to be considered. No code from other branches will be considered.
Navigate to the Hackathon GitHub project at https://github.com/platt-sam/souhackathon2023
Click on the "Fork" button at the top of the page and create your own fork of the project.
- General github command guide: https://github.com/git-guides
- Cloning your repo: https://github.com/git-guides/git-clone
- Some common github mistakes and how to fix them: https://dangitgit.com/en
First, add all your code:
git add --all
Next, commit all your changes (the commit message is up to you):
git commit -m 'My 2023 Hackathon submission!'
Finally, push your commit up to your GitHub fork:
git push origin main