From: W. Trevor King Date: Thu, 14 Oct 2010 12:59:13 +0000 (-0400) Subject: Add Parallel computing post. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=32c8f1e72bec72a54db4cb537e4b16622bd8cd33;p=blog.git Add Parallel computing post. --- diff --git a/posts/Parallel_computing.mdwn b/posts/Parallel_computing.mdwn new file mode 100644 index 0000000..4cb770f --- /dev/null +++ b/posts/Parallel_computing.mdwn @@ -0,0 +1,32 @@ +[[!template id=gitrepo repo=parallel_computing]] + +In contrast to my [[course website]] project, which is mostly about +constructing a framework for automatically compiling and installing +[[LaTeX]] problem sets, [Prof. Vallières'][MV] [Parallel +Computing][phys405] course is basically an online textbook with a +large amount of example software. In order to balance between to +Prof. Vallières' original and my own aesthetic, I rolled a new +solution from scratch. See [my version of his Fall 2010 page][f10] +for a live example. + +Differences from my course website project: + +* No PHP, since there is no dynamic content that cannot be handled + with [[SSI]]. +* Less installation machinery. Only a few build/cleanup scripts to + avoid versioning really tedious bits. The repository is designed to + be dropped into your `~/public_html/` whole, while the course + website project is designed to `rsync` the built components up as + they go live. +* Less LaTeX, more XHTML. It's easier to edit XHTML than it is to + exit and compile LaTeX, and PDFs are large and annoying. As a + computing class, there are fewer graphics than there are in an + intro-physics class, so the extra power of LaTeX is not as useful. + +[MV]: http://www.physics.drexel.edu/directory/faculty/homepage/?lname=Valli%C3%A8res&fname=Michel +[phys405]: http://www.physics.drexel.edu/~valliere/PHYS405/ +[f10]: http://www.physics.drexel.edu/~wking/courses/phys405_f10/ + +[[!tag tags/code]] +[[!tag tags/web]] +[[!tag tags/teaching]]