-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
58 lines (58 loc) · 2.44 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<script src="lib/angular-1.3.1/angular.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet">
<script src="lib/csvParser.js"></script>
<script src="js/app.js"></script>
<link src="css/app.css"></link>
<link type="text/css" rel="stylesheet" href="css/app.css"/>
</head>
<body>
<div id="title">
<h1>INFO498F: Technical Foundations of Informatics</h1>
</div>
<div class="container">
<div class="section">
<h3>Overview</h3>
<p class="description">This course introduces fundamental tools and technologies necessary to transform data into knowledge. We'll covers skill associated with each component of the information lifecycle, including the collection, storage, analysis, and visualization of data. Core competencies underlying this process, including functional programming, use of databases, data wrangling, version control, and command line proficiency, are acquired through real-world data-driven challenges. After finishing this course, you'll be ready to apply these data-skills to your field of interest, or pursue higher level informatics courses.</p>
</div>
<div class="section">
<h3>Quick links</h3>
<div>
<a href="https://canvas.uw.edu/courses/1023398" target="_blank">
<i class="fa fa-external-link"></i> Canvas Webpage (UW netid required)
</a>
</div>
<div>
<a href="https://info498f.slack.com/messages" target="_blank">
<i class="fa fa-comment"></i> Slack
</a>
</div>
<div>
<a href="https://github.com/INFO-498F/" target="_blank">
<i class="fa fa-github"></i></i> GitHub page
</a>
</div>
</div>
<h3>Lectures</h3>
<main ng-app="LessonApp" ng-controller="LessonController">
<div class="lesson" ng-repeat="lesson in items ">
<div>
<h4><a target="_blank" href={{lesson.id}}>{{lesson.title}}</a></h4>
</div>
<div class="description">{{lesson.description}}</div>
</main>
</div>
<footer>
<div id="footer-background">
</div>
<div class="copyright">
© 2015,
<a target = "_blank" href="https://ischool.uw.edu/people/faculty/mikefree">Michael Freeman</a>,
<a target = "_blank" href="https://ischool.uw.edu/">University of Washington Information School</a><p></p>
</div>
</footer>
</body>
</html>