forked from jpabico/phase_0_unit_1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgps1.1.html
49 lines (46 loc) · 2.09 KB
/
gps1.1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!--
Write your names here:
1. Rootul Patel
2. Dylan Krause
-->
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="gps1.1.css">
<title>Pair Programming Site</title>
</head>
<body>
<div id="header">
<h1>How to Pair Program</h1>
</div>
<div id="main">
<p id="def">Pair programming is an agile software development technique in which
two programmers work together at one workstation. One, the driver, writes
code while the other, the observer, pointer or navigator, reviews each
line of code as it is typed in. The two programmers switch roles frequently.
While reviewing, the observer also considers the "strategic" direction of the
work, coming up with ideas for improvements and likely future problems to address.
This frees the driver to focus all of his or her attention on the "tactical" aspects
of completing the current task, using the observer as a safety net and guide.</p>
<ul>
<h5 id="steps">Steps to Pair Program Well</h5>
<li>Start with a well-defined task</li>
<li>Agree on one tiny goal at a time</li>
<li>Rely on your partner, support your partner</li>
</ul>
<img src="http://upload.wikimedia.org/wikipedia/commons/a/af/Pair_programming_1.jpg" id="pic">
<h5>Reflection</h5>
<p>Pairing for the first time was a little odd. The Driver/Navigator mentality is not something I am used to. I enjoyed it though and can see how useful it may be when it comes to learning. When you split the task, one person can really focus on the techiniques and the other can really focus on the syntax. I'm sure this helps with learning and remembering. I think, trying to solve a problem didn't work so well because I didn't feel like I had the chance to try everything. I felt like there was pressure to get the most logical solution, rather than to try a variety of techniques. </p>
</div>
<div id="sidebar">
<ul>
<li><a href="#def">definition</a></li>
<li><a href="#steps">steps</a></li>
<li><a href="#pic">picture</a></li>
</ul>
</div>
<div id="footer">
Made By: Rootul Patel and Dylan Krause
</div>
</body>
</html>