forked from UIUC-ECE374B/UIUC-ECE374B.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlectures.html
83 lines (74 loc) · 3.02 KB
/
lectures.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
---
layout: default
title: Lectures and labs
---
<p>I would like to thank Professor Sariel Har-Peled whose lectures I've based much of my own content on. These lectures are updated every semester to emphasize things I find important and match my voice. Though my lectures have diverged from his, <a href="https://courses.engr.illinois.edu/cs374/fa2022/a/lec/lec_prerec/">Prof. Har-Peled's lectures</a> are also great. </p>
<p><em> Also, quick hint, icons are links to slides and video contents (And the "Read Me" link to some quick notes)!</em> By popular demand, we are also including links to Sumedh's (the true OG), discussion recordings! </p>
<table id="customers">
<tr>
<th> Pre-lecture slides </th>
<th> Post-lecture scribbles</th>
<th> Asynchronous lecture video </th>
<th> Live recording </th>
<th> Live recording (Sumedh) </th>
</tr>
<tr>
<td>
<img class="lec_page_icons"
alt="{{ page.title }}"
title="{{ page.title }} Slides (Clean)"
src="{{ site.base }}/img/icons/slide_clean_3.png" />
</td>
<td>
<img class="lec_page_icons"
alt="{{ page.title }}"
title="{{ page.title }} Slides (Scribble)"
src="{{ site.base }}/img/icons/slide_scribble_3.png" />
</td>
<td>
<img class="lec_page_icons"
alt="{{ page.title }}"
title="{{ page.title }} Recording"
src="{{ site.base }}/img/icons/pre-recording_3.png" />
</td>
<td>
<img class="lec_page_icons"
alt="{{ page.title }}"
title="{{ page.title }} Recording"
src="{{ site.base }}/img/icons/lecture_recording_3.png" />
</td>
<td>
<img class="lec_page_icons"
alt="{{ page.title }}"
title="{{ page.title }} Recording"
src="{{ site.base }}/img/icons/lecture_recording_3_sumedh.png" />
</td>
</tr>
</table>
{% comment %}
<div class="card-columns">
{% comment %}
Sort the lectures by date, putting those without dates last
{% endcomment %}
{% assign lectures_by_date = site.lectures | sort: 'deliverydate', 'first' %}
{% for l in lectures_by_date %}
{% include lecture-card.html lecture=l %}
{% endfor %}
</div>
{% endcomment %}
{% assign lectures_by_date = site.lectures | sort: 'deliverydate', 'first' %}
{% assign labs_by_date = site.labs | sort: 'deliverydate', 'first' %}
<section class="people row justify-content-between">
<div class="col-md-7">
<h3 class="pt-3"> Lectures </h3>
{% for l in lectures_by_date %}
{% include lecture-card.html lecture=l %}
{% endfor %}
</div>
<div class="col-md-5">
<h3 class="pt-3"> Labs </h3>
{% for l in labs_by_date %}
{% include lab-card.html lecture=l %}
{% endfor %}
</div>
</section>