├── CONTRIBUTION.md ├── Calculator ├── c10.jpg ├── cal.css ├── cal.html ├── cal.js └── readme.md ├── Clock ├── clock.png ├── index.css ├── index.html ├── index.js └── readme.md ├── LICENSE ├── Password Generator ├── index.css ├── index.html └── index.js ├── README.md ├── TODO-LIST ├── .gitignore ├── package-lock.json ├── package.json ├── public │ └── index.html ├── readme.md └── src │ ├── App.css │ ├── App.js │ ├── components │ └── Todo.jsx │ ├── index.css │ ├── index.js │ └── pages │ └── Home.jsx ├── Temperature-Converter ├── CSS │ └── style.css ├── Img │ └── favicon.ico ├── Js │ └── script.js ├── README.md └── index.html └── textutils ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── components ├── Navbar.js └── Textforms.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js /CONTRIBUTION.md: -------------------------------------------------------------------------------- 1 | # Contribution guidelines 2 | 3 | ## How to contribute ? 4 | 5 | You can contibute to this repository by following these steps: 6 | 7 | - Firstly, you open an issue with the changes you want to make 8 | - Wait until you get assigned to make these changes 9 | - Create a personal fork from the repository 10 | - Now, clone your forked repository to your local machine either by downloading the Zip file then extracting it or using the command `git clone` followed by the repository link 11 | - Create a new branch with the name of the feature you implemented 12 | - Add your changes or fix the bug you issued about 13 | - Commit your changes to the local branch 14 | - Push the branch to your forked repository on Github 15 | - Finally, you can open a pull request to merge your branch to the original repository 16 | 17 | After making the contribution, it's good to pull the changes from the original repository. 18 | -------------------------------------------------------------------------------- /Calculator/c10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axe-Pearl/Mini-Projects/42ffbc4e529787ba02452a8eaa8994c05564b917/Calculator/c10.jpg -------------------------------------------------------------------------------- /Calculator/cal.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-image: url(c10.jpg); 3 | background-repeat: no-repeat; 4 | height: 100%; 5 | width: 100%; 6 | overflow: hidden; 7 | background-position: center; 8 | background-size: cover; 9 | } 10 | button{ 11 | width: 200px; 12 | height: 50px; 13 | margin: 2px 2px; 14 | background-color: blue; 15 | color: #fff4a7; 16 | border-radius: 20px; 17 | font-weight: bolder; 18 | font-style: italic; 19 | font-size: larger; 20 | } 21 | #outside{ 22 | color: white; 23 | border-radius: 5px; 24 | margin: auto; 25 | margin-top: 100px; 26 | width: 1000px; 27 | height: 600px; 28 | padding: 5px; 29 | } 30 | #heading{ 31 | margin: auto; 32 | width: 412px; 33 | font-size: xxx-large; 34 | } 35 | #btn{ 36 | margin: auto; 37 | margin-top: 20px; 38 | width: 815px; 39 | } 40 | .btn-inside{ 41 | width: 900px; 42 | } 43 | #val{ 44 | /* border: 2px solid red; */ 45 | height: 55px; 46 | width: 783px; 47 | margin-left: 100px; 48 | color: white; 49 | padding-left: 37px; 50 | padding-top: 20px; 51 | font-weight: bolder; 52 | } 53 | #res{ 54 | /* border: 2px solid red; */ 55 | height: 50px; 56 | width: 783px; 57 | margin-left: 100px; 58 | color: white; 59 | padding-left: 37px; 60 | padding-top: 25px; 61 | font-weight: bolder; 62 | font-size: x-large; 63 | } 64 | 65 | -------------------------------------------------------------------------------- /Calculator/cal.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 |Never use an insecure password
14 | 15 |{todo.text}
8 |No todo...
68 | 69 | } 70 |55 | {text.length} characters and {text.split(" ").filter((element)=>{return element.length!==0}).length} words 56 |
57 | 58 |