From f9f24b410fafe969d692631fa145af610ee663a0 Mon Sep 17 00:00:00 2001
From: Camilo Villegas <49658932+mrdoomus@users.noreply.github.com>
Date: Mon, 22 Jan 2024 20:03:55 -0500
Subject: [PATCH 001/102] Update what-is-an-array-define-array.md
---
src/content/lesson/what-is-an-array-define-array.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/content/lesson/what-is-an-array-define-array.md b/src/content/lesson/what-is-an-array-define-array.md
index 88402f212..42d7a659e 100644
--- a/src/content/lesson/what-is-an-array-define-array.md
+++ b/src/content/lesson/what-is-an-array-define-array.md
@@ -17,11 +17,11 @@ Because arrays are awesome! You need them! And we need to focus a lot on them in
Mastering the use of arrays and loops is one of the 5 fundamental skills of building algorithms:
-1. Variables.
-2. Conditionals.
+1. `Variables`.
+2. `Conditionals`.
3. `Arrays`.
4. `Loops`.
-5. Functions.
+5. `Functions`.
**No, no, no... Wait... Arrays? What?**
From fd33d71b6a331d3dd00e7a3c7dd18a0f939e4e92 Mon Sep 17 00:00:00 2001
From: "Yeju Lee (Julie) Motley" <149555844+yjlmotley@users.noreply.github.com>
Date: Mon, 22 Jan 2024 20:05:42 -0500
Subject: [PATCH 002/102] Update what-is-dom-define-dom.md
Fixed a couple grammatical title errors. Also, there lists 5 ways access the object in the DOM but the title says 4.
---
src/content/lesson/what-is-dom-define-dom.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/content/lesson/what-is-dom-define-dom.md b/src/content/lesson/what-is-dom-define-dom.md
index 64cd8fa94..422ebb406 100644
--- a/src/content/lesson/what-is-dom-define-dom.md
+++ b/src/content/lesson/what-is-dom-define-dom.md
@@ -33,7 +33,7 @@ NOTE: Please always remember that all JavaScript code that you write in your HTM
```
-## How to Update your Website DOM
+## How to Update Your Website DOM
There are several ways to manipulate the DOM, but the most simple one is `document.write()`. Every time you create a `document.write()` you will be writing onto the HTML whatever string you decide to pass as a parameter to the *write* function.
@@ -58,9 +58,9 @@ From the moment a website starts being loaded, the browser creates a hierarchy t
-## How do I access any Object in the DOM?
+## How Do I Access Any Object in the DOM?
-Just like we did with CSS, we can select any element in the document. There are 4 methods that allow us to search for whatever we want:
+Just like we did with CSS, we can select any element in the document. There are 5 methods that allow us to search for whatever we want:
### document.querySelector("css-element-selector")
From ce0af42b198eaa8d472dfa94bdc0730a88f0d442 Mon Sep 17 00:00:00 2001
From: stanxlin <143833064+stanxlin@users.noreply.github.com>
Date: Mon, 22 Jan 2024 20:14:19 -0500
Subject: [PATCH 003/102] Update what-is-debugging-code.md
---
src/content/lesson/what-is-debugging-code.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/content/lesson/what-is-debugging-code.md b/src/content/lesson/what-is-debugging-code.md
index 3d63413da..9e693b52e 100644
--- a/src/content/lesson/what-is-debugging-code.md
+++ b/src/content/lesson/what-is-debugging-code.md
@@ -5,7 +5,7 @@ tags: ["debugging", "web development"]
---
-We all make a lot of mistakes when coding. This is a reality that every senior developer acknowledges; that's why "debugging code" has become one of the most essential skills for developers.
+We all make mistakes when coding. This is a reality that every senior developer acknowledges, which is why "debugging code" has become one of the most essential skills for developers.
## It's OK to make mistakes
From 74ce24dbea8136b13f408ef0ec0ac44585f33018 Mon Sep 17 00:00:00 2001
From: terry howell <63936327+terrylh22@users.noreply.github.com>
Date: Mon, 22 Jan 2024 20:17:51 -0500
Subject: [PATCH 004/102] Update what-is-html-learn-html.md
updated to fix "neatly" to "neat"
---
src/content/lesson/what-is-html-learn-html.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/content/lesson/what-is-html-learn-html.md b/src/content/lesson/what-is-html-learn-html.md
index b3f4f1d6a..9e7f7eef5 100644
--- a/src/content/lesson/what-is-html-learn-html.md
+++ b/src/content/lesson/what-is-html-learn-html.md
@@ -158,7 +158,7 @@ The most frequent tags used inside the `` of an HTML document are:
|Bold |`` or `` |To highlight content using bold text.
`this text is bold` |
|Italics |`` |To have the text in italics.
`this text is in italics` |
|Line jump |`
` |To jump or skip the text to the next line (similar to a `shift+enter` in MS Word.)
`
` |
-|Tables |`` |Tables were designed to present data in a more read-friendly and neatly way. It has headers (th), rows (tr) and cells (td).
``
`Column 1 | Column 2 |
`
`Data 1 | Data A |
`
`Data 2 | Data B |
`
`Data 3 | Data C |
`
`
` |
+|Tables |`` |Tables were designed to present data in a more read-friendly and neat way. It has headers (th), rows (tr) and cells (td).
``
`Column 1 | Column 2 |
`
`Data 1 | Data A |
`
`Data 2 | Data B |
`
`Data 3 | Data C |
`
`
` |
> :link: [Click here](https://www.w3schools.com/tags/ref_byfunc.asp), for more HTML tags
From e0a991626fbb1d45faf92126b48e8fc41b924c52 Mon Sep 17 00:00:00 2001
From: kjatkinson <149319433+kjatkinson@users.noreply.github.com>
Date: Mon, 22 Jan 2024 19:19:39 -0600
Subject: [PATCH 005/102] Update learn-in-public.md
Misspelled classes should be class
---
src/content/lesson/learn-in-public.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/content/lesson/learn-in-public.md b/src/content/lesson/learn-in-public.md
index 04a9d10f6..80039f972 100644
--- a/src/content/lesson/learn-in-public.md
+++ b/src/content/lesson/learn-in-public.md
@@ -16,7 +16,7 @@ In this article, I'm going to explain why it works and how you can do it.
## What is Learn In Public?
-Learning in private: The traditional educational system is designed to be a private experience. You read books, attend classes, complete projects and assessments, and then at the end you graduate. We are so used to this workflow that it's already embedded into our student's minds.
+Learning in private: The traditional educational system is designed to be a private experience. You read books, attend class, complete projects and assessments, and then at the end you graduate. We are so used to this workflow that it's already embedded into our student's minds.
When you learn in public you: create in social media, you write in notebooks and discussion forums, you also write about what you just learned in different ways like blog posts, tweets, newsletters, drawings, memes, etc.
From c3b153602064cf7c94c523922496f7a777193d12 Mon Sep 17 00:00:00 2001
From: Quitesimple12 <122361337+Quitesimple12@users.noreply.github.com>
Date: Tue, 23 Jan 2024 01:26:23 +0000
Subject: [PATCH 006/102] replaced the card with a card
---
src/content/lesson/bootstrap-tutorial-of-bootstrap-4.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/content/lesson/bootstrap-tutorial-of-bootstrap-4.md b/src/content/lesson/bootstrap-tutorial-of-bootstrap-4.md
index ec1879dd3..f70821486 100644
--- a/src/content/lesson/bootstrap-tutorial-of-bootstrap-4.md
+++ b/src/content/lesson/bootstrap-tutorial-of-bootstrap-4.md
@@ -194,7 +194,7 @@ This is probably the most used Bootstrap component; every website has a few card
+ The typical Pinterest wall.
+ The feed in any social media like Instagram, Facebook, twitter, etc.
-Here is an example of how a "The Card" may look on a website:
+Here is an example of how a Card may look on a website:

From 64be471a50c6385f74195d0014200f469c0fedf0 Mon Sep 17 00:00:00 2001
From: Ainoha Franco <76441303+Avasidr@users.noreply.github.com>
Date: Wed, 24 Jan 2024 20:03:50 +0100
Subject: [PATCH 007/102] Update intro-to-4geeks.es.md
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Añadido doble punto en dos frases explicativas antes del salto de parrafo.
---
src/content/lesson/intro-to-4geeks.es.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/content/lesson/intro-to-4geeks.es.md b/src/content/lesson/intro-to-4geeks.es.md
index 0dca9e115..6cd0efd5b 100644
--- a/src/content/lesson/intro-to-4geeks.es.md
+++ b/src/content/lesson/intro-to-4geeks.es.md
@@ -12,11 +12,11 @@ cover_local: "../../assets/images/e16d59ad-4c11-4ca0-8bfc-5a9d147c6c2e.jpeg"
¡¡Bienvenidos!! 🤩👏 Mi nombre es Alejandro, estoy escribiendo estas palabras luego de enseñar y generar un impacto en tantas vidas. Por favor lean hasta el final, ¡trataré de no aburrirlos!
-## Lo que ya sabes
+## Lo que ya sabes:
Estás aquí para aprender a desarrollar tus habilidades para programar hasta un nivel en el que puedas: 1️⃣ Conseguir trabajo, 2️⃣ Crear tu propia empresa, 3️⃣ Adaptarte mejor al nuevo mundo.
-## Lo que no sabías
+## Lo que no sabías:
También estás aquí porque necesitas ayuda, no solo técnica sino también espiritual. Digo esto de la manera más pragmática posible.
@@ -39,7 +39,7 @@ En algún momento de nuestras vidas (en algunos más que otros) podemos haber pe
Cualquier persona en general puede aprender a programar, la programación se vuelve más complicada cuando te especializas más en tu carrera (Inteligencia Artificial, Robótica, etc.) Puedes ganar una buena cantidad de dinero sin tener que haber estudiado matemáticas, sin ser bueno con los números o sin aprender tan rápido como otros (es posible que podamos arreglar eso, por cierto).
-##### 📝 Receta para no perder la confianza en ti
+##### 📝 Receta para no perder la confianza en ti:
1. **Evita estar atascado durante mucho tiempo:** Programar puede complicarse porque puedes estar a punto de resolver el problema y quedarte atascado sin ver la respuesta. Quizás no sepas como empezar a resolver un problema y una conversación de 5 minutos con un mentor te aclarará la mente.
From 5401166bad62cea77f106c184d439c5108ea9d75 Mon Sep 17 00:00:00 2001
From: JoseJoaquinMartinez
<61237112+JoseJoaquinMartinez@users.noreply.github.com>
Date: Wed, 24 Jan 2024 20:05:34 +0100
Subject: [PATCH 008/102] Update what-is-css-learn-css.es.md
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Fixing ""Sencillo, Debes" to "Sencillo, debes" && " "¿Qué hace CSS y para qué sirve? to ¿qué hace CSS y para qué sirve?"
---
src/content/lesson/what-is-css-learn-css.es.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/content/lesson/what-is-css-learn-css.es.md b/src/content/lesson/what-is-css-learn-css.es.md
index 2b24ac814..7cd3acbbb 100644
--- a/src/content/lesson/what-is-css-learn-css.es.md
+++ b/src/content/lesson/what-is-css-learn-css.es.md
@@ -21,7 +21,7 @@ Pero… El internet es más hermoso que eso. La cosa se puso seria cuando Intern
Irónicamente, los mismos científicos de CERN que crearon HTML, tuvieron que ponerse a pensar en cómo mejorar lo que habían hecho y se dieron a la tarea de embellecerlo. En este momento fue cuando [Håkon Wium Lie](https://en.wikipedia.org/wiki/H%C3%A5kon_Wium_Lie), propuso la primera versión de CSS en 1994, que luego fue adaptado hasta convertirse en CSS1.
-## Entonces, ¿qué hace CSS? y ¿para qué sirve?
+## Entonces, ¿qué hace CSS y para qué sirve?

@@ -41,7 +41,7 @@ Puedes decirle a un que se vea igualito que un sin que el usuario se d
## ¿Cómo aplico estilos a un HTML?
-Sencillo, Debes escribir tus estilos con una sintaxis especial denominada "CSS" y guardar el documento con la extensión CSS. Luego, para aplicar los estilos al documento usamos las tags del HTML que estaban relacionadas con CSS: `