Tags:: #unicourse
Links:: [[My Courses]]
___
Summary::
Year:: 3
Semester::
Professor:: [[Anthony Ong]]
___
## Units
```dataview
table Summary
from #unit and !outgoing([[]])
where contains(Course, [[]])
sort Created asc
```
## Assignments
```dataview
table Deadline, Status
FROM #assignment and !"Extras"
where contains(Course, [[]])
SORT Deadline asc
```
## Lectures
```dataview
table file.ctime as "Created", Status
FROM #🎓 AND !"Extras"
where contains(Course, [[]])
SORT file.ctime desc
```
## Inputs
```dataview
table Source, Status
FROM "Lecture Notes" AND !"Extras"
where contains(Course, [[]])
SORT Created desc
```