├── .gitignore ├── 3. Advance 🚀 ├── README.md └── event__loop.ipynb ├── 2. Intermediate 🌟 ├── README.md ├── 2-Closures.ipynb ├── 3-Promises&Async.ipynb └── 1-AsynchronousJS.ipynb ├── Projects 📁 └── user-information-fetcher │ ├── index.html │ ├── styles.css │ ├── project-description.md │ └── script.js ├── 1. Basics 🔰 ├── README.md ├── 9. DOMManipulation.ipynb ├── 10. Fuctions&Scopes.ipynb ├── 8. ConditionalStatements.ipynb ├── 4. ArraysAndObjects.ipynb ├── 3. EventHandeling.ipynb ├── 7. LoopsInJS.ipynb ├── 5. ArraysInJS.ipynb ├── 2. FunctionsInJs.ipynb ├── 6. ObjectsInJS.ipynb └── 1.GettingStartedWithJS.ipynb ├── README.md └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | /topics -------------------------------------------------------------------------------- /3. Advance 🚀/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /2. Intermediate 🌟/README.md: -------------------------------------------------------------------------------- 1 | ## Notebooks 📓 2 | 3 | 2. **[1-Asynchronous JS](1-AsynchronousJS.ipynb):** Understand the concept of asynchronous programming in JavaScript and how it helps in writing non-blocking code. 4 | 5 | 3. **[Closures](2-Closures.ipynb):** Understand the concept of closures in JavaScript and how they provide a powerful mechanism for encapsulation and data privacy. 6 | -------------------------------------------------------------------------------- /Projects 📁/user-information-fetcher/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | User Information Fetcher 8 | 9 | 10 |
11 |

User Information Fetcher

12 | 13 |
14 |
15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /Projects 📁/user-information-fetcher/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: 'Arial', sans-serif; 3 | background-color: #f0f0f0; 4 | margin: 0; 5 | display: flex; 6 | justify-content: center; 7 | align-items: center; 8 | height: 100vh; 9 | } 10 | 11 | .container { 12 | text-align: center; 13 | background-color: #fff; 14 | padding: 20px; 15 | border-radius: 8px; 16 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 17 | } 18 | 19 | button { 20 | padding: 10px 20px; 21 | font-size: 16px; 22 | cursor: pointer; 23 | } 24 | 25 | #userData { 26 | margin-top: 20px; 27 | } 28 | -------------------------------------------------------------------------------- /Projects 📁/user-information-fetcher/project-description.md: -------------------------------------------------------------------------------- 1 | ## Project Description: 2 | - The HTML file (index.html) contains a button to trigger the user data fetch and a container to display the fetched user information. 3 | 4 | - The JavaScript file (script.js) handles the asynchronous data fetching using promises (fetchUser) and async/await (fetchUserAsync). It simulates fetching user data from the JSONPlaceholder API. 5 | 6 | - The CSS file (styles.css) provides some basic styling to the HTML elements. 7 | 8 | ## Running the Project: 9 | 1. Save the HTML, JavaScript, and CSS files in the same directory. 10 | 11 | 2. Open the index.html file in a web browser. 12 | 13 | 3. Click the "Fetch User Data" button to see the asynchronous data fetching in action. 14 | 15 | This mini project demonstrates the use of promises and async/await syntax for handling asynchronous operations, providing a practical example of fetching user information from an API. -------------------------------------------------------------------------------- /1. Basics 🔰/README.md: -------------------------------------------------------------------------------- 1 | ## Notebooks 📓 2 | 3 | 1. **[JavaScript Basics](1.GettingStartedWithJS.ipynb):** Covers the fundamentals of JavaScript, including variables, functions, and control structures. 4 | 5 | 2. **[Functions in JavaScript](2.%20FunctionsInJs.ipynb):** Provides an in-depth understanding of creating and using functions in JavaScript. 6 | 7 | 3. **[JavaScript Events and Event Handling](3.%20EventHandeling.ipynb):** Explores JavaScript event handling, including common events and their associated event handlers. 8 | 9 | 4. **[Working with Arrays and Objects in JavaScript](4.%20ArraysAndObjects.ipynb):** Demonstrates the manipulation and usage of arrays and objects in JavaScript. 10 | 11 | 5. **[Arrays in JavaScript](5.%20ArraysInJS.ipynb):** Comprehensive overview of arrays in JavaScript along with creation, manipulation, accessing elements, and built-in methods. 12 | 13 | 6. **[Objects in JavaScript](6.%20ObjectsInJS.ipynb):** Guide to working with objects in JavaScript, covering creation, modification, property access, methods, and iteration. 14 | 15 | 7. **[Loops in JavaScript](7.%20LoopsInJS.ipynb):** Comprehensive overview of loops in JavaScript, covering for, while, do-while, for-in, and for-of loops for efficient iterative operations. -------------------------------------------------------------------------------- /Projects 📁/user-information-fetcher/script.js: -------------------------------------------------------------------------------- 1 | // script.js 2 | 3 | document.getElementById('fetchButton').addEventListener('click', fetchUserData); 4 | 5 | function fetchUserData() { 6 | clearUserData(); 7 | 8 | // Fetch user data using promises 9 | fetchUser() 10 | .then(user => displayUserData(user)) 11 | .catch(error => console.error('Error fetching user data:', error)); 12 | } 13 | 14 | function fetchUser() { 15 | return new Promise((resolve, reject) => { 16 | setTimeout(() => { 17 | // Simulating API call to JSONPlaceholder 18 | const userId = Math.floor(Math.random() * 10) + 1; 19 | fetch(`https://jsonplaceholder.typicode.com/users/${userId}`) 20 | .then(response => response.json()) 21 | .then(user => resolve(user)) 22 | .catch(error => reject(error)); 23 | }, 2000); 24 | }); 25 | } 26 | 27 | async function fetchUserAsync() { 28 | clearUserData(); 29 | 30 | try { 31 | // Fetch user data using async/await 32 | const user = await fetchUser(); 33 | displayUserData(user); 34 | } catch (error) { 35 | console.error('Error fetching user data:', error); 36 | } 37 | } 38 | 39 | function displayUserData(user) { 40 | const userDataDiv = document.getElementById('userData'); 41 | userDataDiv.innerHTML = ` 42 |

User ID: ${user.id}

43 |

Name: ${user.name}

44 |

Email: ${user.email}

45 |

Username: ${user.username}

