Key:
20 |Code:
21 |├── Ara-Roman ├── css │ └── style.css ├── icon │ └── button-close.svg ├── index.html └── js │ ├── app.js │ └── pop.js ├── BMI-Calculator-main ├── README.md ├── css │ └── style.css ├── favicon.png ├── index.html └── js │ └── bmi_converter.js ├── Binary-Tree-Visualizer ├── index.html ├── js │ ├── binaryTree.js │ ├── d3js.js │ ├── draw.js │ └── index.js └── style.css ├── Calc-JS-main ├── README.md ├── css │ └── main.css ├── index.html └── js │ ├── jquery-3.2.1.min.js │ └── main.js ├── Calendar ├── README.md ├── cal.css ├── calendar.js ├── index.html └── style.css ├── Countdown timer ├── Readme.MD ├── countdown.js ├── index.html └── style.css ├── Custom Icecream Generator ├── index.html ├── script.js └── style.css ├── DD-Animalia ├── assets │ ├── css │ │ └── styles.css │ ├── img │ │ ├── img1.jpg │ │ ├── img2.jpg │ │ ├── img3.jpg │ │ ├── img4.jpg │ │ ├── img5.jpg │ │ ├── img6.jpg │ │ └── img7.jpg │ ├── js │ │ └── main.js │ └── scss │ │ └── styles.scss └── index.html ├── Expense-Tracker-main ├── README.md ├── index.html ├── script.js └── style.css ├── GameOfLife ├── gol.js ├── index.html └── style.css ├── Go-Save-It ├── LICENSE ├── README.md ├── css │ ├── bootstrap.min.css │ └── style.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── index.html ├── js │ ├── bootstrap.min.js │ └── main.js └── logo.png ├── Hangman ├── index.html ├── script.js └── style.css ├── IP-Talashi ├── css │ ├── _fonts.scss │ ├── _global.scss │ ├── _header.scss │ ├── _map.scss │ ├── _mixins.scss │ ├── _variables.scss │ ├── styles.css │ ├── styles.css.map │ └── styles.scss ├── images │ ├── favicon-32x32.png │ ├── icon-arrow.svg │ ├── icon-location.svg │ └── pattern-bg.png ├── index.html └── js │ └── mapbox.js ├── Image ASCII ├── index.html ├── logo.gif └── resources │ ├── css │ └── style.css │ └── js │ └── script.js ├── Image Editor ├── favicon.ico ├── index.html ├── script.js └── style.css ├── Img2Pdf ├── index.css ├── index.html └── index.js ├── Interest-Calculator-main ├── README.md ├── index.css ├── index.html └── index.js ├── JS CRUD ├── index.html ├── script.js └── styles.css ├── JS-drum ├── Readme.MD ├── img │ └── back.jpg ├── index.html ├── sounds │ ├── boom.wav │ ├── clap.wav │ ├── hihat.wav │ ├── kick.wav │ ├── openhat.wav │ ├── ride.wav │ ├── snare.wav │ ├── tink.wav │ └── tom.wav └── style.css ├── JavaScript QUiz ├── dist │ ├── css │ │ └── style.css │ └── js │ │ ├── site.js │ │ ├── start.js │ │ ├── timer.js │ │ └── userInfo.js ├── end.html ├── index.html └── quiz.html ├── KeyPress ├── index.html └── style.css ├── M_Box ├── README.md ├── index.html ├── s1.png ├── script.js └── style.css ├── Master-Piece ├── README.md ├── favicon.ico ├── index.html ├── jscolor.js ├── script.js └── style.css ├── MausamDoot ├── Readme.MD ├── index.html ├── script.js └── style.css ├── Maze Game ├── README.md ├── index.html ├── script.js └── style.css ├── Meme Generator ├── index.html ├── script.js └── style.css ├── Memory Game ├── Assets │ ├── Audio │ │ ├── creepy.mp3 │ │ ├── flip.wav │ │ ├── gameOver.wav │ │ ├── match.wav │ │ └── victory.wav │ ├── Cursors │ │ ├── Ghost.cur │ │ └── GhostHover.cur │ ├── Fonts │ │ ├── Creepy.woff │ │ ├── Creepy.woff2 │ │ ├── Lunacy.woff │ │ └── Lunacy.woff2 │ └── Images │ │ ├── Bat.png │ │ ├── Bones.png │ │ ├── CardBack.png │ │ ├── Cauldron.png │ │ ├── Cobweb.png │ │ ├── CobwebGrey.png │ │ ├── Dracula.png │ │ ├── Eye.png │ │ ├── Ghost.png │ │ ├── Pumpkin.png │ │ ├── Skull.png │ │ └── Spider.png ├── index.html ├── script.js └── styles.css ├── Number Converter ├── index.html ├── script.js └── styles.css ├── Pacman ├── images │ ├── ghost.png │ ├── pac0.png │ ├── pac1.png │ ├── pac2.png │ ├── pinkDot.png │ ├── scaredGhost.png │ ├── scaredGhost2.png │ ├── wall.png │ └── yellowDot.png ├── index.html ├── sounds │ ├── eat_ghost.wav │ ├── gameOver.wav │ ├── gameWin.wav │ ├── power_dot.wav │ └── waka.wav └── src │ ├── Enemy.js │ ├── Game.js │ ├── MovingDirection.js │ ├── Pacman.js │ └── TileMap.js ├── PollIt ├── index.html ├── script.js └── style.css ├── PoolGame ├── Ball.js ├── Game.js ├── GameLoop.js ├── KeyHandler.js ├── Light.js ├── Main.js ├── MeshAnimationMaterial.js ├── ObjMesh.js ├── Player.js ├── Scene.js ├── SkyBox.js ├── Sound.js ├── gh-img │ └── pool.png ├── img │ ├── favicon.png │ ├── skybox │ │ ├── bridge │ │ │ ├── negx.jpg │ │ │ ├── negy.jpg │ │ │ ├── negz.jpg │ │ │ ├── posx.jpg │ │ │ ├── posy.jpg │ │ │ ├── posz.jpg │ │ │ ├── skybox.png │ │ │ └── skyboxsun5deg2.png │ │ ├── clouds │ │ │ ├── negx.jpg │ │ │ ├── negy.jpg │ │ │ ├── negz.jpg │ │ │ ├── posx.jpg │ │ │ ├── posy.jpg │ │ │ └── posz.jpg │ │ ├── space │ │ │ ├── negx.jpg │ │ │ ├── negy.jpg │ │ │ ├── negz.jpg │ │ │ ├── posx.jpg │ │ │ ├── posy.jpg │ │ │ └── posz.jpg │ │ └── sunset │ │ │ ├── negx.jpg │ │ │ ├── negy.jpg │ │ │ ├── negz.jpg │ │ │ ├── posx.jpg │ │ │ ├── posy.jpg │ │ │ └── posz.jpg │ └── textures │ │ ├── balls │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ └── a │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 13.jpg │ │ │ ├── 14.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ └── 9.jpg │ │ ├── camera.png │ │ ├── cloth©.jpg │ │ ├── floorwood©.jpg │ │ ├── gold.jpg │ │ ├── kat │ │ ├── frame_0_delay-0.04s.png │ │ ├── frame_10_delay-0.04s.png │ │ ├── frame_11_delay-0.04s.png │ │ ├── frame_12_delay-0.04s.png │ │ ├── frame_13_delay-0.04s.png │ │ ├── frame_14_delay-0.04s.png │ │ ├── frame_15_delay-0.04s.png │ │ ├── frame_16_delay-0.04s.png │ │ ├── frame_17_delay-0.04s.png │ │ ├── frame_18_delay-0.04s.png │ │ ├── frame_19_delay-0.04s.png │ │ ├── frame_1_delay-0.04s.png │ │ ├── frame_20_delay-0.04s.png │ │ ├── frame_21_delay-0.04s.png │ │ ├── frame_22_delay-0.04s.png │ │ ├── frame_23_delay-0.04s.png │ │ ├── frame_24_delay-0.04s.png │ │ ├── frame_25_delay-0.04s.png │ │ ├── frame_26_delay-0.04s.png │ │ ├── frame_27_delay-0.04s.png │ │ ├── frame_28_delay-0.04s.png │ │ ├── frame_29_delay-0.04s.png │ │ ├── frame_2_delay-0.04s.png │ │ ├── frame_30_delay-0.04s.png │ │ ├── frame_31_delay-0.04s.png │ │ ├── frame_32_delay-0.04s.png │ │ ├── frame_33_delay-0.04s.png │ │ ├── frame_34_delay-0.04s.png │ │ ├── frame_35_delay-0.04s.png │ │ ├── frame_36_delay-0.04s.png │ │ ├── frame_37_delay-0.04s.png │ │ ├── frame_38_delay-0.04s.png │ │ ├── frame_39_delay-0.04s.png │ │ ├── frame_3_delay-0.04s.png │ │ ├── frame_4_delay-0.04s.png │ │ ├── frame_5_delay-0.04s.png │ │ ├── frame_6_delay-0.04s.png │ │ ├── frame_7_delay-0.04s.png │ │ ├── frame_8_delay-0.04s.png │ │ └── frame_9_delay-0.04s.png │ │ ├── wood©.jpg │ │ └── yourewinner.png ├── index.html ├── main.css ├── obj │ ├── table │ │ ├── floor.c4d │ │ ├── floor.mtl │ │ ├── floor.obj │ │ ├── legs.c4d │ │ ├── legs.mtl │ │ ├── legs.obj │ │ ├── poolfloor.c4d │ │ ├── poolpoints.mtl │ │ ├── poolpoints.obj │ │ ├── woodwalls.c4d │ │ ├── woodwalls.mtl │ │ └── woodwalls.obj │ ├── trophy.mtl │ └── trophy.obj ├── script.js ├── sound │ ├── hit.mp3 │ └── pocket.mp3 └── three │ ├── OBJLoader.js │ ├── OrbitControls.js │ ├── Stats.js │ ├── Tween.js │ ├── dat.gui.min.js │ ├── three.js │ └── three.min.js ├── Quiz App ├── index.html ├── script.js └── style.css ├── Quotetalks ├── README.md ├── favicon.png ├── index.html ├── script.js └── style.css ├── README.md ├── Seat Booking ├── index.html ├── script.js └── style.css ├── Sorting-Visualization ├── index.html ├── js_files │ ├── bubble.js │ ├── insertion.js │ ├── merge.js │ ├── quick.js │ ├── selection.js │ └── sorting.js └── style.css ├── Stone-Paper-Scissors-Game ├── Readme.MD ├── app.js ├── assets │ ├── paper.png │ ├── rock.png │ └── scissors.png ├── index.html └── style.css ├── Sudoku-JS ├── app.css ├── index.html └── static │ ├── images │ └── icon.png │ └── js │ ├── app.js │ ├── constant.js │ └── sudoku.js ├── T2S ├── index.html ├── script.js └── style.css ├── TasvirOP ├── README.md ├── index.html ├── photo.png ├── script.js └── style.css ├── Theme Changer ├── css │ └── style.css ├── images │ ├── about-img.jpg │ ├── g-1.jpg │ ├── g-2.jpg │ ├── g-3.jpg │ ├── g-4.jpg │ ├── g-5.jpg │ ├── g-6.jpg │ ├── g-7.jpg │ ├── g-8.jpg │ ├── g-9.jpg │ ├── pic-1.png │ ├── pic-2.png │ ├── pic-3.png │ ├── pic-4.png │ ├── slide-1.jpg │ ├── slide-2.jpg │ ├── slide-3.jpg │ ├── slide-4.jpg │ ├── slide-5.jpg │ └── slide-6.jpg ├── index.html └── js │ └── script.js ├── Timeliner ├── README.md ├── index.html ├── script.js └── style.css ├── Todo-List ├── bars-icon.svg ├── index.html ├── script.js └── style.css ├── Virtual Piano ├── Readme.MD ├── app.js ├── assets │ ├── background.jpg │ └── background1.jpg ├── index.html ├── sounds │ ├── key1.mp3 │ ├── key10.mp3 │ ├── key11.mp3 │ ├── key12.mp3 │ ├── key13.mp3 │ ├── key14.mp3 │ ├── key15.mp3 │ ├── key16.mp3 │ ├── key17.mp3 │ ├── key18.mp3 │ ├── key19.mp3 │ ├── key2.mp3 │ ├── key20.mp3 │ ├── key21.mp3 │ ├── key22.mp3 │ ├── key23.mp3 │ ├── key24.mp3 │ ├── key3.mp3 │ ├── key4.mp3 │ ├── key5.mp3 │ ├── key6.mp3 │ ├── key7.mp3 │ ├── key8.mp3 │ └── key9.mp3 └── style.css ├── Voice Visualizer ├── index.html ├── script.js └── style.css ├── Waqt ├── README.md ├── clock.js ├── clock.png ├── index.html ├── s3.jpg └── style.css ├── Word-count └── index.html ├── chitchat ├── bot-mini.png ├── bot.png ├── constants.js ├── index.html ├── index.js ├── speech.js ├── style.css └── user.png ├── dictionary ji ├── app.js ├── index.html └── style.css ├── node-graphs-master ├── bootstrap.min.css ├── img │ ├── add-line.png │ ├── add-node.pdn │ ├── add-node.png │ ├── bg.png │ ├── delete-line.pdn │ ├── delete-line.png │ ├── delete-node.pdn │ ├── delete-node.png │ ├── favicon.PNG │ ├── favicon.ico │ ├── move-node.pdn │ └── move-node.png ├── index.html ├── js │ ├── algorithms.js │ ├── jquery-3.4.1.slim.min.js │ └── scripts.js └── styles.css ├── pie-chart-maker ├── index.html ├── script.js └── style.css ├── space-explorer animation ├── css │ ├── large.css │ ├── main.css │ └── medium.css ├── fonts │ ├── logo.ttf │ └── nagasaki.ttf ├── img │ ├── 01.png │ ├── 02.png │ ├── Globe.svg │ ├── Launch.svg │ ├── astronaut.png │ ├── falcon9-render_same_size_file-hover.png │ ├── falcon9-render_same_size_file.png │ ├── launch-background.png │ ├── reusable-rocket.png │ ├── section3-bg--large.jpg │ ├── section3-bg.jpg │ ├── ship-launching.jpg │ ├── space-bg-2.png │ ├── space-bg.png │ ├── space-station.png │ ├── star.png │ ├── starry-night.jpg │ ├── starry.jpg │ ├── wave-white.png │ └── wave.png ├── index.html └── js │ ├── app.js │ ├── header.js │ ├── star.png │ └── three.min.js └── tic-tac-toe-js-multiplayer ├── css └── master.css ├── index.html └── js └── main.js /Ara-Roman/icon/button-close.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ara-Roman/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |To convert Roman numerals, type a number from 1 to 9999.
To convert to Arabic numerals, type a valid alphabets.
21 | +$0.00 22 |
23 |27 | -$0.00 28 |
29 |22 |
23 |Result
46 | 47 | 48 |Brightness | 22 |23 | | 24 | |
GreyScale | 27 |28 | | 29 | |
Contrast | 32 |33 | | 34 | |
Invert | 37 |38 | | 39 | |
Black and White | 42 |43 | | 44 | |
17 | 38 | | 39 |
40 |
|
55 |
Your Points
18 |Time taken
19 |Press any key
15 |Key:
20 |Code:
21 |Your personal weather app
15 |Move every ball to the center. Ready for hard mode? Press H
26 |16 | Number System Converter 17 |
18 | 19 | 20 | 25 | 26 | 27 |0
19 |0
23 |Click to start audio render.
18 |
19 | Make sure your browser gives permission to access the microphone.
47 | 0 Words & 48 | 0 Characters 49 |
50 | 70 | 71 | -------------------------------------------------------------------------------- /chitchat/bot-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/JS-Projects/cf00adb0cc5601a5520cd6ef57fd0b3937c93fd4/chitchat/bot-mini.png -------------------------------------------------------------------------------- /chitchat/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MainakRepositor/JS-Projects/cf00adb0cc5601a5520cd6ef57fd0b3937c93fd4/chitchat/bot.png -------------------------------------------------------------------------------- /chitchat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |${synonyms[i]}
`; 23 | } 24 | document.querySelector(".synonyms").innerHTML = synonymsData; 25 | return; 26 | } else { 27 | audio.style.display = "none"; 28 | document.querySelectorAll(".meaningheading")[0].style.display = "none"; 29 | document.querySelectorAll(".meaningheading")[1].style.display = "none"; 30 | wordEle.innerText = data.title; 31 | wordMeaning.innerText = data.message; 32 | } 33 | } 34 | }; 35 | -------------------------------------------------------------------------------- /dictionary ji/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |Meaning
27 | 28 |Synonyms
29 | 30 |Names
21 |Data
22 |