-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: revamp lecture schedule for summer 24, add industry experts
- Loading branch information
Showing
23 changed files
with
282 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v18.16.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
--- | ||
title: Assignment 1 - Frontend | ||
releaseDate: | ||
dueDate: | ||
releaseDate: 2024-05-16 | ||
dueDate: 2024-05-30 | ||
--- | ||
|
||
TBD | ||
# Assignment Overview | ||
|
||
Assignment to be released on Github Classroom. | ||
|
||
# Submission | ||
|
||
Please submit your assignment to Gradescope through the Github integration. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
--- | ||
title: Assignment 2 - Backend | ||
releaseDate: | ||
dueDate: | ||
releaseDate: 2024-05-30 | ||
dueDate: 2024-06-13 | ||
--- | ||
|
||
TBD | ||
# Assignment Overview | ||
|
||
Assignment to be released on Github Classroom. | ||
|
||
# Submission | ||
|
||
Please submit your assignment to Gradescope through the Github integration. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
--- | ||
title: Assignment 3 - Managing Users | ||
releaseDate: | ||
dueDate: | ||
releaseDate: 2024-06-13 | ||
dueDate: 2024-06-27 | ||
--- | ||
|
||
TBD | ||
# Assignment Overview | ||
|
||
Assignment to be released on Github Classroom. | ||
|
||
# Submission | ||
|
||
Please submit your assignment to Gradescope through the Github integration. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,20 @@ | ||
--- | ||
week: 1 | ||
title: Intro to Web Dev, HTML/CSS | ||
title: Mobile-first HTML/CSS | ||
date: 2024-05-09 | ||
description: An introduction to full-stack development; How to succeed in this course; A quick (re)introduction to HTML and CSS - how to create nice layouts. | ||
description: An introduction to full-stack development; How to succeed in this course; Creating mobile-first frontends with HTML and CSS. | ||
googleSlidesUrl: https://docs.google.com/presentation/d/1wHZtqoHJlAV8-Fa-2CF3P3hILe2KWT3blHne0d9GA1A/ | ||
--- | ||
|
||
Learning Outcomes: | ||
In this lecture, we will learn: | ||
|
||
Why... | ||
|
||
- Are there 3 separate layers when creating a webpage (Structure, Style, Behavior)? | ||
- Do we follow a style guide when writing HTML/CSS? | ||
|
||
How to... | ||
|
||
- Create a page based on a design mockup | ||
- Follow best practices in structuring HTML and CSS | ||
- Make a responsive website | ||
- Make a responsive website using the 12-column layout | ||
- Use Chrome Devtools to inspect, debug, and test layout issues |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,18 @@ | ||
--- | ||
week: 2 | ||
title: Javascript in the Browser | ||
title: Interactive frontends with Javascript | ||
date: 2024-05-16 | ||
description: Programatically manipulate the Document Object Model (DOM) through Javascript; Structuring a frontend with the Model-View-ViewModel architecture pattern; Some cool possibilities with browser based Javascript. | ||
description: Programatically manipulate the Document Object Model (DOM) through Javascript in the browser; Structuring a frontend with the Model-View-ViewModel architecture pattern; Some cool possibilities with browser-based Javascript. | ||
googleSlidesUrl: https://docs.google.com/presentation/d/1nnpRY3D8S7NaWOvIOFTaauSOPxDF5UO8hoVxJHNmXng/ | ||
--- | ||
|
||
In this lecture, we will learn: | ||
|
||
Why... | ||
|
||
- Is it important to separate concerns in a frontend? | ||
|
||
How to... | ||
|
||
- Manipulate the Document Object Model (DOM) through Javascript | ||
- Use the Model-View-ViewModel (MVVM) architecture pattern to structure a frontend |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.