46 | `; 47 | } 48 | 49 | function clearUserData() { 50 | const userDataDiv = document.getElementById('userData'); 51 | userDataDiv.innerHTML = ''; 52 | } 53 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # JavaScript Learning Notebooks 📚 2 | 3 | Welcome to my JavaScript learning journey captured through Jupyter notebooks! 🚀 This repository serves as a collection of my interactive code snippets, experiments, and projects as I delve deeper into the world of JavaScript. 4 | 5 | ## Introduction 6 | 7 | In this repository, you'll find Jupyter notebooks containing my progress, insights, and challenges as I explore various aspects of JavaScript. From basic syntax and data types to advanced topics like DOM manipulation and asynchronous programming, I aim to document my learning process for both personal reference and to assist fellow learners. 8 | 9 | ## Run Locally 10 | 11 | 1. Clone this repository: 12 | 13 | ```bash 14 | git clone https://github.com/yasir2002/js-learning-jupyter 15 | 16 | 2. Navigate to folder: 17 | ```bash 18 | cd ./js-learning-jupyter 19 | 20 | 3. Node and Jupyter is required to run all the snippets. Download node from [here](https://nodejs.org/en), Jupyter can be installed in VS Code from [here](https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter). 21 | 22 | 4. Open the project in VS code and easily learn JavaScript executing every example individually. 23 | 24 | 25 | ## Usage 🚀 26 | 27 | Feel free to explore the notebooks and use them as a reference for your own JavaScript learning journey. If you find any errors or have suggestions for improvement, please don't hesitate to reach out. 28 | 29 | ## Contributions 🤝 30 | 31 | I welcome contributions and feedback from the community. If you have any valuable insights or code examples to add, please feel free to open a pull request. Let's learn and grow together! 32 | 33 | ## License 📋 34 | 35 | This project is licensed under the [GPL License](LICENSE). 36 | 37 | Happy coding! 🌟 38 | -------------------------------------------------------------------------------- /3. Advance 🚀/event__loop.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "**Event Loop in JavaScript**: The event loop is a core concept in JavaScript, enabling non-blocking, asynchronous execution. It ensures JavaScript can handle multiple tasks concurrently without freezing the main thread.\n", 8 | "\n", 9 | "- **Single-Threaded Nature**: JavaScript operates on a single thread, executing one piece of code at a time—known as the \"main thread.\"\n", 10 | "\n", 11 | "- **Blocking Operations**: Lengthy tasks, like I/O operations, could freeze an application if executed synchronously. JavaScript avoids this by using asynchronous mechanisms like [callbacks](https://www.w3schools.com/js/js_callback.asp), [promises](https://www.w3schools.com/js/js_promise.asp), and async/await.\n", 12 | "\n", 13 | "- **The Event Loop**: This loop constantly checks for pending tasks (e.g., callbacks) in the message queue. When the main thread is idle, it picks and executes the next task, ensuring responsive and non-blocking execution.\n", 14 | "\n", 15 | "Below representation of the event loop provides a way to grasp this fundamental concept:\n", 16 | "\n", 17 | "![Event Loop Visual](https://res.cloudinary.com/practicaldev/image/fetch/s--qxI9YF9R--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://devtolydiahallie.s3-us-west-1.amazonaws.com/gif3.1.gif)" 18 | ] 19 | } 20 | ], 21 | "metadata": { 22 | "kernelspec": { 23 | "display_name": "Python 3", 24 | "language": "python", 25 | "name": "python3" 26 | }, 27 | "language_info": { 28 | "codemirror_mode": { 29 | "name": "ipython", 30 | "version": 3 31 | }, 32 | "file_extension": ".py", 33 | "mimetype": "text/x-python", 34 | "name": "python", 35 | "nbconvert_exporter": "python", 36 | "pygments_lexer": "ipython3", 37 | "version": "3.12.0" 38 | } 39 | }, 40 | "nbformat": 4, 41 | "nbformat_minor": 2 42 | } 43 | -------------------------------------------------------------------------------- /2. Intermediate 🌟/2-Closures.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "## Closures\n", 8 | "Imagine you have a treasure box, and you want to keep it safe from others. So, you lock it with a key, and only you have that key to open it. The treasure box is like a function, and the key is like a closure." 9 | ] 10 | }, 11 | { 12 | "cell_type": "markdown", 13 | "metadata": {}, 14 | "source": [ 15 | "In JavaScript, closures are used to keep variables and functions private, just like a treasure box that is only accessible through a key. The key is nothing but a closure, which keeps the variables and functions inside a function safe and secure from the outer world.\n", 16 | "When you create a closure, you create a small space where variables and functions can live, and it can be accessed by its inner functions. But these variables and functions are not accessible by the outer world, making it private." 17 | ] 18 | }, 19 | { 20 | "cell_type": "markdown", 21 | "metadata": {}, 22 | "source": [ 23 | "## Example \n", 24 | "For example, suppose you have a function that returns another function. The inner function can access the variables and functions of its outer function, but the outer function cannot access the variables and functions of the inner function" 25 | ] 26 | }, 27 | { 28 | "cell_type": "code", 29 | "execution_count": 3, 30 | "metadata": { 31 | "vscode": { 32 | "languageId": "javascript" 33 | } 34 | }, 35 | "outputs": [ 36 | { 37 | "name": "stdout", 38 | "output_type": "stream", 39 | "text": [ 40 | "\u001b[33m10\u001b[39m\n" 41 | ] 42 | } 43 | ], 44 | "source": [ 45 | "%%script node\n", 46 | "function outer() {\n", 47 | "let x = 10;\n", 48 | "\n", 49 | "function inner() {\n", 50 | "console.log(x);\n", 51 | "}\n", 52 | "\n", 53 | "return inner;\n", 54 | "}\n", 55 | "\n", 56 | "let innerFunction = outer();\n", 57 | "\n", 58 | "innerFunction(); // output: 10" 59 | ] 60 | } 61 | ], 62 | "metadata": { 63 | "kernelspec": { 64 | "display_name": "Python 3", 65 | "language": "python", 66 | "name": "python3" 67 | }, 68 | "language_info": { 69 | "codemirror_mode": { 70 | "name": "ipython", 71 | "version": 3 72 | }, 73 | "file_extension": ".py", 74 | "mimetype": "text/x-python", 75 | "name": "python", 76 | "nbconvert_exporter": "python", 77 | "pygments_lexer": "ipython3", 78 | "version": "3.12.0" 79 | } 80 | }, 81 | "nbformat": 4, 82 | "nbformat_minor": 2 83 | } 84 | -------------------------------------------------------------------------------- /1. Basics 🔰/9. DOMManipulation.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "# DOM Manipulation in JavaScript\n", 8 | "\n", 9 | "## Introduction to the DOM\n", 10 | "\n", 11 | "The Document Object Model (DOM) represents the structure of an HTML document as a tree of objects. It provides a way for JavaScript to interact with and manipulate HTML elements.\n", 12 | "\n", 13 | "## Selecting Elements\n", 14 | "\n", 15 | "- **getElementById:** Selecting an element by its unique ID.\n", 16 | "- **getElementsByClassName and getElementsByTagName:** Selecting elements by class name or tag name.\n", 17 | "- **querySelector and querySelectorAll:** Using CSS selectors to select elements.\n", 18 | "\n", 19 | "## Modifying Elements\n", 20 | "\n", 21 | "- **innerHTML and textContent:** Changing the content of an element.\n", 22 | "- **setAttribute:** Modifying attributes of HTML elements.\n", 23 | "- **classList:** Adding, removing, and toggling CSS classes.\n", 24 | "\n", 25 | "## Creating and Deleting Elements\n", 26 | "\n", 27 | "- **createElement:** Creating new HTML elements.\n", 28 | "- **appendChild and removeChild:** Adding and removing elements from the DOM.\n", 29 | "\n", 30 | "## Event Handling with DOM\n", 31 | "\n", 32 | "- **addEventListener:** Attaching event listeners to respond to user interactions.\n", 33 | "- **Event Object:** Understanding the event object passed to event handlers.\n", 34 | "\n", 35 | "## Example:" 36 | ] 37 | }, 38 | { 39 | "cell_type": "code", 40 | "execution_count": null, 41 | "metadata": { 42 | "vscode": { 43 | "languageId": "javascript" 44 | } 45 | }, 46 | "outputs": [], 47 | "source": [ 48 | "// DOM Manipulation Example\n", 49 | "\n", 50 | "// Selecting an element by ID\n", 51 | "let myElement = document.getElementById(\"myElement\");\n", 52 | "\n", 53 | "// Modifying the content of the element\n", 54 | "myElement.innerHTML = \"New content\";\n", 55 | "\n", 56 | "// Creating a new element and appending it to the document\n", 57 | "let newElement = document.createElement(\"p\");\n", 58 | "newElement.textContent = \"This is a new paragraph\";\n", 59 | "document.body.appendChild(newElement);\n", 60 | "\n", 61 | "// Adding an event listener\n", 62 | "myElement.addEventListener(\"click\", function() {\n", 63 | " alert(\"Element clicked!\");\n", 64 | "});" 65 | ] 66 | }, 67 | { 68 | "cell_type": "markdown", 69 | "metadata": {}, 70 | "source": [ 71 | "Understanding DOM manipulation is crucial for building interactive and dynamic web applications. It forms the basis for creating responsive user interfaces and handling user input." 72 | ] 73 | } 74 | ], 75 | "metadata": { 76 | "language_info": { 77 | "name": "python" 78 | } 79 | }, 80 | "nbformat": 4, 81 | "nbformat_minor": 2 82 | } 83 | -------------------------------------------------------------------------------- /2. Intermediate 🌟/3-Promises&Async.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "# Promises and Asynchronous Programming\n", 8 | "\n", 9 | "## Introduction to Promises\n", 10 | "\n", 11 | "- **Definition:** A promise represents the eventual completion or failure of an asynchronous operation and its resulting value.\n", 12 | "- **States:** Pending, Fulfilled, Rejected.\n", 13 | "- **Creating Promises:** Using the `Promise` constructor.\n", 14 | "\n", 15 | "## Chaining Promises\n", 16 | "\n", 17 | "- **`.then()` and `.catch()`:** Handling resolved and rejected states.\n", 18 | "- **Chaining Promises:** Sequencing asynchronous operations.\n", 19 | "\n", 20 | "## Async/Await Syntax\n", 21 | "\n", 22 | "- **`async` Functions:** Defining asynchronous functions.\n", 23 | "- **`await` Operator:** Pausing execution until a promise is settled.\n", 24 | "\n", 25 | "## Error Handling in Asynchronous Code\n", 26 | "\n", 27 | "- **Try-Catch with Promises:** Handling errors in asynchronous code.\n", 28 | "- **Promise.all and Promise.race:** Handling multiple promises concurrently.\n", 29 | "\n", 30 | "## Example:" 31 | ] 32 | }, 33 | { 34 | "cell_type": "code", 35 | "execution_count": null, 36 | "metadata": { 37 | "vscode": { 38 | "languageId": "javascript" 39 | } 40 | }, 41 | "outputs": [], 42 | "source": [ 43 | "\n", 44 | "// Promises and Asynchronous Programming Example\n", 45 | "\n", 46 | "// Creating a Promise\n", 47 | "let fetchData = new Promise((resolve, reject) => {\n", 48 | " setTimeout(() => {\n", 49 | " let data = { message: \"Async data fetched!\" };\n", 50 | " resolve(data);\n", 51 | " }, 2000);\n", 52 | "});\n", 53 | "\n", 54 | "// Chaining Promises\n", 55 | "fetchData\n", 56 | " .then((data) => {\n", 57 | " console.log(data.message);\n", 58 | " return new Promise((resolve) => {\n", 59 | " resolve(\"Additional data processed!\");\n", 60 | " });\n", 61 | " })\n", 62 | " .then((additionalData) => {\n", 63 | " console.log(additionalData);\n", 64 | " })\n", 65 | " .catch((error) => {\n", 66 | " console.error(\"Error:\", error);\n", 67 | " });\n", 68 | "\n", 69 | "// Async/Await Syntax\n", 70 | "async function fetchDataAsync() {\n", 71 | " try {\n", 72 | " let data = await fetchData;\n", 73 | " console.log(data.message);\n", 74 | " } catch (error) {\n", 75 | " console.error(\"Error:\", error);\n", 76 | " }\n", 77 | "}\n", 78 | "\n", 79 | "fetchDataAsync();" 80 | ] 81 | }, 82 | { 83 | "cell_type": "markdown", 84 | "metadata": {}, 85 | "source": [ 86 | "A [User Infromation Fetcher Project](../Projects%20📁/user-information-fetcher/) has the usage of Promises and Asynchronous programming in JavaScript." 87 | ] 88 | } 89 | ], 90 | "metadata": { 91 | "language_info": { 92 | "name": "python" 93 | } 94 | }, 95 | "nbformat": 4, 96 | "nbformat_minor": 2 97 | } 98 | -------------------------------------------------------------------------------- /1. Basics 🔰/10. Fuctions&Scopes.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "# Functions and Scope in JavaScript\n", 8 | "\n", 9 | "## Introduction to Functions\n", 10 | "\n", 11 | "- **Function Definition:** Declaring and defining functions.\n", 12 | "- **Function Invocation:** Calling functions to execute their code.\n", 13 | "- **Parameters and Arguments:** Passing data into functions.\n", 14 | "\n", 15 | "## Function Scope\n", 16 | "\n", 17 | "- **Global Scope:** Variables defined outside functions.\n", 18 | "- **Local Scope:** Variables defined inside functions.\n", 19 | "- **Block Scope (with let and const):** Variables defined within blocks.\n", 20 | "\n", 21 | "## Function Expressions and Arrow Functions\n", 22 | "\n", 23 | "- **Function Expressions:** Defining functions as variables.\n", 24 | "- **Arrow Functions:** A concise syntax for function expressions.\n", 25 | "\n", 26 | "## Anonymous Functions and Callbacks\n", 27 | "\n", 28 | "- **Anonymous Functions:** Functions without a name.\n", 29 | "- **Callbacks:** Passing functions as arguments to other functions.\n", 30 | "\n", 31 | "## Closures\n", 32 | "\n", 33 | "- **Definition:** Functions that have access to variables from their outer (enclosing) scope.\n", 34 | "- **Use Cases:** Maintaining state, creating private variables.\n", 35 | "\n", 36 | "## Example:" 37 | ] 38 | }, 39 | { 40 | "cell_type": "code", 41 | "execution_count": null, 42 | "metadata": { 43 | "vscode": { 44 | "languageId": "javascript" 45 | } 46 | }, 47 | "outputs": [], 48 | "source": [ 49 | "// Functions and Scope Example\n", 50 | "\n", 51 | "// Function declaration\n", 52 | "function greet(name) {\n", 53 | " return \"Hello, \" + name + \"!\";\n", 54 | "}\n", 55 | "\n", 56 | "// Function invocation\n", 57 | "let greeting = greet(\"John\");\n", 58 | "console.log(greeting);\n", 59 | "\n", 60 | "// Function expression\n", 61 | "let multiply = function(a, b) {\n", 62 | " return a * b;\n", 63 | "};\n", 64 | "\n", 65 | "// Arrow function\n", 66 | "let add = (x, y) => x + y;\n", 67 | "\n", 68 | "// Closure example\n", 69 | "function outerFunction() {\n", 70 | " let outerVariable = \"I am from the outer function\";\n", 71 | "\n", 72 | " function innerFunction() {\n", 73 | " console.log(outerVariable);\n", 74 | " }\n", 75 | "\n", 76 | " return innerFunction;\n", 77 | "}\n", 78 | "\n", 79 | "let closureExample = outerFunction();\n", 80 | "closureExample(); // Prints \"I am from the outer function\"\n" 81 | ] 82 | }, 83 | { 84 | "cell_type": "markdown", 85 | "metadata": {}, 86 | "source": [ 87 | "Understanding functions and scope is fundamental to JavaScript development. Functions provide modularity, reusability, and structure to your code, while scope determines the visibility and lifetime of variables." 88 | ] 89 | } 90 | ], 91 | "metadata": { 92 | "language_info": { 93 | "name": "python" 94 | } 95 | }, 96 | "nbformat": 4, 97 | "nbformat_minor": 2 98 | } 99 | -------------------------------------------------------------------------------- /1. Basics 🔰/8. ConditionalStatements.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "# Conditional Statements in JavaScript\n", 8 | "\n", 9 | "Conditional statements in JavaScript allow you to make decisions in your code. They are used to perform different actions based on different conditions. Let's explore the basic conditional statements: `if`, `else if`, and `else`.\n", 10 | "\n", 11 | "## Basic `if`, `else if`, and `else` Statements\n", 12 | "\n", 13 | "In JavaScript, the basic syntax for conditional statements looks like this:" 14 | ] 15 | }, 16 | { 17 | "cell_type": "code", 18 | "execution_count": null, 19 | "metadata": { 20 | "vscode": { 21 | "languageId": "javascript" 22 | } 23 | }, 24 | "outputs": [], 25 | "source": [ 26 | "// Basic if statement\n", 27 | "let temperature = 25;\n", 28 | "\n", 29 | "if (temperature > 30) {\n", 30 | " console.log(\"It's a hot day!\");\n", 31 | "} else if (temperature <= 30 && temperature >= 20) {\n", 32 | " console.log(\"It's a pleasant day.\");\n", 33 | "} else {\n", 34 | " console.log(\"It's a cold day.\");\n", 35 | "}\n" 36 | ] 37 | }, 38 | { 39 | "cell_type": "markdown", 40 | "metadata": {}, 41 | "source": [ 42 | "In the above code:\n", 43 | "\n", 44 | "- We use the if statement to check if the temperature is greater than 30.\n", 45 | "- If the condition is true, it prints \"It's a hot day!\"\n", 46 | "- If the condition is false, it moves to the else if statement and checks if the temperature is between 20 and 30.\n", 47 | "- If the second condition is true, it prints \"It's a pleasant day.\"\n", 48 | "- If none of the conditions is true, it goes to the else block and prints \"It's a cold day.\"\n" 49 | ] 50 | }, 51 | { 52 | "cell_type": "markdown", 53 | "metadata": {}, 54 | "source": [ 55 | "## Ternary Operator\n", 56 | "JavaScript also provides a concise way to write conditional statements using the ternary operator. Here's an example:" 57 | ] 58 | }, 59 | { 60 | "cell_type": "code", 61 | "execution_count": null, 62 | "metadata": { 63 | "vscode": { 64 | "languageId": "javascript" 65 | } 66 | }, 67 | "outputs": [], 68 | "source": [ 69 | "// Ternary Operator\n", 70 | "let isRaining = true;\n", 71 | "\n", 72 | "// Using a ternary operator to determine the message based on the value of isRaining\n", 73 | "let weatherMessage = isRaining ? 'Bring an umbrella.' : 'Enjoy the day!';\n", 74 | "\n", 75 | "console.log(weatherMessage);" 76 | ] 77 | }, 78 | { 79 | "cell_type": "markdown", 80 | "metadata": {}, 81 | "source": [ 82 | "The above code demonstrates the use of a ternary operator. The expression `isRaining` ? `'Bring an umbrella.'` : `'Enjoy the day!'` evaluates to `'Bring an umbrella.'` if `isRaining` is true and `'Enjoy the day!'` otherwise." 83 | ] 84 | }, 85 | { 86 | "cell_type": "markdown", 87 | "metadata": {}, 88 | "source": [ 89 | "Conditional statements are fundamental for controlling the flow of your JavaScript code. They allow you to execute different blocks of code based on varying conditions, making your programs more dynamic and responsive." 90 | ] 91 | } 92 | ], 93 | "metadata": { 94 | "language_info": { 95 | "name": "python" 96 | } 97 | }, 98 | "nbformat": 4, 99 | "nbformat_minor": 2 100 | } 101 | -------------------------------------------------------------------------------- /1. Basics 🔰/4. ArraysAndObjects.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "# Working with Arrays and Objects in JavaScript\n", 8 | "\n", 9 | "## Introduction\n", 10 | "\n", 11 | "Arrays and objects are essential data structures in JavaScript that allow you to store and manipulate collections of data. This guide will cover the basics of working with arrays and objects in JavaScript.\n", 12 | "\n", 13 | "### Working with Arrays\n", 14 | "\n", 15 | "You can create arrays in JavaScript to store lists of values. You can see Arrays in detail in [Arrays in JavaScript](5.%20ArraysInJS.ipynb). Here's an example of creating an array and accessing its elements:" 16 | ] 17 | }, 18 | { 19 | "cell_type": "code", 20 | "execution_count": null, 21 | "metadata": { 22 | "vscode": { 23 | "languageId": "javascript" 24 | } 25 | }, 26 | "outputs": [], 27 | "source": [ 28 | "%%script node\n", 29 | "// Run node in Jupyter Notebook\n", 30 | "\n", 31 | "// Creating an array\n", 32 | "let fruits = [\"apple\", \"banana\", \"cherry\"];\n", 33 | "\n", 34 | "// Accessing array elements\n", 35 | "console.log(fruits[0]); // Output: 'apple'\n", 36 | "console.log(fruits.length); // Output: 3" 37 | ] 38 | }, 39 | { 40 | "cell_type": "markdown", 41 | "metadata": {}, 42 | "source": [ 43 | "You can also use various array methods such as push, pop, shift, unshift, slice, and splice to add, remove, and modify elements in the array.\n", 44 | "\n", 45 | "### Working with Objects\n", 46 | "\n", 47 | "Objects in JavaScript allow you to store collections of key-value pairs. You can see Objects in detail in [Objects in JavaScript](6.%20ObjectsInJS.ipynb) Here's an example of creating an object and accessing its properties:" 48 | ] 49 | }, 50 | { 51 | "cell_type": "code", 52 | "execution_count": null, 53 | "metadata": { 54 | "vscode": { 55 | "languageId": "javascript" 56 | } 57 | }, 58 | "outputs": [], 59 | "source": [ 60 | "%%script node\n", 61 | "// Run node in Jupyter Notebook\n", 62 | "\n", 63 | "// Creating an object\n", 64 | "let person = { name: \"Alice\", age: 25, profession: \"Engineer\" };\n", 65 | "\n", 66 | "// Accessing object properties\n", 67 | "console.log(person.name); // Output: 'Alice'\n", 68 | "console.log(person[\"age\"]); // Output: 25" 69 | ] 70 | }, 71 | { 72 | "cell_type": "markdown", 73 | "metadata": {}, 74 | "source": [ 75 | "You can add new properties to an object, delete existing properties, and loop through an object's properties using for...in loops.\n", 76 | "\n", 77 | "## Conclusion\n", 78 | "\n", 79 | "Mastering the manipulation of arrays and objects is crucial for handling complex data structures and creating dynamic applications in JavaScript. Experiment with various array and object methods to enhance your coding skills and build more robust applications." 80 | ] 81 | } 82 | ], 83 | "metadata": { 84 | "kernelspec": { 85 | "display_name": "Python 3", 86 | "language": "python", 87 | "name": "python3" 88 | }, 89 | "language_info": { 90 | "codemirror_mode": { 91 | "name": "ipython", 92 | "version": 3 93 | }, 94 | "file_extension": ".py", 95 | "mimetype": "text/x-python", 96 | "name": "python", 97 | "nbconvert_exporter": "python", 98 | "pygments_lexer": "ipython3", 99 | "version": "3.11.4" 100 | } 101 | }, 102 | "nbformat": 4, 103 | "nbformat_minor": 2 104 | } 105 | -------------------------------------------------------------------------------- /1. Basics 🔰/3. EventHandeling.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "# JavaScript Events and Event Handling\n", 8 | "\n", 9 | "## Introduction\n", 10 | "\n", 11 | "Imagine your web page as a playground, and JavaScript events are like the playground rules. They tell your web page what to do when something exciting happens. 🎉\n", 12 | "\n", 13 | "For instance, when someone clicks a button, you can make a message appear. When they move their mouse over a picture, you can make it change color. JavaScript events are like the magic wand that brings your webpage to life!\n", 14 | "\n", 15 | "\n", 16 | "### Event Handling in HTML\n", 17 | "\n", 18 | "In HTML, you can use event attributes to handle events directly within the elements. Here's an example:\n", 19 | "\n", 20 | "```html\n", 21 | "\n", 22 | "\n", 23 | " \n", 24 | " \n", 25 | "\n", 26 | " \n", 31 | " \n", 32 | "\n", 33 | "```\n", 34 | "\n", 35 | "### Event Listeners in JavaScript\n", 36 | "\n", 37 | "JavaScript also allows you to add event listeners to elements, providing more flexibility and separation of concerns. Here's an example of adding an event listener to a button:\n", 38 | "\n", 39 | "```html\n", 40 | "\n", 41 | "\n", 42 | " \n", 43 | " \n", 44 | "\n", 45 | " \n", 51 | " \n", 52 | "\n", 53 | "```\n", 54 | "\n", 55 | "### Common Events and Event Handlers\n", 56 | "\n", 57 | "Here are some common events and their corresponding event handler functions:\n", 58 | "\n", 59 | "- **click event:**\n", 60 | "\n", 61 | "```javascript\n", 62 | "element.addEventListener(\"click\", function () {\n", 63 | " // code to handle click event\n", 64 | "});\n", 65 | "```\n", 66 | "\n", 67 | "- **mouseover event:**\n", 68 | "\n", 69 | "```javascript\n", 70 | "element.addEventListener(\"mouseover\", function () {\n", 71 | " // code to handle mouseover event\n", 72 | "});\n", 73 | "```\n", 74 | "\n", 75 | "- **keydown event:**\n", 76 | "\n", 77 | "```javascript\n", 78 | "document.addEventListener(\"keydown\", function (event) {\n", 79 | " // code to handle keydown event\n", 80 | " console.log(\"Key pressed: \" + event.key);\n", 81 | "});\n", 82 | "```\n", 83 | "\n", 84 | "- **contextmenu event:**\n", 85 | " - This event is triggered when the right mouse button is clicked, opening the context menu. It can be used to customize actions for right-click interactions.\n", 86 | "\n", 87 | "- **scroll event:**\n", 88 | " - The scroll event is fired when the user scrolls through a web page. It's useful for implementing effects that respond to scrolling, such as parallax backgrounds or fixed navigation bars.\n", 89 | "\n", 90 | "- **resize event:**\n", 91 | " - This event is triggered when the size of the browser window is changed. It's beneficial for dynamically adjusting the layout or elements based on the window dimensions.\n", 92 | "\n", 93 | "- **error event:**\n", 94 | " - The error event is triggered when an error occurs while loading an external resource, like an image or script. It's useful for handling errors gracefully and providing fallbacks.\n", 95 | "\n", 96 | "## Conclusion\n", 97 | "\n", 98 | "Understanding JavaScript events and event handling is crucial for creating interactive and dynamic web applications. Experiment with different events and event handlers to enhance the user experience and interactivity of your web pages.\n" 99 | ] 100 | } 101 | ], 102 | "metadata": { 103 | "kernelspec": { 104 | "display_name": "Python 3", 105 | "language": "python", 106 | "name": "python3" 107 | }, 108 | "language_info": { 109 | "name": "python", 110 | "version": "3.11.4" 111 | } 112 | }, 113 | "nbformat": 4, 114 | "nbformat_minor": 2 115 | } 116 | -------------------------------------------------------------------------------- /2. Intermediate 🌟/1-AsynchronousJS.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "# Asynchronous JavaScript\n", 8 | "\n", 9 | "## Introduction\n", 10 | "\n", 11 | "Asynchronous JavaScript allows the execution of multiple tasks without blocking the main thread. It enables handling time-consuming operations such as fetching data from servers, reading files, or waiting for user input without freezing the user interface.\n", 12 | "\n", 13 | "### Callbacks\n", 14 | "\n", 15 | "Callbacks are a traditional way to handle asynchronous operations in JavaScript. They are functions passed as arguments to other functions and executed upon the completion of a task." 16 | ] 17 | }, 18 | { 19 | "cell_type": "code", 20 | "execution_count": null, 21 | "metadata": { 22 | "vscode": { 23 | "languageId": "javascript" 24 | } 25 | }, 26 | "outputs": [], 27 | "source": [ 28 | "%%script node\n", 29 | "// Run node in Jupyter Notebook\n", 30 | "\n", 31 | "// Example of a callback\n", 32 | "function fetchData(callback) {\n", 33 | " // Simulating data fetching\n", 34 | " setTimeout(() => {\n", 35 | " const data = 'Some data retrieved!';\n", 36 | " callback(data);\n", 37 | " }, 2000);\n", 38 | "}\n", 39 | "\n", 40 | "fetchData((data) => {\n", 41 | " console.log(data);\n", 42 | "});" 43 | ] 44 | }, 45 | { 46 | "cell_type": "markdown", 47 | "metadata": {}, 48 | "source": [ 49 | "### Promises\n", 50 | "\n", 51 | "Promises provide a more structured approach to handling asynchronous operations. They represent a value that may be available now, in the future, or never." 52 | ] 53 | }, 54 | { 55 | "cell_type": "code", 56 | "execution_count": null, 57 | "metadata": { 58 | "vscode": { 59 | "languageId": "javascript" 60 | } 61 | }, 62 | "outputs": [], 63 | "source": [ 64 | "%%script node\n", 65 | "// Run node in Jupyter Notebook\n", 66 | "\n", 67 | "\n", 68 | "// Example of a promise\n", 69 | "const fetchData = () => {\n", 70 | " return new Promise((resolve, reject) => {\n", 71 | " // Simulating data fetching\n", 72 | " setTimeout(() => {\n", 73 | " const data = \"Some data retrieved!\";\n", 74 | " resolve(data);\n", 75 | " }, 2000);\n", 76 | " });\n", 77 | "};\n", 78 | "\n", 79 | "fetchData()\n", 80 | " .then((data) => {\n", 81 | " console.log(data);\n", 82 | " })\n", 83 | " .catch((error) => {\n", 84 | " console.error(error);\n", 85 | " });" 86 | ] 87 | }, 88 | { 89 | "cell_type": "markdown", 90 | "metadata": {}, 91 | "source": [ 92 | "### Async/Await\n", 93 | "\n", 94 | "Async/Await is a modern approach to handle asynchronous operations, providing a more concise and readable syntax for writing asynchronous code." 95 | ] 96 | }, 97 | { 98 | "cell_type": "code", 99 | "execution_count": 1, 100 | "metadata": { 101 | "vscode": { 102 | "languageId": "javascript" 103 | } 104 | }, 105 | "outputs": [ 106 | { 107 | "name": "stdout", 108 | "output_type": "stream", 109 | "text": [ 110 | "Some data retrieved!\n" 111 | ] 112 | } 113 | ], 114 | "source": [ 115 | "%%script node\n", 116 | "// Run node in Jupyter Notebook\n", 117 | "\n", 118 | "// Example of async/await\n", 119 | "const fetchData = () => {\n", 120 | " return new Promise((resolve, reject) => {\n", 121 | " // Simulating data fetching\n", 122 | " setTimeout(() => {\n", 123 | " const data = \"Some data retrieved!\";\n", 124 | " resolve(data);\n", 125 | " }, 2000);\n", 126 | " });\n", 127 | "};\n", 128 | "\n", 129 | "async function getData() {\n", 130 | " try {\n", 131 | " const data = await fetchData();\n", 132 | " console.log(data);\n", 133 | " } catch (error) {\n", 134 | " console.error(error);\n", 135 | " }\n", 136 | "}\n", 137 | "\n", 138 | "getData();" 139 | ] 140 | }, 141 | { 142 | "cell_type": "markdown", 143 | "metadata": {}, 144 | "source": [ 145 | "### Conclusion\n", 146 | "\n", 147 | "Understanding asynchronous JavaScript is crucial for developing responsive and efficient web applications. By mastering asynchronous programming, you can create smoother user experiences and handle complex tasks seamlessly." 148 | ] 149 | } 150 | ], 151 | "metadata": { 152 | "kernelspec": { 153 | "display_name": "Python 3", 154 | "language": "python", 155 | "name": "python3" 156 | }, 157 | "language_info": { 158 | "codemirror_mode": { 159 | "name": "ipython", 160 | "version": 3 161 | }, 162 | "file_extension": ".py", 163 | "mimetype": "text/x-python", 164 | "name": "python", 165 | "nbconvert_exporter": "python", 166 | "pygments_lexer": "ipython3", 167 | "version": "3.11.4" 168 | } 169 | }, 170 | "nbformat": 4, 171 | "nbformat_minor": 2 172 | } 173 | -------------------------------------------------------------------------------- /1. Basics 🔰/7. LoopsInJS.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "# JavaScript Loops\n", 8 | "\n", 9 | "## Introduction\n", 10 | "\n", 11 | "Loops in JavaScript are used to execute a block of code repeatedly as long as a specified condition is true. They provide a way to iterate over arrays, objects, and perform various tasks efficiently.\n", 12 | "\n", 13 | "### For Loop\n", 14 | "\n", 15 | "The for loop is commonly used when the number of iterations is known. It consists of three parts: initialization, condition, and increment/decrement." 16 | ] 17 | }, 18 | { 19 | "cell_type": "code", 20 | "execution_count": null, 21 | "metadata": { 22 | "vscode": { 23 | "languageId": "javascript" 24 | } 25 | }, 26 | "outputs": [], 27 | "source": [ 28 | "%%script node\n", 29 | "// Run node in Jupyter Notebook\n", 30 | "\n", 31 | "// For loop\n", 32 | "console.log(\"For Loop:\");\n", 33 | "for (let i = 0; i < 5; i++) {\n", 34 | " console.log(\"Iteration:\", i);\n", 35 | "}" 36 | ] 37 | }, 38 | { 39 | "cell_type": "markdown", 40 | "metadata": {}, 41 | "source": [ 42 | "### While Loop\n", 43 | "\n", 44 | "The while loop is used when the number of iterations is not known beforehand but depends on a condition being true." 45 | ] 46 | }, 47 | { 48 | "cell_type": "code", 49 | "execution_count": null, 50 | "metadata": { 51 | "vscode": { 52 | "languageId": "javascript" 53 | } 54 | }, 55 | "outputs": [], 56 | "source": [ 57 | "%%script node\n", 58 | "// Run node in Jupyter Notebook\n", 59 | "\n", 60 | "//While loop\n", 61 | "console.log(\"While Loop:\");\n", 62 | "let i = 0;\n", 63 | "while (i < 5) {\n", 64 | " console.log(\"Iteration:\", i);\n", 65 | " i++;\n", 66 | "}" 67 | ] 68 | }, 69 | { 70 | "cell_type": "markdown", 71 | "metadata": {}, 72 | "source": [ 73 | "### Do-While Loop\n", 74 | "\n", 75 | "The do-while loop is similar to the while loop but ensures that the code inside the loop is executed at least once, even if the condition is initially false." 76 | ] 77 | }, 78 | { 79 | "cell_type": "code", 80 | "execution_count": null, 81 | "metadata": { 82 | "vscode": { 83 | "languageId": "javascript" 84 | } 85 | }, 86 | "outputs": [], 87 | "source": [ 88 | "%%script node\n", 89 | "// Run node in Jupyter Notebook\n", 90 | "\n", 91 | "//Do while loop\n", 92 | "console.log(\"Do While Loop:\");\n", 93 | "i = 0;\n", 94 | "do {\n", 95 | " console.log(\"Iteration:\", i);\n", 96 | " i++;\n", 97 | "} while (i < 5);" 98 | ] 99 | }, 100 | { 101 | "cell_type": "markdown", 102 | "metadata": {}, 103 | "source": [ 104 | "### For-In Loop\n", 105 | "\n", 106 | "The for-in loop is used to iterate over the properties of an object." 107 | ] 108 | }, 109 | { 110 | "cell_type": "code", 111 | "execution_count": null, 112 | "metadata": { 113 | "vscode": { 114 | "languageId": "javascript" 115 | } 116 | }, 117 | "outputs": [], 118 | "source": [ 119 | "%%script node\n", 120 | "// Run node in Jupyter Notebook\n", 121 | "\n", 122 | "// For-In Loop\n", 123 | "console.log(\"For-In Loop:\");\n", 124 | "const obj = { a: 1, b: 2, c: 3 };\n", 125 | "for (const key in obj) {\n", 126 | " console.log(`${key}: ${obj[key]}`);\n", 127 | "}" 128 | ] 129 | }, 130 | { 131 | "cell_type": "markdown", 132 | "metadata": {}, 133 | "source": [ 134 | "### For-Of Loop\n", 135 | "\n", 136 | "The for-of loop is used to iterate over the elements of an array." 137 | ] 138 | }, 139 | { 140 | "cell_type": "code", 141 | "execution_count": null, 142 | "metadata": { 143 | "vscode": { 144 | "languageId": "javascript" 145 | } 146 | }, 147 | "outputs": [], 148 | "source": [ 149 | "%%script node\n", 150 | "// Run node in Jupyter Notebook\n", 151 | "\n", 152 | "// For-Of Loop\n", 153 | "console.log(\"For-Of Loop:\");\n", 154 | "const arr = [1, 2, 3, 4, 5];\n", 155 | "for (const element of arr) {\n", 156 | " console.log(\"Element:\", element);\n", 157 | "}" 158 | ] 159 | }, 160 | { 161 | "cell_type": "markdown", 162 | "metadata": {}, 163 | "source": [ 164 | "## Conclusion\n", 165 | "\n", 166 | "Understanding and using different types of loops is essential for writing efficient and effective JavaScript code. By leveraging these loop structures, you can easily handle repetitive tasks and iterate over data structures in your applications.\n", 167 | "\n", 168 | "Happy coding!" 169 | ] 170 | } 171 | ], 172 | "metadata": { 173 | "kernelspec": { 174 | "display_name": "Python 3", 175 | "language": "python", 176 | "name": "python3" 177 | }, 178 | "language_info": { 179 | "codemirror_mode": { 180 | "name": "ipython", 181 | "version": 3 182 | }, 183 | "file_extension": ".py", 184 | "mimetype": "text/x-python", 185 | "name": "python", 186 | "nbconvert_exporter": "python", 187 | "pygments_lexer": "ipython3", 188 | "version": "3.11.4" 189 | } 190 | }, 191 | "nbformat": 4, 192 | "nbformat_minor": 2 193 | } 194 | -------------------------------------------------------------------------------- /1. Basics 🔰/5. ArraysInJS.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "# Arrays in JavaScript\n", 8 | "\n", 9 | "## Introduction\n", 10 | "\n", 11 | "Arrays in JavaScript are used to store multiple values in a single variable. They are a special type of object that provides a way to manage and manipulate collections of data efficiently.\n", 12 | "\n", 13 | "### Creating Arrays\n", 14 | "\n", 15 | "Arrays can be created using the array literal syntax or the `Array` constructor." 16 | ] 17 | }, 18 | { 19 | "cell_type": "code", 20 | "execution_count": null, 21 | "metadata": { 22 | "vscode": { 23 | "languageId": "javascript" 24 | } 25 | }, 26 | "outputs": [], 27 | "source": [ 28 | "// Array literal\n", 29 | "const fruits = [\"apple\", \"banana\", \"cherry\"];\n", 30 | "\n", 31 | "// Using Array constructor\n", 32 | "const numbers = new Array(1, 2, 3, 4, 5);" 33 | ] 34 | }, 35 | { 36 | "cell_type": "markdown", 37 | "metadata": {}, 38 | "source": [ 39 | "### Accessing Array Elements\n", 40 | "\n", 41 | "Individual elements within an array can be accessed using their index, starting from 0." 42 | ] 43 | }, 44 | { 45 | "cell_type": "code", 46 | "execution_count": null, 47 | "metadata": { 48 | "vscode": { 49 | "languageId": "javascript" 50 | } 51 | }, 52 | "outputs": [], 53 | "source": [ 54 | "%%script node\n", 55 | "// Run node in Jupyter Notebook\n", 56 | "\n", 57 | "// Accessing array elements\n", 58 | "const colors = [\"red\", \"green\", \"blue\"];\n", 59 | "console.log(colors[0]); // Output: 'red'\n", 60 | "console.log(colors[2]); // Output: 'blue'" 61 | ] 62 | }, 63 | { 64 | "cell_type": "markdown", 65 | "metadata": {}, 66 | "source": [ 67 | "### Modifying Arrays\n", 68 | "\n", 69 | "Arrays in JavaScript are mutable, meaning you can add, remove, and modify elements within an array." 70 | ] 71 | }, 72 | { 73 | "cell_type": "code", 74 | "execution_count": null, 75 | "metadata": { 76 | "vscode": { 77 | "languageId": "javascript" 78 | } 79 | }, 80 | "outputs": [], 81 | "source": [ 82 | "// Modifying arrays\n", 83 | "const animals = [\"dog\", \"cat\", \"rabbit\"];\n", 84 | "animals.push(\"horse\"); // Adding an element\n", 85 | "animals[1] = \"bird\"; // Modifying an element\n", 86 | "animals.pop(); // Removing the last element" 87 | ] 88 | }, 89 | { 90 | "cell_type": "markdown", 91 | "metadata": {}, 92 | "source": [ 93 | "### Array Methods\n", 94 | "\n", 95 | "JavaScript provides a variety of built-in methods for working with arrays, such as push, pop, shift, unshift, slice, splice, and more." 96 | ] 97 | }, 98 | { 99 | "cell_type": "code", 100 | "execution_count": null, 101 | "metadata": { 102 | "vscode": { 103 | "languageId": "javascript" 104 | } 105 | }, 106 | "outputs": [], 107 | "source": [ 108 | "// Array methods\n", 109 | "const numbers = [1, 2, 3, 4, 5];\n", 110 | "numbers.push(6); // Adding an element at the end\n", 111 | "numbers.pop(); // Removing the last element\n", 112 | "numbers.shift(); // Removing the first element\n", 113 | "numbers.unshift(0); // Adding an element at the beginning" 114 | ] 115 | }, 116 | { 117 | "cell_type": "markdown", 118 | "metadata": {}, 119 | "source": [ 120 | "### Iterating Over Arrays\n", 121 | "\n", 122 | "You can iterate over array elements using loops such as the for loop or the forEach method." 123 | ] 124 | }, 125 | { 126 | "cell_type": "code", 127 | "execution_count": null, 128 | "metadata": { 129 | "vscode": { 130 | "languageId": "javascript" 131 | } 132 | }, 133 | "outputs": [], 134 | "source": [ 135 | "%%script node\n", 136 | "// Run node in Jupyter Notebook\n", 137 | "\n", 138 | "// Iterating over arrays\n", 139 | "const numbers = [1, 2, 3, 4, 5];\n", 140 | "for (let i = 0; i < numbers.length; i++) {\n", 141 | " console.log(\"Element:\", numbers[i]);\n", 142 | "}\n", 143 | "\n", 144 | "// Using forEach method\n", 145 | "numbers.forEach((number) => {\n", 146 | " console.log(\"Element:\", number);\n", 147 | "});" 148 | ] 149 | }, 150 | { 151 | "cell_type": "markdown", 152 | "metadata": {}, 153 | "source": [ 154 | "## Conclusion\n", 155 | "\n", 156 | "Understanding how to work with arrays is crucial for handling collections of data in JavaScript. With the knowledge of array manipulation and iteration, you can effectively manage and process data within your applications.\n", 157 | "\n", 158 | "Happy coding!" 159 | ] 160 | } 161 | ], 162 | "metadata": { 163 | "kernelspec": { 164 | "display_name": "Python 3", 165 | "language": "python", 166 | "name": "python3" 167 | }, 168 | "language_info": { 169 | "codemirror_mode": { 170 | "name": "ipython", 171 | "version": 3 172 | }, 173 | "file_extension": ".py", 174 | "mimetype": "text/x-python", 175 | "name": "python", 176 | "nbconvert_exporter": "python", 177 | "pygments_lexer": "ipython3", 178 | "version": "3.11.4" 179 | } 180 | }, 181 | "nbformat": 4, 182 | "nbformat_minor": 2 183 | } 184 | -------------------------------------------------------------------------------- /1. Basics 🔰/2. FunctionsInJs.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "## Introduction\n", 8 | "\n", 9 | "Functions in JavaScript are reusable blocks of code that can be called and executed. They play a crucial role in structuring and organizing code. This guide will cover the basics of creating and using functions in JavaScript.\n", 10 | "\n", 11 | "### Function Declaration\n", 12 | "\n", 13 | "You can declare a function in JavaScript using the `function` keyword, followed by the function name and parameters, if any. Here's an example:" 14 | ] 15 | }, 16 | { 17 | "cell_type": "code", 18 | "execution_count": 1, 19 | "metadata": { 20 | "vscode": { 21 | "languageId": "javascript" 22 | } 23 | }, 24 | "outputs": [], 25 | "source": [ 26 | "%%script node\n", 27 | "// Run node in Jupyter Notebook\n", 28 | "\n", 29 | "// Function Declaration\n", 30 | "function greet(name) {\n", 31 | " return 'Hello, ' + name + '!';\n", 32 | "}" 33 | ] 34 | }, 35 | { 36 | "cell_type": "markdown", 37 | "metadata": {}, 38 | "source": [ 39 | "### Function Call\n", 40 | "\n", 41 | "Once you've declared a function, you can call it and pass values to its parameters. Here's an example of calling the greet function:" 42 | ] 43 | }, 44 | { 45 | "cell_type": "code", 46 | "execution_count": 2, 47 | "metadata": { 48 | "vscode": { 49 | "languageId": "javascript" 50 | } 51 | }, 52 | "outputs": [ 53 | { 54 | "name": "stdout", 55 | "output_type": "stream", 56 | "text": [ 57 | "Hello, John!\n" 58 | ] 59 | } 60 | ], 61 | "source": [ 62 | "%%script node\n", 63 | "// Run node in Jupyter Notebook\n", 64 | "\n", 65 | "// Function declaration\n", 66 | "function greet(name) {\n", 67 | " return 'Hello, ' + name + '!';\n", 68 | "}\n", 69 | "\n", 70 | "// Function call\n", 71 | "console.log(greet('John'));" 72 | ] 73 | }, 74 | { 75 | "cell_type": "markdown", 76 | "metadata": {}, 77 | "source": [ 78 | "### Anonymous Functions\n", 79 | "\n", 80 | "You can also create anonymous functions, which are functions without a name. They are often used as callback functions or for immediate invocation. Here's an example:" 81 | ] 82 | }, 83 | { 84 | "cell_type": "code", 85 | "execution_count": 1, 86 | "metadata": { 87 | "vscode": { 88 | "languageId": "javascript" 89 | } 90 | }, 91 | "outputs": [ 92 | { 93 | "name": "stdout", 94 | "output_type": "stream", 95 | "text": [ 96 | "Delayed greeting after 3 seconds!\n" 97 | ] 98 | } 99 | ], 100 | "source": [ 101 | "%%script node\n", 102 | "// Run node in Jupyter Notebook\n", 103 | "\n", 104 | "// Anonymous function as a callback\n", 105 | "setTimeout(function() {\n", 106 | " console.log('Delayed greeting after 3 seconds!');\n", 107 | "}, 3000);" 108 | ] 109 | }, 110 | { 111 | "cell_type": "markdown", 112 | "metadata": {}, 113 | "source": [ 114 | "### Arrow Functions\n", 115 | "\n", 116 | "Arrow functions provide a more concise syntax for writing function expressions. They are particularly useful for shorter, one-line functions. Here's an example:" 117 | ] 118 | }, 119 | { 120 | "cell_type": "code", 121 | "execution_count": 4, 122 | "metadata": { 123 | "vscode": { 124 | "languageId": "javascript" 125 | } 126 | }, 127 | "outputs": [ 128 | { 129 | "name": "stdout", 130 | "output_type": "stream", 131 | "text": [ 132 | "Total Amount: $137.5\n" 133 | ] 134 | } 135 | ], 136 | "source": [ 137 | "%%script node\n", 138 | "// Run node in Jupyter Notebook\n", 139 | "\n", 140 | "\n", 141 | "const calculateTotal = (price, quantity) => {\n", 142 | " const subtotal = price * quantity;\n", 143 | " const tax = subtotal * 0.1; // if we keep the tax 10% \n", 144 | " return subtotal + tax;\n", 145 | "}\n", 146 | "\n", 147 | "console.log(`Total Amount: $${calculateTotal(25, 5)}`); // Output: Total Amount: $137.5\n" 148 | ] 149 | }, 150 | { 151 | "cell_type": "markdown", 152 | "metadata": {}, 153 | "source": [ 154 | "Pro Tip: Keep in mind that arrow functions are widely used in React.js for defining methods within components. They provide a clean and convenient way to handle event callbacks and other functions while preserving the context of `this` within your components. You'll see arrow functions playing a significant role in your future React projects.\n" 155 | ] 156 | }, 157 | { 158 | "cell_type": "markdown", 159 | "metadata": {}, 160 | "source": [ 161 | "## Conclusion\n", 162 | "\n", 163 | "Understanding how to create and use functions in JavaScript is fundamental for writing organized and efficient code. Experiment with different types of functions to improve your coding skills and create more robust applications." 164 | ] 165 | } 166 | ], 167 | "metadata": { 168 | "kernelspec": { 169 | "display_name": "Python 3", 170 | "language": "python", 171 | "name": "python3" 172 | }, 173 | "language_info": { 174 | "codemirror_mode": { 175 | "name": "ipython", 176 | "version": 3 177 | }, 178 | "file_extension": ".py", 179 | "mimetype": "text/x-python", 180 | "name": "python", 181 | "nbconvert_exporter": "python", 182 | "pygments_lexer": "ipython3", 183 | "version": "3.12.0" 184 | } 185 | }, 186 | "nbformat": 4, 187 | "nbformat_minor": 2 188 | } 189 | -------------------------------------------------------------------------------- /1. Basics 🔰/6. ObjectsInJS.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "# Objects in JavaScript\n", 8 | "\n", 9 | "## Introduction\n", 10 | "\n", 11 | "Objects in JavaScript are a fundamental data structure used to store collections of data in key-value pairs. They allow for the creation of complex data structures and are a cornerstone of the language.\n", 12 | "\n", 13 | "### Creating Objects\n", 14 | "\n", 15 | "Objects can be created using object literal syntax or the `new Object()` constructor." 16 | ] 17 | }, 18 | { 19 | "cell_type": "code", 20 | "execution_count": null, 21 | "metadata": { 22 | "vscode": { 23 | "languageId": "javascript" 24 | } 25 | }, 26 | "outputs": [], 27 | "source": [ 28 | "const person = {\n", 29 | " name: \"John Doe\",\n", 30 | " age: 30,\n", 31 | " isStudent: true,\n", 32 | " hobbies: [\"reading\", \"hiking\", \"coding\"],\n", 33 | "};\n", 34 | "\n", 35 | "// Using Object constructor\n", 36 | "const car = new Object();\n", 37 | "car.make = \"Toyota\";\n", 38 | "car.model = \"Camry\";\n", 39 | "car.year = 2020;" 40 | ] 41 | }, 42 | { 43 | "cell_type": "markdown", 44 | "metadata": {}, 45 | "source": [ 46 | "### Accessing Object Properties\n", 47 | "\n", 48 | "You can access object properties using dot notation or square brackets." 49 | ] 50 | }, 51 | { 52 | "cell_type": "code", 53 | "execution_count": null, 54 | "metadata": { 55 | "vscode": { 56 | "languageId": "javascript" 57 | } 58 | }, 59 | "outputs": [], 60 | "source": [ 61 | "%%script node\n", 62 | "// Run node in Jupyter Notebook\n", 63 | "\n", 64 | "// Creating an object\n", 65 | "const person = {\n", 66 | " name: \"John Doe\",\n", 67 | " age: 30,\n", 68 | " isStudent: true,\n", 69 | " hobbies: [\"reading\", \"hiking\", \"coding\"],\n", 70 | " };\n", 71 | " \n", 72 | "// Accessing object properties\n", 73 | "console.log(person.name); // Output: 'John Doe'\n", 74 | "console.log(person[\"age\"]); // Output: 30" 75 | ] 76 | }, 77 | { 78 | "cell_type": "markdown", 79 | "metadata": {}, 80 | "source": [ 81 | "### Modifying Objects\n", 82 | "\n", 83 | "Objects in JavaScript are mutable, allowing you to add, update, or delete properties." 84 | ] 85 | }, 86 | { 87 | "cell_type": "code", 88 | "execution_count": null, 89 | "metadata": { 90 | "vscode": { 91 | "languageId": "javascript" 92 | } 93 | }, 94 | "outputs": [], 95 | "source": [ 96 | "%%script node\n", 97 | "// Run node in Jupyter Notebook\n", 98 | "\n", 99 | "//Creating an object\n", 100 | "const person = {\n", 101 | " name: \"John Doe\",\n", 102 | " age: 30,\n", 103 | " isStudent: true,\n", 104 | " hobbies: [\"reading\", \"hiking\", \"coding\"],\n", 105 | " };\n", 106 | "\n", 107 | "// Modifying objects\n", 108 | "person.age = 32; // Updating a property\n", 109 | "person.location = \"New York\"; // Adding a new property\n", 110 | "delete person.isStudent; // Deleting a property\n", 111 | "\n", 112 | "console.log(person); //displaying the object after modification" 113 | ] 114 | }, 115 | { 116 | "cell_type": "markdown", 117 | "metadata": {}, 118 | "source": [ 119 | "### Object Methods\n", 120 | "\n", 121 | "Objects can also contain functions as properties, known as methods." 122 | ] 123 | }, 124 | { 125 | "cell_type": "code", 126 | "execution_count": 7, 127 | "metadata": { 128 | "vscode": { 129 | "languageId": "javascript" 130 | } 131 | }, 132 | "outputs": [ 133 | { 134 | "name": "stdout", 135 | "output_type": "stream", 136 | "text": [ 137 | "Hello, my name is Alice!\n" 138 | ] 139 | } 140 | ], 141 | "source": [ 142 | "%%script node\n", 143 | "// Run node in Jupyter Notebook\n", 144 | "\n", 145 | "// Object methods\n", 146 | "const student = {\n", 147 | " name: \"Alice\",\n", 148 | " age: 25,\n", 149 | " greet: function () {\n", 150 | " return \"Hello, my name is \" + this.name + \"!\";\n", 151 | " },\n", 152 | "};\n", 153 | "console.log(student.greet()); // Output: 'Hello, my name is Alice!'" 154 | ] 155 | }, 156 | { 157 | "cell_type": "markdown", 158 | "metadata": {}, 159 | "source": [ 160 | "### Object Iteration\n", 161 | "\n", 162 | "You can iterate over an object's properties using for...in loops or Object.keys and Object.values methods." 163 | ] 164 | }, 165 | { 166 | "cell_type": "code", 167 | "execution_count": null, 168 | "metadata": { 169 | "vscode": { 170 | "languageId": "javascript" 171 | } 172 | }, 173 | "outputs": [], 174 | "source": [ 175 | "// Object iteration\n", 176 | "for (let key in person) {\n", 177 | " console.log(`${key}: ${person[key]}`);\n", 178 | "}\n", 179 | "\n", 180 | "Object.keys(car).forEach((key) => {\n", 181 | " console.log(`${key}: ${car[key]}`);\n", 182 | "});" 183 | ] 184 | }, 185 | { 186 | "cell_type": "markdown", 187 | "metadata": {}, 188 | "source": [ 189 | "## Conclusion\n", 190 | "\n", 191 | "Understanding how to create, access, and manipulate objects is essential for building complex data structures and applications in JavaScript. With objects, you can organize and manage data more effectively, enabling you to create dynamic and interactive web applications.\n", 192 | "Happy coding!" 193 | ] 194 | } 195 | ], 196 | "metadata": { 197 | "kernelspec": { 198 | "display_name": "Python 3", 199 | "language": "python", 200 | "name": "python3" 201 | }, 202 | "language_info": { 203 | "codemirror_mode": { 204 | "name": "ipython", 205 | "version": 3 206 | }, 207 | "file_extension": ".py", 208 | "mimetype": "text/x-python", 209 | "name": "python", 210 | "nbconvert_exporter": "python", 211 | "pygments_lexer": "ipython3", 212 | "version": "3.11.4" 213 | } 214 | }, 215 | "nbformat": 4, 216 | "nbformat_minor": 2 217 | } 218 | -------------------------------------------------------------------------------- /1. Basics 🔰/1.GettingStartedWithJS.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "# Getting Started with JavaScript\n", 8 | "\n", 9 | "## Introduction\n", 10 | "\n", 11 | "JavaScript is a high-level, interpreted programming language that conforms to the [ECMAScript](https://262.ecma-international.org/) specification. It is commonly used to create interactive and dynamic elements within web pages. This guide will walk you through the foundational concepts of JavaScript.\n", 12 | "\n", 13 | "### Setting Up\n", 14 | "\n", 15 | "To run JavaScript code, you have several options:\n", 16 | "\n", 17 | "- **Web Browser and Developer Tools:** The quickest way to experiment with JavaScript is to use your web browser's built-in developer tools. Simply open your favorite browser (like [Google Chrome](https://www.google.com/chrome/), [Mozilla Firefox](https://www.mozilla.org/firefox/), or [Microsoft Edge](https://www.microsoft.com/edge/)), right-click on a web page, and select \"Inspect\" or \"Inspect Element.\" In the developer console, you can write and run JavaScript code.\n", 18 | "\n", 19 | "- **Local Development Environment:**\n", 20 | " - [Node.js](https://nodejs.org/): If you want to write JavaScript outside of the browser, Node.js is a popular choice. It provides a runtime environment for executing JavaScript code on your computer.\n", 21 | " - Text Editors: Consider using code editors like [Visual Studio Code](https://code.visualstudio.com/), [Sublime Text](https://www.sublimetext.com/), or [Atom](https://atom.io/) for a more customized development experience. These editors offer features like code highlighting, debugging, and extensions that make JavaScript development easier.\n", 22 | "\n", 23 | "- **Online Code Editors:** If you prefer a hassle-free setup, you can use online code editors that allow you to write and run JavaScript in your web browser without installing anything on your local machine. Here are a few popular options:\n", 24 | " - [CodePen](https://codepen.io/): An online community where you can write and share HTML, CSS, and JavaScript code snippets. Great for quickly prototyping and sharing your work.\n", 25 | " - [JSFiddle](https://jsfiddle.net/): A web-based tool for testing and sharing JavaScript, HTML, and CSS code. You can see live results on the page.\n", 26 | " - [Repl.it](https://replit.com/): An online platform that supports a wide range of programming languages, including JavaScript. You can code in the browser and run your programs instantly.\n", 27 | "\n", 28 | "These tools and platforms offer different options for experimenting with JavaScript, so choose the one that best fits your needs.\n", 29 | "\n", 30 | "\n", 31 | "## Basic Syntax\n", 32 | "\n", 33 | "### Variables and Data Types\n", 34 | "\n", 35 | "In JavaScript, you can declare variables using the `var`, `let`, or `const` keywords. It has various data types such as numbers, strings, booleans, objects, arrays, and more.\n", 36 | "\n" 37 | ] 38 | }, 39 | { 40 | "cell_type": "code", 41 | "execution_count": 2, 42 | "metadata": { 43 | "vscode": { 44 | "languageId": "javascript" 45 | } 46 | }, 47 | "outputs": [ 48 | { 49 | "ename": "SyntaxError", 50 | "evalue": "invalid syntax (649402130.py, line 1)", 51 | "output_type": "error", 52 | "traceback": [ 53 | "\u001b[1;36m Cell \u001b[1;32mIn[2], line 1\u001b[1;36m\u001b[0m\n\u001b[1;33m // Variable declaration\u001b[0m\n\u001b[1;37m ^\u001b[0m\n\u001b[1;31mSyntaxError\u001b[0m\u001b[1;31m:\u001b[0m invalid syntax\n" 54 | ] 55 | } 56 | ], 57 | "source": [ 58 | "// Variable declaration\n", 59 | "var greeting = 'Hello, world!';\n", 60 | "let number = 42;\n", 61 | "const pi = 3.14;\n", 62 | "\n", 63 | "// Data types\n", 64 | "let name = 'John Doe';\n", 65 | "let age = 30;\n", 66 | "let isStudent = true;\n", 67 | "let fruits = ['apple', 'banana', 'cherry'];\n", 68 | "let person = { name: 'Alice', age: 25 };\n" 69 | ] 70 | }, 71 | { 72 | "cell_type": "markdown", 73 | "metadata": {}, 74 | "source": [ 75 | "### Functions\n", 76 | "\n", 77 | "Functions in JavaScript are reusable blocks of code that can be called and executed. They can take parameters and return values." 78 | ] 79 | }, 80 | { 81 | "cell_type": "code", 82 | "execution_count": null, 83 | "metadata": { 84 | "vscode": { 85 | "languageId": "javascript" 86 | } 87 | }, 88 | "outputs": [], 89 | "source": [ 90 | "%%script node\n", 91 | "// Run node in Jupyter Notebook\n", 92 | "\n", 93 | "\n", 94 | "// Function declaration\n", 95 | "function greet(name) {\n", 96 | " return \"Hello, \" + name + \"!\";\n", 97 | "}\n", 98 | "\n", 99 | "// Function call\n", 100 | "console.log(greet(\"John\"));" 101 | ] 102 | }, 103 | { 104 | "cell_type": "markdown", 105 | "metadata": {}, 106 | "source": [ 107 | "### Control Structures\n", 108 | "\n", 109 | "JavaScript supports various control structures such as if-else statements, switch cases, and loops like for and while loops.\n" 110 | ] 111 | }, 112 | { 113 | "cell_type": "code", 114 | "execution_count": null, 115 | "metadata": { 116 | "vscode": { 117 | "languageId": "javascript" 118 | } 119 | }, 120 | "outputs": [], 121 | "source": [ 122 | "%%script node\n", 123 | "// Run node in Jupyter Notebook\n", 124 | "\n", 125 | "// If-else statement\n", 126 | "let num = 10;\n", 127 | "\n", 128 | "if (num > 0) {\n", 129 | " console.log(\"The number is positive.\");\n", 130 | "} else if (num < 0) {\n", 131 | " console.log(\"The number is negative.\");\n", 132 | "} else {\n", 133 | " console.log(\"The number is zero.\");\n", 134 | "}" 135 | ] 136 | }, 137 | { 138 | "cell_type": "code", 139 | "execution_count": null, 140 | "metadata": { 141 | "vscode": { 142 | "languageId": "javascript" 143 | } 144 | }, 145 | "outputs": [ 146 | { 147 | "name": "stdout", 148 | "output_type": "stream", 149 | "text": [ 150 | "Iteration: 0\n", 151 | "Iteration: 1\n", 152 | "Iteration: 2\n", 153 | "Iteration: 3\n", 154 | "Iteration: 4\n" 155 | ] 156 | } 157 | ], 158 | "source": [ 159 | "%%script node\n", 160 | "// Run node in Jupyter Notebook\n", 161 | "\n", 162 | "// For loop\n", 163 | "for (let i = 0; i < 5; i++) {\n", 164 | " console.log(\"Iteration: \" + i);\n", 165 | "}" 166 | ] 167 | }, 168 | { 169 | "cell_type": "markdown", 170 | "metadata": {}, 171 | "source": [ 172 | "### Document Object Model (DOM)\n", 173 | "\n", 174 | "JavaScript can work its magic on the Document Object Model (DOM) to breathe life into your web pages. With the power of DOM manipulation, you can seamlessly transform static web content into dynamic and interactive experiences, making your website truly come alive! 🚀\n" 175 | ] 176 | }, 177 | { 178 | "cell_type": "code", 179 | "execution_count": null, 180 | "metadata": { 181 | "vscode": { 182 | "languageId": "html" 183 | } 184 | }, 185 | "outputs": [], 186 | "source": [ 187 | "\n", 188 | "\n", 189 | " \n", 190 | " \n", 199 | " \n", 200 | " \n", 201 | "

