Skip to content

Commit

Permalink
agenda done
Browse files Browse the repository at this point in the history
  • Loading branch information
btholt committed Jul 4, 2024
1 parent 9573e23 commit 3f53c01
Show file tree
Hide file tree
Showing 19 changed files with 75 additions and 58 deletions.
83 changes: 71 additions & 12 deletions lessons/01-the-first-section/A-intro.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,77 @@
---
title: "Introduction"
description: "The introduction to this course."
keywords:
- A course starter
- Next.js
- React
- Brian Holt
---

Hello! And welcome to the Next.js course starter by [Brian Holt][twitter].
```
0930: Introduction
1000: Getting started with SQLite
1100: SQL Basics
1200: Lunch
1300: Data types
1400: Managing SQLite tables and databases
1500: Indexing
1600: Transactions\
0930: Extensions
1000: Scaling SQLite
1100: SQLite vs other databases
1200: Lunch
1300: Building real-world apps with SQLite
1400: Wrap-up
```

![Cat, dog, and rat logo for the course](./images/BRAND-WHearts.png)
Agenda:

This is a course starter specifically made for making online courses and optimized for use with [Frontend Masters][fem].
Intro to SQLite Conceptual

[twitter]: https://twitter.com/holtbt
[fem]: https://www.frontendmasters.com
- Brief history
- It's everywhere
- It runs on everything
- Now it can scale up

Intro to SQLite Execution

- It's a file
- It's still SQL
- https://www.sqlite.org/omitted.html
- https://www.sqlite.org/quirks.html
- CLI
- Chinook: https://github.com/lerocha/chinook-database

SQL Basics

- Selects
- Inserts
- Updates
- Deletes
- Order
- Tables

A bit more advanced

- Relationships
- Joins
- Foreign Keys
- Functions / Aggregations / Group
- Query Performance
- Transactions

Node.js Exercise: Show movies

Particular to SQLite

- Dynamic Data Types
- Limits
- Triggers
- Views

Extensions

- JSON
- Full Text Search
- Vector

Growing SQLite

- Litestream / Backups
- LiteFS / Network Access
- SQLite vs libSQL
- SQLite Cloud
5 changes: 0 additions & 5 deletions lessons/02-a-second-section/A-first-lesson.md

This file was deleted.

13 changes: 0 additions & 13 deletions lessons/02-a-second-section/B-second-lesson.md

This file was deleted.

3 changes: 0 additions & 3 deletions lessons/02-a-second-section/meta.json

This file was deleted.

6 changes: 0 additions & 6 deletions lessons/03-thoughts-on-js-and-css/A-css.md

This file was deleted.

5 changes: 0 additions & 5 deletions lessons/03-thoughts-on-js-and-css/B-javascript.md

This file was deleted.

6 changes: 0 additions & 6 deletions lessons/03-thoughts-on-js-and-css/C-npm.md

This file was deleted.

4 changes: 0 additions & 4 deletions lessons/03-thoughts-on-js-and-css/meta.json

This file was deleted.

2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const config = {
output: "export",
basePath: BASE_URL,
env: {
BASE_URL,
BASE_URL: BASE_URL ? BASE_URL : "http://localhost:3000",
},
};

Expand Down
Binary file removed public/images/BRAND-WHearts.png
Binary file not shown.
Binary file added public/images/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/author.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/course-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/favicon.ico
Binary file not shown.
6 changes: 3 additions & 3 deletions styles/variables.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
:root {
--primary: #dfa067;
--secondary: #93aca7;
--highlight: #224159;
--primary: #8697cb;
--secondary: #BCBDFD;
--highlight: #2c2f38;

--text-header: var(--primary);
--text-main-headers: var(--highlight);
Expand Down

0 comments on commit 3f53c01

Please sign in to comment.