Skip to content

Commit 1bb94d6

Browse files
committed
Merge communication-handout repo into main OSCTC resources
2 parents 7e3397b + b10ec0f commit 1bb94d6

3 files changed

Lines changed: 62 additions & 0 deletions

File tree

communication-handout/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
all: printme.pdf
2+
3+
printme.pdf: document.tex
4+
# In two steps, for atomicity of printme.pdf.
5+
pdflatex document.tex
6+
mv document.pdf printme.pdf

communication-handout/README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
This is a simple thing to make a PDF with a handout
2+
for students.
3+
4+
Contents are licensed CC zero.

communication-handout/document.tex

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
\documentclass[12pt]{article}
2+
\pagestyle{empty}
3+
\renewcommand*\rmdefault{ppl}
4+
\linespread{1.6}
5+
\usepackage[margin=1in]{geometry}
6+
\usepackage[parfill]{parskip}
7+
\begin{document}
8+
9+
\emph{First}, take this piece of paper, and tear it in half
10+
where the line crosses it. Hand the bottom half to your buddy.
11+
12+
\emph{Then}, you (and your buddy's) task during this section is to
13+
read a bug report against a real project. You'll each explain it to
14+
each other after you're done understanding it. If you are not sure
15+
what is going on, feel free to ask your buddy for help.
16+
17+
Remember that this is a real bug in a real project!
18+
19+
Nickname: "No December"
20+
21+
Link: https://code.google.com/p/android/issues/detail?id=39692
22+
23+
Questions you should be able to answer (OK if you can't answer all):
24+
25+
\begin{itemize}
26+
\item What is the problem the person is experiencing?
27+
\item On what date did the wrong behavior get introduced?
28+
\item Who is the person who fixed the behavior?
29+
\end{itemize}
30+
31+
\hrulefill
32+
33+
You (and your buddy's) task during this section is to read a bug
34+
report against a real project. You'll each explain it to each other
35+
after you're done understanding it. If you are not sure what is going
36+
on, feel free to ask your buddy for help.
37+
38+
Remember that this is a real bug in a real project!
39+
40+
Nickname: "Can't print... sometimes"
41+
42+
Link: https://bugs.launchpad.net/ubuntu/+source/cupsys/+bug/255161
43+
44+
Questions you should be able to answer:
45+
46+
\begin{itemize}
47+
\item Are there particular days of the week that people can reliably print?
48+
\item Does uninstalling OpenOffice.org and reinstalling it help fix the problem?
49+
\item What is the actual cause of the problem?
50+
\end{itemize}
51+
52+
\end{document}

0 commit comments

Comments
 (0)