Click to Change Background Color

\n", 202 | "\n", 203 | " \n", 204 | "\n", 205 | " \n", 227 | " \n", 228 | "\n" 229 | ] 230 | }, 231 | { 232 | "cell_type": "markdown", 233 | "metadata": {}, 234 | "source": [ 235 | "## Conclusion\n", 236 | "\n", 237 | "This overview provides a glimpse into the essential components and functionalities of JavaScript. As you continue your journey, explore more complex concepts, such as object-oriented programming, asynchronous operations, and popular libraries like React.js and Node.js, to enhance your web development skills.\n", 238 | "\n", 239 | "Happy coding!\n" 240 | ] 241 | } 242 | ], 243 | "metadata": { 244 | "kernelspec": { 245 | "display_name": "Python 3", 246 | "language": "python", 247 | "name": "python3" 248 | }, 249 | "language_info": { 250 | "codemirror_mode": { 251 | "name": "ipython", 252 | "version": 3 253 | }, 254 | "file_extension": ".py", 255 | "mimetype": "text/x-python", 256 | "name": "python", 257 | "nbconvert_exporter": "python", 258 | "pygments_lexer": "ipython3", 259 | "version": "3.12.0" 260 | } 261 | }, 262 | "nbformat": 4, 263 | "nbformat_minor": 2 264 | } 265 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | --------------------------------------------------------------------------------