All Projects → anitab-org → powerup-iOS

anitab-org / powerup-iOS

Licence: GPL-2.0 License
PowerUp is an educational choose-your-own-adventure game that utilizes a users uploaded curriculum to empower pre-adolescents to take charge of their reproductive health. This is the iOS version of the game.

Programming Languages

swift
15916 projects
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to powerup-iOS

5MinuteFinance
Interactive Presentations for Financial Education using R/Shiny. See full list of presentations (with links) below.
Stars: ✭ 69 (+81.58%)
Mutual labels:  education
awesome-physics
🏄 A list of awesome resources I used to study Physics.
Stars: ✭ 27 (-28.95%)
Mutual labels:  education
Kobra
Kobra is a visual programming language (like Scratch) for Machine Learning (currently under active development).
Stars: ✭ 223 (+486.84%)
Mutual labels:  education
data-mining-course
An undergraduate course on data mining.
Stars: ✭ 24 (-36.84%)
Mutual labels:  education
LinuxSysAdmin
中传信安专业必修课 - Linux系统与网络管理 课件
Stars: ✭ 33 (-13.16%)
Mutual labels:  education
vim-workshop
My thorough introduction to Vim
Stars: ✭ 30 (-21.05%)
Mutual labels:  education
udacity-iOS-nanodegrees
List of iOS Udacity Nanodegree programs with links to the free courses in their curricula
Stars: ✭ 52 (+36.84%)
Mutual labels:  education
technopsyna
телеграм бот для техноконфы
Stars: ✭ 16 (-57.89%)
Mutual labels:  education
ITP-IMA-Code-of-Conduct
The ITP/IMA Code of Conduct is an evolving work-in-progress document that establishes and communicates the commitment of the ITP/IMA community to uphold a key set of standards and obligations that aim to make ITP/IMA an inclusive and welcoming environment.
Stars: ✭ 26 (-31.58%)
Mutual labels:  education
ntds 2016
Material for the EPFL master course "A Network Tour of Data Science", edition 2016.
Stars: ✭ 96 (+152.63%)
Mutual labels:  education
Prelude
A web app for practicing musical sight reading skills
Stars: ✭ 24 (-36.84%)
Mutual labels:  education
Engagement-Recognition
Automatic Recognition of Student Engagement using Deep Learning and Facial Expression
Stars: ✭ 44 (+15.79%)
Mutual labels:  education
bash-course
Material for the advanced bash scripting course at Heidelberg University
Stars: ✭ 35 (-7.89%)
Mutual labels:  education
Java
All Examples for learning Java programming and algorithms
Stars: ✭ 14 (-63.16%)
Mutual labels:  education
vly1
v1 Voluntarily application - deprecated
Stars: ✭ 14 (-63.16%)
Mutual labels:  education
resources
Resource Library of IEEE-VIT
Stars: ✭ 33 (-13.16%)
Mutual labels:  education
web-development-101
Практическое введение во все инструменты, необходимые для создания рабочих веб-сайтов.
Stars: ✭ 21 (-44.74%)
Mutual labels:  education
savva3
Сайт Алексея Савватеева
Stars: ✭ 29 (-23.68%)
Mutual labels:  education
runno
Browser-based code runner that can be embedded as an iframe or used as a library.
Stars: ✭ 211 (+455.26%)
Mutual labels:  education
java-signin
Java实现的(软件或网络)实验室的Web签到系统,签到原理基于IP和座位的(强制)对应关系。
Stars: ✭ 17 (-55.26%)
Mutual labels:  education
Branch Status
master Build Status
develop Build Status

PowerUp - iOS

PowerUp is an educational mobile game app that seeks to empower young girls to take charge of their reproductive health and self-esteem by navigating the life of their Avatar.

Setup for Developers

  1. Make sure you have Xcode IDE downloaded on your machine for software development for iOS.
  2. Fork the anitab-org project. Go to Powerup-iOS and click on Fork in the top right corner. Fork the repo on your Github id. Make sure that you don’t have any existing repo with the same name in your profile else there will be conflicts.
  3. Make sure you have installed Github Desktop(for Mac).
  4. Open Github Desktop, click on Clone Repository in File Menu. Clone the forked repo to get a local copy on your system.
  5. Fetch the latest version of code from the appropriate branch (usually "develop").

Configure remotes

When a repository is cloned, it has a default remote called origin that points to your fork on GitHub, not the original repository it was forked from. To keep track of the original repository, you should add another remote named upstream:

  1. Get the path where you have your git repository on your machine. Go to that path in Terminal using cd. Alternatively, Right click on project in Github Desktop and hit ‘Open in Terminal’.
  2. Run git remote -v to check the status you should see something like the following:

origin https://github.com/YOUR_USERNAME/powerup-iOS.git (fetch)
origin https://github.com/YOUR_USERNAME/powerup-iOS.git (push)

  1. Set the upstream:
    git remote add upstream https://github.com/anitab-org/powerup-iOS.git
  2. Run git remote -v again to check the status, you should see something like the following:

origin https://github.com/YOUR_USERNAME/powerup-iOS.git (fetch)
origin https://github.com/YOUR_USERNAME/powerup-iOS.git (push)
upstream https://github.com/anitab-org/powerup-iOS.git (fetch)
upstream https://github.com/anitab-org/powerup-iOS.git (push)

  1. To update your local copy with remote changes, run the following:
    git fetch upstream develop
    git rebase upstream/develop
    This will give you an exact copy of the current remote, make sure you don't have any local changes.
  2. Project set-up is complete.

Contributing and developing a feature

  1. Make sure you are in the develop branch git checkout develop.
  2. Sync your copy git pull --rebase upstream develop.
  3. Create a new branch with a meaningful name git checkout -b branch_name.
  4. Develop your feature on Xcode IDE and run it using the simulator or connecting your own iphone.
  5. Add the files you changed git add file_name (avoid using git add .).
  6. Commit your changes git commit -m "Message briefly explaining the feature".
  7. Keep one commit per feature. If you forgot to add changes, you can edit the previous commit git commit --amend.
  8. Push to your repo git push origin branch-name.
  9. Go into the Github repo and create a pull request explaining your changes.
  10. If you are requested to make changes, edit your commit using git commit --amend, push again and the pull request will edit automatically.
  11. If you have more than one commit try squashing them into single commit by following command:
    git rebase -i origin/master~n master(having n number of commits).
  12. Once you've run a git rebase -i command, text editor will open with a file that lists all the commits in current branch, and in front of each commit is the word "pick". For every line except the first, replace the word "pick" with the word "squash".
  13. Save and close the file, and a moment later a new file should pop up in editor, combining all the commit messages of all the commits. Reword this commit message into meaningful one briefly explaining all the features, and then save and close that file as well. This commit message will be the commit message for the one, big commit that you are squashing all of your larger commits into. Once you've saved and closed that file, your commits of current branch have been squashed together.
  14. Force push to update your pull request with command git push origin branchname --force.

Contributing Guidelines

Click here to find the contributing guidelines for the project and follow them before sending a contribution.

Documentation of PowerUp-iOS

Links to the Documentation:

2017
2016
2015

Contact

You can reach the maintainers and our community on AnitaB.org Open Source Zulip. If you are interested in contributing to the PowerUp, we have a dedicated stream for this project #powerup, where you can ask questions and interact with the community, join with us!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].