You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/tutorials/en/getting-started-with-nodejs.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -225,7 +225,7 @@ Object i
225
225
// ...prototype
226
226
```
227
227
228
-
Now you are ready to build the [Melody App](https://docs.google.com/document/u/0/d/1mzJv-7qU1_CmkWI0ZFeqf3CeBfpOOVIrvPRZtxqFxRI/edit)! You can access completed code for this guide in [this Github repository](https://github.com/MsQCompSci/melodyAppNodeStarter/tree/main).
228
+
Now you are ready to build the [Melody App](./simple-melody-app)! You can access completed code for this guide in [this Github repository](https://github.com/MsQCompSci/melodyAppNodeStarter/tree/main).
Copy file name to clipboardExpand all lines: src/content/tutorials/en/optimizing-webgl-sketches.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -431,7 +431,7 @@ Try making a swarm of bugs, flock of birds, or school of fish by making a `p5.Ge
431
431
432
432
There are many effects one can achieve that involve looking at and modifying individual pixels on the canvas. Unfortunately, modifying `pixels` in your sketch involves looping through every pixel, one at a time, in JavaScript. A shader, on the other hand, can run in parallel for every pixel at once, making it a great alternative for when speed is required.
433
433
434
-
Here is an example of some noise-based dithering using `pixels`, and the equivalent filter using a shader. Be sure to check out our [introduction to shaders](https://docs.google.com/document/u/0/d/1R7eO9XHcACHnxanFCKVviBK2c1Pci0y9qfRwuHY2_PI/edit) for more information about shader programming.
434
+
Here is an example of some noise-based dithering using `pixels`, and the equivalent filter using a shader. Be sure to check out our [introduction to shaders](./intro-to-shaders) for more information about shader programming.
Copy file name to clipboardExpand all lines: src/content/tutorials/en/simple-melody-app.mdx
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ If you are already familiar with:
54
54
-[periodic waves and their characteristics](#periodic-wave-characteristics)
55
55
-[musical notes (frequency, pitch, and amplitude)](#musical-notes)
56
56
57
-
Skip to [Play musical notes with oscillators](https://docs.google.com/document/d/1mzJv-7qU1_CmkWI0ZFeqf3CeBfpOOVIrvPRZtxqFxRI/edit#heading=h.xqocsbtmp68w) to bypass background knowledge.
57
+
Skip to [Play musical notes with oscillators](#play-musical-notes-with-oscillators) to bypass background knowledge.
58
58
59
59
60
60
## Oscillators, science & music background information
@@ -68,18 +68,18 @@ To understand how oscillators generate musical notes, we can dive into some scie
68
68
69
69
##### Note
70
70
71
-
In the next section, [Science of sound and music](https://docs.google.com/document/d/1mzJv-7qU1_CmkWI0ZFeqf3CeBfpOOVIrvPRZtxqFxRI/edit#bookmark=id.xmj3wil8257x), the following concepts are introduced:
71
+
In the next section, [Science of sound and music](#science-of-sound--music), the following concepts are introduced:
72
72
73
73
-[Sound as a pressure waves](https://www.physicsclassroom.com/class/sound/u11l1c.cfm)
-[Sound waves](https://www.open.edu/openlearn/science-maths-technology/engineering-technology/sound-music-technology-an-introduction/content-section-2.3) in relation to musical notes
76
76
-[Pitch and frequency](https://www.physicsclassroom.com/class/sound/Lesson-2/Pitch-and-Frequency)
77
77
- Music Theory concepts such a [melodies](https://www.masterclass.com/articles/music-101-what-is-melody), [musical notes & frequency](https://www.idrumtune.com/ultimate-guide-to-musical-frequencies/)
78
78
79
79
80
80
##### Skip ahead
81
81
82
-
If you are already familiar with the background concepts above, jump over to the [Building a melody app](https://docs.google.com/document/d/1mzJv-7qU1_CmkWI0ZFeqf3CeBfpOOVIrvPRZtxqFxRI/edit#heading=h.xqocsbtmp68w) section to begin your project!
82
+
If you are already familiar with the background concepts above, jump over to the [Building a melody app](#build-simple-app) section to begin your project!
83
83
84
84
85
85
## Science of sound & music
@@ -165,7 +165,7 @@ The **frequency** of sound waves can be heard through its tones, or pitch, which
165
165
Visit the [Sound Synthesis Tutorial from The Coding Train](https://www.youtube.com/watch?app=desktop\&v=Bk8rLzzSink) for a brief introduction to p5.Oscillator objects and waves.
166
166
167
167
168
-
## Play musical notes with osciallators
168
+
## Play musical notes with oscillators
169
169
170
170
Let’s dive into the wonderful world of sound, music and oscillators to create a [simple melody app](https://editor.p5js.org/Msqcoding/sketches/w_4t5bFYe)!
0 commit comments