-
Notifications
You must be signed in to change notification settings - Fork 1
/
class2021.html
136 lines (124 loc) · 5.57 KB
/
class2021.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="SUTD HASS02.526">
<meta name="author" content="Chi-Loong (www.vslashr.com)">
<meta name="google-site-verification" content="..." />
<meta property="og:title" content="SUTD HASS02.526 course">
<meta property="og:type" content="website">
<meta property="og:url" content="https://chi-loong.github.io/HASS02.526/">
<meta property="og:description" content="SUTD HASS02.526">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@vslashr" />
<meta name="twitter:creator" content="@chiloong" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.css">
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.21/css/dataTables.bootstrap4.min.css"/>
</head>
<body>
<div class="container">
<h6 class="text-center px-3 py-3"><a href="index.html">Schedule</a> | <a href="objectives.html">Objectives</a></h6>
<div class="row">
<div class="col-md-12">
<h4>Assignments</h4>
<table id="hass02526" class="table table-striped table-bordered" width="100%"></table>
</div>
</div>
<hr/>
<div class="row">
<div class="col-md-12">
<h4>Assignment Reference</h4>
<ul>
<li><a href="solutions/assignment4.html" target="_blank">Assignment 4</a></li>
<li><a href="solutions/assignment5.html" target="_blank">Assignment 5</a></li>
</ul>
</div>
</div>
<hr/>
<div class="row">
<div class="col-md-12">
<h4 class="py-3">Final Projects 2021</h4>
<ul>
<li><a href="https://nxh912.github.io/HASS-project/" target="_blank">Visualization of mapping objects in application to tour recommendation problems</a> (Ngai Lam)</li>
<li><a href="https://vnck.github.io/HASS-Project" target="_blank">Tracing TraceTogether sentiments through Facebook Reactions to Straits Times Headlines</a> (Ivan, Eva)</li>
<li><a href="https://khalishah.github.io/HASS-project/" target="_blank">Visualizing mental health wellness of people from different US states</a> (Khalishah, Felicia)</li>
<li><a href="https://kyrawny.github.io/HASS_project/" target="_blank">Visualization of common ideas in chess openings, and how they apply chess principles</a> (Kyra)</li>
<li><a href="https://furballuvz.github.io/HASS-project/" target="_blank">Visualizing changes in flight traffic for Changi Airport</a> (Ziyan)</li>
<li><a href="https://alittleof.github.io/HASS-groupProject/" target="_blank">Distribution of Places of Worship against Population by religious beliefs</a> (Jianxiang, Rachel)</li>
<li><a href="https://wailoon2794.github.io/HASS-Project/" target="_blank">Visualization of waste management in Singapore</a> (Wailoon, Hailun)</li>
</ul>
</div>
</div>
<hr/>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.js"></script>
<script src="https://cdn.datatables.net/1.10.21/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.10.21/js/dataTables.bootstrap4.min.js"></script>
<script src="js/papaparse.min.js"></script>
<script>
Papa.parse("data/data2021.csv", {
delimiter: ",",
header:true,
download:true,
complete: function(results) {
var data = results.data.map(function(d) {return [d.SID, d.Name, d.GitUsername]});
$("#hass02526").DataTable({
data: data,
responsive: true,
columns: [
{ title: "Student ID" },
{ title: "Full Name" },
{ title: "Github Username" },
{ title: "Assignment1", orderable: false },
{ title: "Assignment2", orderable: false },
{ title: "Assignment3", orderable: false },
{ title: "Assignment4", orderable: false },
{ title: "Assignment5", orderable: false }
],
pageLength: 20,
order: [[0, "asc"]],
columnDefs: [
{
targets: 3,
data: "Assignment1",
render: function ( data, type, row, meta ) {
return '<a href="https://' + row[2] + '.github.io/HASS-assignment1/">Assignment 1</a>';
}
},
{
targets: 4,
data: "Assignment2",
render: function ( data, type, row, meta ) {
return '<a href="https://' + row[2] + '.github.io/HASS-assignment2/">Assignment 2</a>';
}
},
{
targets: 5,
data: "Assignment3",
render: function ( data, type, row, meta ) {
return '<a href="https://' + row[2] + '.github.io/HASS-assignment3/">Assignment 3</a>';
}
},
{
targets: 6,
data: "Assignment4",
render: function ( data, type, row, meta ) {
return '<a href="https://' + row[2] + '.github.io/HASS-assignment4/">Assignment 4</a>';
}
},
{
targets: 7,
data: "Assignment5",
render: function ( data, type, row, meta ) {
return '<a href="https://' + row[2] + '.github.io/HASS-assignment5/">Assignment 5</a>';
}
}
]
});
}
})
</script>
</body>
</html>