-
Notifications
You must be signed in to change notification settings - Fork 1
/
bootcamp.html
96 lines (84 loc) · 3.96 KB
/
bootcamp.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
<!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="02.526 Interactive Data Visualization">
<meta name="author" content="Chi-Loong (www.vslashr.com)">
<meta name="google-site-verification" content="..." />
<meta property="og:title" content="02.526 Interactive Data Visualization">
<meta property="og:type" content="website">
<meta property="og:url" content="https://chi-loong.github.io/InteractiveViz/">
<meta property="og:description" content="02.526 Interactive Data Visualization">
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@vslashr" />
<meta name="twitter:creator" content="@chiloong" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
</head>
<body>
<div class="container">
<h1 class="text-center display-4 px-5 py-5">MUSPP Bootcamp</h1>
<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>Bootcamp Agenda</h4>
<p>The bootcamp is a 3 half-day modular immersion course that gives attendees a quick overview of the more technical aspects of programming.</p>
<p>Students do not have to come for every session and can pick and choose depending on what they need.</p>
</div>
</div>
<hr/>
<div class="row">
<div class="col-md-12">
<h4>Learning Objectives</h4>
<ul>
<li>Know at what level you want to approach a tech problem that fits your use case. Which language or tool, how and most importantly, why.</li>
<li>Understanding data formats and structures (CSV / JSON). API endpoints and API keys. Why Git, Github and Gitpages.</li>
<li>The benefits and tradeoffs of programming code vs low code / no code.</li>
</ul>
</div>
</div>
<hr/>
<div class="row">
<div class="col-md-3">
<h4><a href="camp1.html" target="_blank">Getting data</a></h4>
<h6 class="text-info">16th Jan (Tues)</h6>
</div>
<div class="col-md-9">
<p>Survey and discussion on how to break down and tackle technical problems based on use case - what tools, how and why.</p>
<p>Accessing API endpoints and JSON structure.</p>
<p>Connecting to APIs via code.</p>
<p>Scraping websites using tools like ParseHub.</p>
</div>
</div>
<hr/>
<div class="row">
<div class="col-md-3">
<h4><a href="camp2.html" target="_blank">Data manipulation</a></h4>
<h6 class="text-info">17th Jan (Wed)</h6>
</div>
<div class="col-md-9">
<p>Using pivot tables to do data manipulation.</p>
<p>Converting a tall table to a wide table and vice versa.</p>
<p>Using code to do data manipulation.</p>
<p>Discussions: Data piplining and ELT (Extract, load, transform)</p>
</div>
</div>
<hr/>
<div class="row">
<div class="col-md-3">
<h4><a href="camp3.html" target="_blank">Project deployment</a></h4>
<h6 class="text-info">18th Jan (Thurs)</h6>
</div>
<div class="col-md-9">
<p>Git, GitHub, GitHub Desktop, Git Pages</p>
<p>Concepts: Project repositories, backups and traceability</p>
<p>Concepts: Collaboration and permissions</p>
<p>Deployment of mock project</p>
</div>
</div>
<hr/>
<h6 class="text-center px-3 py-3">By Chan Chi-Loong | <a href="https://www.viz.sg/" target="_blank">www.viz.sg</a> | <a href="https://www.vslashr.com/" target="_blank">www.vslashr.com</a></h6>
</div>
</body>
</html>