commit d5dd59105323341ccee878b1964eee72202ce1a4 Author: Andrea Bianchi Date: Mon Mar 17 09:20:05 2025 +0900 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..326123c --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.prettierrc +node_modules +.DS_Store +.vscode \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..325a2c7 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# Homework 3 - Software Prototyping ID311 + +- Learn about functions, recursion and HTML elements. +- _[Live demo](http://hwdemo.prototyping.id/hw3)_ + +## General Description + +In this assignment you are required to understand **functions and recursion**, and it allows you to practice with basic **GUI** elements (_HTML_ elements such as dropdown selections, sliders, buttons). Using a web interface the user can insert two dates, and then the system reports the number of days between the two dates (like [this website](https://www.timeanddate.com/date/durationresult.html?d1=01&m1=02&y1=2022&d2=2&m2=01&y2=2023)). + +

+ +

+ +## Before Starting + +Clone the repository in your computer and you will find a few files and these instructions. + +You are on the `main` branch, but the code for this exercise and the instructions are inside the `develop` branch. Checkout (or switch to) the `develop`branch and you will see the main files `main.js` and `index.html` as well as the rest of the instructions. The file `main.js`contains some stub code to get you started. Do all your commits in the develop branch, then, when you are done, **merge** your changes in the `main` branch, before submitting. diff --git a/SubmissionNotes.md b/SubmissionNotes.md new file mode 100644 index 0000000..8c6a6b6 --- /dev/null +++ b/SubmissionNotes.md @@ -0,0 +1,17 @@ +# Homework submission form + +1. **Your name**: NAME + +2. **KAIST ID**: 0000000 + +3. **Email**: YOUR_EMAIL@kaist.ac.kr + +--- + +## Description + +Feel free to use this space to add any relevant information. You can add, for example: + +- Links to images/Video/Additional material\*\*: [example](http://...) +- List the people/resources you received help from: ... +- Anything else you want to say about how to use your softare, issues, or limitations of your work diff --git a/assets/ids.png b/assets/ids.png new file mode 100644 index 0000000..7781f1b Binary files /dev/null and b/assets/ids.png differ diff --git a/assets/main.png b/assets/main.png new file mode 100644 index 0000000..ef41c1c Binary files /dev/null and b/assets/main.png differ diff --git a/assets/submission.png b/assets/submission.png new file mode 100644 index 0000000..233cd55 Binary files /dev/null and b/assets/submission.png differ