Home
>>    




Project report: Team

CS 300A (PDC), Fall 2018

Please respond jointly as a team to the following questions concerning your PDC project.

Click below to submit your responses.


  1. Your name:
    (Only one person needs to submit per team)

  2. Your project team:

  3. Source code. All source code and documentation should be pushed to your project's git repository among the following.

    teamrepository
    LED CCgit@stogit.cs.stolaf.edu:pdc-f16/led.git
    PassCessibilitygit@stogit.cs.stolaf.edu:pdc-f16/access.git
    Robotgit@stogit.cs.stolaf.edu:pdc-f16/robot.git
    Ferric Oxidegit@stogit.cs.stolaf.edu:pdc-f16/raft.git
    The k-Meanest Clusterersgit@stogit.cs.stolaf.edu:pdc-f16/kmean.git
    Raspberry Pigit@stogit.cs.stolaf.edu:pdc-f16/rpi.git
    CUDAgit@stogit.cs.stolaf.edu:pdc-f16/cuda.git
    Raspberry 3.1415 git@stogit.cs.stolaf.edu:pdc-f16/rpi202.git
    Stocksgit@stogit.cs.stolaf.edu:pdc-f16/econ.git
    Please edit the file README.final at the top level of your repository to give an overview of the code.

    Note: If you did your work in a different git repository, click here for instructions.

    • Did you copy to the provided submission repository from a prior repository?
      Yes, requested rename (method A).
            Original repository for method A: stogit.cs.stolaf.edu:.git
      Yes, pushed a clone (method B)
      No, no prior repository

    • Code described in README.final at top level of project repository
      to do DONE

    • Complete git push
      to do DONE

    Comments?

  4. Data. Describe the source and location of your project's source and output data in the file README.final at the top level of your repository, and also in the area below:


    • Data described in README.final at top level of repository
      to do DONE

  5. In-class presentation/assignment (if any). Submit your presentation slides, homework assignments, handouts, etc. using the project deliverables submission form.

    • Homework assignment
      to do DONE

    • Presentation slides
      to do DONE Not applicable

    • Other presentation materials
      to do DONE Not applicable

    Comments?

  6. Special technologies. Did your team use or attempt to use special parallel technologies (e.g., CUDA, special languages, WMR/Hadoop, etc.)? Please describe

  7. Final presentation. Submit your presentation slides, handouts, etc. using the project deliverables submission form.

    • Final presentation slides
      to do DONE Not applicable

    • Other final presentation materials
      to do DONE Not applicable

    Comments?

  8. Comments (optional).

Submitting other git repositories

If you did your work in a different git repository besides the repository provided for submissions, choose one of these two methods for submitting your source code.

Method A
Ask for your original repository to be renamed to the provided submission repository. For this method,
enter your original repository name in the text entry box above.

Note: If you choose this option, you and your teammates will need to change the remote for all working directories after the rename as follows in order to connect them to the provided repository:
git remote remove origin
git remote add origin git@git@stogit.cs.stolaf.edu:pdc-f16/team.git
where team is listed in the table of repositories above.

Method B
Copy the files in your original repository to the provided submission repository as follows:
git clone git@stogit.cs.stolaf.edu:origproject.git proj_clone
cd proj_clone
----- (edit README.final as needed) -----
git add -A
git commit -m "Copy of origproject"
git remote add submit git@git@stogit.cs.stolaf.edu:pdc-f16/team.git
git push submit master
where team is listed in the table of repositories above.

Note: With this approach, future changes to your original repository will not automatically appear in the provided submission repository.