mirror of
https://github.com/amyjko/cooperative-software-development
synced 2024-12-26 21:58:27 +01:00
97 lines
4.3 KiB
HTML
97 lines
4.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<!-- Latest compiled and minified CSS -->
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
|
|
|
<!-- Optional theme -->
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
|
|
|
|
<!-- Latest compiled and minified JavaScript -->
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
|
|
|
|
<link rel="stylesheet" href="style.css" />
|
|
|
|
<title>Cooperative Software Development</title>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<img src="images/cover.jpg" class="img-responsive" />
|
|
<small>Credit: Creative Commons</small>
|
|
|
|
<h1>Cooperative Software Design</h1>
|
|
<div class="lead"><a href="http://faculty.uw.edu/ajko">Andrew J. Ko</a> <small>with contributions from <a href="http://benjixie.com/">Benjamin Xie</a></small></div>
|
|
|
|
<table class="table">
|
|
<tr>
|
|
<td rowspan="14" width="50%">
|
|
<p>After teaching software engineering for many years, I've been frustrated by the lack of a simple, concise, and practical introduction to the human aspects of software engineering for students interested in becoming software engineers.</p>
|
|
|
|
<p> In response, I've distilled my lectures from the past decade into these brief writings. They don't represent <em>everything</em> we know about software engineering (in particular, I don't discuss the deep technical contributions from the field), but the chapters do synthesize the broad evidence we have about how teams have to work together to succeed.</p>
|
|
|
|
<p>I hope you enjoy! If you see something missing or wrong, please send me feedback.</p>
|
|
|
|
</td>
|
|
<td>Chapter 1. <a href="history.html">History of software engineering</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Chapter 2. <a href="organizations.html">Software engineering organizations</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Chapter 3. <a href="communication.html">Communication</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Chapter 4. <a href="productivity.html">Productivity</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Chapter 5. <a href="quality.html">Software quality</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Chapter 6. <a href="requirements.html">Requirements engineering</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Chapter 7. <a href="architecture.html">Architecture</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Chapter 8. <a href="specifications.html">Functional specifications</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Chapter 9. <a href="process.html">Process</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Chapter 10. <a href="comprehension.html">Comprehension</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Chapter 11. <a href="verification.html">Verification</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Chapter 12. <a href="monitoring.html">Monitoring</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Chapter 13. <a href="evolution.html">Evolution</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Chapter 14. <a href="debugging.html">Debugging</a></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<center>See something missing or wrong? <a href="https://github.com/andyjko/cooperative-software-development">Submit an issue or a pull request on GitHub</a>.</center>
|
|
|
|
<p><small>
|
|
<p>This material is based upon work supported by the National Science Foundation under Grant No. <a target="_blank" href="https://www.nsf.gov/awardsearch/showAward?AWD_ID=0952733">0952733</a>. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of the National Science Foundation.
|
|
</p>
|
|
|
|
<p><a rel="license" href="http://creativecommons.org/licenses/by-nd/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nd/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nd/4.0/">Creative Commons Attribution-NoDerivatives 4.0 International License</a></p>
|
|
|
|
</small></p>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|
|
|