Skip to content

Commit 938cd41

Browse files
committed
refactor: Use more consistent internal spacing in the slides/depc/weekfifteen/index.qmd file.
1 parent 5464313 commit 938cd41

File tree

1 file changed

+42
-5
lines changed

1 file changed

+42
-5
lines changed

slides/depc/weekfifteen/index.qmd

Lines changed: 42 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Project Critique for `FastAPI`"
33
description: "Evaluating a project's documentation"
4-
date: "2025-12-03"
4+
date: "2025-12-01"
55
date-format: long
66
author: Anshu Pathak, Logan Butler, Tien DeLong-Headley
77
execute:
@@ -35,57 +35,73 @@ format:
3535
- Examples are easy to follow but often stay basic.
3636
- Pages mix “how to do it” with “what it is.”
3737
- Doesn’t clearly explain when to use Swagger UI vs. ReDoc.
38-
- Mentions some helpful features, but misses deeper explanation or real-world guidance.
38+
- Mentions some helpful features, but misses deeper explanation or real-world
39+
guidance.
3940

4041
:::
4142

4243

4344
## High Performance
4445

4546
::: {.incremental .fade-right style="margin-top: -0.2em; font-size: 0.775em;"}
47+
4648
- Explains it's on par with NodeJS and GO
4749
- You have to click two separate links before getting to an explanation page
4850
- Benchmarks are an outside website not on the actual FastAPI website.
4951
- Lacks indepth explanation of why and how fast FastAPI actually is.
52+
5053
:::
54+
5155
## Dependency Injection
5256

5357
::: {.incremental .fade-right style="margin-top: -0.2em; font-size: 0.775em;"}
58+
5459
- Introduces the Depends() system as a simple way to declare reusable logic.
55-
- Demonstrates how dependencies can handle tasks like authentication, database sessions, or common parameters.
56-
- Explains that dependencies can be nested, allowing complex logic to be broken into smaller reusable pieces.
57-
- Emphasizes that dependency injection keeps code modular, testable, and easier to maintain.
60+
- Demonstrates how dependencies can handle tasks like authentication, database
61+
sessions, or common parameters.
62+
- Explains that dependencies can be nested, allowing complex logic to be broken
63+
into smaller reusable pieces.
64+
- Emphasizes that dependency injection keeps code modular, testable, and easier
65+
to maintain.
5866
- No link to dependency section of documentation on features tab.
67+
5968
:::
6069

6170
## Critique of Overall Documentation Features and Layout
6271

6372
### Strengths
6473
::: {.incremental .fade-right style="margin-top: -0.2em; font-size: 0.775em;"}
74+
6575
- **Strong reference documentation**
6676
- Clear API signatures, parameters, defaults, and behavior.
6777
- Reliable for looking up low-level details.
6878

6979
- **Beginner-friendly introductory material**
7080
- Quickstart/tutorial content with runnable examples.
7181
- Clear demonstration through interactive docs.
82+
7283
:::
84+
7385
---
7486

7587
### Weaknesses (Diátaxis Misalignments)
88+
7689
::: {.incremental .fade-right style="margin-top: -0.2em; font-size: 0.775em;"}
90+
7791
- **Blurring of documentation modes**
7892
- Many pages mix tutorial, reference, and conceptual info.
7993
- Harder for readers to know *what type of help* a page provides.
8094

8195
- **Limited “Explanation” content**
8296
- Lacks deep discussion of architectural trade-offs or design philosophy
8397
- Makes advanced use harder to reason about.
98+
8499
:::
85100

86101
---
87102

88103
### Structural Gaps
104+
89105
::: {.incremental .fade-right style="margin-top: -0.2em; font-size: 0.775em;"}
90106
- No “documentation map” guiding users to:
91107
- *learn* (tutorials)
@@ -94,50 +110,68 @@ format:
94110
- *look up* (reference)
95111
- Docs scale well for small projects, but guidance diminishes for large / complex systems.
96112
- Real-world patterns and best practices are scattered instead of clearly organized.
113+
97114
:::
98115

99116
## Is FastAPI a Worthwhile Tool for Beginners?
100117

101118
### Overall Assessment
119+
102120
::: {.incremental .fade-right style="margin-top: -0.2em; font-size: 0.775em;"}
103121
- **Yes—kind of.**
104122
- The learning curve is gentle for small projects due to excellent beginner-oriented examples.
105123
- Type-hint-driven design gives immediate feedback and intuitive API creation.
106124
- The interactive docs make it easy for beginners to visualize results.
125+
107126
:::
127+
108128
---
109129

110130
### Benefits for Beginners
131+
111132
::: {.incremental .fade-right style="margin-top: -0.2em; font-size: 0.775em;"}
133+
112134
- Quick “first success”: build a working API in minutes.
113135
- Automatic validation reduces trial-and-error.
114136
- Clear, example-driven introductory material.
137+
115138
:::
139+
116140
---
117141

118142
### Challenges for Beginners
143+
119144
::: {.incremental .fade-right style="margin-top: -0.2em; font-size: 0.775em;"}
145+
120146
- As projects grow, beginners may struggle:
121147
- Fewer conceptual explanations for *why* things work the way they do.
122148
- Less guidance on project structure, testing strategies, deployment patterns.
123149
- Beginners transitioning to intermediate users may find gaps in “How-to” style documentation.
150+
124151
:::
152+
125153
---
126154

127155
## Minor Comparison: FastAPI vs. Django Documentation
156+
128157
::: {.incremental .fade-right style="margin-top: -0.2em; font-size: 0.775em;"}
158+
129159
- **Django has more mature Diátaxis structure:**
130160
- Clear separation between tutorials, topic guides, reference, and how-tos.
131161
- Rich conceptual explanations (for things like tool architecture)
132162
- Strong real-world “how-tos”.
163+
133164
:::
134165
---
135166

136167
### How FastAPI Differs
168+
137169
::: {.incremental .fade-right style="margin-top: -0.2em; font-size: 0.775em;"}
170+
138171
- FastAPI is easier to *start* with, but Django is easier to *grow* with.
139172
- FastAPI’s docs favor code-first examples while Django’s favors structured learning.
140173
- Django’s documentation ecosystem is extensive while FastAPI’s is still growing.
174+
141175
:::
142176

143177
## Overview of strengths of FastAPI docs
@@ -148,16 +182,19 @@ format:
148182
- Built-in interactive API docs explained well.
149183
- Good beginner-friendly introductions.
150184
- Frequently updated and maintained.
185+
151186
:::
152187

153188
## Overview of weaknesses of FastAPI docs
189+
154190
::: {.incremental .fade-right style="margin-top: -0.2em; font-size: 0.775em;"}
155191

156192
- Some topics feel lightly explained.
157193
- Advanced patterns lack clear guidance.
158194
- Large-project advice is limited.
159195
- Dependency system needs deeper examples.
160196
- Sections sometimes mix concepts and tutorials.
197+
161198
:::
162199

163200
# Questions?

0 commit comments

Comments
 (0)