course.git
14 years agoAdded solutions for rec7.
W. Trevor King [Wed, 5 Aug 2009 01:11:00 +0000 (21:11 -0400)]
Added solutions for rec7.

14 years agoAdded problems for rec7
W. Trevor King [Tue, 4 Aug 2009 19:21:21 +0000 (15:21 -0400)]
Added problems for rec7

14 years agoAdded more label positioning arguments to Distance.draw().
W. Trevor King [Tue, 4 Aug 2009 19:20:18 +0000 (15:20 -0400)]
Added more label positioning arguments to Distance.draw().

14 years ago.gitignore announcements/install as well
W. Trevor King [Tue, 4 Aug 2009 18:11:34 +0000 (14:11 -0400)]
.gitignore announcements/install as well

14 years agoAdded week 6 recitation solutions
W. Trevor King [Fri, 31 Jul 2009 16:21:37 +0000 (12:21 -0400)]
Added week 6 recitation solutions

14 years agoAdded a .gitignore file
W. Trevor King [Wed, 29 Jul 2009 13:06:43 +0000 (09:06 -0400)]
Added a .gitignore file

14 years agoAdded Week 5 recitation solutions.
W. Trevor King [Wed, 29 Jul 2009 13:00:41 +0000 (09:00 -0400)]
Added Week 5 recitation solutions.

14 years agoSolution template added.
W. Trevor King [Wed, 15 Jul 2009 13:30:05 +0000 (09:30 -0400)]
Solution template added.

14 years agoRec4 solutions added with ascii drawings.
W. Trevor King [Wed, 15 Jul 2009 13:29:32 +0000 (09:29 -0400)]
Rec4 solutions added with ascii drawings.

14 years agoCorrected Young and Freedman v12 23.63 solution
W. Trevor King [Wed, 8 Jul 2009 12:29:32 +0000 (08:29 -0400)]
Corrected Young and Freedman v12 23.63 solution

14 years agoAdded recitation week 3 recitation solutions
W. Trevor King [Wed, 8 Jul 2009 01:52:57 +0000 (21:52 -0400)]
Added recitation week 3 recitation solutions

14 years agoAdded recitation week 3 recitation questions
W. Trevor King [Tue, 7 Jul 2009 21:56:33 +0000 (17:56 -0400)]
Added recitation week 3 recitation questions

14 years agoAdded week two recitation solutions.
W. Trevor King [Wed, 1 Jul 2009 21:25:50 +0000 (17:25 -0400)]
Added week two recitation solutions.

14 years agoFixed trajectory plot in Young and Freedman v12 p21.86 solution.
W. Trevor King [Wed, 1 Jul 2009 16:42:53 +0000 (12:42 -0400)]
Fixed trajectory plot in Young and Freedman v12 p21.86 solution.

14 years agoAdded Young and Freedman v12 p21.84 solution
W. Trevor King [Wed, 1 Jul 2009 12:53:27 +0000 (08:53 -0400)]
Added Young and Freedman v12 p21.84 solution

14 years agoAdded Young and Freedman v12 p21.86 solution
W. Trevor King [Wed, 1 Jul 2009 12:49:32 +0000 (08:49 -0400)]
Added Young and Freedman v12 p21.86 solution

14 years agoAdded tests for my asymptote libraries.
W. Trevor King [Wed, 1 Jul 2009 01:12:13 +0000 (21:12 -0400)]
Added tests for my asymptote libraries.

Also a few tweaks to get Serway_and_Jewett_4/problem19.07.tex
and Young_and_Freedman_12/problem21.74.tex to compile.

14 years agoWorking on PHYS 102 recitation 1 solutions
W. Trevor King [Tue, 30 Jun 2009 20:33:37 +0000 (16:33 -0400)]
Working on PHYS 102 recitation 1 solutions

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.).