Skip to content

Commit 4f01c40

Browse files
committed
update categoryIndex
1 parent 4cca829 commit 4f01c40

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

src/content/tutorials/en/criticalAI1-chatting-with-about-code.mdx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ For this example, I chose a tutorial I haven't been able to find elsewhere:
5252

5353
<Callout>
5454
Keep the project scope small to start. Do you have different versions of the idea, a simpler version and a more complex one? Write them out separately. For example, here are some other features that would be nice to include, but let's wait to add them later:
55-
</Callout>
5655

57-
>`- Output as a GIF`
58-
>`- Make 2-color halftone pixels instead of grayscale`
56+
`- Output as a GIF`
57+
`- Make 2-color halftone pixels instead of grayscale`
58+
</Callout>
5959

6060
You can follow along with this example in the [p5.js Web Editor](https://editor.p5js.org/sarahciston/sketches/LiHcPXdv1), and you can also follow the [chat thread](https://chatgpt.com/share/67094820-dc28-8003-bd34-14cc1e7b4572) used to create it.
6161

@@ -97,14 +97,14 @@ Pause. Rather than prompting ChatGPT with your whole project idea at once, let's
9797

9898
<Callout>
9999
Try writing the steps out in pseudocode, where you describe the steps of coding it without actually writing the code. This breaks your steps into smaller, more programmatic steps. For example, I could change the video processing steps to read:
100-
</Callout>
101100

102-
>`- Import webcam video`
103-
>`- Access each frame of the video`
104-
>`- Convert each video frame to pixels`
105-
>`- Make each pixel of each frame into a dot`
106-
>`- Convert the dots to grayscale`
107-
>`- Make dot size based on how dark they are. Darker pixels will have larger dots, while brighter pixels will have smaller dots.`
101+
`- Import webcam video`
102+
`- Access each frame of the video`
103+
`- Convert each video frame to pixels`
104+
`- Make each pixel of each frame into a dot`
105+
`- Convert the dots to grayscale`
106+
`- Make dot size based on how dark they are. Darker pixels will have larger dots, while brighter pixels will have smaller dots.`
107+
</Callout>
108108

109109
<Callout>
110110
Type out, run, and compare the code at each step. This may also help you learn more about how the code works interactively, and give you new ideas to try.
@@ -220,7 +220,7 @@ Instead of prompting it to generate code, have it prompt you to code instead. As
220220

221221
### Critical use of AI in creative coding
222222

223-
This tutorial emphasized being mindful of generative AI as source material. We cannot assume it is correct, because it is gathered from millions of crowdsourced pieces of text. Generative AI's biases are not flaws to be eventually optimized out; rather, the issues are fundamental components of how AI is designed.
223+
This tutorial emphasized being mindful of generative AI as source material. We cannot assume it is correct, because it is gathered from millions of crowd-sourced pieces of text. Generative AI's biases are not flaws to be eventually optimized out; rather, the issues are fundamental components of how AI is designed.
224224

225225
This is similar to how we had to learn to read Wikipedia critically, rather than believing it worked like a regular encyclopedia. Just as you seek alternative sources when relying on Wikipedia, don't rely solely on ChatGPT for your programming or other kinds of information.
226226

src/content/tutorials/en/criticalAI2-prompt-battle.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Critical AI Prompt Battle"
33
description: Build a tool to compare generative AI prompts
44
category: criticalAI
5-
categoryIndex: 1
5+
categoryIndex: 2
66
featuredImage: ../images/featured/criticalAItutorial2.png
77
featuredImageAlt: A screenshot of three AI-generated images from the prompt `The doctor is ['a Pakistani woman', 'a Black man', 'a white man'].` The first image is a portrait, the second a cartoon, and the third is a hallway in shadows.
88
relatedContent:

src/content/tutorials/en/criticalAI3-sentiment-dataset-explorer.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Critical AI Sentiment Dataset Explorer"
33
description: Examine the datasets that run AI tools
44
category: criticalAI
5-
categoryIndex: 1
5+
categoryIndex: 3
66
featuredImage: ../images/featured/criticalAItutorial3.png
77
featuredImageAlt: A screenshot of the Dataset Explorer comparing two sentences with different sentiment scores; the one with a gay son ranks highly and the one with a gay daughter ranks low.
88
relatedContent:

src/content/tutorials/en/criticalAI4-no-ai-chatbot.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Critical AI No-AI Chatbot"
33
description: Make an interactive chatbot without using any AI
44
category: criticalAI
5-
categoryIndex: 1
5+
categoryIndex: 4
66
featuredImage: ../images/featured/criticalAItutorial4.png
77
featuredImageAlt: A screenshot of a chatbot interface with introductory conversation
88
relatedContent:

0 commit comments

Comments
 (0)