├── nodejs_2.png ├── genai_1_stage_3.png ├── genai_1_stage_4.png ├── Resources.MD ├── assignment_genai_1_stage2.png ├── assignments ├── zerodha_components.png ├── NodeJS_3.MD ├── Assignment.log ├── NodeJS_1A.MD ├── JS_Problems_1.MD ├── Express_3.MD ├── Express_2.MD ├── EDA_1.MD ├── NodeJS_2.MD ├── Express_4.MD ├── Applied_JS.MD ├── GenAI_1.MD ├── HTML_2.MD ├── JS_Conceptual_Problems.MD └── NodeJS_4_5.MD ├── .gitignore ├── .github └── pull_request_template.MD ├── LICENSE ├── Image_Classification.MD ├── Capstone_Project ├── dsa_js.MD ├── submissions ├── surprise_test_1b.MD ├── Student_Info.MD ├── expressjs │ ├── assignment4.MD │ ├── assignment5.MD │ ├── assignment1.MD │ ├── assignment3.MD │ └── assignment2.MD ├── surprise_test_1.MD ├── js │ ├── task_10.MD │ ├── task_9.MD │ ├── task_1_2.MD │ ├── task_5_6.MD │ └── task_3_4.MD ├── reactjs │ ├── assignment8.MD │ ├── assignment7.MD │ ├── assignment6.MD │ ├── assignment9.MD │ ├── assignment5.MD │ ├── assignment3.MD │ └── assignment4.MD ├── GenAI │ ├── task_1.MD │ ├── task_4.MD │ ├── task_2.MD │ └── task_3.MD └── nodejs │ ├── assignment3.MD │ ├── assignment1.MD │ ├── assignment5.MD │ └── assignment4.MD ├── CODE_OF_CONDUCT.md └── README.md /nodejs_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunstrike-spec/Full-stack/HEAD/nodejs_2.png -------------------------------------------------------------------------------- /genai_1_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunstrike-spec/Full-stack/HEAD/genai_1_stage_3.png -------------------------------------------------------------------------------- /genai_1_stage_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunstrike-spec/Full-stack/HEAD/genai_1_stage_4.png -------------------------------------------------------------------------------- /Resources.MD: -------------------------------------------------------------------------------- 1 | Quick Documentation 2 | 3 | - MkDocs 4 | 5 | - Astro 6 | - FastHTML 7 | 8 | - Docusaurus 9 | -------------------------------------------------------------------------------- /assignment_genai_1_stage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunstrike-spec/Full-stack/HEAD/assignment_genai_1_stage2.png -------------------------------------------------------------------------------- /assignments/zerodha_components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunstrike-spec/Full-stack/HEAD/assignments/zerodha_components.png -------------------------------------------------------------------------------- /assignments/NodeJS_3.MD: -------------------------------------------------------------------------------- 1 | ![](https://github.com/smaranjitghose/Full_Stack_Bootcamp/blob/a0c79facc37e4317f09db03c2ed7fe12d44f14aa/nodejs_2.png) 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # VS Code specific 2 | .vscode/ 3 | .git/ 4 | node_modules/ 5 | npm-debug.log* 6 | yarn-debug.log* 7 | yarn-error.log* 8 | 9 | # Live Server specific 10 | .history/ 11 | -------------------------------------------------------------------------------- /.github/pull_request_template.MD: -------------------------------------------------------------------------------- 1 | For # 2 | 3 | # 📋 Description 4 | [Describe what changes you made to complete the assignment] 5 | 6 | # 📸 Screenshots 7 | [Add screenshots showing your implementation] 8 | 9 | [//]: # "Note: Remove the line comments and add your actual links to the submission table in the markdown file" -------------------------------------------------------------------------------- /assignments/Assignment.log: -------------------------------------------------------------------------------- 1 | Express 2 | 3 | 25 - URL Shortner 4 | 26 - Cookie 5 | 27 - Session 6 | 28 - Auth 7 | 29 - Mongo 8 | 30 - SQL 9 | 10 | React 11 | 12 | - (Basics - A+ Impact) : 31-45 13 | - (Intermediate) : 46-60 14 | 15 | 16 | React Dedicated 17 | - Small: 30 18 | - Dedicated: 15 19 | 20 | 21 | SQL 22 | 23 | Mongo 24 | 25 | Bun + Hono 26 | 27 | JS 28 | 29 | Advanced JS 30 | 31 | VCS 32 | 33 | 34 | (re) 35 | - HTML 36 | - CSS 37 | - Tawilinf 38 | 39 | -------------------------------------------------------------------------------- /assignments/NodeJS_1A.MD: -------------------------------------------------------------------------------- 1 | - Create a file `index.js` 2 | - Perform the following operations using `fs` module of NodeJS 3 | 4 | **Note**: Each operation should be perfomed synchronously as well as asynchronously. 5 | Take screenshots too for the PR 6 | 7 | 1. Create a folder `space_project` 8 | ``` 9 | 10 | ``` 11 | 2. Inside the folder, create a file `log.txt` and add the line _"ISRO is planning Gaganyaan mission, ie an Indian crewed orbital spacecraft."_ 12 | ``` 13 | 14 | ``` 15 | 3. Now, replace the line in the `log.txt` file with _"ISRO has started working on Gaganyaan."_ 16 | ``` 17 | 18 | ``` 19 | 4. Append another line to the `log.txt` file _" The current Aditya-L1 team of scientists is mentoring new talent for working on the Gaganyaan mission."_ 20 | ``` 21 | 22 | ``` 23 | 5. Rename the `log.txt` file to `update.txt` 24 | ``` 25 | 26 | ``` 27 | 6. Read the `update.txt` file and display the data. Additionally print a line _"We are excited"_ using `console.log()` after the read operation 28 | ``` 29 | 30 | ``` 31 | 7. Delete the file `update.txt` 32 | ``` 33 | 34 | ``` 35 | 8. Delete the folder `space_project` 36 | ``` 37 | 38 | ``` 39 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Smaranjit Ghose 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /assignments/JS_Problems_1.MD: -------------------------------------------------------------------------------- 1 | Solve the following using JavaScript 2 | 3 | 1. Write a program to check is a given number is 4 | - even or odd 5 | - positive, negative or zero 6 | 2. Write a program to calculate the sum of the first N natural numbers 7 | 3. Write a program to calculate the factorial of a given number 8 | 4. Write a program to find factors of a given number 9 | 5. Write a program to check if an input number is prime or not 10 | 6. Write a program to generate the Fibonacci sequence up to a given number of terms 11 | 7. Write a program to check if an input string is a palindrome 12 | 8. Write a program to find the sum of digits of an input number 13 | 9. Write a program to check if an input number is an Armstrong number 14 | 10. Write a program to check if an input year is a leap year 15 | 11. Write a program to find the greatest common divisor (GCD) of two input numbers 16 | 12. Write a program to find the least common multiple (LCM) of two input numbers 17 | 13. Write a program to check two strings are anagrams 18 | 19 | 20 | - [Check if Numbers are Ascending in a Sentence](https://leetcode.com/problems/check-if-numbers-are-ascending-in-a-sentence/) 21 | - [Missing Number](https://leetcode.com/problems/missing-number/description/) 22 | -------------------------------------------------------------------------------- /Image_Classification.MD: -------------------------------------------------------------------------------- 1 | 2 | - Problem: Classification of fruit images 3 | - Source: URL 4 | - Classes: 5 | 1. Cherry - 24 images 6 | 2. Banana - 30 images 7 | 8 | 9 | 10 | --- 11 | 12 | HTML 13 | 14 | ``` 15 | 16 | 17 | 18 | Image Classification 19 | 20 | 21 | 22 | 23 |

Image Classification

24 |
Scanning ...
25 | 26 | 27 | 28 | 29 | 30 | ``` 31 | 32 | Script 33 | 34 | ``` 35 | let classifier; 36 | let img; 37 | 38 | classifier = ml5.imageClassifier("MobileNet"); 39 | img = document.getElementById("myImage"); 40 | classifier.classify(img, gotResult); 41 | 42 | function gotResult(results) { 43 | // Display the results 44 | console.log(results) 45 | let label = results[0].label; 46 | let confidence = (results[0].confidence * 100).toFixed(2); 47 | document.getElementById("myResult").innerHTML = label + "
Confidence: " + confidence + "%"; 48 | } 49 | ``` 50 | 51 | 52 | -------------------------------------------------------------------------------- /assignments/Express_3.MD: -------------------------------------------------------------------------------- 1 |

ExpressJS 3

2 | 3 | - For this endeavor, continue with the GlowDerma project. 4 | - Open VS Code inside the project directory. 5 | - Inside the `index.js` file, perform the following: 6 | 7 | 1. Create a global middleware that logs all incoming HTTP requests to all the routes and prints it on the terminal in the format `DATETIME | HTTP METHOD | PATH` 8 | 9 | ``` 10 | 11 | ``` 12 | 13 | 2. Create a middleware that handles HTTP requests to all undefined routes and returns a message `We don't have this page yet!` with a status code 404 14 | 15 | ``` 16 | 17 | ``` 18 | 19 | 3. Create a middleware that handles all server errors, prints the error to the terminal and returns a mesage `Sorry! Something went wrong` with a Status Code 500 20 | 21 | ``` 22 | 23 | ``` 24 | 25 | 4. a) Create a sub-directory called `public` at the root level of the project directory 26 | 27 | b) Download the referenced [image](https://github.com/smaranjitghose/ParulUniversityMEAN/blob/main/practice_problems/datasets/static_file_demo.png) 28 | 29 | c) Place the downloaded image inside the `public` sub-directory' 30 | 31 | d) Now, creae a middleware that serves the image from the sub-directory `public` while being accessed from a virtual path `assets` 32 | 33 | ``` 34 | 35 | 36 | ``` 37 | -------------------------------------------------------------------------------- /assignments/Express_2.MD: -------------------------------------------------------------------------------- 1 | # Express 2 2 | 3 | ### 1. GlowDerma Project 4 | Open index.js for modifications 5 | 6 | ### 2. Orders Array 7 | ```javascript 8 | [ 9 | { id: 1, product: 'Anti-Aging Serum', quantity: 2 }, 10 | { id: 2, product: 'Vitamin C Moisturizer', quantity: 1 }, 11 | { id: 3, product: 'Hyaluronic Acid', quantity: 3 } 12 | ] 13 | ``` 14 | 15 | ### 3. /orders/:orderID Route 16 | Create GET handler that: 17 | - Uses orderID parameter 18 | - Returns matching order (Status 200) 19 | - Returns "Order Not Found" for no match (Status 404) 20 | 21 | ### 4. Products Array 22 | ```javascript 23 | [ 24 | { id: 11, name: "Retinol Serum", price: 1200, availableQty: 50 }, 25 | { id: 12, name: "Niacinamide Solution", price: 800, availableQty: 30 }, 26 | { id: 14, name: "Peptide Moisturizer", price: 1500, availableQty: 100 }, 27 | { id: 15, name: "Glycolic Acid Toner", price: 900, availableQty: 20 } 28 | ] 29 | ``` 30 | 31 | ### 5. /products Route 32 | Create GET handler that filters by: 33 | - No parameters: Return full list 34 | - name parameter (Example: name=Retinol) 35 | - maxPrice parameter (Example: maxPrice=1000) 36 | - Both parameters combined 37 | 38 | ### 6. Shopping Cart 39 | Initialize empty `shoppingCart` array 40 | 41 | ### 7. /cart Route 42 | Create handlers: 43 | - GET: Return cart contents 44 | - POST: 45 | - Process JSON body (id, name, price, qty) 46 | - Add item if all fields present 47 | - Return error if fields missing (Status 400) 48 | 49 | 50 | ### 8. Postman Pre-request Script 51 | Using Postman, create a custom Pre-request Script that: 52 | 53 | - Defines an array of product names. 54 | - Randomly selects a product name from the array. 55 | - Sets the selected product name as an environment variable (randomITEMName). 56 | - Uses the environment variable in the /cart POST request body to dynamically populate the name field. 57 | -------------------------------------------------------------------------------- /assignments/EDA_1.MD: -------------------------------------------------------------------------------- 1 | # Analytical Questions for Titanic Dataset Analysis 2 | 3 | ## Basic Demographics and Survival 4 | 1. What was the overall survival rate of passengers on the Titanic? 5 | 2. How were passengers distributed across different classes (1st, 2nd, and 3rd)? 6 | 3. What were the survival rates for males versus females? 7 | 4. How did survival rates vary across different passenger classes? 8 | 5. What was the age distribution of passengers (children, teens, young adults, adults, seniors)? 9 | 10 | ## Economic Analysis 11 | 6. How were ticket fares distributed across different passenger classes? What were the average, minimum, and maximum fares per class? 12 | 7. How did family size correlate with survival rates? Were larger or smaller family groups more likely to survive? 13 | 8. What were the survival rates for passengers embarking from different ports (Southampton, Cherbourg, Queenstown)? 14 | 9. Did having a cabin assignment (versus no cabin information) affect survival chances? 15 | 10. How did ticket fares correlate with survival rates? Were passengers with more expensive tickets more likely to survive? 16 | 17 | ## Social and Demographic Patterns 18 | 11. What was the average age of passengers in different classes? 19 | 12. Did families tend to survive or perish together? What percentage of families had mixed fates? 20 | 13. How did survival rates vary when considering both gender and passenger class together? 21 | 14. How did age affect survival differently for males and females? 22 | 15. What were the survival rates across different fare ranges (low, medium, high)? 23 | 24 | ## Travel and Location Patterns 25 | 16. What were the survival rates for solo travelers versus those traveling with family? 26 | 17. How were passenger classes distributed across different ports of embarkation? 27 | 18. What was the survival rate for children (under 12) across different passenger classes? 28 | 19. How did ticket fares per person vary with family size? 29 | 20. What were the survival rates across different decks (based on cabin assignments)? 30 | -------------------------------------------------------------------------------- /assignments/NodeJS_2.MD: -------------------------------------------------------------------------------- 1 | # NodeJS 2 2 | 3 | ## Problem Statement 4 | Create a simple command-line Todo List application using Node.js. The application should store tasks in a text file and provide basic task management functionality. 5 | 6 | ### Requirements: 7 | 8 | 1. **File Storage** 9 | - Use the Node.js `fs` module for file operations 10 | - Store todos in a text file named `todos.txt` 11 | - Create the file automatically if it doesn't exist 12 | 13 | 2. **Commands** 14 | The application should support these commands: 15 | ```bash 16 | node todo.js add # Add a new task 17 | node todo.js list # Display all tasks 18 | node todo.js delete # Delete a task by its number 19 | ``` 20 | 21 | 3. **Core Features** 22 | - `add`: Append a new task to the file 23 | - `list`: Display numbered tasks from the file 24 | - `delete`: Remove a specific task by its number 25 | - Show usage instructions if no valid command is provided 26 | 27 | 4. **Error Handling** 28 | - Handle missing task descriptions for `add` command 29 | - Handle invalid numbers for `delete` command 30 | - Handle empty todo list cases 31 | - Handle file read/write errors 32 | 33 | ### Example Usage: 34 | ```bash 35 | $ node todo.js add Buy groceries 36 | Todo added! 37 | 38 | $ node todo.js add Call dentist 39 | Todo added! 40 | 41 | $ node todo.js list 42 | 1. Buy groceries 43 | 2. Call dentist 44 | 45 | $ node todo.js delete 1 46 | Todo deleted! 47 | 48 | $ node todo.js list 49 | 1. Call dentist 50 | ``` 51 | 52 | ### Technical Requirements: 53 | - Use only the built-in `fs` module 54 | - Use synchronous file operations (fs.readFileSync, fs.writeFileSync, etc.) 55 | - Use `process.argv` for command-line argument parsing 56 | - Implement using switch-case for command handling 57 | 58 | ### Constraints: 59 | - Do not use any external npm packages 60 | - Do not use promises or async/await 61 | - Do not create any GUI/web interface 62 | 63 | 64 | ### Bonus Challenges: 65 | 1. Add a `mark` command to mark tasks as complete 66 | 2. Add a `clear` command to delete all tasks 67 | 3. Add basic input validation (e.g., prevent empty tasks) 68 | -------------------------------------------------------------------------------- /Capstone_Project: -------------------------------------------------------------------------------- 1 | # 🚀 MERN Stack Capstone Project Guidelines 2 | 3 | ## 📋 Overview 4 | The capstone project is a culmination of your Full stack bootcamp journey. You'll build a fully functional SaaS (Software as a Service) application that demonstrates your proficiency in both frontend and backend development. 5 | 6 | ## 💡 Suggested Project Ideas 7 | 1. 🎫 Ticket Booking Platform (like BookMyShow) 8 | - Event listing and discovery 9 | - Seat selection system 10 | - Payment processing 11 | - QR code ticket generation 12 | - Event analytics dashboard 13 | 14 | 2. 📝 Note-Taking Workspace (like Notion) 15 | - Rich text editor 16 | - Collaborative editing 17 | - Template system 18 | - File embedding 19 | - Database views 20 | 21 | 3. 🎥 Video Recording Platform (like Loom) 22 | - Screen recording 23 | - Video hosting 24 | - Custom video player 25 | - Team sharing capabilities 26 | - Analytics dashboard 27 | 28 | 4. 💾 Cloud Storage Solution (like Google Drive) 29 | - File upload/download 30 | - Folder organization 31 | - File sharing 32 | - Search functionality 33 | - Storage management 34 | 35 | 5. 💬 Testimonial Platform (like testimonial.to) 36 | - Testimonial collection 37 | - Custom styling options 38 | - Widget generation 39 | - Embed code generation 40 | - Analytics dashboard 41 | 42 | 6. ✅ Task Management Platform (like ClickUp) 43 | - Multiple view options (list, board, calendar) 44 | - Team collaboration 45 | - Time tracking 46 | - Custom workflows 47 | - Reporting dashboard 48 | 49 | 7. 🔗 Link Management Platform (like LinkTree) 50 | - Custom link pages 51 | - Analytics tracking 52 | - Theme customization 53 | - Social media integration 54 | - Traffic insights 55 | 56 | ## ❌ Projects to Avoid 57 | These projects are often overused and may not showcase your full potential: 58 | 59 | 1. Basic Chat Applications 60 | - Limited technical complexity 61 | - Overdone in portfolios 62 | 63 | 2. Currency/Crypto Converters 64 | - Simple API integration 65 | - Limited feature scope 66 | 67 | 3. Generic E-Commerce Platforms 68 | - Common implementation 69 | - Oversaturated idea 70 | 71 | 4. Social Media Clones 72 | - Too broad in scope 73 | - Hard to implement well 74 | 75 | 5. URL Shorteners 76 | - Limited functionality 77 | - Basic database operations 78 | 79 | 6. Simple ToDo Apps 80 | - Too basic 81 | - Limited learning outcome 82 | 83 | ## ✨ Evaluation Criteria 84 | - Technical implementation: code quality, feature completeness, security 85 | - User experience: design, responsiveness, navigation 86 | - Project documentation and organization 87 | - Innovation and creativity in solution 88 | 89 | ## 📌 Final Notes 90 | - Start early and plan thoroughly 91 | - Commit regularly 92 | - Test extensively 93 | - Document as you go 94 | - Focus on core functionality first 95 | - Ask for help when needed 96 | - Keep security in mind 97 | - Deploy early and often 98 | -------------------------------------------------------------------------------- /assignments/Express_4.MD: -------------------------------------------------------------------------------- 1 |

Express 4

2 | 3 | Continue with the GlowDerma project and implement the following routes using Handlebars: 4 | 5 | 1. Doctors Page ("/doctors") 6 | - Create a simple HTML page showing a heading "Our Expert Doctors" 7 | - Include a paragraph about the clinic's medical expertise 8 | - Serve this static content using Handlebars template engine 9 | - The page should use the main layout file 10 | 11 | 2. Services Page ("/services") 12 | - Create a route that accepts a query parameter 'category' 13 | - Display the category name as a heading on the page 14 | - Example: /services?category=Dermatology should display "Dermatology Services" as heading 15 | - Style the heading appropriately 16 | 17 | 3. Appointments ("/book-appointment") 18 | - Create a route that handles POST requests 19 | - Accept the following JSON data in request body: 20 | ```json 21 | { 22 | "name": "Patient Name", 23 | "email": "email@example.com", 24 | "service": "Service Name", 25 | "preferredDate": "2024-01-24", 26 | "preferredTime": "10:00 AM" 27 | } 28 | ``` 29 | - Display this appointment data in a formatted card on the page 30 | 31 | 4. Offerings ("/offerings") 32 | - Create a route that passes the following JSON data to the template: 33 | ```json 34 | { 35 | "offerings": [ 36 | { 37 | "name": "Anti-Aging Treatment", 38 | "price": 5000, 39 | "duration": "60 mins", 40 | "description": "Advanced treatment to reduce fine lines and wrinkles", 41 | "available": true 42 | }, 43 | { 44 | "name": "Acne Treatment", 45 | "price": 3000, 46 | "duration": "45 mins", 47 | "description": "Specialized treatment for acne-prone skin", 48 | "available": true 49 | }, 50 | { 51 | "name": "Chemical Peel", 52 | "price": 4000, 53 | "duration": "30 mins", 54 | "description": "Skin resurfacing treatment for even tone", 55 | "available": false 56 | } 57 | ] 58 | } 59 | ``` 60 | - Use #each helper to create offering cards 61 | - Each card should display all offering details 62 | - Add conditional styling for unavailable treatments 63 | 64 | 5. Testimonials ("/testimonials") 65 | - Pass an array of testimonial objects containing: 66 | ```json 67 | { 68 | "testimonials": [ 69 | { 70 | "name": "John Doe", 71 | "rating": 5, 72 | "comment": "Excellent service!", 73 | "date": "2024-01-20" 74 | }, 75 | { 76 | "name": "Jane Smith", 77 | "rating": 4, 78 | "comment": "Very professional staff", 79 | "date": "2024-01-18" 80 | } 81 | ] 82 | } 83 | ``` 84 | - Create a grid of testimonial cards using #each helper 85 | - Display star rating using conditional helpers 86 | - Format the date to be more readable 87 | -------------------------------------------------------------------------------- /assignments/Applied_JS.MD: -------------------------------------------------------------------------------- 1 | # Functions 2 | 3 | ### Task 1: Using Array Methods 4 | 5 | Write a function squareNumbers(arr) using map() and arrow functions 6 | 7 | 8 | ### Task 2: Custom Filter Function 9 | 10 | Create a function filterEvenNumbers(arr) using filter() and arrow functions 11 | 12 | 13 | ### Task 3: Sum of Positive Numbers 14 | 15 | Write a function sumPositiveNumbers(arr) that takes an array of numbers and returns the sum of all positive numbers using filter() and reduce() with arrow functions 16 | 17 | 18 | 19 | ### Task 4: Transform Array of Objects 20 | 21 | Write a function getNames(arr) that takes an array of objects where each object has a name property, and returns an array of just the names using map() and arrow functions 22 | 23 | 24 | ### Task 5: Find the Longest Word 25 | 26 | Write a function findLongestWord(arr) that takes an array of strings and returns the longest word using reduce() and an arrow function 27 | 28 | --- 29 | # Prototypes and Object Oriented Programming 30 | 31 | ### Task 1 32 | 33 | - Create a constructor function Animal that has a method speak() that return 'Animal speaking'. 34 | - Then create another constructor Dog that inherits from Animal using prototypes. 35 | - The Dog constructor should add a method bark() that returns 'Woof!'. Demonstrate the prototype chain between Dog and Animal. 36 | 37 | 38 | ### Task 2 39 | 40 | i): Create a Functional Constructor 41 | 42 | Create a functional constructor Person that takes name and age as parameters. Add a method greet() to the constructor that returns "Hello, my name is [name]". 43 | 44 | 45 | 46 | ii): Handle Errors 47 | 48 | Modify the Person constructor to throw an error if the age is not a positive number. 49 | 50 | 51 | ### Task 3 52 | 53 | 54 | i): Class Inheritance 55 | 56 | Create a class Vehicle with properties make and model, and a method getDetails() that returns a string "Make: [make], Model: [model]". Create a subclass Car that extends Vehicle and adds a method startEngine() that returns "Engine started". 57 | 58 | ii): Method Overriding in Inheritance 59 | 60 | Extend the Vehicle class from the previous task to include a method move() that returns "The vehicle is moving". Then, override the move() method in the Car class to return "The car is driving". 61 | 62 | 63 | iii): Static Methods in Classes 64 | 65 | Add a static method isVehicle(obj) to the Vehicle class that checks if a given object is an instance of Vehicle. The method should return true if the object is a Vehicle or a subclass of Vehicle, and false otherwise. 66 | 67 | 68 | ### Task 4 69 | 70 | i): Encapsulation Using Getters and Setters 71 | 72 | Create a class BankAccount with a private property _balance. Add methods deposit(amount) and withdraw(amount). Use getters and setters to access and modify the _balance while ensuring the balance never goes negative. 73 | 74 | 75 | ii): Polymorphism with Method Overriding 76 | 77 | Create a class Shape with a method area() that returns 0. Create two subclasses Circle and Rectangle that override the area() method to calculate the area of a circle and a rectangle, respectively. 78 | 79 | -------------------------------------------------------------------------------- /dsa_js.MD: -------------------------------------------------------------------------------- 1 | # 🗺️ DSA with JavaScript Roadmap 2 | 3 | ## 1. 🧮 Basic Mathematical Problems 4 | - Number Theory Basics 5 | - GCD and LCM 6 | - Prime Numbers 7 | - Modular Arithmetic 8 | - Basic Combinatorics 9 | 10 | ## 2. 🔄 Overview of Recursion 11 | - Introduction to Recursion 12 | - Base Cases and Recursive Cases 13 | - Call Stack Understanding 14 | - Recursive vs Iterative Solutions 15 | - Memory Usage in Recursion 16 | 17 | ## 3. ⏱️ Time and Space Complexity 18 | - Big O Notation 19 | - Time Complexity Analysis 20 | - Space Complexity Analysis 21 | - Best, Average, and Worst Cases 22 | - Common Complexity Classes 23 | 24 | ## 4. 📊 Arrays 25 | - Array Operations and Methods 26 | - Array Manipulation Techniques 27 | - Two Pointer Technique 28 | - Sliding Window 29 | - Prefix Sum 30 | - String Manipulation (Arrays of Characters) 31 | 32 | ## 5. 🔍 Searching 33 | - Linear Search 34 | - Binary Search 35 | - Ternary Search 36 | - Jump Search 37 | - Exponential Search 38 | - Search Space Reduction 39 | 40 | ## 6. 📶 Sorting 41 | - Bubble Sort 42 | - Selection Sort 43 | - Insertion Sort 44 | - Merge Sort 45 | - Quick Sort 46 | - Heap Sort 47 | - Counting Sort 48 | - Radix Sort 49 | 50 | ## 7. 🔁 Recursion: Deep Dive + Backtracking 51 | - Advanced Recursive Patterns 52 | - Divide and Conquer 53 | - Backtracking Fundamentals 54 | - State Space Tree 55 | - Pruning in Backtracking 56 | - Common Backtracking Problems 57 | 58 | ## 8. ⛓️ LinkedList 59 | - Singly Linked Lists 60 | - Doubly Linked Lists 61 | - Circular Linked Lists 62 | - Floyd's Cycle Detection 63 | - Two Pointer Problems 64 | - LinkedList Operations 65 | 66 | ## 9. 📚 Stacks + Queues 67 | - Stack Implementation 68 | - Queue Implementation 69 | - Circular Queue 70 | - Deque (Double Ended Queue) 71 | - Priority Queue Basics 72 | - Common Stack/Queue Problems 73 | 74 | ## 10. 🌳 Trees 75 | - Tree Terminology 76 | - Binary Trees 77 | - Tree Traversals (Pre/In/Post-order) 78 | - Level Order Traversal 79 | - Binary Tree Properties 80 | - Tree Construction 81 | 82 | ## 11. 🔰 Binary Search Trees 83 | - BST Properties 84 | - BST Operations 85 | - BST Traversal 86 | - Balanced BSTs 87 | - AVL Trees 88 | - Red-Black Trees 89 | 90 | ## 12. 🗃️ Hashmaps 91 | - Hash Function Design 92 | - Collision Resolution 93 | - Map and Set in JavaScript 94 | - HashMap Implementation 95 | - Common HashMap Problems 96 | - Collision Handling Strategies 97 | 98 | ## 13. ⚡ Priority Queues 99 | - Heap Properties 100 | - Min Heap and Max Heap 101 | - Heap Operations 102 | - Heapify Process 103 | - Priority Queue Implementation 104 | - Heap Sort Connection 105 | 106 | ## 14. 🎯 Greedy Algorithms 107 | - Greedy Strategy 108 | - Activity Selection 109 | - Fractional Knapsack 110 | - Huffman Coding 111 | - Common Greedy Problems 112 | 113 | ## 15. 🕸️ Graphs 114 | - Graph Terminology 115 | - Graph Representation 116 | - Graph Traversal (DFS, BFS) 117 | - Shortest Path Algorithms 118 | - Minimum Spanning Trees 119 | - Topological Sort 120 | - Union Find 121 | 122 | ## 16. 🎮 Dynamic Programming 123 | - Memoization 124 | - Tabulation 125 | - State and Transition 126 | - Common DP Patterns 127 | - Optimization Problems 128 | - Subproblems and Overlapping 129 | 130 | ## 17. 📖 Tries 131 | - Trie Data Structure 132 | - Trie Implementation 133 | - Insert and Search Operations 134 | - Prefix Search 135 | - Word Dictionary 136 | - Auto-Complete Implementation -------------------------------------------------------------------------------- /assignments/GenAI_1.MD: -------------------------------------------------------------------------------- 1 | # 📄 Project 1: JS Based Personal LLM 2 | 3 | ## Stage 1 4 | 5 | ### 📝 Description 6 | Create JavaScript application that interacts with a local LLaMA 3.2 model through Ollama to generate responses to prompts. Your application should be able to send text prompts and receive AI-generated responses. 7 | 8 | --- 9 | 10 | ## ✅ Core Requirements 11 | 12 | ### 1. Model Setup: 13 | * Have Ollama installed and running locally 14 | * Pull LLaMA 3.2 model using Ollama 15 | * Verify model availability 16 | 17 | ### 2. Application Features: 18 | * Node.js application setup 19 | * Ollama package integration 20 | * Prompt message configuration 21 | * Response handling and display 22 | 23 | ### 3. Functionality: 24 | * Send a single prompt to model 25 | * Receive generated response 26 | * Display formatted output 27 | * Basic error handling 28 | 29 | --- 30 | 31 | ## 🚀 Example Tasks to Test 32 | 33 | ### Professional Writing: 34 | * Generate a resignation letter 35 | * Write a job application email 36 | * Create a project proposal 37 | 38 | ### Creative Writing: 39 | * Write a short story plot 40 | * Generate a poem about nature 41 | * Create character descriptions 42 | 43 | ### Technical Content: 44 | * Write code documentation 45 | * Create API documentation 46 | * Write a bug report 47 | 48 | ### Academic Writing: 49 | * Generate a research abstract 50 | * Create a thesis statement 51 | * Write an article summary 52 | 53 | ### Marketing Content: 54 | * Write product descriptions 55 | * Create social media posts 56 | * Generate marketing emails 57 | 58 | --- 59 | 60 | ## 📜 Document your responses! 61 | 62 | 1. Add a README.MD File 63 | 64 | 2. The following should be added in the README: 65 | 66 | a) Project Title - Must include "JS Based Personal LLM" as H1 67 | 68 | b) Setup Instructions - Include steps for: 69 | * Repository cloning 70 | * Dependencies installation 71 | * Application execution 72 | 73 | c) Test Results: 74 | Create a table with columns: 75 | * Category 76 | * Prompt 77 | * Model Response 78 | 79 | Include at least one test from each category with actual model responses. 80 | 81 | --- 82 | 83 | ## 📚 Add git and make it official 84 | 85 | 1. Initialize Git: 86 | ```bash 87 | git init 88 | git branch -M main 89 | ``` 90 | 91 | 2. Stage and Commit: 92 | ```bash 93 | git add . 94 | git commit -m "v0.0.1" 95 | ``` 96 | 97 | 3. Create GitHub Repository: 98 | * Create a new repository named "OpenTalkJS" 99 | * Initialize without README 100 | * Copy the repository URL 101 | 102 | 4. Push to GitHub: 103 | ```bash 104 | git remote add origin 105 | git push -u origin main 106 | ``` 107 | 108 | 109 | ## Stage 2 110 | 111 | - Create a file `q.txt` and paste any of the questions mentioned above 112 | - Modify the `script.js` to read and parse the question from `q.txt` using the `fs` module 113 | - Pass the question to the local llm via ollama and get a response 114 | - Instead of storing the response, store it in a file called `a.txt` in the root of the project diretory 115 | - Stage Your Changes 116 | - Commit with the message "v0.0.2" 117 | - Push your changes to GitHub 118 | - Make appropriate changes to your README to update the usage instructions (if neeeded) 119 | 120 | ![](https://github.com/smaranjitghose/Full_Stack_Bootcamp/blob/3142f43bf73f3a70a78e1f5bb1ebedd1089c0fc8/assignment_genai_1_stage2.png) 121 | 122 | ## Stage 3 123 | 124 | ![](https://github.com/smaranjitghose/Full_Stack_Bootcamp/blob/6dced3f84819c92f7f05411878061a7f96ca5c20/genai_1_stage_3.png) 125 | 126 | ## Stage 4 127 | 128 | ![](https://github.com/smaranjitghose/Full_Stack_Bootcamp/blob/64d66ec36c065f6c639524a885d45e62ff931db4/genai_1_stage_4.png) 129 | 130 | -------------------------------------------------------------------------------- /assignments/HTML_2.MD: -------------------------------------------------------------------------------- 1 | # HTML Portfolio Project Assignment 2 | 3 | ## Stage 1: Develop Portfolio 4 | 5 | ### Required Pages 6 | 1. Home (index.html) 7 | - Introduction section 8 | - Professional summary 9 | - Navigation menu to other pages 10 | - Profile picture (use placeholder if needed) 11 | 12 | 2. Projects (projects.html) 13 | - Table displaying at least 3 projects 14 | - Columns: Project Name, Description, Duration, Technologies Used 15 | - Each project should link to its details 16 | 17 | 3. Skills (skills.html) 18 | - Use nested tables to categorize skills 19 | - Include: Technical Skills, Soft Skills, Tools & Technologies 20 | 21 | 4. Contact (contact.html) 22 | - HTML form with following fields: 23 | - Name (required) 24 | - Email (required) 25 | - Subject (dropdown) 26 | - Message (textarea) 27 | - Submit button with hover effect 28 | - Include social media links 29 | - Add your professional email 30 | 31 | 5. Volunteering & Community (volunteering.html) 32 | - Table showing involvement in community initiatives 33 | - Columns: Initiative Name, Role, Duration, Impact 34 | - Suggested Technical Community Activities: 35 | - Local Code Club Mentor 36 | - Open Source Contributions 37 | - Tech Workshop Facilitator 38 | - Hackathon Organizer/Mentor 39 | - STEM Education Volunteer 40 | - Tech Conference Volunteer 41 | - Programming Study Group Leader 42 | - Technical Blog Writer 43 | - Virtual Coding Camp Instructor 44 | - Tech Support for Non-Profits 45 | - Each activity should include: 46 | - Description of your role 47 | - Skills utilized 48 | - Impact metrics (e.g., number of people helped, projects completed) 49 | - Links to relevant organizations or projects 50 | 51 | ## Stage 2: Add Version Control 52 | 53 | 1. Create GitHub Repository 54 | - Go to github.com 55 | - Click "New repository" 56 | - Name it "portfolio" 57 | - Make it public 58 | - Don't initialize with README 59 | - Copy the repository URL 60 | 61 | 2. Local Git Setup 62 | 63 | Step 1: Initialize Git Repository 64 | ```bash 65 | # Navigate to your project directory 66 | cd path/to/your/portfolio 67 | 68 | # Initialize git 69 | git init 70 | ``` 71 | 72 | Step 2: Create and Configure .gitignore 73 | ```bash 74 | # Create .gitignore file 75 | touch .gitignore 76 | 77 | # Open .gitignore and add the following lines: 78 | node_modules/ 79 | .DS_Store 80 | *.log 81 | ``` 82 | 83 | Step 3: Connect to Remote Repository 84 | ```bash 85 | # Add the remote repository 86 | git remote add origin https://github.com/yourusername/portfolio.git 87 | 88 | # Verify remote addition 89 | git remote -v 90 | ``` 91 | 92 | Step 4: Prepare and Stage Files 93 | ```bash 94 | # Check status of your files 95 | git status 96 | 97 | # Stage all files 98 | git add . 99 | 100 | # Verify staged files 101 | git status 102 | ``` 103 | 104 | Step 5: Commit Changes 105 | ```bash 106 | # Create initial commit 107 | git commit -m "Initial portfolio setup" 108 | ``` 109 | 110 | Step 6: Set Main Branch and Push 111 | ```bash 112 | # Set main as default branch 113 | git branch -M main 114 | 115 | # Push to GitHub 116 | git push -u origin main 117 | ``` 118 | 119 | ## Stage 3: Deploy 120 | 121 | - Sign up/Login to Vercel (vercel.com) 122 | - Click "Add New Project" 123 | - Choose "Import Git Repository" 124 | - Select your "portfolio" repository 125 | - Keep default configurations 126 | - Click "Deploy" 127 | - Wait for deployment to complete 128 | - Access your site via the provided Vercel URL 129 | -------------------------------------------------------------------------------- /submissions/surprise_test_1b.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | MongoDB Queries | 2 | |-----------------|-------------------|----------------| 3 | | Shubham Karvariya | 2203031080004 | [File](https://github.com/5hubhm/HTML/blob/main/Surprise_test_mongodb.txt)| 4 | | Ayush | 2203031080028 | | 5 | | Mansha Soni | 2203031080121 | | 6 | | Bhavin Parmar | 2203031080042 |[MongoDB](https://github.com/bhavinbvn/WDF_Test/blob/main/MongoDBSol.MD) | 7 | | Pranjal Pandey | 2203031080144 |https://docs.google.com/document/d/14AD7rmrFbAGJrmwOR3Voffbpg0Mzwdw1juSOdi_ruFY/edit?usp=sharing | 8 | | Ashish Yadav | 2203031080161 | [GoogleDoc](https://docs.google.com/document/d/1UXwYIJ2fKjHtKvONBZ0w9cWaAXyR6A7X_ySI-Mppong/edit?tab=t.0) | 9 | | Vinit Patel | 2203031080139 | https://docs.google.com/document/d/1SotZsglN79t0aLjcJfoDyQdEED4IKG6V_HJBGeNlaVw/edit?tab=t.0 | 10 | | Utsav Hirapra | 2203031080002 |https://docs.google.com/document/d/1-Uj6voVLxRIR4lmmFzHbOwwRLcztfJeDvTCxKyjsrKs/edit?tab=t.0 | 11 | | Meet Savadasbhai Sondarva | 2203031080146 | https://docs.google.com/document/d/1biiByq1w3rb0ZQvXdAJ6kqnefHPQRKljcvSnEfmZW9w/edit?tab=t.0| 12 | | Satyam | 2203031080232 | | 13 | | Vaishnavi Sagariya | 2203031080013 | https://docs.google.com/document/d/1LIkd7Bl7evvWXrtgSQ2k208EkD-o_R6fQI5MVHnUHvc/edit?tab=t.0| 14 | | Jenish Paghadal | 2203031080007 | [MongoDB Solution](https://github.com/ItsJESH/WDF_Test/blob/main/Mongo.MD) | 15 | | Umang Patel | 2203031080107 | | 16 | | Mann Solanki | 2203031080260 | | 17 | | Dhyan Patel | 2203031080216 | https://docs.google.com/document/d/1GmuYY_yYDdq7YCjoSbFNyRfdUvSuJQPJpsqZ3FpZHn4/edit?tab=t.0 | 18 | | Rajdeepsinh Dabhi | 2203031080069 |[MongoDbQueries](https://docs.google.com/document/d/17Y8ig6RYcxkRajiMueNvRKZMHMRDnjhPSpm5nMqPvTY/edit?usp=sharing) | 19 | | Ankit Kumar | 2203031080184 | | 20 | | Hardeep Ijardar | 2203031080031 | https://docs.google.com/document/d/1cwMr9WZIDNc7q9nv2LqMKa2A-NH6E7cHAjEEYJNHjmo/edit?usp=sharing | 21 | | Sahil Bharude | 2203031080235 | | 22 | | Aryan Vekariya | 2203031080125 |[Task](https://github.com/aaryanvekariya/Mongo_Assignment2/blob/master/QUARIES.txt)| 23 | | Sparsh Patel | 2203031080053 | | 24 | | Pratik Patel | 2203031080174 |[Google Docs](https://docs.google.com/document/d/1QKhdafNoTDdwjQ-A8fmqUn1GrPtyO1FpDJ7fDm0WxIA/edit?usp=sharing)| 25 | | Ravi Vira | 2203031080018 | | 26 | | Deep Menpara | 2203031080091 |https://docs.google.com/document/d/1Bq2zQUg9glIGSnf5T8Qmt71a3dxKqNePJZT7epynqxU/edit?usp=sharing | 27 | | Raj Patel | 2203031080105 | | 28 | | Darsh Kalani | 2203031080032 | | 29 | | Vignesh Gaddam | 2203031080131 | | 30 | | Vrushangi Mistry | 2203031080222 | | 31 | | Achal Ladani | 2203031080229 | | 32 | | Harsh Choudhary | 2203031080132 |[Google Doc](https://docs.google.com/document/d/18pf1GU97iJZ0qvOTSzphLMdqVgyUetVk6mQM0Tvsf2w/edit?tab=t.0) | 33 | | Jeet Dhake | 2303031087082 | | 34 | | Vishang Lad | 2203031080035 |https://docs.google.com/document/d/1LRBaRF6HbEFMEbys5nCuINF66FzM9BwteG40bqntpag/edit?usp=sharing | 35 | | Hani Vaghani | 2303031087088 |[Solution](https://docs.google.com/document/d/114rzw1HFr-VD7NRinutpMZz94vFLuU3eDcVe_QOBjZM/edit?tab=t.0)| 36 | | Harsh Surani | 2203031080123 | [Test-1B](https://2203031080123-surprise-test-1.netlify.app/html/hospital_queries) | 37 | | Yash Sakhareliya | 2203031080015 |[URL](https://docs.google.com/document/d/11EShezBVD343SWYaSZkZ84VuYvt_OH-0j3gcrRwEWOU/edit?usp=sharing) | 38 | | Meet Upendrakumar Patel | 2203031080011 | | 39 | | Vraj Mehta | 2303031087034 | | 40 | | Alisha Kaur | 2203031080202 | | 41 | | Pranav Faladu | 2303031087022 |https://github.com/PranavFaladu/test/blob/main/MONGODB.MD| 42 | | Bharvi Valand | 2303031087002 | [Queries](https://docs.google.com/document/d/1F8J7FCABSzy0I3-iEXzh6SOwnaAMOXah_6sqOuk6tSI/edit?usp=sharing) | 43 | | Neeti Darji | 2303031087080 |[Solution](https://docs.google.com/document/d/1cTJgcssqY9RmeWkXfjq3EWktfRLwHpEiRNEMmU3pKZM/edit?tab=t.0)| 44 | | Suhani Tandel | 2203031080160 | | 45 | | Rishabh Rai | 2203031080114 | | 46 | | Rutuja Waghchaure | 2303031087089 |https://docs.google.com/document/d/1loC4SaqyrD1mvXYa0SjL6wG-RX5fPtoNyIw-S2iQQRo/edit?usp=sharing | 47 | -------------------------------------------------------------------------------- /submissions/Student_Info.MD: -------------------------------------------------------------------------------- 1 | |Name|Enrollment Number | LinkedIN | Github | 2 | |---|---|---|---| 3 | | ayush | 2203031080028 | [linkedin](https://www.linkedin.com/in/ayushx4/) | [github](https://www.github.com/ayushx4) 4 | |pranav faladu|2303031087022|[LinkedIn.com/in/pranavfaladu](https://www.linkedin.com/in/pranav-faladu/)|[github.com/pranavfaladu](https://github.com/PranavFaladu/Full_Stack_Bootcamp/tree/main) 5 | |Rishabh|2203031080114|https://www.linkedin.com/in/rishabh-rai-88b2342ba/|[rishabh653](https://github.com/Rishabhrai29)| 6 | |Vekariya Aryan|2203031080125|[Linkedin](https://www.linkedin.com/in/aaryan-vekariya-647257272/)|[GitHub](https://github.com/aaryanvekariya)| 7 | |Rajdeepsinh|2203031080069|[Dabhi Rajdeepsinh](https://www.linkedin.com/in/dabhi-rajdeepsinh-68a46b2a9/)|[Rajdeepsinh1410](https://github.com/Rajdeepsinh1410/)| 8 | |vishang lad | 2203031080035 | vishanglad | https://github.com/vishangl | 9 | |Rutuja|2303031087089|https://www.linkedin.com/in/rutuja-waghchaure-8b036826b/|https://github.com/rutujawaghchaure| 10 | | Bharvi | 2303031087002 | Not available | bharvivaland | 11 | |Sparsh Patel|2203031080053|[Sparsh Patel](https://www.linkedin.com/in/sparsh-patel-53aa24294/)|[SparshPatel1115](https://github.com/SparshPatel1115)| 12 | |raj|2203031080105|[raj](https://www.linkedin.com/in/raj-patel-45370b33a/)|https://github.com/RajPatel08 | 13 | |Vinit Patel| 2203031080139 | www.linkedin.com/in/Vinitpatel28 | https://github.com/Vinitpatel28| 14 | | mann |2203031080260|https://www.linkedin.com/in/mannsolanki/|https://github.com/HarmonyHacker/| 15 | |Harsh Surani|2203031080123|[linkedIn.com/in/suraniharsh](https://www.linkedin.com/in/suraniharsh/)|[github.com/suraniharsh](https://github.com/suraniharsh)| 16 | |utsav hirapra|2203031080002|[Linkedin](https://www.linkedin.com/in/utsav-hirapra-6078b6271/)|[GitHub](https://github.com/utsav1213)| 17 | |Bhavin|2203031080042| [Bhavin parmar](https://www.linkedin.com/in/bhavin-parmar-2b7a362b0)|[bhavinbvn](https://github.com/bhavinbvn)| 18 | |Pratik| 2203031080174|[LinkedIN](https://www.linkedin.com/in/pratik-patel-17891b23a/)|[Github](https://github.com/Pratik00531)| 19 | |dhyan patel|2203031080216|https://www.linkedin.com/in/dhyan-patel-203437282/|https://github.com/dhyanpatel3| 20 | | Darsh Kalani | 2203031080032 |https://www.linkedin.com/in/darsh-kalani-b03392250 |https://github.com/Darshkalani28| 21 | |Harsh choudhary|2203031080132|www.linkedin.com/in/harsh-choudhary5|https://github.com/mrHarshchoudhary| 22 | |Satyam|2203031080232|https://www.linkedin.com/in/satyam-singh-800874266/|https://github.com/mrSinghSatyam| 23 | |pranjal pandey|2203031080144|https://www.linkedin.com/in/pranjal15/|https://github.com/Pranjallpandey1504| 24 | |Neeti Darji|2303031087080|NeetiDarji|NeetiDarji| 25 | |Hardeep Ijardar|2203031080031|https://www.linkedin.com/in/hardeep-ijardar-711874266/|https://github.com/HardeepIjardar| 26 | |Alisha |2203031080202|https://www.linkedin.com/in/alisha-kaur-2460b4261|Alishakaur431| 27 | |Vignesh Gaddam|2203031080131|www.linkedin.com/in/vignesh-gaddam|https://github.com/mrvigneshgaddam| 28 | |Sagariya Vaishnavi|2203031080013|www.linkedin.com/in/vaishnavi-sagariya-746b81264|https://github.com/sagariyavaishnavi 29 | |Jenish|2203031080007|[Jenish Paghadal](https://www.linkedin.com/in/jenish-paghadal-391a17259/)|[ItsJesh](https://github.com/ItsJESH/)| 30 | |Yash|2203031080015|[Linkedin](https://www.linkedin.com/in/yash-sakhareliya/)|[Github](https://github.com/YashSakhareliya/)| 31 | | Suhani | 2203031080260 | https://www.linkedin.com/in/suhanitandel | https://github.com/SuhaniTandel | 32 | |Hani|2303031087088|[Linkedin](https://www.linkedin.com/in/hani-vaghani-440a7b271)|[GitHub](https://github.com/hanivaghani)| 33 | |Mansha|2203031080121|[LinkedIn](www.linkedin.com/in/mansha-soni-321193270)|[Github](https://github.com/mansha-6)| 34 | |Ankit kumar|2203031080184|Linkedin|[Github](https://github.com/Ankiitsuthar)| 35 | |Deep Menpara|2203031080091|[Linkedin](https://www.linkedin.com/in/deep-menpara-628617326/)|[Github](https://github.com/Deep7133)| 36 | | mann |2203031080260|https://www.linkedin.com/in/mannsolanki/|https://github.com/HarmonyHacker/| 37 | | Meet Sondarva | 2203031080146 | https://www.linkedin.com/in/meet-sondarva | https://github.com/meetsondarva | 38 | -------------------------------------------------------------------------------- /submissions/expressjs/assignment4.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Assignment 24 URL | GitHub Repo | 2 | |-----------------|-------------------|-----------------|------------| 3 | | Shubham Karvariya | 2203031080004 |[Assignment 24](https://github.com/5hubhm/ExpressJS101/blob/handlebars/GlowDerm/index.js) |[Github](https://github.com/5hubhm/ExpressJS101/tree/handlebars) | 4 | | Ayush | 2203031080028 | | | 5 | | Mansha Soni | 2203031080121 | [Assignment 24](https://github.com/mansha-6/GlowDerma/blob/main/app3.js)|[Github](https://github.com/mansha-6/GlowDerma) | 6 | | Bhavin Parmar | 2203031080042 | | | 7 | | Pranjal Pandey | 2203031080144 |https://github.com/Pranjallpandey1504/GlowDerma/blob/main/app2.js |https://github.com/Pranjallpandey1504/GlowDerma | 8 | | Ashish Yadav | 2203031080161 |[URL](https://github.com/AshishIT611/GLOWDERMA/blob/main/app3.js) |[GitHub](https://github.com/AshishIT611/GLOWDERMA) | 9 | | Vinit Patel | 2203031080139 |[Assignment 25](https://github.com/Vinitpatel28/GlowDerma/blob/main/app.js) |[GitHub](https://github.com/Vinitpatel28/GlowDerma)| 10 | | Utsav Hirapra | 2203031080002 |[URL](https://github.com/utsav1213/Express101/blob/main/GlowDerma/index.js) |[GIT](https://github.com/utsav1213/Express101) | 11 | | Meet Savadasbhai Sondarva | 2203031080146 | [Assignment 24] (https://github.com/meetsondarva/GlowDerma/blob/main/index3.js) |[Github] (https://github.com/meetsondarva/GlowDerma)| 12 | | Satyam | 2203031080232 | | | 13 | | Vaishnavi Sagariya | 2203031080013 |[Assignment 24](https://github.com/sagariyavaishnavi/GlowDerma/blob/main/app.js) |[GitHub](https://github.com/sagariyavaishnavi/GlowDerma) | 14 | | Jenish Paghadal | 2203031080007 | | | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 | | | 17 | | Dhyan Patel | 2203031080216 | [Assignment 24](https://github.com/dhyanpatel3/GlowDerma/blob/main/index3.js)|[GitHub](https://github.com/dhyanpatel3/GlowDerma/) | 18 | | Rajdeepsinh Dabhi | 2203031080069 | | | 19 | | Ankit Kumar | 2203031080184 |[Assignment 24](https://github.com/Ankiitsuthar/GlowDerma/blob/main/app3.js) |[GitHub](https://github.com/Ankiitsuthar/GlowDerma) | 20 | | Sahil Bharude | 2203031080235 | | | 21 | | Aryan Vekariya | 2203031080125 |[Assignment24](https://github.com/aaryanvekariya/Express_Work/blob/main/handlebars/handlebar.js) |[Repository](https://github.com/aaryanvekariya/Express_Work) | 22 | | Sparsh Patel | 2203031080053 | | | 23 | | Pratik Patel | 2203031080174 | | | 24 | | Ravi Vira | 2203031080018 |[url](https://github.com/Ravi-vira/Express101/blob/express-q2/GlowDerma%20Project/server.js)|[git](https://github.com/Ravi-vira/Express101/tree/express-q2/GlowDerma%20Project)| 25 | | Deep Menpara | 2203031080091 |https://github.com/Deep7133/Express_101/blob/main/glow_derma/app.js |https://github.com/Deep7133/Express_101/tree/main/glow_derma | 26 | | Raj Patel | 2203031080105 | | | 27 | | Darsh Kalani | 2203031080032 | [Assignment 24](https://github.com/Darshkalani28/GlowDerma/blob/main/index.js ) | [Repository](https://github.com/Darshkalani28/GlowDerma) | 28 | | Vignesh Gaddam | 2203031080131 | | | 29 | | Vrushangi Mistry | 2203031080222 |https://github.com/Vrushi14/GlowDerma/blob/main/service.js |https://github.com/Vrushi14/GlowDerma | 30 | | Achal Ladani | 2203031080229 | | | 31 | | Harsh Choudhary | 2203031080132 | | | 32 | | Jeet Dhake | 2303031087082 | | | 33 | | Vishang Lad | 2203031080035 |https://github.com/vishangl/GlowDerma/blob/main/service.js|https://github.com/vishangl/GlowDerma| 34 | | Hani Vaghani | 2303031087088 |[assignmnet24](https://github.com/hanivaghani/GlowDerma/blob/master/main.js)|[GitHUB](https://github.com/hanivaghani/GlowDerma/tree/master)| 35 | | Harsh Surani | 2203031080123 | | | 36 | | Yash Sakhareliya | 2203031080015 | [Assignment 24](https://github.com/YashSakhareliya/GlowDerma-/blob/main/app.js) | [Github](https://github.com/YashSakhareliya/GlowDerma-) | 37 | | Meet Upendrakumar Patel | 2203031080011 | | | 38 | | Vraj Mehta | 2303031087034 | | | 39 | | Alisha Kaur | 2203031080202 |https://github.com/Alishakaur431/GlowDerma/blob/main/app2.js| https://github.com/Alishakaur431/GlowDerma| 40 | | Pranav Faladu | 2303031087022 | | | 41 | | Bharvi Valand | 2303031087002 | | | 42 | | Neeti Darji | 2303031087080 |[Assignment 24](https://github.com/Neetidarji/GlowDerma/blob/master/app.js)|[Github](https://github.com/Neetidarji/GlowDerma/tree/master)| 43 | | Suhani Tandel | 2203031080160 | | | 44 | | Rishabh Rai | 2203031080114 | | | 45 | | Rutuja Waghchaure | 2303031087089 | | | 46 | -------------------------------------------------------------------------------- /submissions/expressjs/assignment5.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | 📄 Assignment 25 | 🗂️ GitHub Repo | 2 | |-------------------------------|----------------------|-----------------|---------------| 3 | | Shubham Karvariya | 2203031080004 | | | 4 | | Ayush | 2203031080028 | | | 5 | | Mansha Soni | 2203031080121 | | | 6 | | Shubham Karvariya | 2203031080004 | | | 7 | | Ayush | 2203031080028 | | | 8 | | Bhavin Parmar | 2203031080042 | | | 9 | | Pranjal Pandey | 2203031080144 | | | 10 | | Ashish Yadav | 2203031080161 | | | 11 | | Vinit Patel | 2203031080139 | | | 12 | | Utsav Hirapra | 2203031080002 | | | 13 | | Meet Savadasbhai Sondarva | 2203031080146 | | | 14 | | Satyam | 2203031080232 | | | 15 | | Vaishnavi Sagariya | 2203031080013 | | | 16 | | Jenish Paghadal | 2203031080007 | | | 17 | | Umang Patel | 2203031080107 | | | 18 | | Mann Solanki | 2203031080260 | | | 19 | | Dhyan Patel | 2203031080216 | | | 20 | | Rajdeepsinh Dabhi | 2203031080069 | | | 21 | | Ankit Kumar | 2203031080184 | | | 22 | | Hardeep Ijardar | 2203031080031 | | | 23 | | Sahil Bharude | 2203031080235 | | | 24 | | Aryan Vekariya | 2203031080125 | | | 25 | | Sparsh Patel | 2203031080053 | | | 26 | | Pratik Patel | 2203031080174 | | | 27 | | Ravi Vira | 2203031080018 | | | 28 | | Deep Menpara | 2203031080091 | | | 29 | | Raj Patel | 2203031080105 | | | 30 | | Darsh Kalani | 2203031080032 | | | 31 | | Vignesh Gaddam | 2203031080131 | | | 32 | | Vrushangi Mistry | 2203031080222 | | | 33 | | Achal Ladani | 2203031080229 | | | 34 | | Harsh Choudhary | 2203031080132 | | | 35 | | Jeet Dhake | 2303031087082 | | | 36 | | Vishang Lad | 2203031080035 | | | 37 | | Hani Vaghani | 2303031087088 | | | 38 | | Harsh Surani | 2203031080123 | | | 39 | | Yash Sakhareliya | 2203031080015 | | | 40 | | Meet Upendrakumar Patel | 2203031080011 | | | 41 | | Vraj Mehta | 2303031087034 | | | 42 | | Alisha Kaur | 2203031080202 | | | 43 | | Pranav Faladu | 2303031087022 | | | 44 | | Bharvi Valand | 2303031087002 | | | 45 | | Neeti Darji | 2303031087080 | | | 46 | | Suhani Tandel | 2203031080160 | | | 47 | | Rishabh Rai | 2203031080114 | | | 48 | | Rutuja Waghchaure | 2303031087089 | | | 49 | -------------------------------------------------------------------------------- /submissions/surprise_test_1.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Source Code | Deployment URL | 2 | |-----------------|-------------------|-------------|----------------| 3 | | Shubham Karvariya | 2203031080004 |[Github](https://github.com/5hubhm/WDF_Test/tree/master)|[Netlify](https://surprise-test.netlify.app/)| 4 | | Ayush | 2203031080028 | | | 5 | | Mansha Soni | 2203031080121 |https://github.com/mansha-6/WDF_test | https://wdf-test-chi.vercel.app/| 6 | | Bhavin Parmar | 2203031080042 | | | 7 | | Pranjal Pandey | 2203031080144 |https://github.com/Pranjallpandey1504/WDF_Test |https://wdf-test-seven.vercel.app/ | 8 | | Ashish Yadav | 2203031080161 | [GitHub](https://github.com/AshishIT611/WDF_Test) | [Vercel](https://wdf-test-iota.vercel.app/) | 9 | | Vinit Patel | 2203031080139 | https://github.com/Vinitpatel28/WDF_Test| https://wdf-test-three.vercel.app/| 10 | | Utsav Hirapra | 2203031080002 |[Github](https://github.com/utsav1213/WDF_Test) |[Vercel](https://wdf-test-nu.vercel.app/) | 11 | | Meet Savadasbhai Sondarva | 2203031080146 | https://github.com/meetsondarva/WDF_TEST| https://wdf-test-xi.vercel.app/q1.html | 12 | | Satyam | 2203031080232 |https://github.com/mrSinghSatyam/Test |https://test-rose-theta-97.vercel.app/q1.html | 13 | | Vaishnavi Sagariya | 2203031080013 | https://github.com/sagariyavaishnavi/WDF_test| https://wdf-test-beta.vercel.app/| 14 | | Jenish Paghadal | 2203031080007 | [GitHub](https://github.com/ItsJESH/WDF_Test)|[Vercel](https://suprisetest.vercel.app/) | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 |https://github.com/HarmonyHacker/WDF_Test |https://todolistandcategoris.netlify.app/ | 17 | | Dhyan Patel | 2203031080216 |https://github.com/dhyanpatel3/WDF_Test |https://wdf-test-j1idka8qt-dhyan-patels-projects-58fd379d.vercel.app/q1.html | 18 | | Rajdeepsinh Dabhi | 2203031080069 |[GitHub](https://github.com/Rajdeepsinh1410/wdf_test_.git)|[Vercel](https://surprisetest.vercel.app/) | 19 | | Ankit Kumar | 2203031080184 | | | 20 | | Hardeep Ijardar | 2203031080031 | | | 21 | | Sahil Bharude | 2203031080235 | | | 22 | | Aryan Vekariya | 2203031080125 |[Github](https://github.com/aaryanvekariya/WDF_Test)|[Deployment](https://wdf-test-jvgaqxmkb-aryan-vekariyas-projects.vercel.app/)| 23 | | Sparsh Patel | 2203031080053 | | | 24 | 25 | | Sparsh Patel | 2203031080053 | (https://github.com/SparshPatel1115/WDF_Test1)| (https://wdf-test1-sparsh-patels-projects.vercel.app/) | 26 | | Pratik Patel | 2203031080174 | [Github](https://github.com/Pratik00531/WDF_Test)|[Vercel](https://wdf-test.vercel.app/) | 27 | | Ravi Vira | 2203031080018 |[github] (https://github.com/Ravi-vira/WDF_Test) | [Vercel](https://wdf-test-zeta.vercel.app/) | 28 | | Deep Menpara | 2203031080091 |https://github.com/Deep7133/WDF_TEST |https://wdf-test-deep-menparas-projects.vercel.app/ | 29 | | Raj Patel | 2203031080105 |[Github](https://github.com/RajPatel08/surprise-test) |[vercel](https://surprise-test-five.vercel.app/) | 30 | | Darsh Kalani | 2203031080032 |[Github](https://github.com/Darshkalani28/WDF_Test)|[Vercel](https://wdf-test-sigma.vercel.app/)| 31 | | Vignesh Gaddam | 2203031080131 | [GitHub](https://github.com/mrvigneshgaddam/WDF_Test)|[Vercel](https://wdf-test-wine.vercel.app/) | 32 | | Vrushangi Mistry | 2203031080222 | https://github.com/Vrushi14/WDF_Test| https://wdf-test-sage.vercel.app/| 33 | | Achal Ladani | 2203031080229 | | | 34 | | Harsh Choudhary | 2203031080132 |https://github.com/mrHarshchoudhary/WDF_Test |https://wdf-test-dun.vercel.app/ | 35 | | Jeet Dhake | 2303031087082 | | | 36 | | Vishang Lad | 2203031080035 |https://github.com/vishangl/WDF_Test |https://wdf-test.pages.dev/| 37 | | Hani Vaghani | 2303031087088 |https://github.com/hanivaghani/WDF_Test|https://wdf-test-7cb.pages.dev/| 38 | | Harsh Surani | 2203031080123 | [Github](https://github.com/suraniharsh/Surprise-Test-1) | [solution](https://2203031080123-surprise-test-1.netlify.app/) | 39 | | Yash Sakhareliya | 2203031080015 |[Source Code](https://github.com/YashSakhareliya/WDF_Test) |[URL](https://wdf-test-one.vercel.app/) | 40 | | Meet Upendrakumar Patel | 2203031080011 | | | 41 | | Vraj Mehta | 2303031087034 | | | 42 | | Alisha Kaur | 2203031080202 | | | 43 | | Pranav Faladu | 2303031087022 | | | 44 | | Bharvi Valand | 2303031087002 | | | 45 | | Neeti Darji | 2303031087080 |[Github](https://github.com/Neetidarji/WDF_Test) |[Solution](https://wdf-test-1h9.pages.dev/) | 46 | | Suhani Tandel | 2203031080160 | | | 47 | | Rishabh Rai | 2203031080114 | https://github.com/Rishabhrai29/WDF_Test|https://wdf-test-eta.vercel.app/ | 48 | | Rutuja Waghchaure | 2303031087089 |https://github.com/rutujawaghchaure/WDF-Test |https://wdf-test-8wv.pages.dev/ | 49 | -------------------------------------------------------------------------------- /assignments/JS_Conceptual_Problems.MD: -------------------------------------------------------------------------------- 1 | # Conceptual Problems to Get around in JS 2 | 3 | | Sl No | Problem | 4 | |--------|----------| 5 | | 1 | [Watermelon](https://codeforces.com/problemset/problem/4/A) | 6 | | 2 | [Domino Piling](https://codeforces.com/problemset/problem/50/A) | 7 | | 3 | [Elephant](https://codeforces.com/problemset/problem/617/A) | 8 | | 4 | [Soldier and Bananas](https://codeforces.com/problemset/problem/546/A) | 9 | | 5 | [Candies and Two Sisters](https://codeforces.com/problemset/problem/1335/A) | 10 | | 6 | [The New Year: Meeting Friends](https://codeforces.com/problemset/problem/723/A) | 11 | | 7 | [Divisibility Problem](https://codeforces.com/problemset/problem/1328/A) | 12 | | 8 | [Wrong Subtraction](https://codeforces.com/problemset/problem/977/A) | 13 | | 9 | [System of Equations](https://codeforces.com/problemset/problem/214/A) | 14 | | 10 | [Soft Drinking](https://codeforces.com/problemset/problem/151/A) | 15 | | 11 | [Way Too Long Words](https://codeforces.com/problemset/problem/71/A) | 16 | | 12 | [Word Capitalization](https://codeforces.com/problemset/problem/281/A) | 17 | | 13 | [Petya and Strings](https://codeforces.com/problemset/problem/112/A) | 18 | | 14 | [Word](https://codeforces.com/problemset/problem/59/A) | 19 | | 15 | [Translation](https://codeforces.com/problemset/problem/41/A) | 20 | | 16 | [Stones on the Table](https://codeforces.com/problemset/problem/266/A) | 21 | | 17 | [Pangram](https://codeforces.com/problemset/problem/520/A) | 22 | | 18 | [Amusing Joke](https://codeforces.com/problemset/problem/141/A) | 23 | | 19 | [Helpful Maths](https://codeforces.com/problemset/problem/339/A) | 24 | | 20 | [Common Prefixes](https://codeforces.com/problemset/problem/1384/A) | 25 | | 21 | [String Generation](https://codeforces.com/problemset/problem/1461/A) | 26 | | 22 | [Team](https://codeforces.com/problemset/problem/231/A) | 27 | | 23 | [Next Round](https://codeforces.com/problemset/problem/158/A) | 28 | | 24 | [Beautiful Matrix](https://codeforces.com/problemset/problem/263/A) | 29 | | 25 | [Arrival of the General](https://codeforces.com/problemset/problem/144/A) | 30 | | 26 | [Presents](https://codeforces.com/problemset/problem/136/A) | 31 | | 27 | [Games](https://codeforces.com/problemset/problem/268/A) | 32 | | 28 | [Vanya and Fence](https://codeforces.com/problemset/problem/677/A) | 33 | | 29 | [Police Recruits](https://codeforces.com/problemset/problem/427/A) | 34 | | 30 | [Remove Smallest](https://codeforces.com/problemset/problem/1399/A) | 35 | | 31 | [Even Array](https://codeforces.com/problemset/problem/1367/B) | 36 | | 32 | [Fox and Snake](https://codeforces.com/problemset/problem/510/A) | 37 | | 33 | [Hulk](https://codeforces.com/problemset/problem/705/A) | 38 | | 34 | [Sum of Round Numbers](https://codeforces.com/problemset/problem/1352/A) | 39 | | 35 | [Beautiful Year](https://codeforces.com/problemset/problem/271/A) | 40 | | 36 | [Maximum in Table](https://codeforces.com/problemset/problem/509/A) | 41 | | 37 | [Substring Removal Game](https://codeforces.com/problemset/problem/1398/B) | 42 | | 38 | [Boy or Girl](https://codeforces.com/problemset/problem/236/A) | 43 | | 39 | [Anton and Danik](https://codeforces.com/problemset/problem/734/A) | 44 | | 40 | [Ultra-Fast Mathematician](https://codeforces.com/problemset/problem/61/A) | 45 | | 41 | [Is your horseshoe on the other hoof?](https://codeforces.com/problemset/problem/228/A) | 46 | | 42 | [I love %username%](https://codeforces.com/problemset/problem/155/A) | 47 | | 43 | [Bit++](https://codeforces.com/problemset/problem/282/A) | 48 | | 44 | [Bear and Big Brother](https://codeforces.com/problemset/problem/791/A) | 49 | | 45 | [Tram](https://codeforces.com/problemset/problem/116/A) | 50 | | 46 | [Magnets](https://codeforces.com/problemset/problem/344/A) | 51 | | 47 | [Playing with Dice](https://codeforces.com/problemset/problem/378/A) | 52 | | 48 | [Fair Division](https://codeforces.com/problemset/problem/1472/B) | 53 | | 49 | [Nearly Lucky Number](https://codeforces.com/problemset/problem/110/A) | 54 | | 50 | [In Search of an Easy Problem](https://codeforces.com/problemset/problem/1030/A) | 55 | | 51 | [George and Accommodation](https://codeforces.com/problemset/problem/467/A) | 56 | | 52 | [Drinks](https://codeforces.com/problemset/problem/200/B) | 57 | | 53 | [Calculating Function](https://codeforces.com/problemset/problem/486/A) | 58 | | 54 | [Three Indices](https://codeforces.com/problemset/problem/1380/A) | 59 | | 55 | [Circle Line](https://codeforces.com/problemset/problem/278/A) | 60 | | 56 | [Triangle](https://codeforces.com/problemset/problem/6/A) | 61 | | 57 | [Parallelepiped](https://codeforces.com/problemset/problem/224/A) | 62 | | 58 | [Football](https://codeforces.com/problemset/problem/43/A) | 63 | | 59 | [Chips Moving](https://codeforces.com/problemset/problem/1213/A) | 64 | | 60 | [Bad Triangle](https://codeforces.com/problemset/problem/1398/A) | 65 | -------------------------------------------------------------------------------- /assignments/NodeJS_4_5.MD: -------------------------------------------------------------------------------- 1 | # NodeJS 4: Create an HTTP Server for BarterX 2 | 3 | ## Objective: 4 | Create a Node.js HTTP server using the `http` core module to handle requests for a Used Goods Marketplace SaaS product called **BarterX**. The server should respond with specific messages for different routes, serve JSON data, HTML content, and handle errors gracefully. Test the server using **Postman** to ensure all routes work as expected. 5 | 6 | --- 7 | 8 | ## Instructions: 9 | 10 | 1. **Create a file named `index.js`.** 11 | 2. **Using the `http` core module, create a web server that listens on port `8050`.** 12 | - When the server starts, it should display the message: `"Server initiated on port 8050..."`. 13 | 3. **Handle the following routes with the specified responses:** 14 | - **Root URL (`/`)**: Display the message `"Welcome to the BarterX"`. 15 | - **`/products`**: Display the message `"Here are the products up for Sale in BarterX"`. 16 | - **`/login`**: Display the message `"Login to the BarterX"`. 17 | - **`/signup`**: Display the message `"Sign up to the BarterX"`. 18 | - **`/profile`**: Display the message `"Trader Profile"`. 19 | - **`/cart`**: Display the message `"Your Shopping Cart is here"`. 20 | - **`/checkout`**: Display the message `"Let's start shipping"`. 21 | - **`/orders`**: Display the message `"Your Orders are here"`. 22 | - **`/categories`**: Display the message `"Browse Categories"`. 23 | - **`/chat`**: Display the message `"Your Chat with fellow Traders"`. 24 | - **`/contact`**: Display the message `"Contact Us at"`. 25 | - **`/about`**: Return an HTML response with a styled page about BarterX. Use a CSS file (`styles.css`) located in a `public` folder to style the page. 26 | - **`/api/products`**: Return a JSON response with a list of products. 27 | - **Any other route**: Return a `404 Not Found` status with a JSON response: 28 | ```json 29 | { 30 | "error": "Page not found", 31 | "statusCode": 404 32 | } 33 | ``` 34 | 4. **Serve Static Files:** 35 | - When a user navigates to `/logo.png`, serve an image file located in the `public` folder. 36 | 5. **Error Handling:** 37 | - If a user navigates to a route that doesn't exist, return a `404 Not Found` status with a JSON response. 38 | 6. **Bonus: Maintain a `log.txt` file that keeps track of every request that the server receives along with details about the time and date of the request, request URL, and HTTP method.** 39 | 40 | --- 41 | 42 | ## Testing with Postman: 43 | - Use **Postman** to test all routes and verify the responses. 44 | - Check the status code, headers, and body of each response to ensure they match the expected output. 45 | 46 | --- 47 | 48 | ## Expected Output 49 | 50 | 1. Server Start 51 | 52 | ``` 53 | Server initiated on port 8050... 54 | ``` 55 | 56 | 2. Root Route (`/`) 57 | ``` 58 | Welcome to the BarterX 59 | ``` 60 | 61 | 3. About Route (`/about`) 62 | ```html 63 | 64 | 65 | 66 | About BarterX 67 | 68 | 69 | 70 |

About BarterX

71 |

The modern approach to trading our commodities.

72 | BarterX Logo 73 | 74 | 75 | ``` 76 | 77 | 4. Products API (`/api/products`) 78 | ```json 79 | [ 80 | { "id": 1, "name": "Used Laptop", "price": 300 }, 81 | { "id": 2, "name": "Second-hand Bicycle", "price": 50 } 82 | ] 83 | ``` 84 | 85 | 5. Logo Route (`/logo.png`) 86 | * Serve the image file located in the `public` folder. 87 | 88 | 6. Unknown Route (`/unknown`) 89 | ```json 90 | { 91 | "error": "Page not found", 92 | "statusCode": 404 93 | } 94 | ``` 95 | 96 | 7. Bonus: Log File Format (`log.txt`) 97 | ``` 98 | [2023-10-15T12:34:56.789Z] GET /products 99 | [2023-10-15T12:35:10.123Z] GET /login 100 | [2023-10-15T12:35:20.456Z] GET /unknown 101 | ``` 102 | 103 | ## Additional Instructions 104 | 105 | 1. Public Folder Setup 106 | Create a `public` folder with: 107 | * `styles.css` 108 | * `logo.png` 109 | 110 | Example `styles.css`: 111 | ```css 112 | body { 113 | font-family: Arial, sans-serif; 114 | background-color: #f4f4f4; 115 | text-align: center; 116 | padding: 50px; 117 | } 118 | h1 { 119 | color: #333; 120 | } 121 | p { 122 | color: #666; 123 | } 124 | img { 125 | max-width: 100px; 126 | height: auto; 127 | } 128 | ``` 129 | 130 | 2. Testing Requirements 131 | * Use Postman to test all routes and verify responses 132 | 133 | 3. Log File Requirements 134 | * Log all requests with date, time, HTTP method, and path 135 | 136 | 137 | # NodeJS 5: Create an HTTP Server for BarterX using Bun 138 | 139 | Replicate the same problem using Bun as the run time and without using any `http` module 140 | 141 | -------------------------------------------------------------------------------- /submissions/js/task_10.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | 🔗 Task 10 URL | 🐱 GitHub Repository URL | 2 | |-----------------|-------------------|--------------|----------------------| 3 | | Shubham Karvariya | 2203031080004 | [AI Attendance System](https://marvelous-pony-d1462f.netlify.app/task10/)|[Github](https://github.com/5hubhm/J_S)| 4 | | Ayush | 2203031080028 | | | 5 | | Mansha Soni | 2203031080121 |[Attendance](https://js-project-pink.vercel.app/task10.html) | [Github](https://github.com/mansha-6/JS-Project)| 6 | | Bhavin Parmar | 2203031080042 |https://jstasks.vercel.app/Attendance/index.html|https://github.com/bhavinSOL/JS_task | 7 | | Pranjal Pandey | 2203031080144 |https://face-recognition-attendance-steel.vercel.app/ |https://github.com/Pranjallpandey1504/face-recognition-attendance| 8 | | Ashish Yadav | 2203031080161 | [Task10](https://java-script-project-seven.vercel.app/index10.html) | [GitHub](https://github.com/AshishIT611/JavaScript_Project) | 9 | | Vinit Patel | 2203031080139 | https://js-projects-fw8k.vercel.app/Task10.html | https://github.com/Vinitpatel28/JS-Projects | 10 | | Utsav Hirapra | 2203031080002 |[AI Attendance System](https://js-eosin.vercel.app/Task%2010/index.html) |[Github](https://github.com/utsav1213/JS) | 11 | | Meet Savadasbhai Sondarva | 2203031080146 | https://javascript-projects-livid.vercel.app/attendance.html| https://github.com/meetsondarva/javascript_projects| 12 | | Satyam | 2203031080232 |https://satyamprojects.vercel.app/attendance.html|https://github.com/mrSinghSatyam/JS102| 13 | | Vaishnavi Sagariya | 2203031080013 |[Attendance System](https://js-pro-nine.vercel.app/Attendance_System/index.html) |[GitHUB](https://github.com/sagariyavaishnavi/js_pro/tree/main/Attendance_System) | 14 | | Jenish Paghadal | 2203031080007 |[AI Attendance System](https://jsassignment-omega.vercel.app/Task9/index.html) |[Github](https://github.com/ItsJESH/JSAssignment) | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 | | | 17 | | Dhyan Patel | 2203031080216 |https://javascript-projects-tau-azure.vercel.app/attendance.html | https://github.com/dhyanpatel3/javascript_projects| 18 | | Rajdeepsinh Dabhi | 2203031080069 | | | 19 | | Ankit Kumar | 2203031080184 | | | 20 | | Hardeep Ijardar | 2203031080031 | http://127.0.0.1:5501/face_recognigation.html| https://github.com/HardeepIjardar/JS-Projects | 21 | | Sahil Bharude | 2203031080235 | | | 22 | | Aryan Vekariya | 2203031080125 |[Task10](https://javascript-ecru-seven.vercel.app/task10/Attendance.html) |[Github](https://github.com/aaryanvekariya/javascript)| 23 | | Sparsh Patel | 2203031080053 | | | 24 | | Pratik Patel | 2203031080174 | | | 25 | | Ravi Vira | 2203031080018 | https://ai-face-attendenc.vercel.app/ | https://github.com/Ravi-vira/AI-FaceAttendenc | 26 | | Deep Menpara | 2203031080091 |https://ai-attendence.vercel.app/ |https://github.com/Deep7133/AI-Attendence | 27 | | Raj Patel | 2203031080105 |https://ai-attendence-tan.vercel.app/ |https://github.com/RajPatel08/ai-attendence | 28 | | Darsh Kalani | 2203031080032 | https://js-project-ashen.vercel.app/attendance.html | https://github.com/Darshkalani28/JS_Project | 29 | | Vignesh Gaddam | 2203031080131 |[Attendance System ](https://js-101-theta.vercel.app/attendance.html) | [Git Hub](https://github.com/mrvigneshgaddam/JS101)| 30 | | Vrushangi Mistry | 2203031080222 |https://vrushicodesjs.vercel.app/Attendance.html|https://github.com/Vrushi14/JavaScriptProjects| 31 | | Achal Ladani | 2203031080229 | | | 32 | | Harsh Choudhary | 2203031080132 |https://wdf-js.pages.dev/attendance |https://github.com/mrHarshchoudhary/WDF_JS | 33 | | Jeet Dhake | 2303031087082 | | | 34 | | Vishang Lad | 2203031080035 |https://jsprojects3.pages.dev/face_reconigition|https://github.com/vishangl/JSprojects | 35 | | Hani Vaghani | 2303031087088 |https://jsprojects1.pages.dev/attendance|https://github.com/hanivaghani/JSprojects | 36 | | Harsh Surani | 2203031080123 | [Task 10](https://imageclassificationattendancesystem.netlify.app/) | [suraniharsh](https://github.com/suraniharsh/imageClassificationAttendanceSystem-) | 37 | | Yash Sakhareliya | 2203031080015 |[Task 10](https://js-tasks-nine.vercel.app/Task%2010/index.html) |[Git Hub URL](https://github.com/Yashsakhareliya/JS_Task) | 38 | | Meet Upendrakumar Patel | 2203031080011 |[Task-10](https://ai-face-attendance-system.vercel.app/) |[Github](https://github.com/MeetPatel54/Ai-Face-Attendance-System.git) | 39 | | Vraj Mehta | 2303031087034 | | | 40 | | Alisha Kaur | 2203031080202 |https://studentattendancee.netlify.app/ |https://github.com/Alishakaur431/student-attendance | 41 | | Pranav Faladu | 2303031087022 |https://inquisitive-croquembouche-acec27.netlify.app/faceattandance|https://github.com/PranavFaladu/JSprojects| 42 | | Bharvi Valand | 2303031087002 |https://celebrated-pegasus-172baa.netlify.app/attendindex|https://github.com/bharvivaland/JSprojects| 43 | | Neeti Darji | 2303031087080 |[Task 10](https://jsprojects-6m1.pages.dev/Attendencesystem) |[Github Repository](https://github.com/Neetidarji/Jsprojects) 44 | | Suhani Tandel | 2203031080160 | https://app.netlify.com/sites/visionary-faun-c4a618/overview | https://github.com/SuhaniTandel/JS-Project | 45 | | Rishabh Rai | 2203031080114 | | | 46 | | Rutuja Waghchaure | 2303031087089 |https://jsproject-cin.pages.dev/attendance |https://github.com/rutujawaghchaure/jsproject| 47 | -------------------------------------------------------------------------------- /submissions/reactjs/assignment8.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Assignment 38 URL | ReactJS Assignments Repo | 2 | |--------------------------------|----------------------|-------------------|-------------| 3 | | Shubham Karvariya | 2203031080004 | | | 4 | | Ayush | 2203031080028 | | | 5 | | Mansha Soni | 2203031080121 | | | 6 | | Bhavin Parmar | 2203031080042 | | | 7 | | Pranjal Pandey | 2203031080144 | [Assignment 38](https://github.com/Pranjallpandey1504/React_Assignments/tree/main/Task8) |[Github](https://github.com/Pranjallpandey1504/React_Assignments) | 8 | | Ashish Yadav | 2203031080161 | | | 9 | | Vinit Patel | 2203031080139 | | | 10 | | Utsav Hirapra | 2203031080002 | | | 11 | | Meet Savadasbhai Sondarva | 2203031080146 | | | 12 | | Satyam | 2203031080232 |https://github.com/mrSinghSatyam/ReactJS/tree/main/Task-8|https://github.com/mrSinghSatyam/ReactJS| 13 | | Vaishnavi Sagariya | 2203031080013 | | | 14 | | Jenish Paghadal | 2203031080007 | | | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 |[Assignment 38](https://github.com/MannSolanki/ReactWDFAssignment/tree/main/task8) |[Github](https://github.com/MannSolanki/ReactWDFAssignment/) | 17 | | Dhyan Patel | 2203031080216 | | | 18 | | Rajdeepsinh Dabhi | 2203031080069 | | | 19 | | Ankit Kumar | 2203031080184 | [Assignment 38](https://github.com/Ankiitsuthar/ReactJS/tree/main/Task8/Assignment8) | [GitHub](https://github.com/Ankiitsuthar/ReactJS) | 20 | | Hardeep Ijardar | 2203031080031 | | | 21 | | Sahil Bharude | 2203031080235 | | | 22 | | Aryan Vekariya | 2203031080125 | | | 23 | | Sparsh Patel | 2203031080053 | | | 24 | | Pratik Patel | 2203031080174 | | | 25 | | Ravi Vira | 2203031080018 |[Assignment-38](https://github.com/Ravi-vira/ReactWDF_assignment/blob/main/Task8/src/App.jsx)|[git](https://github.com/Ravi-vira/ReactWDF_assignment)| 26 | | Deep Menpara | 2203031080091 | | | 27 | | Raj Patel | 2203031080105 | | | 28 | | Darsh Kalani | 2203031080032 | | | 29 | | Vignesh Gaddam | 2203031080131 | | | 30 | | Vrushangi Mistry | 2203031080222 | [Assignment 38](https://github.com/Vrushi14/ReactJS/tree/main/Task8) | [Github](https://github.com/Vrushi14/ReactJS/) | 31 | | Achal Ladani | 2203031080229 | | | 32 | | Harsh Choudhary | 2203031080132 | | | 33 | | Jeet Dhake | 2303031087082 | | | 34 | | Vishang Lad | 2203031080035 | | | 35 | | Hani Vaghani | 2303031087088 |https://github.com/hanivaghani/ReactJSAssignment/blob/main/task8/assignment8/src/App.jsx|https://github.com/hanivaghani/ReactJSAssignment/tree/main| 36 | | Harsh Surani | 2203031080123 | | | 37 | | Yash Sakhareliya | 2203031080015 | | | 38 | | Meet Upendrakumar Patel | 2203031080011 | | | 39 | | Vraj Mehta | 2303031087034 | | | 40 | | Alisha Kaur | 2203031080202 | https://github.com/Alishakaur431/React_Assignments/tree/main/Task8/src/components | https://github.com/Alishakaur431/React_Assignments | 41 | | Pranav Faladu | 2303031087022 | | | 42 | | Bharvi Valand | 2303031087002 |[Task8](https://github.com/bharvivaland/ReactAssignments/blob/main/task8/src/components/Person.jsx)|[Github](https://github.com/bharvivaland/ReactAssignments.git)| 43 | | Neeti Darji | 2303031087080 | | | 44 | | Suhani Tandel | 2203031080160 | [Task 8](https://github.com/SuhaniTandel/React/tree/main/Task8) | [Github](https://github.com/SuhaniTandel/React)| 45 | | Rishabh Rai | 2203031080114 | | | 46 | | Rutuja Waghchaure | 2303031087089 | | | 47 | -------------------------------------------------------------------------------- /submissions/reactjs/assignment7.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Assignment 37 URL | ReactJS Assignments Repo | 2 | |--------------------------------|----------------------|-------------------|-------------| 3 | | Shubham Karvariya | 2203031080004 | | | 4 | | Ayush | 2203031080028 | | | 5 | | Mansha Soni | 2203031080121 | | | 6 | | Bhavin Parmar | 2203031080042 | | | 7 | | Pranjal Pandey | 2203031080144 | | | 8 | | Ashish Yadav | 2203031080161 | | | 9 | | Vinit Patel | 2203031080139 | [Assignment 37](https://github.com/Vinitpatel28/React/tree/main/Task7)|[GitHub](https://github.com/Vinitpatel28/React)| 10 | | Utsav Hirapra | 2203031080002 | | | 11 | | Meet Savadasbhai Sondarva | 2203031080146 | | | 12 | | Satyam | 2203031080232 |https://github.com/mrSinghSatyam/ReactJS/tree/main/Task-7|https://github.com/mrSinghSatyam/ReactJS| 13 | | Vaishnavi Sagariya | 2203031080013 | | | 14 | | Jenish Paghadal | 2203031080007 | | | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 |[Assignment](https://github.com/MannSolanki/ReactWDFAssignment/tree/main/task7) |[Github](https://github.com/MannSolanki/ReactWDFAssignment/) | 17 | | Dhyan Patel | 2203031080216 |[Assignment 36](https://github.com/dhyanpatel3/ReactWDFAssignments/tree/main/task7)|[GitHub](https://github.com/dhyanpatel3/ReactWDFAssignments/)| 18 | | Rajdeepsinh Dabhi | 2203031080069 | | | 19 | | Ankit Kumar | 2203031080184 |[Assignment 37] (https://github.com/Ankiitsuthar/ReactJS/tree/main/Task7/Assignment7) | [GitHub](https://github.com/Ankiitsuthar/ReactJS) | 20 | | Hardeep Ijardar | 2203031080031 | | | 21 | | Sahil Bharude | 2203031080235 | | | 22 | | Aryan Vekariya | 2203031080125 | | | 23 | | Sparsh Patel | 2203031080053 | | | 24 | | Pratik Patel | 2203031080174 | | | 25 | | Ravi Vira | 2203031080018 |[Assignment-37](https://github.com/Ravi-vira/ReactWDF_assignment/blob/main/Task7/src/App.jsx)|[git](https://github.com/Ravi-vira/ReactWDF_assignment)| 26 | | Deep Menpara | 2203031080091 | | | 27 | | Raj Patel | 2203031080105 | | | 28 | | Darsh Kalani | 2203031080032 | | | 29 | | Vignesh Gaddam | 2203031080131 | | | 30 | | Vrushangi Mistry | 2203031080222 | [Assignment37](https://github.com/Vrushi14/ReactJS/tree/main/Task7) | [Github](https://github.com/Vrushi14/ReactJS/) | 31 | | Achal Ladani | 2203031080229 | | | 32 | | Harsh Choudhary | 2203031080132 | | | 33 | | Jeet Dhake | 2303031087082 | | | 34 | | Vishang Lad | 2203031080035 | | | 35 | | Hani Vaghani | 2303031087088 |https://github.com/hanivaghani/ReactJSAssignment/blob/main/task7/assignment7/src/App.jsx|https://github.com/hanivaghani/ReactJSAssignment/tree/main| 36 | | Harsh Surani | 2203031080123 | | | 37 | | Yash Sakhareliya | 2203031080015 | | | 38 | | Meet Upendrakumar Patel | 2203031080011 | | | 39 | | Vraj Mehta | 2303031087034 | | | 40 | | Alisha Kaur | 2203031080202 | https://github.com/Alishakaur431/React_Assignments |https://github.com/Alishakaur431/React_Assignments/tree/main/Task7/src/components | 41 | | Pranav Faladu | 2303031087022 | | | 42 | | Bharvi Valand | 2303031087002 |[Task7](https://github.com/bharvivaland/ReactAssignments/blob/main/task7/src/components/ProductList.jsx)|[Github](https://github.com/bharvivaland/ReactAssignments.git)| 43 | | Neeti Darji | 2303031087080 | | | 44 | | Suhani Tandel | 2203031080160 | [Task 7](https://github.com/SuhaniTandel/React/tree/main/Task7) |[Github](https://github.com/SuhaniTandel/React)| 45 | | Rishabh Rai | 2203031080114 | | | 46 | | Rutuja Waghchaure | 2303031087089 | | | 47 | -------------------------------------------------------------------------------- /submissions/reactjs/assignment6.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Assignment 36 URL | ReactJS Assignments Repo | 2 | |--------------------------------|----------------------|-------------------|-------------| 3 | | Shubham Karvariya | 2203031080004 | | | 4 | | Ayush | 2203031080028 | [Assignment 36](https://github.com/ayushvadodariya/ReactAssignment/tree/main/task6) | [GitHub](https://github.com/ayushvadodariya/ReactAssignment) | 5 | | Mansha Soni | 2203031080121 | | | 6 | | Bhavin Parmar | 2203031080042 | | | 7 | | Pranjal Pandey | 2203031080144 | | | 8 | | Ashish Yadav | 2203031080161 | | | 9 | | Vinit Patel | 2203031080139 | [Assignment 36](https://github.com/Vinitpatel28/React/tree/main/Task6)|[GitHub](https://github.com/Vinitpatel28/React) | 10 | | Utsav Hirapra | 2203031080002 | | | 11 | | Meet Savadasbhai Sondarva | 2203031080146 | | | 12 | | Satyam | 2203031080232 |[Assignment 36](https://github.com/mrSinghSatyam/ReactJS/tree/main/Task-6)|[Github](https://github.com/mrSinghSatyam/ReactJS)| 13 | | Vaishnavi Sagariya | 2203031080013 | | | 14 | | Jenish Paghadal | 2203031080007 | [Assignment 36](https://github.com/ItsJESH/ReactAssignment/tree/main/Task6) |[Github](https://github.com/ItsJESH/ReactAssignment/) | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 |[Assignment 36](https://github.com/MannSolanki/ReactWDFAssignment/tree/main/task6) |[Github](https://github.com/MannSolanki/ReactWDFAssignment/) | 17 | | Dhyan Patel | 2203031080216 | | | 18 | | Rajdeepsinh Dabhi | 2203031080069 | | | 19 | | Ankit Kumar | 2203031080184 |[Assignment 36](https://github.com/Ankiitsuthar/ReactJS/tree/main/Task6/Assignment6) | [GitHub](https://github.com/Ankiitsuthar/ReactJS) | 20 | | Hardeep Ijardar | 2203031080031 | | | 21 | | Sahil Bharude | 2203031080235 | | | 22 | | Aryan Vekariya | 2203031080125 | | | 23 | | Sparsh Patel | 2203031080053 | | | 24 | | Pratik Patel | 2203031080174 | | | 25 | | Ravi Vira | 2203031080018 |[A-36](https://github.com/Ravi-vira/ReactWDF_assignment/blob/main/Task6/src/App.jsx) |[git](https://github.com/Ravi-vira/ReactWDF_assignment) | 26 | | Deep Menpara | 2203031080091 | | | 27 | | Raj Patel | 2203031080105 | | | 28 | | Darsh Kalani | 2203031080032 | | | 29 | | Vignesh Gaddam | 2203031080131 | | | 30 | | Vrushangi Mistry | 2203031080222 | [Assignment 36](https://github.com/Vrushi14/ReactJS/tree/main/Task6) | [GitHub ](https://github.com/Vrushi14/ReactJS/) | 31 | | Achal Ladani | 2203031080229 | | | 32 | | Harsh Choudhary | 2203031080132 | | | 33 | | Jeet Dhake | 2303031087082 | | | 34 | | Vishang Lad | 2203031080035 | | | 35 | | Hani Vaghani | 2303031087088 |https://github.com/hanivaghani/ReactJSAssignment/blob/main/task6/assignment6/src/App.jsx|https://github.com/hanivaghani/ReactJSAssignment/tree/main| 36 | | Harsh Surani | 2203031080123 | | | 37 | | Yash Sakhareliya | 2203031080015 | | | 38 | | Meet Upendrakumar Patel | 2203031080011 | | | 39 | | Vraj Mehta | 2303031087034 | | | 40 | | Alisha Kaur | 2203031080202 | https://github.com/Alishakaur431/React_Assignments/tree/main/Task6/src/components | https://github.com/Alishakaur431/React_Assignments | 41 | | Pranav Faladu | 2303031087022 | | | 42 | | Bharvi Valand | 2303031087002 | | | 43 | | Neeti Darji | 2303031087080 | | | 44 | | Suhani Tandel | 2203031080160 | [Task 6](https://github.com/SuhaniTandel/React/tree/main/Task6) | [Github](https://github.com/SuhaniTandel/React) | 45 | | Rishabh Rai | 2203031080114 | | | 46 | | Rutuja Waghchaure | 2303031087089 | | | 47 | -------------------------------------------------------------------------------- /submissions/js/task_9.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | 🔗 Task 9 URL | 🐱 GitHub Repository URL | 2 | |-----------------|-------------------|--------------|----------------------| 3 | | Shubham Karvariya | 2203031080004 |[Image Classification](https://marvelous-pony-d1462f.netlify.app/task9/)|[GITHUB](https://github.com/5hubhm/J_S/tree/js-8) | 4 | | Ayush | 2203031080028 | [Physic Classification](https://ayush-projects.vercel.app/physic-classification/index.html) | [GitHub](https://github.com/ayushvadodariya/javascript-project/tree/main/physic-classification) | 5 | | Mansha Soni | 2203031080121 |[Image Classification](https://js-project-pink.vercel.app/MLProject/index.html) |[Github](https://github.com/mansha-6/JS-Project) | 6 | | Bhavin Parmar | 2203031080042 |[Image Classification](https://jstasks.vercel.app/classification/index.html) | [GITHUB](https://github.com/bhavinSOL/JS_task)| 7 | | Pranjal Pandey | 2203031080144 | | | 8 | | Ashish Yadav | 2203031080161 | [Forest and Desert](https://java-script-project-seven.vercel.app/index9.html) | [GitHub](https://github.com/AshishIT611/JavaScript_Project)| 9 | | Vinit Patel | 2203031080139 | https://js-projects-fw8k.vercel.app/Task9.html | https://github.com/Vinitpatel28/JS-Projects | 10 | | Utsav Hirapra | 2203031080002 |[Image Classification](https://js-eosin.vercel.app/Task%209/index.html) |[GitHub](https://github.com/utsav1213/JS) | 11 | | Meet Savadasbhai Sondarva | 2203031080146 | https://javascript-projects-livid.vercel.app/model.html | https://github.com/meetsondarva/javascript_projects | 12 | | Satyam | 2203031080232 |(https://satyamprojects.vercel.app/imageclassification.html) |(https://github.com/mrSinghSatyam/JS102) | 13 | | Vaishnavi Sagariya | 2203031080013 | | | 14 | | Jenish Paghadal | 2203031080007 |[Image Classifier](https://jsassignment-omega.vercel.app/imgclassification.html) |[Github](https://github.com/ItsJESH/JSAssignment) | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 |[Image Classifier](https://javascriptproject000.netlify.app/soiltypeclassification/) |[Github](https://github.com/HarmonyHacker/javascript_projects) | 17 | | Dhyan Patel | 2203031080216 |https://javascript-projects-tau-azure.vercel.app/models.html |https://github.com/dhyanpatel3/javascript_projects | 18 | | Rajdeepsinh Dabhi | 2203031080069 | | | 19 | | Ankit Kumar | 2203031080184 |[Image Classification](https://java-script-project-ecru.vercel.app/Classification.html) |[Github](https://github.com/Ankiitsuthar/JavaScript-Project) | 20 | | Hardeep Ijardar | 2203031080031 | https://js-projects-2t4.pages.dev/image_Classifier| https://github.com/HardeepIjardar/JS-Projects | 21 | | Sahil Bharude | 2203031080235 | | | 22 | | Aryan Vekariya | 2203031080125 |[Task9](https://javascript-ecru-seven.vercel.app/task9/imgclassify.html) |[Github](https://github.com/aaryanvekariya/javascript) | 23 | | Sparsh Patel | 2203031080053 |[Image Classifier](https://jsprojet-git-js-task78-sparsh-patels-projects.vercel.app/imagerecogniton.html)|[Github] (https://github.com/SparshPatel1115/JS_Project)| 24 | | Pratik Patel | 2203031080174 |https://javascript-projects-zeta-seven.vercel.app/Car%20model/carmodel.html |https://github.com/Pratik00531/JavascriptProjects- | 25 | | Ravi Vira | 2203031080018 | https://ml-project-psi-black.vercel.app/ | https://github.com/Ravi-vira/ML-FILE | 26 | | Deep Menpara | 2203031080091 |https://ml-5-deep-menparas-projects.vercel.app/ |https://github.com/Deep7133/ML5 | 27 | | Raj Patel | 2203031080105 |https://js-five-beta.vercel.app/class/index.html |https://github.com/RajPatel08/JS | 28 | | Darsh Kalani | 2203031080032 | https://js-project-b2n.pages.dev/classifier | https://github.com/Darshkalani28/JS_Project | 29 | | Vignesh Gaddam | 2203031080131 |https://js-101-theta.vercel.app/img.html | https://github.com/mrvigneshgaddam/JS101 | 30 | | Vrushangi Mistry | 2203031080222 | https://vrushicodesjs.vercel.app/ImageClassification.html| https://github.com/Vrushi14/JavaScriptProjects| 31 | | Achal Ladani | 2203031080229 | | | 32 | | Harsh Choudhary | 2203031080132 |https://wdf-js.vercel.app/img.html |https://github.com/mrHarshchoudhary/WDF_JS | 33 | | Jeet Dhake | 2303031087082 | | | 34 | | Vishang Lad | 2203031080035 |https://jsprojects-bpo.pages.dev/image_Classifier |https://github.com/vishangl/JSprojects | 35 | | Hani Vaghani | 2303031087088 |https://zingy-tulumba-3b3c4b.netlify.app/index1|https://github.com/hanivaghani/JSprojects| 36 | | Harsh Surani | 2203031080123 | [pokehunt](https://pokehunt.suraniharsh.codes/) | [suraniharsh](https://github.com/suraniharsh/) | 37 | | Yash Sakhareliya | 2203031080015 |[Task 9](https://js-tasks-nine.vercel.app/Task%209/index.html) |[Git Hub](https://github.com/YashSakhareliya/JS_Task) | 38 | | Meet Upendrakumar Patel | 2203031080011 |[Task 9](https://ml-5.vercel.app/) |[Git Hub](https://github.com/MeetPatel54/Ml-5.git) | 39 | | Vraj Mehta | 2303031087034 | | | 40 | | Alisha Kaur | 2203031080202 | https://vermillion-fudge-417f60.netlify.app/ | https://github.com/Alishakaur431/image-classifier| 41 | | Pranav Faladu | 2303031087022 |https://inquisitive-croquembouche-acec27.netlify.app/index1|https://github.com/PranavFaladu/JSprojects| 42 | | Bharvi Valand | 2303031087002 |https://celebrated-pegasus-172baa.netlify.app/index1|https://github.com/bharvivaland/JSprojects| 43 | | Neeti Darji | 2303031087080 |[Task 9](https://jsprojects-6m1.pages.dev/index1) | [Github Repository](https://github.com/Neetidarji/Jsprojects) | 44 | | Suhani Tandel | 2203031080160 | [Task 9] https://coruscating-alpaca-272189.netlify.app/ |[git] https://github.com/SuhaniTandel/JS-Project | 45 | | Rishabh Rai | 2203031080114 |[Task 9](https://js-coral-psi.vercel.app/class/index.html) |[git](https://github.com/Rishabhrai29/js) | 46 | | Rutuja Waghchaure | 2303031087089 |https://jsproject-cin.pages.dev/index1 |https://github.com/rutujawaghchaure/jsproject | 47 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | linkedin.com/in/smaranjitghose. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /submissions/reactjs/assignment9.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Assignment 39 URL | ReactJS Assignments Repo | 2 | |--------------------------------|----------------------|-------------------|-------------| 3 | | Shubham Karvariya | 2203031080004 |[Assignment 39](https://github.com/5hubhm/ReactJSTasks/tree/main/Task%209)|[GitHub](https://github.com/5hubhm/ReactJSTasks) | 4 | | Ayush | 2203031080028 | | | 5 | | Mansha Soni | 2203031080121 | | | 6 | | Bhavin Parmar | 2203031080042 | | | 7 | | Pranjal Pandey | 2203031080144 |[Assignment39](https://github.com/Pranjallpandey1504/React_Assignments/tree/main/Task9) ||[Github](https://github.com/Pranjallpandey1504/React_Assignments) | 8 | | Ashish Yadav | 2203031080161 |[Assignment 39](https://github.com/AshishIT611/ReactJS/tree/main/Task%209) |[GitHub](https://github.com/AshishIT611/ReactJS) | 9 | | Vinit Patel | 2203031080139 | | | 10 | | Utsav Hirapra | 2203031080002 | | | 11 | | Meet Savadasbhai Sondarva | 2203031080146 | | | 12 | | Satyam | 2203031080232 |[Assignment 39](https://github.com/mrSinghSatyam/ReactJS/tree/main/Task-9)|[Github](https://github.com/mrSinghSatyam/ReactJS)| 13 | | Vaishnavi Sagariya | 2203031080013 | | | 14 | | Jenish Paghadal | 2203031080007 | [Assignment 39](https://github.com/ItsJESH/ReactAssignment/tree/main/Task9) |[Github](https://github.com/ItsJESH/ReactAssignment/) | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 |[Assignment 39](https://github.com/MannSolanki/ReactWDFAssignment/tree/main/task9) |[Github](https://github.com/MannSolanki/ReactWDFAssignment/) | 17 | | Dhyan Patel | 2203031080216 |https://github.com/dhyanpatel3/ReactWDFAssignments/tree/main/task9|https://github.com/dhyanpatel3/ReactWDFAssignments| 18 | | Rajdeepsinh Dabhi | 2203031080069 | | | 19 | | Ankit Kumar | 2203031080184 | | | 20 | | Hardeep Ijardar | 2203031080031 | | | 21 | | Sahil Bharude | 2203031080235 | | | 22 | | Aryan Vekariya | 2203031080125 | | | 23 | | Sparsh Patel | 2203031080053 | | | 24 | | Pratik Patel | 2203031080174 | | | 25 | | Ravi Vira | 2203031080018 | | | 26 | | Deep Menpara | 2203031080091 |https://github.com/Deep7133/ReactJS/tree/main/Task9 |https://github.com/Deep7133/ReactJS | 27 | | Raj Patel | 2203031080105 | | | 28 | | Darsh Kalani | 2203031080032 | | | 29 | | Vignesh Gaddam | 2203031080131 | | | 30 | | Vrushangi Mistry | 2203031080222 | | | 31 | | Achal Ladani | 2203031080229 | | | 32 | | Harsh Choudhary | 2203031080132 |[Assignment39](https://github.com/mrHarshchoudhary/ReactAssignment/tree/main/Assignment-9) |[Github](https://github.com/mrHarshchoudhary/ReactAssignment) | 33 | | Jeet Dhake | 2303031087082 | | | 34 | | Vishang Lad | 2203031080035 | | | 35 | | Hani Vaghani | 2303031087088 |[Assignment39](https://github.com/hanivaghani/ReactJSAssignment/blob/main/task9/assignment9/src/App.jsx)|[Github](https://github.com/hanivaghani/ReactJSAssignment/tree/main)| 36 | | Harsh Surani | 2203031080123 | | | 37 | | Yash Sakhareliya | 2203031080015 | | | 38 | | Meet Upendrakumar Patel | 2203031080011 | | | 39 | | Vraj Mehta | 2303031087034 | | | 40 | | Alisha Kaur | 2203031080202 | https://github.com/Alishakaur431/React_Assignments/tree/main/Task9/src/components |https://github.com/Alishakaur431/React_Assignments| 41 | | Pranav Faladu | 2303031087022 | | | 42 | | Bharvi Valand | 2303031087002 |[Task9](https://github.com/bharvivaland/ReactAssignments/blob/main/task9/Task9/src/components/Product.jsx)|[Github](https://github.com/bharvivaland/ReactAssignments.git)| 43 | | Neeti Darji | 2303031087080 |[Task 9](https://github.com/Neetidarji/React_Assignment/blob/main/task9/assignment9/src/App.jsx)|[Github](https://github.com/Neetidarji/React_Assignment)| 44 | | Suhani Tandel | 2203031080160 |[Task 8](https://github.com/SuhaniTandel/React/tree/main/Task9)|[Github](https://github.com/SuhaniTandel/React)| 45 | | Rishabh Rai | 2203031080114 | | | 46 | | Rutuja Waghchaure | 2303031087089 | | | 47 | -------------------------------------------------------------------------------- /submissions/expressjs/assignment1.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Assignment 21 URL | GitHub Repo | 2 | |-----------------|-------------------|------------|-------------| 3 | | Shubham Karvariya | 2203031080004 | [Assignment 21](https://github.com/5hubhm/ExpressJS101/blob/main/GlowDerm/app.js)|[Github](https://github.com/5hubhm/ExpressJS101) | 4 | | Ayush | 2203031080028 | [Assignment 21](https://github.com/ayushvadodariya/GlowDerma/blob/main/app.js) |[GitHub](https://github.com/ayushvadodariya/GlowDerma) | 5 | | Mansha Soni | 2203031080121 |[Assignment 21](https://github.com/mansha-6/GlowDerma/blob/main/index.js)|[Github](https://github.com/mansha-6/GlowDerma)| 6 | | Bhavin Parmar | 2203031080042 | | | 7 | | Pranjal Pandey | 2203031080144 |https://github.com/Pranjallpandey1504/GlowDerma/blob/main/index.js |https://github.com/Pranjallpandey1504/GlowDerma | 8 | | Ashish Yadav | 2203031080161 | [Assignment 21](https://github.com/AshishIT611/GLOWDERMA/blob/main/index.js) | [GitHub](https://github.com/AshishIT611/GLOWDERMA) | 9 | | Vinit Patel | 2203031080139 | [Assignment 1](https://github.com/Vinitpatel28/GlowDerma/blob/main/index.js)|[GitHub](https://github.com/Vinitpatel28/GlowDerma.git) | 10 | | Utsav Hirapra | 2203031080002 |[Assignment 21](https://github.com/utsav1213/Express101/blob/main/GlowDerma/app.js) |[Github](https://github.com/utsav1213/Express101) | 11 | | Meet Savadasbhai Sondarva | 2203031080146 |[Assignment 21](https://github.com/meetsondarva/GlowDerma/blob/main/index.js) |[GitHub](https://github.com/meetsondarva/GlowDerma) | 12 | | Satyam | 2203031080232 |https://github.com/mrSinghSatyam/GlowDerma/blob/main/index.js|https://github.com/mrSinghSatyam/GlowDerma | 13 | | Vaishnavi Sagariya | 2203031080013 |[Assignment 21] (https://github.com/sagariyavaishnavi/GlowDerma/blob/main/index.js) |[GitHub] (https://github.com/sagariyavaishnavi/GlowDerma) | 14 | | Jenish Paghadal | 2203031080007 |[GlowDerma](https://github.com/ItsJESH/Express101/tree/main/GlowDerma) |[Github](https://github.com/ItsJESH/Express101) | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 |[Assignment21](https://github.com/MannSolanki/GlowDerma/blob/master/index.js)|[Github](https://github.com/MannSolanki/GlowDerma) | 17 | | Dhyan Patel | 2203031080216 | [Assignment 21](https://github.com/dhyanpatel3/GlowDerma/blob/main/index.js) |[Github](https://github.com/dhyanpatel3/GlowDerma) | 18 | | Rajdeepsinh Dabhi | 2203031080069 | | | 19 | | Ankit Kumar | 2203031080184 |[Assignment 21](https://github.com/Ankiitsuthar/GlowDerma/blob/main/index.js) |[GitHub])(https://github.com/Ankiitsuthar/GlowDerma) | 20 | | Hardeep Ijardar | 2203031080031 |https://github.com/HardeepIjardar/GlowDerma/blob/main/app.js|https://github.com/HardeepIjardar/GlowDerma| 21 | | Sahil Bharude | 2203031080235 | | | 22 | | Aryan Vekariya | 2203031080125 |[Assignment21](https://github.com/aaryanvekariya/Express_Work/blob/main/index.js) |[Repository](https://github.com/aaryanvekariya/Express_Work) | 23 | | Sparsh Patel | 2203031080053 | | | 24 | | Pratik Patel | 2203031080174 | [Assignment 21](https://github.com/Pratik00531/GlowDerma/blob/master/app.js) | [Repository](https://github.com/Pratik00531/GlowDerma) | 25 | | Ravi Vira | 2203031080018 |[url] (https://github.com/Ravi-vira/Express101/blob/main/app.js) |[git](https://github.com/Ravi-vira/Express101) | 26 | | Deep Menpara | 2203031080091 |https://github.com/Deep7133/Express101/blob/main/app.js |https://github.com/Deep7133/Express101 | 27 | | Raj Patel | 2203031080105 |[Assignment 21] https://github.com/RajPatel08/express101/blob/main/app.js|[Github] https://github.com/RajPatel08/express101 | 28 | | Darsh Kalani | 2203031080032 |[Assignment 21](https://github.com/Darshkalani28/GlowDerma) | [Github](https://github.com/Darshkalani28/GlowDerma) | 29 | | Vignesh Gaddam | 2203031080131 |[Assignment 21](https://github.com/mrvigneshgaddam/GlowDerma/blob/main/index.js) |[GitHub](https://github.com/mrvigneshgaddam/GlowDerma) | 30 | | Vrushangi Mistry | 2203031080222 |https://github.com/Vrushi14/GlowDerma/blob/main/index.js |https://github.com/Vrushi14/GlowDerma | 31 | | Achal Ladani | 2203031080229 | | | 32 | | Harsh Choudhary | 2203031080132 |[Assignment 21](https://github.com/mrHarshchoudhary/GlowDerma/blob/main/index.js) |[Github](https://github.com/mrHarshchoudhary/GlowDerma) | 33 | | Jeet Dhake | 2303031087082 | | | 34 | | Vishang Lad | 2203031080035 |[Assignment 21](https://github.com/vishangl/GlowDerma/blob/main/index.js)|(https://github.com/vishangl/GlowDerma) | 35 | | Hani Vaghani | 2303031087088 |https://github.com/hanivaghani/GlowDerma/blob/master/index.js|https://github.com/hanivaghani/GlowDerma/tree/master| 36 | | Harsh Surani | 2203031080123 | [Assignment 21](https://github.com/suraniharsh/GlowDerma) | [Github](https://github.com/suraniharsh/GlowDerma) | 37 | | Yash Sakhareliya | 2203031080015 |[Assignment 21](https://github.com/YashSakhareliya/Express101/blob/main/app.js) |[GITHUB](https://github.com/YashSakhareliya/Express101/) | 38 | | Meet Upendrakumar Patel | 2203031080011 | | | 39 | | Vraj Mehta | 2303031087034 | | | 40 | | Alisha Kaur | 2203031080202 |https://github.com/Alishakaur431/GlowDerma/blob/main/index.js |https://github.com/Alishakaur431/GlowDerma | 41 | | Pranav Faladu | 2303031087022 |(https://github.com/PranavFaladu/GlowDerma/blob/main/index.js)|(https://github.com/PranavFaladu/GlowDerma/tree/main)| 42 | | Bharvi Valand | 2303031087002 | | | 43 | | Neeti Darji | 2303031087080 |[Assignment 21](https://github.com/Neetidarji/GlowDerma/blob/master/index.js)|[Github](https://github.com/Neetidarji/GlowDerma/tree/master)| 44 | | Suhani Tandel | 2203031080160 |https://github.com/SuhaniTandel/GlowDerma/blob/main/index.js|[GitHub] https://github.com/SuhaniTandel/GlowDerma| 45 | | Rishabh Rai | 2203031080114 |[Assignment 21] https://github.com/Rishabhrai29/Express1011 | [Github] https://github.com/Rishabhrai29/Express1011 | 46 | | Rutuja Waghchaure | 2303031087089 |https://github.com/rutujawaghchaure/Glowdarma/blob/main/index.js|https://github.com/rutujawaghchaure/Glowdarma| 47 | -------------------------------------------------------------------------------- /submissions/expressjs/assignment3.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Assignment 23 URL | GitHub Repo | 2 | |---------------------------------|---------------------|-------------------|-------------| 3 | | Shubham Karvariya | 2203031080004 | [Assignment 23](https://github.com/5hubhm/ExpressJS101/blob/main/GlowDerm/app.js)|[Github](https://github.com/5hubhm/ExpressJS101)| 4 | | Ayush | 2203031080028 | [Assignment 23](https://github.com/ayushvadodariya/GlowDerma/blob/main/app.js) | [GitHub](https://github.com/ayushvadodariya/GlowDerma) | 5 | | Mansha Soni | 2203031080121 | [Assignment 23](https://github.com/mansha-6/GlowDerma/blob/main/index3.js) | [Github](https://github.com/mansha-6/GlowDerma) | 6 | | Bhavin Parmar | 2203031080042 | [Assignment 23](https://github.com/bhavinbvn/GlowDerma/blob/main/app.js) | [GitHub](https://github.com/bhavinbvn/GlowDerma) | 7 | | Pranjal Pandey | 2203031080144 |https://github.com/Pranjallpandey1504/GlowDerma/blob/main/index.js |https://github.com/Pranjallpandey1504/GlowDerma | 8 | | Ashish Yadav | 2203031080161 | | | 9 | | Vinit Patel | 2203031080139 | | | 10 | | Utsav Hirapra | 2203031080002 | | | 11 | | Meet Savadasbhai Sondarva | 2203031080146 | | | 12 | | Satyam | 2203031080232 | https://github.com/mrSinghSatyam/GlowDerma/blob/main/index1.js | https://github.com/mrSinghSatyam/GlowDerma | 13 | | Vaishnavi Sagariya | 2203031080013 | | | 14 | | Jenish Paghadal | 2203031080007 | [GlowDerma](https://github.com/ItsJESH/Express101/blob/main/GlowDerma/app.js)|[GitHub](https://github.com/ItsJESH/Express101/) | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 | | | 17 | | Dhyan Patel | 2203031080216 | | | 18 | | Rajdeepsinh Dabhi | 2203031080069 | | | 19 | | Ankit Kumar | 2203031080184 |[Assignment 23](https://github.com/Ankiitsuthar/GlowDerma/blob/main/index2.js) |[GitHub](https://github.com/Ankiitsuthar/GlowDerma) | 20 | | Sahil Bharude | 2203031080235 | https://github.com/BharudeSahil/GlowDerma/blob/main/index1.js | https://github.com/BharudeSahil/GlowDerma | 21 | | Aryan Vekariya | 2203031080125 |[Assignment23](https://github.com/aaryanvekariya/Express_Work/blob/main/GlowDerma/index.js)|[Repository] (https://github.com/aaryanvekariya/Express_Work) | 22 | | Sparsh Patel | 2203031080053 | | | 23 | | Pratik Patel | 2203031080174 | | | 24 | | Ravi Vira | 2203031080018 |[url](https://github.com/Ravi-vira/Express101/blob/express-q2/GlowDerma%20Project/app.js)|[git](https://github.com/Ravi-vira/Express101) | 25 | | Raj Patel | 2203031080105 | [Assignment 23] https://github.com/RajPatel08/GlowDerma/blob/main/index1.js |[Github]https://github.com/RajPatel08/GlowDerma | 26 | | Darsh Kalani | 2203031080032 | [Assignment 23](https://github.com/Darshkalani28/GlowDerma/blob/main/index.js) | [GitHub](https://github.com/Darshkalani28/GlowDerma) | 27 | | Vignesh Gaddam | 2203031080131 | | | 28 | | Vrushangi Mistry | 2203031080222 | https://github.com/Vrushi14/GlowDerma/blob/main/api.js/blob/main/api.js | https://github.com/Vrushi14/GlowDerma | 29 | | Achal Ladani | 2203031080229 | | | 30 | | Harsh Choudhary | 2203031080132 | | | 31 | | Jeet Dhake | 2303031087082 | | | 32 | | Vishang Lad | 2203031080035 | | | 33 | | Hani Vaghani | 2303031087088 | [assignment-22](https://github.com/hanivaghani/GlowDerma/blob/master/index.js) | [GitHub](https://github.com/hanivaghani/GlowDerma/tree/master) | 34 | | Harsh Surani | 2203031080123 | | | 35 | | Yash Sakhareliya | 2203031080015 | [URL](https://github.com/YashSakhareliya/GlowDerma-/blob/main/app.js) | [Github](https://github.com/YashSakhareliya/GlowDerma-) | 36 | | Meet Upendrakumar Patel | 2203031080011 | | | 37 | | Vraj Mehta | 2303031087034 | | | 38 | | Alisha Kaur | 2203031080202 | https://github.com/Alishakaur431/GlowDerma/blob/main/index.js | https://github.com/Alishakaur431/GlowDerma | 39 | | Pranav Faladu | 2303031087022 | | | 40 | | Bharvi Valand | 2303031087002 | | | 41 | | Neeti Darji | 2303031087080 | [Assignment 23](https://github.com/Neetidarji/GlowDerma/blob/master/index.js) | [Github](https://github.com/Neetidarji/GlowDerma/tree/master) | 42 | | Suhani Tandel | 2203031080160 | | | 43 | | Rishabh Rai | 2203031080114 | | | 44 | | Rutuja Waghchaure | 2303031087089 |https://github.com/rutujawaghchaure/Glowdarma/blob/main/index.js |https://github.com/rutujawaghchaure/Glowdarma/tree/main| 45 | -------------------------------------------------------------------------------- /submissions/GenAI/task_1.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Task 1 URL | GitHub Repo | 2 | |-----------------|-------------------|------------|-------------| 3 | | Shubham Karvariya | 2203031080004 | [Task 1](https://github.com/5hubhm/OpenTalkJS/blob/main/Task.md)| [Github](https://github.com/5hubhm/OpenTalkJS)| 4 | | Ayush | 2203031080028 | [Task 1](https://github.com/ayushvadodariya/OpenTalkJS/blob/main/app.js) | [GitHub](https://github.com/ayushvadodariya/OpenTalkJS) | 5 | | Mansha Soni | 2203031080121 |https://github.com/mansha-6/OpenTalkJS/blob/main/task_1.MD|https://github.com/mansha-6/OpenTalkJS.git| 6 | | Bhavin Parmar | 2203031080042 |[Task](https://github.com/bhavinSOL/OpenTalkJS/blob/main/index.js) |[GitHub](https://github.com/bhavinSOL/OpenTalkJS) | 7 | | Pranjal Pandey | 2203031080144 |https://github.com/Pranjallpandey1504/OpenTalkJS/blob/main/task_1.MD |https://github.com/Pranjallpandey1504/OpenTalkJS | 8 | | Ashish Yadav | 2203031080161 | [Task 1](https://github.com/AshishIT611/OpenTalkJS/blob/main/task_1.MD) | [GitHub](https://github.com/AshishIT611/OpenTalkJS) | 9 | | Vinit Patel | 2203031080139 |https://github.com/Vinitpatel28/OpenTalkJS/blob/main/task_1.MD |https://github.com/Vinitpatel28/OpenTalkJS.git| 10 | | Utsav Hirapra | 2203031080002 |[Task 1](https://github.com/utsav1213/OpenTalkJS/blob/main/task1.md) |[GitHib](https://github.com/utsav1213/OpenTalkJS) | 11 | | Meet Savadasbhai Sondarva | 2203031080146 |https://github.com/meetsondarva/OpenTalkJS/blob/main/script.js|https://github.com/meetsondarva/OpenTalkJS | 12 | | Satyam | 2203031080232 |https://github.com/mrSinghSatyam/OpenTalkJS/blob/main/README.md |https://github.com/mrSinghSatyam/OpenTalkJS/blob/main/README.md | 13 | | Vaishnavi Sagariya | 2203031080013 | | | 14 | | Jenish Paghadal | 2203031080007 |[Task 1](https://github.com/ItsJESH/OpenTalkJS/blob/main/index.js) |[GitHub](https://github.com/ItsJESH/OpenTalkJS/) | 15 | | Umang Patel | 2203031080107 | | | 16 | Mann Solanki | 2203031080260 |https://github.com/HarmonyHacker/OpenTalkJS/blob/main/app.js |https://github.com/HarmonyHacker | 17 | | Dhyan Patel | 2203031080216 |https://github.com/dhyanpatel3/OpenTalkJS/blob/main/task_1.MD |https://github.com/dhyanpatel3/OpenTalkJS | 18 | | Rajdeepsinh Dabhi | 2203031080069 |[Task -1](https://github.com/Rajdeepsinh1410/openTalkJS/blob/main/task.MD) |[GitHub] (https://github.com/Rajdeepsinh1410/openTalkJS)| 19 | | Ankit Kumar | 2203031080184 | https://github.com/Ankiitsuthar/OpenTalkJS/blob/main/task_1.MD|https://github.com/Ankiitsuthar/OpenTalkJS | 20 | | Hardeep Ijardar | 2203031080031 |https://github.com/HardeepIjardar/GenAI/blob/main/task1.md|https://github.com/HardeepIjardar/GenAI| 21 | | Sahil Bharude | 2203031080235 | https://github.com/BharudeSahil/OpenTalkJS/blob/main/task1.md | https://github.com/BharudeSahil/OpenTalkJS | 22 | | Aryan Vekariya | 2203031080125 |[Task1](https://github.com/aaryanvekariya/OpenTalk-JS/blob/main/Task.md)|[Repository](https://github.com/aaryanvekariya/OpenTalk-JS)| 23 | | Sparsh Patel | 2203031080053 | | | 24 | | Pratik Patel | 2203031080174 | | | 25 | | Ravi Vira | 2203031080018 |[task-1](https://github.com/Ravi-vira/OpenTalkJS/blob/main/script.js) |[git](https://github.com/Ravi-vira/OpenTalkJS) | 26 | | Deep Menpara | 2203031080091 |https://github.com/Deep7133/OPENTALKJS/blob/main/script.js |https://github.com/Deep7133/OPENTALKJS | 27 | | Raj Patel | 2203031080105 |[task-1](https://github.com/RajPatel08/OPENTALKJS/blob/main/script.js) |[git](https://github.com/RajPatel08/OPENTALKJS) | 28 | | Darsh Kalani | 2203031080032 | [Task 1](https://github.com/Darshkalani28/OpenTalkJS/blob/darsh-1/task1.md) | [Repo](https://github.com/Darshkalani28/OpenTalkJS) | 29 | | Vignesh Gaddam | 2203031080131 |[Task](https://github.com/mrvigneshgaddam/OpenTalkJS/blob/main/Task1.md) |[GitHub](https://github.com/mrvigneshgaddam/OpenTalkJS) | 30 | | Vrushangi Mistry | 2203031080222 |https://github.com/Vrushi14/OpenTalkJS | https://github.com/Vrushi14| 31 | | Achal Ladani | 2203031080229 | | | 32 | | Harsh Choudhary | 2203031080132 |https://github.com/mrHarshchoudhary/OpenTalkJS/blob/main/Task1.md |https://github.com/mrHarshchoudhary/OpenTalkJS | 33 | | Jeet Dhake | 2303031087082 | | | 34 | (https://github.com/suraniharsh/GenAI) | 35 | | Vishang Lad | 2203031080035 |https://github.com/vishangl/OpenTalkJS/blob/main/task_1.MD|https://github.com/vishangl/OpenTalkJS| 36 | | Hani Vaghani | 2303031087088 |https://github.com/hanivaghani/OpenTalkJS/blob/main/task_1.MD |https://github.com/hanivaghani/OpenTalkJS | 37 | | Harsh Surani | 2203031080123 | [Task 1](https://github.com/suraniharsh/GenAI/blob/main/Task_1.md) | [GenAI] 38 | | Yash Sakhareliya | 2203031080015 |[Task 1](https://github.com/YashSakhareliya/OpenTalkJS/blob/main/index.js) |[Github](https://github.com/YashSakhareliya/OpenTalkJS) | 39 | | Meet Upendrakumar Patel | 2203031080011 |[Task 1](https://github.com/MeetPatel54/GenAI/blob/main/Task_1.md) |[GitHub](https://github.com/MeetPatel54/OpenTalkJS.git) | 40 | | Vraj Mehta | 2303031087034 | | | 41 | | Alisha Kaur | 2203031080202 |https://github.com/Alishakaur431/OpenTalkJS/blob/main/task_1.MD | https://github.com/Alishakaur431/OpenTalkJS.git| 42 | | Pranav Faladu | 2303031087022 |https://github.com/PranavFaladu/OpenTalkJS/blob/main/task_1.MD|https://github.com/PranavFaladu/OpenTalkJS| 43 | | Bharvi Valand | 2303031087002 |[Task1](https://github.com/bharvivaland/OpenTalkJS/blob/main/task1.MD)|[Github](https://github.com/bharvivaland/OpenTalkJS.git)| 44 | | Neeti Darji | 2303031087080 |[task](https://github.com/Neetidarji/OpenTalkJS/blob/main/node_modules/task1.MD )|[github](https://github.com/Neetidarji/OpenTalkJS) | 45 | | Suhani Tandel | 2203031080160 | [Task 1](https://github.com/SuhaniTandel/OpenTalkJS/blob/master/Task_1.MD) | [github] (https://github.com/SuhaniTandel/OpenTalkJS) | 46 | | Rishabh Rai | 2203031080114 |https://github.com/Rishabhrai29/OpenTalkJS/blob/main/task_1.MD |https://github.com/Rishabhrai29/OpenTalkJS | 47 | | Rutuja Waghchaure | 2303031087089 |https://github.com/rutujawaghchaure/OpenTalkJS/blob/main/task1.MD|https://github.com/rutujawaghchaure/OpenTalkJS/tree/main| 48 | -------------------------------------------------------------------------------- /submissions/nodejs/assignment3.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Assignment 18 URL | GitHub Repo | 2 | |-----------------|-------------------|------------|-------------| 3 | | Shubham Karvariya | 2203031080004 | [Assignment 18](https://github.com/5hubhm/Inspect_URL/blob/main/index.js) | [Github](https://github.com/5hubhm/Inspect_URL) 4 | | Ayush | 2203031080028 | [Assignment 18](https://github.com/ayushvadodariya/NodeJS101/blob/main/InspectUrl/app.js) | [GitHub](https://github.com/ayushvadodariya/NodeJS101) | 5 | | Mansha Soni | 2203031080121 |[Task](https://github.com/mansha-6/InspectURL/blob/main/main.js)|[Github](https://github.com/mansha-6/InspectURL) | 6 | | Bhavin Parmar | 2203031080042 |[Assignment](https://github.com/bhavinbvn/Inspect_URL/blob/main/main.js) |[GitHub](https://github.com/bhavinbvn/Inspect_URL) | 7 | | Pranjal Pandey | 2203031080144 |https://github.com/Pranjallpandey1504/Inspect-URL/blob/main/index.js |https://github.com/Pranjallpandey1504/Inspect-URL | 8 | | Ashish Yadav | 2203031080161 | [Task 3](https://github.com/AshishIT611/InspectURL/blob/main/main.js) | [GitHub](https://github.com/AshishIT611/InspectURL) | 9 | | Vinit Patel | 2203031080139 |[Assignment 3](https://github.com/Vinitpatel28/Inspect_URL/blob/main/main.js) | [GitHub](https://github.com/Vinitpatel28/Inspect_URL)| 10 | | Utsav Hirapra | 2203031080002 |[Inspect Url](https://github.com/utsav1213/inspect_url/blob/main/main.js) |[GitHub](https://github.com/utsav1213/inspect_url) | 11 | | Meet Savadasbhai Sondarva | 2203031080146 | [Task-3](https://github.com/meetsondarva/NodeJS101/blob/main/url.js)| [Github](https://github.com/meetsondarva/NodeJS101)| 12 | | Satyam | 2203031080232 |https://github.com/mrSinghSatyam/inspactURL/blob/main/main.js |[github Repo](https://github.com/mrSinghSatyam/inspactURL)| 13 | | Vaishnavi Sagariya | 2203031080013 | [Task-3](https://github.com/sagariyavaishnavi/Inspect_url/blob/main/app.js)|[GitHub](https://github.com/sagariyavaishnavi/Inspect_url) | 14 | | Jenish Paghadal | 2203031080007 |[Inspect URL](https://github.com/ItsJESH/Inspect_URL/blob/main/index.js) |[Github](https://github.com/ItsJESH/Inspect_URL/) | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 |[Task](https://github.com/MannSolanki/Inspect_URL/blob/main/url.js) |[Github](https://github.com/MannSolanki/Inspect_URL/) | 17 | | Dhyan Patel | 2203031080216 |https://github.com/dhyanpatel3/NodeJS101/blob/main/url.js |https://github.com/dhyanpatel3/NodeJS101 | 18 | | Rajdeepsinh Dabhi | 2203031080069 |[Assignment-18](https://github.com/Rajdeepsinh1410/InspectUrl/blob/main/main.js) |[GitHub](https://github.com/Rajdeepsinh1410/InspectUrl) | 19 | | Ankit Kumar | 2203031080184 |[Inspect URL](https://github.com/Ankiitsuthar/Inspect_URL/blob/main/app.js) |[GitHub](https://github.com/Ankiitsuthar/Inspect_URL) | 20 | | Hardeep Ijardar | 2203031080031 |https://github.com/HardeepIjardar/LinkLens/blob/main/main.js|https://github.com/HardeepIjardar/LinkLens| 21 | | Sahil Bharude | 2203031080235 | https://github.com/BharudeSahil/URL_Spect | https://github.com/BharudeSahil/URL_Spect/blob/main/main.js | 22 | | Aryan Vekariya | 2203031080125 |[Assignmnet18](https://github.com/aaryanvekariya/Inspect_URL/blob/node-q3/index.js)|[Repository](https://github.com/aaryanvekariya/Inspect_URL)| 23 | | Sparsh Patel | 2203031080053 | | | 24 | | Pratik Patel | 2203031080174 |https://github.com/Pratik00531/InspectURL/blob/node-q3/main.js | https://github.com/Pratik00531/InspectURL| 25 | | Ravi Vira | 2203031080018 |[url](https://github.com/Ravi-vira/Inspect-URl-Node-App/blob/main/main.js) |[git](https://github.com/Ravi-vira/Inspect-URl-Node-App) | 26 | | Deep Menpara | 2203031080091 | | | 27 | | Raj Patel | 2203031080105 |https://github.com/RajPatel08/url_validator/blob/main/url.js |https://github.com/RajPatel08/url_validator | 28 | | Darsh Kalani | 2203031080032 | [Task 3](https://github.com/Darshkalani28/inspectURL/blob/main/script.js) | [Repo](https://github.com/Darshkalani28/inspectURL) | 29 | | Vignesh Gaddam | 2203031080131 |[Task3](https://github.com/mrvigneshgaddam/Inspect_URL/blob/main/main.js) |[GitHub](https://github.com/mrvigneshgaddam/Inspect_URL) | 30 | | Vrushangi Mistry | 2203031080222 |https://github.com/Vrushi14/Inspect_Url/blob/main/main.js | https://github.com/Vrushi14/Inspect_Url/tree/main| 31 | | Achal Ladani | 2203031080229 | | | 32 | | Harsh Choudhary | 2203031080132 |[url](https://github.com/mrHarshchoudhary/Inspect_URL/blob/main/main.js) | [git](https://github.com/mrHarshchoudhary/Inspect_URL)| 33 | | Jeet Dhake | 2303031087082 | | | 34 | | Hani Vaghani | 2303031087088 |https://github.com/hanivaghani/InspectURL/blob/node-q3/main.js|https://github.com/hanivaghani/InspectURL| 35 | | Harsh Surani | 2203031080123 | [Assignment 18](https://github.com/suraniharsh/NodeJS101/tree/Assignments-18) | [Github](https://github.com/suraniharsh/NodeJS101) | 36 | | Yash Sakhareliya | 2203031080015 |[URL](https://github.com/YashSakhareliya/Inspact_URL/blob/main/main.js) |[GitHub](https://github.com/YashSakhareliya/Inspact_URL/) | 37 | | Meet Upendrakumar Patel | 2203031080011 |[URL](https://github.com/MeetPatel54/InspectURL/blob/main/main.js) |[GitHub](https://github.com/MeetPatel54/InspectURL.git) | 38 | | Vraj Mehta | 2303031087034 | | | 39 | | Alisha Kaur | 2203031080202 |https://github.com/Alishakaur431/Inspect-URL/blob/main/index.js | https://github.com/Alishakaur431/Inspect-URL| 40 | | Pranav Faladu | 2303031087022 |(https://github.com/PranavFaladu/InspectURL/blob/main/index.js)|(https://github.com/PranavFaladu/InspectURL.git)| 41 | | Rutuja Waghchaure | 2303031087089 |https://github.com/rutujawaghchaure/Inspect_URL/blob/main/main.js|https://github.com/rutujawaghchaure/Inspect_URL/tree/main| 42 | | Bharvi Valand | 2303031087002 |(https://github.com/bharvivaland/Inspect_URL/blob/main/main.js)|(https://github.com/bharvivaland/Inspect_URL.git)| 43 | | Neeti Darji | 2303031087080 |[Assignment 18](https://github.com/Neetidarji/InspectURL/blob/main/main.js)|[Github](https://github.com/Neetidarji/InspectURL)| 44 | | Suhani Tandel | 2203031080160 | [Assignment 3](https://github.com/SuhaniTandel/Inspect_URL/blob/main/main.js)|[Github](https://github.com/SuhaniTandel/Inspect_URL) | 45 | | Rishabh Rai | 2203031080114 |https://github.com/Rishabhrai29/URL_VALIDATOR/blob/main/url.js |https://github.com/Rishabhrai29/URL_VALIDATOR | -------------------------------------------------------------------------------- /submissions/GenAI/task_4.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Task 4 URL | GitHub Repo | 2 | |-----------------|-------------------|------------|-------------| 3 | | Shubham Karvariya | 2203031080004 | [Task 4](https://github.com/5hubhm/OpenTalkJS/blob/stage-4/index.js) | [Github](https://github.com/5hubhm/OpenTalkJS) | 4 | | Ayush | 2203031080028 |[Task 4](https://github.com/ayushvadodariya/OpenTalkJS/blob/main/app.js) |[GitHub](https://github.com/ayushvadodariya/OpenTalkJS) | 5 | | Mansha Soni | 2203031080121 |[Task-4](https://github.com/mansha-6/OpenTalkJS/blob/main/index2.js)|[Github](https://github.com/mansha-6/OpenTalkJS) | 6 | | Bhavin Parmar | 2203031080042 | [Task](https://github.com/bhavinSOL/OpenTalkJS/blob/stage-4/index.js) | [GitHub](https://github.com/bhavinSOL/OpenTalkJS/) | 7 | | Pranjal Pandey | 2203031080144 | https://github.com/Pranjallpandey1504/OpenTalkJS/blob/main/task4/index.js | https://github.com/Pranjallpandey1504/OpenTalkJS | 8 | | Ashish Yadav | 2203031080161 | [Task 4](https://github.com/AshishIT611/OpenTalkJS/blob/main/index.js) | [GitHub](https://github.com/AshishIT611/OpenTalkJS) | 9 | | Vinit Patel | 2203031080139 | [Task 4](https://github.com/Vinitpatel28/OpenTalkJS/blob/main/app.js) | [GitHub](https://github.com/Vinitpatel28/OpenTalkJS) | 10 | | Utsav Hirapra | 2203031080002 | [Task-4](https://github.com/utsav1213/OpenTalkJS/blob/Stage-4/script.js) | [GitHub](https://github.com/utsav1213/OpenTalkJS/tree/main) | 11 | | Meet Savadasbhai Sondarva | 2203031080146 |[task-4](https://github.com/meetsondarva/OpenTalkJS/blob/main/task.js)|[Github] (https://github.com/meetsondarva/OpenTalkJS)| 12 | | Satyam | 2203031080232 | https://github.com/mrSinghSatyam/OpenTalkJS/blob/main/task.js | https://github.com/mrSinghSatyam/OpenTalkJS | 13 | | Vaishnavi Sagariya | 2203031080013 | [Task-4](https://github.com/sagariyavaishnavi/OpenTalkJS/blob/main/app.js)|[GitHub](https://github.com/sagariyavaishnavi/OpenTalkJS) | 14 | | Jenish Paghadal | 2203031080007 | | | 15 | | Umang Patel | 2203031080107 |[Task 4](https://github.com/ItsJESH/OpenTalkJS/blob/Stage4/index.js) |[GitHub](https://github.com/ItsJESH/OpenTalkJS/tree/Stage4) | 16 | | Mann Solanki | 2203031080260 |[Task16](https://github.com/HarmonyHacker/OpenTalkJS/blob/main/task4.js)|[Github](https://github.com/HarmonyHacker/OpenTalkJS)| 17 | | Dhyan Patel | 2203031080216 | https://github.com/dhyanpatel3/OpenTalkJS/blob/main/task.js | https://github.com/dhyanpatel3/OpenTalkJS | 18 | | Rajdeepsinh Dabhi | 2203031080069 | [Task](https://github.com/Rajdeepsinh1410/openTalkJS/blob/stage4/script.js) | [GitHub](https://github.com/Rajdeepsinh1410/openTalkJS/tree/stage4) | 19 | | Ankit Kumar | 2203031080184 |[Task 4](https://github.com/Ankiitsuthar/OpenTalkJS/blob/main/script.js) |[Github](https://github.com/Ankiitsuthar/OpenTalkJS) | 20 | | Hardeep Ijardar | 2203031080031 | | | 21 | | Sahil Bharude | 2203031080235 | https://github.com/BharudeSahil/OpenTalkJS/blob/main/task4.js | https://github.com/BharudeSahil/OpenTalkJS | 22 | | Aryan Vekariya | 2203031080125 |[Task4](https://github.com/aaryanvekariya/OpenTalk-JS/blob/main/index.js)|[Repository](https://github.com/aaryanvekariya/OpenTalk-JS) | 23 | | Sparsh Patel | 2203031080053 | | | 24 | | Pratik Patel | 2203031080174 | https://github.com/Pratik00531/OpenTalkJS/blob/stage4/script.js | https://github.com/Pratik00531/OpenTalkJS | 25 | | Ravi Vira | 2203031080018 | [task-4](https://github.com/Ravi-vira/OpenTalkJS/blob/main/script.js) | [git](https://github.com/Ravi-vira/OpenTalkJS) | 26 | | Deep Menpara | 2203031080091 | https://github.com/Deep7133/OPENTALKJS/blob/main/script.js | https://github.com/Deep7133/OPENTALKJS | 27 | | Raj Patel | 2203031080105 |https://github.com/RajPatel08/OPENTALKJS/blob/main/script4.js |https://github.com/RajPatel08/OPENTALKJS | 28 | | Darsh Kalani | 2203031080032 | [Task 4](https://github.com/Darshkalani28/OpenTalkJS/blob/darsh-1/Task-4/script.js) | [Repo](https://github.com/Darshkalani28/OpenTalkJS/tree/darsh-1/Task-4) | 29 | | Vignesh Gaddam | 2203031080131 |[Task_4](https://github.com/mrvigneshgaddam/OpenTalkJS/blob/main/task4.js) | [GitHub](https://github.com/mrvigneshgaddam/OpenTalkJS) | 30 | | Vrushangi Mistry | 2203031080222 | https://github.com/Vrushi14/OpenTalkJS/blob/main/task.js | https://github.com/Vrushi14/OpenTalkJS/tree/main | 31 | | Achal Ladani | 2203031080229 | | | 32 | | Harsh Choudhary | 2203031080132 | https://github.com/mrHarshchoudhary/OpenTalkJS/blob/main/task4.js | https://github.com/mrHarshchoudhary/OpenTalkJS | 33 | | Jeet Dhake | 2303031087082 | | | 34 | | Vishang Lad | 2203031080035 | | | 35 | | Yash Sakhareliya | 2203031080015 | [Task 4](https://github.com/YashSakhareliya/OpenTalkJS/blob/Stage4/script.js) | [Github](https://github.com/YashSakhareliya/OpenTalkJS/tree/main) | 36 | | Meet Upendrakumar Patel | 2203031080011 |[Task 4](https://github.com/MeetPatel54/OpenTalkJS/blob/main/script.js) |[GitHub](https://github.com/MeetPatel54/OpenTalkJS/tree/main) | 37 | | Hani Vaghani | 2303031087088 | https://github.com/hanivaghani/OpenTalkJS/blob/main/script.js | https://github.com/hanivaghani/OpenTalkJS | 38 | | Harsh Surani | 2203031080123 | [Task 4](https://github.com/suraniharsh/GenAI/blob/main/newScript.js) | [Github](https://github.com/suraniharsh/GenAI) | 39 | | Vraj Mehta | 2303031087034 | | | 40 | | Alisha Kaur | 2203031080202 | https://github.com/Alishakaur431/OpenTalkJS/blob/main/task4/index.js | https://github.com/Alishakaur431/OpenTalkJS | 41 | | Pranav Faladu | 2303031087022 | https://github.com/PranavFaladu/OpenTalkJS/blob/main/script2.js | https://github.com/PranavFaladu/OpenTalkJS/tree/main | 42 | | Bharvi Valand | 2303031087002 | [Task4](https://github.com/bharvivaland/OpenTalkJS/blob/5fb20f198bca85392d5cb4678238a999590490e2/script2.js) | [Github](https://github.com/bharvivaland/OpenTalkJS.git) | 43 | | Neeti Darji | 2303031087080 | [Task 4](https://github.com/Neetidarji/OpenTalkJS/blob/main/script.js) | [Github](https://github.com/Neetidarji/OpenTalkJS) | 44 | | Suhani Tandel | 2203031080160 |[Task 4](https://github.com/SuhaniTandel/OpenTalkJS/blob/master/app.js) |[Github](https://github.com/SuhaniTandel/OpenTalkJS) | 45 | | Rishabh Rai | 2203031080114 | https://github.com/Rishabhrai29/OpenTalkJS/blob/main/script4.js | https://github.com/Rishabhrai29/OpenTalkJS | 46 | | Rutuja Waghchaure | 2303031087089 | https://github.com/rutujawaghchaure/OpenTalkJS/blob/main/script1.js | https://github.com/rutujawaghchaure/OpenTalkJS/tree/main | -------------------------------------------------------------------------------- /submissions/nodejs/assignment1.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Task 1 URL | GitHub Repo | 2 | |-----------------|-------------------|------------|-------------| 3 | | Shubham Karvariya | 2203031080004 | | | 4 | | Ayush | 2203031080028 | | | 5 | | Mansha Soni | 2203031080121 |[Task-1](https://github.com/mansha-6/NodeJS101/blob/main/node_a1.js)|[Github](https://github.com/mansha-6/NodeJS101) | 6 | | Shubham Karvariya | 2203031080004 | [node_a1](https://github.com/5hubhm/NodeJS101/blob/main/node_a1.js)|[Github](https://github.com/5hubhm/NodeJS101)| 7 | | Ayush | 2203031080028 |[Task1](https://github.com/ayushvadodariya/NodeJS101/blob/main/node_a1.js) | [Github](https://github.com/ayushvadodariya/NodeJS101) | 8 | | Bhavin Parmar | 2203031080042 |[File Link](https://github.com/bhavinSOL/NodeJS_Task/blob/main/node_a1.js) |[GitHub](https://github.com/bhavinSOL/NodeJS_Task) | 9 | | Pranjal Pandey | 2203031080144 |https://github.com/Pranjallpandey1504/NodeJS101/blob/main/node_a1.js |https://github.com/Pranjallpandey1504/NodeJS101| 10 | | Ashish Yadav | 2203031080161 |[Task 1](https://github.com/AshishIT611/NodeJS101/blob/main/node_a1.js) |[GitHub](https://github.com/AshishIT611/NodeJS101) | 11 | | Vinit Patel | 2203031080139 |https://github.com/Vinitpatel28/NodeJS101/blob/main/node_a1.js |https://github.com/Vinitpatel28/NodeJS101 | 12 | | Utsav Hirapra | 2203031080002 |[Task 1](https://github.com/utsav1213/Backend_learning/blob/main/NodeJS101/node_a1.js) |[GitHub](https://github.com/utsav1213/Backend_learning) | 13 | | Meet Savadasbhai Sondarva | 2203031080146 |https://github.com/meetsondarva/NodeJS101/blob/main/node_a1.js |https://github.com/meetsondarva/NodeJS101 | 14 | | Satyam | 2203031080232 |https://github.com/mrSinghSatyam/NodeJS101/blob/main/node_a1.js |https://github.com/mrSinghSatyam/NodeJS101 | 15 | | Vaishnavi Sagariya | 2203031080013 | https://github.com/sagariyavaishnavi/NodeJS101/blob/main/node_a1.js |https://github.com/sagariyavaishnavi/NodeJS101 | 16 | | Jenish Paghadal | 2203031080007 | [Node A1](https://github.com/ItsJESH/NodeJS101/blob/main/node_a1.js) | [GitHub](https://github.com/ItsJESH/NodeJS101/) | 17 | | Umang Patel | 2203031080107 | | | 18 | | Mann Solanki | 2203031080260 |https://github.com/HarmonyHacker/NodeJS101/blob/main/node_a1.js |https://github.com/HarmonyHacker/NodeJS101 | 19 | | Dhyan Patel | 2203031080216 |https://github.com/dhyanpatel3/NodeJS101/blob/main/node_a1.js |https://github.com/dhyanpatel3/NodeJS101 | 20 | | Rajdeepsinh Dabhi | 2203031080069 |[node_a1](https://github.com/Rajdeepsinh1410/NodeJS101/blob/main/node_a1.js) |[Github](https://github.com/Rajdeepsinh1410/NodeJS101.git) | 21 | | Ankit Kumar | 2203031080184 |https://github.com/Ankiitsuthar/NodeJS101/blob/main/node_a1.js | https://github.com/Ankiitsuthar/NodeJS101| 22 | | Hardeep Ijardar | 2203031080031 | https://github.com/HardeepIjardar/NodeJS101/blob/main/node_a1.js | https://github.com/HardeepIjardar/NodeJS101 | 23 | | Sahil Bharude | 2203031080235 | https://github.com/BharudeSahil/Node_101/blob/main/node_a1.js | https://github.com/BharudeSahil/Node_101 | 24 | | Aryan Vekariya | 2203031080125 |[Task](https://github.com/aaryanvekariya/Backend-JS/blob/master/index.js)|[Repository](https://github.com/aaryanvekariya/Backend-JS) | 25 | | Sparsh Patel | 2203031080053 | | | 26 | | Pratik Patel | 2203031080174 | https://github.com/Pratik00531/NodeJs-101/blob/node-q1/index.js |https://github.com/Pratik00531/NodeJs-101/tree/node-q1 | 27 | | Ravi Vira | 2203031080018 | [task-1] (https://github.com/Ravi-vira/Backend/blob/main/node_a1.js/index.js) |[git](https://github.com/Ravi-vira/Backend) | 28 | | Deep Menpara | 2203031080091 |https://github.com/Deep7133/backend-/tree/main/node-q1 |https://github.com/Deep7133/backend- | 29 | | Raj Patel | 2203031080105 |https://github.com/RajPatel08/NodeJS101/blob/main/node_a1.js |https://github.com/RajPatel08/NodeJS101 | 30 | | Darsh Kalani| 2203031080032 | https://github.com/Darshkalani28/NodeJS101/blob/main/node_a1.js | https://github.com/Darshkalani28/NodeJS101 | 31 | | Vignesh Gaddam | 2203031080131 |[Task 1](https://github.com/mrvigneshgaddam/NodeJS101/blob/main/node_a1.js) |[GitHub](https://github.com/mrvigneshgaddam/NodeJS101)| 32 | | Vrushangi Mistry | 2203031080222 |https://github.com/Vrushi14/NodeJS101/blob/main/node_a1.js | https://github.com/Vrushi14| 33 | | Achal Ladani | 2203031080229 | | | 34 | | Harsh Choudhary | 2203031080132 |https://github.com/mrHarshchoudhary/NodeJS101/blob/main/node_a1.js | https://github.com/mrHarshchoudhary/NodeJS101| 35 | | Jeet Dhake | 2303031087082 | | | 36 | | Vishang Lad | 2203031080035 |https://github.com/vishangl/NodeJS101/blob/main/node_a1.js |https://github.com/vishangl/NodeJS101 | 37 | | Hani Vaghani | 2303031087088 |https://github.com/hanivaghani/NodeJS101/blob/main/node_a1.js|https://github.com/hanivaghani/NodeJS101| 38 | | Harsh Surani | 2203031080123 | [Task 1](https://github.com/suraniharsh/NodeJS101/blob/main/node_a1.js) | [Github](https://github.com/suraniharsh/NodeJS101) | 39 | | Yash Sakhareliya | 2203031080015 |[Task 1 url](https://github.com/YashSakhareliya/Backend_Task/blob/main/main.js) |[Github](https://github.com/yashSakhareliya/Backend_Task) | 40 | | Meet Upendrakumar Patel | 2203031080011 |[Task 1](https://github.com/MeetPatel54/NodeJS101/blob/main/main.js) |[GitHub](https://github.com/MeetPatel54/NodeJS101.git) | 41 | | Vraj Mehta | 2303031087034 | | | 42 | | Alisha Kaur | 2203031080202 |https://github.com/Alishakaur431/NodeJS101/blob/main/node_a1.js |https://github.com/Alishakaur431/NodeJS101 | 43 | | Pranav Faladu | 2303031087022 |https://github.com/PranavFaladu/NODEJS101/blob/main/index.js|https://github.com/PranavFaladu?tab=repositories| 44 | | Bharvi Valand | 2303031087002 |[Task](https://github.com/bharvivaland/NodeJS101/blob/main/node_a1.js)|[Github](https://github.com/bharvivaland/NodeJS101.git)| 45 | | Neeti Darji | 2303031087080 |[Task](https://github.com/Neetidarji/NodeJS101/blob/main/node_a1.js) |[Github Repo](https://github.com/Neetidarji/NodeJS101) | 46 | | Suhani Tandel | 2203031080160 | [Task] (https://github.com/SuhaniTandel/NodeJS101/blob/main/index.js)|[Github] https://github.com/SuhaniTandel/NodeJS101| 47 | | Rishabh Rai | 2203031080114 |https://github.com/Rishabhrai29/node-q1/blob/main/node_a1.js |https://github.com/Rishabhrai29/NodeJS101 | 48 | | Rutuja Waghchaure | 2303031087089 |https://github.com/rutujawaghchaure/NodeJS101/blob/main/node_a1.js|https://github.com/rutujawaghchaure/NodeJS101| 49 | -------------------------------------------------------------------------------- /submissions/GenAI/task_2.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Task 2 Script | GitHub Repo | 2 | |-----------------|-------------------|------------|-------------| 3 | | Shubham Karvariya | 2203031080004 |[Task 2](https://github.com/5hubhm/OpenTalkJS/blob/main/index.js) |[Github](https://github.com/5hubhm/OpenTalkJS) | 4 | | Ayush | 2203031080028 |[Task-2](https://github.com/ayushvadodariya/OpenTalkJS/blob/main/app.js) | [GitHub](https://github.com/ayushvadodariya/OpenTalkJS) | 5 | | Mansha Soni | 2203031080121 | [Task-2](https://github.com/mansha-6/OpenTalkJS/blob/main/task_2.js)| [Github](https://github.com/mansha-6/OpenTalkJS)| 6 | | Bhavin Parmar | 2203031080042 | [Task](https://github.com/bhavinSOL/OpenTalkJS/blob/main/index.js) | [GitHub](https://github.com/bhavinSOL/OpenTalkJS) | 7 | | Pranjal Pandey | 2203031080144 | https://github.com/Pranjallpandey1504/OpenTalkJS/blob/main/script.js | https://github.com/Pranjallpandey1504/OpenTalkJS/tree/main | 8 | | Ashish Yadav | 2203031080161 | [Task 2](https://github.com/AshishIT611/OpenTalkJS/blob/main/script.js) | [GitHub](https://github.com/AshishIT611/OpenTalkJS) | 9 | | Vinit Patel | 2203031080139 | [Task 2](https://github.com/Vinitpatel28/OpenTalkJS/blob/main/script.js) | [GitHub](https://github.com/Vinitpatel28/OpenTalkJS) | 10 | | Utsav Hirapra | 2203031080002 |[Task 2](https://github.com/utsav1213/OpenTalkJS/blob/main/index.js) |[GitHub](https://github.com/utsav1213/OpenTalkJS) | 11 | | Meet Savadasbhai Sondarva | 2203031080146 |https://github.com/meetsondarva/OpenTalkJS/blob/main/main.js |https://github.com/meetsondarva/OpenTalkJS | 12 | | Satyam | 2203031080232 | https://github.com/mrSinghSatyam/OpenTalkJS/blob/main/main.js | https://github.com/mrSinghSatyam/OpenTalkJS/blob/main/main.js | 13 | | Vaishnavi Sagariya | 2203031080013 | [Task2](https://github.com/sagariyavaishnavi/OpenTalkJS/blob/main/script1.js)|[GitHub](https://github.com/sagariyavaishnavi/OpenTalkJS) | 14 | | Jenish Paghadal | 2203031080007 |[Task 2](https://github.com/ItsJESH/OpenTalkJS/blob/Stage1-2/index.js) |[Github](https://github.com/ItsJESH/OpenTalkJS/tree/Stage1-2) | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 |https://github.com/HarmonyHacker/OpenTalkJS/blob/main/main.js | https://github.com/HarmonyHacker/OpenTalkJS| 17 | | Dhyan Patel | 2203031080216 |https://github.com/dhyanpatel3/OpenTalkJS/blob/main/main.js |https://github.com/dhyanpatel3/OpenTalkJS | 18 | | Rajdeepsinh Dabhi | 2203031080069 |[Task](https://github.com/Rajdeepsinh1410/openTalkJS/tree/firstname-14) |[GitHub](https://github.com/Rajdeepsinh1410/openTalkJS) | 19 | | Ankit Kumar | 2203031080184 | https://github.com/Ankiitsuthar/OpenTalkJS/blob/main/task2.js | https://github.com/Ankiitsuthar/OpenTalkJS | 20 | | Hardeep Ijardar | 2203031080031 |https://github.com/HardeepIjardar/GenAI/blob/main/Assignment-14.js|https://github.com/HardeepIjardar/GenAI| 21 | | Sahil Bharude | 2203031080235 | https://github.com/BharudeSahil/OpenTalkJS/blob/main/task2.js | https://github.com/BharudeSahil/OpenTalkJS | 22 | | Aryan Vekariya | 2203031080125 | | | 23 | | Sparsh Patel | 2203031080053 | | | 24 | | Pratik Patel | 2203031080174 |https://github.com/Pratik00531/OpenTalkJS/blob/stage1/script.js |https://github.com/Pratik00531/OpenTalkJS | 25 | | Ravi Vira | 2203031080018 |[task-2](https://github.com/Ravi-vira/OpenTalkJS/blob/main/script.js) |[git](https://github.com/Ravi-vira/OpenTalkJS) | 26 | | Deep Menpara | 2203031080091 | https://github.com/Deep7133/OPENTALKJS/blob/main/script.js | https://github.com/Deep7133/OPENTALKJS | 27 | | Raj Patel | 2203031080105 |https://github.com/RajPatel08/OPENTALKJS/blob/main/main.js |https://github.com/RajPatel08/OPENTALKJS | 28 | | Darsh Kalani | 2203031080032 | [Task 2](https://github.com/Darshkalani28/OpenTalkJS/blob/darsh-14/task1.md) | [Repo](https://github.com/Darshkalani28/OpenTalkJS/tree/darsh-14) | 29 | | Vignesh Gaddam | 2203031080131 | | | 30 | | Vrushangi Mistry | 2203031080222 | https://github.com/Vrushi14/OpenTalkJS/blob/main/main.js | https://github.com/Vrushi14/OpenTalkJS | 31 | | Vignesh Gaddam | 2203031080131 | [Task_2](https://github.com/mrvigneshgaddam/OpenTalkJS/blob/main/main.js) | [GitHub](https://github.com/mrvigneshgaddam/OpenTalkJS) | 32 | | Vrushangi Mistry | 2203031080222 | | | 33 | | Achal Ladani | 2203031080229 | | | 34 | | Harsh Choudhary | 2203031080132 | https://github.com/mrHarshchoudhary/OpenTalkJS/blob/main/second.js | https://github.com/mrHarshchoudhary/OpenTalkJS | 35 | | Jeet Dhake | 2303031087082 | | | 36 | | Vishang Lad | 2203031080035 | https://github.com/vishangl/OpenTalkJS/blob/main/script1.js | https://github.com/vishangl/OpenTalkJS | 37 | | Hani Vaghani | 2303031087088 | https://github.com/hanivaghani/OpenTalkJS/blob/main/script.js | https://github.com/hanivaghani/OpenTalkJS/tree/main | 38 | | Yash Sakhareliya | 2203031080015 | | | 39 | | Harsh Surani | 2203031080123 | [Task 1](https://github.com/suraniharsh/GenAI/blob/main/Task_1.md) | [GenAI](https://github.com/suraniharsh/GenAI) | 40 | | Yash Sakhareliya | 2203031080015 | [Task 2](https://github.com/YashSakhareliya/OpenTalkJS/blob/main/index.js) | [Github](https://github.com/YashSakhareliya/OpenTalkJS/) | 41 | | Meet Upendrakumar Patel | 2203031080011 | [Task 2](https://github.com/MeetPatel54/OpenTalkJS/blob/main/script.js) | [GitHub](https://github.com/MeetPatel54/OpenTalkJS) | 42 | | Vraj Mehta | 2303031087034 | | | 43 | | Alisha Kaur | 2203031080202 | https://github.com/Alishakaur431/OpenTalkJS/blob/main/bulk_work/app.js| https://github.com/Alishakaur431/OpenTalkJS/tree/main/bulk_work| 44 | | Pranav Faladu | 2303031087022 | https://github.com/PranavFaladu/OpenTalkJS/blob/main/script.js | https://github.com/PranavFaladu/OpenTalkJS | 45 | | Bharvi Valand | 2303031087002 |[Task_2](https://github.com/bharvivaland/OpenTalkJS/blob/main/script.js)|[Github](https://github.com/bharvivaland/OpenTalkJS.git)| 46 | | Neeti Darji | 2303031087080 | [script](https://github.com/Neetidarji/OpenTalkJS/blob/main/script.js) | [github](https://github.com/Neetidarji/OpenTalkJS) | 47 | | Suhani Tandel | 2203031080160 |[Task 2](https://github.com/SuhaniTandel/OpenTalkJS/blob/master/script.js) | [Github](https://github.com/SuhaniTandel/OpenTalkJS)| 48 | | Rishabh Rai | 2203031080114 |https://github.com/Rishabhrai29/OpenTalkJS/blob/main/main.js |https://github.com/Rishabhrai29/OpenTalkJS | 49 | | Rutuja Waghchaure | 2303031087089 | https://github.com/rutujawaghchaure/OpenTalkJS/blob/main/script.js | https://github.com/rutujawaghchaure/OpenTalkJS/tree/main | 50 | -------------------------------------------------------------------------------- /submissions/GenAI/task_3.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Task 1 URL | GitHub Repo | 2 | |-----------------|-------------------|------------|-------------| 3 | | Shubham Karvariya | 2203031080004 | [Task 3](https://github.com/5hubhm/OpenTalkJS/blob/main/index.js) |[Github](https://github.com/5hubhm/OpenTalkJS) | 4 | | Ayush | 2203031080028 |[Task 4](https://github.com/ayushvadodariya/OpenTalkJS/blob/main/app.js) |[GitHub](https://github.com/ayushvadodariya/OpenTalkJS) | 5 | | Mansha Soni | 2203031080121 |[Task-3](https://github.com/mansha-6/OpenTalkJS/blob/main/task_3.js) |[Github](https://github.com/mansha-6/OpenTalkJS) | 6 | | Bhavin Parmar | 2203031080042 |[Task](https://github.com/bhavinSOL/OpenTalkJS/blob/main/index.js) |[GitHub](https://github.com/bhavinSOL/OpenTalkJS) | 7 | | Pranjal Pandey | 2203031080144 |https://github.com/Pranjallpandey1504/OpenTalkJS/blob/main/bulk_work/app.js |https://github.com/Pranjallpandey1504/OpenTalkJS | 8 | | Ashish Yadav | 2203031080161 | [Task 3](https://github.com/AshishIT611/OpenTalkJS/blob/main/app.js) | [GitHub](https://github.com/AshishIT611/OpenTalkJS) | 9 | | Vinit Patel | 2203031080139 |[Task 3](https://github.com/Vinitpatel28/OpenTalkJS/blob/main/app.js) |[GitHub](https://github.com/Vinitpatel28/OpenTalkJS) | 10 | | Utsav Hirapra | 2203031080002 |[Task 3](https://github.com/utsav1213/OpenTalkJS/blob/main/index.js) |[GitHub](https://github.com/utsav1213/OpenTalkJS) | 11 | | Meet Savadasbhai Sondarva | 2203031080146 |[Task 3](https://github.com/meetsondarva/OpenTalkJS/blob/main/index.js) |[GitHub](https://github.com/meetsondarva/OpenTalkJS) | 12 | | Satyam | 2203031080232 |https://github.com/mrSinghSatyam/OpenTalkJS/blob/main/app.js |https://github.com/mrSinghSatyam/OpenTalkJS | 13 | | Vaishnavi Sagariya | 2203031080013 | [Task-3](https://github.com/sagariyavaishnavi/OpenTalkJS/blob/main/script2.js)|[GitHub](https://github.com/sagariyavaishnavi/OpenTalkJS) | 14 | | Jenish Paghadal | 2203031080007 |[Task 3](https://github.com/ItsJESH/OpenTalkJS/blob/Stage3/index.js) |[GitHub](https://github.com/ItsJESH/OpenTalkJS/tree/Stage3) | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 |[Task 3](https://github.com/HarmonyHacker/OpenTalkJS/blob/main/index.js)|[Github](https://github.com/HarmonyHacker/OpenTalkJS)| 17 | | Dhyan Patel | 2203031080216 |https://github.com/dhyanpatel3/OpenTalkJS/blob/main/index.js |https://github.com/dhyanpatel3/OpenTalkJS | 18 | | Rajdeepsinh Dabhi | 2203031080069 |[Task](https://github.com/Rajdeepsinh1410/openTalkJS/blob/main/index.js) |[GitHub] (https://github.com/Rajdeepsinh1410/openTalkJS)| 19 | | Ankit Kumar | 2203031080184 |[Task 3](https://github.com/Ankiitsuthar/OpenTalkJS/blob/main/task3.js)|[GitHub](https://github.com/Ankiitsuthar/OpenTalkJS) | 20 | | Hardeep Ijardar | 2203031080031 |https://github.com/HardeepIjardar/GenAI/blob/main/a15.js|https://github.com/HardeepIjardar/GenAI| 21 | | Sahil Bharude | 2203031080235 | https://github.com/BharudeSahil/OpenTalkJS/blob/main/task3.js | https://github.com/BharudeSahil/OpenTalkJS | 22 | | Aryan Vekariya | 2203031080125 |[Task3](https://github.com/aaryanvekariya/OpenTalk-JS/blob/main/index.js)|[Repository](https://github.com/aaryanvekariya/OpenTalk-JS) | 23 | | Sparsh Patel | 2203031080053 | | | 24 | | Pratik Patel | 2203031080174 |https://github.com/Pratik00531/OpenTalkJS/blob/stage3/script.js |https://github.com/Pratik00531/OpenTalkJS | 25 | | Ravi Vira | 2203031080018 |[task-3](https://github.com/Ravi-vira/OpenTalkJS/blob/main/script.js) |[git](https://github.com/Ravi-vira/OpenTalkJS) | 26 | | Deep Menpara | 2203031080091 |https://github.com/Deep7133/OPENTALKJS/blob/main/script.js |https://github.com/Deep7133/OPENTALKJS | 27 | | Raj Patel | 2203031080105 |https://github.com/RajPatel08/OPENTALKJS/blob/main/script3.js | https://github.com/RajPatel08/OPENTALKJS| 28 | | Darsh Kalani | 2203031080032 | [Task 3](https://github.com/Darshkalani28/OpenTalkJS/blob/darsh-15/app.js) | [Repo](https://github.com/Darshkalani28/OpenTalkJS/tree/darsh-15) | 29 | | Vignesh Gaddam | 2203031080131 |[Task3](https://github.com/mrvigneshgaddam/OpenTalkJS/blob/main/task3.js) |[GitHub](https://github.com/mrvigneshgaddam/OpenTalkJS) | 30 | | Vrushangi Mistry | 2203031080222 |https://github.com/Vrushi14/OpenTalkJS/blob/main/app.js |https://github.com/Vrushi14/OpenTalkJS/tree/main | 31 | | Achal Ladani | 2203031080229 | | | 32 | | Harsh Choudhary | 2203031080132 |https://github.com/mrHarshchoudhary/OpenTalkJS/blob/main/task3.js |https://github.com/mrHarshchoudhary/OpenTalkJS | 33 | | Jeet Dhake | 2303031087082 | | | 34 | | Vishang Lad | 2203031080035 |https://github.com/vishangl/OpenTalkJS/blob/main/script2.js|https://github.com/vishangl/OpenTalkJS| 35 | | Hani Vaghani | 2303031087088 |https://github.com/hanivaghani/OpenTalkJS/blob/main/script.js|https://github.com/hanivaghani/OpenTalkJS| 36 | | Harsh Surani | 2203031080123 | [Task 3 ](https://github.com/suraniharsh/GenAI/blob/main/readme.md) | [GenAI](https://github.com/suraniharsh/GenAI) | 37 | | Yash Sakhareliya | 2203031080015 |[Task 3](https://github.com/YashSakhareliya/OpenTalkJS/blob/Stage3/index.js) |[Github](https://github.com/YashSakhareliya/OpenTalkJS/blob/main/index.js) | 38 | | Meet Upendrakumar Patel | 2203031080011 |[Task 3](https://github.com/MeetPatel54/OpenTalkJS/blob/main/script.js) |[GitHub](https://github.com/MeetPatel54/OpenTalkJS.git) | 39 | | Vraj Mehta | 2303031087034 | | | 40 | | Alisha Kaur | 2203031080202 |https://github.com/Alishakaur431/OpenTalkJS/blob/main/bulk_work/app.js | https://github.com/Alishakaur431/OpenTalkJS/tree/main/bulk_work| 41 | | Pranav Faladu | 2303031087022 |https://github.com/PranavFaladu/OpenTalkJS/blob/main/script1.js|https://github.com/PranavFaladu/OpenTalkJS| 42 | | Bharvi Valand | 2303031087002 |[Task3](https://github.com/bharvivaland/OpenTalkJS/blob/7a7cd6bbb6646e07f8feb20eaa94fce59005b5cd/script.js)|[Github](https://github.com/bharvivaland/OpenTalkJS.git)| 43 | | Neeti Darji | 2303031087080 |[task 3](https://github.com/Neetidarji/OpenTalkJS/blob/main/script.js) |[github](https://github.com/Neetidarji/OpenTalkJS) | 44 | | Suhani Tandel | 2203031080160 | [Task 3](https://github.com/SuhaniTandel/OpenTalkJS/blob/master/app.js)|[Github](https://github.com/SuhaniTandel/OpenTalkJS) | 45 | | Rishabh Rai | 2203031080114 | https://github.com/Rishabhrai29/OpenTalkJS/blob/main/script3.js|https://github.com/Rishabhrai29/OpenTalkJS | 46 | | Rutuja Waghchaure | 2303031087089 |https://github.com/rutujawaghchaure/OpenTalkJS/blob/main/script.js|https://github.com/rutujawaghchaure/OpenTalkJS/tree/main| 47 | 48 | -------------------------------------------------------------------------------- /submissions/reactjs/assignment5.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Assignment 35 URL | ReactJS Assignments Repo | 2 | |--------------------------------|----------------------|-------------------|-------------| 3 | | Shubham Karvariya | 2203031080004 |[Assignment 35](https://github.com/5hubhm/ReactJSTasks/tree/main/Task%205) | [GitHub](https://github.com/5hubhm/ReactJSTasks) 4 | | Ayush | 2203031080028 | | | 5 | | Mansha Soni | 2203031080121 | | | 6 | | Bhavin Parmar | 2203031080042 |[Assignment 35](https://github.com/bhavinbvn/React/tree/main/Task35)|[Github](https://github.com/bhavinbvn/React)| 7 | | Pranjal Pandey | 2203031080144 | | | 8 | | Ashish Yadav | 2203031080161 |[Assignment 35](https://github.com/AshishIT611/ReactJS/tree/main/Task%205) |[GitHub](https://github.com/AshishIT611/ReactJS) | 9 | | Vinit Patel | 2203031080139 | [Assignment 35](https://github.com/Vinitpatel28/React/tree/main/Task5) |[GitHub](https://github.com/Vinitpatel28/React)| 10 | | Utsav Hirapra | 2203031080002 | | | 11 | | Meet Savadasbhai Sondarva | 2203031080146 | | | 12 | | Satyam | 2203031080232 | | | 13 | | Vaishnavi Sagariya | 2203031080013 |[Assignment 35] (https://github.com/sagariyavaishnavi/React_project/tree/main/Task5) | [GitHub] (https://github.com/sagariyavaishnavi/React_project) | 14 | | Jenish Paghadal | 2203031080007 | [Assignment 35](https://github.com/ItsJESH/ReactAssignment/tree/main/Task5) | [GitHub](https://github.com/ItsJESH/ReactAssignment/tree/main/Task5) | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 |[Assignment-35](https://github.com/MannSolanki/ReactWDFAssignment/tree/main/task5) |[Github](https://github.com/MannSolanki/ReactWDFAssignment/) | 17 | | Dhyan Patel | 2203031080216 | | | 18 | | Rajdeepsinh Dabhi | 2203031080069 | | | 19 | | Ankit Kumar | 2203031080184 | [Assignment 35](https://github.com/Ankiitsuthar/ReactJS/tree/main/Task5/Assignment5) | [GitHub](https://github.com/Ankiitsuthar/ReactJS) | 20 | | Hardeep Ijardar | 2203031080031 | | | 21 | | Sahil Bharude | 2203031080235 | https://github.com/BharudeSahil/React-Assignments/tree/main/Task-5 | https://github.com/BharudeSahil/React-Assignments/tree/main | 22 | | Aryan Vekariya | 2203031080125 |[Assignment35](https://github.com/aaryanvekariya/React/blob/main/Task5/src/components/JSXRules.jsx)|[Github](https://github.com/aaryanvekariya/React) | 23 | | Sparsh Patel | 2203031080053 | | | 24 | | Pratik Patel | 2203031080174 | | | 25 | | Ravi Vira | 2203031080018 | | | 26 | | Deep Menpara | 2203031080091 | | | 27 | | Raj Patel | 2203031080105 | | | 28 | | Darsh Kalani | 2203031080032 | | | 29 | | Vignesh Gaddam | 2203031080131 | [Assignment 35](https://github.com/mrvigneshgaddam/React-Assignment/tree/main/Assignment-5) | [GitHub](https://github.com/mrvigneshgaddam/React-Assignment) | 30 | | Vrushangi Mistry | 2203031080222 | [Assignment35](https://github.com/Vrushi14/ReactJS/tree/main/Task5) | [Github](https://github.com/Vrushi14/ReactJS/) | 31 | | Achal Ladani | 2203031080229 | | | 32 | | Harsh Choudhary | 2203031080132 |[assignment35](https://github.com/mrHarshchoudhary/ReactAssignment/tree/main/Assignment-5) |[github](https://github.com/mrHarshchoudhary/ReactAssignment) | 33 | | Jeet Dhake | 2303031087082 | | | 34 | | Vishang Lad | 2203031080035 | | | 35 | | Hani Vaghani | 2303031087088 |https://github.com/hanivaghani/ReactJSAssignment/blob/main/task5/assignment5/src/App.jsx|https://github.com/hanivaghani/ReactJSAssignment/tree/main| 36 | | Harsh Surani | 2203031080123 | | | 37 | | Yash Sakhareliya | 2203031080015 |[Assignment 35](https://github.com/YashSakhareliya/ReactWdfAssignments/tree/main/Task5)| [Github](https://github.com/YashSakhareliya/ReactWdfAssignments) | 38 | | Meet Upendrakumar Patel | 2203031080011 | | | 39 | | Vraj Mehta | 2303031087034 | | | 40 | | Alisha Kaur | 2203031080202 | https://github.com/Alishakaur431/React_Assignments/blob/main/Task5/src/components/JSXRules.jsx | https://github.com/Alishakaur431/React_Assignments | 41 | | Pranav Faladu | 2303031087022 | | | 42 | | Bharvi Valand | 2303031087002 | | | 43 | | Neeti Darji | 2303031087080 |[Task 5](https://github.com/Neetidarji/React_Assignment/blob/main/task5/assignment5/src/App.jsx)|[GIthub](https://github.com/Neetidarji/React_Assignment)| 44 | | Suhani Tandel | 2203031080160 | [Task 5](https://github.com/SuhaniTandel/React/tree/main/Task5) | [Github](https://github.com/SuhaniTandel/React)| 45 | | Rishabh Rai | 2203031080114 | | | 46 | | Rutuja Waghchaure | 2303031087089 | | | 47 | -------------------------------------------------------------------------------- /submissions/nodejs/assignment5.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Assignment 20 URL | GitHub Repo | 2 | |-----------------------|----------------------|-------------------|-------------| 3 | | Shubham Karvariya | 2203031080004 | [Assignment-20](https://github.com/5hubhm/BarterX/blob/Bun_code/index.js)|[Github](https://github.com/5hubhm/BarterX/blob/Bun_code) 4 | | Ayush | 2203031080028 | [Assignment-20](https://github.com/ayushvadodariya/BarterX/blob/bun/index.js) | [GitHub](https://github.com/ayushvadodariya/BarterX/tree/bun) | 5 | | Mansha Soni | 2203031080121 | [BarterX](https://github.com/mansha-6/BarterX/blob/bun-app/main.js) | [Github] (https://github.com/mansha-6/BarterX) | 6 | | Bhavin Parmar | 2203031080042 | | | 7 | | Pranjal Pandey | 2203031080144 | https://github.com/Pranjallpandey1504/BarterX/tree/assignment20 | https://github.com/Pranjallpandey1504/BarterX | 8 | | Ashish Yadav | 2203031080161 |[BarterX Bun](https://github.com/AshishIT611/BarterX/blob/bun/index.js) |[GitHub](https://github.com/AshishIT611/BarterX) | 9 | | Vinit Patel | 2203031080139 | [BarterX](https://github.com/Vinitpatel28/BarterX/blob/bunapp/index.js)| [GitHub](https://github.com/Vinitpatel28/BarterX/tree/bunapp)| 10 | | Utsav Hirapra | 2203031080002 | [Bun](https://github.com/utsav1213/BarterX/blob/Bun/main.js) |[GitHub](https://github.com/utsav1213/BarterX) | 11 | | Meet Savadasbhai Sondarva | 2203031080146 | [Bun](https://github.com/meetsondarva/BarterX/blob/Bun/bun.js) |[Github](https://github.com/meetsondarva/BarterX/tree/Bun) | 12 | | Satyam | 2203031080232 | | | 13 | | Vaishnavi Sagariya | 2203031080013 | [Barterx Bun] (https://github.com/sagariyavaishnavi/BarterX/blob/Bun/index.js) |[GitHub](https://github.com/sagariyavaishnavi/BarterX/tree/Bun)| 14 | | Jenish Paghadal | 2203031080007 | | | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 | [Bun](https://github.com/MannSolanki/BarterX-Bun/blob/master/index.js)|[Github](https://github.com/MannSolanki/BarterX-Bun) | 17 | | Dhyan Patel | 2203031080216 |[Bun](https://github.com/dhyanpatel3/BarterX/blob/main/bun.js)|[GitHub](https://github.com/dhyanpatel3/BarterX)| 18 | | Rajdeepsinh Dabhi | 2203031080069 | [Bun](https://github.com/Rajdeepsinh1410/Bun.git) | [GitHub](https://github.com/Rajdeepsinh1410/Bun.git) | 19 | | Ankit Kumar | 2203031080184 | [Bun](https://github.com/Ankiitsuthar/BarterX/blob/Bun/index.js) | [GitHub](https://github.com/Ankiitsuthar/BarterX/tree/Bun) | 20 | 21 | | Hardeep Ijardar | 2203031080031 |https://github.com/HardeepIjardar/BarterX/blob/feature-bunjs/bun.js|https://github.com/HardeepIjardar/BarterX| 22 | | Sahil Bharude | 2203031080235 | https://github.com/BharudeSahil/Bun/blob/main/index.js | https://github.com/BharudeSahil/Bun | 23 | | Aryan Vekariya | 2203031080125 |[Task](https://github.com/aaryanvekariya/BarterX/blob/Bun/index.js)|[Repository](https://github.com/aaryanvekariya/BarterX)| 24 | | Sparsh Patel | 2203031080053 | | | 25 | | Pratik Patel | 2203031080174 |https://github.com/Pratik00531/BarterX/blob/node-q4/index.js|https://github.com/Pratik00531/BarterX | 26 | | Ravi Vira | 2203031080018 | | | 27 | | Deep Menpara | 2203031080091 |https://github.com/Deep7133/BarterX/blob/main/index.js |https://github.com/Deep7133/BarterX | 28 | | Raj Patel | 2203031080105 | | | 29 | | Darsh Kalani | 2203031080032 | [Assignment 20](https://github.com/Darshkalani28/Bun-/blob/main/index.js) | [Repository](https://github.com/Darshkalani28/Bun-) | 30 | | Vignesh Gaddam | 2203031080131 |[BarterX_Using_Bun](https://github.com/mrvigneshgaddam/BarterX/blob/bun-app/index.js)|[GitHub](https://github.com/mrvigneshgaddam/BarterX)| 31 | | Vrushangi Mistry | 2203031080222 | https://github.com/Vrushi14/Bun/blob/main/index.js | https://github.com/Vrushi14/Bun/tree/main | 32 | | Achal Ladani | 2203031080229 | | | 33 | | Harsh Choudhary | 2203031080132 |[bun](https://github.com/mrHarshchoudhary/BarterX/blob/bun-app/index.js) |[git](https://github.com/mrHarshchoudhary/BarterX/tree/bun-app) | 34 | | Jeet Dhake | 2303031087082 | | | 35 | | vishang Lad | 2203031080035 |https://github.com/vishangl/Bun-/blob/main/index.js|https://github.com/vishangl/Bun-| 36 | | Hani Vaghani | 2303031087088 |https://github.com/hanivaghani/BarterX/blob/bun/index.js|https://github.com/hanivaghani/BarterX/tree/bun| 37 | | Harsh Surani | 2203031080123 | | | 38 | | Yash Sakhareliya | 2203031080015 |[Assignement 20](https://github.com/YashSakhareliya/BarterX/blob/bun/index.js)| [GitHub](https://github.com/YashSakhareliya/BarterX/tree/bun) | 39 | | Meet Upendrakumar Patel | 2203031080011 | | | 40 | | Vraj Mehta | 2303031087034 | | | 41 | | Alisha Kaur | 2203031080202 | https://github.com/Alishakaur431/BarterX/blob/assignment20/index.js | https://github.com/Alishakaur431/BarterX/tree/assignment20 | 42 | | Pranav Faladu | 2303031087022 |https://github.com/PranavFaladu/Barterx/blob/Bun/Bun.js|https://github.com/PranavFaladu/Barterx.git| 43 | | Rutuja Waghchaure | 2303031087089 | | | 44 | | Bharvi Valand | 2303031087002 |[Assignment20](https://github.com/bharvivaland/Bun/blob/node-q5/index.js)|[Github](https://github.com/bharvivaland/Bun.git)| 45 | | Neeti Darji | 2303031087080 |[BarterX BUN](https://github.com/Neetidarji/BarterX/blob/bun/index1.js)|[Github](https://github.com/Neetidarji/BarterX/tree/bun)| 46 | | Suhani Tandel | 2203031080160 | | | 47 | | Rishabh Rai | 2203031080114 | | | 48 | -------------------------------------------------------------------------------- /submissions/js/task_1_2.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | 🔗 Task 1 URL | 🔗 Task 2 URL | 🐱 GitHub Repository URL | 2 | |---|---|---|---|---| 3 | | Shubham Karvariya | 2203031080004 | https://marvelous-pony-d1462f.netlify.app/ | https://marvelous-pony-d1462f.netlify.app/ | https://github.com/5hubhm/J_S | 4 | | Ayush | 2203031080028 | https://ayush-projects.vercel.app/ | https://ayush-projects.vercel.app/ | https://github.com/ayushvadodariya/javascript-project | 5 | | Mansha Soni | 2203031080121 | https://js-project-dka.pages.dev | https://js-project-dka.pages.dev | https://github.com/mansha-6/JS-Project | 6 | | Bhavin Parmar | 2203031080042 | https://jstasks.vercel.app/ | https://jstasks.vercel.app/ | https://github.com/bhavinsol/js_task | 7 | | Pranjal Pandey | 2203031080144 | https://assignment4-gamma-eight.vercel.app/ | https://assignment4-gamma-eight.vercel.app/ | https://github.com/Pranjallpandey1504/assignment4 | 8 | | Ashish Yadav | 2203031080161 | https://java-script-project-seven.vercel.app/ | https://java-script-project-seven.vercel.app/ | https://github.com/AshishIT611/JavaScript_Project | 9 | | Vinit Patel | 2203031080139 | https://js-projects-fw8k.vercel.app/ | https://js-projects-fw8k.vercel.app/ | https://github.com/Vinitpatel28/JS-Projects.git | 10 | | Utsav Hirapra | 2203031080002 | https://js-eosin.vercel.app/ | https://js-eosin.vercel.app/ | https://github.com/utsav1213/JS | 11 | | Meet Savadasbhai Sondarva | 2203031080146 | https://javascript-projects-livid.vercel.app/ | https://javascript-projects-livid.vercel.app/ | https://github.com/meetsondarva/javascript_projects | 12 | | Satyam | 2203031080232 | https://js-102.vercel.app/ | https://js-102.vercel.app/ | https://github.com/mrSinghSatyam/JS102 | 13 | | Vaishnavi Sagariya | 2203031080013 | https://js-pro-nine.vercel.app/ | https://js-pro-nine.vercel.app/ | https://github.com/sagariyavaishnavi/js_pro | 14 | | Jenish Paghadal | 2203031080007 | https://jsassignment-omega.vercel.app/ | https://jsassignment-omega.vercel.app/ | https://github.com/ItsJESH/JSAssignment | 15 | | Umang Patel | 2203031080107 | | | | 16 | | Mann Solanki | 2203031080260 | https://mann-projects.netlify.app/ | https://mann-projects.netlify.app/ | https://github.com/HarmonyHacker/javascript_projects | 17 | | Dhyan Patel | 2203031080216 | https://javascript-projects-tau-azure.vercel.app/ | https://javascript-projects-tau-azure.vercel.app/ | https://github.com/dhyanpatel3/javascript_projects | 18 | | Rajdeepsinh Dabhi | 2203031080069 | https://jsproject-nu.vercel.app/ | https://jsproject-nu.vercel.app/ | https://github.com/Rajdeepsinh1410/JSPROJECT.git | 19 | | Ankit Kumar | 2203031080184 | https://java-script-projects-lime.vercel.app/ | https://java-script-projects-lime.vercel.app/ | https://github.com/Ankiitsuthar/JavaScript-Project | 20 | | Hardeep Ijardar | 2203031080031 | https://js-projects-2t4.pages.dev/ | https://js-projects-2t4.pages.dev/ | https://github.com/HardeepIjardar/JS-Projects | 21 | | Sahil Bharude | 2203031080235 | https://js-101-phi.vercel.app/ | https://js-101-phi.vercel.app/ | https://github.com/BharudeSahil/JS_101 | 22 | | Aryan Vekariya | 2203031080125 | https://javascript-ecru-seven.vercel.app/ | https://javascript-ecru-seven.vercel.app/ | https://github.com/aaryanvekariya/javascript | 23 | | Sparsh Patel | 2203031080053 | | | | 24 | | Pratik Patel | 2203031080174 | https://javascript-projects-32bbi3uh7-pratiks-projects-2b6c1394.vercel.app/ | https://javascript-projects-32bbi3uh7-pratiks-projects-2b6c1394.vercel.app/ | https://github.com/Pratik00531/JavascriptProjects- | 25 | | Ravi Vira | 2203031080018 | https://assignment-4-js-beige.vercel.app/ | https://assignment-4-js-beige.vercel.app/ | https://github.com/Ravi-vira/assignment-4-JS | 26 | | Deep Menpara | 2203031080091 | https://javascript-eta-ten.vercel.app/ | https://javascript-eta-ten.vercel.app/ | https://github.com/Deep7133/javascript.git | 27 | | Raj Patel | 2203031080105 | https://js-five-beta.vercel.app/ | https://js-five-beta.vercel.app/ | https://github.com/RajPatel08/JS | 28 | | Darsh Kalani | 2203031080032 | https://js-project-b2n.pages.dev | https://js-project-b2n.pages.dev | https://github.com/Darshkalani28/JS_Project | 29 | | Vignesh Gaddam | 2203031080131 | https://js-101-theta.vercel.app/ | https://js-101-theta.vercel.app/ | https://github.com/mrvigneshgaddam/JS101 | 30 | | Vrushangi Mistry | 2203031080222 |https://vrushicodesjs.vercel.app/Resume.html |https://vrushicodesjs.vercel.app/Feedback.html |https://github.com/Vrushi14/JavaScriptProjects | 31 | | Achal Ladani | 2203031080229 | | | | 32 | | Harsh Choudhary | 2203031080132 | https://wdf-js-qmxh.vercel.app/ | https://wdf-js-qmxh.vercel.app/ | https://github.com/mrHarshchoudhary/WDF_JS | 33 | | Jeet Dhake | 2303031087082 | | | | 34 | | Vishang Lad | 2203031080035 | https://bb624daa.jsprojects-bpo.pages.dev/ | https://bb624daa.jsprojects-bpo.pages.dev/ | https://github.com/vishangl/JSprojects | 35 | | Hani Vaghani | 2303031087088 | https://jsprojects-daw.pages.dev/ | https://jsprojects-daw.pages.dev/ | https://github.com/hanivaghani/JSprojects | 36 | | Harsh Surani | 2203031080123 | https://2203031080123-assignment-4.netlify.app/ | https://2203031080123-assignment-4.netlify.app/ | https://github.com/suraniharsh/Assignments/tree/Assignment-4 | 37 | | Yash Sakhareliya | 2203031080015 | https://js-tasks-nine.vercel.app/ | https://js-tasks-nine.vercel.app/ | https://github.com/Yashsakhareliya/JS_Task | 38 | | Meet Upendrakumar Patel | 2203031080011 | https://java-script-practice-lac.vercel.app/feedback.html | https://java-script-practice-lac.vercel.app/feedback.html | https://github.com/MeetPatel54/JavaScript_practice.git | 39 | | Vraj Mehta | 2303031087034 | | | | 40 | | Alisha Kaur | 2203031080202 | https://bucolic-torrone-ee6617.netlify.app/ | https://bucolic-torrone-ee6617.netlify.app/ | https://github.com/Alishakaur431/javascript | 41 | | Pranav Faladu | 2303031087022 | https://inquisitive-croquembouche-acec27.netlify.app/ | https://inquisitive-croquembouche-acec27.netlify.app/ | https://github.com/PranavFaladu/JSprojects | 42 | | Bharvi Valand | 2303031087002 | https://celebrated-pegasus-172baa.netlify.app/resume | https://celebrated-pegasus-172baa.netlify.app/feedback | https://github.com/bharvivaland/JSprojects.git | 43 | | Neeti Darji | 2303031087080 | https://jsprojects-6m1.pages.dev/ | https://jsprojects-6m1.pages.dev/ | https://github.com/Neetidarji/Jsprojects | 44 | | Suhani Tandel | 2203031080160 | https://6761503c1139fd0acd0933f7--inquisitive-puffpuff-6fd63f.netlify.app/ | https://6761503c1139fd0acd0933f7--inquisitive-puffpuff-6fd63f.netlify.app/ | https://github.com/SuhaniTandel/JS-Project.git | 45 | | Rishabh Rai | 2203031080114 | https://js-coral-psi.vercel.app/ | https://js-coral-psi.vercel.app/ | https://github.com/Rishabhrai29/js | 46 | | Rutuja Waghchaure | 2303031087089 | https://jsproject-cin.pages.dev/ | https://jsproject-cin.pages.dev/ | https://github.com/rutujawaghchaure/jsproject | 47 | -------------------------------------------------------------------------------- /submissions/nodejs/assignment4.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Assignment 19 URL | GitHub Repo | 2 | |-----------------------|----------------------|-------------------|-------------| 3 | | Shubham Karvariya | 2203031080004 | | | 4 | | Ayush | 2203031080028 | [BarterX](https://github.com/ayushvadodariya/BarterX/blob/main/index.js) | [GitHub](https://github.com/ayushvadodariya/BarterX) | 5 | | Mansha Soni | 2203031080121 | https://github.com/mansha-6/BarterX/blob/main/index.js | https://github.com/mansha-6/BarterX | 6 | | Bhavin Parmar | 2203031080042 | | | 7 | | Pranjal Pandey | 2203031080144 |https://github.com/Pranjallpandey1504/BarterX/blob/main/index.js |https://github.com/Pranjallpandey1504/BarterX | 8 | | Ashish Yadav | 2203031080161 | [BarterX](https://github.com/AshishIT611/BarterX/blob/main/index.js) | [GitHub](https://github.com/AshishIT611/BarterX) | 9 | | Vinit Patel | 2203031080139 | [BarterX](https://github.com/Vinitpatel28/BarterX/blob/main/index.js)| [GitHub](https://github.com/Vinitpatel28/BarterX)| 10 | | Utsav Hirapra | 2203031080002 |[BarterX](https://github.com/utsav1213/BarterX/blob/main/index.js)|[GitHub] (https://github.com/utsav1213/BarterX) | 11 | | Meet Savadasbhai Sondarva | 2203031080146 |[BaterX](https://github.com/meetsondarva/BarterX/blob/main/index.js)|[Github](https://github.com/meetsondarva/BarterX)| 12 | | Satyam | 2203031080232 | https://github.com/mrSinghSatyam/BarterX/blob/main/index.js|https://github.com/mrSinghSatyam/BarterX| 13 | | Vaishnavi Sagariya | 2203031080013 | [Barterx](https://github.com/sagariyavaishnavi/BarterX/blob/main/index.js) | [GitHub](https://github.com/sagariyavaishnavi/BarterX) | 14 | | Jenish Paghadal | 2203031080007 | [BarterX](https://github.com/ItsJESH/BarterX/blob/main/index.js) |[GitHub](https://github.com/ItsJESH/BarterX/) | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 |[BarterX](https://github.com/MannSolanki/BarterX/blob/main/index.js)|[Github](https://github.com/MannSolanki/BarterX)| 17 | | Dhyan Patel | 2203031080216 |https://github.com/dhyanpatel3/BarterX/blob/main/index.js|https://github.com/dhyanpatel3/BarterX| 18 | | Rajdeepsinh Dabhi | 2203031080069 | | | 19 | | Ankit Kumar | 2203031080184 |[BarterX](https://github.com/Ankiitsuthar/BarterX/blob/main/index.js)|[GitHub](https://github.com/Ankiitsuthar/BarterX)| 20 | | Hardeep Ijardar | 2203031080031 |https://github.com/HardeepIjardar/BarterX/blob/main/index.js|https://github.com/HardeepIjardar/BarterX| 21 | | Sahil Bharude | 2203031080235 | https://github.com/BharudeSahil/BarterX/blob/main/script.js | https://github.com/BharudeSahil/BarterX | 22 | | Aryan Vekariya | 2203031080125 |[Assignment19](https://github.com/aaryanvekariya/BarterX/blob/main/index.js)|[Repository](https://github.com/aaryanvekariya/BarterX)| 23 | | Sparsh Patel | 2203031080053 | | | 24 | | Pratik Patel | 2203031080174 | [BarterX](https://github.com/Pratik00531/BarterX/blob/node-q4/index.js) | [Repository](https://github.com/Pratik00531/BarterX) | 25 | | Ravi Vira | 2203031080018 | | | 26 | | Deep Menpara | 2203031080091 | | | 27 | | Raj Patel | 2203031080105 | https://github.com/RajPatel08/BarterX/blob/main/index.js | https://github.com/RajPatel08/BarterX| 28 | | Darsh Kalani | 2203031080032 | [BarterX](https://github.com/Darshkalani28/BarterX/index.js) | [Repo](https://github.com/Darshkalani28/BarterX) | 29 | | Vignesh Gaddam | 2203031080131 |[BarterX](https://github.com/mrvigneshgaddam/BarterX/blob/main/index.js) |[GitHub](https://github.com/mrvigneshgaddam/BarterX) | 30 | | Vrushangi Mistry | 2203031080222 | https://github.com/Vrushi14/BarterX/blob/main/index.js | https://github.com/Vrushi14/BarterX/tree/main | 31 | | Achal Ladani | 2203031080229 | | | 32 | | Harsh Choudhary | 2203031080132 |[assignment 19](https://github.com/mrHarshchoudhary/BarterX/blob/main/index.js) | [git](https://github.com/mrHarshchoudhary/BarterX) | 33 | | Jeet Dhake | 2303031087082 | | | 34 | | vishang Lad | 2203031080035 |https://github.com/vishangl/Barterx/blob/main/index.js|https://github.com/vishangl/Barterx| 35 | | Hani Vaghani | 2303031087088 |https://github.com/hanivaghani/BarterX/blob/main/index.js|https://github.com/hanivaghani/BarterX| 36 | | Harsh Surani | 2203031080123 | [Assignment 19](https://github.com/suraniharsh/BarterX/blob/main/index.js) | [GitHub](https://github.com/suraniharsh/BarterX/tree/main) | 37 | | Yash Sakhareliya | 2203031080015 |[Assignment-19](https://github.com/YashSakhareliya/BarterX/blob/main/index.js)|[Github](https://github.com/YashSakhareliya/BarterX/) | 38 | | Meet Upendrakumar Patel | 2203031080011 |[URL](https://github.com/MeetPatel54/BarterX/blob/main/index.js) |[GitHub](https://github.com/MeetPatel54/BarterX.git) | 39 | | Vraj Mehta | 2303031087034 | | | 40 | | Alisha Kaur | 2203031080202 | | | 41 | | Pranav Faladu | 2303031087022 |(https://github.com/PranavFaladu/Barterx/blob/main/app.js)|(https://github.com/PranavFaladu/Barterx.git)| 42 | | Alisha Kaur | 2203031080202 |https://github.com/Alishakaur431/BarterX/blob/main/index.js | https://github.com/Alishakaur431/BarterX | 43 | | Pranav Faladu | 2303031087022 | | | 44 | | Rutuja Waghchaure | 2303031087089 |https://github.com/rutujawaghchaure/BarterX/blob/main/index.js|https://github.com/rutujawaghchaure/BarterX/tree/main| 45 | | Bharvi Valand | 2303031087002 |[BarterX](https://github.com/bharvivaland/BarterX/blob/main/index.js)|[Github](https://github.com/bharvivaland/BarterX.git)| 46 | | Neeti Darji | 2303031087080 |[Barter X](https://github.com/Neetidarji/BarterX/blob/main/index.js)|[Github](https://github.com/Neetidarji/BarterX)| 47 | | Suhani Tandel | 2203031080160 | [BartrX](https://github.com/SuhaniTandel/BarterX/blob/main/index.js)| [Github](https://github.com/SuhaniTandel/BarterX)| 48 | | Rishabh Rai | 2203031080114 | https://github.com/Rishabhrai29/barterX/blob/main/index.js | https://github.com/Rishabhrai29/barterX | 49 | 50 | -------------------------------------------------------------------------------- /submissions/js/task_5_6.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | 🔗 Task 5 URL | 🔗 Task 6 URL | 🐱 GitHub Repository URL | 2 | |---|---|---|---|---| 3 | | Shubham Karvariya | 2203031080004 | https://marvelous-pony-d1462f.netlify.app/dice/ | https://marvelous-pony-d1462f.netlify.app/task6/ | https://github.com/5hubhm/J_S | 4 | | Ayush | 2203031080028 | https://ayush-projects.vercel.app/dice-game/index.html | https://ayush-projects.vercel.app/unit-converter/index.html | https://github.com/ayushvadodariya/javascript-project | 5 | | Mansha Soni | 2203031080121 | https://js-project-dka.pages.dev/dicethrow | https://js-project-dka.pages.dev/tempconverter | https://github.com/mansha-6/JS-Project | 6 | | Bhavin Parmar | 2203031080042 | https://jstasks.vercel.app/task%205/index.html | https://jstasks.vercel.app/Task%206/index.html | https://github.com/bhavinSOL/JS_task | 7 | | Pranjal Pandey | 2203031080144 | | | | 8 | | Ashish Yadav | 2203031080161 | | https://java-script-project-seven.vercel.app/dice.html | https://java-script-project-seven.vercel.app/convert.html | | 9 | | Vinit Patel | 2203031080139 | https://js-projects-fw8k.vercel.app/Task5.html | https://js-projects-fw8k.vercel.app/Task6.html | https://github.com/Vinitpatel28/JS-Projects | 10 | | Utsav Hirapra | 2203031080002 | https://js-eosin.vercel.app/dice.html | https://js-eosin.vercel.app/conveter.html | https://github.com/utsav1213/JS | 11 | | Meet Savadasbhai Sondarva | 2203031080146 | https://javascript-projects-livid.vercel.app/dice.html | https://javascript-projects-livid.vercel.app/converter.html | https://github.com/meetsondarva/javascript_projects | 12 | | Satyam | 2203031080232 | https://js-102-j4p6ghvbi-satyam-singhs-projects-af8065ca.vercel.app/converter.html | https://js-102-j4p6ghvbi-satyam-singhs-projects-af8065ca.vercel.app/dice.html | https://github.com/mrSinghSatyam/JS102 | 13 | | Vaishnavi Sagariya | 2203031080013 | https://js-pro-nine.vercel.app/dice.html | https://js-pro-nine.vercel.app/converter.html | https://github.com/sagariyavaishnavi/js_pro | 14 | | Jenish Paghadal | 2203031080007 | https://jsassignment-omega.vercel.app/dice.html | https://jsassignment-omega.vercel.app/conv.html | https://github.com/ItsJESH | 15 | | Umang Patel | 2203031080107 | | | | 16 | | Mann Solanki | 2203031080260 |https://javascriptproject000.netlify.app/dice|https://javascriptproject000.netlify.app/temperature |https://github.com/HarmonyHacker/javascript_projects | 17 | | Dhyan Patel | 2203031080216 | https://javascript-projects-tau-azure.vercel.app/dice.html | https://javascript-projects-tau-azure.vercel.app/converter.html | https://github.com/dhyanpatel3/javascript_projects | 18 | | Rajdeepsinh Dabhi | 2203031080069 | https://jsproject-nu.vercel.app/Dice.html | https://jsproject-nu.vercel.app/converter.html | https://github.com/Rajdeepsinh1410/JSPROJECT/tree/js-task34 | 19 | | Ankit Kumar | 2203031080184 |https://java-script-project-ecru.vercel.app/Dice.html |https://java-script-project-ecru.vercel.app/converter.html |https://github.com/Ankiitsuthar/JavaScript-Project | 20 | | Hardeep Ijardar | 2203031080031 | https://js-projects-2t4.pages.dev/dice | https://js-projects-2t4.pages.dev/converter | https://github.com/HardeepIjardar/JS-Projects | 21 | | Sahil Bharude | 2203031080235 | https://js-101-phi.vercel.app/dice.html | https://js-101-phi.vercel.app/converter.html | https://github.com/BharudeSahil/JS_101 | 22 | | Aryan Vekariya | 2203031080125 | https://javascript-ecru-seven.vercel.app/task5/dice.html | https://javascript-ecru-seven.vercel.app/task6/Converter.html | https://github.com/aaryanvekariya/javascript | 23 | | Sparsh Patel | 2203031080053 | https://jsprojet-git-js-task34-sparsh-patels-projects.vercel.app/dice.html | https://jsprojet-git-js-task34-sparsh-patels-projects.vercel.app/converter.html | https://github.com/SparshPatel1115/JS_Project/tree/js-task34 | 24 | | Pratik Patel | 2203031080174 | https://javascript-projects-crq08z97a-pratiks-projects-2b6c1394.vercel.app/currency%20converter.html | https://javascript-projects-crq08z97a-pratiks-projects-2b6c1394.vercel.app/dice.html | https://github.com/Pratik00531/JavascriptProjects- | 25 | | Ravi Vira | 2203031080018 | https://assignment-4-js-beige.vercel.app/dice.html | https://assignment-4-js-beige.vercel.app/converter.html | https://github.com/Ravi-vira/assignment-4-JS | 26 | | Deep Menpara | 2203031080091 | https://deepjsprojects.vercel.app/counter.html | https://deepjsprojects.vercel.app/convertor.html | https://github.com/Deep7133/javascript.git | 27 | | Raj Patel | 2203031080105 | https://js-five-beta.vercel.app/task%205/index.html | https://js-five-beta.vercel.app/Task%206/index.html | https://github.com/RajPatel08/JS | 28 | | Darsh Kalani | 2203031080032 | https://js-project-b2n.pages.dev/dice | https://js-project-b2n.pages.dev/converter | https://github.com/Darshkalani28/JS_Project | 29 | | Vignesh Gaddam | 2203031080131 | https://js-101-theta.vercel.app/dice.html | https://js-101-theta.vercel.app/convertor.html | https://github.com/mrvigneshgaddam/JS101 | 30 | | Vrushangi Mistry | 2203031080222 | https://vrushicodesjs.vercel.app/Dice.html | https://vrushicodesjs.vercel.app/Conveter.html | https://github.com/Vrushi14/JavaScriptProjects | 31 | | Achal Ladani | 2203031080229 | | | | 32 | | Harsh Choudhary | 2203031080132 | https://wdf-js-all.vercel.app/dies.html | https://wdf-js-all.vercel.app/conversion.html | https://github.com/mrHarshchoudhary/WDF_JS | 33 | | Jeet Dhake | 2303031087082 | | | | 34 | | Vishang Lad | 2203031080035 | https://jsprojects3.pages.dev/dice | https://jsprojects3.pages.dev/converter | https://github.com/vishangl/JSprojects | 35 | | Hani Vaghani | 2303031087088 | https://jsprojects-daw.pages.dev/dice | https://jsprojects-daw.pages.dev/dynamic | https://github.com/hanivaghani/JSprojects | 36 | | Harsh Surani | 2203031080123 | https://2203031080123-assignment-6.netlify.app/dice%20throw%20game | https://2203031080123-assignment-6.netlify.app/lol | https://github.com/suraniharsh/Assignments/tree/Assignment-6 | 37 | | Yash Sakhareliya | 2203031080015 | https://js-tasks-nine.vercel.app/Task%205/ | https://js-tasks-nine.vercel.app/Task%206/ | https://github.com/Yashsakhareliya/JS_Task | 38 | | Meet Upendrakumar Patel | 2203031080011 | https://java-script-practice-lac.vercel.app/currencyCon.html | https://java-script-practice-lac.vercel.app/Dice-game.html | https://github.com/MeetPatel54/JavaScript_practice.git | 39 | | Vraj Mehta | 2303031087034 | | | | 40 | | Alisha Kaur | 2203031080202 | https://bucolic-torrone-ee6617.netlify.app/dice | https://bucolic-torrone-ee6617.netlify.app/converter | https://github.com/Alishakaur431/javascript | 41 | | Pranav Faladu | 2303031087022 | https://inquisitive-croquembouche-acec27.netlify.app/multiplayerdicegame | https://inquisitive-croquembouche-acec27.netlify.app/converter | https://github.com/PranavFaladu/JSprojects | 42 | | Bharvi Valand | 2303031087002 | https://celebrated-pegasus-172baa.netlify.app/dice | https://celebrated-pegasus-172baa.netlify.app/converter | https://github.com/bharvivaland/JSprojects.git | 43 | | Neeti Darji | 2303031087080 | https://jsprojects-6m1.pages.dev/Dice | https://jsprojects-6m1.pages.dev/converter | https://github.com/Neetidarji/Jsprojects | 44 | | Suhani Tandel | 2203031080160 | https://sage-marigold-86659c.netlify.app/task5 | https://sage-marigold-86659c.netlify.app/ | https://github.com/SuhaniTandel/JS-Project | 45 | | Rishabh Rai | 2203031080114 | | | | 46 | | Rutuja Waghchaure | 2303031087089 | https://jsproject-cin.pages.dev/d_index | https://jsproject-cin.pages.dev/c_index | https://github.com/rutujawaghchaure/jsproject | 47 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🚀 Full Stack Development: Zero to Hero 2 | 3 | ![GitHub last commit](https://img.shields.io/github/last-commit/smaranjitghose/Full_Stack_Bootcamp) 4 | ![License](https://img.shields.io/badge/license-MIT-blue.svg) 5 | ![Stars](https://img.shields.io/github/stars/smaranjitghose/Full_Stack_Bootcamp?style=social) 6 | ![Forks](https://img.shields.io/github/forks/smaranjitghose/Full_Stack_Bootcamp?style=social) 7 | 8 | A comprehensive 10-week journey into modern web development. 9 | 10 | ## 👨‍🏫 Course Instructor 11 | **Professor Smaranjit Ghose** 12 | 13 | - 🌟 10+ years of industry experience 14 | - 💼 Former Data Scientist and Project Manager at giants 15 | - 📚 Authored several cutting edge research papers and technical walkthrough blogs 16 | - 💓 Loves to teach inquisitve minds! 17 | - 🔗 [GitHub](https://github.com/smaranjitghose) | [LinkedIn](https://linkedin.com/in/smaranjitghose) 18 | 19 | ## 📋 Course Overview 20 | This intensive course takes you from zero programming knowledge to building full-stack web applications. Through hands-on projects and weekly assignments, you'll master front-end development, back-end architecture, databases, and deployment. 21 | 22 | ## 📚 Course Structure 23 | 24 | | Sl No | Chapter | Topics | Reference Material | Quiz | Assignment | 25 | |------|---------|---------|-------------------|------|------------| 26 | | 1 | 🌐 Intro to Web | Internet Basics, Client-Server, HTTP/HTTPS, Browsers |[Intro to Course](https://www.canva.com/design/DAGXc7VhIKM/OyH8BspvdBhjpOfeUgmtEw/edit?utm_content=DAGXc7VhIKM&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton)| [Quiz 1](https://forms.gle/sPPMiB86fXVCFMvo7), [Quiz 8](https://docs.google.com/forms/d/1SDJQq2KyAYDtAKNq8D9sUQGwLsmzRy1WXpUJNz0CeoI/edit) | | 27 | | 2 | 📊 Version Control | Git Basics, GitHub, Branching, PRs, Markdown | | [Quiz 2](https://forms.gle/ueKHyss2c9rG9xaT6)
[Quiz 3](https://forms.gle/Kp1fshAGkAjTi62j7)
[Quiz 4](https://forms.gle/tqT6AjZGzCGvaBBU8)
[Quiz 6](https://forms.gle/ekXQ9K2GWfXQ3dg3A) | | 28 | | 3 | 🤖 LLMs & Ollama | AI Basics, Prompting, Local Models, Ollama Setup | | [Quiz 5](https://forms.gle/XrniXMAWYupqFxJPA) | | 29 | | 4 | 🗄️ MongoDB | CRUD Operations, Aggregation, Mongoose ODM | | [Quiz 7](https://forms.gle/a5XLEpxW9iS5VgcZ7) | | 30 | | 5 | 📝 HTML | Intro to HTML, Headings, Text Formatting, Unordered and Ordered Lists, URLs, Images, Tables, Forms-input&buttons, Div | [MDN Docs - HTML](developer.mozilla.org/en-us/docs/web/html) | [Quiz 9](https://forms.gle/gvg7nwN7aKhXc8QJ6) | [HTML Assignment 1](https://github.com/smaranjitghose/Full_Stack_Bootcamp/blob/main/assignments/HTML_1.MD), [HTML Assignment 2](https://github.com/smaranjitghose/Full_Stack_Bootcamp/blob/main/assignments/HTML_2.MD)| 31 | | 6 | 🎨 CSS | CSS3, Flexbox, Grid, Animations | | T.B.D | | 32 | | 7 | 💻 JavaScript Deep Dive | ES6+, DOM, Async Programming | |[OOPs Quiz](https://forms.gle/DXNHN1AzfnuvSYhN7)| [JS Basic Projects](./assignments/JavaScript_1.MD) | 33 | | 8 | 🔙 Backend with Node/Express | RESTful APIs, Middleware, Error Handling | |T.B.D | [ExpressJS Assignment 1](https://github.com/smaranjitghose/Full_Stack_Bootcamp/blob/main/assignments/Express_1.MD) | 34 | | 9 | 🔐 Auth & Security | JWT, OAuth, Security Best Practices | |T.B.D | | 35 | | 10 | 🧪 Testing & Performance | Jest, Performance Optimization, SEO ||T.B.D | | 36 | | 11 | ⚛️ Frontend with React | Components, Hooks, State Management | [ReactJS PPT](https://www.canva.com/design/DAGewP4WPM8/Z4LNCnEUZlzTbqZH2K-AiA/view?utm_content=DAGewP4WPM8&utm_campaign=designshare&utm_medium=link2&utm_source=uniquelinks&utlId=h60fc46b8da) | T.B.D | [ReactJS Foundational Problems](./assignments/ReactJS.MD) | 37 | 38 | ## 🛠️ Technologies Covered 39 | 40 |
41 | 42 | 43 | 47 | 51 | 55 | 59 | 63 | 64 | 65 | 69 | 73 | 77 | 81 | 85 | 86 | 87 | 91 | 95 | 99 | 103 | 107 | 108 |
44 | Terminal 45 |
Terminal 46 |
48 | Ollama 49 |
Ollama 50 |
52 | Git 53 |
Git 54 |
56 | GitHub 57 |
GitHub 58 |
60 | MongoDB 61 |
MongoDB 62 |
66 | HTML5 67 |
HTML5 68 |
70 | CSS3 71 |
CSS3 72 |
74 | Node.js 75 |
Node.js 76 |
78 | Express.js 79 |
Express.js 80 |
82 | React 83 |
React 84 |
88 | Bun 89 |
Bun 90 |
92 | Deno 93 |
Deno 94 |
96 | Hono 97 |
Hono 98 |
100 | LangChain 101 |
LangChain 102 |
104 | Postman 105 |
Postman 106 |
109 |
110 | 111 | ## ✅ Prerequisites 112 | - 💻 Basic computer knowledge 113 | - ⏰ Dedication to practice 15-20 hours weekly 114 | - 🌐 Access to a computer with stable internet 115 | 116 | ## 🎯 Learning Outcomes 117 | - 🎨 Build responsive web applications 118 | - 🔧 Implement secure backend services 119 | - 📊 Work with databases and APIs 120 | - 🚀 Deploy and maintain web applications 121 | - ✨ Follow industry best practices 122 | 123 | 124 | -------------------------------------------------------------------------------- /submissions/js/task_3_4.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | 🔗 Task 3 URL | 🔗 Task 4 URL | 🐱 GitHub Repository URL | 2 | |---|---|---|---|---| 3 | | Shubham Karvariya | 2203031080004 | https://marvelous-pony-d1462f.netlify.app/counter/ | https://marvelous-pony-d1462f.netlify.app/task4/ | https://github.com/5hubhm/J_S | 4 | | Ayush | 2203031080028 | https://ayush-projects.vercel.app/counter.html | https://ayush-projects.vercel.app/calculator.html | https://github.com/ayushvadodariya/javascript-project | 5 | | Mansha Soni | 2203031080121 | https://js-project-dka.pages.dev/count | https://js-project-dka.pages.dev/geometry | https://github.com/mansha-6/JS-Project.git | 6 | | Bhavin Parmar | 2203031080042 | https://jstasks.vercel.app/task/index.html | https://jstasks.vercel.app/Task%204/index.html | https://github.com/bhavinSOL/JS_task | 7 | | Pranjal Pandey | 2203031080144 | https://assignment4-gamma-eight.vercel.app/ | https://assignment4-gamma-eight.vercel.app/ | https://github.com/Pranjallpandey1504/assignment4 | 8 | | Ashish Yadav | 2203031080161 | | | | 9 | | Vinit Patel | 2203031080139 | https://js-projects-fw8k.vercel.app/Task3.html | https://js-projects-fw8k.vercel.app/Task4.html | https://github.com/Vinitpatel28/JS-Projects.git | 10 | | Utsav Hirapra | 2203031080002 | https://js-eosin.vercel.app/counter.html | https://js-eosin.vercel.app/calc.html | https://github.com/utsav1213/JS | 11 | | Meet Savadasbhai Sondarva | 2203031080146 | https://javascript-projects-livid.vercel.app/counter.html | https://javascript-projects-livid.vercel.app/calculator.html | https://github.com/meetsondarva/javascript_projects | 12 | | Satyam | 2203031080232 |(https://satyamprojects.vercel.app/count.html)|(https://satyamprojects.vercel.app/geometry.html)|(https://github.com/mrSinghSatyam/JS102) | 13 | | Vaishnavi Sagariya | 2203031080013 | https://js-pro-nine.vercel.app/count.html | https://js-pro-nine.vercel.app/geometry.html | https://github.com/sagariyavaishnavi/js_pro | 14 | | Jenish Paghadal | 2203031080007 | https://jsassignment-git-jsass4-jenish-paghadals-projects.vercel.app/counter.html | https://jsassignment-omega.vercel.app/calc.html | https://github.com/ItsJESH/JSAssignment | 15 | | Umang Patel | 2203031080107 | | | | 16 | | Mann Solanki | 2203031080260 | https://mann-projects.netlify.app/counter | https://mann-projects.netlify.app/calculator | https://github.com/HarmonyHacker/javascript_projects | 17 | | Dhyan Patel | 2203031080216 | https://javascript-projects-tau-azure.vercel.app/counter.html | https://javascript-projects-tau-azure.vercel.app/calculator.html | https://github.com/dhyanpatel3/javascript_projects | 18 | | Rajdeepsinh Dabhi | 2203031080069 | https://jsproject-nu.vercel.app/Dice.html | https://jsproject-nu.vercel.app/3D_calculator.html | https://github.com/Rajdeepsinh1410/JSPROJECT.git | 19 | | Ankit Kumar | 2203031080184 | https://java-script-projects-lime.vercel.app/counter.html | https://java-script-projects-lime.vercel.app/calculator.html | https://github.com/Ankiitsuthar/JavaScript-Project | 20 | | Hardeep Ijardar | 2203031080031 | https://js-projects-2t4.pages.dev/counter | https://js-projects-2t4.pages.dev/3D_calculator | https://github.com/HardeepIjardar/JS-Projects | 21 | | Sahil Bharude | 2203031080235 | https://js-101-phi.vercel.app/count.html | https://js-101-phi.vercel.app/geometry.html | https://github.com/BharudeSahil/JS_101 | 22 | | Aryan Vekariya | 2203031080125 | https://javascript-ecru-seven.vercel.app/task3/index.html | https://javascript-ecru-seven.vercel.app/task4/task4.html | https://github.com/aaryanvekariya/javascript | 23 | | Sparsh Patel | 2203031080053 | https://jsprojet-git-js-task34-sparsh-patels-projects.vercel.app/AddCart.html | https://jsprojet-git-js-task34-sparsh-patels-projects.vercel.app/3D_calculator.html | https://github.com/SparshPatel1115/JS_Project/tree/js-task34 | 24 | | Pratik Patel | 2203031080174 | https://javascript-projects-crq08z97a-pratiks-projects-2b6c1394.vercel.app/counter.html | https://javascript-projects-crq08z97a-pratiks-projects-2b6c1394.vercel.app/3D_calculator.html | https://github.com/Pratik00531/JavascriptProjects- | 25 | | Ravi Vira | 2203031080018 | https://assignment-4-js-beige.vercel.app/counter.html | https://assignment-4-js-beige.vercel.app/calc.html | https://github.com/Ravi-vira/assignment-4-JS | 26 | | Deep Menpara | 2203031080091 | https://deepjsprojects.vercel.app/calc.html | https://deepjsprojects.vercel.app/dice.html | https://github.com/Deep7133/javascript.git | 27 | | Raj Patel | 2203031080105 | https://js-five-beta.vercel.app/counter.html | https://js-five-beta.vercel.app/geometry.html | https://github.com/RajPatel08/JS | 28 | | Darsh Kalani | 2203031080032 | https://js-project-b2n.pages.dev/counter | https://js-project-b2n.pages.dev/geometric | https://github.com/Darshkalani28/JS_Project | 29 | | Vignesh Gaddam | 2203031080131 | https://js-101-theta.vercel.app/counter.html | https://js-101-theta.vercel.app/shape.html | https://github.com/mrvigneshgaddam/JS101 | 30 | | Vrushangi Mistry | 2203031080222 | https://vrushicodesjs.vercel.app/Counter.html | https://vrushicodesjs.vercel.app/3D_calculator.html | https://github.com/Vrushi14/JavaScriptProjects | 31 | | Achal Ladani | 2203031080229 | | | | 32 | | Harsh Choudhary | 2203031080132 | https://wdf-js-all.vercel.app/counter.html | https://wdf-js-all.vercel.app/geometry.html | https://github.com/mrHarshchoudhary/WDF_JS | 33 | | Jeet Dhake | 2303031087082 | | | | 34 | | Vishang Lad | 2203031080035 | https://jsprojects3.pages.dev/counter | https://jsprojects3.pages.dev/3D_calculator | https://github.com/vishangl/JSprojects | 35 | | Hani Vaghani | 2303031087088 | https://jsprojects-daw.pages.dev/counter | https://jsprojects-daw.pages.dev/3D | https://github.com/hanivaghani/JSprojects | 36 | | Harsh Surani | 2203031080123 | https://2203031080123-assignment-5.netlify.app/counter | https://2203031080123-assignment-5.netlify.app/geometry%20calculator | https://github.com/suraniharsh/Assignments/tree/Assignment-5 | 37 | | Yash Sakhareliya | 2203031080015 | https://js-tasks-nine.vercel.app/Task%203/counter.html | https://js-tasks-nine.vercel.app/Task%204/ | https://github.com/Yashsakhareliya/JS_Task | 38 | | Meet Upendrakumar Patel | 2203031080011 | https://java-script-practice-lac.vercel.app/shapes.html | https://java-script-practice-lac.vercel.app/counter.html | https://github.com/MeetPatel54/JavaScript_practice.git | 39 | | Vraj Mehta | 2303031087034 | | | | 40 | | Alisha Kaur | 2203031080202 | https://bucolic-torrone-ee6617.netlify.app/task3 | https://bucolic-torrone-ee6617.netlify.app/task4 | https://github.com/Alishakaur431/javascript | 41 | | Pranav Faladu | 2303031087022 | https://inquisitive-croquembouche-acec27.netlify.app/count | https://inquisitive-croquembouche-acec27.netlify.app/calculator | https://github.com/PranavFaladu/JSprojects | 42 | | Bharvi Valand | 2303031087002 | https://celebrated-pegasus-172baa.netlify.app/counter | https://celebrated-pegasus-172baa.netlify.app/3d_calculator | https://github.com/bharvivaland/JSprojects.git | 43 | | Neeti Darji | 2303031087080 | https://jsprojects-6m1.pages.dev/counter | https://jsprojects-6m1.pages.dev/calculator | https://github.com/Neetidarji/Jsprojects | 44 | | Suhani Tandel | 2203031080160 | https://6761ad146a4f359d1e758efc--sage-rugelach-208f6d.netlify.app/task3 | https://6761ad146a4f359d1e758efc--sage-rugelach-208f6d.netlify.app/task4 | https://github.com/SuhaniTandel/JS-Project.git | 45 | | Rishabh Rai | 2203031080114 | https://js-coral-psi.vercel.app/counter.html | https://js-coral-psi.vercel.app/Shapes/index.html | https://github.com/Rishabhrai29/js | 46 | | Rutuja Waghchaure | 2303031087080 | https://jsproject-cin.pages.dev/live_counter | https://jsproject-cin.pages.dev/3Dcalculator | https://github.com/rutujawaghchaure/jsproject | 47 | -------------------------------------------------------------------------------- /submissions/expressjs/assignment2.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Assignment 22 URL | GitHub Repo | 2 | |---------------------------------|---------------------|-------------------|-------------| 3 | | Shubham Karvariya | 2203031080004 |[Assignment 22](https://github.com/5hubhm/ExpressJS101/blob/main/GlowDerm/app.js) | [Github](https://github.com/5hubhm/ExpressJS101) 4 | | Ayush | 2203031080028 | [Assignment 22](https://github.com/ayushvadodariya/GlowDerma/blob/main/app.js) | [GitHub](https://github.com/ayushvadodariya/GlowDerma) | 5 | | Mansha Soni | 2203031080121 | [Assignment 22](https://github.com/mansha-6/GlowDerma/blob/main/index2.js) | [Github](https://github.com/mansha-6/GlowDerma) | 6 | | Bhavin Parmar | 2203031080042 | [Assignment 22](https://github.com/bhavinbvn/GlowDerma/blob/main/app.js) | [GitHub](https://github.com/bhavinbvn/GlowDerma) | 7 | | Pranjal Pandey | 2203031080144 |https://github.com/Pranjallpandey1504/GlowDerma/blob/main/order.js |https://github.com/Pranjallpandey1504/GlowDerma | 8 | | Ashish Yadav | 2203031080161 |[Assignment 22](https://github.com/AshishIT611/GLOWDERMA/blob/main/index1.js) |[GitHub](https://github.com/AshishIT611/GLOWDERMA) | 9 | | Vinit Patel | 2203031080139 | [Assignment 22](https://github.com/Vinitpatel28/GlowDerma/blob/main/index2.js)|[GitHub](https://github.com/Vinitpatel28/GlowDerma)| 10 | | Utsav Hirapra | 2203031080002 | [URL](https://github.com/utsav1213/Express101/blob/main/GlowDerma/app.js)|[GIT](https://github.com/utsav1213/Express101) | 11 | | Meet Savadasbhai Sondarva | 2203031080146 |https://github.com/meetsondarva/GlowDerma/blob/main/index1.js|https://github.com/meetsondarva/GlowDerma| 12 | | Satyam | 2203031080232 |https://github.com/mrSinghSatyam/GlowDerma/blob/main/index.js|https://github.com/mrSinghSatyam/GlowDerma| 13 | | Vaishnavi Sagariya | 2203031080013 | [Assignment 22](https://github.com/sagariyavaishnavi/GlowDerma/blob/main/index2.js) | [Github] (https://github.com/sagariyavaishnavi/GlowDerma)| 14 | | Jenish Paghadal | 2203031080007 | [GlowDerma](https://github.com/ItsJESH/Express101/blob/main/GlowDerma/app.js) | [GitHub](https://github.com/ItsJESH/Express101/) | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 | [GlowDerma](https://github.com/MannSolanki/GlowDerma/blob/master/app.js)|[Github](https://github.com/MannSolanki/GlowDerma)| 17 | | Dhyan Patel | 2203031080216 |[GlowDerma](https://github.com/dhyanpatel3/GlowDerma/blob/main/index1.js)|[GitHub](https://github.com/dhyanpatel3/GlowDerma) | 18 | | Rajdeepsinh Dabhi | 2203031080069 |[GlowDerma](https://github.com/Rajdeepsinh1410/GlowDerma/blob/main/index.js)| [GitHub](https://github.com/Rajdeepsinh1410/GlowDerma.git) | 19 | | Ankit Kumar | 2203031080184 |[GlowDerma](https://github.com/Ankiitsuthar/GlowDerma/blob/main/index1.js)|[GitHub](https://github.com/Ankiitsuthar/GlowDerma)| 20 | | Hardeep Ijardar | 2203031080031 |[Glow Derma](https://github.com/HardeepIjardar/GlowDerma/blob/Assignment-22/index.js)|[Repo](https://github.com/HardeepIjardar/GlowDerma/tree/main)| 21 | | Sahil Bharude | 2203031080235 |https://github.com/BharudeSahil/GlowDerma/blob/main/index.js|https://github.com/BharudeSahil/GlowDerma| 22 | | Aryan Vekariya | 2203031080125 |[Assignment22](https://github.com/aaryanvekariya/Express_Work/blob/main/GlowDerma/index.js)|[Repository](https://github.com/aaryanvekariya/Express_Work)| 23 | | Sparsh Patel | 2203031080053 | | | 24 | | Pratik Patel | 2203031080174 |[Glow Derma](https://github.com/Pratik00531/GlowDerma/blob/express-q2/app.js)|[Repo](https://github.com/Pratik00531/GlowDerma)| 25 | | Ravi Vira | 2203031080018 |[glow derma](https://github.com/Ravi-vira/Express101/blob/express-q2/GlowDerma%20Project/index.js) | [git](https://github.com/Ravi-vira/Express101/tree/express-q2) | 26 | | Deep Menpara | 2203031080091 | https://github.com/Deep7133/Express101/blob/express-q2/Glow_derma/index.js |https://github.com/Deep7133/Express101/tree/express-q2/Glow_derma | 27 | | Raj Patel | 2203031080105 |https://github.com/RajPatel08/GlowDerma/blob/main/index.js |https://github.com/RajPatel08/GlowDerma | 28 | | Darsh Kalani | 2203031080032 | [Assignment 22](https://github.com/Darshkalani28/GlowDerma/blob/main/index.js ) | [Repository](https://github.com/Darshkalani28/GlowDerma) | 29 | | Vignesh Gaddam | 2203031080131 | [Assignment 22](https://github.com/mrvigneshgaddam/GlowDerma/blob/main/index.js) | [GitHub](https://github.com/mrvigneshgaddam/GlowDerma) | 30 | | Vrushangi Mistry | 2203031080222 | https://github.com/Vrushi14/GlowDerma/blob/main/index.js | https://github.com/Vrushi14/GlowDerma | 31 | | Achal Ladani | 2203031080229 | | | 32 | | Harsh Choudhary | 2203031080132 |[Assignment 22](https://github.com/mrHarshchoudhary/GlowDerma/blob/main/index.js) |[Repo](https://github.com/mrHarshchoudhary/GlowDerma) | 33 | | Jeet Dhake | 2303031087082 | | | 34 | | Vishang Lad | 2203031080035 |https://github.com/vishangl/GlowDerma/blob/main/index.js |https://github.com/vishangl/GlowDerma| 35 | | Hani Vaghani | 2303031087088 |[Assignment-22](https://github.com/hanivaghani/GlowDerma/blob/master/index.js)|[Github](https://github.com/hanivaghani/GlowDerma/tree/master)| 36 | | Harsh Surani | 2203031080123 |[Assignment 22](https://github.com/suraniharsh/GlowDerma/blob/main/index.js)|[Repo](https://github.com/suraniharsh/GlowDerma)| 37 | | Yash Sakhareliya | 2203031080015 |[URL](https://github.com/YashSakhareliya/GlowDerma-/blob/main/app.js) |[GitHUB](https://github.com/YashSakhareliya/GlowDerma-) | 38 | | Meet Upendrakumar Patel | 2203031080011 | | | 39 | | Vraj Mehta | 2303031087034 | | | 40 | | Alisha Kaur | 2203031080202 | https://github.com/Alishakaur431/GlowDerma/blob/main/order.js | https://github.com/Alishakaur431/GlowDerma | 41 | | Pranav Faladu | 2303031087022 | | | 42 | | Bharvi Valand | 2303031087002 | | | 43 | | Neeti Darji | 2303031087080 |[Assignment 22](https://github.com/Neetidarji/GlowDerma/blob/master/index.js)|[Github](https://github.com/Neetidarji/GlowDerma/tree/master)| 44 | | Suhani Tandel | 2203031080160 | [Assignment 22](https://github.com/SuhaniTandel/GlowDerma/blob/main/index2.js) | [GitHub](https://github.com/SuhaniTandel/GlowDerma) | 45 | | Rishabh Rai | 2203031080114 | | | 46 | | Rutuja Waghchaure | 2303031087089 |https://github.com/rutujawaghchaure/Glowdarma/blob/main/index.js|https://github.com/rutujawaghchaure/Glowdarma/tree/main| 47 | -------------------------------------------------------------------------------- /submissions/reactjs/assignment3.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Assignment 33 URL | ReactJS Assignments Repo | 2 | |--------------------------------|----------------------|-------------------|-------------| 3 | | Shubham Karvariya | 2203031080004 |[Assignment 33](https://github.com/5hubhm/ReactJSTasks/tree/main/Task%203)|[GitHub](https://github.com/5hubhm/ReactJSTasks)| 4 | | Ayush | 2203031080028 | [Assignment 33](https://github.com/ayushvadodariya/ReactAssignment/tree/main/task3)| [GitHub](https://github.com/ayushvadodariya/ReactAssignment) | 5 | | Mansha Soni | 2203031080121 | [Assignment 33](https://github.com/mansha-6/ReactJS/tree/main/task3/Assignment3) | [Github](https://github.com/mansha-6/ReactJS) | 6 | | Bhavin Parmar | 2203031080042 | | | 7 | | Pranjal Pandey | 2203031080144 |[Assignment 33](https://github.com/Pranjallpandey1504/React_Assignments/tree/main/Task3) |[GitHub](https://github.com/Pranjallpandey1504/React_Assignments) | 8 | | Ashish Yadav | 2203031080161 | | | 9 | | Vinit Patel | 2203031080139 |[Assignment 33](https://github.com/Vinitpatel28/React/tree/main/Task3) |[GitHub] (https://github.com/Vinitpatel28/React)| 10 | | Utsav Hirapra | 2203031080002 |[Assignment 33](https://github.com/utsav1213/ReactAssignments/tree/main/Task%203) |[GitHub](https://github.com/utsav1213/ReactAssignments) | 11 | | Meet Savadasbhai Sondarva | 2203031080146 |[Assignment 33](https://github.com/meetsondarva/ReactAssignmentWDF/tree/main/task3)|[Github](https://github.com/meetsondarva/ReactAssignmentWDF/)| 12 | | Satyam | 2203031080232 |https://github.com/mrSinghSatyam/ReactJS/tree/main/Task-3|https://github.com/mrSinghSatyam/ReactJS/tree/main| 13 | | Vaishnavi Sagariya | 2203031080013 | | | 14 | | Jenish Paghadal | 2203031080007 | [Assignment 33](https://github.com/ItsJESH/ReactAssignment/tree/main/Task3) | [GitHub](https://github.com/ItsJESH/ReactAssignment/) | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 |[Assignment 33](https://github.com/MannSolanki/ReactWDFAssignment/tree/main/task3)|https://github.com/MannSolanki/ReactWDFAssignment/| 17 | | Dhyan Patel | 2203031080216 |[Assignment 33](https://github.com/dhyanpatel3/ReactWDFAssignments/tree/main/task3)|[GitHub](https://github.com/dhyanpatel3/ReactWDFAssignments/)| 18 | | Rajdeepsinh Dabhi | 2203031080069 | | | 19 | | Ankit Kumar | 2203031080184 |[Assignment 33](https://github.com/Ankiitsuthar/ReactJS/tree/main/Task3/Assignment3) |[GitHub](https://github.com/Ankiitsuthar/ReactJS) | 20 | | Hardeep Ijardar | 2203031080031 | | | 21 | | Sahil Bharude | 2203031080235 | https://github.com/BharudeSahil/React-Assignments/tree/main/Task-3 | https://github.com/BharudeSahil/React-Assignments/tree/main | 22 | | Aryan Vekariya | 2203031080125 |[Assignment33](https://github.com/aaryanvekariya/React/blob/main/Task3/src/App.jsx) |[Github](https://github.com/aaryanvekariya/React) | 23 | | Sparsh Patel | 2203031080053 | | | 24 | | Pratik Patel | 2203031080174 | | | 25 | | Ravi Vira | 2203031080018 |[a-33](https://github.com/Ravi-vira/ReactWDF_assignment/blob/main/Task-3/src/App.jsx)|[git](https://github.com/Ravi-vira/ReactWDF_assignment) | 26 | | Deep Menpara | 2203031080091 |https://github.com/Deep7133/ReactJS/tree/main/Task3 |https://github.com/Deep7133/ReactJS | 27 | | Raj Patel | 2203031080105 | [Assignment-3](https://github.com/RajPatel08/ReactAssignment/tree/master/assignment-3) |[Github](https://github.com/RajPatel08/ReactAssignment) | 28 | | Darsh Kalani | 2203031080032 | | | 29 | | Vignesh Gaddam | 2203031080131 | [Assignment 3](https://github.com/mrvigneshgaddam/React-Assignment/tree/main/Assignment-3) | [GitHub](https://github.com/mrvigneshgaddam/React-Assignment) | 30 | | Vrushangi Mistry | 2203031080222 | [Assignment 33](https://github.com/Vrushi14/ReactJS/tree/main/Task3) | [Github](https://github.com/Vrushi14/ReactJS/) | 31 | | Achal Ladani | 2203031080229 | | | 32 | | Harsh Choudhary | 2203031080132 |[Assignment33](https://github.com/mrHarshchoudhary/ReactAssignment/tree/main/Assignment-3) |[gihub](https://github.com/mrHarshchoudhary/ReactAssignment) | 33 | | Jeet Dhake | 2303031087082 | | | 34 | | Vishang Lad | 2203031080035 |[Assignment 33](https://github.com/vishangl/React_Assignments/tree/main/Assignment%203)|[repo](https://github.com/vishangl/React_Assignments)| 35 | | Hani Vaghani | 2303031087088 |https://github.com/hanivaghani/ReactJSAssignment/blob/main/task3/assignment3/src/App.js|https://github.com/hanivaghani/ReactJSAssignment/tree/main| 36 | | Harsh Surani | 2203031080123 |[Assignment 33](https://github.com/suraniharsh/ReactJSTasks/commit/e79a6f76443a8131dc29e077b58472d18c84644d) |[Github](https://github.com/suraniharsh/ReactJSTasks) | 37 | | Yash Sakhareliya | 2203031080015 |[Assignment Url](https://github.com/YashSakhareliya/ReactWdfAssignments/tree/main/Task3)| [Github](https://github.com/YashSakhareliya/ReactWdfAssignments) | 38 | | Meet Upendrakumar Patel | 2203031080011 |[Assignment33](https://github.com/MeetPatel54/ReactWDF_Assignments/blob/main/Task-3/src/App.jsx) |[github](https://github.com/MeetPatel54/ReactWDF_Assignments.git) | 39 | | Vraj Mehta | 2303031087034 | | | 40 | | Alisha Kaur | 2203031080202 | https://github.com/Alishakaur431/React_Assignments/tree/main/Task3/src | https://github.com/Alishakaur431/React_Assignments/tree/main/Task3 | 41 | | Pranav Faladu | 2303031087022 | | | 42 | | Bharvi Valand | 2303031087002 |[Task3](https://github.com/bharvivaland/ReactAssignments/blob/main/task3/Task3/src/App.jsx)|[Github](https://github.com/bharvivaland/ReactAssignments.git)| 43 | | Neeti Darji | 2303031087080 |[Task 3](https://github.com/Neetidarji/React_Assignment/blob/main/task%203/assignment3/src/App.jsx)|[Github](https://github.com/Neetidarji/React_Assignment)| 44 | | Suhani Tandel | 2203031080160 | [Task 3](https://github.com/SuhaniTandel/React/tree/main/Task3)| [Github](https://github.com/SuhaniTandel/React) | 45 | | Rishabh Rai | 2203031080114 | | | 46 | | Rutuja Waghchaure | 2303031087089 |[Assignment 33](https://github.com/rutujawaghchaure/ReactAssignment/tree/main/Task33)|[Github](https://github.com/rutujawaghchaure/ReactAssignment)| 47 | -------------------------------------------------------------------------------- /submissions/reactjs/assignment4.MD: -------------------------------------------------------------------------------- 1 | | 👩‍🎓 Student Name | 🆔 Enrollment Number | Assignment 34 URL | ReactJS Assignments Repo | 2 | |--------------------------------|----------------------|-------------------|-------------| 3 | | Shubham Karvariya | 2203031080004 |[Assignment 34](https://github.com/5hubhm/ReactJSTasks/tree/main/Task%204)| [GitHub](https://github.com/5hubhm/ReactJSTasks) 4 | | Ayush | 2203031080028 | | | 5 | | Mansha Soni | 2203031080121 | [Assignment 34](https://github.com/mansha-6/ReactJS/tree/main/task4/Assignment4) | [Github](https://github.com/mansha-6/ReactJS) | 6 | | Bhavin Parmar | 2203031080042 |[Assignment 34](https://github.com/bhavinbvn/React/tree/main/Task34)|[Github](https://github.com/bhavinbvn/React)| 7 | | Pranjal Pandey | 2203031080144 |[Assignment 34](https://github.com/Pranjallpandey1504/React_Assignments/tree/main/Task4) | [GitHUb](https://github.com/Pranjallpandey1504/React_Assignments) | 8 | | Ashish Yadav | 2203031080161 |[Assignment 34](https://github.com/AshishIT611/ReactJS/tree/main/Task%204) |[GitHub](https://github.com/AshishIT611/ReactJS) | 9 | | Vinit Patel | 2203031080139 | [Assignment 34](https://github.com/Vinitpatel28/React/tree/main/Task4)|[GotHub](https://github.com/Vinitpatel28/React) | 10 | | Utsav Hirapra | 2203031080002 | [Assignment 34](https://github.com/utsav1213/ReactAssignments/tree/main/Task%204) | [GitHub](https://github.com/utsav1213/ReactAssignments) | 11 | | Meet Savadasbhai Sondarva | 2203031080146 |https://github.com/meetsondarva/ReactAssignmentWDF/tree/main/task4| https://github.com/meetsondarva/ReactAssignmentWDF/ | 12 | | Satyam | 2203031080232 |https://github.com/mrSinghSatyam/ReactJS/tree/main/Task-4|https://github.com/mrSinghSatyam/ReactJS/tree/main| 13 | | Vaishnavi Sagariya | 2203031080013 | [Assignment 34] (https://github.com/sagariyavaishnavi/React_project/tree/main/Task4) | [GitHUb] (https://github.com/sagariyavaishnavi/React_project) | 14 | | Jenish Paghadal | 2203031080007 | [Assignment 34](https://github.com/ItsJESH/ReactAssignment/tree/main/Task4) | [GitHUb](https://github.com/ItsJESH/ReactAssignment/) | 15 | | Umang Patel | 2203031080107 | | | 16 | | Mann Solanki | 2203031080260 | [Assignment 34](https://github.com/MannSolanki/ReactWDFAssignment/tree/main/task4) |[Github](https://github.com/MannSolanki/ReactWDFAssignment/)| 17 | | Dhyan Patel | 2203031080216 |[Assignment 34](https://github.com/dhyanpatel3/ReactWDFAssignments/tree/main/task4)|[GitHub](https://github.com/dhyanpatel3/ReactWDFAssignments/)| 18 | | Rajdeepsinh Dabhi | 2203031080069 | | | 19 | | Ankit Kumar | 2203031080184 |[Assignment 34](https://github.com/Ankiitsuthar/ReactJS/tree/main/Task4/Assignment4) |[GitHub](https://github.com/Ankiitsuthar/ReactJS) | 20 | | Hardeep Ijardar | 2203031080031 | | | 21 | | Sahil Bharude | 2203031080235 | https://github.com/BharudeSahil/React-Assignments/tree/main/Task-4 | https://github.com/BharudeSahil/React-Assignments/tree/main | 22 | | Aryan Vekariya | 2203031080125 |[Task4](https://github.com/aaryanvekariya/React/blob/main/Task4/src/App.jsx)|[Github](https://github.com/aaryanvekariya/React) | 23 | | Sparsh Patel | 2203031080053 | | | 24 | | Pratik Patel | 2203031080174 | | | 25 | | Ravi Vira | 2203031080018 |[Assignment-34](https://github.com/Ravi-vira/ReactWDF_assignment/blob/main/Task4/src/App.jsx)|[git](https://github.com/Ravi-vira/ReactWDF_assignment) | 26 | | Deep Menpara | 2203031080091 |https://github.com/Deep7133/ReactJS/tree/main/Task4 |https://github.com/Deep7133/ReactJS | 27 | | Raj Patel | 2203031080105 | | | 28 | | Darsh Kalani | 2203031080032 | | | 29 | | Vignesh Gaddam | 2203031080131 | [Assignment 34](https://github.com/mrvigneshgaddam/React-Assignment/tree/main/Assignment-4) | [GitHub](https://github.com/mrvigneshgaddam/React-Assignment) | 30 | | Vrushangi Mistry | 2203031080222 | [Assignment 34](https://github.com/Vrushi14/ReactJS/tree/main/Task4) | [Github](https://github.com/Vrushi14/ReactJS/) | 31 | | Achal Ladani | 2203031080229 | | | 32 | | Harsh Choudhary | 2203031080132 |[Assignment34](https://github.com/mrHarshchoudhary/ReactAssignment/tree/main/Assignment4) |[Github](https://github.com/mrHarshchoudhary/ReactAssignment) | 33 | | Jeet Dhake | 2303031087082 | | | 34 | | Vishang Lad | 2203031080035 |https://github.com/vishangl/React_Assignments/tree/main/Assignment%204|https://github.com/vishangl/React_Assignments| 35 | | Hani Vaghani | 2303031087088 |https://github.com/hanivaghani/ReactJSAssignment/blob/main/task4/assignment4/src/App.jsx|https://github.com/hanivaghani/ReactJSAssignment/tree/main| 36 | | Harsh Surani | 2203031080123 |[Assignment 34](https://github.com/suraniharsh/ReactJSTasks/commit/a2c150eacded07fbc054407de27b1a80f0fff02c) | [GitHub](https://github.com/suraniharsh/ReactJSTasks) | 37 | | Yash Sakhareliya | 2203031080015 |[Assignment 34](https://github.com/YashSakhareliya/ReactWdfAssignments/tree/main/Task4)| [Github](https://github.com/YashSakhareliya/ReactWdfAssignments) | 38 | | Meet Upendrakumar Patel | 2203031080011 |[Assignment33](https://github.com/MeetPatel54/ReactWDF_Assignments/blob/main/Task4/src/App.jsx) |[github](https://github.com/MeetPatel54/ReactWDF_Assignments.git) | 39 | | Vraj Mehta | 2303031087034 | | | 40 | | Alisha Kaur | 2203031080202 | https://github.com/Alishakaur431/React_Assignments/tree/main/Task4/src/components | https://github.com/Alishakaur431/React_Assignments/tree/main/Task4/src | 41 | | Pranav Faladu | 2303031087022 | | | 42 | | Bharvi Valand | 2303031087002 |[Task4](https://github.com/bharvivaland/ReactAssignments/blob/main/task4/Task4/src/App.jsx)|[Github](https://github.com/bharvivaland/ReactAssignments.git)| 43 | | Neeti Darji | 2303031087080 |[Task 4](https://github.com/Neetidarji/React_Assignment/blob/main/task4/assignment4/src/App.jsx)|[Github](https://github.com/Neetidarji/React_Assignment)| 44 | | Suhani Tandel | 2203031080160 |[Task 4](https://github.com/SuhaniTandel/React/tree/main/Task4) | [Github](https://github.com/SuhaniTandel/React) | 45 | | Rishabh Rai | 2203031080114 | | | 46 | | Rutuja Waghchaure | 2303031087089 |[Assignment 34](https://github.com/rutujawaghchaure/ReactAssignment/tree/main/Task34)|[GitHub](https://github.com/rutujawaghchaure/ReactAssignment)| 47 | --------------------------------------------------------------------------------