Skip to content

Upgrading Learnpack IDE and CLI and adding new videos #59

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"extensions": ["learn-pack.learnpack-vscode"]
}
},
"onCreateCommand": "pip3 install pytest==6.2.5 pytest-testdox mock && npm i @learnpack/[email protected].20 -g && learnpack plugins:install @learnpack/[email protected]"
"onCreateCommand": "pip3 install pytest==6.2.5 pytest-testdox mock && npm i @learnpack/[email protected].35 -g && learnpack plugins:install @learnpack/[email protected]"

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
Expand Down
3 changes: 3 additions & 0 deletions exercises/00-Welcome/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
---
intro: "https://www.youtube.com/watch?v=SD9lqR67yMY"
---
# Welcome to Python Functions!

¡¡Nos entusiasma mucho tenerte aquí!! 🎉 😂
Expand Down
2 changes: 1 addition & 1 deletion exercises/00-Welcome/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
intro: "https://www.youtube.com/watch?v=awa_yfGgy9s"
intro: "https://www.youtube.com/watch?v=06rxSj-9wM4"
---

# Welcome to Python Functions!
Expand Down
4 changes: 4 additions & 0 deletions exercises/01-Hello-World/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=X1XZ4d-DE4Q"
---

# `01` Hello World

En Python, usamos **print** para hacer que el computador escriba cualquier cosa que queramos (el contenido de una variable, un string dado, etc.) en algo llamado "la consola".
Expand Down
2 changes: 1 addition & 1 deletion exercises/01-Hello-World/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=voBO7a0KPtE"
tutorial: "https://www.youtube.com/watch?v=_0zvPIS587w"
---

# `01` Hello World
Expand Down
3 changes: 3 additions & 0 deletions exercises/02-What-is-a-function/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
---
tutorial: "https://www.youtube.com/watch?v=4JzHH2qR8n0"
---
# `02` What is a function?

Puedes ver una función como un **fragmento de código** que puedes usar varias veces.
Expand Down
2 changes: 1 addition & 1 deletion exercises/02-What-is-a-function/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=tgTLyZ0cKj4"
tutorial: "https://www.youtube.com/watch?v=U5GId8yOc-A"
---

# `02` What is a function?
Expand Down
2 changes: 1 addition & 1 deletion exercises/03-Call-a-function/README.es.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=NU5iW_bWwmY"
tutorial: "https://www.youtube.com/watch?v=F7_I8PD38ZQ"
---
# `03` Calling a Function

Expand Down
2 changes: 1 addition & 1 deletion exercises/03-Call-a-function/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=NU5iW_bWwmY"
tutorial: "https://www.youtube.com/watch?v=8tvkCp3EMiM"
---

# `03` Calling a Function
Expand Down
4 changes: 4 additions & 0 deletions exercises/04-Defining-vs-Calling-a-function/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=ztyFrIY7U3o"
---

# `04` Defining vs Calling a Function

Las funciones solo existen si tú u otra persona las define... es la única forma en que el compilador/intérprete de lenguaje sabe que existen, por lo tanto, puede ejecutarlas cuando las llamas.
Expand Down
2 changes: 1 addition & 1 deletion exercises/04-Defining-vs-Calling-a-function/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=fz4ttmwZWuc"
tutorial: "https://www.youtube.com/watch?v=XbDE19gR678"
---

# `04` Defining vs Calling a Function
Expand Down
4 changes: 4 additions & 0 deletions exercises/05-lambda-functions/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=UH__beyfTlo"
---

# `05` Lambda Functions in Python

Una **función lambda** es una función con solo una línea de código y sin nombre.
Expand Down
2 changes: 1 addition & 1 deletion exercises/05-lambda-functions/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=HACQ9uerCuE"
tutorial: "https://www.youtube.com/watch?v=vRusUCDa3-k"
---


Expand Down
4 changes: 4 additions & 0 deletions exercises/06-lambda-function-two/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=F30Vkf69SHI"
---

# `06` Lambda Functions

### ☝ Recuerda:
Expand Down
2 changes: 1 addition & 1 deletion exercises/06-lambda-function-two/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=1HwmTkQPeMo"
tutorial: "https://www.youtube.com/watch?v=0KX8Bh7d_9E"
---

# `06` Lambda Functions
Expand Down
4 changes: 4 additions & 0 deletions exercises/07-Function-that-returns/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=3V15moFzUjI"
---

# `07` Functions that return

Es una muy buena práctica que las funciones devuelvan algo, incluso si es `None`.
Expand Down
2 changes: 1 addition & 1 deletion exercises/07-Function-that-returns/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=-tqNmngh1PE"
tutorial: "https://www.youtube.com/watch?v=H6Zps4dPqzs"
---

# `07` Functions that return
Expand Down
4 changes: 4 additions & 0 deletions exercises/08-Function-parameters/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=LuA-x5DYPr4"
---

# `08` Function parameters

Puedes especificar tantos parámetros como desees en una función.
Expand Down
2 changes: 1 addition & 1 deletion exercises/08-Function-parameters/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=uaiDxW4LJNA"
tutorial: "https://www.youtube.com/watch?v=BCMQF44H-BY"
---

# `08` Function parameters
Expand Down
4 changes: 4 additions & 0 deletions exercises/09-Array-Methods/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=Ne8ZRZTSaQA"
---

# `09` List Methods

## 📝 Instrucciones:
Expand Down
2 changes: 1 addition & 1 deletion exercises/09-Array-Methods/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
tutorial: "https://www.youtube.com/watch?v=jBXve_vh7dU"
tutorial: "https://www.youtube.com/watch?v=5Wk2a16nnUY"
---

# `09` List Methods
Expand Down
2 changes: 1 addition & 1 deletion learn.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"graded": true,

"editor": {
"version": "1.0.73"
"version": "3.1.9"
}

}