Google Doc with team descriptions, organizational diagram, and goals/tasks
Very simple app. Perhaps literally just the text “There are 40 people in the RSF right now, and the occupancy is 200 people.” Second Iteration
More informative visualization: Graphs over time based on past data (the data would need to be saved in our back-end) Nth Iteration
More complex functionality:
- User preferences and notifications
- Predictive statistics
Our team is composed of members of the UC Berkeley CS Scholars Program. We are currently Sophomores studying Computer Science and we hope to learn a great deal as we develop our app!

Git is super important. It’s what we’ll be using to manage versions and make sure one person doesn’t accidentally destroy the whole project. That said, there are guidelines we’ll need to follow.
- cd into your Packd folder
- Pull the changes from master into your master branch
- Branch off into whatever branch you’re currently working on
- Do some work/editing
- Add /Commit/ Push your changes to your branch
- Submit a pull request to merge your branch with master
$ cd Packd
$ git branch #making sure I'm on the master
$ git checkout master #puts me on the master branch
$ git pull origin master
$ git checkout ButtonFix
Do work/ editing here
$ git add .
$ git commit -m "fixed the button"
$ git push origin ButtonFix
Submit a pull request: https://help.github.com/articles/creating-a-pull-request
