diff --git a/1-getting-started-lessons/1-intro-to-programming-languages/README.md b/1-getting-started-lessons/1-intro-to-programming-languages/README.md index 46d9801c..35eca14c 100644 --- a/1-getting-started-lessons/1-intro-to-programming-languages/README.md +++ b/1-getting-started-lessons/1-intro-to-programming-languages/README.md @@ -76,7 +76,7 @@ back add r0,r1 Believe it or not, *they're both doing the same thing*: printing a Fibonacci sequence up to 10. -✅ A Fibonacci sequence is [defined](https://en.wikipedia.org/wiki/Fibonacci_number) as a set of numbers such that each number is the sum of the two preceding ones, starting from 0 and 1. +✅ A Fibonacci sequence is [defined](https://en.wikipedia.org/wiki/Fibonacci_number) as a set of numbers such that each number is the sum of the two preceding ones, starting from 0 and 1. The first 10 numbers following the Fibonacci sequence are 0, 1, 1, 2, 3, 5, 8, 13, 21 and 34. ## Elements of a Program @@ -104,7 +104,7 @@ One of the most crucial tools for software development is the editor. Editors ar Developers rely on editors for a few additional reasons: -- *Debugging* helps uncover bugs and errors by stepping through the code, line by line. Some editors have debugging capabilities; they can be customized and added for specific programming languages. +- *Debugging* helps uncover bugs and errors by stepping through the code, line by line. Some editors have debugging capabilities; they can be customized and added for specific programming languages. - *Syntax highlighting* adds colors and text formatting to code, making it easier to read. Most editors allow customized syntax highlighting. - *Extensions and Integrations* are specialized tools for developers, by developers. These tools weren't built into the base editor. For example, many developers document their code to explain how it works. They may install a spell check extension to help find typos within the documentation. Most extensions are intended for use within a specific editor, and most editors come with a way to search for available extensions. - *Customization* enables developers to create a unique development environment to suit their needs. Most editors are extremely customizable and may also allow developers to create custom extensions. @@ -180,7 +180,8 @@ When a developer wants to learn something new, they'll most likely turn to docum - [Mozilla Developer Network (MDN)](https://developer.mozilla.org/docs/Web), from Mozilla, the publishers of the [Firefox](https://www.mozilla.org/firefox/) browser - [Frontend Masters](https://frontendmasters.com/learn/) - [Web.dev](https://web.dev), from Google, publishers of [Chrome](https://www.google.com/chrome/) -- [Microsoft's own developer docs](https://docs.microsoft.com/microsoft-edge/#microsoft-edge-for-developers/?WT.mc_id=academic-77807-sagibbon), for [Microsoft Edge](https://www.microsoft.com/edge/?WT.mc_id=academic-77807-sagibbon) +- [Microsoft's own developer docs](https://docs.microsoft.com/microsoft-edge/#microsoft-edge-for-developers), for [Microsoft Edge](https://www.microsoft.com/edge) +- [W3 Schools](https://www.w3schools.com/where_to_start.asp) ✅ Do some research: Now that you know the basics of a web developer's environment, compare and contrast it with a web designer's environment. diff --git a/1-getting-started-lessons/2-github-basics/README.md b/1-getting-started-lessons/2-github-basics/README.md index b5f19d07..1eff449a 100644 --- a/1-getting-started-lessons/2-github-basics/README.md +++ b/1-getting-started-lessons/2-github-basics/README.md @@ -318,12 +318,12 @@ Read more about [contributing to open source software](https://opensource.guide/ [Git cheatsheet](https://training.github.com/downloads/github-git-cheat-sheet/). -Practice, practice, practice. GitHub has great learning paths available via [lab.github.com](https://lab.github.com/): +Practice, practice, practice. GitHub has great learning paths available via [skills.github.com](https://skills.github.com): -- [First Week on GitHub](https://lab.github.com/githubtraining/first-week-on-github) +- [First Week on GitHub](https://skills.github.com/#first-week-on-github) -You'll also find more advanced labs. +You'll also find more advanced courses. ## Assignment -Complete [the First Week on GitHub training lab](https://lab.github.com/githubtraining/first-week-on-github) +Complete [the First Week on GitHub course](https://skills.github.com/#first-week-on-github) diff --git a/2-js-basics/1-data-types/translations/assignment.az.md b/2-js-basics/1-data-types/translations/assignment.az.md new file mode 100644 index 00000000..f2b5adf4 --- /dev/null +++ b/2-js-basics/1-data-types/translations/assignment.az.md @@ -0,0 +1,11 @@ +# Məlumat növləri üzrə məşqlər + +## Təlimatlar + +Təsəvvür edin ki, bir alış-veriş səbəti düzəldin. Alış-veriş təcrübənizi tamamlamaq üçün lazım olan məlumat növləri haqqında bəzi sənədləri yazın. Seçimlərinizə necə gəldiniz? + +## Ünvan kitabçası + +Meyarlar | Əla | adekvat | Təkmilləşdirmələr lazımdır + --- | --- | --- | - | + || Altı məlumat növü onların istifadəsini sənədləşdirərək ətraflı şəkildə sadalanır və araşdırılır | Dörd növ məlumat tədqiq edilir | İki növ məlumat tədqiq edilir | \ No newline at end of file diff --git a/2-js-basics/2-functions-methods/translations/assignment.az.md b/2-js-basics/2-functions-methods/translations/assignment.az.md new file mode 100644 index 00000000..239d7683 --- /dev/null +++ b/2-js-basics/2-functions-methods/translations/assignment.az.md @@ -0,0 +1,13 @@ +# Funksiyalarla Əylən + +## Təlimatlar + +Fərqli funksiyalar yaradın, həm nəyisə qaytaran funksiyalar, həm də heç nə qaytarmayan funksiyalar. + +Defolt dəyərləri olan parametrlər və parametrlərin qarışığı olan bir funksiya yarada bildiyinizə baxın. + +## Rubrika + +| Meyarlar | Nümunəvi | Müvafiq | Təkmilləşdirmə Ehtiyacı var | +| -------- | ------------------------------------------------- ----------------------------------- | ------------------------------------------------- -------------- | ----------------- | +| | Həll müxtəlif parametrlərə malik iki və ya daha çox yaxşı işləyən funksiya ilə təklif olunur | İşçi həll bir funksiya və bir neçə parametr ilə təklif olunur | Həlldə səhvlər var | diff --git a/2-js-basics/4-arrays-loops/translations/assignment.es.md b/2-js-basics/4-arrays-loops/translations/assignment.es.md index 5d269bb2..c7895eec 100644 --- a/2-js-basics/4-arrays-loops/translations/assignment.es.md +++ b/2-js-basics/4-arrays-loops/translations/assignment.es.md @@ -2,7 +2,7 @@ ## Instrucciones -Cree un programa que enumere cada tercer número entre 1 y 20 y lo imprima en la consola. +Cree un programa que enumere cada tercer número entre 1 y 20 e imprimalo en la consola. > SUGERENCIA: use un bucle for y modifique la expresión-iteración @@ -10,4 +10,4 @@ Cree un programa que enumere cada tercer número entre 1 y 20 y lo imprima en la | Criterios | Ejemplar | Adecuado | Necesita mejorar | | -------- | --------------------------------------- | ------------------------ | ------------------------------ | -| | El programa se ejecuta correctamente y está comentado | Programa no comentado | El programa está incompleto o con errores | \ No newline at end of file +| | El programa se ejecuta correctamente y está comentado | Programa no comentado | El programa está incompleto o con errores | diff --git a/2-js-basics/translations/README.es.md b/2-js-basics/translations/README.es.md index 6153dc04..7e9f37d7 100644 --- a/2-js-basics/translations/README.es.md +++ b/2-js-basics/translations/README.es.md @@ -7,7 +7,7 @@ JavaScript es el lenguaje de la web. En estas cuatro lecciones, aprenderá sus c 1. [Variables y tipos de datos](../1-data-types/translations/README.es.md) 2. [Funciones y métodos](../2-functions-methods/translations/README.es.md) 3. [Toma de decisiones con JavaScript](../3-making-decisions/translations/README.es.md) -4. [Arrays and Loops](../4-arrays-loops/translations/README.es.md) +4. [Matrices y bucles](../4-arrays-loops/translations/README.es.md) ### Créditos diff --git a/3-terrarium/3-intro-to-DOM-and-closures/README.md b/3-terrarium/3-intro-to-DOM-and-closures/README.md index 8db26e0b..87194bbb 100644 --- a/3-terrarium/3-intro-to-DOM-and-closures/README.md +++ b/3-terrarium/3-intro-to-DOM-and-closures/README.md @@ -116,7 +116,7 @@ In addition, the terrariumElement that is passed to this function is assigned a ## The Pointerdrag function -The terrariumElement is ready to be dragged around; when the `onpointerdown` event is fired, the function pointerDrag is invoked. Add that function right under this line: `terrariumElement.onpointerdown = pointerDrag;`: +The `terrariumElement` is ready to be dragged around; when the `onpointerdown` event is fired, the function `pointerDrag` is invoked. Add that function right under this line: `terrariumElement.onpointerdown = pointerDrag;`: ### Task diff --git a/6-space-game/6-end-condition/translations/README.es.md b/6-space-game/6-end-condition/translations/README.es.md index 27137641..0b535fa0 100644 --- a/6-space-game/6-end-condition/translations/README.es.md +++ b/6-space-game/6-end-condition/translations/README.es.md @@ -106,9 +106,9 @@ Lo anterior iniciará un servidor HTTP en la dirección `http://localhost:5000`. GAME_END_WIN: "GAME_END_WIN", ``` -2. **Agregar código de reinicio** código que reinicia el juego con solo presionar un botón seleccionado. +2. **Agregar código de reinicio**. Código que reinicia el juego con solo presionar un botón seleccionado. - 1. **Escuche la tecla "Enter"**. Edite el eventListener de su ventana para escuchar esta prensa: + 1. **Escuche la tecla "Enter"**. Edite el eventListener de su ventana para escuchar esta acción: ```javascript else if(evt.key === "Enter") { diff --git a/7-bank-project/solution/translations/README.es.md b/7-bank-project/solution/translations/README.es.md index bd93a706..4fd93a4d 100644 --- a/7-bank-project/solution/translations/README.es.md +++ b/7-bank-project/solution/translations/README.es.md @@ -6,8 +6,8 @@ Primero asegúrese de tener el [servidor API](../api/README.md) en ejecución. -Se puede usar cualquier servidor web para ejecutar la aplicación, pero dado que debe tener [Node.js]https://nodejs.org) instalado de todos modos para ejecutar la API, puede: +Se puede usar cualquier servidor web para ejecutar la aplicación, pero dado que debe tener [Node.js](https://nodejs.org) instalado de todos modos para ejecutar la API, puede: 1. Git clone este repositorio. 2. Abra una terminal, luego ejecute `npx lite-server solution`. Iniciará un servidor web de desarrollo en el puerto `3000` -3. Abra `http://localhost: 3000` en un navegador para ejecutar la aplicación. \ No newline at end of file +3. Abra `http://localhost: 3000` en un navegador para ejecutar la aplicación. diff --git a/8-code-editor/1-using-a-code-editor/README.md b/8-code-editor/1-using-a-code-editor/README.md index 5d8368ed..f56dd7fe 100644 --- a/8-code-editor/1-using-a-code-editor/README.md +++ b/8-code-editor/1-using-a-code-editor/README.md @@ -1,6 +1,6 @@ # Using a code editor -This lesson covers the basics of using [VSCode.dev](https://vscode.dev) a code editor for the web so that you can make changes to your code and contribute to a project without installing anything in your computer. +This lesson covers the basics of using [VSCode.dev](https://vscode.dev) a web-based code editor so that you can make changes to your code and contribute to a project without installing anything on your computer.