course.git
14 years agoStarted versioning my asymptote libraries.
W. Trevor King [Tue, 30 Jun 2009 20:22:06 +0000 (16:22 -0400)]
Started versioning my asymptote libraries.

14 years agoAdded problem text for recitation weeks 1&2 of Summer 2009's PHYS 102
W. Trevor King [Mon, 29 Jun 2009 19:28:36 +0000 (15:28 -0400)]
Added problem text for recitation weeks 1&2 of Summer 2009's PHYS 102

14 years agoReorganized problems by textbook and imported my previous courses' code.
W. Trevor King [Mon, 29 Jun 2009 18:30:33 +0000 (14:30 -0400)]
Reorganized problems by textbook and imported my previous courses' code.

14 years agoBegan versioning.
W. Trevor King [Mon, 8 Jun 2009 18:12:57 +0000 (14:12 -0400)]
Began versioning.

This course-website framework developed over the first half of 2009
while TAing for Phys201 (Modern physics for engineers) at Drexel
University.  After a few false starts at versioning, I'm starting this
new repository because I think I've figured out a stable scheme.

When you start a new course, clone this repository to create a working
copy.  Seperate your commits on the clone into course-specific commits
(e.g. Makefile changes when adding homework 2, atom.xml updates, etc.)
and general commits (corrections to README files, additional problem
source in /latex/problems/, etc.).  Then, cherry pick the
course-specific commits back into this repo with
  git remote add phys201 /home/bob/phys201
  git fetch phys201
  git cherry-pick 1d8fb1fe41dfc1b1eb38c7b5d574577c4b341c58
  git remote rm phys201
  git remote prune phys201

The benefit of cloning an independent repo over just starting up a new
branch is that most people don't care about the particular per-course
details, but lots of people may want the framework, and not want to
worry about the disk space needed for all the per-course cruft.

From a more philosophical perspective, this repo will track the history
of 'what you want for building a course website', while the per-course
repos track the history of a particular course's website (and student
grades, TA emails, etc.).