Skip to content

Instantly share code, notes, and snippets.

View christopherritter's full-sized avatar

Christopher Ritter christopherritter

View GitHub Profile
@seyDoggy
seyDoggy / PSPC Chapter 9 review.md
Created March 20, 2013 02:10
Chapter 9 Review questions.

Problem Solving and Programming Concepts

Adam Merrifield (2697795).

Chapter 9 Review Questions: pg 397

  1. c. A method can contain one or more other methods.
  2. a. a header
  3. c. in scope
  4. b. a value in a method call
@mmparker
mmparker / batch_pandoc_win.bat
Created July 13, 2012 16:52
Batch conversion of .markdown to .html on Windows command line
REM This file converts all of the Markdown files to HTML.
REM Converting in the current directory
REM %%~ni returns just the filename of %%i, not its extension
for %%i in (*.markdown) do pandoc -f markdown -t html5 %%~ni.markdown > html/%%~ni.html
REM Converting a subdirectory - just slap it on front
for %%i in (report_pages/*.markdown) do pandoc -f markdown -t html5 report_pages/%%~ni.markdown > html/report_pages/%%~ni.html