-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 2.83 KB
/
index.html
File metadata and controls
38 lines (38 loc) · 2.83 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Systems Fundamentals - Home</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.0/css/bulma.min.css">
<link rel=stylesheet type="text/css" href="stylesheet.css">
</head>
<body>
<section class="hero is-success is-bold">
<div class="hero-body">
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="title" href="index.html">COMP 211</a>
</div>
<div class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item has-text-weight-bold" href=".">Home</a>
<a class="navbar-item has-text-weight-bold" href="lectures">Lectures</a>
<a class="navbar-item has-text-weight-bold" href="extra">Extra resources</a>
<a class="navbar-item has-text-weight-bold" href="beyond">Beyond 211</a>
</div>
</div>
</nav>
</div>
</section>
<section class="section">
<div class="content">
<h2 class="title">Systems Fundamentals</h2>
<p><strong>COMP 211</strong> is is UNC Chapel Hill’s <strong>Systems Fundamentals</strong> course. It is taught by <a href="https://krisjordan.com/">Professor Kris Jordan</a> and a team of 13 teaching assistants.</p>
<p>Systems Fundamentals requires <strong>Data Structures and Analysis</strong> (COMP 210), and either <strong>Discrete Structures</strong> (COMP 283) or <strong>Discrete Mathematics</strong> (MATH 381). Although this class is far less theoretical than those classes, having maturity in these areas is an important foundation to build upon.</p>
<p>The course is taught remotely due to the need for social distancing during the pandemic. As such, the course content is mainly uploaded to YouTube. <a href="https://www.youtube.com/channel/UCX2Dop_X6MtbcmEVkbjMpSA?sub_confirmation=1">Subscribe to follow along</a>. A list of asynchronous videos and slides are available <a href="lectures">here</a>.</p>
<p>The core concepts of the course, as listed in the syllabus, include "data representation, pointers, execution models, memory management, and runtime environments... Processes, input/output, and system calls... Lexical analysis, parsing, interpretation, and translation... Command-line interface tools including shell, editor, compiler, linker, test harness, debugger, version control, and build tooling."</p>
</div>
</section>
</body>
</html>