-
Notifications
You must be signed in to change notification settings - Fork 46
/
assignments.html
202 lines (153 loc) · 6.28 KB
/
assignments.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Data-Intensive Computing with MapReduce</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<link href="assets/css/bootstrap-responsive.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Fav and touch icons -->
<!--link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="assets/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="assets/ico/favicon.png"-->
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="overview.html">Overview</a></li>
<li><a href="syllabus.html">Syllabus</a></li>
<li class="active"><a href="assignments.html">Assignments</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<div class="page-header">
<h1>Assignments <small>Data-Intensive Computing with MapReduce (Spring 2013)</small></h1>
</div>
<div class="subnav">
<ul class="nav nav-pills">
<li><a href="#assignment0">0</a></li>
<li><a href="#assignment1">1</a></li>
<li><a href="#assignment2">2</a></li>
<li><a href="#assignment3">3</a></li>
<li><a href="#assignment4">4</a></li>
<li><a href="#assignment5">5</a></li>
<li><a href="#assignment6">6</a></li>
<li><a href="#finalproject">Final Project</a></li>
</ul>
</div>
<section id="assignment0" style="padding-top:35px">
<div>
<h3>Assignment 0: Prelude <small>due January 24</small></h3>
<p>Complete
the <a href="http://lintool.github.com/Cloud9/docs/word-count.html">word
count tutorial</a> Cloud<sup>9</sup>, which is a Hadoop toolkit we're
going to use throughout the course. This tutorial will take you
through setting up Hadoop on your local machine and running Hadoop on
the virtual machine. It'll also begin familiarizing you with
github.</p>
<p><b>Note:</b> This assignment is not explictly graded, except as
part of Assignment 1.</p>
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div>
</section>
<section id="assignment1" style="padding-top:35px">
<div>
<h3>Assignment 1: Warmup <small>due January 31</small></h3>
<p>Make sure you've completed
the <a href="http://lintool.github.com/Cloud9/docs/word-count.html">word
count tutorial</a> Cloud<sup>9</sup>.</p>
<!--
<p>Sign up for <a href="http://github.com/">GitHub</a> account. It is
very important that you do so as soon as possible, because GitHub is
the mechanism by which you will submit assignments. Once you've signed
up for an account, go to this page
to <a href="https://github.com/edu">request an educational
account</a>.</p>
<p>Here is <a href="https://help.github.com/articles/create-a-repo">how
you create a repo on GitHub</a>:</p>
-->
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div>
</section>
<section id="assignment2" style="padding-top:35px">
<div>
<h3>Assignment 2: Counting <small>due February 7</small></h3>
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div>
</section>
<section id="assignment3" style="padding-top:35px">
<div>
<h3>Assignment 3: Inverted Indexing <small>due February 21</small></h3>
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div>
</section>
<section id="assignment4" style="padding-top:35px">
<div>
<h3>Assignment 4: Graphs <small>due March 7</small></h3>
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div>
</section>
<section id="assignment5" style="padding-top:35px">
<div>
<h3>Assignment 5: Project Proposal <small>due April 4</small></h3>
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div>
</section>
<section id="assignment6" style="padding-top:35px">
<div>
<h3>Assignment 6: Relational Processing <small>due April 18</small></h3>
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div>
</section>
<section id="finalproject" style="padding-top:35px">
<div>
<h3>Final Project <small>presentations on May 2 and May 9</small></h3>
<p style="padding-top: 20px"><a href="#">Back to top</a></p>
</div>
</section>
<p style="padding-top:100px" />
</div> <!-- /container -->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="assets/js/jquery.js"></script>
<script src="assets/js/bootstrap-transition.js"></script>
<script src="assets/js/bootstrap-alert.js"></script>
<script src="assets/js/bootstrap-modal.js"></script>
<script src="assets/js/bootstrap-dropdown.js"></script>
<script src="assets/js/bootstrap-scrollspy.js"></script>
<script src="assets/js/bootstrap-tab.js"></script>
<script src="assets/js/bootstrap-tooltip.js"></script>
<script src="assets/js/bootstrap-popover.js"></script>
<script src="assets/js/bootstrap-button.js"></script>
<script src="assets/js/bootstrap-collapse.js"></script>
<script src="assets/js/bootstrap-carousel.js"></script>
<script src="assets/js/bootstrap-typeahead.js"></script>
</body>
</html>